From 5229990523d96e6860679866d9ebdacc14001a8b Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 21 Nov 2018 15:34:43 -0800 Subject: [PATCH 1/2] Fix gridding of small squares; use less memory for small features --- CHANGELOG.md | 7 + geometry.cpp | 4 +- main.cpp | 11 +- serial.cpp | 14 +- tests/grid-aligned/in.json | 1024 ++++ .../out/-z11_-D7_--grid-low-zooms.json | 2806 ++++++++++ tests/grid-unaligned/in.json | 1024 ++++ .../out/-z11_-D7_--grid-low-zooms.json | 4670 +++++++++++++++++ .../out/-z4_-yname_--grid-low-zooms_-D8.json | 2834 +++++----- tile.cpp | 25 + version.hpp | 2 +- 11 files changed, 10990 insertions(+), 1431 deletions(-) create mode 100644 tests/grid-aligned/in.json create mode 100644 tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json create mode 100644 tests/grid-unaligned/in.json create mode 100644 tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json diff --git a/CHANGELOG.md b/CHANGELOG.md index cbed223bf..9bd6a8a69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.32.5 + +* Use less memory on lines and polygons that are too small for the tile +* Fix coordinate rounding problem that was causing --grid-low-zooms grids + to be lost at low zooms if the original polygons were not aligned to + tile boundaries + ## 1.32.4 * Ignore leading zeroes when converting string attributes to feature IDs diff --git a/geometry.cpp b/geometry.cpp index aa72fddb5..7ed514f3d 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -1135,8 +1135,8 @@ drawvec stairstep(drawvec &geom, int z, int detail) { double scale = 1 << (32 - detail - z); for (size_t i = 0; i < geom.size(); i++) { - geom[i].x = std::round(geom[i].x / scale); - geom[i].y = std::round(geom[i].y / scale); + geom[i].x = std::floor(geom[i].x / scale); + geom[i].y = std::floor(geom[i].y / scale); } for (size_t i = 0; i < geom.size(); i++) { diff --git a/main.cpp b/main.cpp index 290a30933..1c24697d0 100644 --- a/main.cpp +++ b/main.cpp @@ -3050,9 +3050,14 @@ int main(int argc, char **argv) { full_detail = 12; } - if (full_detail < min_detail || low_detail < min_detail) { - fprintf(stderr, "%s: Full detail and low detail must be at least minimum detail\n", argv[0]); - exit(EXIT_FAILURE); + if (full_detail < min_detail) { + min_detail = full_detail; + fprintf(stderr, "%s: Reducing minimum detail to match full detail %d\n", argv[0], min_detail); + } + + if (low_detail < min_detail) { + min_detail = low_detail; + fprintf(stderr, "%s: Reducing minimum detail to match low detail %d\n", argv[0], min_detail); } // Need two checks: one for geometry representation, the other for diff --git a/serial.cpp b/serial.cpp index 6ef86055b..913a874de 100644 --- a/serial.cpp +++ b/serial.cpp @@ -318,6 +318,7 @@ static long long scale_geometry(struct serialization_state *sst, long long *bbox long long offset = 0; long long prev = 0; bool has_prev = false; + double scale = 1.0 / (1 << geometry_scale); for (size_t i = 0; i < geom.size(); i++) { if (geom[i].op == VT_MOVETO || geom[i].op == VT_LINETO) { @@ -365,8 +366,17 @@ static long long scale_geometry(struct serialization_state *sst, long long *bbox *(sst->initialized) = 1; } - geom[i].x = x >> geometry_scale; - geom[i].y = y >> geometry_scale; + if (additional[A_GRID_LOW_ZOOMS]) { + // If we are gridding, snap to the maxzoom grid in case the incoming data + // is already supposed to be aligned to tile boundaries (but is not, exactly, + // because of rounding error during projection). + + geom[i].x = std::round(x * scale); + geom[i].y = std::round(y * scale); + } else { + geom[i].x = x >> geometry_scale; + geom[i].y = y >> geometry_scale; + } } } diff --git a/tests/grid-aligned/in.json b/tests/grid-aligned/in.json new file mode 100644 index 000000000..6bf13cd24 --- /dev/null +++ b/tests/grid-aligned/in.json @@ -0,0 +1,1024 @@ +{"type": "Feature","properties": {"x":16,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0219726557114224],[0.023345947265625,-0.0219726557114224],[0.023345947265625,-0.0233459466196176],[0.02197265625,-0.0233459466196176],[0.02197265625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":16,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0233459466196176],[0.023345947265625,-0.0233459466196176],[0.023345947265625,-0.0247192375144014],[0.02197265625,-0.0247192375144014],[0.02197265625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":16,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0247192375144014],[0.023345947265625,-0.0247192375144014],[0.023345947265625,-0.026092528394991],[0.02197265625,-0.026092528394991],[0.02197265625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":16,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.026092528394991],[0.023345947265625,-0.026092528394991],[0.023345947265625,-0.0274658192605846],[0.02197265625,-0.0274658192605846],[0.02197265625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":16,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0274658192605846],[0.023345947265625,-0.0274658192605846],[0.023345947265625,-0.0288391101104026],[0.02197265625,-0.0288391101104026],[0.02197265625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":16,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0288391101104026],[0.023345947265625,-0.0288391101104026],[0.023345947265625,-0.0302124009436464],[0.02197265625,-0.0302124009436464],[0.02197265625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":16,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0302124009436464],[0.023345947265625,-0.0302124009436464],[0.023345947265625,-0.0315856917595396],[0.02197265625,-0.0315856917595396],[0.02197265625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":16,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0315856917595396],[0.023345947265625,-0.0315856917595396],[0.023345947265625,-0.0329589825572836],[0.02197265625,-0.0329589825572836],[0.02197265625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":16,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0329589825572836],[0.023345947265625,-0.0329589825572836],[0.023345947265625,-0.0343322733360987],[0.02197265625,-0.0343322733360987],[0.02197265625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":16,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0343322733360987],[0.023345947265625,-0.0343322733360987],[0.023345947265625,-0.0357055640951897],[0.02197265625,-0.0357055640951897],[0.02197265625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":16,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0357055640951897],[0.023345947265625,-0.0357055640951897],[0.023345947265625,-0.0370788548337641],[0.02197265625,-0.0370788548337641],[0.02197265625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":16,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0370788548337641],[0.023345947265625,-0.0370788548337641],[0.023345947265625,-0.0384521455510425],[0.02197265625,-0.0384521455510425],[0.02197265625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":16,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0384521455510425],[0.023345947265625,-0.0384521455510425],[0.023345947265625,-0.039825436246223],[0.02197265625,-0.039825436246223],[0.02197265625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":16,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.039825436246223],[0.023345947265625,-0.039825436246223],[0.023345947265625,-0.0411987269185324],[0.02197265625,-0.0411987269185324],[0.02197265625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":16,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0411987269185324],[0.023345947265625,-0.0411987269185324],[0.023345947265625,-0.042572017567172],[0.02197265625,-0.042572017567172],[0.02197265625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":16,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.042572017567172],[0.023345947265625,-0.042572017567172],[0.023345947265625,-0.0439453081913529],[0.02197265625,-0.0439453081913529],[0.02197265625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":16,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0439453081913529],[0.023345947265625,-0.0439453081913529],[0.023345947265625,-0.045318598790289],[0.02197265625,-0.045318598790289],[0.02197265625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":16,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.045318598790289],[0.023345947265625,-0.045318598790289],[0.023345947265625,-0.0466918893631913],[0.02197265625,-0.0466918893631913],[0.02197265625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":16,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0466918893631913],[0.023345947265625,-0.0466918893631913],[0.023345947265625,-0.0480651799092611],[0.02197265625,-0.0480651799092611],[0.02197265625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":16,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0480651799092611],[0.023345947265625,-0.0480651799092611],[0.023345947265625,-0.0494384704277221],[0.02197265625,-0.0494384704277221],[0.02197265625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":16,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0494384704277221],[0.023345947265625,-0.0494384704277221],[0.023345947265625,-0.0508117609177883],[0.02197265625,-0.0508117609177883],[0.02197265625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":16,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0508117609177883],[0.023345947265625,-0.0508117609177883],[0.023345947265625,-0.0521850513786548],[0.02197265625,-0.0521850513786548],[0.02197265625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":16,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0521850513786548],[0.023345947265625,-0.0521850513786548],[0.023345947265625,-0.0535583418095483],[0.02197265625,-0.0535583418095483],[0.02197265625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":16,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0535583418095483],[0.023345947265625,-0.0535583418095483],[0.023345947265625,-0.0549316322096735],[0.02197265625,-0.0549316322096735],[0.02197265625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":16,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0549316322096735],[0.023345947265625,-0.0549316322096735],[0.023345947265625,-0.0563049225782379],[0.02197265625,-0.0563049225782379],[0.02197265625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":16,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0563049225782379],[0.023345947265625,-0.0563049225782379],[0.023345947265625,-0.0576782129144526],[0.02197265625,-0.0576782129144526],[0.02197265625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":16,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0576782129144526],[0.023345947265625,-0.0576782129144526],[0.023345947265625,-0.0590515032175379],[0.02197265625,-0.0590515032175379],[0.02197265625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":16,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0590515032175379],[0.023345947265625,-0.0590515032175379],[0.023345947265625,-0.0604247934867017],[0.02197265625,-0.0604247934867017],[0.02197265625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":16,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0604247934867017],[0.023345947265625,-0.0604247934867017],[0.023345947265625,-0.0617980837211484],[0.02197265625,-0.0617980837211484],[0.02197265625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":16,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0617980837211484],[0.023345947265625,-0.0617980837211484],[0.023345947265625,-0.0631713739200889],[0.02197265625,-0.0631713739200889],[0.02197265625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":16,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0631713739200889],[0.023345947265625,-0.0631713739200889],[0.023345947265625,-0.0645446640827373],[0.02197265625,-0.0645446640827373],[0.02197265625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":16,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.02197265625,-0.0645446640827373],[0.023345947265625,-0.0645446640827373],[0.023345947265625,-0.065917954208311],[0.02197265625,-0.065917954208311],[0.02197265625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":17,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0219726557114224],[0.02471923828125,-0.0219726557114224],[0.02471923828125,-0.0233459466196176],[0.023345947265625,-0.0233459466196176],[0.023345947265625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":17,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0233459466196176],[0.02471923828125,-0.0233459466196176],[0.02471923828125,-0.0247192375144014],[0.023345947265625,-0.0247192375144014],[0.023345947265625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":17,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0247192375144014],[0.02471923828125,-0.0247192375144014],[0.02471923828125,-0.026092528394991],[0.023345947265625,-0.026092528394991],[0.023345947265625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":17,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.026092528394991],[0.02471923828125,-0.026092528394991],[0.02471923828125,-0.0274658192605846],[0.023345947265625,-0.0274658192605846],[0.023345947265625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":17,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0274658192605846],[0.02471923828125,-0.0274658192605846],[0.02471923828125,-0.0288391101104026],[0.023345947265625,-0.0288391101104026],[0.023345947265625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":17,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0288391101104026],[0.02471923828125,-0.0288391101104026],[0.02471923828125,-0.0302124009436464],[0.023345947265625,-0.0302124009436464],[0.023345947265625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":17,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0302124009436464],[0.02471923828125,-0.0302124009436464],[0.02471923828125,-0.0315856917595396],[0.023345947265625,-0.0315856917595396],[0.023345947265625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":17,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0315856917595396],[0.02471923828125,-0.0315856917595396],[0.02471923828125,-0.0329589825572836],[0.023345947265625,-0.0329589825572836],[0.023345947265625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":17,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0329589825572836],[0.02471923828125,-0.0329589825572836],[0.02471923828125,-0.0343322733360987],[0.023345947265625,-0.0343322733360987],[0.023345947265625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":17,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0343322733360987],[0.02471923828125,-0.0343322733360987],[0.02471923828125,-0.0357055640951897],[0.023345947265625,-0.0357055640951897],[0.023345947265625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":17,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0357055640951897],[0.02471923828125,-0.0357055640951897],[0.02471923828125,-0.0370788548337641],[0.023345947265625,-0.0370788548337641],[0.023345947265625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":17,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0370788548337641],[0.02471923828125,-0.0370788548337641],[0.02471923828125,-0.0384521455510425],[0.023345947265625,-0.0384521455510425],[0.023345947265625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":17,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0384521455510425],[0.02471923828125,-0.0384521455510425],[0.02471923828125,-0.039825436246223],[0.023345947265625,-0.039825436246223],[0.023345947265625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":17,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.039825436246223],[0.02471923828125,-0.039825436246223],[0.02471923828125,-0.0411987269185324],[0.023345947265625,-0.0411987269185324],[0.023345947265625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":17,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0411987269185324],[0.02471923828125,-0.0411987269185324],[0.02471923828125,-0.042572017567172],[0.023345947265625,-0.042572017567172],[0.023345947265625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":17,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.042572017567172],[0.02471923828125,-0.042572017567172],[0.02471923828125,-0.0439453081913529],[0.023345947265625,-0.0439453081913529],[0.023345947265625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":17,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0439453081913529],[0.02471923828125,-0.0439453081913529],[0.02471923828125,-0.045318598790289],[0.023345947265625,-0.045318598790289],[0.023345947265625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":17,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.045318598790289],[0.02471923828125,-0.045318598790289],[0.02471923828125,-0.0466918893631913],[0.023345947265625,-0.0466918893631913],[0.023345947265625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":17,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0466918893631913],[0.02471923828125,-0.0466918893631913],[0.02471923828125,-0.0480651799092611],[0.023345947265625,-0.0480651799092611],[0.023345947265625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":17,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0480651799092611],[0.02471923828125,-0.0480651799092611],[0.02471923828125,-0.0494384704277221],[0.023345947265625,-0.0494384704277221],[0.023345947265625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":17,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0494384704277221],[0.02471923828125,-0.0494384704277221],[0.02471923828125,-0.0508117609177883],[0.023345947265625,-0.0508117609177883],[0.023345947265625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":17,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0508117609177883],[0.02471923828125,-0.0508117609177883],[0.02471923828125,-0.0521850513786548],[0.023345947265625,-0.0521850513786548],[0.023345947265625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":17,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0521850513786548],[0.02471923828125,-0.0521850513786548],[0.02471923828125,-0.0535583418095483],[0.023345947265625,-0.0535583418095483],[0.023345947265625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":17,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0535583418095483],[0.02471923828125,-0.0535583418095483],[0.02471923828125,-0.0549316322096735],[0.023345947265625,-0.0549316322096735],[0.023345947265625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":17,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0549316322096735],[0.02471923828125,-0.0549316322096735],[0.02471923828125,-0.0563049225782379],[0.023345947265625,-0.0563049225782379],[0.023345947265625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":17,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0563049225782379],[0.02471923828125,-0.0563049225782379],[0.02471923828125,-0.0576782129144526],[0.023345947265625,-0.0576782129144526],[0.023345947265625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":17,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0576782129144526],[0.02471923828125,-0.0576782129144526],[0.02471923828125,-0.0590515032175379],[0.023345947265625,-0.0590515032175379],[0.023345947265625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":17,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0590515032175379],[0.02471923828125,-0.0590515032175379],[0.02471923828125,-0.0604247934867017],[0.023345947265625,-0.0604247934867017],[0.023345947265625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":17,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0604247934867017],[0.02471923828125,-0.0604247934867017],[0.02471923828125,-0.0617980837211484],[0.023345947265625,-0.0617980837211484],[0.023345947265625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":17,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0617980837211484],[0.02471923828125,-0.0617980837211484],[0.02471923828125,-0.0631713739200889],[0.023345947265625,-0.0631713739200889],[0.023345947265625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":17,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0631713739200889],[0.02471923828125,-0.0631713739200889],[0.02471923828125,-0.0645446640827373],[0.023345947265625,-0.0645446640827373],[0.023345947265625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":17,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.023345947265625,-0.0645446640827373],[0.02471923828125,-0.0645446640827373],[0.02471923828125,-0.065917954208311],[0.023345947265625,-0.065917954208311],[0.023345947265625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":18,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0219726557114224],[0.026092529296875,-0.0219726557114224],[0.026092529296875,-0.0233459466196176],[0.02471923828125,-0.0233459466196176],[0.02471923828125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":18,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0233459466196176],[0.026092529296875,-0.0233459466196176],[0.026092529296875,-0.0247192375144014],[0.02471923828125,-0.0247192375144014],[0.02471923828125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":18,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0247192375144014],[0.026092529296875,-0.0247192375144014],[0.026092529296875,-0.026092528394991],[0.02471923828125,-0.026092528394991],[0.02471923828125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":18,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.026092528394991],[0.026092529296875,-0.026092528394991],[0.026092529296875,-0.0274658192605846],[0.02471923828125,-0.0274658192605846],[0.02471923828125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":18,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0274658192605846],[0.026092529296875,-0.0274658192605846],[0.026092529296875,-0.0288391101104026],[0.02471923828125,-0.0288391101104026],[0.02471923828125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":18,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0288391101104026],[0.026092529296875,-0.0288391101104026],[0.026092529296875,-0.0302124009436464],[0.02471923828125,-0.0302124009436464],[0.02471923828125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":18,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0302124009436464],[0.026092529296875,-0.0302124009436464],[0.026092529296875,-0.0315856917595396],[0.02471923828125,-0.0315856917595396],[0.02471923828125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":18,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0315856917595396],[0.026092529296875,-0.0315856917595396],[0.026092529296875,-0.0329589825572836],[0.02471923828125,-0.0329589825572836],[0.02471923828125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":18,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0329589825572836],[0.026092529296875,-0.0329589825572836],[0.026092529296875,-0.0343322733360987],[0.02471923828125,-0.0343322733360987],[0.02471923828125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":18,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0343322733360987],[0.026092529296875,-0.0343322733360987],[0.026092529296875,-0.0357055640951897],[0.02471923828125,-0.0357055640951897],[0.02471923828125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":18,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0357055640951897],[0.026092529296875,-0.0357055640951897],[0.026092529296875,-0.0370788548337641],[0.02471923828125,-0.0370788548337641],[0.02471923828125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":18,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0370788548337641],[0.026092529296875,-0.0370788548337641],[0.026092529296875,-0.0384521455510425],[0.02471923828125,-0.0384521455510425],[0.02471923828125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":18,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0384521455510425],[0.026092529296875,-0.0384521455510425],[0.026092529296875,-0.039825436246223],[0.02471923828125,-0.039825436246223],[0.02471923828125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":18,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.039825436246223],[0.026092529296875,-0.039825436246223],[0.026092529296875,-0.0411987269185324],[0.02471923828125,-0.0411987269185324],[0.02471923828125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":18,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0411987269185324],[0.026092529296875,-0.0411987269185324],[0.026092529296875,-0.042572017567172],[0.02471923828125,-0.042572017567172],[0.02471923828125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":18,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.042572017567172],[0.026092529296875,-0.042572017567172],[0.026092529296875,-0.0439453081913529],[0.02471923828125,-0.0439453081913529],[0.02471923828125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":18,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0439453081913529],[0.026092529296875,-0.0439453081913529],[0.026092529296875,-0.045318598790289],[0.02471923828125,-0.045318598790289],[0.02471923828125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":18,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.045318598790289],[0.026092529296875,-0.045318598790289],[0.026092529296875,-0.0466918893631913],[0.02471923828125,-0.0466918893631913],[0.02471923828125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":18,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0466918893631913],[0.026092529296875,-0.0466918893631913],[0.026092529296875,-0.0480651799092611],[0.02471923828125,-0.0480651799092611],[0.02471923828125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":18,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0480651799092611],[0.026092529296875,-0.0480651799092611],[0.026092529296875,-0.0494384704277221],[0.02471923828125,-0.0494384704277221],[0.02471923828125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":18,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0494384704277221],[0.026092529296875,-0.0494384704277221],[0.026092529296875,-0.0508117609177883],[0.02471923828125,-0.0508117609177883],[0.02471923828125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":18,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0508117609177883],[0.026092529296875,-0.0508117609177883],[0.026092529296875,-0.0521850513786548],[0.02471923828125,-0.0521850513786548],[0.02471923828125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":18,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0521850513786548],[0.026092529296875,-0.0521850513786548],[0.026092529296875,-0.0535583418095483],[0.02471923828125,-0.0535583418095483],[0.02471923828125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":18,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0535583418095483],[0.026092529296875,-0.0535583418095483],[0.026092529296875,-0.0549316322096735],[0.02471923828125,-0.0549316322096735],[0.02471923828125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":18,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0549316322096735],[0.026092529296875,-0.0549316322096735],[0.026092529296875,-0.0563049225782379],[0.02471923828125,-0.0563049225782379],[0.02471923828125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":18,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0563049225782379],[0.026092529296875,-0.0563049225782379],[0.026092529296875,-0.0576782129144526],[0.02471923828125,-0.0576782129144526],[0.02471923828125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":18,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0576782129144526],[0.026092529296875,-0.0576782129144526],[0.026092529296875,-0.0590515032175379],[0.02471923828125,-0.0590515032175379],[0.02471923828125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":18,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0590515032175379],[0.026092529296875,-0.0590515032175379],[0.026092529296875,-0.0604247934867017],[0.02471923828125,-0.0604247934867017],[0.02471923828125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":18,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0604247934867017],[0.026092529296875,-0.0604247934867017],[0.026092529296875,-0.0617980837211484],[0.02471923828125,-0.0617980837211484],[0.02471923828125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":18,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0617980837211484],[0.026092529296875,-0.0617980837211484],[0.026092529296875,-0.0631713739200889],[0.02471923828125,-0.0631713739200889],[0.02471923828125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":18,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0631713739200889],[0.026092529296875,-0.0631713739200889],[0.026092529296875,-0.0645446640827373],[0.02471923828125,-0.0645446640827373],[0.02471923828125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":18,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.02471923828125,-0.0645446640827373],[0.026092529296875,-0.0645446640827373],[0.026092529296875,-0.065917954208311],[0.02471923828125,-0.065917954208311],[0.02471923828125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":19,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0219726557114224],[0.0274658203125,-0.0219726557114224],[0.0274658203125,-0.0233459466196176],[0.026092529296875,-0.0233459466196176],[0.026092529296875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":19,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0233459466196176],[0.0274658203125,-0.0233459466196176],[0.0274658203125,-0.0247192375144014],[0.026092529296875,-0.0247192375144014],[0.026092529296875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":19,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0247192375144014],[0.0274658203125,-0.0247192375144014],[0.0274658203125,-0.026092528394991],[0.026092529296875,-0.026092528394991],[0.026092529296875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":19,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.026092528394991],[0.0274658203125,-0.026092528394991],[0.0274658203125,-0.0274658192605846],[0.026092529296875,-0.0274658192605846],[0.026092529296875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":19,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0274658192605846],[0.0274658203125,-0.0274658192605846],[0.0274658203125,-0.0288391101104026],[0.026092529296875,-0.0288391101104026],[0.026092529296875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":19,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0288391101104026],[0.0274658203125,-0.0288391101104026],[0.0274658203125,-0.0302124009436464],[0.026092529296875,-0.0302124009436464],[0.026092529296875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":19,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0302124009436464],[0.0274658203125,-0.0302124009436464],[0.0274658203125,-0.0315856917595396],[0.026092529296875,-0.0315856917595396],[0.026092529296875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":19,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0315856917595396],[0.0274658203125,-0.0315856917595396],[0.0274658203125,-0.0329589825572836],[0.026092529296875,-0.0329589825572836],[0.026092529296875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":19,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0329589825572836],[0.0274658203125,-0.0329589825572836],[0.0274658203125,-0.0343322733360987],[0.026092529296875,-0.0343322733360987],[0.026092529296875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":19,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0343322733360987],[0.0274658203125,-0.0343322733360987],[0.0274658203125,-0.0357055640951897],[0.026092529296875,-0.0357055640951897],[0.026092529296875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":19,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0357055640951897],[0.0274658203125,-0.0357055640951897],[0.0274658203125,-0.0370788548337641],[0.026092529296875,-0.0370788548337641],[0.026092529296875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":19,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0370788548337641],[0.0274658203125,-0.0370788548337641],[0.0274658203125,-0.0384521455510425],[0.026092529296875,-0.0384521455510425],[0.026092529296875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":19,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0384521455510425],[0.0274658203125,-0.0384521455510425],[0.0274658203125,-0.039825436246223],[0.026092529296875,-0.039825436246223],[0.026092529296875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":19,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.039825436246223],[0.0274658203125,-0.039825436246223],[0.0274658203125,-0.0411987269185324],[0.026092529296875,-0.0411987269185324],[0.026092529296875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":19,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0411987269185324],[0.0274658203125,-0.0411987269185324],[0.0274658203125,-0.042572017567172],[0.026092529296875,-0.042572017567172],[0.026092529296875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":19,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.042572017567172],[0.0274658203125,-0.042572017567172],[0.0274658203125,-0.0439453081913529],[0.026092529296875,-0.0439453081913529],[0.026092529296875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":19,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0439453081913529],[0.0274658203125,-0.0439453081913529],[0.0274658203125,-0.045318598790289],[0.026092529296875,-0.045318598790289],[0.026092529296875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":19,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.045318598790289],[0.0274658203125,-0.045318598790289],[0.0274658203125,-0.0466918893631913],[0.026092529296875,-0.0466918893631913],[0.026092529296875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":19,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0466918893631913],[0.0274658203125,-0.0466918893631913],[0.0274658203125,-0.0480651799092611],[0.026092529296875,-0.0480651799092611],[0.026092529296875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":19,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0480651799092611],[0.0274658203125,-0.0480651799092611],[0.0274658203125,-0.0494384704277221],[0.026092529296875,-0.0494384704277221],[0.026092529296875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":19,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0494384704277221],[0.0274658203125,-0.0494384704277221],[0.0274658203125,-0.0508117609177883],[0.026092529296875,-0.0508117609177883],[0.026092529296875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":19,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0508117609177883],[0.0274658203125,-0.0508117609177883],[0.0274658203125,-0.0521850513786548],[0.026092529296875,-0.0521850513786548],[0.026092529296875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":19,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0521850513786548],[0.0274658203125,-0.0521850513786548],[0.0274658203125,-0.0535583418095483],[0.026092529296875,-0.0535583418095483],[0.026092529296875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":19,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0535583418095483],[0.0274658203125,-0.0535583418095483],[0.0274658203125,-0.0549316322096735],[0.026092529296875,-0.0549316322096735],[0.026092529296875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":19,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0549316322096735],[0.0274658203125,-0.0549316322096735],[0.0274658203125,-0.0563049225782379],[0.026092529296875,-0.0563049225782379],[0.026092529296875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":19,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0563049225782379],[0.0274658203125,-0.0563049225782379],[0.0274658203125,-0.0576782129144526],[0.026092529296875,-0.0576782129144526],[0.026092529296875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":19,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0576782129144526],[0.0274658203125,-0.0576782129144526],[0.0274658203125,-0.0590515032175379],[0.026092529296875,-0.0590515032175379],[0.026092529296875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":19,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0590515032175379],[0.0274658203125,-0.0590515032175379],[0.0274658203125,-0.0604247934867017],[0.026092529296875,-0.0604247934867017],[0.026092529296875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":19,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0604247934867017],[0.0274658203125,-0.0604247934867017],[0.0274658203125,-0.0617980837211484],[0.026092529296875,-0.0617980837211484],[0.026092529296875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":19,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0617980837211484],[0.0274658203125,-0.0617980837211484],[0.0274658203125,-0.0631713739200889],[0.026092529296875,-0.0631713739200889],[0.026092529296875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":19,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0631713739200889],[0.0274658203125,-0.0631713739200889],[0.0274658203125,-0.0645446640827373],[0.026092529296875,-0.0645446640827373],[0.026092529296875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":19,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.026092529296875,-0.0645446640827373],[0.0274658203125,-0.0645446640827373],[0.0274658203125,-0.065917954208311],[0.026092529296875,-0.065917954208311],[0.026092529296875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":20,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0219726557114224],[0.028839111328125,-0.0219726557114224],[0.028839111328125,-0.0233459466196176],[0.0274658203125,-0.0233459466196176],[0.0274658203125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":20,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0233459466196176],[0.028839111328125,-0.0233459466196176],[0.028839111328125,-0.0247192375144014],[0.0274658203125,-0.0247192375144014],[0.0274658203125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":20,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0247192375144014],[0.028839111328125,-0.0247192375144014],[0.028839111328125,-0.026092528394991],[0.0274658203125,-0.026092528394991],[0.0274658203125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":20,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.026092528394991],[0.028839111328125,-0.026092528394991],[0.028839111328125,-0.0274658192605846],[0.0274658203125,-0.0274658192605846],[0.0274658203125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":20,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0274658192605846],[0.028839111328125,-0.0274658192605846],[0.028839111328125,-0.0288391101104026],[0.0274658203125,-0.0288391101104026],[0.0274658203125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":20,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0288391101104026],[0.028839111328125,-0.0288391101104026],[0.028839111328125,-0.0302124009436464],[0.0274658203125,-0.0302124009436464],[0.0274658203125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":20,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0302124009436464],[0.028839111328125,-0.0302124009436464],[0.028839111328125,-0.0315856917595396],[0.0274658203125,-0.0315856917595396],[0.0274658203125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":20,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0315856917595396],[0.028839111328125,-0.0315856917595396],[0.028839111328125,-0.0329589825572836],[0.0274658203125,-0.0329589825572836],[0.0274658203125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":20,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0329589825572836],[0.028839111328125,-0.0329589825572836],[0.028839111328125,-0.0343322733360987],[0.0274658203125,-0.0343322733360987],[0.0274658203125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":20,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0343322733360987],[0.028839111328125,-0.0343322733360987],[0.028839111328125,-0.0357055640951897],[0.0274658203125,-0.0357055640951897],[0.0274658203125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":20,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0357055640951897],[0.028839111328125,-0.0357055640951897],[0.028839111328125,-0.0370788548337641],[0.0274658203125,-0.0370788548337641],[0.0274658203125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":20,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0370788548337641],[0.028839111328125,-0.0370788548337641],[0.028839111328125,-0.0384521455510425],[0.0274658203125,-0.0384521455510425],[0.0274658203125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":20,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0384521455510425],[0.028839111328125,-0.0384521455510425],[0.028839111328125,-0.039825436246223],[0.0274658203125,-0.039825436246223],[0.0274658203125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":20,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.039825436246223],[0.028839111328125,-0.039825436246223],[0.028839111328125,-0.0411987269185324],[0.0274658203125,-0.0411987269185324],[0.0274658203125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":20,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0411987269185324],[0.028839111328125,-0.0411987269185324],[0.028839111328125,-0.042572017567172],[0.0274658203125,-0.042572017567172],[0.0274658203125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":20,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.042572017567172],[0.028839111328125,-0.042572017567172],[0.028839111328125,-0.0439453081913529],[0.0274658203125,-0.0439453081913529],[0.0274658203125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":20,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0439453081913529],[0.028839111328125,-0.0439453081913529],[0.028839111328125,-0.045318598790289],[0.0274658203125,-0.045318598790289],[0.0274658203125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":20,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.045318598790289],[0.028839111328125,-0.045318598790289],[0.028839111328125,-0.0466918893631913],[0.0274658203125,-0.0466918893631913],[0.0274658203125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":20,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0466918893631913],[0.028839111328125,-0.0466918893631913],[0.028839111328125,-0.0480651799092611],[0.0274658203125,-0.0480651799092611],[0.0274658203125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":20,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0480651799092611],[0.028839111328125,-0.0480651799092611],[0.028839111328125,-0.0494384704277221],[0.0274658203125,-0.0494384704277221],[0.0274658203125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":20,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0494384704277221],[0.028839111328125,-0.0494384704277221],[0.028839111328125,-0.0508117609177883],[0.0274658203125,-0.0508117609177883],[0.0274658203125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":20,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0508117609177883],[0.028839111328125,-0.0508117609177883],[0.028839111328125,-0.0521850513786548],[0.0274658203125,-0.0521850513786548],[0.0274658203125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":20,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0521850513786548],[0.028839111328125,-0.0521850513786548],[0.028839111328125,-0.0535583418095483],[0.0274658203125,-0.0535583418095483],[0.0274658203125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":20,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0535583418095483],[0.028839111328125,-0.0535583418095483],[0.028839111328125,-0.0549316322096735],[0.0274658203125,-0.0549316322096735],[0.0274658203125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":20,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0549316322096735],[0.028839111328125,-0.0549316322096735],[0.028839111328125,-0.0563049225782379],[0.0274658203125,-0.0563049225782379],[0.0274658203125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":20,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0563049225782379],[0.028839111328125,-0.0563049225782379],[0.028839111328125,-0.0576782129144526],[0.0274658203125,-0.0576782129144526],[0.0274658203125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":20,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0576782129144526],[0.028839111328125,-0.0576782129144526],[0.028839111328125,-0.0590515032175379],[0.0274658203125,-0.0590515032175379],[0.0274658203125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":20,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0590515032175379],[0.028839111328125,-0.0590515032175379],[0.028839111328125,-0.0604247934867017],[0.0274658203125,-0.0604247934867017],[0.0274658203125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":20,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0604247934867017],[0.028839111328125,-0.0604247934867017],[0.028839111328125,-0.0617980837211484],[0.0274658203125,-0.0617980837211484],[0.0274658203125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":20,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0617980837211484],[0.028839111328125,-0.0617980837211484],[0.028839111328125,-0.0631713739200889],[0.0274658203125,-0.0631713739200889],[0.0274658203125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":20,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0631713739200889],[0.028839111328125,-0.0631713739200889],[0.028839111328125,-0.0645446640827373],[0.0274658203125,-0.0645446640827373],[0.0274658203125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":20,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0274658203125,-0.0645446640827373],[0.028839111328125,-0.0645446640827373],[0.028839111328125,-0.065917954208311],[0.0274658203125,-0.065917954208311],[0.0274658203125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":21,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0219726557114224],[0.03021240234375,-0.0219726557114224],[0.03021240234375,-0.0233459466196176],[0.028839111328125,-0.0233459466196176],[0.028839111328125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":21,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0233459466196176],[0.03021240234375,-0.0233459466196176],[0.03021240234375,-0.0247192375144014],[0.028839111328125,-0.0247192375144014],[0.028839111328125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":21,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0247192375144014],[0.03021240234375,-0.0247192375144014],[0.03021240234375,-0.026092528394991],[0.028839111328125,-0.026092528394991],[0.028839111328125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":21,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.026092528394991],[0.03021240234375,-0.026092528394991],[0.03021240234375,-0.0274658192605846],[0.028839111328125,-0.0274658192605846],[0.028839111328125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":21,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0274658192605846],[0.03021240234375,-0.0274658192605846],[0.03021240234375,-0.0288391101104026],[0.028839111328125,-0.0288391101104026],[0.028839111328125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":21,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0288391101104026],[0.03021240234375,-0.0288391101104026],[0.03021240234375,-0.0302124009436464],[0.028839111328125,-0.0302124009436464],[0.028839111328125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":21,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0302124009436464],[0.03021240234375,-0.0302124009436464],[0.03021240234375,-0.0315856917595396],[0.028839111328125,-0.0315856917595396],[0.028839111328125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":21,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0315856917595396],[0.03021240234375,-0.0315856917595396],[0.03021240234375,-0.0329589825572836],[0.028839111328125,-0.0329589825572836],[0.028839111328125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":21,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0329589825572836],[0.03021240234375,-0.0329589825572836],[0.03021240234375,-0.0343322733360987],[0.028839111328125,-0.0343322733360987],[0.028839111328125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":21,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0343322733360987],[0.03021240234375,-0.0343322733360987],[0.03021240234375,-0.0357055640951897],[0.028839111328125,-0.0357055640951897],[0.028839111328125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":21,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0357055640951897],[0.03021240234375,-0.0357055640951897],[0.03021240234375,-0.0370788548337641],[0.028839111328125,-0.0370788548337641],[0.028839111328125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":21,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0370788548337641],[0.03021240234375,-0.0370788548337641],[0.03021240234375,-0.0384521455510425],[0.028839111328125,-0.0384521455510425],[0.028839111328125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":21,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0384521455510425],[0.03021240234375,-0.0384521455510425],[0.03021240234375,-0.039825436246223],[0.028839111328125,-0.039825436246223],[0.028839111328125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":21,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.039825436246223],[0.03021240234375,-0.039825436246223],[0.03021240234375,-0.0411987269185324],[0.028839111328125,-0.0411987269185324],[0.028839111328125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":21,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0411987269185324],[0.03021240234375,-0.0411987269185324],[0.03021240234375,-0.042572017567172],[0.028839111328125,-0.042572017567172],[0.028839111328125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":21,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.042572017567172],[0.03021240234375,-0.042572017567172],[0.03021240234375,-0.0439453081913529],[0.028839111328125,-0.0439453081913529],[0.028839111328125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":21,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0439453081913529],[0.03021240234375,-0.0439453081913529],[0.03021240234375,-0.045318598790289],[0.028839111328125,-0.045318598790289],[0.028839111328125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":21,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.045318598790289],[0.03021240234375,-0.045318598790289],[0.03021240234375,-0.0466918893631913],[0.028839111328125,-0.0466918893631913],[0.028839111328125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":21,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0466918893631913],[0.03021240234375,-0.0466918893631913],[0.03021240234375,-0.0480651799092611],[0.028839111328125,-0.0480651799092611],[0.028839111328125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":21,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0480651799092611],[0.03021240234375,-0.0480651799092611],[0.03021240234375,-0.0494384704277221],[0.028839111328125,-0.0494384704277221],[0.028839111328125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":21,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0494384704277221],[0.03021240234375,-0.0494384704277221],[0.03021240234375,-0.0508117609177883],[0.028839111328125,-0.0508117609177883],[0.028839111328125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":21,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0508117609177883],[0.03021240234375,-0.0508117609177883],[0.03021240234375,-0.0521850513786548],[0.028839111328125,-0.0521850513786548],[0.028839111328125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":21,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0521850513786548],[0.03021240234375,-0.0521850513786548],[0.03021240234375,-0.0535583418095483],[0.028839111328125,-0.0535583418095483],[0.028839111328125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":21,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0535583418095483],[0.03021240234375,-0.0535583418095483],[0.03021240234375,-0.0549316322096735],[0.028839111328125,-0.0549316322096735],[0.028839111328125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":21,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0549316322096735],[0.03021240234375,-0.0549316322096735],[0.03021240234375,-0.0563049225782379],[0.028839111328125,-0.0563049225782379],[0.028839111328125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":21,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0563049225782379],[0.03021240234375,-0.0563049225782379],[0.03021240234375,-0.0576782129144526],[0.028839111328125,-0.0576782129144526],[0.028839111328125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":21,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0576782129144526],[0.03021240234375,-0.0576782129144526],[0.03021240234375,-0.0590515032175379],[0.028839111328125,-0.0590515032175379],[0.028839111328125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":21,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0590515032175379],[0.03021240234375,-0.0590515032175379],[0.03021240234375,-0.0604247934867017],[0.028839111328125,-0.0604247934867017],[0.028839111328125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":21,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0604247934867017],[0.03021240234375,-0.0604247934867017],[0.03021240234375,-0.0617980837211484],[0.028839111328125,-0.0617980837211484],[0.028839111328125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":21,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0617980837211484],[0.03021240234375,-0.0617980837211484],[0.03021240234375,-0.0631713739200889],[0.028839111328125,-0.0631713739200889],[0.028839111328125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":21,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0631713739200889],[0.03021240234375,-0.0631713739200889],[0.03021240234375,-0.0645446640827373],[0.028839111328125,-0.0645446640827373],[0.028839111328125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":21,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.028839111328125,-0.0645446640827373],[0.03021240234375,-0.0645446640827373],[0.03021240234375,-0.065917954208311],[0.028839111328125,-0.065917954208311],[0.028839111328125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":22,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0219726557114224],[0.031585693359375,-0.0219726557114224],[0.031585693359375,-0.0233459466196176],[0.03021240234375,-0.0233459466196176],[0.03021240234375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":22,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0233459466196176],[0.031585693359375,-0.0233459466196176],[0.031585693359375,-0.0247192375144014],[0.03021240234375,-0.0247192375144014],[0.03021240234375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":22,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0247192375144014],[0.031585693359375,-0.0247192375144014],[0.031585693359375,-0.026092528394991],[0.03021240234375,-0.026092528394991],[0.03021240234375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":22,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.026092528394991],[0.031585693359375,-0.026092528394991],[0.031585693359375,-0.0274658192605846],[0.03021240234375,-0.0274658192605846],[0.03021240234375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":22,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0274658192605846],[0.031585693359375,-0.0274658192605846],[0.031585693359375,-0.0288391101104026],[0.03021240234375,-0.0288391101104026],[0.03021240234375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":22,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0288391101104026],[0.031585693359375,-0.0288391101104026],[0.031585693359375,-0.0302124009436464],[0.03021240234375,-0.0302124009436464],[0.03021240234375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":22,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0302124009436464],[0.031585693359375,-0.0302124009436464],[0.031585693359375,-0.0315856917595396],[0.03021240234375,-0.0315856917595396],[0.03021240234375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":22,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0315856917595396],[0.031585693359375,-0.0315856917595396],[0.031585693359375,-0.0329589825572836],[0.03021240234375,-0.0329589825572836],[0.03021240234375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":22,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0329589825572836],[0.031585693359375,-0.0329589825572836],[0.031585693359375,-0.0343322733360987],[0.03021240234375,-0.0343322733360987],[0.03021240234375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":22,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0343322733360987],[0.031585693359375,-0.0343322733360987],[0.031585693359375,-0.0357055640951897],[0.03021240234375,-0.0357055640951897],[0.03021240234375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":22,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0357055640951897],[0.031585693359375,-0.0357055640951897],[0.031585693359375,-0.0370788548337641],[0.03021240234375,-0.0370788548337641],[0.03021240234375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":22,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0370788548337641],[0.031585693359375,-0.0370788548337641],[0.031585693359375,-0.0384521455510425],[0.03021240234375,-0.0384521455510425],[0.03021240234375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":22,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0384521455510425],[0.031585693359375,-0.0384521455510425],[0.031585693359375,-0.039825436246223],[0.03021240234375,-0.039825436246223],[0.03021240234375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":22,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.039825436246223],[0.031585693359375,-0.039825436246223],[0.031585693359375,-0.0411987269185324],[0.03021240234375,-0.0411987269185324],[0.03021240234375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":22,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0411987269185324],[0.031585693359375,-0.0411987269185324],[0.031585693359375,-0.042572017567172],[0.03021240234375,-0.042572017567172],[0.03021240234375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":22,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.042572017567172],[0.031585693359375,-0.042572017567172],[0.031585693359375,-0.0439453081913529],[0.03021240234375,-0.0439453081913529],[0.03021240234375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":22,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0439453081913529],[0.031585693359375,-0.0439453081913529],[0.031585693359375,-0.045318598790289],[0.03021240234375,-0.045318598790289],[0.03021240234375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":22,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.045318598790289],[0.031585693359375,-0.045318598790289],[0.031585693359375,-0.0466918893631913],[0.03021240234375,-0.0466918893631913],[0.03021240234375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":22,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0466918893631913],[0.031585693359375,-0.0466918893631913],[0.031585693359375,-0.0480651799092611],[0.03021240234375,-0.0480651799092611],[0.03021240234375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":22,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0480651799092611],[0.031585693359375,-0.0480651799092611],[0.031585693359375,-0.0494384704277221],[0.03021240234375,-0.0494384704277221],[0.03021240234375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":22,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0494384704277221],[0.031585693359375,-0.0494384704277221],[0.031585693359375,-0.0508117609177883],[0.03021240234375,-0.0508117609177883],[0.03021240234375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":22,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0508117609177883],[0.031585693359375,-0.0508117609177883],[0.031585693359375,-0.0521850513786548],[0.03021240234375,-0.0521850513786548],[0.03021240234375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":22,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0521850513786548],[0.031585693359375,-0.0521850513786548],[0.031585693359375,-0.0535583418095483],[0.03021240234375,-0.0535583418095483],[0.03021240234375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":22,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0535583418095483],[0.031585693359375,-0.0535583418095483],[0.031585693359375,-0.0549316322096735],[0.03021240234375,-0.0549316322096735],[0.03021240234375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":22,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0549316322096735],[0.031585693359375,-0.0549316322096735],[0.031585693359375,-0.0563049225782379],[0.03021240234375,-0.0563049225782379],[0.03021240234375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":22,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0563049225782379],[0.031585693359375,-0.0563049225782379],[0.031585693359375,-0.0576782129144526],[0.03021240234375,-0.0576782129144526],[0.03021240234375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":22,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0576782129144526],[0.031585693359375,-0.0576782129144526],[0.031585693359375,-0.0590515032175379],[0.03021240234375,-0.0590515032175379],[0.03021240234375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":22,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0590515032175379],[0.031585693359375,-0.0590515032175379],[0.031585693359375,-0.0604247934867017],[0.03021240234375,-0.0604247934867017],[0.03021240234375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":22,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0604247934867017],[0.031585693359375,-0.0604247934867017],[0.031585693359375,-0.0617980837211484],[0.03021240234375,-0.0617980837211484],[0.03021240234375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":22,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0617980837211484],[0.031585693359375,-0.0617980837211484],[0.031585693359375,-0.0631713739200889],[0.03021240234375,-0.0631713739200889],[0.03021240234375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":22,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0631713739200889],[0.031585693359375,-0.0631713739200889],[0.031585693359375,-0.0645446640827373],[0.03021240234375,-0.0645446640827373],[0.03021240234375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":22,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.03021240234375,-0.0645446640827373],[0.031585693359375,-0.0645446640827373],[0.031585693359375,-0.065917954208311],[0.03021240234375,-0.065917954208311],[0.03021240234375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":23,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0219726557114224],[0.032958984375,-0.0219726557114224],[0.032958984375,-0.0233459466196176],[0.031585693359375,-0.0233459466196176],[0.031585693359375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":23,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0233459466196176],[0.032958984375,-0.0233459466196176],[0.032958984375,-0.0247192375144014],[0.031585693359375,-0.0247192375144014],[0.031585693359375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":23,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0247192375144014],[0.032958984375,-0.0247192375144014],[0.032958984375,-0.026092528394991],[0.031585693359375,-0.026092528394991],[0.031585693359375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":23,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.026092528394991],[0.032958984375,-0.026092528394991],[0.032958984375,-0.0274658192605846],[0.031585693359375,-0.0274658192605846],[0.031585693359375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":23,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0274658192605846],[0.032958984375,-0.0274658192605846],[0.032958984375,-0.0288391101104026],[0.031585693359375,-0.0288391101104026],[0.031585693359375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":23,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0288391101104026],[0.032958984375,-0.0288391101104026],[0.032958984375,-0.0302124009436464],[0.031585693359375,-0.0302124009436464],[0.031585693359375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":23,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0302124009436464],[0.032958984375,-0.0302124009436464],[0.032958984375,-0.0315856917595396],[0.031585693359375,-0.0315856917595396],[0.031585693359375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":23,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0315856917595396],[0.032958984375,-0.0315856917595396],[0.032958984375,-0.0329589825572836],[0.031585693359375,-0.0329589825572836],[0.031585693359375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":23,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0329589825572836],[0.032958984375,-0.0329589825572836],[0.032958984375,-0.0343322733360987],[0.031585693359375,-0.0343322733360987],[0.031585693359375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":23,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0343322733360987],[0.032958984375,-0.0343322733360987],[0.032958984375,-0.0357055640951897],[0.031585693359375,-0.0357055640951897],[0.031585693359375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":23,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0357055640951897],[0.032958984375,-0.0357055640951897],[0.032958984375,-0.0370788548337641],[0.031585693359375,-0.0370788548337641],[0.031585693359375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":23,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0370788548337641],[0.032958984375,-0.0370788548337641],[0.032958984375,-0.0384521455510425],[0.031585693359375,-0.0384521455510425],[0.031585693359375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":23,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0384521455510425],[0.032958984375,-0.0384521455510425],[0.032958984375,-0.039825436246223],[0.031585693359375,-0.039825436246223],[0.031585693359375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":23,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.039825436246223],[0.032958984375,-0.039825436246223],[0.032958984375,-0.0411987269185324],[0.031585693359375,-0.0411987269185324],[0.031585693359375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":23,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0411987269185324],[0.032958984375,-0.0411987269185324],[0.032958984375,-0.042572017567172],[0.031585693359375,-0.042572017567172],[0.031585693359375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":23,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.042572017567172],[0.032958984375,-0.042572017567172],[0.032958984375,-0.0439453081913529],[0.031585693359375,-0.0439453081913529],[0.031585693359375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":23,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0439453081913529],[0.032958984375,-0.0439453081913529],[0.032958984375,-0.045318598790289],[0.031585693359375,-0.045318598790289],[0.031585693359375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":23,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.045318598790289],[0.032958984375,-0.045318598790289],[0.032958984375,-0.0466918893631913],[0.031585693359375,-0.0466918893631913],[0.031585693359375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":23,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0466918893631913],[0.032958984375,-0.0466918893631913],[0.032958984375,-0.0480651799092611],[0.031585693359375,-0.0480651799092611],[0.031585693359375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":23,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0480651799092611],[0.032958984375,-0.0480651799092611],[0.032958984375,-0.0494384704277221],[0.031585693359375,-0.0494384704277221],[0.031585693359375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":23,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0494384704277221],[0.032958984375,-0.0494384704277221],[0.032958984375,-0.0508117609177883],[0.031585693359375,-0.0508117609177883],[0.031585693359375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":23,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0508117609177883],[0.032958984375,-0.0508117609177883],[0.032958984375,-0.0521850513786548],[0.031585693359375,-0.0521850513786548],[0.031585693359375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":23,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0521850513786548],[0.032958984375,-0.0521850513786548],[0.032958984375,-0.0535583418095483],[0.031585693359375,-0.0535583418095483],[0.031585693359375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":23,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0535583418095483],[0.032958984375,-0.0535583418095483],[0.032958984375,-0.0549316322096735],[0.031585693359375,-0.0549316322096735],[0.031585693359375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":23,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0549316322096735],[0.032958984375,-0.0549316322096735],[0.032958984375,-0.0563049225782379],[0.031585693359375,-0.0563049225782379],[0.031585693359375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":23,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0563049225782379],[0.032958984375,-0.0563049225782379],[0.032958984375,-0.0576782129144526],[0.031585693359375,-0.0576782129144526],[0.031585693359375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":23,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0576782129144526],[0.032958984375,-0.0576782129144526],[0.032958984375,-0.0590515032175379],[0.031585693359375,-0.0590515032175379],[0.031585693359375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":23,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0590515032175379],[0.032958984375,-0.0590515032175379],[0.032958984375,-0.0604247934867017],[0.031585693359375,-0.0604247934867017],[0.031585693359375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":23,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0604247934867017],[0.032958984375,-0.0604247934867017],[0.032958984375,-0.0617980837211484],[0.031585693359375,-0.0617980837211484],[0.031585693359375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":23,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0617980837211484],[0.032958984375,-0.0617980837211484],[0.032958984375,-0.0631713739200889],[0.031585693359375,-0.0631713739200889],[0.031585693359375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":23,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0631713739200889],[0.032958984375,-0.0631713739200889],[0.032958984375,-0.0645446640827373],[0.031585693359375,-0.0645446640827373],[0.031585693359375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":23,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.031585693359375,-0.0645446640827373],[0.032958984375,-0.0645446640827373],[0.032958984375,-0.065917954208311],[0.031585693359375,-0.065917954208311],[0.031585693359375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":24,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0219726557114224],[0.034332275390625,-0.0219726557114224],[0.034332275390625,-0.0233459466196176],[0.032958984375,-0.0233459466196176],[0.032958984375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":24,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0233459466196176],[0.034332275390625,-0.0233459466196176],[0.034332275390625,-0.0247192375144014],[0.032958984375,-0.0247192375144014],[0.032958984375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":24,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0247192375144014],[0.034332275390625,-0.0247192375144014],[0.034332275390625,-0.026092528394991],[0.032958984375,-0.026092528394991],[0.032958984375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":24,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.026092528394991],[0.034332275390625,-0.026092528394991],[0.034332275390625,-0.0274658192605846],[0.032958984375,-0.0274658192605846],[0.032958984375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":24,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0274658192605846],[0.034332275390625,-0.0274658192605846],[0.034332275390625,-0.0288391101104026],[0.032958984375,-0.0288391101104026],[0.032958984375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":24,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0288391101104026],[0.034332275390625,-0.0288391101104026],[0.034332275390625,-0.0302124009436464],[0.032958984375,-0.0302124009436464],[0.032958984375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":24,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0302124009436464],[0.034332275390625,-0.0302124009436464],[0.034332275390625,-0.0315856917595396],[0.032958984375,-0.0315856917595396],[0.032958984375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":24,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0315856917595396],[0.034332275390625,-0.0315856917595396],[0.034332275390625,-0.0329589825572836],[0.032958984375,-0.0329589825572836],[0.032958984375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":24,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0329589825572836],[0.034332275390625,-0.0329589825572836],[0.034332275390625,-0.0343322733360987],[0.032958984375,-0.0343322733360987],[0.032958984375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":24,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0343322733360987],[0.034332275390625,-0.0343322733360987],[0.034332275390625,-0.0357055640951897],[0.032958984375,-0.0357055640951897],[0.032958984375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":24,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0357055640951897],[0.034332275390625,-0.0357055640951897],[0.034332275390625,-0.0370788548337641],[0.032958984375,-0.0370788548337641],[0.032958984375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":24,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0370788548337641],[0.034332275390625,-0.0370788548337641],[0.034332275390625,-0.0384521455510425],[0.032958984375,-0.0384521455510425],[0.032958984375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":24,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0384521455510425],[0.034332275390625,-0.0384521455510425],[0.034332275390625,-0.039825436246223],[0.032958984375,-0.039825436246223],[0.032958984375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":24,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.039825436246223],[0.034332275390625,-0.039825436246223],[0.034332275390625,-0.0411987269185324],[0.032958984375,-0.0411987269185324],[0.032958984375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":24,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0411987269185324],[0.034332275390625,-0.0411987269185324],[0.034332275390625,-0.042572017567172],[0.032958984375,-0.042572017567172],[0.032958984375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":24,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.042572017567172],[0.034332275390625,-0.042572017567172],[0.034332275390625,-0.0439453081913529],[0.032958984375,-0.0439453081913529],[0.032958984375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":24,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0439453081913529],[0.034332275390625,-0.0439453081913529],[0.034332275390625,-0.045318598790289],[0.032958984375,-0.045318598790289],[0.032958984375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":24,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.045318598790289],[0.034332275390625,-0.045318598790289],[0.034332275390625,-0.0466918893631913],[0.032958984375,-0.0466918893631913],[0.032958984375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":24,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0466918893631913],[0.034332275390625,-0.0466918893631913],[0.034332275390625,-0.0480651799092611],[0.032958984375,-0.0480651799092611],[0.032958984375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":24,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0480651799092611],[0.034332275390625,-0.0480651799092611],[0.034332275390625,-0.0494384704277221],[0.032958984375,-0.0494384704277221],[0.032958984375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":24,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0494384704277221],[0.034332275390625,-0.0494384704277221],[0.034332275390625,-0.0508117609177883],[0.032958984375,-0.0508117609177883],[0.032958984375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":24,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0508117609177883],[0.034332275390625,-0.0508117609177883],[0.034332275390625,-0.0521850513786548],[0.032958984375,-0.0521850513786548],[0.032958984375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":24,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0521850513786548],[0.034332275390625,-0.0521850513786548],[0.034332275390625,-0.0535583418095483],[0.032958984375,-0.0535583418095483],[0.032958984375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":24,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0535583418095483],[0.034332275390625,-0.0535583418095483],[0.034332275390625,-0.0549316322096735],[0.032958984375,-0.0549316322096735],[0.032958984375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":24,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0549316322096735],[0.034332275390625,-0.0549316322096735],[0.034332275390625,-0.0563049225782379],[0.032958984375,-0.0563049225782379],[0.032958984375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":24,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0563049225782379],[0.034332275390625,-0.0563049225782379],[0.034332275390625,-0.0576782129144526],[0.032958984375,-0.0576782129144526],[0.032958984375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":24,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0576782129144526],[0.034332275390625,-0.0576782129144526],[0.034332275390625,-0.0590515032175379],[0.032958984375,-0.0590515032175379],[0.032958984375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":24,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0590515032175379],[0.034332275390625,-0.0590515032175379],[0.034332275390625,-0.0604247934867017],[0.032958984375,-0.0604247934867017],[0.032958984375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":24,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0604247934867017],[0.034332275390625,-0.0604247934867017],[0.034332275390625,-0.0617980837211484],[0.032958984375,-0.0617980837211484],[0.032958984375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":24,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0617980837211484],[0.034332275390625,-0.0617980837211484],[0.034332275390625,-0.0631713739200889],[0.032958984375,-0.0631713739200889],[0.032958984375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":24,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0631713739200889],[0.034332275390625,-0.0631713739200889],[0.034332275390625,-0.0645446640827373],[0.032958984375,-0.0645446640827373],[0.032958984375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":24,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.032958984375,-0.0645446640827373],[0.034332275390625,-0.0645446640827373],[0.034332275390625,-0.065917954208311],[0.032958984375,-0.065917954208311],[0.032958984375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":25,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0219726557114224],[0.03570556640625,-0.0219726557114224],[0.03570556640625,-0.0233459466196176],[0.034332275390625,-0.0233459466196176],[0.034332275390625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":25,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0233459466196176],[0.03570556640625,-0.0233459466196176],[0.03570556640625,-0.0247192375144014],[0.034332275390625,-0.0247192375144014],[0.034332275390625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":25,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0247192375144014],[0.03570556640625,-0.0247192375144014],[0.03570556640625,-0.026092528394991],[0.034332275390625,-0.026092528394991],[0.034332275390625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":25,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.026092528394991],[0.03570556640625,-0.026092528394991],[0.03570556640625,-0.0274658192605846],[0.034332275390625,-0.0274658192605846],[0.034332275390625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":25,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0274658192605846],[0.03570556640625,-0.0274658192605846],[0.03570556640625,-0.0288391101104026],[0.034332275390625,-0.0288391101104026],[0.034332275390625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":25,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0288391101104026],[0.03570556640625,-0.0288391101104026],[0.03570556640625,-0.0302124009436464],[0.034332275390625,-0.0302124009436464],[0.034332275390625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":25,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0302124009436464],[0.03570556640625,-0.0302124009436464],[0.03570556640625,-0.0315856917595396],[0.034332275390625,-0.0315856917595396],[0.034332275390625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":25,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0315856917595396],[0.03570556640625,-0.0315856917595396],[0.03570556640625,-0.0329589825572836],[0.034332275390625,-0.0329589825572836],[0.034332275390625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":25,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0329589825572836],[0.03570556640625,-0.0329589825572836],[0.03570556640625,-0.0343322733360987],[0.034332275390625,-0.0343322733360987],[0.034332275390625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":25,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0343322733360987],[0.03570556640625,-0.0343322733360987],[0.03570556640625,-0.0357055640951897],[0.034332275390625,-0.0357055640951897],[0.034332275390625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":25,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0357055640951897],[0.03570556640625,-0.0357055640951897],[0.03570556640625,-0.0370788548337641],[0.034332275390625,-0.0370788548337641],[0.034332275390625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":25,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0370788548337641],[0.03570556640625,-0.0370788548337641],[0.03570556640625,-0.0384521455510425],[0.034332275390625,-0.0384521455510425],[0.034332275390625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":25,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0384521455510425],[0.03570556640625,-0.0384521455510425],[0.03570556640625,-0.039825436246223],[0.034332275390625,-0.039825436246223],[0.034332275390625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":25,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.039825436246223],[0.03570556640625,-0.039825436246223],[0.03570556640625,-0.0411987269185324],[0.034332275390625,-0.0411987269185324],[0.034332275390625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":25,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0411987269185324],[0.03570556640625,-0.0411987269185324],[0.03570556640625,-0.042572017567172],[0.034332275390625,-0.042572017567172],[0.034332275390625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":25,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.042572017567172],[0.03570556640625,-0.042572017567172],[0.03570556640625,-0.0439453081913529],[0.034332275390625,-0.0439453081913529],[0.034332275390625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":25,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0439453081913529],[0.03570556640625,-0.0439453081913529],[0.03570556640625,-0.045318598790289],[0.034332275390625,-0.045318598790289],[0.034332275390625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":25,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.045318598790289],[0.03570556640625,-0.045318598790289],[0.03570556640625,-0.0466918893631913],[0.034332275390625,-0.0466918893631913],[0.034332275390625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":25,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0466918893631913],[0.03570556640625,-0.0466918893631913],[0.03570556640625,-0.0480651799092611],[0.034332275390625,-0.0480651799092611],[0.034332275390625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":25,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0480651799092611],[0.03570556640625,-0.0480651799092611],[0.03570556640625,-0.0494384704277221],[0.034332275390625,-0.0494384704277221],[0.034332275390625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":25,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0494384704277221],[0.03570556640625,-0.0494384704277221],[0.03570556640625,-0.0508117609177883],[0.034332275390625,-0.0508117609177883],[0.034332275390625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":25,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0508117609177883],[0.03570556640625,-0.0508117609177883],[0.03570556640625,-0.0521850513786548],[0.034332275390625,-0.0521850513786548],[0.034332275390625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":25,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0521850513786548],[0.03570556640625,-0.0521850513786548],[0.03570556640625,-0.0535583418095483],[0.034332275390625,-0.0535583418095483],[0.034332275390625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":25,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0535583418095483],[0.03570556640625,-0.0535583418095483],[0.03570556640625,-0.0549316322096735],[0.034332275390625,-0.0549316322096735],[0.034332275390625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":25,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0549316322096735],[0.03570556640625,-0.0549316322096735],[0.03570556640625,-0.0563049225782379],[0.034332275390625,-0.0563049225782379],[0.034332275390625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":25,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0563049225782379],[0.03570556640625,-0.0563049225782379],[0.03570556640625,-0.0576782129144526],[0.034332275390625,-0.0576782129144526],[0.034332275390625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":25,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0576782129144526],[0.03570556640625,-0.0576782129144526],[0.03570556640625,-0.0590515032175379],[0.034332275390625,-0.0590515032175379],[0.034332275390625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":25,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0590515032175379],[0.03570556640625,-0.0590515032175379],[0.03570556640625,-0.0604247934867017],[0.034332275390625,-0.0604247934867017],[0.034332275390625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":25,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0604247934867017],[0.03570556640625,-0.0604247934867017],[0.03570556640625,-0.0617980837211484],[0.034332275390625,-0.0617980837211484],[0.034332275390625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":25,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0617980837211484],[0.03570556640625,-0.0617980837211484],[0.03570556640625,-0.0631713739200889],[0.034332275390625,-0.0631713739200889],[0.034332275390625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":25,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0631713739200889],[0.03570556640625,-0.0631713739200889],[0.03570556640625,-0.0645446640827373],[0.034332275390625,-0.0645446640827373],[0.034332275390625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":25,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.034332275390625,-0.0645446640827373],[0.03570556640625,-0.0645446640827373],[0.03570556640625,-0.065917954208311],[0.034332275390625,-0.065917954208311],[0.034332275390625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":26,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0219726557114224],[0.037078857421875,-0.0219726557114224],[0.037078857421875,-0.0233459466196176],[0.03570556640625,-0.0233459466196176],[0.03570556640625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":26,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0233459466196176],[0.037078857421875,-0.0233459466196176],[0.037078857421875,-0.0247192375144014],[0.03570556640625,-0.0247192375144014],[0.03570556640625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":26,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0247192375144014],[0.037078857421875,-0.0247192375144014],[0.037078857421875,-0.026092528394991],[0.03570556640625,-0.026092528394991],[0.03570556640625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":26,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.026092528394991],[0.037078857421875,-0.026092528394991],[0.037078857421875,-0.0274658192605846],[0.03570556640625,-0.0274658192605846],[0.03570556640625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":26,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0274658192605846],[0.037078857421875,-0.0274658192605846],[0.037078857421875,-0.0288391101104026],[0.03570556640625,-0.0288391101104026],[0.03570556640625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":26,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0288391101104026],[0.037078857421875,-0.0288391101104026],[0.037078857421875,-0.0302124009436464],[0.03570556640625,-0.0302124009436464],[0.03570556640625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":26,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0302124009436464],[0.037078857421875,-0.0302124009436464],[0.037078857421875,-0.0315856917595396],[0.03570556640625,-0.0315856917595396],[0.03570556640625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":26,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0315856917595396],[0.037078857421875,-0.0315856917595396],[0.037078857421875,-0.0329589825572836],[0.03570556640625,-0.0329589825572836],[0.03570556640625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":26,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0329589825572836],[0.037078857421875,-0.0329589825572836],[0.037078857421875,-0.0343322733360987],[0.03570556640625,-0.0343322733360987],[0.03570556640625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":26,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0343322733360987],[0.037078857421875,-0.0343322733360987],[0.037078857421875,-0.0357055640951897],[0.03570556640625,-0.0357055640951897],[0.03570556640625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":26,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0357055640951897],[0.037078857421875,-0.0357055640951897],[0.037078857421875,-0.0370788548337641],[0.03570556640625,-0.0370788548337641],[0.03570556640625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":26,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0370788548337641],[0.037078857421875,-0.0370788548337641],[0.037078857421875,-0.0384521455510425],[0.03570556640625,-0.0384521455510425],[0.03570556640625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":26,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0384521455510425],[0.037078857421875,-0.0384521455510425],[0.037078857421875,-0.039825436246223],[0.03570556640625,-0.039825436246223],[0.03570556640625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":26,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.039825436246223],[0.037078857421875,-0.039825436246223],[0.037078857421875,-0.0411987269185324],[0.03570556640625,-0.0411987269185324],[0.03570556640625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":26,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0411987269185324],[0.037078857421875,-0.0411987269185324],[0.037078857421875,-0.042572017567172],[0.03570556640625,-0.042572017567172],[0.03570556640625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":26,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.042572017567172],[0.037078857421875,-0.042572017567172],[0.037078857421875,-0.0439453081913529],[0.03570556640625,-0.0439453081913529],[0.03570556640625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":26,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0439453081913529],[0.037078857421875,-0.0439453081913529],[0.037078857421875,-0.045318598790289],[0.03570556640625,-0.045318598790289],[0.03570556640625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":26,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.045318598790289],[0.037078857421875,-0.045318598790289],[0.037078857421875,-0.0466918893631913],[0.03570556640625,-0.0466918893631913],[0.03570556640625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":26,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0466918893631913],[0.037078857421875,-0.0466918893631913],[0.037078857421875,-0.0480651799092611],[0.03570556640625,-0.0480651799092611],[0.03570556640625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":26,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0480651799092611],[0.037078857421875,-0.0480651799092611],[0.037078857421875,-0.0494384704277221],[0.03570556640625,-0.0494384704277221],[0.03570556640625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":26,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0494384704277221],[0.037078857421875,-0.0494384704277221],[0.037078857421875,-0.0508117609177883],[0.03570556640625,-0.0508117609177883],[0.03570556640625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":26,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0508117609177883],[0.037078857421875,-0.0508117609177883],[0.037078857421875,-0.0521850513786548],[0.03570556640625,-0.0521850513786548],[0.03570556640625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":26,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0521850513786548],[0.037078857421875,-0.0521850513786548],[0.037078857421875,-0.0535583418095483],[0.03570556640625,-0.0535583418095483],[0.03570556640625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":26,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0535583418095483],[0.037078857421875,-0.0535583418095483],[0.037078857421875,-0.0549316322096735],[0.03570556640625,-0.0549316322096735],[0.03570556640625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":26,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0549316322096735],[0.037078857421875,-0.0549316322096735],[0.037078857421875,-0.0563049225782379],[0.03570556640625,-0.0563049225782379],[0.03570556640625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":26,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0563049225782379],[0.037078857421875,-0.0563049225782379],[0.037078857421875,-0.0576782129144526],[0.03570556640625,-0.0576782129144526],[0.03570556640625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":26,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0576782129144526],[0.037078857421875,-0.0576782129144526],[0.037078857421875,-0.0590515032175379],[0.03570556640625,-0.0590515032175379],[0.03570556640625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":26,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0590515032175379],[0.037078857421875,-0.0590515032175379],[0.037078857421875,-0.0604247934867017],[0.03570556640625,-0.0604247934867017],[0.03570556640625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":26,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0604247934867017],[0.037078857421875,-0.0604247934867017],[0.037078857421875,-0.0617980837211484],[0.03570556640625,-0.0617980837211484],[0.03570556640625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":26,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0617980837211484],[0.037078857421875,-0.0617980837211484],[0.037078857421875,-0.0631713739200889],[0.03570556640625,-0.0631713739200889],[0.03570556640625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":26,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0631713739200889],[0.037078857421875,-0.0631713739200889],[0.037078857421875,-0.0645446640827373],[0.03570556640625,-0.0645446640827373],[0.03570556640625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":26,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.03570556640625,-0.0645446640827373],[0.037078857421875,-0.0645446640827373],[0.037078857421875,-0.065917954208311],[0.03570556640625,-0.065917954208311],[0.03570556640625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":27,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0219726557114224],[0.0384521484375,-0.0219726557114224],[0.0384521484375,-0.0233459466196176],[0.037078857421875,-0.0233459466196176],[0.037078857421875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":27,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0233459466196176],[0.0384521484375,-0.0233459466196176],[0.0384521484375,-0.0247192375144014],[0.037078857421875,-0.0247192375144014],[0.037078857421875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":27,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0247192375144014],[0.0384521484375,-0.0247192375144014],[0.0384521484375,-0.026092528394991],[0.037078857421875,-0.026092528394991],[0.037078857421875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":27,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.026092528394991],[0.0384521484375,-0.026092528394991],[0.0384521484375,-0.0274658192605846],[0.037078857421875,-0.0274658192605846],[0.037078857421875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":27,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0274658192605846],[0.0384521484375,-0.0274658192605846],[0.0384521484375,-0.0288391101104026],[0.037078857421875,-0.0288391101104026],[0.037078857421875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":27,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0288391101104026],[0.0384521484375,-0.0288391101104026],[0.0384521484375,-0.0302124009436464],[0.037078857421875,-0.0302124009436464],[0.037078857421875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":27,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0302124009436464],[0.0384521484375,-0.0302124009436464],[0.0384521484375,-0.0315856917595396],[0.037078857421875,-0.0315856917595396],[0.037078857421875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":27,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0315856917595396],[0.0384521484375,-0.0315856917595396],[0.0384521484375,-0.0329589825572836],[0.037078857421875,-0.0329589825572836],[0.037078857421875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":27,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0329589825572836],[0.0384521484375,-0.0329589825572836],[0.0384521484375,-0.0343322733360987],[0.037078857421875,-0.0343322733360987],[0.037078857421875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":27,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0343322733360987],[0.0384521484375,-0.0343322733360987],[0.0384521484375,-0.0357055640951897],[0.037078857421875,-0.0357055640951897],[0.037078857421875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":27,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0357055640951897],[0.0384521484375,-0.0357055640951897],[0.0384521484375,-0.0370788548337641],[0.037078857421875,-0.0370788548337641],[0.037078857421875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":27,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0370788548337641],[0.0384521484375,-0.0370788548337641],[0.0384521484375,-0.0384521455510425],[0.037078857421875,-0.0384521455510425],[0.037078857421875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":27,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0384521455510425],[0.0384521484375,-0.0384521455510425],[0.0384521484375,-0.039825436246223],[0.037078857421875,-0.039825436246223],[0.037078857421875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":27,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.039825436246223],[0.0384521484375,-0.039825436246223],[0.0384521484375,-0.0411987269185324],[0.037078857421875,-0.0411987269185324],[0.037078857421875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":27,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0411987269185324],[0.0384521484375,-0.0411987269185324],[0.0384521484375,-0.042572017567172],[0.037078857421875,-0.042572017567172],[0.037078857421875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":27,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.042572017567172],[0.0384521484375,-0.042572017567172],[0.0384521484375,-0.0439453081913529],[0.037078857421875,-0.0439453081913529],[0.037078857421875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":27,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0439453081913529],[0.0384521484375,-0.0439453081913529],[0.0384521484375,-0.045318598790289],[0.037078857421875,-0.045318598790289],[0.037078857421875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":27,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.045318598790289],[0.0384521484375,-0.045318598790289],[0.0384521484375,-0.0466918893631913],[0.037078857421875,-0.0466918893631913],[0.037078857421875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":27,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0466918893631913],[0.0384521484375,-0.0466918893631913],[0.0384521484375,-0.0480651799092611],[0.037078857421875,-0.0480651799092611],[0.037078857421875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":27,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0480651799092611],[0.0384521484375,-0.0480651799092611],[0.0384521484375,-0.0494384704277221],[0.037078857421875,-0.0494384704277221],[0.037078857421875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":27,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0494384704277221],[0.0384521484375,-0.0494384704277221],[0.0384521484375,-0.0508117609177883],[0.037078857421875,-0.0508117609177883],[0.037078857421875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":27,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0508117609177883],[0.0384521484375,-0.0508117609177883],[0.0384521484375,-0.0521850513786548],[0.037078857421875,-0.0521850513786548],[0.037078857421875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":27,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0521850513786548],[0.0384521484375,-0.0521850513786548],[0.0384521484375,-0.0535583418095483],[0.037078857421875,-0.0535583418095483],[0.037078857421875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":27,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0535583418095483],[0.0384521484375,-0.0535583418095483],[0.0384521484375,-0.0549316322096735],[0.037078857421875,-0.0549316322096735],[0.037078857421875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":27,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0549316322096735],[0.0384521484375,-0.0549316322096735],[0.0384521484375,-0.0563049225782379],[0.037078857421875,-0.0563049225782379],[0.037078857421875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":27,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0563049225782379],[0.0384521484375,-0.0563049225782379],[0.0384521484375,-0.0576782129144526],[0.037078857421875,-0.0576782129144526],[0.037078857421875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":27,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0576782129144526],[0.0384521484375,-0.0576782129144526],[0.0384521484375,-0.0590515032175379],[0.037078857421875,-0.0590515032175379],[0.037078857421875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":27,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0590515032175379],[0.0384521484375,-0.0590515032175379],[0.0384521484375,-0.0604247934867017],[0.037078857421875,-0.0604247934867017],[0.037078857421875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":27,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0604247934867017],[0.0384521484375,-0.0604247934867017],[0.0384521484375,-0.0617980837211484],[0.037078857421875,-0.0617980837211484],[0.037078857421875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":27,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0617980837211484],[0.0384521484375,-0.0617980837211484],[0.0384521484375,-0.0631713739200889],[0.037078857421875,-0.0631713739200889],[0.037078857421875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":27,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0631713739200889],[0.0384521484375,-0.0631713739200889],[0.0384521484375,-0.0645446640827373],[0.037078857421875,-0.0645446640827373],[0.037078857421875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":27,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.037078857421875,-0.0645446640827373],[0.0384521484375,-0.0645446640827373],[0.0384521484375,-0.065917954208311],[0.037078857421875,-0.065917954208311],[0.037078857421875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":28,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0219726557114224],[0.039825439453125,-0.0219726557114224],[0.039825439453125,-0.0233459466196176],[0.0384521484375,-0.0233459466196176],[0.0384521484375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":28,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0233459466196176],[0.039825439453125,-0.0233459466196176],[0.039825439453125,-0.0247192375144014],[0.0384521484375,-0.0247192375144014],[0.0384521484375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":28,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0247192375144014],[0.039825439453125,-0.0247192375144014],[0.039825439453125,-0.026092528394991],[0.0384521484375,-0.026092528394991],[0.0384521484375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":28,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.026092528394991],[0.039825439453125,-0.026092528394991],[0.039825439453125,-0.0274658192605846],[0.0384521484375,-0.0274658192605846],[0.0384521484375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":28,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0274658192605846],[0.039825439453125,-0.0274658192605846],[0.039825439453125,-0.0288391101104026],[0.0384521484375,-0.0288391101104026],[0.0384521484375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":28,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0288391101104026],[0.039825439453125,-0.0288391101104026],[0.039825439453125,-0.0302124009436464],[0.0384521484375,-0.0302124009436464],[0.0384521484375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":28,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0302124009436464],[0.039825439453125,-0.0302124009436464],[0.039825439453125,-0.0315856917595396],[0.0384521484375,-0.0315856917595396],[0.0384521484375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":28,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0315856917595396],[0.039825439453125,-0.0315856917595396],[0.039825439453125,-0.0329589825572836],[0.0384521484375,-0.0329589825572836],[0.0384521484375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":28,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0329589825572836],[0.039825439453125,-0.0329589825572836],[0.039825439453125,-0.0343322733360987],[0.0384521484375,-0.0343322733360987],[0.0384521484375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":28,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0343322733360987],[0.039825439453125,-0.0343322733360987],[0.039825439453125,-0.0357055640951897],[0.0384521484375,-0.0357055640951897],[0.0384521484375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":28,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0357055640951897],[0.039825439453125,-0.0357055640951897],[0.039825439453125,-0.0370788548337641],[0.0384521484375,-0.0370788548337641],[0.0384521484375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":28,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0370788548337641],[0.039825439453125,-0.0370788548337641],[0.039825439453125,-0.0384521455510425],[0.0384521484375,-0.0384521455510425],[0.0384521484375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":28,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0384521455510425],[0.039825439453125,-0.0384521455510425],[0.039825439453125,-0.039825436246223],[0.0384521484375,-0.039825436246223],[0.0384521484375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":28,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.039825436246223],[0.039825439453125,-0.039825436246223],[0.039825439453125,-0.0411987269185324],[0.0384521484375,-0.0411987269185324],[0.0384521484375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":28,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0411987269185324],[0.039825439453125,-0.0411987269185324],[0.039825439453125,-0.042572017567172],[0.0384521484375,-0.042572017567172],[0.0384521484375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":28,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.042572017567172],[0.039825439453125,-0.042572017567172],[0.039825439453125,-0.0439453081913529],[0.0384521484375,-0.0439453081913529],[0.0384521484375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":28,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0439453081913529],[0.039825439453125,-0.0439453081913529],[0.039825439453125,-0.045318598790289],[0.0384521484375,-0.045318598790289],[0.0384521484375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":28,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.045318598790289],[0.039825439453125,-0.045318598790289],[0.039825439453125,-0.0466918893631913],[0.0384521484375,-0.0466918893631913],[0.0384521484375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":28,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0466918893631913],[0.039825439453125,-0.0466918893631913],[0.039825439453125,-0.0480651799092611],[0.0384521484375,-0.0480651799092611],[0.0384521484375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":28,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0480651799092611],[0.039825439453125,-0.0480651799092611],[0.039825439453125,-0.0494384704277221],[0.0384521484375,-0.0494384704277221],[0.0384521484375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":28,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0494384704277221],[0.039825439453125,-0.0494384704277221],[0.039825439453125,-0.0508117609177883],[0.0384521484375,-0.0508117609177883],[0.0384521484375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":28,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0508117609177883],[0.039825439453125,-0.0508117609177883],[0.039825439453125,-0.0521850513786548],[0.0384521484375,-0.0521850513786548],[0.0384521484375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":28,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0521850513786548],[0.039825439453125,-0.0521850513786548],[0.039825439453125,-0.0535583418095483],[0.0384521484375,-0.0535583418095483],[0.0384521484375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":28,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0535583418095483],[0.039825439453125,-0.0535583418095483],[0.039825439453125,-0.0549316322096735],[0.0384521484375,-0.0549316322096735],[0.0384521484375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":28,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0549316322096735],[0.039825439453125,-0.0549316322096735],[0.039825439453125,-0.0563049225782379],[0.0384521484375,-0.0563049225782379],[0.0384521484375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":28,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0563049225782379],[0.039825439453125,-0.0563049225782379],[0.039825439453125,-0.0576782129144526],[0.0384521484375,-0.0576782129144526],[0.0384521484375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":28,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0576782129144526],[0.039825439453125,-0.0576782129144526],[0.039825439453125,-0.0590515032175379],[0.0384521484375,-0.0590515032175379],[0.0384521484375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":28,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0590515032175379],[0.039825439453125,-0.0590515032175379],[0.039825439453125,-0.0604247934867017],[0.0384521484375,-0.0604247934867017],[0.0384521484375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":28,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0604247934867017],[0.039825439453125,-0.0604247934867017],[0.039825439453125,-0.0617980837211484],[0.0384521484375,-0.0617980837211484],[0.0384521484375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":28,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0617980837211484],[0.039825439453125,-0.0617980837211484],[0.039825439453125,-0.0631713739200889],[0.0384521484375,-0.0631713739200889],[0.0384521484375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":28,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0631713739200889],[0.039825439453125,-0.0631713739200889],[0.039825439453125,-0.0645446640827373],[0.0384521484375,-0.0645446640827373],[0.0384521484375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":28,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0384521484375,-0.0645446640827373],[0.039825439453125,-0.0645446640827373],[0.039825439453125,-0.065917954208311],[0.0384521484375,-0.065917954208311],[0.0384521484375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":29,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0219726557114224],[0.04119873046875,-0.0219726557114224],[0.04119873046875,-0.0233459466196176],[0.039825439453125,-0.0233459466196176],[0.039825439453125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":29,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0233459466196176],[0.04119873046875,-0.0233459466196176],[0.04119873046875,-0.0247192375144014],[0.039825439453125,-0.0247192375144014],[0.039825439453125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":29,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0247192375144014],[0.04119873046875,-0.0247192375144014],[0.04119873046875,-0.026092528394991],[0.039825439453125,-0.026092528394991],[0.039825439453125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":29,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.026092528394991],[0.04119873046875,-0.026092528394991],[0.04119873046875,-0.0274658192605846],[0.039825439453125,-0.0274658192605846],[0.039825439453125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":29,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0274658192605846],[0.04119873046875,-0.0274658192605846],[0.04119873046875,-0.0288391101104026],[0.039825439453125,-0.0288391101104026],[0.039825439453125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":29,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0288391101104026],[0.04119873046875,-0.0288391101104026],[0.04119873046875,-0.0302124009436464],[0.039825439453125,-0.0302124009436464],[0.039825439453125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":29,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0302124009436464],[0.04119873046875,-0.0302124009436464],[0.04119873046875,-0.0315856917595396],[0.039825439453125,-0.0315856917595396],[0.039825439453125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":29,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0315856917595396],[0.04119873046875,-0.0315856917595396],[0.04119873046875,-0.0329589825572836],[0.039825439453125,-0.0329589825572836],[0.039825439453125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":29,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0329589825572836],[0.04119873046875,-0.0329589825572836],[0.04119873046875,-0.0343322733360987],[0.039825439453125,-0.0343322733360987],[0.039825439453125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":29,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0343322733360987],[0.04119873046875,-0.0343322733360987],[0.04119873046875,-0.0357055640951897],[0.039825439453125,-0.0357055640951897],[0.039825439453125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":29,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0357055640951897],[0.04119873046875,-0.0357055640951897],[0.04119873046875,-0.0370788548337641],[0.039825439453125,-0.0370788548337641],[0.039825439453125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":29,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0370788548337641],[0.04119873046875,-0.0370788548337641],[0.04119873046875,-0.0384521455510425],[0.039825439453125,-0.0384521455510425],[0.039825439453125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":29,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0384521455510425],[0.04119873046875,-0.0384521455510425],[0.04119873046875,-0.039825436246223],[0.039825439453125,-0.039825436246223],[0.039825439453125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":29,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.039825436246223],[0.04119873046875,-0.039825436246223],[0.04119873046875,-0.0411987269185324],[0.039825439453125,-0.0411987269185324],[0.039825439453125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":29,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0411987269185324],[0.04119873046875,-0.0411987269185324],[0.04119873046875,-0.042572017567172],[0.039825439453125,-0.042572017567172],[0.039825439453125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":29,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.042572017567172],[0.04119873046875,-0.042572017567172],[0.04119873046875,-0.0439453081913529],[0.039825439453125,-0.0439453081913529],[0.039825439453125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":29,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0439453081913529],[0.04119873046875,-0.0439453081913529],[0.04119873046875,-0.045318598790289],[0.039825439453125,-0.045318598790289],[0.039825439453125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":29,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.045318598790289],[0.04119873046875,-0.045318598790289],[0.04119873046875,-0.0466918893631913],[0.039825439453125,-0.0466918893631913],[0.039825439453125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":29,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0466918893631913],[0.04119873046875,-0.0466918893631913],[0.04119873046875,-0.0480651799092611],[0.039825439453125,-0.0480651799092611],[0.039825439453125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":29,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0480651799092611],[0.04119873046875,-0.0480651799092611],[0.04119873046875,-0.0494384704277221],[0.039825439453125,-0.0494384704277221],[0.039825439453125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":29,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0494384704277221],[0.04119873046875,-0.0494384704277221],[0.04119873046875,-0.0508117609177883],[0.039825439453125,-0.0508117609177883],[0.039825439453125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":29,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0508117609177883],[0.04119873046875,-0.0508117609177883],[0.04119873046875,-0.0521850513786548],[0.039825439453125,-0.0521850513786548],[0.039825439453125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":29,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0521850513786548],[0.04119873046875,-0.0521850513786548],[0.04119873046875,-0.0535583418095483],[0.039825439453125,-0.0535583418095483],[0.039825439453125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":29,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0535583418095483],[0.04119873046875,-0.0535583418095483],[0.04119873046875,-0.0549316322096735],[0.039825439453125,-0.0549316322096735],[0.039825439453125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":29,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0549316322096735],[0.04119873046875,-0.0549316322096735],[0.04119873046875,-0.0563049225782379],[0.039825439453125,-0.0563049225782379],[0.039825439453125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":29,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0563049225782379],[0.04119873046875,-0.0563049225782379],[0.04119873046875,-0.0576782129144526],[0.039825439453125,-0.0576782129144526],[0.039825439453125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":29,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0576782129144526],[0.04119873046875,-0.0576782129144526],[0.04119873046875,-0.0590515032175379],[0.039825439453125,-0.0590515032175379],[0.039825439453125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":29,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0590515032175379],[0.04119873046875,-0.0590515032175379],[0.04119873046875,-0.0604247934867017],[0.039825439453125,-0.0604247934867017],[0.039825439453125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":29,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0604247934867017],[0.04119873046875,-0.0604247934867017],[0.04119873046875,-0.0617980837211484],[0.039825439453125,-0.0617980837211484],[0.039825439453125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":29,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0617980837211484],[0.04119873046875,-0.0617980837211484],[0.04119873046875,-0.0631713739200889],[0.039825439453125,-0.0631713739200889],[0.039825439453125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":29,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0631713739200889],[0.04119873046875,-0.0631713739200889],[0.04119873046875,-0.0645446640827373],[0.039825439453125,-0.0645446640827373],[0.039825439453125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":29,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.039825439453125,-0.0645446640827373],[0.04119873046875,-0.0645446640827373],[0.04119873046875,-0.065917954208311],[0.039825439453125,-0.065917954208311],[0.039825439453125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":30,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0219726557114224],[0.042572021484375,-0.0219726557114224],[0.042572021484375,-0.0233459466196176],[0.04119873046875,-0.0233459466196176],[0.04119873046875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":30,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0233459466196176],[0.042572021484375,-0.0233459466196176],[0.042572021484375,-0.0247192375144014],[0.04119873046875,-0.0247192375144014],[0.04119873046875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":30,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0247192375144014],[0.042572021484375,-0.0247192375144014],[0.042572021484375,-0.026092528394991],[0.04119873046875,-0.026092528394991],[0.04119873046875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":30,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.026092528394991],[0.042572021484375,-0.026092528394991],[0.042572021484375,-0.0274658192605846],[0.04119873046875,-0.0274658192605846],[0.04119873046875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":30,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0274658192605846],[0.042572021484375,-0.0274658192605846],[0.042572021484375,-0.0288391101104026],[0.04119873046875,-0.0288391101104026],[0.04119873046875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":30,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0288391101104026],[0.042572021484375,-0.0288391101104026],[0.042572021484375,-0.0302124009436464],[0.04119873046875,-0.0302124009436464],[0.04119873046875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":30,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0302124009436464],[0.042572021484375,-0.0302124009436464],[0.042572021484375,-0.0315856917595396],[0.04119873046875,-0.0315856917595396],[0.04119873046875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":30,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0315856917595396],[0.042572021484375,-0.0315856917595396],[0.042572021484375,-0.0329589825572836],[0.04119873046875,-0.0329589825572836],[0.04119873046875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":30,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0329589825572836],[0.042572021484375,-0.0329589825572836],[0.042572021484375,-0.0343322733360987],[0.04119873046875,-0.0343322733360987],[0.04119873046875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":30,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0343322733360987],[0.042572021484375,-0.0343322733360987],[0.042572021484375,-0.0357055640951897],[0.04119873046875,-0.0357055640951897],[0.04119873046875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":30,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0357055640951897],[0.042572021484375,-0.0357055640951897],[0.042572021484375,-0.0370788548337641],[0.04119873046875,-0.0370788548337641],[0.04119873046875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":30,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0370788548337641],[0.042572021484375,-0.0370788548337641],[0.042572021484375,-0.0384521455510425],[0.04119873046875,-0.0384521455510425],[0.04119873046875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":30,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0384521455510425],[0.042572021484375,-0.0384521455510425],[0.042572021484375,-0.039825436246223],[0.04119873046875,-0.039825436246223],[0.04119873046875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":30,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.039825436246223],[0.042572021484375,-0.039825436246223],[0.042572021484375,-0.0411987269185324],[0.04119873046875,-0.0411987269185324],[0.04119873046875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":30,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0411987269185324],[0.042572021484375,-0.0411987269185324],[0.042572021484375,-0.042572017567172],[0.04119873046875,-0.042572017567172],[0.04119873046875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":30,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.042572017567172],[0.042572021484375,-0.042572017567172],[0.042572021484375,-0.0439453081913529],[0.04119873046875,-0.0439453081913529],[0.04119873046875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":30,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0439453081913529],[0.042572021484375,-0.0439453081913529],[0.042572021484375,-0.045318598790289],[0.04119873046875,-0.045318598790289],[0.04119873046875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":30,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.045318598790289],[0.042572021484375,-0.045318598790289],[0.042572021484375,-0.0466918893631913],[0.04119873046875,-0.0466918893631913],[0.04119873046875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":30,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0466918893631913],[0.042572021484375,-0.0466918893631913],[0.042572021484375,-0.0480651799092611],[0.04119873046875,-0.0480651799092611],[0.04119873046875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":30,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0480651799092611],[0.042572021484375,-0.0480651799092611],[0.042572021484375,-0.0494384704277221],[0.04119873046875,-0.0494384704277221],[0.04119873046875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":30,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0494384704277221],[0.042572021484375,-0.0494384704277221],[0.042572021484375,-0.0508117609177883],[0.04119873046875,-0.0508117609177883],[0.04119873046875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":30,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0508117609177883],[0.042572021484375,-0.0508117609177883],[0.042572021484375,-0.0521850513786548],[0.04119873046875,-0.0521850513786548],[0.04119873046875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":30,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0521850513786548],[0.042572021484375,-0.0521850513786548],[0.042572021484375,-0.0535583418095483],[0.04119873046875,-0.0535583418095483],[0.04119873046875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":30,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0535583418095483],[0.042572021484375,-0.0535583418095483],[0.042572021484375,-0.0549316322096735],[0.04119873046875,-0.0549316322096735],[0.04119873046875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":30,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0549316322096735],[0.042572021484375,-0.0549316322096735],[0.042572021484375,-0.0563049225782379],[0.04119873046875,-0.0563049225782379],[0.04119873046875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":30,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0563049225782379],[0.042572021484375,-0.0563049225782379],[0.042572021484375,-0.0576782129144526],[0.04119873046875,-0.0576782129144526],[0.04119873046875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":30,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0576782129144526],[0.042572021484375,-0.0576782129144526],[0.042572021484375,-0.0590515032175379],[0.04119873046875,-0.0590515032175379],[0.04119873046875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":30,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0590515032175379],[0.042572021484375,-0.0590515032175379],[0.042572021484375,-0.0604247934867017],[0.04119873046875,-0.0604247934867017],[0.04119873046875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":30,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0604247934867017],[0.042572021484375,-0.0604247934867017],[0.042572021484375,-0.0617980837211484],[0.04119873046875,-0.0617980837211484],[0.04119873046875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":30,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0617980837211484],[0.042572021484375,-0.0617980837211484],[0.042572021484375,-0.0631713739200889],[0.04119873046875,-0.0631713739200889],[0.04119873046875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":30,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0631713739200889],[0.042572021484375,-0.0631713739200889],[0.042572021484375,-0.0645446640827373],[0.04119873046875,-0.0645446640827373],[0.04119873046875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":30,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.04119873046875,-0.0645446640827373],[0.042572021484375,-0.0645446640827373],[0.042572021484375,-0.065917954208311],[0.04119873046875,-0.065917954208311],[0.04119873046875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":31,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0219726557114224],[0.0439453125,-0.0219726557114224],[0.0439453125,-0.0233459466196176],[0.042572021484375,-0.0233459466196176],[0.042572021484375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":31,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0233459466196176],[0.0439453125,-0.0233459466196176],[0.0439453125,-0.0247192375144014],[0.042572021484375,-0.0247192375144014],[0.042572021484375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":31,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0247192375144014],[0.0439453125,-0.0247192375144014],[0.0439453125,-0.026092528394991],[0.042572021484375,-0.026092528394991],[0.042572021484375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":31,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.026092528394991],[0.0439453125,-0.026092528394991],[0.0439453125,-0.0274658192605846],[0.042572021484375,-0.0274658192605846],[0.042572021484375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":31,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0274658192605846],[0.0439453125,-0.0274658192605846],[0.0439453125,-0.0288391101104026],[0.042572021484375,-0.0288391101104026],[0.042572021484375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":31,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0288391101104026],[0.0439453125,-0.0288391101104026],[0.0439453125,-0.0302124009436464],[0.042572021484375,-0.0302124009436464],[0.042572021484375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":31,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0302124009436464],[0.0439453125,-0.0302124009436464],[0.0439453125,-0.0315856917595396],[0.042572021484375,-0.0315856917595396],[0.042572021484375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":31,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0315856917595396],[0.0439453125,-0.0315856917595396],[0.0439453125,-0.0329589825572836],[0.042572021484375,-0.0329589825572836],[0.042572021484375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":31,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0329589825572836],[0.0439453125,-0.0329589825572836],[0.0439453125,-0.0343322733360987],[0.042572021484375,-0.0343322733360987],[0.042572021484375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":31,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0343322733360987],[0.0439453125,-0.0343322733360987],[0.0439453125,-0.0357055640951897],[0.042572021484375,-0.0357055640951897],[0.042572021484375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":31,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0357055640951897],[0.0439453125,-0.0357055640951897],[0.0439453125,-0.0370788548337641],[0.042572021484375,-0.0370788548337641],[0.042572021484375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":31,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0370788548337641],[0.0439453125,-0.0370788548337641],[0.0439453125,-0.0384521455510425],[0.042572021484375,-0.0384521455510425],[0.042572021484375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":31,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0384521455510425],[0.0439453125,-0.0384521455510425],[0.0439453125,-0.039825436246223],[0.042572021484375,-0.039825436246223],[0.042572021484375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":31,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.039825436246223],[0.0439453125,-0.039825436246223],[0.0439453125,-0.0411987269185324],[0.042572021484375,-0.0411987269185324],[0.042572021484375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":31,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0411987269185324],[0.0439453125,-0.0411987269185324],[0.0439453125,-0.042572017567172],[0.042572021484375,-0.042572017567172],[0.042572021484375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":31,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.042572017567172],[0.0439453125,-0.042572017567172],[0.0439453125,-0.0439453081913529],[0.042572021484375,-0.0439453081913529],[0.042572021484375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":31,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0439453081913529],[0.0439453125,-0.0439453081913529],[0.0439453125,-0.045318598790289],[0.042572021484375,-0.045318598790289],[0.042572021484375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":31,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.045318598790289],[0.0439453125,-0.045318598790289],[0.0439453125,-0.0466918893631913],[0.042572021484375,-0.0466918893631913],[0.042572021484375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":31,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0466918893631913],[0.0439453125,-0.0466918893631913],[0.0439453125,-0.0480651799092611],[0.042572021484375,-0.0480651799092611],[0.042572021484375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":31,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0480651799092611],[0.0439453125,-0.0480651799092611],[0.0439453125,-0.0494384704277221],[0.042572021484375,-0.0494384704277221],[0.042572021484375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":31,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0494384704277221],[0.0439453125,-0.0494384704277221],[0.0439453125,-0.0508117609177883],[0.042572021484375,-0.0508117609177883],[0.042572021484375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":31,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0508117609177883],[0.0439453125,-0.0508117609177883],[0.0439453125,-0.0521850513786548],[0.042572021484375,-0.0521850513786548],[0.042572021484375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":31,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0521850513786548],[0.0439453125,-0.0521850513786548],[0.0439453125,-0.0535583418095483],[0.042572021484375,-0.0535583418095483],[0.042572021484375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":31,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0535583418095483],[0.0439453125,-0.0535583418095483],[0.0439453125,-0.0549316322096735],[0.042572021484375,-0.0549316322096735],[0.042572021484375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":31,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0549316322096735],[0.0439453125,-0.0549316322096735],[0.0439453125,-0.0563049225782379],[0.042572021484375,-0.0563049225782379],[0.042572021484375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":31,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0563049225782379],[0.0439453125,-0.0563049225782379],[0.0439453125,-0.0576782129144526],[0.042572021484375,-0.0576782129144526],[0.042572021484375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":31,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0576782129144526],[0.0439453125,-0.0576782129144526],[0.0439453125,-0.0590515032175379],[0.042572021484375,-0.0590515032175379],[0.042572021484375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":31,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0590515032175379],[0.0439453125,-0.0590515032175379],[0.0439453125,-0.0604247934867017],[0.042572021484375,-0.0604247934867017],[0.042572021484375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":31,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0604247934867017],[0.0439453125,-0.0604247934867017],[0.0439453125,-0.0617980837211484],[0.042572021484375,-0.0617980837211484],[0.042572021484375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":31,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0617980837211484],[0.0439453125,-0.0617980837211484],[0.0439453125,-0.0631713739200889],[0.042572021484375,-0.0631713739200889],[0.042572021484375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":31,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0631713739200889],[0.0439453125,-0.0631713739200889],[0.0439453125,-0.0645446640827373],[0.042572021484375,-0.0645446640827373],[0.042572021484375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":31,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.042572021484375,-0.0645446640827373],[0.0439453125,-0.0645446640827373],[0.0439453125,-0.065917954208311],[0.042572021484375,-0.065917954208311],[0.042572021484375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":32,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0219726557114224],[0.045318603515625,-0.0219726557114224],[0.045318603515625,-0.0233459466196176],[0.0439453125,-0.0233459466196176],[0.0439453125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":32,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0233459466196176],[0.045318603515625,-0.0233459466196176],[0.045318603515625,-0.0247192375144014],[0.0439453125,-0.0247192375144014],[0.0439453125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":32,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0247192375144014],[0.045318603515625,-0.0247192375144014],[0.045318603515625,-0.026092528394991],[0.0439453125,-0.026092528394991],[0.0439453125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":32,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.026092528394991],[0.045318603515625,-0.026092528394991],[0.045318603515625,-0.0274658192605846],[0.0439453125,-0.0274658192605846],[0.0439453125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":32,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0274658192605846],[0.045318603515625,-0.0274658192605846],[0.045318603515625,-0.0288391101104026],[0.0439453125,-0.0288391101104026],[0.0439453125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":32,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0288391101104026],[0.045318603515625,-0.0288391101104026],[0.045318603515625,-0.0302124009436464],[0.0439453125,-0.0302124009436464],[0.0439453125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":32,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0302124009436464],[0.045318603515625,-0.0302124009436464],[0.045318603515625,-0.0315856917595396],[0.0439453125,-0.0315856917595396],[0.0439453125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":32,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0315856917595396],[0.045318603515625,-0.0315856917595396],[0.045318603515625,-0.0329589825572836],[0.0439453125,-0.0329589825572836],[0.0439453125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":32,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0329589825572836],[0.045318603515625,-0.0329589825572836],[0.045318603515625,-0.0343322733360987],[0.0439453125,-0.0343322733360987],[0.0439453125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":32,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0343322733360987],[0.045318603515625,-0.0343322733360987],[0.045318603515625,-0.0357055640951897],[0.0439453125,-0.0357055640951897],[0.0439453125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":32,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0357055640951897],[0.045318603515625,-0.0357055640951897],[0.045318603515625,-0.0370788548337641],[0.0439453125,-0.0370788548337641],[0.0439453125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":32,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0370788548337641],[0.045318603515625,-0.0370788548337641],[0.045318603515625,-0.0384521455510425],[0.0439453125,-0.0384521455510425],[0.0439453125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":32,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0384521455510425],[0.045318603515625,-0.0384521455510425],[0.045318603515625,-0.039825436246223],[0.0439453125,-0.039825436246223],[0.0439453125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":32,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.039825436246223],[0.045318603515625,-0.039825436246223],[0.045318603515625,-0.0411987269185324],[0.0439453125,-0.0411987269185324],[0.0439453125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":32,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0411987269185324],[0.045318603515625,-0.0411987269185324],[0.045318603515625,-0.042572017567172],[0.0439453125,-0.042572017567172],[0.0439453125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":32,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.042572017567172],[0.045318603515625,-0.042572017567172],[0.045318603515625,-0.0439453081913529],[0.0439453125,-0.0439453081913529],[0.0439453125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":32,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0439453081913529],[0.045318603515625,-0.0439453081913529],[0.045318603515625,-0.045318598790289],[0.0439453125,-0.045318598790289],[0.0439453125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":32,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.045318598790289],[0.045318603515625,-0.045318598790289],[0.045318603515625,-0.0466918893631913],[0.0439453125,-0.0466918893631913],[0.0439453125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":32,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0466918893631913],[0.045318603515625,-0.0466918893631913],[0.045318603515625,-0.0480651799092611],[0.0439453125,-0.0480651799092611],[0.0439453125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":32,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0480651799092611],[0.045318603515625,-0.0480651799092611],[0.045318603515625,-0.0494384704277221],[0.0439453125,-0.0494384704277221],[0.0439453125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":32,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0494384704277221],[0.045318603515625,-0.0494384704277221],[0.045318603515625,-0.0508117609177883],[0.0439453125,-0.0508117609177883],[0.0439453125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":32,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0508117609177883],[0.045318603515625,-0.0508117609177883],[0.045318603515625,-0.0521850513786548],[0.0439453125,-0.0521850513786548],[0.0439453125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":32,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0521850513786548],[0.045318603515625,-0.0521850513786548],[0.045318603515625,-0.0535583418095483],[0.0439453125,-0.0535583418095483],[0.0439453125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":32,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0535583418095483],[0.045318603515625,-0.0535583418095483],[0.045318603515625,-0.0549316322096735],[0.0439453125,-0.0549316322096735],[0.0439453125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":32,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0549316322096735],[0.045318603515625,-0.0549316322096735],[0.045318603515625,-0.0563049225782379],[0.0439453125,-0.0563049225782379],[0.0439453125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":32,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0563049225782379],[0.045318603515625,-0.0563049225782379],[0.045318603515625,-0.0576782129144526],[0.0439453125,-0.0576782129144526],[0.0439453125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":32,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0576782129144526],[0.045318603515625,-0.0576782129144526],[0.045318603515625,-0.0590515032175379],[0.0439453125,-0.0590515032175379],[0.0439453125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":32,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0590515032175379],[0.045318603515625,-0.0590515032175379],[0.045318603515625,-0.0604247934867017],[0.0439453125,-0.0604247934867017],[0.0439453125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":32,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0604247934867017],[0.045318603515625,-0.0604247934867017],[0.045318603515625,-0.0617980837211484],[0.0439453125,-0.0617980837211484],[0.0439453125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":32,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0617980837211484],[0.045318603515625,-0.0617980837211484],[0.045318603515625,-0.0631713739200889],[0.0439453125,-0.0631713739200889],[0.0439453125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":32,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0631713739200889],[0.045318603515625,-0.0631713739200889],[0.045318603515625,-0.0645446640827373],[0.0439453125,-0.0645446640827373],[0.0439453125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":32,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0439453125,-0.0645446640827373],[0.045318603515625,-0.0645446640827373],[0.045318603515625,-0.065917954208311],[0.0439453125,-0.065917954208311],[0.0439453125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":33,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0219726557114224],[0.04669189453125,-0.0219726557114224],[0.04669189453125,-0.0233459466196176],[0.045318603515625,-0.0233459466196176],[0.045318603515625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":33,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0233459466196176],[0.04669189453125,-0.0233459466196176],[0.04669189453125,-0.0247192375144014],[0.045318603515625,-0.0247192375144014],[0.045318603515625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":33,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0247192375144014],[0.04669189453125,-0.0247192375144014],[0.04669189453125,-0.026092528394991],[0.045318603515625,-0.026092528394991],[0.045318603515625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":33,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.026092528394991],[0.04669189453125,-0.026092528394991],[0.04669189453125,-0.0274658192605846],[0.045318603515625,-0.0274658192605846],[0.045318603515625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":33,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0274658192605846],[0.04669189453125,-0.0274658192605846],[0.04669189453125,-0.0288391101104026],[0.045318603515625,-0.0288391101104026],[0.045318603515625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":33,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0288391101104026],[0.04669189453125,-0.0288391101104026],[0.04669189453125,-0.0302124009436464],[0.045318603515625,-0.0302124009436464],[0.045318603515625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":33,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0302124009436464],[0.04669189453125,-0.0302124009436464],[0.04669189453125,-0.0315856917595396],[0.045318603515625,-0.0315856917595396],[0.045318603515625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":33,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0315856917595396],[0.04669189453125,-0.0315856917595396],[0.04669189453125,-0.0329589825572836],[0.045318603515625,-0.0329589825572836],[0.045318603515625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":33,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0329589825572836],[0.04669189453125,-0.0329589825572836],[0.04669189453125,-0.0343322733360987],[0.045318603515625,-0.0343322733360987],[0.045318603515625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":33,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0343322733360987],[0.04669189453125,-0.0343322733360987],[0.04669189453125,-0.0357055640951897],[0.045318603515625,-0.0357055640951897],[0.045318603515625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":33,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0357055640951897],[0.04669189453125,-0.0357055640951897],[0.04669189453125,-0.0370788548337641],[0.045318603515625,-0.0370788548337641],[0.045318603515625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":33,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0370788548337641],[0.04669189453125,-0.0370788548337641],[0.04669189453125,-0.0384521455510425],[0.045318603515625,-0.0384521455510425],[0.045318603515625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":33,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0384521455510425],[0.04669189453125,-0.0384521455510425],[0.04669189453125,-0.039825436246223],[0.045318603515625,-0.039825436246223],[0.045318603515625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":33,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.039825436246223],[0.04669189453125,-0.039825436246223],[0.04669189453125,-0.0411987269185324],[0.045318603515625,-0.0411987269185324],[0.045318603515625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":33,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0411987269185324],[0.04669189453125,-0.0411987269185324],[0.04669189453125,-0.042572017567172],[0.045318603515625,-0.042572017567172],[0.045318603515625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":33,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.042572017567172],[0.04669189453125,-0.042572017567172],[0.04669189453125,-0.0439453081913529],[0.045318603515625,-0.0439453081913529],[0.045318603515625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":33,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0439453081913529],[0.04669189453125,-0.0439453081913529],[0.04669189453125,-0.045318598790289],[0.045318603515625,-0.045318598790289],[0.045318603515625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":33,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.045318598790289],[0.04669189453125,-0.045318598790289],[0.04669189453125,-0.0466918893631913],[0.045318603515625,-0.0466918893631913],[0.045318603515625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":33,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0466918893631913],[0.04669189453125,-0.0466918893631913],[0.04669189453125,-0.0480651799092611],[0.045318603515625,-0.0480651799092611],[0.045318603515625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":33,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0480651799092611],[0.04669189453125,-0.0480651799092611],[0.04669189453125,-0.0494384704277221],[0.045318603515625,-0.0494384704277221],[0.045318603515625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":33,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0494384704277221],[0.04669189453125,-0.0494384704277221],[0.04669189453125,-0.0508117609177883],[0.045318603515625,-0.0508117609177883],[0.045318603515625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":33,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0508117609177883],[0.04669189453125,-0.0508117609177883],[0.04669189453125,-0.0521850513786548],[0.045318603515625,-0.0521850513786548],[0.045318603515625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":33,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0521850513786548],[0.04669189453125,-0.0521850513786548],[0.04669189453125,-0.0535583418095483],[0.045318603515625,-0.0535583418095483],[0.045318603515625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":33,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0535583418095483],[0.04669189453125,-0.0535583418095483],[0.04669189453125,-0.0549316322096735],[0.045318603515625,-0.0549316322096735],[0.045318603515625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":33,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0549316322096735],[0.04669189453125,-0.0549316322096735],[0.04669189453125,-0.0563049225782379],[0.045318603515625,-0.0563049225782379],[0.045318603515625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":33,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0563049225782379],[0.04669189453125,-0.0563049225782379],[0.04669189453125,-0.0576782129144526],[0.045318603515625,-0.0576782129144526],[0.045318603515625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":33,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0576782129144526],[0.04669189453125,-0.0576782129144526],[0.04669189453125,-0.0590515032175379],[0.045318603515625,-0.0590515032175379],[0.045318603515625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":33,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0590515032175379],[0.04669189453125,-0.0590515032175379],[0.04669189453125,-0.0604247934867017],[0.045318603515625,-0.0604247934867017],[0.045318603515625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":33,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0604247934867017],[0.04669189453125,-0.0604247934867017],[0.04669189453125,-0.0617980837211484],[0.045318603515625,-0.0617980837211484],[0.045318603515625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":33,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0617980837211484],[0.04669189453125,-0.0617980837211484],[0.04669189453125,-0.0631713739200889],[0.045318603515625,-0.0631713739200889],[0.045318603515625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":33,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0631713739200889],[0.04669189453125,-0.0631713739200889],[0.04669189453125,-0.0645446640827373],[0.045318603515625,-0.0645446640827373],[0.045318603515625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":33,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.045318603515625,-0.0645446640827373],[0.04669189453125,-0.0645446640827373],[0.04669189453125,-0.065917954208311],[0.045318603515625,-0.065917954208311],[0.045318603515625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":34,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0219726557114224],[0.048065185546875,-0.0219726557114224],[0.048065185546875,-0.0233459466196176],[0.04669189453125,-0.0233459466196176],[0.04669189453125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":34,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0233459466196176],[0.048065185546875,-0.0233459466196176],[0.048065185546875,-0.0247192375144014],[0.04669189453125,-0.0247192375144014],[0.04669189453125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":34,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0247192375144014],[0.048065185546875,-0.0247192375144014],[0.048065185546875,-0.026092528394991],[0.04669189453125,-0.026092528394991],[0.04669189453125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":34,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.026092528394991],[0.048065185546875,-0.026092528394991],[0.048065185546875,-0.0274658192605846],[0.04669189453125,-0.0274658192605846],[0.04669189453125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":34,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0274658192605846],[0.048065185546875,-0.0274658192605846],[0.048065185546875,-0.0288391101104026],[0.04669189453125,-0.0288391101104026],[0.04669189453125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":34,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0288391101104026],[0.048065185546875,-0.0288391101104026],[0.048065185546875,-0.0302124009436464],[0.04669189453125,-0.0302124009436464],[0.04669189453125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":34,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0302124009436464],[0.048065185546875,-0.0302124009436464],[0.048065185546875,-0.0315856917595396],[0.04669189453125,-0.0315856917595396],[0.04669189453125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":34,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0315856917595396],[0.048065185546875,-0.0315856917595396],[0.048065185546875,-0.0329589825572836],[0.04669189453125,-0.0329589825572836],[0.04669189453125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":34,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0329589825572836],[0.048065185546875,-0.0329589825572836],[0.048065185546875,-0.0343322733360987],[0.04669189453125,-0.0343322733360987],[0.04669189453125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":34,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0343322733360987],[0.048065185546875,-0.0343322733360987],[0.048065185546875,-0.0357055640951897],[0.04669189453125,-0.0357055640951897],[0.04669189453125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":34,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0357055640951897],[0.048065185546875,-0.0357055640951897],[0.048065185546875,-0.0370788548337641],[0.04669189453125,-0.0370788548337641],[0.04669189453125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":34,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0370788548337641],[0.048065185546875,-0.0370788548337641],[0.048065185546875,-0.0384521455510425],[0.04669189453125,-0.0384521455510425],[0.04669189453125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":34,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0384521455510425],[0.048065185546875,-0.0384521455510425],[0.048065185546875,-0.039825436246223],[0.04669189453125,-0.039825436246223],[0.04669189453125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":34,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.039825436246223],[0.048065185546875,-0.039825436246223],[0.048065185546875,-0.0411987269185324],[0.04669189453125,-0.0411987269185324],[0.04669189453125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":34,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0411987269185324],[0.048065185546875,-0.0411987269185324],[0.048065185546875,-0.042572017567172],[0.04669189453125,-0.042572017567172],[0.04669189453125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":34,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.042572017567172],[0.048065185546875,-0.042572017567172],[0.048065185546875,-0.0439453081913529],[0.04669189453125,-0.0439453081913529],[0.04669189453125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":34,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0439453081913529],[0.048065185546875,-0.0439453081913529],[0.048065185546875,-0.045318598790289],[0.04669189453125,-0.045318598790289],[0.04669189453125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":34,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.045318598790289],[0.048065185546875,-0.045318598790289],[0.048065185546875,-0.0466918893631913],[0.04669189453125,-0.0466918893631913],[0.04669189453125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":34,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0466918893631913],[0.048065185546875,-0.0466918893631913],[0.048065185546875,-0.0480651799092611],[0.04669189453125,-0.0480651799092611],[0.04669189453125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":34,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0480651799092611],[0.048065185546875,-0.0480651799092611],[0.048065185546875,-0.0494384704277221],[0.04669189453125,-0.0494384704277221],[0.04669189453125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":34,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0494384704277221],[0.048065185546875,-0.0494384704277221],[0.048065185546875,-0.0508117609177883],[0.04669189453125,-0.0508117609177883],[0.04669189453125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":34,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0508117609177883],[0.048065185546875,-0.0508117609177883],[0.048065185546875,-0.0521850513786548],[0.04669189453125,-0.0521850513786548],[0.04669189453125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":34,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0521850513786548],[0.048065185546875,-0.0521850513786548],[0.048065185546875,-0.0535583418095483],[0.04669189453125,-0.0535583418095483],[0.04669189453125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":34,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0535583418095483],[0.048065185546875,-0.0535583418095483],[0.048065185546875,-0.0549316322096735],[0.04669189453125,-0.0549316322096735],[0.04669189453125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":34,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0549316322096735],[0.048065185546875,-0.0549316322096735],[0.048065185546875,-0.0563049225782379],[0.04669189453125,-0.0563049225782379],[0.04669189453125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":34,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0563049225782379],[0.048065185546875,-0.0563049225782379],[0.048065185546875,-0.0576782129144526],[0.04669189453125,-0.0576782129144526],[0.04669189453125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":34,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0576782129144526],[0.048065185546875,-0.0576782129144526],[0.048065185546875,-0.0590515032175379],[0.04669189453125,-0.0590515032175379],[0.04669189453125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":34,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0590515032175379],[0.048065185546875,-0.0590515032175379],[0.048065185546875,-0.0604247934867017],[0.04669189453125,-0.0604247934867017],[0.04669189453125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":34,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0604247934867017],[0.048065185546875,-0.0604247934867017],[0.048065185546875,-0.0617980837211484],[0.04669189453125,-0.0617980837211484],[0.04669189453125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":34,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0617980837211484],[0.048065185546875,-0.0617980837211484],[0.048065185546875,-0.0631713739200889],[0.04669189453125,-0.0631713739200889],[0.04669189453125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":34,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0631713739200889],[0.048065185546875,-0.0631713739200889],[0.048065185546875,-0.0645446640827373],[0.04669189453125,-0.0645446640827373],[0.04669189453125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":34,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.04669189453125,-0.0645446640827373],[0.048065185546875,-0.0645446640827373],[0.048065185546875,-0.065917954208311],[0.04669189453125,-0.065917954208311],[0.04669189453125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":35,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0219726557114224],[0.0494384765625,-0.0219726557114224],[0.0494384765625,-0.0233459466196176],[0.048065185546875,-0.0233459466196176],[0.048065185546875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":35,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0233459466196176],[0.0494384765625,-0.0233459466196176],[0.0494384765625,-0.0247192375144014],[0.048065185546875,-0.0247192375144014],[0.048065185546875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":35,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0247192375144014],[0.0494384765625,-0.0247192375144014],[0.0494384765625,-0.026092528394991],[0.048065185546875,-0.026092528394991],[0.048065185546875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":35,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.026092528394991],[0.0494384765625,-0.026092528394991],[0.0494384765625,-0.0274658192605846],[0.048065185546875,-0.0274658192605846],[0.048065185546875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":35,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0274658192605846],[0.0494384765625,-0.0274658192605846],[0.0494384765625,-0.0288391101104026],[0.048065185546875,-0.0288391101104026],[0.048065185546875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":35,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0288391101104026],[0.0494384765625,-0.0288391101104026],[0.0494384765625,-0.0302124009436464],[0.048065185546875,-0.0302124009436464],[0.048065185546875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":35,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0302124009436464],[0.0494384765625,-0.0302124009436464],[0.0494384765625,-0.0315856917595396],[0.048065185546875,-0.0315856917595396],[0.048065185546875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":35,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0315856917595396],[0.0494384765625,-0.0315856917595396],[0.0494384765625,-0.0329589825572836],[0.048065185546875,-0.0329589825572836],[0.048065185546875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":35,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0329589825572836],[0.0494384765625,-0.0329589825572836],[0.0494384765625,-0.0343322733360987],[0.048065185546875,-0.0343322733360987],[0.048065185546875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":35,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0343322733360987],[0.0494384765625,-0.0343322733360987],[0.0494384765625,-0.0357055640951897],[0.048065185546875,-0.0357055640951897],[0.048065185546875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":35,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0357055640951897],[0.0494384765625,-0.0357055640951897],[0.0494384765625,-0.0370788548337641],[0.048065185546875,-0.0370788548337641],[0.048065185546875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":35,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0370788548337641],[0.0494384765625,-0.0370788548337641],[0.0494384765625,-0.0384521455510425],[0.048065185546875,-0.0384521455510425],[0.048065185546875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":35,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0384521455510425],[0.0494384765625,-0.0384521455510425],[0.0494384765625,-0.039825436246223],[0.048065185546875,-0.039825436246223],[0.048065185546875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":35,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.039825436246223],[0.0494384765625,-0.039825436246223],[0.0494384765625,-0.0411987269185324],[0.048065185546875,-0.0411987269185324],[0.048065185546875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":35,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0411987269185324],[0.0494384765625,-0.0411987269185324],[0.0494384765625,-0.042572017567172],[0.048065185546875,-0.042572017567172],[0.048065185546875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":35,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.042572017567172],[0.0494384765625,-0.042572017567172],[0.0494384765625,-0.0439453081913529],[0.048065185546875,-0.0439453081913529],[0.048065185546875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":35,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0439453081913529],[0.0494384765625,-0.0439453081913529],[0.0494384765625,-0.045318598790289],[0.048065185546875,-0.045318598790289],[0.048065185546875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":35,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.045318598790289],[0.0494384765625,-0.045318598790289],[0.0494384765625,-0.0466918893631913],[0.048065185546875,-0.0466918893631913],[0.048065185546875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":35,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0466918893631913],[0.0494384765625,-0.0466918893631913],[0.0494384765625,-0.0480651799092611],[0.048065185546875,-0.0480651799092611],[0.048065185546875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":35,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0480651799092611],[0.0494384765625,-0.0480651799092611],[0.0494384765625,-0.0494384704277221],[0.048065185546875,-0.0494384704277221],[0.048065185546875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":35,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0494384704277221],[0.0494384765625,-0.0494384704277221],[0.0494384765625,-0.0508117609177883],[0.048065185546875,-0.0508117609177883],[0.048065185546875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":35,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0508117609177883],[0.0494384765625,-0.0508117609177883],[0.0494384765625,-0.0521850513786548],[0.048065185546875,-0.0521850513786548],[0.048065185546875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":35,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0521850513786548],[0.0494384765625,-0.0521850513786548],[0.0494384765625,-0.0535583418095483],[0.048065185546875,-0.0535583418095483],[0.048065185546875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":35,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0535583418095483],[0.0494384765625,-0.0535583418095483],[0.0494384765625,-0.0549316322096735],[0.048065185546875,-0.0549316322096735],[0.048065185546875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":35,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0549316322096735],[0.0494384765625,-0.0549316322096735],[0.0494384765625,-0.0563049225782379],[0.048065185546875,-0.0563049225782379],[0.048065185546875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":35,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0563049225782379],[0.0494384765625,-0.0563049225782379],[0.0494384765625,-0.0576782129144526],[0.048065185546875,-0.0576782129144526],[0.048065185546875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":35,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0576782129144526],[0.0494384765625,-0.0576782129144526],[0.0494384765625,-0.0590515032175379],[0.048065185546875,-0.0590515032175379],[0.048065185546875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":35,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0590515032175379],[0.0494384765625,-0.0590515032175379],[0.0494384765625,-0.0604247934867017],[0.048065185546875,-0.0604247934867017],[0.048065185546875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":35,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0604247934867017],[0.0494384765625,-0.0604247934867017],[0.0494384765625,-0.0617980837211484],[0.048065185546875,-0.0617980837211484],[0.048065185546875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":35,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0617980837211484],[0.0494384765625,-0.0617980837211484],[0.0494384765625,-0.0631713739200889],[0.048065185546875,-0.0631713739200889],[0.048065185546875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":35,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0631713739200889],[0.0494384765625,-0.0631713739200889],[0.0494384765625,-0.0645446640827373],[0.048065185546875,-0.0645446640827373],[0.048065185546875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":35,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.048065185546875,-0.0645446640827373],[0.0494384765625,-0.0645446640827373],[0.0494384765625,-0.065917954208311],[0.048065185546875,-0.065917954208311],[0.048065185546875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":36,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0219726557114224],[0.050811767578125,-0.0219726557114224],[0.050811767578125,-0.0233459466196176],[0.0494384765625,-0.0233459466196176],[0.0494384765625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":36,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0233459466196176],[0.050811767578125,-0.0233459466196176],[0.050811767578125,-0.0247192375144014],[0.0494384765625,-0.0247192375144014],[0.0494384765625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":36,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0247192375144014],[0.050811767578125,-0.0247192375144014],[0.050811767578125,-0.026092528394991],[0.0494384765625,-0.026092528394991],[0.0494384765625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":36,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.026092528394991],[0.050811767578125,-0.026092528394991],[0.050811767578125,-0.0274658192605846],[0.0494384765625,-0.0274658192605846],[0.0494384765625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":36,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0274658192605846],[0.050811767578125,-0.0274658192605846],[0.050811767578125,-0.0288391101104026],[0.0494384765625,-0.0288391101104026],[0.0494384765625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":36,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0288391101104026],[0.050811767578125,-0.0288391101104026],[0.050811767578125,-0.0302124009436464],[0.0494384765625,-0.0302124009436464],[0.0494384765625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":36,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0302124009436464],[0.050811767578125,-0.0302124009436464],[0.050811767578125,-0.0315856917595396],[0.0494384765625,-0.0315856917595396],[0.0494384765625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":36,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0315856917595396],[0.050811767578125,-0.0315856917595396],[0.050811767578125,-0.0329589825572836],[0.0494384765625,-0.0329589825572836],[0.0494384765625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":36,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0329589825572836],[0.050811767578125,-0.0329589825572836],[0.050811767578125,-0.0343322733360987],[0.0494384765625,-0.0343322733360987],[0.0494384765625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":36,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0343322733360987],[0.050811767578125,-0.0343322733360987],[0.050811767578125,-0.0357055640951897],[0.0494384765625,-0.0357055640951897],[0.0494384765625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":36,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0357055640951897],[0.050811767578125,-0.0357055640951897],[0.050811767578125,-0.0370788548337641],[0.0494384765625,-0.0370788548337641],[0.0494384765625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":36,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0370788548337641],[0.050811767578125,-0.0370788548337641],[0.050811767578125,-0.0384521455510425],[0.0494384765625,-0.0384521455510425],[0.0494384765625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":36,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0384521455510425],[0.050811767578125,-0.0384521455510425],[0.050811767578125,-0.039825436246223],[0.0494384765625,-0.039825436246223],[0.0494384765625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":36,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.039825436246223],[0.050811767578125,-0.039825436246223],[0.050811767578125,-0.0411987269185324],[0.0494384765625,-0.0411987269185324],[0.0494384765625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":36,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0411987269185324],[0.050811767578125,-0.0411987269185324],[0.050811767578125,-0.042572017567172],[0.0494384765625,-0.042572017567172],[0.0494384765625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":36,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.042572017567172],[0.050811767578125,-0.042572017567172],[0.050811767578125,-0.0439453081913529],[0.0494384765625,-0.0439453081913529],[0.0494384765625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":36,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0439453081913529],[0.050811767578125,-0.0439453081913529],[0.050811767578125,-0.045318598790289],[0.0494384765625,-0.045318598790289],[0.0494384765625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":36,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.045318598790289],[0.050811767578125,-0.045318598790289],[0.050811767578125,-0.0466918893631913],[0.0494384765625,-0.0466918893631913],[0.0494384765625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":36,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0466918893631913],[0.050811767578125,-0.0466918893631913],[0.050811767578125,-0.0480651799092611],[0.0494384765625,-0.0480651799092611],[0.0494384765625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":36,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0480651799092611],[0.050811767578125,-0.0480651799092611],[0.050811767578125,-0.0494384704277221],[0.0494384765625,-0.0494384704277221],[0.0494384765625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":36,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0494384704277221],[0.050811767578125,-0.0494384704277221],[0.050811767578125,-0.0508117609177883],[0.0494384765625,-0.0508117609177883],[0.0494384765625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":36,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0508117609177883],[0.050811767578125,-0.0508117609177883],[0.050811767578125,-0.0521850513786548],[0.0494384765625,-0.0521850513786548],[0.0494384765625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":36,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0521850513786548],[0.050811767578125,-0.0521850513786548],[0.050811767578125,-0.0535583418095483],[0.0494384765625,-0.0535583418095483],[0.0494384765625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":36,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0535583418095483],[0.050811767578125,-0.0535583418095483],[0.050811767578125,-0.0549316322096735],[0.0494384765625,-0.0549316322096735],[0.0494384765625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":36,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0549316322096735],[0.050811767578125,-0.0549316322096735],[0.050811767578125,-0.0563049225782379],[0.0494384765625,-0.0563049225782379],[0.0494384765625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":36,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0563049225782379],[0.050811767578125,-0.0563049225782379],[0.050811767578125,-0.0576782129144526],[0.0494384765625,-0.0576782129144526],[0.0494384765625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":36,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0576782129144526],[0.050811767578125,-0.0576782129144526],[0.050811767578125,-0.0590515032175379],[0.0494384765625,-0.0590515032175379],[0.0494384765625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":36,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0590515032175379],[0.050811767578125,-0.0590515032175379],[0.050811767578125,-0.0604247934867017],[0.0494384765625,-0.0604247934867017],[0.0494384765625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":36,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0604247934867017],[0.050811767578125,-0.0604247934867017],[0.050811767578125,-0.0617980837211484],[0.0494384765625,-0.0617980837211484],[0.0494384765625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":36,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0617980837211484],[0.050811767578125,-0.0617980837211484],[0.050811767578125,-0.0631713739200889],[0.0494384765625,-0.0631713739200889],[0.0494384765625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":36,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0631713739200889],[0.050811767578125,-0.0631713739200889],[0.050811767578125,-0.0645446640827373],[0.0494384765625,-0.0645446640827373],[0.0494384765625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":36,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0494384765625,-0.0645446640827373],[0.050811767578125,-0.0645446640827373],[0.050811767578125,-0.065917954208311],[0.0494384765625,-0.065917954208311],[0.0494384765625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":37,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0219726557114224],[0.05218505859375,-0.0219726557114224],[0.05218505859375,-0.0233459466196176],[0.050811767578125,-0.0233459466196176],[0.050811767578125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":37,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0233459466196176],[0.05218505859375,-0.0233459466196176],[0.05218505859375,-0.0247192375144014],[0.050811767578125,-0.0247192375144014],[0.050811767578125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":37,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0247192375144014],[0.05218505859375,-0.0247192375144014],[0.05218505859375,-0.026092528394991],[0.050811767578125,-0.026092528394991],[0.050811767578125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":37,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.026092528394991],[0.05218505859375,-0.026092528394991],[0.05218505859375,-0.0274658192605846],[0.050811767578125,-0.0274658192605846],[0.050811767578125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":37,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0274658192605846],[0.05218505859375,-0.0274658192605846],[0.05218505859375,-0.0288391101104026],[0.050811767578125,-0.0288391101104026],[0.050811767578125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":37,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0288391101104026],[0.05218505859375,-0.0288391101104026],[0.05218505859375,-0.0302124009436464],[0.050811767578125,-0.0302124009436464],[0.050811767578125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":37,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0302124009436464],[0.05218505859375,-0.0302124009436464],[0.05218505859375,-0.0315856917595396],[0.050811767578125,-0.0315856917595396],[0.050811767578125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":37,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0315856917595396],[0.05218505859375,-0.0315856917595396],[0.05218505859375,-0.0329589825572836],[0.050811767578125,-0.0329589825572836],[0.050811767578125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":37,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0329589825572836],[0.05218505859375,-0.0329589825572836],[0.05218505859375,-0.0343322733360987],[0.050811767578125,-0.0343322733360987],[0.050811767578125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":37,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0343322733360987],[0.05218505859375,-0.0343322733360987],[0.05218505859375,-0.0357055640951897],[0.050811767578125,-0.0357055640951897],[0.050811767578125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":37,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0357055640951897],[0.05218505859375,-0.0357055640951897],[0.05218505859375,-0.0370788548337641],[0.050811767578125,-0.0370788548337641],[0.050811767578125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":37,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0370788548337641],[0.05218505859375,-0.0370788548337641],[0.05218505859375,-0.0384521455510425],[0.050811767578125,-0.0384521455510425],[0.050811767578125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":37,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0384521455510425],[0.05218505859375,-0.0384521455510425],[0.05218505859375,-0.039825436246223],[0.050811767578125,-0.039825436246223],[0.050811767578125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":37,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.039825436246223],[0.05218505859375,-0.039825436246223],[0.05218505859375,-0.0411987269185324],[0.050811767578125,-0.0411987269185324],[0.050811767578125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":37,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0411987269185324],[0.05218505859375,-0.0411987269185324],[0.05218505859375,-0.042572017567172],[0.050811767578125,-0.042572017567172],[0.050811767578125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":37,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.042572017567172],[0.05218505859375,-0.042572017567172],[0.05218505859375,-0.0439453081913529],[0.050811767578125,-0.0439453081913529],[0.050811767578125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":37,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0439453081913529],[0.05218505859375,-0.0439453081913529],[0.05218505859375,-0.045318598790289],[0.050811767578125,-0.045318598790289],[0.050811767578125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":37,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.045318598790289],[0.05218505859375,-0.045318598790289],[0.05218505859375,-0.0466918893631913],[0.050811767578125,-0.0466918893631913],[0.050811767578125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":37,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0466918893631913],[0.05218505859375,-0.0466918893631913],[0.05218505859375,-0.0480651799092611],[0.050811767578125,-0.0480651799092611],[0.050811767578125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":37,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0480651799092611],[0.05218505859375,-0.0480651799092611],[0.05218505859375,-0.0494384704277221],[0.050811767578125,-0.0494384704277221],[0.050811767578125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":37,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0494384704277221],[0.05218505859375,-0.0494384704277221],[0.05218505859375,-0.0508117609177883],[0.050811767578125,-0.0508117609177883],[0.050811767578125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":37,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0508117609177883],[0.05218505859375,-0.0508117609177883],[0.05218505859375,-0.0521850513786548],[0.050811767578125,-0.0521850513786548],[0.050811767578125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":37,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0521850513786548],[0.05218505859375,-0.0521850513786548],[0.05218505859375,-0.0535583418095483],[0.050811767578125,-0.0535583418095483],[0.050811767578125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":37,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0535583418095483],[0.05218505859375,-0.0535583418095483],[0.05218505859375,-0.0549316322096735],[0.050811767578125,-0.0549316322096735],[0.050811767578125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":37,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0549316322096735],[0.05218505859375,-0.0549316322096735],[0.05218505859375,-0.0563049225782379],[0.050811767578125,-0.0563049225782379],[0.050811767578125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":37,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0563049225782379],[0.05218505859375,-0.0563049225782379],[0.05218505859375,-0.0576782129144526],[0.050811767578125,-0.0576782129144526],[0.050811767578125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":37,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0576782129144526],[0.05218505859375,-0.0576782129144526],[0.05218505859375,-0.0590515032175379],[0.050811767578125,-0.0590515032175379],[0.050811767578125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":37,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0590515032175379],[0.05218505859375,-0.0590515032175379],[0.05218505859375,-0.0604247934867017],[0.050811767578125,-0.0604247934867017],[0.050811767578125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":37,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0604247934867017],[0.05218505859375,-0.0604247934867017],[0.05218505859375,-0.0617980837211484],[0.050811767578125,-0.0617980837211484],[0.050811767578125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":37,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0617980837211484],[0.05218505859375,-0.0617980837211484],[0.05218505859375,-0.0631713739200889],[0.050811767578125,-0.0631713739200889],[0.050811767578125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":37,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0631713739200889],[0.05218505859375,-0.0631713739200889],[0.05218505859375,-0.0645446640827373],[0.050811767578125,-0.0645446640827373],[0.050811767578125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":37,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.050811767578125,-0.0645446640827373],[0.05218505859375,-0.0645446640827373],[0.05218505859375,-0.065917954208311],[0.050811767578125,-0.065917954208311],[0.050811767578125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":38,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0219726557114224],[0.053558349609375,-0.0219726557114224],[0.053558349609375,-0.0233459466196176],[0.05218505859375,-0.0233459466196176],[0.05218505859375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":38,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0233459466196176],[0.053558349609375,-0.0233459466196176],[0.053558349609375,-0.0247192375144014],[0.05218505859375,-0.0247192375144014],[0.05218505859375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":38,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0247192375144014],[0.053558349609375,-0.0247192375144014],[0.053558349609375,-0.026092528394991],[0.05218505859375,-0.026092528394991],[0.05218505859375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":38,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.026092528394991],[0.053558349609375,-0.026092528394991],[0.053558349609375,-0.0274658192605846],[0.05218505859375,-0.0274658192605846],[0.05218505859375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":38,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0274658192605846],[0.053558349609375,-0.0274658192605846],[0.053558349609375,-0.0288391101104026],[0.05218505859375,-0.0288391101104026],[0.05218505859375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":38,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0288391101104026],[0.053558349609375,-0.0288391101104026],[0.053558349609375,-0.0302124009436464],[0.05218505859375,-0.0302124009436464],[0.05218505859375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":38,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0302124009436464],[0.053558349609375,-0.0302124009436464],[0.053558349609375,-0.0315856917595396],[0.05218505859375,-0.0315856917595396],[0.05218505859375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":38,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0315856917595396],[0.053558349609375,-0.0315856917595396],[0.053558349609375,-0.0329589825572836],[0.05218505859375,-0.0329589825572836],[0.05218505859375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":38,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0329589825572836],[0.053558349609375,-0.0329589825572836],[0.053558349609375,-0.0343322733360987],[0.05218505859375,-0.0343322733360987],[0.05218505859375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":38,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0343322733360987],[0.053558349609375,-0.0343322733360987],[0.053558349609375,-0.0357055640951897],[0.05218505859375,-0.0357055640951897],[0.05218505859375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":38,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0357055640951897],[0.053558349609375,-0.0357055640951897],[0.053558349609375,-0.0370788548337641],[0.05218505859375,-0.0370788548337641],[0.05218505859375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":38,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0370788548337641],[0.053558349609375,-0.0370788548337641],[0.053558349609375,-0.0384521455510425],[0.05218505859375,-0.0384521455510425],[0.05218505859375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":38,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0384521455510425],[0.053558349609375,-0.0384521455510425],[0.053558349609375,-0.039825436246223],[0.05218505859375,-0.039825436246223],[0.05218505859375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":38,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.039825436246223],[0.053558349609375,-0.039825436246223],[0.053558349609375,-0.0411987269185324],[0.05218505859375,-0.0411987269185324],[0.05218505859375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":38,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0411987269185324],[0.053558349609375,-0.0411987269185324],[0.053558349609375,-0.042572017567172],[0.05218505859375,-0.042572017567172],[0.05218505859375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":38,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.042572017567172],[0.053558349609375,-0.042572017567172],[0.053558349609375,-0.0439453081913529],[0.05218505859375,-0.0439453081913529],[0.05218505859375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":38,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0439453081913529],[0.053558349609375,-0.0439453081913529],[0.053558349609375,-0.045318598790289],[0.05218505859375,-0.045318598790289],[0.05218505859375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":38,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.045318598790289],[0.053558349609375,-0.045318598790289],[0.053558349609375,-0.0466918893631913],[0.05218505859375,-0.0466918893631913],[0.05218505859375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":38,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0466918893631913],[0.053558349609375,-0.0466918893631913],[0.053558349609375,-0.0480651799092611],[0.05218505859375,-0.0480651799092611],[0.05218505859375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":38,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0480651799092611],[0.053558349609375,-0.0480651799092611],[0.053558349609375,-0.0494384704277221],[0.05218505859375,-0.0494384704277221],[0.05218505859375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":38,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0494384704277221],[0.053558349609375,-0.0494384704277221],[0.053558349609375,-0.0508117609177883],[0.05218505859375,-0.0508117609177883],[0.05218505859375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":38,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0508117609177883],[0.053558349609375,-0.0508117609177883],[0.053558349609375,-0.0521850513786548],[0.05218505859375,-0.0521850513786548],[0.05218505859375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":38,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0521850513786548],[0.053558349609375,-0.0521850513786548],[0.053558349609375,-0.0535583418095483],[0.05218505859375,-0.0535583418095483],[0.05218505859375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":38,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0535583418095483],[0.053558349609375,-0.0535583418095483],[0.053558349609375,-0.0549316322096735],[0.05218505859375,-0.0549316322096735],[0.05218505859375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":38,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0549316322096735],[0.053558349609375,-0.0549316322096735],[0.053558349609375,-0.0563049225782379],[0.05218505859375,-0.0563049225782379],[0.05218505859375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":38,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0563049225782379],[0.053558349609375,-0.0563049225782379],[0.053558349609375,-0.0576782129144526],[0.05218505859375,-0.0576782129144526],[0.05218505859375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":38,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0576782129144526],[0.053558349609375,-0.0576782129144526],[0.053558349609375,-0.0590515032175379],[0.05218505859375,-0.0590515032175379],[0.05218505859375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":38,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0590515032175379],[0.053558349609375,-0.0590515032175379],[0.053558349609375,-0.0604247934867017],[0.05218505859375,-0.0604247934867017],[0.05218505859375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":38,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0604247934867017],[0.053558349609375,-0.0604247934867017],[0.053558349609375,-0.0617980837211484],[0.05218505859375,-0.0617980837211484],[0.05218505859375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":38,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0617980837211484],[0.053558349609375,-0.0617980837211484],[0.053558349609375,-0.0631713739200889],[0.05218505859375,-0.0631713739200889],[0.05218505859375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":38,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0631713739200889],[0.053558349609375,-0.0631713739200889],[0.053558349609375,-0.0645446640827373],[0.05218505859375,-0.0645446640827373],[0.05218505859375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":38,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.05218505859375,-0.0645446640827373],[0.053558349609375,-0.0645446640827373],[0.053558349609375,-0.065917954208311],[0.05218505859375,-0.065917954208311],[0.05218505859375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":39,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0219726557114224],[0.054931640625,-0.0219726557114224],[0.054931640625,-0.0233459466196176],[0.053558349609375,-0.0233459466196176],[0.053558349609375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":39,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0233459466196176],[0.054931640625,-0.0233459466196176],[0.054931640625,-0.0247192375144014],[0.053558349609375,-0.0247192375144014],[0.053558349609375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":39,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0247192375144014],[0.054931640625,-0.0247192375144014],[0.054931640625,-0.026092528394991],[0.053558349609375,-0.026092528394991],[0.053558349609375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":39,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.026092528394991],[0.054931640625,-0.026092528394991],[0.054931640625,-0.0274658192605846],[0.053558349609375,-0.0274658192605846],[0.053558349609375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":39,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0274658192605846],[0.054931640625,-0.0274658192605846],[0.054931640625,-0.0288391101104026],[0.053558349609375,-0.0288391101104026],[0.053558349609375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":39,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0288391101104026],[0.054931640625,-0.0288391101104026],[0.054931640625,-0.0302124009436464],[0.053558349609375,-0.0302124009436464],[0.053558349609375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":39,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0302124009436464],[0.054931640625,-0.0302124009436464],[0.054931640625,-0.0315856917595396],[0.053558349609375,-0.0315856917595396],[0.053558349609375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":39,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0315856917595396],[0.054931640625,-0.0315856917595396],[0.054931640625,-0.0329589825572836],[0.053558349609375,-0.0329589825572836],[0.053558349609375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":39,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0329589825572836],[0.054931640625,-0.0329589825572836],[0.054931640625,-0.0343322733360987],[0.053558349609375,-0.0343322733360987],[0.053558349609375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":39,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0343322733360987],[0.054931640625,-0.0343322733360987],[0.054931640625,-0.0357055640951897],[0.053558349609375,-0.0357055640951897],[0.053558349609375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":39,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0357055640951897],[0.054931640625,-0.0357055640951897],[0.054931640625,-0.0370788548337641],[0.053558349609375,-0.0370788548337641],[0.053558349609375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":39,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0370788548337641],[0.054931640625,-0.0370788548337641],[0.054931640625,-0.0384521455510425],[0.053558349609375,-0.0384521455510425],[0.053558349609375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":39,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0384521455510425],[0.054931640625,-0.0384521455510425],[0.054931640625,-0.039825436246223],[0.053558349609375,-0.039825436246223],[0.053558349609375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":39,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.039825436246223],[0.054931640625,-0.039825436246223],[0.054931640625,-0.0411987269185324],[0.053558349609375,-0.0411987269185324],[0.053558349609375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":39,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0411987269185324],[0.054931640625,-0.0411987269185324],[0.054931640625,-0.042572017567172],[0.053558349609375,-0.042572017567172],[0.053558349609375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":39,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.042572017567172],[0.054931640625,-0.042572017567172],[0.054931640625,-0.0439453081913529],[0.053558349609375,-0.0439453081913529],[0.053558349609375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":39,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0439453081913529],[0.054931640625,-0.0439453081913529],[0.054931640625,-0.045318598790289],[0.053558349609375,-0.045318598790289],[0.053558349609375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":39,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.045318598790289],[0.054931640625,-0.045318598790289],[0.054931640625,-0.0466918893631913],[0.053558349609375,-0.0466918893631913],[0.053558349609375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":39,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0466918893631913],[0.054931640625,-0.0466918893631913],[0.054931640625,-0.0480651799092611],[0.053558349609375,-0.0480651799092611],[0.053558349609375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":39,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0480651799092611],[0.054931640625,-0.0480651799092611],[0.054931640625,-0.0494384704277221],[0.053558349609375,-0.0494384704277221],[0.053558349609375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":39,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0494384704277221],[0.054931640625,-0.0494384704277221],[0.054931640625,-0.0508117609177883],[0.053558349609375,-0.0508117609177883],[0.053558349609375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":39,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0508117609177883],[0.054931640625,-0.0508117609177883],[0.054931640625,-0.0521850513786548],[0.053558349609375,-0.0521850513786548],[0.053558349609375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":39,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0521850513786548],[0.054931640625,-0.0521850513786548],[0.054931640625,-0.0535583418095483],[0.053558349609375,-0.0535583418095483],[0.053558349609375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":39,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0535583418095483],[0.054931640625,-0.0535583418095483],[0.054931640625,-0.0549316322096735],[0.053558349609375,-0.0549316322096735],[0.053558349609375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":39,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0549316322096735],[0.054931640625,-0.0549316322096735],[0.054931640625,-0.0563049225782379],[0.053558349609375,-0.0563049225782379],[0.053558349609375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":39,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0563049225782379],[0.054931640625,-0.0563049225782379],[0.054931640625,-0.0576782129144526],[0.053558349609375,-0.0576782129144526],[0.053558349609375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":39,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0576782129144526],[0.054931640625,-0.0576782129144526],[0.054931640625,-0.0590515032175379],[0.053558349609375,-0.0590515032175379],[0.053558349609375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":39,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0590515032175379],[0.054931640625,-0.0590515032175379],[0.054931640625,-0.0604247934867017],[0.053558349609375,-0.0604247934867017],[0.053558349609375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":39,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0604247934867017],[0.054931640625,-0.0604247934867017],[0.054931640625,-0.0617980837211484],[0.053558349609375,-0.0617980837211484],[0.053558349609375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":39,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0617980837211484],[0.054931640625,-0.0617980837211484],[0.054931640625,-0.0631713739200889],[0.053558349609375,-0.0631713739200889],[0.053558349609375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":39,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0631713739200889],[0.054931640625,-0.0631713739200889],[0.054931640625,-0.0645446640827373],[0.053558349609375,-0.0645446640827373],[0.053558349609375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":39,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.053558349609375,-0.0645446640827373],[0.054931640625,-0.0645446640827373],[0.054931640625,-0.065917954208311],[0.053558349609375,-0.065917954208311],[0.053558349609375,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":40,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0219726557114224],[0.056304931640625,-0.0219726557114224],[0.056304931640625,-0.0233459466196176],[0.054931640625,-0.0233459466196176],[0.054931640625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":40,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0233459466196176],[0.056304931640625,-0.0233459466196176],[0.056304931640625,-0.0247192375144014],[0.054931640625,-0.0247192375144014],[0.054931640625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":40,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0247192375144014],[0.056304931640625,-0.0247192375144014],[0.056304931640625,-0.026092528394991],[0.054931640625,-0.026092528394991],[0.054931640625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":40,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.026092528394991],[0.056304931640625,-0.026092528394991],[0.056304931640625,-0.0274658192605846],[0.054931640625,-0.0274658192605846],[0.054931640625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":40,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0274658192605846],[0.056304931640625,-0.0274658192605846],[0.056304931640625,-0.0288391101104026],[0.054931640625,-0.0288391101104026],[0.054931640625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":40,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0288391101104026],[0.056304931640625,-0.0288391101104026],[0.056304931640625,-0.0302124009436464],[0.054931640625,-0.0302124009436464],[0.054931640625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":40,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0302124009436464],[0.056304931640625,-0.0302124009436464],[0.056304931640625,-0.0315856917595396],[0.054931640625,-0.0315856917595396],[0.054931640625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":40,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0315856917595396],[0.056304931640625,-0.0315856917595396],[0.056304931640625,-0.0329589825572836],[0.054931640625,-0.0329589825572836],[0.054931640625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":40,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0329589825572836],[0.056304931640625,-0.0329589825572836],[0.056304931640625,-0.0343322733360987],[0.054931640625,-0.0343322733360987],[0.054931640625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":40,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0343322733360987],[0.056304931640625,-0.0343322733360987],[0.056304931640625,-0.0357055640951897],[0.054931640625,-0.0357055640951897],[0.054931640625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":40,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0357055640951897],[0.056304931640625,-0.0357055640951897],[0.056304931640625,-0.0370788548337641],[0.054931640625,-0.0370788548337641],[0.054931640625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":40,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0370788548337641],[0.056304931640625,-0.0370788548337641],[0.056304931640625,-0.0384521455510425],[0.054931640625,-0.0384521455510425],[0.054931640625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":40,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0384521455510425],[0.056304931640625,-0.0384521455510425],[0.056304931640625,-0.039825436246223],[0.054931640625,-0.039825436246223],[0.054931640625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":40,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.039825436246223],[0.056304931640625,-0.039825436246223],[0.056304931640625,-0.0411987269185324],[0.054931640625,-0.0411987269185324],[0.054931640625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":40,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0411987269185324],[0.056304931640625,-0.0411987269185324],[0.056304931640625,-0.042572017567172],[0.054931640625,-0.042572017567172],[0.054931640625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":40,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.042572017567172],[0.056304931640625,-0.042572017567172],[0.056304931640625,-0.0439453081913529],[0.054931640625,-0.0439453081913529],[0.054931640625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":40,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0439453081913529],[0.056304931640625,-0.0439453081913529],[0.056304931640625,-0.045318598790289],[0.054931640625,-0.045318598790289],[0.054931640625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":40,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.045318598790289],[0.056304931640625,-0.045318598790289],[0.056304931640625,-0.0466918893631913],[0.054931640625,-0.0466918893631913],[0.054931640625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":40,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0466918893631913],[0.056304931640625,-0.0466918893631913],[0.056304931640625,-0.0480651799092611],[0.054931640625,-0.0480651799092611],[0.054931640625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":40,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0480651799092611],[0.056304931640625,-0.0480651799092611],[0.056304931640625,-0.0494384704277221],[0.054931640625,-0.0494384704277221],[0.054931640625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":40,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0494384704277221],[0.056304931640625,-0.0494384704277221],[0.056304931640625,-0.0508117609177883],[0.054931640625,-0.0508117609177883],[0.054931640625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":40,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0508117609177883],[0.056304931640625,-0.0508117609177883],[0.056304931640625,-0.0521850513786548],[0.054931640625,-0.0521850513786548],[0.054931640625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":40,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0521850513786548],[0.056304931640625,-0.0521850513786548],[0.056304931640625,-0.0535583418095483],[0.054931640625,-0.0535583418095483],[0.054931640625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":40,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0535583418095483],[0.056304931640625,-0.0535583418095483],[0.056304931640625,-0.0549316322096735],[0.054931640625,-0.0549316322096735],[0.054931640625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":40,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0549316322096735],[0.056304931640625,-0.0549316322096735],[0.056304931640625,-0.0563049225782379],[0.054931640625,-0.0563049225782379],[0.054931640625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":40,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0563049225782379],[0.056304931640625,-0.0563049225782379],[0.056304931640625,-0.0576782129144526],[0.054931640625,-0.0576782129144526],[0.054931640625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":40,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0576782129144526],[0.056304931640625,-0.0576782129144526],[0.056304931640625,-0.0590515032175379],[0.054931640625,-0.0590515032175379],[0.054931640625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":40,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0590515032175379],[0.056304931640625,-0.0590515032175379],[0.056304931640625,-0.0604247934867017],[0.054931640625,-0.0604247934867017],[0.054931640625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":40,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0604247934867017],[0.056304931640625,-0.0604247934867017],[0.056304931640625,-0.0617980837211484],[0.054931640625,-0.0617980837211484],[0.054931640625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":40,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0617980837211484],[0.056304931640625,-0.0617980837211484],[0.056304931640625,-0.0631713739200889],[0.054931640625,-0.0631713739200889],[0.054931640625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":40,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0631713739200889],[0.056304931640625,-0.0631713739200889],[0.056304931640625,-0.0645446640827373],[0.054931640625,-0.0645446640827373],[0.054931640625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":40,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.054931640625,-0.0645446640827373],[0.056304931640625,-0.0645446640827373],[0.056304931640625,-0.065917954208311],[0.054931640625,-0.065917954208311],[0.054931640625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":41,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0219726557114224],[0.05767822265625,-0.0219726557114224],[0.05767822265625,-0.0233459466196176],[0.056304931640625,-0.0233459466196176],[0.056304931640625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":41,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0233459466196176],[0.05767822265625,-0.0233459466196176],[0.05767822265625,-0.0247192375144014],[0.056304931640625,-0.0247192375144014],[0.056304931640625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":41,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0247192375144014],[0.05767822265625,-0.0247192375144014],[0.05767822265625,-0.026092528394991],[0.056304931640625,-0.026092528394991],[0.056304931640625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":41,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.026092528394991],[0.05767822265625,-0.026092528394991],[0.05767822265625,-0.0274658192605846],[0.056304931640625,-0.0274658192605846],[0.056304931640625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":41,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0274658192605846],[0.05767822265625,-0.0274658192605846],[0.05767822265625,-0.0288391101104026],[0.056304931640625,-0.0288391101104026],[0.056304931640625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":41,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0288391101104026],[0.05767822265625,-0.0288391101104026],[0.05767822265625,-0.0302124009436464],[0.056304931640625,-0.0302124009436464],[0.056304931640625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":41,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0302124009436464],[0.05767822265625,-0.0302124009436464],[0.05767822265625,-0.0315856917595396],[0.056304931640625,-0.0315856917595396],[0.056304931640625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":41,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0315856917595396],[0.05767822265625,-0.0315856917595396],[0.05767822265625,-0.0329589825572836],[0.056304931640625,-0.0329589825572836],[0.056304931640625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":41,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0329589825572836],[0.05767822265625,-0.0329589825572836],[0.05767822265625,-0.0343322733360987],[0.056304931640625,-0.0343322733360987],[0.056304931640625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":41,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0343322733360987],[0.05767822265625,-0.0343322733360987],[0.05767822265625,-0.0357055640951897],[0.056304931640625,-0.0357055640951897],[0.056304931640625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":41,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0357055640951897],[0.05767822265625,-0.0357055640951897],[0.05767822265625,-0.0370788548337641],[0.056304931640625,-0.0370788548337641],[0.056304931640625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":41,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0370788548337641],[0.05767822265625,-0.0370788548337641],[0.05767822265625,-0.0384521455510425],[0.056304931640625,-0.0384521455510425],[0.056304931640625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":41,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0384521455510425],[0.05767822265625,-0.0384521455510425],[0.05767822265625,-0.039825436246223],[0.056304931640625,-0.039825436246223],[0.056304931640625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":41,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.039825436246223],[0.05767822265625,-0.039825436246223],[0.05767822265625,-0.0411987269185324],[0.056304931640625,-0.0411987269185324],[0.056304931640625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":41,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0411987269185324],[0.05767822265625,-0.0411987269185324],[0.05767822265625,-0.042572017567172],[0.056304931640625,-0.042572017567172],[0.056304931640625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":41,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.042572017567172],[0.05767822265625,-0.042572017567172],[0.05767822265625,-0.0439453081913529],[0.056304931640625,-0.0439453081913529],[0.056304931640625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":41,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0439453081913529],[0.05767822265625,-0.0439453081913529],[0.05767822265625,-0.045318598790289],[0.056304931640625,-0.045318598790289],[0.056304931640625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":41,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.045318598790289],[0.05767822265625,-0.045318598790289],[0.05767822265625,-0.0466918893631913],[0.056304931640625,-0.0466918893631913],[0.056304931640625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":41,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0466918893631913],[0.05767822265625,-0.0466918893631913],[0.05767822265625,-0.0480651799092611],[0.056304931640625,-0.0480651799092611],[0.056304931640625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":41,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0480651799092611],[0.05767822265625,-0.0480651799092611],[0.05767822265625,-0.0494384704277221],[0.056304931640625,-0.0494384704277221],[0.056304931640625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":41,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0494384704277221],[0.05767822265625,-0.0494384704277221],[0.05767822265625,-0.0508117609177883],[0.056304931640625,-0.0508117609177883],[0.056304931640625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":41,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0508117609177883],[0.05767822265625,-0.0508117609177883],[0.05767822265625,-0.0521850513786548],[0.056304931640625,-0.0521850513786548],[0.056304931640625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":41,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0521850513786548],[0.05767822265625,-0.0521850513786548],[0.05767822265625,-0.0535583418095483],[0.056304931640625,-0.0535583418095483],[0.056304931640625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":41,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0535583418095483],[0.05767822265625,-0.0535583418095483],[0.05767822265625,-0.0549316322096735],[0.056304931640625,-0.0549316322096735],[0.056304931640625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":41,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0549316322096735],[0.05767822265625,-0.0549316322096735],[0.05767822265625,-0.0563049225782379],[0.056304931640625,-0.0563049225782379],[0.056304931640625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":41,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0563049225782379],[0.05767822265625,-0.0563049225782379],[0.05767822265625,-0.0576782129144526],[0.056304931640625,-0.0576782129144526],[0.056304931640625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":41,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0576782129144526],[0.05767822265625,-0.0576782129144526],[0.05767822265625,-0.0590515032175379],[0.056304931640625,-0.0590515032175379],[0.056304931640625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":41,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0590515032175379],[0.05767822265625,-0.0590515032175379],[0.05767822265625,-0.0604247934867017],[0.056304931640625,-0.0604247934867017],[0.056304931640625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":41,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0604247934867017],[0.05767822265625,-0.0604247934867017],[0.05767822265625,-0.0617980837211484],[0.056304931640625,-0.0617980837211484],[0.056304931640625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":41,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0617980837211484],[0.05767822265625,-0.0617980837211484],[0.05767822265625,-0.0631713739200889],[0.056304931640625,-0.0631713739200889],[0.056304931640625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":41,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0631713739200889],[0.05767822265625,-0.0631713739200889],[0.05767822265625,-0.0645446640827373],[0.056304931640625,-0.0645446640827373],[0.056304931640625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":41,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.056304931640625,-0.0645446640827373],[0.05767822265625,-0.0645446640827373],[0.05767822265625,-0.065917954208311],[0.056304931640625,-0.065917954208311],[0.056304931640625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":42,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0219726557114224],[0.059051513671875,-0.0219726557114224],[0.059051513671875,-0.0233459466196176],[0.05767822265625,-0.0233459466196176],[0.05767822265625,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":42,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0233459466196176],[0.059051513671875,-0.0233459466196176],[0.059051513671875,-0.0247192375144014],[0.05767822265625,-0.0247192375144014],[0.05767822265625,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":42,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0247192375144014],[0.059051513671875,-0.0247192375144014],[0.059051513671875,-0.026092528394991],[0.05767822265625,-0.026092528394991],[0.05767822265625,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":42,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.026092528394991],[0.059051513671875,-0.026092528394991],[0.059051513671875,-0.0274658192605846],[0.05767822265625,-0.0274658192605846],[0.05767822265625,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":42,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0274658192605846],[0.059051513671875,-0.0274658192605846],[0.059051513671875,-0.0288391101104026],[0.05767822265625,-0.0288391101104026],[0.05767822265625,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":42,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0288391101104026],[0.059051513671875,-0.0288391101104026],[0.059051513671875,-0.0302124009436464],[0.05767822265625,-0.0302124009436464],[0.05767822265625,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":42,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0302124009436464],[0.059051513671875,-0.0302124009436464],[0.059051513671875,-0.0315856917595396],[0.05767822265625,-0.0315856917595396],[0.05767822265625,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":42,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0315856917595396],[0.059051513671875,-0.0315856917595396],[0.059051513671875,-0.0329589825572836],[0.05767822265625,-0.0329589825572836],[0.05767822265625,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":42,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0329589825572836],[0.059051513671875,-0.0329589825572836],[0.059051513671875,-0.0343322733360987],[0.05767822265625,-0.0343322733360987],[0.05767822265625,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":42,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0343322733360987],[0.059051513671875,-0.0343322733360987],[0.059051513671875,-0.0357055640951897],[0.05767822265625,-0.0357055640951897],[0.05767822265625,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":42,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0357055640951897],[0.059051513671875,-0.0357055640951897],[0.059051513671875,-0.0370788548337641],[0.05767822265625,-0.0370788548337641],[0.05767822265625,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":42,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0370788548337641],[0.059051513671875,-0.0370788548337641],[0.059051513671875,-0.0384521455510425],[0.05767822265625,-0.0384521455510425],[0.05767822265625,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":42,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0384521455510425],[0.059051513671875,-0.0384521455510425],[0.059051513671875,-0.039825436246223],[0.05767822265625,-0.039825436246223],[0.05767822265625,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":42,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.039825436246223],[0.059051513671875,-0.039825436246223],[0.059051513671875,-0.0411987269185324],[0.05767822265625,-0.0411987269185324],[0.05767822265625,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":42,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0411987269185324],[0.059051513671875,-0.0411987269185324],[0.059051513671875,-0.042572017567172],[0.05767822265625,-0.042572017567172],[0.05767822265625,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":42,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.042572017567172],[0.059051513671875,-0.042572017567172],[0.059051513671875,-0.0439453081913529],[0.05767822265625,-0.0439453081913529],[0.05767822265625,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":42,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0439453081913529],[0.059051513671875,-0.0439453081913529],[0.059051513671875,-0.045318598790289],[0.05767822265625,-0.045318598790289],[0.05767822265625,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":42,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.045318598790289],[0.059051513671875,-0.045318598790289],[0.059051513671875,-0.0466918893631913],[0.05767822265625,-0.0466918893631913],[0.05767822265625,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":42,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0466918893631913],[0.059051513671875,-0.0466918893631913],[0.059051513671875,-0.0480651799092611],[0.05767822265625,-0.0480651799092611],[0.05767822265625,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":42,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0480651799092611],[0.059051513671875,-0.0480651799092611],[0.059051513671875,-0.0494384704277221],[0.05767822265625,-0.0494384704277221],[0.05767822265625,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":42,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0494384704277221],[0.059051513671875,-0.0494384704277221],[0.059051513671875,-0.0508117609177883],[0.05767822265625,-0.0508117609177883],[0.05767822265625,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":42,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0508117609177883],[0.059051513671875,-0.0508117609177883],[0.059051513671875,-0.0521850513786548],[0.05767822265625,-0.0521850513786548],[0.05767822265625,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":42,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0521850513786548],[0.059051513671875,-0.0521850513786548],[0.059051513671875,-0.0535583418095483],[0.05767822265625,-0.0535583418095483],[0.05767822265625,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":42,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0535583418095483],[0.059051513671875,-0.0535583418095483],[0.059051513671875,-0.0549316322096735],[0.05767822265625,-0.0549316322096735],[0.05767822265625,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":42,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0549316322096735],[0.059051513671875,-0.0549316322096735],[0.059051513671875,-0.0563049225782379],[0.05767822265625,-0.0563049225782379],[0.05767822265625,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":42,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0563049225782379],[0.059051513671875,-0.0563049225782379],[0.059051513671875,-0.0576782129144526],[0.05767822265625,-0.0576782129144526],[0.05767822265625,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":42,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0576782129144526],[0.059051513671875,-0.0576782129144526],[0.059051513671875,-0.0590515032175379],[0.05767822265625,-0.0590515032175379],[0.05767822265625,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":42,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0590515032175379],[0.059051513671875,-0.0590515032175379],[0.059051513671875,-0.0604247934867017],[0.05767822265625,-0.0604247934867017],[0.05767822265625,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":42,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0604247934867017],[0.059051513671875,-0.0604247934867017],[0.059051513671875,-0.0617980837211484],[0.05767822265625,-0.0617980837211484],[0.05767822265625,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":42,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0617980837211484],[0.059051513671875,-0.0617980837211484],[0.059051513671875,-0.0631713739200889],[0.05767822265625,-0.0631713739200889],[0.05767822265625,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":42,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0631713739200889],[0.059051513671875,-0.0631713739200889],[0.059051513671875,-0.0645446640827373],[0.05767822265625,-0.0645446640827373],[0.05767822265625,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":42,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.05767822265625,-0.0645446640827373],[0.059051513671875,-0.0645446640827373],[0.059051513671875,-0.065917954208311],[0.05767822265625,-0.065917954208311],[0.05767822265625,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":43,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0219726557114224],[0.0604248046875,-0.0219726557114224],[0.0604248046875,-0.0233459466196176],[0.059051513671875,-0.0233459466196176],[0.059051513671875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":43,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0233459466196176],[0.0604248046875,-0.0233459466196176],[0.0604248046875,-0.0247192375144014],[0.059051513671875,-0.0247192375144014],[0.059051513671875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":43,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0247192375144014],[0.0604248046875,-0.0247192375144014],[0.0604248046875,-0.026092528394991],[0.059051513671875,-0.026092528394991],[0.059051513671875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":43,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.026092528394991],[0.0604248046875,-0.026092528394991],[0.0604248046875,-0.0274658192605846],[0.059051513671875,-0.0274658192605846],[0.059051513671875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":43,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0274658192605846],[0.0604248046875,-0.0274658192605846],[0.0604248046875,-0.0288391101104026],[0.059051513671875,-0.0288391101104026],[0.059051513671875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":43,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0288391101104026],[0.0604248046875,-0.0288391101104026],[0.0604248046875,-0.0302124009436464],[0.059051513671875,-0.0302124009436464],[0.059051513671875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":43,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0302124009436464],[0.0604248046875,-0.0302124009436464],[0.0604248046875,-0.0315856917595396],[0.059051513671875,-0.0315856917595396],[0.059051513671875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":43,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0315856917595396],[0.0604248046875,-0.0315856917595396],[0.0604248046875,-0.0329589825572836],[0.059051513671875,-0.0329589825572836],[0.059051513671875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":43,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0329589825572836],[0.0604248046875,-0.0329589825572836],[0.0604248046875,-0.0343322733360987],[0.059051513671875,-0.0343322733360987],[0.059051513671875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":43,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0343322733360987],[0.0604248046875,-0.0343322733360987],[0.0604248046875,-0.0357055640951897],[0.059051513671875,-0.0357055640951897],[0.059051513671875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":43,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0357055640951897],[0.0604248046875,-0.0357055640951897],[0.0604248046875,-0.0370788548337641],[0.059051513671875,-0.0370788548337641],[0.059051513671875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":43,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0370788548337641],[0.0604248046875,-0.0370788548337641],[0.0604248046875,-0.0384521455510425],[0.059051513671875,-0.0384521455510425],[0.059051513671875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":43,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0384521455510425],[0.0604248046875,-0.0384521455510425],[0.0604248046875,-0.039825436246223],[0.059051513671875,-0.039825436246223],[0.059051513671875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":43,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.039825436246223],[0.0604248046875,-0.039825436246223],[0.0604248046875,-0.0411987269185324],[0.059051513671875,-0.0411987269185324],[0.059051513671875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":43,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0411987269185324],[0.0604248046875,-0.0411987269185324],[0.0604248046875,-0.042572017567172],[0.059051513671875,-0.042572017567172],[0.059051513671875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":43,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.042572017567172],[0.0604248046875,-0.042572017567172],[0.0604248046875,-0.0439453081913529],[0.059051513671875,-0.0439453081913529],[0.059051513671875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":43,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0439453081913529],[0.0604248046875,-0.0439453081913529],[0.0604248046875,-0.045318598790289],[0.059051513671875,-0.045318598790289],[0.059051513671875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":43,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.045318598790289],[0.0604248046875,-0.045318598790289],[0.0604248046875,-0.0466918893631913],[0.059051513671875,-0.0466918893631913],[0.059051513671875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":43,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0466918893631913],[0.0604248046875,-0.0466918893631913],[0.0604248046875,-0.0480651799092611],[0.059051513671875,-0.0480651799092611],[0.059051513671875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":43,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0480651799092611],[0.0604248046875,-0.0480651799092611],[0.0604248046875,-0.0494384704277221],[0.059051513671875,-0.0494384704277221],[0.059051513671875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":43,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0494384704277221],[0.0604248046875,-0.0494384704277221],[0.0604248046875,-0.0508117609177883],[0.059051513671875,-0.0508117609177883],[0.059051513671875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":43,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0508117609177883],[0.0604248046875,-0.0508117609177883],[0.0604248046875,-0.0521850513786548],[0.059051513671875,-0.0521850513786548],[0.059051513671875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":43,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0521850513786548],[0.0604248046875,-0.0521850513786548],[0.0604248046875,-0.0535583418095483],[0.059051513671875,-0.0535583418095483],[0.059051513671875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":43,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0535583418095483],[0.0604248046875,-0.0535583418095483],[0.0604248046875,-0.0549316322096735],[0.059051513671875,-0.0549316322096735],[0.059051513671875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":43,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0549316322096735],[0.0604248046875,-0.0549316322096735],[0.0604248046875,-0.0563049225782379],[0.059051513671875,-0.0563049225782379],[0.059051513671875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":43,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0563049225782379],[0.0604248046875,-0.0563049225782379],[0.0604248046875,-0.0576782129144526],[0.059051513671875,-0.0576782129144526],[0.059051513671875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":43,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0576782129144526],[0.0604248046875,-0.0576782129144526],[0.0604248046875,-0.0590515032175379],[0.059051513671875,-0.0590515032175379],[0.059051513671875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":43,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0590515032175379],[0.0604248046875,-0.0590515032175379],[0.0604248046875,-0.0604247934867017],[0.059051513671875,-0.0604247934867017],[0.059051513671875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":43,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0604247934867017],[0.0604248046875,-0.0604247934867017],[0.0604248046875,-0.0617980837211484],[0.059051513671875,-0.0617980837211484],[0.059051513671875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":43,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0617980837211484],[0.0604248046875,-0.0617980837211484],[0.0604248046875,-0.0631713739200889],[0.059051513671875,-0.0631713739200889],[0.059051513671875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":43,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0631713739200889],[0.0604248046875,-0.0631713739200889],[0.0604248046875,-0.0645446640827373],[0.059051513671875,-0.0645446640827373],[0.059051513671875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":43,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.059051513671875,-0.0645446640827373],[0.0604248046875,-0.0645446640827373],[0.0604248046875,-0.065917954208311],[0.059051513671875,-0.065917954208311],[0.059051513671875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":44,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0219726557114224],[0.061798095703125,-0.0219726557114224],[0.061798095703125,-0.0233459466196176],[0.0604248046875,-0.0233459466196176],[0.0604248046875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":44,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0233459466196176],[0.061798095703125,-0.0233459466196176],[0.061798095703125,-0.0247192375144014],[0.0604248046875,-0.0247192375144014],[0.0604248046875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":44,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0247192375144014],[0.061798095703125,-0.0247192375144014],[0.061798095703125,-0.026092528394991],[0.0604248046875,-0.026092528394991],[0.0604248046875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":44,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.026092528394991],[0.061798095703125,-0.026092528394991],[0.061798095703125,-0.0274658192605846],[0.0604248046875,-0.0274658192605846],[0.0604248046875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":44,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0274658192605846],[0.061798095703125,-0.0274658192605846],[0.061798095703125,-0.0288391101104026],[0.0604248046875,-0.0288391101104026],[0.0604248046875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":44,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0288391101104026],[0.061798095703125,-0.0288391101104026],[0.061798095703125,-0.0302124009436464],[0.0604248046875,-0.0302124009436464],[0.0604248046875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":44,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0302124009436464],[0.061798095703125,-0.0302124009436464],[0.061798095703125,-0.0315856917595396],[0.0604248046875,-0.0315856917595396],[0.0604248046875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":44,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0315856917595396],[0.061798095703125,-0.0315856917595396],[0.061798095703125,-0.0329589825572836],[0.0604248046875,-0.0329589825572836],[0.0604248046875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":44,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0329589825572836],[0.061798095703125,-0.0329589825572836],[0.061798095703125,-0.0343322733360987],[0.0604248046875,-0.0343322733360987],[0.0604248046875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":44,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0343322733360987],[0.061798095703125,-0.0343322733360987],[0.061798095703125,-0.0357055640951897],[0.0604248046875,-0.0357055640951897],[0.0604248046875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":44,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0357055640951897],[0.061798095703125,-0.0357055640951897],[0.061798095703125,-0.0370788548337641],[0.0604248046875,-0.0370788548337641],[0.0604248046875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":44,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0370788548337641],[0.061798095703125,-0.0370788548337641],[0.061798095703125,-0.0384521455510425],[0.0604248046875,-0.0384521455510425],[0.0604248046875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":44,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0384521455510425],[0.061798095703125,-0.0384521455510425],[0.061798095703125,-0.039825436246223],[0.0604248046875,-0.039825436246223],[0.0604248046875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":44,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.039825436246223],[0.061798095703125,-0.039825436246223],[0.061798095703125,-0.0411987269185324],[0.0604248046875,-0.0411987269185324],[0.0604248046875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":44,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0411987269185324],[0.061798095703125,-0.0411987269185324],[0.061798095703125,-0.042572017567172],[0.0604248046875,-0.042572017567172],[0.0604248046875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":44,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.042572017567172],[0.061798095703125,-0.042572017567172],[0.061798095703125,-0.0439453081913529],[0.0604248046875,-0.0439453081913529],[0.0604248046875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":44,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0439453081913529],[0.061798095703125,-0.0439453081913529],[0.061798095703125,-0.045318598790289],[0.0604248046875,-0.045318598790289],[0.0604248046875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":44,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.045318598790289],[0.061798095703125,-0.045318598790289],[0.061798095703125,-0.0466918893631913],[0.0604248046875,-0.0466918893631913],[0.0604248046875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":44,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0466918893631913],[0.061798095703125,-0.0466918893631913],[0.061798095703125,-0.0480651799092611],[0.0604248046875,-0.0480651799092611],[0.0604248046875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":44,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0480651799092611],[0.061798095703125,-0.0480651799092611],[0.061798095703125,-0.0494384704277221],[0.0604248046875,-0.0494384704277221],[0.0604248046875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":44,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0494384704277221],[0.061798095703125,-0.0494384704277221],[0.061798095703125,-0.0508117609177883],[0.0604248046875,-0.0508117609177883],[0.0604248046875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":44,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0508117609177883],[0.061798095703125,-0.0508117609177883],[0.061798095703125,-0.0521850513786548],[0.0604248046875,-0.0521850513786548],[0.0604248046875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":44,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0521850513786548],[0.061798095703125,-0.0521850513786548],[0.061798095703125,-0.0535583418095483],[0.0604248046875,-0.0535583418095483],[0.0604248046875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":44,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0535583418095483],[0.061798095703125,-0.0535583418095483],[0.061798095703125,-0.0549316322096735],[0.0604248046875,-0.0549316322096735],[0.0604248046875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":44,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0549316322096735],[0.061798095703125,-0.0549316322096735],[0.061798095703125,-0.0563049225782379],[0.0604248046875,-0.0563049225782379],[0.0604248046875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":44,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0563049225782379],[0.061798095703125,-0.0563049225782379],[0.061798095703125,-0.0576782129144526],[0.0604248046875,-0.0576782129144526],[0.0604248046875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":44,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0576782129144526],[0.061798095703125,-0.0576782129144526],[0.061798095703125,-0.0590515032175379],[0.0604248046875,-0.0590515032175379],[0.0604248046875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":44,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0590515032175379],[0.061798095703125,-0.0590515032175379],[0.061798095703125,-0.0604247934867017],[0.0604248046875,-0.0604247934867017],[0.0604248046875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":44,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0604247934867017],[0.061798095703125,-0.0604247934867017],[0.061798095703125,-0.0617980837211484],[0.0604248046875,-0.0617980837211484],[0.0604248046875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":44,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0617980837211484],[0.061798095703125,-0.0617980837211484],[0.061798095703125,-0.0631713739200889],[0.0604248046875,-0.0631713739200889],[0.0604248046875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":44,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0631713739200889],[0.061798095703125,-0.0631713739200889],[0.061798095703125,-0.0645446640827373],[0.0604248046875,-0.0645446640827373],[0.0604248046875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":44,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.0604248046875,-0.0645446640827373],[0.061798095703125,-0.0645446640827373],[0.061798095703125,-0.065917954208311],[0.0604248046875,-0.065917954208311],[0.0604248046875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":45,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0219726557114224],[0.06317138671875,-0.0219726557114224],[0.06317138671875,-0.0233459466196176],[0.061798095703125,-0.0233459466196176],[0.061798095703125,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":45,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0233459466196176],[0.06317138671875,-0.0233459466196176],[0.06317138671875,-0.0247192375144014],[0.061798095703125,-0.0247192375144014],[0.061798095703125,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":45,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0247192375144014],[0.06317138671875,-0.0247192375144014],[0.06317138671875,-0.026092528394991],[0.061798095703125,-0.026092528394991],[0.061798095703125,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":45,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.026092528394991],[0.06317138671875,-0.026092528394991],[0.06317138671875,-0.0274658192605846],[0.061798095703125,-0.0274658192605846],[0.061798095703125,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":45,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0274658192605846],[0.06317138671875,-0.0274658192605846],[0.06317138671875,-0.0288391101104026],[0.061798095703125,-0.0288391101104026],[0.061798095703125,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":45,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0288391101104026],[0.06317138671875,-0.0288391101104026],[0.06317138671875,-0.0302124009436464],[0.061798095703125,-0.0302124009436464],[0.061798095703125,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":45,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0302124009436464],[0.06317138671875,-0.0302124009436464],[0.06317138671875,-0.0315856917595396],[0.061798095703125,-0.0315856917595396],[0.061798095703125,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":45,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0315856917595396],[0.06317138671875,-0.0315856917595396],[0.06317138671875,-0.0329589825572836],[0.061798095703125,-0.0329589825572836],[0.061798095703125,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":45,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0329589825572836],[0.06317138671875,-0.0329589825572836],[0.06317138671875,-0.0343322733360987],[0.061798095703125,-0.0343322733360987],[0.061798095703125,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":45,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0343322733360987],[0.06317138671875,-0.0343322733360987],[0.06317138671875,-0.0357055640951897],[0.061798095703125,-0.0357055640951897],[0.061798095703125,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":45,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0357055640951897],[0.06317138671875,-0.0357055640951897],[0.06317138671875,-0.0370788548337641],[0.061798095703125,-0.0370788548337641],[0.061798095703125,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":45,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0370788548337641],[0.06317138671875,-0.0370788548337641],[0.06317138671875,-0.0384521455510425],[0.061798095703125,-0.0384521455510425],[0.061798095703125,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":45,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0384521455510425],[0.06317138671875,-0.0384521455510425],[0.06317138671875,-0.039825436246223],[0.061798095703125,-0.039825436246223],[0.061798095703125,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":45,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.039825436246223],[0.06317138671875,-0.039825436246223],[0.06317138671875,-0.0411987269185324],[0.061798095703125,-0.0411987269185324],[0.061798095703125,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":45,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0411987269185324],[0.06317138671875,-0.0411987269185324],[0.06317138671875,-0.042572017567172],[0.061798095703125,-0.042572017567172],[0.061798095703125,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":45,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.042572017567172],[0.06317138671875,-0.042572017567172],[0.06317138671875,-0.0439453081913529],[0.061798095703125,-0.0439453081913529],[0.061798095703125,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":45,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0439453081913529],[0.06317138671875,-0.0439453081913529],[0.06317138671875,-0.045318598790289],[0.061798095703125,-0.045318598790289],[0.061798095703125,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":45,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.045318598790289],[0.06317138671875,-0.045318598790289],[0.06317138671875,-0.0466918893631913],[0.061798095703125,-0.0466918893631913],[0.061798095703125,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":45,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0466918893631913],[0.06317138671875,-0.0466918893631913],[0.06317138671875,-0.0480651799092611],[0.061798095703125,-0.0480651799092611],[0.061798095703125,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":45,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0480651799092611],[0.06317138671875,-0.0480651799092611],[0.06317138671875,-0.0494384704277221],[0.061798095703125,-0.0494384704277221],[0.061798095703125,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":45,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0494384704277221],[0.06317138671875,-0.0494384704277221],[0.06317138671875,-0.0508117609177883],[0.061798095703125,-0.0508117609177883],[0.061798095703125,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":45,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0508117609177883],[0.06317138671875,-0.0508117609177883],[0.06317138671875,-0.0521850513786548],[0.061798095703125,-0.0521850513786548],[0.061798095703125,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":45,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0521850513786548],[0.06317138671875,-0.0521850513786548],[0.06317138671875,-0.0535583418095483],[0.061798095703125,-0.0535583418095483],[0.061798095703125,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":45,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0535583418095483],[0.06317138671875,-0.0535583418095483],[0.06317138671875,-0.0549316322096735],[0.061798095703125,-0.0549316322096735],[0.061798095703125,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":45,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0549316322096735],[0.06317138671875,-0.0549316322096735],[0.06317138671875,-0.0563049225782379],[0.061798095703125,-0.0563049225782379],[0.061798095703125,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":45,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0563049225782379],[0.06317138671875,-0.0563049225782379],[0.06317138671875,-0.0576782129144526],[0.061798095703125,-0.0576782129144526],[0.061798095703125,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":45,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0576782129144526],[0.06317138671875,-0.0576782129144526],[0.06317138671875,-0.0590515032175379],[0.061798095703125,-0.0590515032175379],[0.061798095703125,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":45,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0590515032175379],[0.06317138671875,-0.0590515032175379],[0.06317138671875,-0.0604247934867017],[0.061798095703125,-0.0604247934867017],[0.061798095703125,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":45,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0604247934867017],[0.06317138671875,-0.0604247934867017],[0.06317138671875,-0.0617980837211484],[0.061798095703125,-0.0617980837211484],[0.061798095703125,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":45,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0617980837211484],[0.06317138671875,-0.0617980837211484],[0.06317138671875,-0.0631713739200889],[0.061798095703125,-0.0631713739200889],[0.061798095703125,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":45,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0631713739200889],[0.06317138671875,-0.0631713739200889],[0.06317138671875,-0.0645446640827373],[0.061798095703125,-0.0645446640827373],[0.061798095703125,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":45,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.061798095703125,-0.0645446640827373],[0.06317138671875,-0.0645446640827373],[0.06317138671875,-0.065917954208311],[0.061798095703125,-0.065917954208311],[0.061798095703125,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":46,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0219726557114224],[0.064544677734375,-0.0219726557114224],[0.064544677734375,-0.0233459466196176],[0.06317138671875,-0.0233459466196176],[0.06317138671875,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":46,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0233459466196176],[0.064544677734375,-0.0233459466196176],[0.064544677734375,-0.0247192375144014],[0.06317138671875,-0.0247192375144014],[0.06317138671875,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":46,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0247192375144014],[0.064544677734375,-0.0247192375144014],[0.064544677734375,-0.026092528394991],[0.06317138671875,-0.026092528394991],[0.06317138671875,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":46,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.026092528394991],[0.064544677734375,-0.026092528394991],[0.064544677734375,-0.0274658192605846],[0.06317138671875,-0.0274658192605846],[0.06317138671875,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":46,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0274658192605846],[0.064544677734375,-0.0274658192605846],[0.064544677734375,-0.0288391101104026],[0.06317138671875,-0.0288391101104026],[0.06317138671875,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":46,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0288391101104026],[0.064544677734375,-0.0288391101104026],[0.064544677734375,-0.0302124009436464],[0.06317138671875,-0.0302124009436464],[0.06317138671875,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":46,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0302124009436464],[0.064544677734375,-0.0302124009436464],[0.064544677734375,-0.0315856917595396],[0.06317138671875,-0.0315856917595396],[0.06317138671875,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":46,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0315856917595396],[0.064544677734375,-0.0315856917595396],[0.064544677734375,-0.0329589825572836],[0.06317138671875,-0.0329589825572836],[0.06317138671875,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":46,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0329589825572836],[0.064544677734375,-0.0329589825572836],[0.064544677734375,-0.0343322733360987],[0.06317138671875,-0.0343322733360987],[0.06317138671875,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":46,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0343322733360987],[0.064544677734375,-0.0343322733360987],[0.064544677734375,-0.0357055640951897],[0.06317138671875,-0.0357055640951897],[0.06317138671875,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":46,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0357055640951897],[0.064544677734375,-0.0357055640951897],[0.064544677734375,-0.0370788548337641],[0.06317138671875,-0.0370788548337641],[0.06317138671875,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":46,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0370788548337641],[0.064544677734375,-0.0370788548337641],[0.064544677734375,-0.0384521455510425],[0.06317138671875,-0.0384521455510425],[0.06317138671875,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":46,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0384521455510425],[0.064544677734375,-0.0384521455510425],[0.064544677734375,-0.039825436246223],[0.06317138671875,-0.039825436246223],[0.06317138671875,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":46,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.039825436246223],[0.064544677734375,-0.039825436246223],[0.064544677734375,-0.0411987269185324],[0.06317138671875,-0.0411987269185324],[0.06317138671875,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":46,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0411987269185324],[0.064544677734375,-0.0411987269185324],[0.064544677734375,-0.042572017567172],[0.06317138671875,-0.042572017567172],[0.06317138671875,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":46,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.042572017567172],[0.064544677734375,-0.042572017567172],[0.064544677734375,-0.0439453081913529],[0.06317138671875,-0.0439453081913529],[0.06317138671875,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":46,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0439453081913529],[0.064544677734375,-0.0439453081913529],[0.064544677734375,-0.045318598790289],[0.06317138671875,-0.045318598790289],[0.06317138671875,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":46,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.045318598790289],[0.064544677734375,-0.045318598790289],[0.064544677734375,-0.0466918893631913],[0.06317138671875,-0.0466918893631913],[0.06317138671875,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":46,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0466918893631913],[0.064544677734375,-0.0466918893631913],[0.064544677734375,-0.0480651799092611],[0.06317138671875,-0.0480651799092611],[0.06317138671875,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":46,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0480651799092611],[0.064544677734375,-0.0480651799092611],[0.064544677734375,-0.0494384704277221],[0.06317138671875,-0.0494384704277221],[0.06317138671875,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":46,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0494384704277221],[0.064544677734375,-0.0494384704277221],[0.064544677734375,-0.0508117609177883],[0.06317138671875,-0.0508117609177883],[0.06317138671875,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":46,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0508117609177883],[0.064544677734375,-0.0508117609177883],[0.064544677734375,-0.0521850513786548],[0.06317138671875,-0.0521850513786548],[0.06317138671875,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":46,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0521850513786548],[0.064544677734375,-0.0521850513786548],[0.064544677734375,-0.0535583418095483],[0.06317138671875,-0.0535583418095483],[0.06317138671875,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":46,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0535583418095483],[0.064544677734375,-0.0535583418095483],[0.064544677734375,-0.0549316322096735],[0.06317138671875,-0.0549316322096735],[0.06317138671875,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":46,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0549316322096735],[0.064544677734375,-0.0549316322096735],[0.064544677734375,-0.0563049225782379],[0.06317138671875,-0.0563049225782379],[0.06317138671875,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":46,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0563049225782379],[0.064544677734375,-0.0563049225782379],[0.064544677734375,-0.0576782129144526],[0.06317138671875,-0.0576782129144526],[0.06317138671875,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":46,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0576782129144526],[0.064544677734375,-0.0576782129144526],[0.064544677734375,-0.0590515032175379],[0.06317138671875,-0.0590515032175379],[0.06317138671875,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":46,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0590515032175379],[0.064544677734375,-0.0590515032175379],[0.064544677734375,-0.0604247934867017],[0.06317138671875,-0.0604247934867017],[0.06317138671875,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":46,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0604247934867017],[0.064544677734375,-0.0604247934867017],[0.064544677734375,-0.0617980837211484],[0.06317138671875,-0.0617980837211484],[0.06317138671875,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":46,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0617980837211484],[0.064544677734375,-0.0617980837211484],[0.064544677734375,-0.0631713739200889],[0.06317138671875,-0.0631713739200889],[0.06317138671875,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":46,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0631713739200889],[0.064544677734375,-0.0631713739200889],[0.064544677734375,-0.0645446640827373],[0.06317138671875,-0.0645446640827373],[0.06317138671875,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":46,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.06317138671875,-0.0645446640827373],[0.064544677734375,-0.0645446640827373],[0.064544677734375,-0.065917954208311],[0.06317138671875,-0.065917954208311],[0.06317138671875,-0.0645446640827373]]]}} +{"type": "Feature","properties": {"x":47,"y":16},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0219726557114224],[0.06591796875,-0.0219726557114224],[0.06591796875,-0.0233459466196176],[0.064544677734375,-0.0233459466196176],[0.064544677734375,-0.0219726557114224]]]}} +{"type": "Feature","properties": {"x":47,"y":17},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0233459466196176],[0.06591796875,-0.0233459466196176],[0.06591796875,-0.0247192375144014],[0.064544677734375,-0.0247192375144014],[0.064544677734375,-0.0233459466196176]]]}} +{"type": "Feature","properties": {"x":47,"y":18},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0247192375144014],[0.06591796875,-0.0247192375144014],[0.06591796875,-0.026092528394991],[0.064544677734375,-0.026092528394991],[0.064544677734375,-0.0247192375144014]]]}} +{"type": "Feature","properties": {"x":47,"y":19},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.026092528394991],[0.06591796875,-0.026092528394991],[0.06591796875,-0.0274658192605846],[0.064544677734375,-0.0274658192605846],[0.064544677734375,-0.026092528394991]]]}} +{"type": "Feature","properties": {"x":47,"y":20},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0274658192605846],[0.06591796875,-0.0274658192605846],[0.06591796875,-0.0288391101104026],[0.064544677734375,-0.0288391101104026],[0.064544677734375,-0.0274658192605846]]]}} +{"type": "Feature","properties": {"x":47,"y":21},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0288391101104026],[0.06591796875,-0.0288391101104026],[0.06591796875,-0.0302124009436464],[0.064544677734375,-0.0302124009436464],[0.064544677734375,-0.0288391101104026]]]}} +{"type": "Feature","properties": {"x":47,"y":22},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0302124009436464],[0.06591796875,-0.0302124009436464],[0.06591796875,-0.0315856917595396],[0.064544677734375,-0.0315856917595396],[0.064544677734375,-0.0302124009436464]]]}} +{"type": "Feature","properties": {"x":47,"y":23},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0315856917595396],[0.06591796875,-0.0315856917595396],[0.06591796875,-0.0329589825572836],[0.064544677734375,-0.0329589825572836],[0.064544677734375,-0.0315856917595396]]]}} +{"type": "Feature","properties": {"x":47,"y":24},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0329589825572836],[0.06591796875,-0.0329589825572836],[0.06591796875,-0.0343322733360987],[0.064544677734375,-0.0343322733360987],[0.064544677734375,-0.0329589825572836]]]}} +{"type": "Feature","properties": {"x":47,"y":25},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0343322733360987],[0.06591796875,-0.0343322733360987],[0.06591796875,-0.0357055640951897],[0.064544677734375,-0.0357055640951897],[0.064544677734375,-0.0343322733360987]]]}} +{"type": "Feature","properties": {"x":47,"y":26},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0357055640951897],[0.06591796875,-0.0357055640951897],[0.06591796875,-0.0370788548337641],[0.064544677734375,-0.0370788548337641],[0.064544677734375,-0.0357055640951897]]]}} +{"type": "Feature","properties": {"x":47,"y":27},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0370788548337641],[0.06591796875,-0.0370788548337641],[0.06591796875,-0.0384521455510425],[0.064544677734375,-0.0384521455510425],[0.064544677734375,-0.0370788548337641]]]}} +{"type": "Feature","properties": {"x":47,"y":28},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0384521455510425],[0.06591796875,-0.0384521455510425],[0.06591796875,-0.039825436246223],[0.064544677734375,-0.039825436246223],[0.064544677734375,-0.0384521455510425]]]}} +{"type": "Feature","properties": {"x":47,"y":29},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.039825436246223],[0.06591796875,-0.039825436246223],[0.06591796875,-0.0411987269185324],[0.064544677734375,-0.0411987269185324],[0.064544677734375,-0.039825436246223]]]}} +{"type": "Feature","properties": {"x":47,"y":30},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0411987269185324],[0.06591796875,-0.0411987269185324],[0.06591796875,-0.042572017567172],[0.064544677734375,-0.042572017567172],[0.064544677734375,-0.0411987269185324]]]}} +{"type": "Feature","properties": {"x":47,"y":31},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.042572017567172],[0.06591796875,-0.042572017567172],[0.06591796875,-0.0439453081913529],[0.064544677734375,-0.0439453081913529],[0.064544677734375,-0.042572017567172]]]}} +{"type": "Feature","properties": {"x":47,"y":32},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0439453081913529],[0.06591796875,-0.0439453081913529],[0.06591796875,-0.045318598790289],[0.064544677734375,-0.045318598790289],[0.064544677734375,-0.0439453081913529]]]}} +{"type": "Feature","properties": {"x":47,"y":33},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.045318598790289],[0.06591796875,-0.045318598790289],[0.06591796875,-0.0466918893631913],[0.064544677734375,-0.0466918893631913],[0.064544677734375,-0.045318598790289]]]}} +{"type": "Feature","properties": {"x":47,"y":34},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0466918893631913],[0.06591796875,-0.0466918893631913],[0.06591796875,-0.0480651799092611],[0.064544677734375,-0.0480651799092611],[0.064544677734375,-0.0466918893631913]]]}} +{"type": "Feature","properties": {"x":47,"y":35},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0480651799092611],[0.06591796875,-0.0480651799092611],[0.06591796875,-0.0494384704277221],[0.064544677734375,-0.0494384704277221],[0.064544677734375,-0.0480651799092611]]]}} +{"type": "Feature","properties": {"x":47,"y":36},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0494384704277221],[0.06591796875,-0.0494384704277221],[0.06591796875,-0.0508117609177883],[0.064544677734375,-0.0508117609177883],[0.064544677734375,-0.0494384704277221]]]}} +{"type": "Feature","properties": {"x":47,"y":37},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0508117609177883],[0.06591796875,-0.0508117609177883],[0.06591796875,-0.0521850513786548],[0.064544677734375,-0.0521850513786548],[0.064544677734375,-0.0508117609177883]]]}} +{"type": "Feature","properties": {"x":47,"y":38},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0521850513786548],[0.06591796875,-0.0521850513786548],[0.06591796875,-0.0535583418095483],[0.064544677734375,-0.0535583418095483],[0.064544677734375,-0.0521850513786548]]]}} +{"type": "Feature","properties": {"x":47,"y":39},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0535583418095483],[0.06591796875,-0.0535583418095483],[0.06591796875,-0.0549316322096735],[0.064544677734375,-0.0549316322096735],[0.064544677734375,-0.0535583418095483]]]}} +{"type": "Feature","properties": {"x":47,"y":40},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0549316322096735],[0.06591796875,-0.0549316322096735],[0.06591796875,-0.0563049225782379],[0.064544677734375,-0.0563049225782379],[0.064544677734375,-0.0549316322096735]]]}} +{"type": "Feature","properties": {"x":47,"y":41},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0563049225782379],[0.06591796875,-0.0563049225782379],[0.06591796875,-0.0576782129144526],[0.064544677734375,-0.0576782129144526],[0.064544677734375,-0.0563049225782379]]]}} +{"type": "Feature","properties": {"x":47,"y":42},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0576782129144526],[0.06591796875,-0.0576782129144526],[0.06591796875,-0.0590515032175379],[0.064544677734375,-0.0590515032175379],[0.064544677734375,-0.0576782129144526]]]}} +{"type": "Feature","properties": {"x":47,"y":43},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0590515032175379],[0.06591796875,-0.0590515032175379],[0.06591796875,-0.0604247934867017],[0.064544677734375,-0.0604247934867017],[0.064544677734375,-0.0590515032175379]]]}} +{"type": "Feature","properties": {"x":47,"y":44},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0604247934867017],[0.06591796875,-0.0604247934867017],[0.06591796875,-0.0617980837211484],[0.064544677734375,-0.0617980837211484],[0.064544677734375,-0.0604247934867017]]]}} +{"type": "Feature","properties": {"x":47,"y":45},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0617980837211484],[0.06591796875,-0.0617980837211484],[0.06591796875,-0.0631713739200889],[0.064544677734375,-0.0631713739200889],[0.064544677734375,-0.0617980837211484]]]}} +{"type": "Feature","properties": {"x":47,"y":46},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0631713739200889],[0.06591796875,-0.0631713739200889],[0.06591796875,-0.0645446640827373],[0.064544677734375,-0.0645446640827373],[0.064544677734375,-0.0631713739200889]]]}} +{"type": "Feature","properties": {"x":47,"y":47},"geometry":{"type":"Polygon","coordinates":[[[0.064544677734375,-0.0645446640827373],[0.06591796875,-0.0645446640827373],[0.06591796875,-0.065917954208311],[0.064544677734375,-0.065917954208311],[0.064544677734375,-0.0645446640827373]]]}} diff --git a/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json b/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json new file mode 100644 index 000000000..d5a4eb721 --- /dev/null +++ b/tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json @@ -0,0 +1,2806 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "0.021973,-0.065918,0.065918,-0.021973", +"center": "0.065918,-0.065918,11", +"description": "tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 11, \"fields\": {\"x\": \"Number\", \"y\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1024,\"geometry\": \"Polygon\",\"attributeCount\": 2,\"attributes\": [{\"attribute\": \"x\",\"count\": 32,\"type\": \"number\",\"values\": [16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],\"min\": 16,\"max\": 47},{\"attribute\": \"y\",\"count\": 32,\"type\": \"number\",\"values\": [16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47],\"min\": 16,\"max\": 47}]}]}}", +"maxzoom": "11", +"minzoom": "0", +"name": "tests/grid-aligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 32 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.000000 ], [ 0.043945, -0.043945 ], [ 0.000000, -0.043945 ], [ 0.000000, 0.000000 ], [ 0.043945, 0.000000 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.000000 ], [ 0.043945, -0.043945 ], [ 0.000000, -0.043945 ], [ 0.000000, 0.000000 ], [ 0.043945, 0.000000 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 32 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.000000 ], [ 0.043945, -0.043945 ], [ 0.000000, -0.043945 ], [ 0.000000, 0.000000 ], [ 0.043945, 0.000000 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.000000 ], [ 0.043945, -0.043945 ], [ 0.000000, -0.043945 ], [ 0.000000, 0.000000 ], [ 0.043945, 0.000000 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 64 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 63 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 64 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 63 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 128 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 23, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.021973 ], [ 0.032959, -0.032959 ], [ 0.021973, -0.032959 ], [ 0.021973, -0.021973 ], [ 0.032959, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.032959 ], [ 0.032959, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.032959 ], [ 0.032959, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.032959 ], [ 0.032959, -0.032959 ], [ 0.032959, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.032959 ], [ 0.043945, -0.043945 ], [ 0.032959, -0.043945 ], [ 0.032959, -0.032959 ], [ 0.043945, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.043945 ], [ 0.032959, -0.054932 ], [ 0.021973, -0.054932 ], [ 0.021973, -0.043945 ], [ 0.032959, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.054932 ], [ 0.032959, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.054932 ], [ 0.032959, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.054932 ], [ 0.032959, -0.054932 ], [ 0.032959, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.054932 ], [ 0.043945, -0.065918 ], [ 0.032959, -0.065918 ], [ 0.032959, -0.054932 ], [ 0.043945, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.021973 ], [ 0.054932, -0.032959 ], [ 0.043945, -0.032959 ], [ 0.043945, -0.021973 ], [ 0.054932, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.032959 ], [ 0.054932, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.032959 ], [ 0.054932, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.032959 ], [ 0.054932, -0.032959 ], [ 0.054932, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.032959 ], [ 0.065918, -0.043945 ], [ 0.054932, -0.043945 ], [ 0.054932, -0.032959 ], [ 0.065918, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.043945 ], [ 0.054932, -0.054932 ], [ 0.043945, -0.054932 ], [ 0.043945, -0.043945 ], [ 0.054932, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.054932 ], [ 0.054932, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.054932 ], [ 0.054932, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.054932 ], [ 0.054932, -0.054932 ], [ 0.054932, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.054932 ], [ 0.065918, -0.065918 ], [ 0.054932, -0.065918 ], [ 0.054932, -0.054932 ], [ 0.065918, -0.054932 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 19, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.021973 ], [ 0.027466, -0.027466 ], [ 0.021973, -0.027466 ], [ 0.021973, -0.021973 ], [ 0.027466, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.027466 ], [ 0.027466, -0.032959 ], [ 0.021973, -0.032959 ], [ 0.021973, -0.027466 ], [ 0.027466, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.021973 ], [ 0.032959, -0.027466 ], [ 0.027466, -0.027466 ], [ 0.027466, -0.021973 ], [ 0.032959, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.027466 ], [ 0.032959, -0.032959 ], [ 0.027466, -0.032959 ], [ 0.027466, -0.027466 ], [ 0.032959, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.032959 ], [ 0.027466, -0.038452 ], [ 0.021973, -0.038452 ], [ 0.021973, -0.032959 ], [ 0.027466, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.038452 ], [ 0.027466, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.038452 ], [ 0.027466, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.032959 ], [ 0.032959, -0.038452 ], [ 0.027466, -0.038452 ], [ 0.027466, -0.032959 ], [ 0.032959, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.038452 ], [ 0.032959, -0.043945 ], [ 0.027466, -0.043945 ], [ 0.027466, -0.038452 ], [ 0.032959, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.021973 ], [ 0.038452, -0.027466 ], [ 0.032959, -0.027466 ], [ 0.032959, -0.021973 ], [ 0.038452, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.027466 ], [ 0.038452, -0.032959 ], [ 0.032959, -0.032959 ], [ 0.032959, -0.027466 ], [ 0.038452, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.027466 ], [ 0.038452, -0.027466 ], [ 0.038452, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.027466 ], [ 0.043945, -0.032959 ], [ 0.038452, -0.032959 ], [ 0.038452, -0.027466 ], [ 0.043945, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.032959 ], [ 0.038452, -0.038452 ], [ 0.032959, -0.038452 ], [ 0.032959, -0.032959 ], [ 0.038452, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.038452 ], [ 0.038452, -0.043945 ], [ 0.032959, -0.043945 ], [ 0.032959, -0.038452 ], [ 0.038452, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.032959 ], [ 0.043945, -0.038452 ], [ 0.038452, -0.038452 ], [ 0.038452, -0.032959 ], [ 0.043945, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.038452 ], [ 0.043945, -0.043945 ], [ 0.038452, -0.043945 ], [ 0.038452, -0.038452 ], [ 0.043945, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.043945 ], [ 0.027466, -0.049438 ], [ 0.021973, -0.049438 ], [ 0.021973, -0.043945 ], [ 0.027466, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.049438 ], [ 0.027466, -0.054932 ], [ 0.021973, -0.054932 ], [ 0.021973, -0.049438 ], [ 0.027466, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.043945 ], [ 0.032959, -0.049438 ], [ 0.027466, -0.049438 ], [ 0.027466, -0.043945 ], [ 0.032959, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.049438 ], [ 0.032959, -0.054932 ], [ 0.027466, -0.054932 ], [ 0.027466, -0.049438 ], [ 0.032959, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.054932 ], [ 0.027466, -0.060425 ], [ 0.021973, -0.060425 ], [ 0.021973, -0.054932 ], [ 0.027466, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.060425 ], [ 0.027466, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.060425 ], [ 0.027466, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.054932 ], [ 0.032959, -0.060425 ], [ 0.027466, -0.060425 ], [ 0.027466, -0.054932 ], [ 0.032959, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.060425 ], [ 0.032959, -0.065918 ], [ 0.027466, -0.065918 ], [ 0.027466, -0.060425 ], [ 0.032959, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.043945 ], [ 0.038452, -0.049438 ], [ 0.032959, -0.049438 ], [ 0.032959, -0.043945 ], [ 0.038452, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.049438 ], [ 0.038452, -0.054932 ], [ 0.032959, -0.054932 ], [ 0.032959, -0.049438 ], [ 0.038452, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.049438 ], [ 0.038452, -0.049438 ], [ 0.038452, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.049438 ], [ 0.043945, -0.054932 ], [ 0.038452, -0.054932 ], [ 0.038452, -0.049438 ], [ 0.043945, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.054932 ], [ 0.038452, -0.060425 ], [ 0.032959, -0.060425 ], [ 0.032959, -0.054932 ], [ 0.038452, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.060425 ], [ 0.038452, -0.065918 ], [ 0.032959, -0.065918 ], [ 0.032959, -0.060425 ], [ 0.038452, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.054932 ], [ 0.043945, -0.060425 ], [ 0.038452, -0.060425 ], [ 0.038452, -0.054932 ], [ 0.043945, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.060425 ], [ 0.043945, -0.065918 ], [ 0.038452, -0.065918 ], [ 0.038452, -0.060425 ], [ 0.043945, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.021973 ], [ 0.049438, -0.027466 ], [ 0.043945, -0.027466 ], [ 0.043945, -0.021973 ], [ 0.049438, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.027466 ], [ 0.049438, -0.032959 ], [ 0.043945, -0.032959 ], [ 0.043945, -0.027466 ], [ 0.049438, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.021973 ], [ 0.054932, -0.027466 ], [ 0.049438, -0.027466 ], [ 0.049438, -0.021973 ], [ 0.054932, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.027466 ], [ 0.054932, -0.032959 ], [ 0.049438, -0.032959 ], [ 0.049438, -0.027466 ], [ 0.054932, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.032959 ], [ 0.049438, -0.038452 ], [ 0.043945, -0.038452 ], [ 0.043945, -0.032959 ], [ 0.049438, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.038452 ], [ 0.049438, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.038452 ], [ 0.049438, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.032959 ], [ 0.054932, -0.038452 ], [ 0.049438, -0.038452 ], [ 0.049438, -0.032959 ], [ 0.054932, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.038452 ], [ 0.054932, -0.043945 ], [ 0.049438, -0.043945 ], [ 0.049438, -0.038452 ], [ 0.054932, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.021973 ], [ 0.060425, -0.027466 ], [ 0.054932, -0.027466 ], [ 0.054932, -0.021973 ], [ 0.060425, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.027466 ], [ 0.060425, -0.032959 ], [ 0.054932, -0.032959 ], [ 0.054932, -0.027466 ], [ 0.060425, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.027466 ], [ 0.060425, -0.027466 ], [ 0.060425, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.027466 ], [ 0.065918, -0.032959 ], [ 0.060425, -0.032959 ], [ 0.060425, -0.027466 ], [ 0.065918, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.032959 ], [ 0.060425, -0.038452 ], [ 0.054932, -0.038452 ], [ 0.054932, -0.032959 ], [ 0.060425, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.038452 ], [ 0.060425, -0.043945 ], [ 0.054932, -0.043945 ], [ 0.054932, -0.038452 ], [ 0.060425, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.032959 ], [ 0.065918, -0.038452 ], [ 0.060425, -0.038452 ], [ 0.060425, -0.032959 ], [ 0.065918, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.038452 ], [ 0.065918, -0.043945 ], [ 0.060425, -0.043945 ], [ 0.060425, -0.038452 ], [ 0.065918, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.043945 ], [ 0.049438, -0.049438 ], [ 0.043945, -0.049438 ], [ 0.043945, -0.043945 ], [ 0.049438, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.049438 ], [ 0.049438, -0.054932 ], [ 0.043945, -0.054932 ], [ 0.043945, -0.049438 ], [ 0.049438, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.043945 ], [ 0.054932, -0.049438 ], [ 0.049438, -0.049438 ], [ 0.049438, -0.043945 ], [ 0.054932, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.049438 ], [ 0.054932, -0.054932 ], [ 0.049438, -0.054932 ], [ 0.049438, -0.049438 ], [ 0.054932, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.054932 ], [ 0.049438, -0.060425 ], [ 0.043945, -0.060425 ], [ 0.043945, -0.054932 ], [ 0.049438, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.060425 ], [ 0.049438, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.060425 ], [ 0.049438, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.054932 ], [ 0.054932, -0.060425 ], [ 0.049438, -0.060425 ], [ 0.049438, -0.054932 ], [ 0.054932, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.060425 ], [ 0.054932, -0.065918 ], [ 0.049438, -0.065918 ], [ 0.049438, -0.060425 ], [ 0.054932, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.043945 ], [ 0.060425, -0.049438 ], [ 0.054932, -0.049438 ], [ 0.054932, -0.043945 ], [ 0.060425, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.049438 ], [ 0.060425, -0.054932 ], [ 0.054932, -0.054932 ], [ 0.054932, -0.049438 ], [ 0.060425, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.049438 ], [ 0.060425, -0.049438 ], [ 0.060425, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.049438 ], [ 0.065918, -0.054932 ], [ 0.060425, -0.054932 ], [ 0.060425, -0.049438 ], [ 0.065918, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.054932 ], [ 0.060425, -0.060425 ], [ 0.054932, -0.060425 ], [ 0.054932, -0.054932 ], [ 0.060425, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.060425 ], [ 0.060425, -0.065918 ], [ 0.054932, -0.065918 ], [ 0.054932, -0.060425 ], [ 0.060425, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.054932 ], [ 0.065918, -0.060425 ], [ 0.060425, -0.060425 ], [ 0.060425, -0.054932 ], [ 0.065918, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.060425 ], [ 0.065918, -0.065918 ], [ 0.060425, -0.065918 ], [ 0.060425, -0.060425 ], [ 0.065918, -0.060425 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "x": 17, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.021973 ], [ 0.024719, -0.024719 ], [ 0.021973, -0.024719 ], [ 0.021973, -0.021973 ], [ 0.024719, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.024719 ], [ 0.024719, -0.027466 ], [ 0.021973, -0.027466 ], [ 0.021973, -0.024719 ], [ 0.024719, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.021973 ], [ 0.027466, -0.024719 ], [ 0.024719, -0.024719 ], [ 0.024719, -0.021973 ], [ 0.027466, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.024719 ], [ 0.027466, -0.027466 ], [ 0.024719, -0.027466 ], [ 0.024719, -0.024719 ], [ 0.027466, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.027466 ], [ 0.024719, -0.030212 ], [ 0.021973, -0.030212 ], [ 0.021973, -0.027466 ], [ 0.024719, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.030212 ], [ 0.024719, -0.032959 ], [ 0.021973, -0.032959 ], [ 0.021973, -0.030212 ], [ 0.024719, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.027466 ], [ 0.027466, -0.030212 ], [ 0.024719, -0.030212 ], [ 0.024719, -0.027466 ], [ 0.027466, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.030212 ], [ 0.027466, -0.032959 ], [ 0.024719, -0.032959 ], [ 0.024719, -0.030212 ], [ 0.027466, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.021973 ], [ 0.030212, -0.024719 ], [ 0.027466, -0.024719 ], [ 0.027466, -0.021973 ], [ 0.030212, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.024719 ], [ 0.030212, -0.027466 ], [ 0.027466, -0.027466 ], [ 0.027466, -0.024719 ], [ 0.030212, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.021973 ], [ 0.032959, -0.024719 ], [ 0.030212, -0.024719 ], [ 0.030212, -0.021973 ], [ 0.032959, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.024719 ], [ 0.032959, -0.027466 ], [ 0.030212, -0.027466 ], [ 0.030212, -0.024719 ], [ 0.032959, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.027466 ], [ 0.030212, -0.030212 ], [ 0.027466, -0.030212 ], [ 0.027466, -0.027466 ], [ 0.030212, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.030212 ], [ 0.030212, -0.032959 ], [ 0.027466, -0.032959 ], [ 0.027466, -0.030212 ], [ 0.030212, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.027466 ], [ 0.032959, -0.030212 ], [ 0.030212, -0.030212 ], [ 0.030212, -0.027466 ], [ 0.032959, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.030212 ], [ 0.032959, -0.032959 ], [ 0.030212, -0.032959 ], [ 0.030212, -0.030212 ], [ 0.032959, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.032959 ], [ 0.024719, -0.035706 ], [ 0.021973, -0.035706 ], [ 0.021973, -0.032959 ], [ 0.024719, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.035706 ], [ 0.024719, -0.038452 ], [ 0.021973, -0.038452 ], [ 0.021973, -0.035706 ], [ 0.024719, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.032959 ], [ 0.027466, -0.035706 ], [ 0.024719, -0.035706 ], [ 0.024719, -0.032959 ], [ 0.027466, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.035706 ], [ 0.027466, -0.038452 ], [ 0.024719, -0.038452 ], [ 0.024719, -0.035706 ], [ 0.027466, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.038452 ], [ 0.024719, -0.041199 ], [ 0.021973, -0.041199 ], [ 0.021973, -0.038452 ], [ 0.024719, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.041199 ], [ 0.024719, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.041199 ], [ 0.024719, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.038452 ], [ 0.027466, -0.041199 ], [ 0.024719, -0.041199 ], [ 0.024719, -0.038452 ], [ 0.027466, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.041199 ], [ 0.027466, -0.043945 ], [ 0.024719, -0.043945 ], [ 0.024719, -0.041199 ], [ 0.027466, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.032959 ], [ 0.030212, -0.035706 ], [ 0.027466, -0.035706 ], [ 0.027466, -0.032959 ], [ 0.030212, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.035706 ], [ 0.030212, -0.038452 ], [ 0.027466, -0.038452 ], [ 0.027466, -0.035706 ], [ 0.030212, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.032959 ], [ 0.032959, -0.035706 ], [ 0.030212, -0.035706 ], [ 0.030212, -0.032959 ], [ 0.032959, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.035706 ], [ 0.032959, -0.038452 ], [ 0.030212, -0.038452 ], [ 0.030212, -0.035706 ], [ 0.032959, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.038452 ], [ 0.030212, -0.041199 ], [ 0.027466, -0.041199 ], [ 0.027466, -0.038452 ], [ 0.030212, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.041199 ], [ 0.030212, -0.043945 ], [ 0.027466, -0.043945 ], [ 0.027466, -0.041199 ], [ 0.030212, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.038452 ], [ 0.032959, -0.041199 ], [ 0.030212, -0.041199 ], [ 0.030212, -0.038452 ], [ 0.032959, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.041199 ], [ 0.032959, -0.043945 ], [ 0.030212, -0.043945 ], [ 0.030212, -0.041199 ], [ 0.032959, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.021973 ], [ 0.035706, -0.024719 ], [ 0.032959, -0.024719 ], [ 0.032959, -0.021973 ], [ 0.035706, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.024719 ], [ 0.035706, -0.027466 ], [ 0.032959, -0.027466 ], [ 0.032959, -0.024719 ], [ 0.035706, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.021973 ], [ 0.038452, -0.024719 ], [ 0.035706, -0.024719 ], [ 0.035706, -0.021973 ], [ 0.038452, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.024719 ], [ 0.038452, -0.027466 ], [ 0.035706, -0.027466 ], [ 0.035706, -0.024719 ], [ 0.038452, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.027466 ], [ 0.035706, -0.030212 ], [ 0.032959, -0.030212 ], [ 0.032959, -0.027466 ], [ 0.035706, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.030212 ], [ 0.035706, -0.032959 ], [ 0.032959, -0.032959 ], [ 0.032959, -0.030212 ], [ 0.035706, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.027466 ], [ 0.038452, -0.030212 ], [ 0.035706, -0.030212 ], [ 0.035706, -0.027466 ], [ 0.038452, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.030212 ], [ 0.038452, -0.032959 ], [ 0.035706, -0.032959 ], [ 0.035706, -0.030212 ], [ 0.038452, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.021973 ], [ 0.041199, -0.024719 ], [ 0.038452, -0.024719 ], [ 0.038452, -0.021973 ], [ 0.041199, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.024719 ], [ 0.041199, -0.027466 ], [ 0.038452, -0.027466 ], [ 0.038452, -0.024719 ], [ 0.041199, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.024719 ], [ 0.041199, -0.024719 ], [ 0.041199, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.024719 ], [ 0.043945, -0.027466 ], [ 0.041199, -0.027466 ], [ 0.041199, -0.024719 ], [ 0.043945, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.027466 ], [ 0.041199, -0.030212 ], [ 0.038452, -0.030212 ], [ 0.038452, -0.027466 ], [ 0.041199, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.030212 ], [ 0.041199, -0.032959 ], [ 0.038452, -0.032959 ], [ 0.038452, -0.030212 ], [ 0.041199, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.027466 ], [ 0.043945, -0.030212 ], [ 0.041199, -0.030212 ], [ 0.041199, -0.027466 ], [ 0.043945, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.030212 ], [ 0.043945, -0.032959 ], [ 0.041199, -0.032959 ], [ 0.041199, -0.030212 ], [ 0.043945, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.032959 ], [ 0.035706, -0.035706 ], [ 0.032959, -0.035706 ], [ 0.032959, -0.032959 ], [ 0.035706, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.035706 ], [ 0.035706, -0.038452 ], [ 0.032959, -0.038452 ], [ 0.032959, -0.035706 ], [ 0.035706, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.032959 ], [ 0.038452, -0.035706 ], [ 0.035706, -0.035706 ], [ 0.035706, -0.032959 ], [ 0.038452, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.035706 ], [ 0.038452, -0.038452 ], [ 0.035706, -0.038452 ], [ 0.035706, -0.035706 ], [ 0.038452, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.038452 ], [ 0.035706, -0.041199 ], [ 0.032959, -0.041199 ], [ 0.032959, -0.038452 ], [ 0.035706, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.041199 ], [ 0.035706, -0.043945 ], [ 0.032959, -0.043945 ], [ 0.032959, -0.041199 ], [ 0.035706, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.038452 ], [ 0.038452, -0.041199 ], [ 0.035706, -0.041199 ], [ 0.035706, -0.038452 ], [ 0.038452, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.041199 ], [ 0.038452, -0.043945 ], [ 0.035706, -0.043945 ], [ 0.035706, -0.041199 ], [ 0.038452, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.032959 ], [ 0.041199, -0.035706 ], [ 0.038452, -0.035706 ], [ 0.038452, -0.032959 ], [ 0.041199, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.035706 ], [ 0.041199, -0.038452 ], [ 0.038452, -0.038452 ], [ 0.038452, -0.035706 ], [ 0.041199, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.032959 ], [ 0.043945, -0.035706 ], [ 0.041199, -0.035706 ], [ 0.041199, -0.032959 ], [ 0.043945, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.035706 ], [ 0.043945, -0.038452 ], [ 0.041199, -0.038452 ], [ 0.041199, -0.035706 ], [ 0.043945, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.038452 ], [ 0.041199, -0.041199 ], [ 0.038452, -0.041199 ], [ 0.038452, -0.038452 ], [ 0.041199, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.041199 ], [ 0.041199, -0.043945 ], [ 0.038452, -0.043945 ], [ 0.038452, -0.041199 ], [ 0.041199, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.038452 ], [ 0.043945, -0.041199 ], [ 0.041199, -0.041199 ], [ 0.041199, -0.038452 ], [ 0.043945, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.041199 ], [ 0.043945, -0.043945 ], [ 0.041199, -0.043945 ], [ 0.041199, -0.041199 ], [ 0.043945, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.043945 ], [ 0.024719, -0.046692 ], [ 0.021973, -0.046692 ], [ 0.021973, -0.043945 ], [ 0.024719, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.046692 ], [ 0.024719, -0.049438 ], [ 0.021973, -0.049438 ], [ 0.021973, -0.046692 ], [ 0.024719, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.043945 ], [ 0.027466, -0.046692 ], [ 0.024719, -0.046692 ], [ 0.024719, -0.043945 ], [ 0.027466, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.046692 ], [ 0.027466, -0.049438 ], [ 0.024719, -0.049438 ], [ 0.024719, -0.046692 ], [ 0.027466, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.049438 ], [ 0.024719, -0.052185 ], [ 0.021973, -0.052185 ], [ 0.021973, -0.049438 ], [ 0.024719, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.052185 ], [ 0.024719, -0.054932 ], [ 0.021973, -0.054932 ], [ 0.021973, -0.052185 ], [ 0.024719, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.049438 ], [ 0.027466, -0.052185 ], [ 0.024719, -0.052185 ], [ 0.024719, -0.049438 ], [ 0.027466, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.052185 ], [ 0.027466, -0.054932 ], [ 0.024719, -0.054932 ], [ 0.024719, -0.052185 ], [ 0.027466, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.043945 ], [ 0.030212, -0.046692 ], [ 0.027466, -0.046692 ], [ 0.027466, -0.043945 ], [ 0.030212, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.046692 ], [ 0.030212, -0.049438 ], [ 0.027466, -0.049438 ], [ 0.027466, -0.046692 ], [ 0.030212, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.043945 ], [ 0.032959, -0.046692 ], [ 0.030212, -0.046692 ], [ 0.030212, -0.043945 ], [ 0.032959, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.046692 ], [ 0.032959, -0.049438 ], [ 0.030212, -0.049438 ], [ 0.030212, -0.046692 ], [ 0.032959, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.049438 ], [ 0.030212, -0.052185 ], [ 0.027466, -0.052185 ], [ 0.027466, -0.049438 ], [ 0.030212, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.052185 ], [ 0.030212, -0.054932 ], [ 0.027466, -0.054932 ], [ 0.027466, -0.052185 ], [ 0.030212, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.049438 ], [ 0.032959, -0.052185 ], [ 0.030212, -0.052185 ], [ 0.030212, -0.049438 ], [ 0.032959, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.052185 ], [ 0.032959, -0.054932 ], [ 0.030212, -0.054932 ], [ 0.030212, -0.052185 ], [ 0.032959, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.054932 ], [ 0.024719, -0.057678 ], [ 0.021973, -0.057678 ], [ 0.021973, -0.054932 ], [ 0.024719, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.057678 ], [ 0.024719, -0.060425 ], [ 0.021973, -0.060425 ], [ 0.021973, -0.057678 ], [ 0.024719, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.054932 ], [ 0.027466, -0.057678 ], [ 0.024719, -0.057678 ], [ 0.024719, -0.054932 ], [ 0.027466, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.057678 ], [ 0.027466, -0.060425 ], [ 0.024719, -0.060425 ], [ 0.024719, -0.057678 ], [ 0.027466, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.060425 ], [ 0.024719, -0.063171 ], [ 0.021973, -0.063171 ], [ 0.021973, -0.060425 ], [ 0.024719, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.063171 ], [ 0.024719, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.063171 ], [ 0.024719, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.060425 ], [ 0.027466, -0.063171 ], [ 0.024719, -0.063171 ], [ 0.024719, -0.060425 ], [ 0.027466, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.063171 ], [ 0.027466, -0.065918 ], [ 0.024719, -0.065918 ], [ 0.024719, -0.063171 ], [ 0.027466, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.054932 ], [ 0.030212, -0.057678 ], [ 0.027466, -0.057678 ], [ 0.027466, -0.054932 ], [ 0.030212, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.057678 ], [ 0.030212, -0.060425 ], [ 0.027466, -0.060425 ], [ 0.027466, -0.057678 ], [ 0.030212, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.054932 ], [ 0.032959, -0.057678 ], [ 0.030212, -0.057678 ], [ 0.030212, -0.054932 ], [ 0.032959, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.057678 ], [ 0.032959, -0.060425 ], [ 0.030212, -0.060425 ], [ 0.030212, -0.057678 ], [ 0.032959, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.060425 ], [ 0.030212, -0.063171 ], [ 0.027466, -0.063171 ], [ 0.027466, -0.060425 ], [ 0.030212, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.063171 ], [ 0.030212, -0.065918 ], [ 0.027466, -0.065918 ], [ 0.027466, -0.063171 ], [ 0.030212, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.060425 ], [ 0.032959, -0.063171 ], [ 0.030212, -0.063171 ], [ 0.030212, -0.060425 ], [ 0.032959, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.063171 ], [ 0.032959, -0.065918 ], [ 0.030212, -0.065918 ], [ 0.030212, -0.063171 ], [ 0.032959, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.043945 ], [ 0.035706, -0.046692 ], [ 0.032959, -0.046692 ], [ 0.032959, -0.043945 ], [ 0.035706, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.046692 ], [ 0.035706, -0.049438 ], [ 0.032959, -0.049438 ], [ 0.032959, -0.046692 ], [ 0.035706, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.043945 ], [ 0.038452, -0.046692 ], [ 0.035706, -0.046692 ], [ 0.035706, -0.043945 ], [ 0.038452, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.046692 ], [ 0.038452, -0.049438 ], [ 0.035706, -0.049438 ], [ 0.035706, -0.046692 ], [ 0.038452, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.049438 ], [ 0.035706, -0.052185 ], [ 0.032959, -0.052185 ], [ 0.032959, -0.049438 ], [ 0.035706, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.052185 ], [ 0.035706, -0.054932 ], [ 0.032959, -0.054932 ], [ 0.032959, -0.052185 ], [ 0.035706, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.049438 ], [ 0.038452, -0.052185 ], [ 0.035706, -0.052185 ], [ 0.035706, -0.049438 ], [ 0.038452, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.052185 ], [ 0.038452, -0.054932 ], [ 0.035706, -0.054932 ], [ 0.035706, -0.052185 ], [ 0.038452, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.043945 ], [ 0.041199, -0.046692 ], [ 0.038452, -0.046692 ], [ 0.038452, -0.043945 ], [ 0.041199, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.046692 ], [ 0.041199, -0.049438 ], [ 0.038452, -0.049438 ], [ 0.038452, -0.046692 ], [ 0.041199, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.046692 ], [ 0.041199, -0.046692 ], [ 0.041199, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.046692 ], [ 0.043945, -0.049438 ], [ 0.041199, -0.049438 ], [ 0.041199, -0.046692 ], [ 0.043945, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.049438 ], [ 0.041199, -0.052185 ], [ 0.038452, -0.052185 ], [ 0.038452, -0.049438 ], [ 0.041199, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.052185 ], [ 0.041199, -0.054932 ], [ 0.038452, -0.054932 ], [ 0.038452, -0.052185 ], [ 0.041199, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.049438 ], [ 0.043945, -0.052185 ], [ 0.041199, -0.052185 ], [ 0.041199, -0.049438 ], [ 0.043945, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.052185 ], [ 0.043945, -0.054932 ], [ 0.041199, -0.054932 ], [ 0.041199, -0.052185 ], [ 0.043945, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.054932 ], [ 0.035706, -0.057678 ], [ 0.032959, -0.057678 ], [ 0.032959, -0.054932 ], [ 0.035706, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.057678 ], [ 0.035706, -0.060425 ], [ 0.032959, -0.060425 ], [ 0.032959, -0.057678 ], [ 0.035706, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.054932 ], [ 0.038452, -0.057678 ], [ 0.035706, -0.057678 ], [ 0.035706, -0.054932 ], [ 0.038452, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.057678 ], [ 0.038452, -0.060425 ], [ 0.035706, -0.060425 ], [ 0.035706, -0.057678 ], [ 0.038452, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.060425 ], [ 0.035706, -0.063171 ], [ 0.032959, -0.063171 ], [ 0.032959, -0.060425 ], [ 0.035706, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.063171 ], [ 0.035706, -0.065918 ], [ 0.032959, -0.065918 ], [ 0.032959, -0.063171 ], [ 0.035706, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.060425 ], [ 0.038452, -0.063171 ], [ 0.035706, -0.063171 ], [ 0.035706, -0.060425 ], [ 0.038452, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.063171 ], [ 0.038452, -0.065918 ], [ 0.035706, -0.065918 ], [ 0.035706, -0.063171 ], [ 0.038452, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.054932 ], [ 0.041199, -0.057678 ], [ 0.038452, -0.057678 ], [ 0.038452, -0.054932 ], [ 0.041199, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.057678 ], [ 0.041199, -0.060425 ], [ 0.038452, -0.060425 ], [ 0.038452, -0.057678 ], [ 0.041199, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.054932 ], [ 0.043945, -0.057678 ], [ 0.041199, -0.057678 ], [ 0.041199, -0.054932 ], [ 0.043945, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.057678 ], [ 0.043945, -0.060425 ], [ 0.041199, -0.060425 ], [ 0.041199, -0.057678 ], [ 0.043945, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.060425 ], [ 0.041199, -0.063171 ], [ 0.038452, -0.063171 ], [ 0.038452, -0.060425 ], [ 0.041199, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.063171 ], [ 0.041199, -0.065918 ], [ 0.038452, -0.065918 ], [ 0.038452, -0.063171 ], [ 0.041199, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.060425 ], [ 0.043945, -0.063171 ], [ 0.041199, -0.063171 ], [ 0.041199, -0.060425 ], [ 0.043945, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.063171 ], [ 0.043945, -0.065918 ], [ 0.041199, -0.065918 ], [ 0.041199, -0.063171 ], [ 0.043945, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.021973 ], [ 0.046692, -0.024719 ], [ 0.043945, -0.024719 ], [ 0.043945, -0.021973 ], [ 0.046692, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.024719 ], [ 0.046692, -0.027466 ], [ 0.043945, -0.027466 ], [ 0.043945, -0.024719 ], [ 0.046692, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.021973 ], [ 0.049438, -0.024719 ], [ 0.046692, -0.024719 ], [ 0.046692, -0.021973 ], [ 0.049438, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.024719 ], [ 0.049438, -0.027466 ], [ 0.046692, -0.027466 ], [ 0.046692, -0.024719 ], [ 0.049438, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.027466 ], [ 0.046692, -0.030212 ], [ 0.043945, -0.030212 ], [ 0.043945, -0.027466 ], [ 0.046692, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.030212 ], [ 0.046692, -0.032959 ], [ 0.043945, -0.032959 ], [ 0.043945, -0.030212 ], [ 0.046692, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.027466 ], [ 0.049438, -0.030212 ], [ 0.046692, -0.030212 ], [ 0.046692, -0.027466 ], [ 0.049438, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.030212 ], [ 0.049438, -0.032959 ], [ 0.046692, -0.032959 ], [ 0.046692, -0.030212 ], [ 0.049438, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.021973 ], [ 0.052185, -0.024719 ], [ 0.049438, -0.024719 ], [ 0.049438, -0.021973 ], [ 0.052185, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.024719 ], [ 0.052185, -0.027466 ], [ 0.049438, -0.027466 ], [ 0.049438, -0.024719 ], [ 0.052185, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.021973 ], [ 0.054932, -0.024719 ], [ 0.052185, -0.024719 ], [ 0.052185, -0.021973 ], [ 0.054932, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.024719 ], [ 0.054932, -0.027466 ], [ 0.052185, -0.027466 ], [ 0.052185, -0.024719 ], [ 0.054932, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.027466 ], [ 0.052185, -0.030212 ], [ 0.049438, -0.030212 ], [ 0.049438, -0.027466 ], [ 0.052185, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.030212 ], [ 0.052185, -0.032959 ], [ 0.049438, -0.032959 ], [ 0.049438, -0.030212 ], [ 0.052185, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.027466 ], [ 0.054932, -0.030212 ], [ 0.052185, -0.030212 ], [ 0.052185, -0.027466 ], [ 0.054932, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.030212 ], [ 0.054932, -0.032959 ], [ 0.052185, -0.032959 ], [ 0.052185, -0.030212 ], [ 0.054932, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.032959 ], [ 0.046692, -0.035706 ], [ 0.043945, -0.035706 ], [ 0.043945, -0.032959 ], [ 0.046692, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.035706 ], [ 0.046692, -0.038452 ], [ 0.043945, -0.038452 ], [ 0.043945, -0.035706 ], [ 0.046692, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.032959 ], [ 0.049438, -0.035706 ], [ 0.046692, -0.035706 ], [ 0.046692, -0.032959 ], [ 0.049438, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.035706 ], [ 0.049438, -0.038452 ], [ 0.046692, -0.038452 ], [ 0.046692, -0.035706 ], [ 0.049438, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.038452 ], [ 0.046692, -0.041199 ], [ 0.043945, -0.041199 ], [ 0.043945, -0.038452 ], [ 0.046692, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.041199 ], [ 0.046692, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.041199 ], [ 0.046692, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.038452 ], [ 0.049438, -0.041199 ], [ 0.046692, -0.041199 ], [ 0.046692, -0.038452 ], [ 0.049438, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.041199 ], [ 0.049438, -0.043945 ], [ 0.046692, -0.043945 ], [ 0.046692, -0.041199 ], [ 0.049438, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.032959 ], [ 0.052185, -0.035706 ], [ 0.049438, -0.035706 ], [ 0.049438, -0.032959 ], [ 0.052185, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.035706 ], [ 0.052185, -0.038452 ], [ 0.049438, -0.038452 ], [ 0.049438, -0.035706 ], [ 0.052185, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.032959 ], [ 0.054932, -0.035706 ], [ 0.052185, -0.035706 ], [ 0.052185, -0.032959 ], [ 0.054932, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.035706 ], [ 0.054932, -0.038452 ], [ 0.052185, -0.038452 ], [ 0.052185, -0.035706 ], [ 0.054932, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.038452 ], [ 0.052185, -0.041199 ], [ 0.049438, -0.041199 ], [ 0.049438, -0.038452 ], [ 0.052185, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.041199 ], [ 0.052185, -0.043945 ], [ 0.049438, -0.043945 ], [ 0.049438, -0.041199 ], [ 0.052185, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.038452 ], [ 0.054932, -0.041199 ], [ 0.052185, -0.041199 ], [ 0.052185, -0.038452 ], [ 0.054932, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.041199 ], [ 0.054932, -0.043945 ], [ 0.052185, -0.043945 ], [ 0.052185, -0.041199 ], [ 0.054932, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.021973 ], [ 0.057678, -0.024719 ], [ 0.054932, -0.024719 ], [ 0.054932, -0.021973 ], [ 0.057678, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.024719 ], [ 0.057678, -0.027466 ], [ 0.054932, -0.027466 ], [ 0.054932, -0.024719 ], [ 0.057678, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.021973 ], [ 0.060425, -0.024719 ], [ 0.057678, -0.024719 ], [ 0.057678, -0.021973 ], [ 0.060425, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.024719 ], [ 0.060425, -0.027466 ], [ 0.057678, -0.027466 ], [ 0.057678, -0.024719 ], [ 0.060425, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.027466 ], [ 0.057678, -0.030212 ], [ 0.054932, -0.030212 ], [ 0.054932, -0.027466 ], [ 0.057678, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.030212 ], [ 0.057678, -0.032959 ], [ 0.054932, -0.032959 ], [ 0.054932, -0.030212 ], [ 0.057678, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.027466 ], [ 0.060425, -0.030212 ], [ 0.057678, -0.030212 ], [ 0.057678, -0.027466 ], [ 0.060425, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.030212 ], [ 0.060425, -0.032959 ], [ 0.057678, -0.032959 ], [ 0.057678, -0.030212 ], [ 0.060425, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.021973 ], [ 0.063171, -0.024719 ], [ 0.060425, -0.024719 ], [ 0.060425, -0.021973 ], [ 0.063171, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.024719 ], [ 0.063171, -0.027466 ], [ 0.060425, -0.027466 ], [ 0.060425, -0.024719 ], [ 0.063171, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.024719 ], [ 0.063171, -0.024719 ], [ 0.063171, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.024719 ], [ 0.065918, -0.027466 ], [ 0.063171, -0.027466 ], [ 0.063171, -0.024719 ], [ 0.065918, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.027466 ], [ 0.063171, -0.030212 ], [ 0.060425, -0.030212 ], [ 0.060425, -0.027466 ], [ 0.063171, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.030212 ], [ 0.063171, -0.032959 ], [ 0.060425, -0.032959 ], [ 0.060425, -0.030212 ], [ 0.063171, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.027466 ], [ 0.065918, -0.030212 ], [ 0.063171, -0.030212 ], [ 0.063171, -0.027466 ], [ 0.065918, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.030212 ], [ 0.065918, -0.032959 ], [ 0.063171, -0.032959 ], [ 0.063171, -0.030212 ], [ 0.065918, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.032959 ], [ 0.057678, -0.035706 ], [ 0.054932, -0.035706 ], [ 0.054932, -0.032959 ], [ 0.057678, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.035706 ], [ 0.057678, -0.038452 ], [ 0.054932, -0.038452 ], [ 0.054932, -0.035706 ], [ 0.057678, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.032959 ], [ 0.060425, -0.035706 ], [ 0.057678, -0.035706 ], [ 0.057678, -0.032959 ], [ 0.060425, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.035706 ], [ 0.060425, -0.038452 ], [ 0.057678, -0.038452 ], [ 0.057678, -0.035706 ], [ 0.060425, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.038452 ], [ 0.057678, -0.041199 ], [ 0.054932, -0.041199 ], [ 0.054932, -0.038452 ], [ 0.057678, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.041199 ], [ 0.057678, -0.043945 ], [ 0.054932, -0.043945 ], [ 0.054932, -0.041199 ], [ 0.057678, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.038452 ], [ 0.060425, -0.041199 ], [ 0.057678, -0.041199 ], [ 0.057678, -0.038452 ], [ 0.060425, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.041199 ], [ 0.060425, -0.043945 ], [ 0.057678, -0.043945 ], [ 0.057678, -0.041199 ], [ 0.060425, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.032959 ], [ 0.063171, -0.035706 ], [ 0.060425, -0.035706 ], [ 0.060425, -0.032959 ], [ 0.063171, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.035706 ], [ 0.063171, -0.038452 ], [ 0.060425, -0.038452 ], [ 0.060425, -0.035706 ], [ 0.063171, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.032959 ], [ 0.065918, -0.035706 ], [ 0.063171, -0.035706 ], [ 0.063171, -0.032959 ], [ 0.065918, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.035706 ], [ 0.065918, -0.038452 ], [ 0.063171, -0.038452 ], [ 0.063171, -0.035706 ], [ 0.065918, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.038452 ], [ 0.063171, -0.041199 ], [ 0.060425, -0.041199 ], [ 0.060425, -0.038452 ], [ 0.063171, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.041199 ], [ 0.063171, -0.043945 ], [ 0.060425, -0.043945 ], [ 0.060425, -0.041199 ], [ 0.063171, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.038452 ], [ 0.065918, -0.041199 ], [ 0.063171, -0.041199 ], [ 0.063171, -0.038452 ], [ 0.065918, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.041199 ], [ 0.065918, -0.043945 ], [ 0.063171, -0.043945 ], [ 0.063171, -0.041199 ], [ 0.065918, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.043945 ], [ 0.046692, -0.046692 ], [ 0.043945, -0.046692 ], [ 0.043945, -0.043945 ], [ 0.046692, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.046692 ], [ 0.046692, -0.049438 ], [ 0.043945, -0.049438 ], [ 0.043945, -0.046692 ], [ 0.046692, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.043945 ], [ 0.049438, -0.046692 ], [ 0.046692, -0.046692 ], [ 0.046692, -0.043945 ], [ 0.049438, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.046692 ], [ 0.049438, -0.049438 ], [ 0.046692, -0.049438 ], [ 0.046692, -0.046692 ], [ 0.049438, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.049438 ], [ 0.046692, -0.052185 ], [ 0.043945, -0.052185 ], [ 0.043945, -0.049438 ], [ 0.046692, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.052185 ], [ 0.046692, -0.054932 ], [ 0.043945, -0.054932 ], [ 0.043945, -0.052185 ], [ 0.046692, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.049438 ], [ 0.049438, -0.052185 ], [ 0.046692, -0.052185 ], [ 0.046692, -0.049438 ], [ 0.049438, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.052185 ], [ 0.049438, -0.054932 ], [ 0.046692, -0.054932 ], [ 0.046692, -0.052185 ], [ 0.049438, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.043945 ], [ 0.052185, -0.046692 ], [ 0.049438, -0.046692 ], [ 0.049438, -0.043945 ], [ 0.052185, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.046692 ], [ 0.052185, -0.049438 ], [ 0.049438, -0.049438 ], [ 0.049438, -0.046692 ], [ 0.052185, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.043945 ], [ 0.054932, -0.046692 ], [ 0.052185, -0.046692 ], [ 0.052185, -0.043945 ], [ 0.054932, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.046692 ], [ 0.054932, -0.049438 ], [ 0.052185, -0.049438 ], [ 0.052185, -0.046692 ], [ 0.054932, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.049438 ], [ 0.052185, -0.052185 ], [ 0.049438, -0.052185 ], [ 0.049438, -0.049438 ], [ 0.052185, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.052185 ], [ 0.052185, -0.054932 ], [ 0.049438, -0.054932 ], [ 0.049438, -0.052185 ], [ 0.052185, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.049438 ], [ 0.054932, -0.052185 ], [ 0.052185, -0.052185 ], [ 0.052185, -0.049438 ], [ 0.054932, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.052185 ], [ 0.054932, -0.054932 ], [ 0.052185, -0.054932 ], [ 0.052185, -0.052185 ], [ 0.054932, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.054932 ], [ 0.046692, -0.057678 ], [ 0.043945, -0.057678 ], [ 0.043945, -0.054932 ], [ 0.046692, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.057678 ], [ 0.046692, -0.060425 ], [ 0.043945, -0.060425 ], [ 0.043945, -0.057678 ], [ 0.046692, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.054932 ], [ 0.049438, -0.057678 ], [ 0.046692, -0.057678 ], [ 0.046692, -0.054932 ], [ 0.049438, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.057678 ], [ 0.049438, -0.060425 ], [ 0.046692, -0.060425 ], [ 0.046692, -0.057678 ], [ 0.049438, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.060425 ], [ 0.046692, -0.063171 ], [ 0.043945, -0.063171 ], [ 0.043945, -0.060425 ], [ 0.046692, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.063171 ], [ 0.046692, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.063171 ], [ 0.046692, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.060425 ], [ 0.049438, -0.063171 ], [ 0.046692, -0.063171 ], [ 0.046692, -0.060425 ], [ 0.049438, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.063171 ], [ 0.049438, -0.065918 ], [ 0.046692, -0.065918 ], [ 0.046692, -0.063171 ], [ 0.049438, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.054932 ], [ 0.052185, -0.057678 ], [ 0.049438, -0.057678 ], [ 0.049438, -0.054932 ], [ 0.052185, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.057678 ], [ 0.052185, -0.060425 ], [ 0.049438, -0.060425 ], [ 0.049438, -0.057678 ], [ 0.052185, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.054932 ], [ 0.054932, -0.057678 ], [ 0.052185, -0.057678 ], [ 0.052185, -0.054932 ], [ 0.054932, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.057678 ], [ 0.054932, -0.060425 ], [ 0.052185, -0.060425 ], [ 0.052185, -0.057678 ], [ 0.054932, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.060425 ], [ 0.052185, -0.063171 ], [ 0.049438, -0.063171 ], [ 0.049438, -0.060425 ], [ 0.052185, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.063171 ], [ 0.052185, -0.065918 ], [ 0.049438, -0.065918 ], [ 0.049438, -0.063171 ], [ 0.052185, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.060425 ], [ 0.054932, -0.063171 ], [ 0.052185, -0.063171 ], [ 0.052185, -0.060425 ], [ 0.054932, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.063171 ], [ 0.054932, -0.065918 ], [ 0.052185, -0.065918 ], [ 0.052185, -0.063171 ], [ 0.054932, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.043945 ], [ 0.057678, -0.046692 ], [ 0.054932, -0.046692 ], [ 0.054932, -0.043945 ], [ 0.057678, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.046692 ], [ 0.057678, -0.049438 ], [ 0.054932, -0.049438 ], [ 0.054932, -0.046692 ], [ 0.057678, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.043945 ], [ 0.060425, -0.046692 ], [ 0.057678, -0.046692 ], [ 0.057678, -0.043945 ], [ 0.060425, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.046692 ], [ 0.060425, -0.049438 ], [ 0.057678, -0.049438 ], [ 0.057678, -0.046692 ], [ 0.060425, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.049438 ], [ 0.057678, -0.052185 ], [ 0.054932, -0.052185 ], [ 0.054932, -0.049438 ], [ 0.057678, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.052185 ], [ 0.057678, -0.054932 ], [ 0.054932, -0.054932 ], [ 0.054932, -0.052185 ], [ 0.057678, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.049438 ], [ 0.060425, -0.052185 ], [ 0.057678, -0.052185 ], [ 0.057678, -0.049438 ], [ 0.060425, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.052185 ], [ 0.060425, -0.054932 ], [ 0.057678, -0.054932 ], [ 0.057678, -0.052185 ], [ 0.060425, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.043945 ], [ 0.063171, -0.046692 ], [ 0.060425, -0.046692 ], [ 0.060425, -0.043945 ], [ 0.063171, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.046692 ], [ 0.063171, -0.049438 ], [ 0.060425, -0.049438 ], [ 0.060425, -0.046692 ], [ 0.063171, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.046692 ], [ 0.063171, -0.046692 ], [ 0.063171, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.046692 ], [ 0.065918, -0.049438 ], [ 0.063171, -0.049438 ], [ 0.063171, -0.046692 ], [ 0.065918, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.049438 ], [ 0.063171, -0.052185 ], [ 0.060425, -0.052185 ], [ 0.060425, -0.049438 ], [ 0.063171, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.052185 ], [ 0.063171, -0.054932 ], [ 0.060425, -0.054932 ], [ 0.060425, -0.052185 ], [ 0.063171, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.049438 ], [ 0.065918, -0.052185 ], [ 0.063171, -0.052185 ], [ 0.063171, -0.049438 ], [ 0.065918, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.052185 ], [ 0.065918, -0.054932 ], [ 0.063171, -0.054932 ], [ 0.063171, -0.052185 ], [ 0.065918, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.054932 ], [ 0.057678, -0.057678 ], [ 0.054932, -0.057678 ], [ 0.054932, -0.054932 ], [ 0.057678, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.057678 ], [ 0.057678, -0.060425 ], [ 0.054932, -0.060425 ], [ 0.054932, -0.057678 ], [ 0.057678, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.054932 ], [ 0.060425, -0.057678 ], [ 0.057678, -0.057678 ], [ 0.057678, -0.054932 ], [ 0.060425, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.057678 ], [ 0.060425, -0.060425 ], [ 0.057678, -0.060425 ], [ 0.057678, -0.057678 ], [ 0.060425, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.060425 ], [ 0.057678, -0.063171 ], [ 0.054932, -0.063171 ], [ 0.054932, -0.060425 ], [ 0.057678, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.063171 ], [ 0.057678, -0.065918 ], [ 0.054932, -0.065918 ], [ 0.054932, -0.063171 ], [ 0.057678, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.060425 ], [ 0.060425, -0.063171 ], [ 0.057678, -0.063171 ], [ 0.057678, -0.060425 ], [ 0.060425, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.063171 ], [ 0.060425, -0.065918 ], [ 0.057678, -0.065918 ], [ 0.057678, -0.063171 ], [ 0.060425, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.054932 ], [ 0.063171, -0.057678 ], [ 0.060425, -0.057678 ], [ 0.060425, -0.054932 ], [ 0.063171, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.057678 ], [ 0.063171, -0.060425 ], [ 0.060425, -0.060425 ], [ 0.060425, -0.057678 ], [ 0.063171, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.054932 ], [ 0.065918, -0.057678 ], [ 0.063171, -0.057678 ], [ 0.063171, -0.054932 ], [ 0.065918, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.057678 ], [ 0.065918, -0.060425 ], [ 0.063171, -0.060425 ], [ 0.063171, -0.057678 ], [ 0.065918, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.060425 ], [ 0.063171, -0.063171 ], [ 0.060425, -0.063171 ], [ 0.060425, -0.060425 ], [ 0.063171, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.063171 ], [ 0.063171, -0.065918 ], [ 0.060425, -0.065918 ], [ 0.060425, -0.063171 ], [ 0.063171, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.060425 ], [ 0.065918, -0.063171 ], [ 0.063171, -0.063171 ], [ 0.063171, -0.060425 ], [ 0.065918, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.063171 ], [ 0.065918, -0.065918 ], [ 0.063171, -0.065918 ], [ 0.063171, -0.063171 ], [ 0.065918, -0.063171 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 1024 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "x": 16, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.021973 ], [ 0.023346, -0.023346 ], [ 0.021973, -0.023346 ], [ 0.021973, -0.021973 ], [ 0.023346, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.023346 ], [ 0.023346, -0.024719 ], [ 0.021973, -0.024719 ], [ 0.021973, -0.023346 ], [ 0.023346, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.021973 ], [ 0.024719, -0.023346 ], [ 0.023346, -0.023346 ], [ 0.023346, -0.021973 ], [ 0.024719, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.023346 ], [ 0.024719, -0.024719 ], [ 0.023346, -0.024719 ], [ 0.023346, -0.023346 ], [ 0.024719, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.024719 ], [ 0.023346, -0.026093 ], [ 0.021973, -0.026093 ], [ 0.021973, -0.024719 ], [ 0.023346, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.026093 ], [ 0.023346, -0.027466 ], [ 0.021973, -0.027466 ], [ 0.021973, -0.026093 ], [ 0.023346, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.024719 ], [ 0.024719, -0.026093 ], [ 0.023346, -0.026093 ], [ 0.023346, -0.024719 ], [ 0.024719, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.026093 ], [ 0.024719, -0.027466 ], [ 0.023346, -0.027466 ], [ 0.023346, -0.026093 ], [ 0.024719, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.021973 ], [ 0.026093, -0.023346 ], [ 0.024719, -0.023346 ], [ 0.024719, -0.021973 ], [ 0.026093, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.023346 ], [ 0.026093, -0.024719 ], [ 0.024719, -0.024719 ], [ 0.024719, -0.023346 ], [ 0.026093, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.021973 ], [ 0.027466, -0.023346 ], [ 0.026093, -0.023346 ], [ 0.026093, -0.021973 ], [ 0.027466, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.023346 ], [ 0.027466, -0.024719 ], [ 0.026093, -0.024719 ], [ 0.026093, -0.023346 ], [ 0.027466, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.024719 ], [ 0.026093, -0.026093 ], [ 0.024719, -0.026093 ], [ 0.024719, -0.024719 ], [ 0.026093, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.026093 ], [ 0.026093, -0.027466 ], [ 0.024719, -0.027466 ], [ 0.024719, -0.026093 ], [ 0.026093, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.024719 ], [ 0.027466, -0.026093 ], [ 0.026093, -0.026093 ], [ 0.026093, -0.024719 ], [ 0.027466, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.026093 ], [ 0.027466, -0.027466 ], [ 0.026093, -0.027466 ], [ 0.026093, -0.026093 ], [ 0.027466, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.027466 ], [ 0.023346, -0.028839 ], [ 0.021973, -0.028839 ], [ 0.021973, -0.027466 ], [ 0.023346, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.028839 ], [ 0.023346, -0.030212 ], [ 0.021973, -0.030212 ], [ 0.021973, -0.028839 ], [ 0.023346, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.027466 ], [ 0.024719, -0.028839 ], [ 0.023346, -0.028839 ], [ 0.023346, -0.027466 ], [ 0.024719, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.028839 ], [ 0.024719, -0.030212 ], [ 0.023346, -0.030212 ], [ 0.023346, -0.028839 ], [ 0.024719, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.030212 ], [ 0.023346, -0.031586 ], [ 0.021973, -0.031586 ], [ 0.021973, -0.030212 ], [ 0.023346, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.031586 ], [ 0.023346, -0.032959 ], [ 0.021973, -0.032959 ], [ 0.021973, -0.031586 ], [ 0.023346, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.030212 ], [ 0.024719, -0.031586 ], [ 0.023346, -0.031586 ], [ 0.023346, -0.030212 ], [ 0.024719, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.031586 ], [ 0.024719, -0.032959 ], [ 0.023346, -0.032959 ], [ 0.023346, -0.031586 ], [ 0.024719, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.027466 ], [ 0.026093, -0.028839 ], [ 0.024719, -0.028839 ], [ 0.024719, -0.027466 ], [ 0.026093, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.028839 ], [ 0.026093, -0.030212 ], [ 0.024719, -0.030212 ], [ 0.024719, -0.028839 ], [ 0.026093, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.027466 ], [ 0.027466, -0.028839 ], [ 0.026093, -0.028839 ], [ 0.026093, -0.027466 ], [ 0.027466, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.028839 ], [ 0.027466, -0.030212 ], [ 0.026093, -0.030212 ], [ 0.026093, -0.028839 ], [ 0.027466, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.030212 ], [ 0.026093, -0.031586 ], [ 0.024719, -0.031586 ], [ 0.024719, -0.030212 ], [ 0.026093, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.031586 ], [ 0.026093, -0.032959 ], [ 0.024719, -0.032959 ], [ 0.024719, -0.031586 ], [ 0.026093, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.030212 ], [ 0.027466, -0.031586 ], [ 0.026093, -0.031586 ], [ 0.026093, -0.030212 ], [ 0.027466, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.031586 ], [ 0.027466, -0.032959 ], [ 0.026093, -0.032959 ], [ 0.026093, -0.031586 ], [ 0.027466, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.021973 ], [ 0.028839, -0.023346 ], [ 0.027466, -0.023346 ], [ 0.027466, -0.021973 ], [ 0.028839, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.023346 ], [ 0.028839, -0.024719 ], [ 0.027466, -0.024719 ], [ 0.027466, -0.023346 ], [ 0.028839, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.021973 ], [ 0.030212, -0.023346 ], [ 0.028839, -0.023346 ], [ 0.028839, -0.021973 ], [ 0.030212, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.023346 ], [ 0.030212, -0.024719 ], [ 0.028839, -0.024719 ], [ 0.028839, -0.023346 ], [ 0.030212, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.024719 ], [ 0.028839, -0.026093 ], [ 0.027466, -0.026093 ], [ 0.027466, -0.024719 ], [ 0.028839, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.026093 ], [ 0.028839, -0.027466 ], [ 0.027466, -0.027466 ], [ 0.027466, -0.026093 ], [ 0.028839, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.024719 ], [ 0.030212, -0.026093 ], [ 0.028839, -0.026093 ], [ 0.028839, -0.024719 ], [ 0.030212, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.026093 ], [ 0.030212, -0.027466 ], [ 0.028839, -0.027466 ], [ 0.028839, -0.026093 ], [ 0.030212, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.021973 ], [ 0.031586, -0.023346 ], [ 0.030212, -0.023346 ], [ 0.030212, -0.021973 ], [ 0.031586, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.023346 ], [ 0.031586, -0.024719 ], [ 0.030212, -0.024719 ], [ 0.030212, -0.023346 ], [ 0.031586, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.021973 ], [ 0.032959, -0.023346 ], [ 0.031586, -0.023346 ], [ 0.031586, -0.021973 ], [ 0.032959, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.023346 ], [ 0.032959, -0.024719 ], [ 0.031586, -0.024719 ], [ 0.031586, -0.023346 ], [ 0.032959, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.024719 ], [ 0.031586, -0.026093 ], [ 0.030212, -0.026093 ], [ 0.030212, -0.024719 ], [ 0.031586, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.026093 ], [ 0.031586, -0.027466 ], [ 0.030212, -0.027466 ], [ 0.030212, -0.026093 ], [ 0.031586, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.024719 ], [ 0.032959, -0.026093 ], [ 0.031586, -0.026093 ], [ 0.031586, -0.024719 ], [ 0.032959, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.026093 ], [ 0.032959, -0.027466 ], [ 0.031586, -0.027466 ], [ 0.031586, -0.026093 ], [ 0.032959, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.027466 ], [ 0.028839, -0.028839 ], [ 0.027466, -0.028839 ], [ 0.027466, -0.027466 ], [ 0.028839, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.028839 ], [ 0.028839, -0.030212 ], [ 0.027466, -0.030212 ], [ 0.027466, -0.028839 ], [ 0.028839, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.027466 ], [ 0.030212, -0.028839 ], [ 0.028839, -0.028839 ], [ 0.028839, -0.027466 ], [ 0.030212, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.028839 ], [ 0.030212, -0.030212 ], [ 0.028839, -0.030212 ], [ 0.028839, -0.028839 ], [ 0.030212, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.030212 ], [ 0.028839, -0.031586 ], [ 0.027466, -0.031586 ], [ 0.027466, -0.030212 ], [ 0.028839, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.031586 ], [ 0.028839, -0.032959 ], [ 0.027466, -0.032959 ], [ 0.027466, -0.031586 ], [ 0.028839, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.030212 ], [ 0.030212, -0.031586 ], [ 0.028839, -0.031586 ], [ 0.028839, -0.030212 ], [ 0.030212, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.031586 ], [ 0.030212, -0.032959 ], [ 0.028839, -0.032959 ], [ 0.028839, -0.031586 ], [ 0.030212, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.027466 ], [ 0.031586, -0.028839 ], [ 0.030212, -0.028839 ], [ 0.030212, -0.027466 ], [ 0.031586, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.028839 ], [ 0.031586, -0.030212 ], [ 0.030212, -0.030212 ], [ 0.030212, -0.028839 ], [ 0.031586, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.027466 ], [ 0.032959, -0.028839 ], [ 0.031586, -0.028839 ], [ 0.031586, -0.027466 ], [ 0.032959, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.028839 ], [ 0.032959, -0.030212 ], [ 0.031586, -0.030212 ], [ 0.031586, -0.028839 ], [ 0.032959, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.030212 ], [ 0.031586, -0.031586 ], [ 0.030212, -0.031586 ], [ 0.030212, -0.030212 ], [ 0.031586, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.031586 ], [ 0.031586, -0.032959 ], [ 0.030212, -0.032959 ], [ 0.030212, -0.031586 ], [ 0.031586, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.030212 ], [ 0.032959, -0.031586 ], [ 0.031586, -0.031586 ], [ 0.031586, -0.030212 ], [ 0.032959, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.031586 ], [ 0.032959, -0.032959 ], [ 0.031586, -0.032959 ], [ 0.031586, -0.031586 ], [ 0.032959, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.032959 ], [ 0.023346, -0.034332 ], [ 0.021973, -0.034332 ], [ 0.021973, -0.032959 ], [ 0.023346, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.034332 ], [ 0.023346, -0.035706 ], [ 0.021973, -0.035706 ], [ 0.021973, -0.034332 ], [ 0.023346, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.032959 ], [ 0.024719, -0.034332 ], [ 0.023346, -0.034332 ], [ 0.023346, -0.032959 ], [ 0.024719, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.034332 ], [ 0.024719, -0.035706 ], [ 0.023346, -0.035706 ], [ 0.023346, -0.034332 ], [ 0.024719, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.035706 ], [ 0.023346, -0.037079 ], [ 0.021973, -0.037079 ], [ 0.021973, -0.035706 ], [ 0.023346, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.037079 ], [ 0.023346, -0.038452 ], [ 0.021973, -0.038452 ], [ 0.021973, -0.037079 ], [ 0.023346, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.035706 ], [ 0.024719, -0.037079 ], [ 0.023346, -0.037079 ], [ 0.023346, -0.035706 ], [ 0.024719, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.037079 ], [ 0.024719, -0.038452 ], [ 0.023346, -0.038452 ], [ 0.023346, -0.037079 ], [ 0.024719, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.032959 ], [ 0.026093, -0.034332 ], [ 0.024719, -0.034332 ], [ 0.024719, -0.032959 ], [ 0.026093, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.034332 ], [ 0.026093, -0.035706 ], [ 0.024719, -0.035706 ], [ 0.024719, -0.034332 ], [ 0.026093, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.032959 ], [ 0.027466, -0.034332 ], [ 0.026093, -0.034332 ], [ 0.026093, -0.032959 ], [ 0.027466, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.034332 ], [ 0.027466, -0.035706 ], [ 0.026093, -0.035706 ], [ 0.026093, -0.034332 ], [ 0.027466, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.035706 ], [ 0.026093, -0.037079 ], [ 0.024719, -0.037079 ], [ 0.024719, -0.035706 ], [ 0.026093, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.037079 ], [ 0.026093, -0.038452 ], [ 0.024719, -0.038452 ], [ 0.024719, -0.037079 ], [ 0.026093, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.035706 ], [ 0.027466, -0.037079 ], [ 0.026093, -0.037079 ], [ 0.026093, -0.035706 ], [ 0.027466, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.037079 ], [ 0.027466, -0.038452 ], [ 0.026093, -0.038452 ], [ 0.026093, -0.037079 ], [ 0.027466, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.038452 ], [ 0.023346, -0.039825 ], [ 0.021973, -0.039825 ], [ 0.021973, -0.038452 ], [ 0.023346, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.039825 ], [ 0.023346, -0.041199 ], [ 0.021973, -0.041199 ], [ 0.021973, -0.039825 ], [ 0.023346, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.038452 ], [ 0.024719, -0.039825 ], [ 0.023346, -0.039825 ], [ 0.023346, -0.038452 ], [ 0.024719, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.039825 ], [ 0.024719, -0.041199 ], [ 0.023346, -0.041199 ], [ 0.023346, -0.039825 ], [ 0.024719, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.041199 ], [ 0.023346, -0.042572 ], [ 0.021973, -0.042572 ], [ 0.021973, -0.041199 ], [ 0.023346, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.042572 ], [ 0.023346, -0.043945 ], [ 0.021973, -0.043945 ], [ 0.021973, -0.042572 ], [ 0.023346, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.041199 ], [ 0.024719, -0.042572 ], [ 0.023346, -0.042572 ], [ 0.023346, -0.041199 ], [ 0.024719, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.042572 ], [ 0.024719, -0.043945 ], [ 0.023346, -0.043945 ], [ 0.023346, -0.042572 ], [ 0.024719, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.038452 ], [ 0.026093, -0.039825 ], [ 0.024719, -0.039825 ], [ 0.024719, -0.038452 ], [ 0.026093, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.039825 ], [ 0.026093, -0.041199 ], [ 0.024719, -0.041199 ], [ 0.024719, -0.039825 ], [ 0.026093, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.038452 ], [ 0.027466, -0.039825 ], [ 0.026093, -0.039825 ], [ 0.026093, -0.038452 ], [ 0.027466, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.039825 ], [ 0.027466, -0.041199 ], [ 0.026093, -0.041199 ], [ 0.026093, -0.039825 ], [ 0.027466, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.041199 ], [ 0.026093, -0.042572 ], [ 0.024719, -0.042572 ], [ 0.024719, -0.041199 ], [ 0.026093, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.042572 ], [ 0.026093, -0.043945 ], [ 0.024719, -0.043945 ], [ 0.024719, -0.042572 ], [ 0.026093, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.041199 ], [ 0.027466, -0.042572 ], [ 0.026093, -0.042572 ], [ 0.026093, -0.041199 ], [ 0.027466, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.042572 ], [ 0.027466, -0.043945 ], [ 0.026093, -0.043945 ], [ 0.026093, -0.042572 ], [ 0.027466, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.032959 ], [ 0.028839, -0.034332 ], [ 0.027466, -0.034332 ], [ 0.027466, -0.032959 ], [ 0.028839, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.034332 ], [ 0.028839, -0.035706 ], [ 0.027466, -0.035706 ], [ 0.027466, -0.034332 ], [ 0.028839, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.032959 ], [ 0.030212, -0.034332 ], [ 0.028839, -0.034332 ], [ 0.028839, -0.032959 ], [ 0.030212, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.034332 ], [ 0.030212, -0.035706 ], [ 0.028839, -0.035706 ], [ 0.028839, -0.034332 ], [ 0.030212, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.035706 ], [ 0.028839, -0.037079 ], [ 0.027466, -0.037079 ], [ 0.027466, -0.035706 ], [ 0.028839, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.037079 ], [ 0.028839, -0.038452 ], [ 0.027466, -0.038452 ], [ 0.027466, -0.037079 ], [ 0.028839, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.035706 ], [ 0.030212, -0.037079 ], [ 0.028839, -0.037079 ], [ 0.028839, -0.035706 ], [ 0.030212, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.037079 ], [ 0.030212, -0.038452 ], [ 0.028839, -0.038452 ], [ 0.028839, -0.037079 ], [ 0.030212, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.032959 ], [ 0.031586, -0.034332 ], [ 0.030212, -0.034332 ], [ 0.030212, -0.032959 ], [ 0.031586, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.034332 ], [ 0.031586, -0.035706 ], [ 0.030212, -0.035706 ], [ 0.030212, -0.034332 ], [ 0.031586, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.032959 ], [ 0.032959, -0.034332 ], [ 0.031586, -0.034332 ], [ 0.031586, -0.032959 ], [ 0.032959, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.034332 ], [ 0.032959, -0.035706 ], [ 0.031586, -0.035706 ], [ 0.031586, -0.034332 ], [ 0.032959, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.035706 ], [ 0.031586, -0.037079 ], [ 0.030212, -0.037079 ], [ 0.030212, -0.035706 ], [ 0.031586, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.037079 ], [ 0.031586, -0.038452 ], [ 0.030212, -0.038452 ], [ 0.030212, -0.037079 ], [ 0.031586, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.035706 ], [ 0.032959, -0.037079 ], [ 0.031586, -0.037079 ], [ 0.031586, -0.035706 ], [ 0.032959, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.037079 ], [ 0.032959, -0.038452 ], [ 0.031586, -0.038452 ], [ 0.031586, -0.037079 ], [ 0.032959, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.038452 ], [ 0.028839, -0.039825 ], [ 0.027466, -0.039825 ], [ 0.027466, -0.038452 ], [ 0.028839, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.039825 ], [ 0.028839, -0.041199 ], [ 0.027466, -0.041199 ], [ 0.027466, -0.039825 ], [ 0.028839, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.038452 ], [ 0.030212, -0.039825 ], [ 0.028839, -0.039825 ], [ 0.028839, -0.038452 ], [ 0.030212, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.039825 ], [ 0.030212, -0.041199 ], [ 0.028839, -0.041199 ], [ 0.028839, -0.039825 ], [ 0.030212, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.041199 ], [ 0.028839, -0.042572 ], [ 0.027466, -0.042572 ], [ 0.027466, -0.041199 ], [ 0.028839, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.042572 ], [ 0.028839, -0.043945 ], [ 0.027466, -0.043945 ], [ 0.027466, -0.042572 ], [ 0.028839, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.041199 ], [ 0.030212, -0.042572 ], [ 0.028839, -0.042572 ], [ 0.028839, -0.041199 ], [ 0.030212, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.042572 ], [ 0.030212, -0.043945 ], [ 0.028839, -0.043945 ], [ 0.028839, -0.042572 ], [ 0.030212, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.038452 ], [ 0.031586, -0.039825 ], [ 0.030212, -0.039825 ], [ 0.030212, -0.038452 ], [ 0.031586, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.039825 ], [ 0.031586, -0.041199 ], [ 0.030212, -0.041199 ], [ 0.030212, -0.039825 ], [ 0.031586, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.038452 ], [ 0.032959, -0.039825 ], [ 0.031586, -0.039825 ], [ 0.031586, -0.038452 ], [ 0.032959, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.039825 ], [ 0.032959, -0.041199 ], [ 0.031586, -0.041199 ], [ 0.031586, -0.039825 ], [ 0.032959, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.041199 ], [ 0.031586, -0.042572 ], [ 0.030212, -0.042572 ], [ 0.030212, -0.041199 ], [ 0.031586, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.042572 ], [ 0.031586, -0.043945 ], [ 0.030212, -0.043945 ], [ 0.030212, -0.042572 ], [ 0.031586, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.041199 ], [ 0.032959, -0.042572 ], [ 0.031586, -0.042572 ], [ 0.031586, -0.041199 ], [ 0.032959, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.042572 ], [ 0.032959, -0.043945 ], [ 0.031586, -0.043945 ], [ 0.031586, -0.042572 ], [ 0.032959, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.021973 ], [ 0.034332, -0.023346 ], [ 0.032959, -0.023346 ], [ 0.032959, -0.021973 ], [ 0.034332, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.023346 ], [ 0.034332, -0.024719 ], [ 0.032959, -0.024719 ], [ 0.032959, -0.023346 ], [ 0.034332, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.021973 ], [ 0.035706, -0.023346 ], [ 0.034332, -0.023346 ], [ 0.034332, -0.021973 ], [ 0.035706, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.023346 ], [ 0.035706, -0.024719 ], [ 0.034332, -0.024719 ], [ 0.034332, -0.023346 ], [ 0.035706, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.024719 ], [ 0.034332, -0.026093 ], [ 0.032959, -0.026093 ], [ 0.032959, -0.024719 ], [ 0.034332, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.026093 ], [ 0.034332, -0.027466 ], [ 0.032959, -0.027466 ], [ 0.032959, -0.026093 ], [ 0.034332, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.024719 ], [ 0.035706, -0.026093 ], [ 0.034332, -0.026093 ], [ 0.034332, -0.024719 ], [ 0.035706, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.026093 ], [ 0.035706, -0.027466 ], [ 0.034332, -0.027466 ], [ 0.034332, -0.026093 ], [ 0.035706, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.021973 ], [ 0.037079, -0.023346 ], [ 0.035706, -0.023346 ], [ 0.035706, -0.021973 ], [ 0.037079, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.023346 ], [ 0.037079, -0.024719 ], [ 0.035706, -0.024719 ], [ 0.035706, -0.023346 ], [ 0.037079, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.021973 ], [ 0.038452, -0.023346 ], [ 0.037079, -0.023346 ], [ 0.037079, -0.021973 ], [ 0.038452, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.023346 ], [ 0.038452, -0.024719 ], [ 0.037079, -0.024719 ], [ 0.037079, -0.023346 ], [ 0.038452, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.024719 ], [ 0.037079, -0.026093 ], [ 0.035706, -0.026093 ], [ 0.035706, -0.024719 ], [ 0.037079, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.026093 ], [ 0.037079, -0.027466 ], [ 0.035706, -0.027466 ], [ 0.035706, -0.026093 ], [ 0.037079, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.024719 ], [ 0.038452, -0.026093 ], [ 0.037079, -0.026093 ], [ 0.037079, -0.024719 ], [ 0.038452, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.026093 ], [ 0.038452, -0.027466 ], [ 0.037079, -0.027466 ], [ 0.037079, -0.026093 ], [ 0.038452, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.027466 ], [ 0.034332, -0.028839 ], [ 0.032959, -0.028839 ], [ 0.032959, -0.027466 ], [ 0.034332, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.028839 ], [ 0.034332, -0.030212 ], [ 0.032959, -0.030212 ], [ 0.032959, -0.028839 ], [ 0.034332, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.027466 ], [ 0.035706, -0.028839 ], [ 0.034332, -0.028839 ], [ 0.034332, -0.027466 ], [ 0.035706, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.028839 ], [ 0.035706, -0.030212 ], [ 0.034332, -0.030212 ], [ 0.034332, -0.028839 ], [ 0.035706, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.030212 ], [ 0.034332, -0.031586 ], [ 0.032959, -0.031586 ], [ 0.032959, -0.030212 ], [ 0.034332, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.031586 ], [ 0.034332, -0.032959 ], [ 0.032959, -0.032959 ], [ 0.032959, -0.031586 ], [ 0.034332, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.030212 ], [ 0.035706, -0.031586 ], [ 0.034332, -0.031586 ], [ 0.034332, -0.030212 ], [ 0.035706, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.031586 ], [ 0.035706, -0.032959 ], [ 0.034332, -0.032959 ], [ 0.034332, -0.031586 ], [ 0.035706, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.027466 ], [ 0.037079, -0.028839 ], [ 0.035706, -0.028839 ], [ 0.035706, -0.027466 ], [ 0.037079, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.028839 ], [ 0.037079, -0.030212 ], [ 0.035706, -0.030212 ], [ 0.035706, -0.028839 ], [ 0.037079, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.027466 ], [ 0.038452, -0.028839 ], [ 0.037079, -0.028839 ], [ 0.037079, -0.027466 ], [ 0.038452, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.028839 ], [ 0.038452, -0.030212 ], [ 0.037079, -0.030212 ], [ 0.037079, -0.028839 ], [ 0.038452, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.030212 ], [ 0.037079, -0.031586 ], [ 0.035706, -0.031586 ], [ 0.035706, -0.030212 ], [ 0.037079, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.031586 ], [ 0.037079, -0.032959 ], [ 0.035706, -0.032959 ], [ 0.035706, -0.031586 ], [ 0.037079, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.030212 ], [ 0.038452, -0.031586 ], [ 0.037079, -0.031586 ], [ 0.037079, -0.030212 ], [ 0.038452, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.031586 ], [ 0.038452, -0.032959 ], [ 0.037079, -0.032959 ], [ 0.037079, -0.031586 ], [ 0.038452, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.021973 ], [ 0.039825, -0.023346 ], [ 0.038452, -0.023346 ], [ 0.038452, -0.021973 ], [ 0.039825, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.023346 ], [ 0.039825, -0.024719 ], [ 0.038452, -0.024719 ], [ 0.038452, -0.023346 ], [ 0.039825, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.021973 ], [ 0.041199, -0.023346 ], [ 0.039825, -0.023346 ], [ 0.039825, -0.021973 ], [ 0.041199, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.023346 ], [ 0.041199, -0.024719 ], [ 0.039825, -0.024719 ], [ 0.039825, -0.023346 ], [ 0.041199, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.024719 ], [ 0.039825, -0.026093 ], [ 0.038452, -0.026093 ], [ 0.038452, -0.024719 ], [ 0.039825, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.026093 ], [ 0.039825, -0.027466 ], [ 0.038452, -0.027466 ], [ 0.038452, -0.026093 ], [ 0.039825, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.024719 ], [ 0.041199, -0.026093 ], [ 0.039825, -0.026093 ], [ 0.039825, -0.024719 ], [ 0.041199, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.026093 ], [ 0.041199, -0.027466 ], [ 0.039825, -0.027466 ], [ 0.039825, -0.026093 ], [ 0.041199, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.021973 ], [ 0.042572, -0.023346 ], [ 0.041199, -0.023346 ], [ 0.041199, -0.021973 ], [ 0.042572, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.023346 ], [ 0.042572, -0.024719 ], [ 0.041199, -0.024719 ], [ 0.041199, -0.023346 ], [ 0.042572, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.021973 ], [ 0.043945, -0.023346 ], [ 0.042572, -0.023346 ], [ 0.042572, -0.021973 ], [ 0.043945, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.023346 ], [ 0.043945, -0.024719 ], [ 0.042572, -0.024719 ], [ 0.042572, -0.023346 ], [ 0.043945, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.024719 ], [ 0.042572, -0.026093 ], [ 0.041199, -0.026093 ], [ 0.041199, -0.024719 ], [ 0.042572, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.026093 ], [ 0.042572, -0.027466 ], [ 0.041199, -0.027466 ], [ 0.041199, -0.026093 ], [ 0.042572, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.024719 ], [ 0.043945, -0.026093 ], [ 0.042572, -0.026093 ], [ 0.042572, -0.024719 ], [ 0.043945, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.026093 ], [ 0.043945, -0.027466 ], [ 0.042572, -0.027466 ], [ 0.042572, -0.026093 ], [ 0.043945, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.027466 ], [ 0.039825, -0.028839 ], [ 0.038452, -0.028839 ], [ 0.038452, -0.027466 ], [ 0.039825, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.028839 ], [ 0.039825, -0.030212 ], [ 0.038452, -0.030212 ], [ 0.038452, -0.028839 ], [ 0.039825, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.027466 ], [ 0.041199, -0.028839 ], [ 0.039825, -0.028839 ], [ 0.039825, -0.027466 ], [ 0.041199, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.028839 ], [ 0.041199, -0.030212 ], [ 0.039825, -0.030212 ], [ 0.039825, -0.028839 ], [ 0.041199, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.030212 ], [ 0.039825, -0.031586 ], [ 0.038452, -0.031586 ], [ 0.038452, -0.030212 ], [ 0.039825, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.031586 ], [ 0.039825, -0.032959 ], [ 0.038452, -0.032959 ], [ 0.038452, -0.031586 ], [ 0.039825, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.030212 ], [ 0.041199, -0.031586 ], [ 0.039825, -0.031586 ], [ 0.039825, -0.030212 ], [ 0.041199, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.031586 ], [ 0.041199, -0.032959 ], [ 0.039825, -0.032959 ], [ 0.039825, -0.031586 ], [ 0.041199, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.027466 ], [ 0.042572, -0.028839 ], [ 0.041199, -0.028839 ], [ 0.041199, -0.027466 ], [ 0.042572, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.028839 ], [ 0.042572, -0.030212 ], [ 0.041199, -0.030212 ], [ 0.041199, -0.028839 ], [ 0.042572, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.027466 ], [ 0.043945, -0.028839 ], [ 0.042572, -0.028839 ], [ 0.042572, -0.027466 ], [ 0.043945, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.028839 ], [ 0.043945, -0.030212 ], [ 0.042572, -0.030212 ], [ 0.042572, -0.028839 ], [ 0.043945, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.030212 ], [ 0.042572, -0.031586 ], [ 0.041199, -0.031586 ], [ 0.041199, -0.030212 ], [ 0.042572, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.031586 ], [ 0.042572, -0.032959 ], [ 0.041199, -0.032959 ], [ 0.041199, -0.031586 ], [ 0.042572, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.030212 ], [ 0.043945, -0.031586 ], [ 0.042572, -0.031586 ], [ 0.042572, -0.030212 ], [ 0.043945, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.031586 ], [ 0.043945, -0.032959 ], [ 0.042572, -0.032959 ], [ 0.042572, -0.031586 ], [ 0.043945, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.032959 ], [ 0.034332, -0.034332 ], [ 0.032959, -0.034332 ], [ 0.032959, -0.032959 ], [ 0.034332, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.034332 ], [ 0.034332, -0.035706 ], [ 0.032959, -0.035706 ], [ 0.032959, -0.034332 ], [ 0.034332, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.032959 ], [ 0.035706, -0.034332 ], [ 0.034332, -0.034332 ], [ 0.034332, -0.032959 ], [ 0.035706, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.034332 ], [ 0.035706, -0.035706 ], [ 0.034332, -0.035706 ], [ 0.034332, -0.034332 ], [ 0.035706, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.035706 ], [ 0.034332, -0.037079 ], [ 0.032959, -0.037079 ], [ 0.032959, -0.035706 ], [ 0.034332, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.037079 ], [ 0.034332, -0.038452 ], [ 0.032959, -0.038452 ], [ 0.032959, -0.037079 ], [ 0.034332, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.035706 ], [ 0.035706, -0.037079 ], [ 0.034332, -0.037079 ], [ 0.034332, -0.035706 ], [ 0.035706, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.037079 ], [ 0.035706, -0.038452 ], [ 0.034332, -0.038452 ], [ 0.034332, -0.037079 ], [ 0.035706, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.032959 ], [ 0.037079, -0.034332 ], [ 0.035706, -0.034332 ], [ 0.035706, -0.032959 ], [ 0.037079, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.034332 ], [ 0.037079, -0.035706 ], [ 0.035706, -0.035706 ], [ 0.035706, -0.034332 ], [ 0.037079, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.032959 ], [ 0.038452, -0.034332 ], [ 0.037079, -0.034332 ], [ 0.037079, -0.032959 ], [ 0.038452, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.034332 ], [ 0.038452, -0.035706 ], [ 0.037079, -0.035706 ], [ 0.037079, -0.034332 ], [ 0.038452, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.035706 ], [ 0.037079, -0.037079 ], [ 0.035706, -0.037079 ], [ 0.035706, -0.035706 ], [ 0.037079, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.037079 ], [ 0.037079, -0.038452 ], [ 0.035706, -0.038452 ], [ 0.035706, -0.037079 ], [ 0.037079, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.035706 ], [ 0.038452, -0.037079 ], [ 0.037079, -0.037079 ], [ 0.037079, -0.035706 ], [ 0.038452, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.037079 ], [ 0.038452, -0.038452 ], [ 0.037079, -0.038452 ], [ 0.037079, -0.037079 ], [ 0.038452, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.038452 ], [ 0.034332, -0.039825 ], [ 0.032959, -0.039825 ], [ 0.032959, -0.038452 ], [ 0.034332, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.039825 ], [ 0.034332, -0.041199 ], [ 0.032959, -0.041199 ], [ 0.032959, -0.039825 ], [ 0.034332, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.038452 ], [ 0.035706, -0.039825 ], [ 0.034332, -0.039825 ], [ 0.034332, -0.038452 ], [ 0.035706, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.039825 ], [ 0.035706, -0.041199 ], [ 0.034332, -0.041199 ], [ 0.034332, -0.039825 ], [ 0.035706, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.041199 ], [ 0.034332, -0.042572 ], [ 0.032959, -0.042572 ], [ 0.032959, -0.041199 ], [ 0.034332, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.042572 ], [ 0.034332, -0.043945 ], [ 0.032959, -0.043945 ], [ 0.032959, -0.042572 ], [ 0.034332, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.041199 ], [ 0.035706, -0.042572 ], [ 0.034332, -0.042572 ], [ 0.034332, -0.041199 ], [ 0.035706, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.042572 ], [ 0.035706, -0.043945 ], [ 0.034332, -0.043945 ], [ 0.034332, -0.042572 ], [ 0.035706, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.038452 ], [ 0.037079, -0.039825 ], [ 0.035706, -0.039825 ], [ 0.035706, -0.038452 ], [ 0.037079, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.039825 ], [ 0.037079, -0.041199 ], [ 0.035706, -0.041199 ], [ 0.035706, -0.039825 ], [ 0.037079, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.038452 ], [ 0.038452, -0.039825 ], [ 0.037079, -0.039825 ], [ 0.037079, -0.038452 ], [ 0.038452, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.039825 ], [ 0.038452, -0.041199 ], [ 0.037079, -0.041199 ], [ 0.037079, -0.039825 ], [ 0.038452, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.041199 ], [ 0.037079, -0.042572 ], [ 0.035706, -0.042572 ], [ 0.035706, -0.041199 ], [ 0.037079, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.042572 ], [ 0.037079, -0.043945 ], [ 0.035706, -0.043945 ], [ 0.035706, -0.042572 ], [ 0.037079, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.041199 ], [ 0.038452, -0.042572 ], [ 0.037079, -0.042572 ], [ 0.037079, -0.041199 ], [ 0.038452, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.042572 ], [ 0.038452, -0.043945 ], [ 0.037079, -0.043945 ], [ 0.037079, -0.042572 ], [ 0.038452, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.032959 ], [ 0.039825, -0.034332 ], [ 0.038452, -0.034332 ], [ 0.038452, -0.032959 ], [ 0.039825, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.034332 ], [ 0.039825, -0.035706 ], [ 0.038452, -0.035706 ], [ 0.038452, -0.034332 ], [ 0.039825, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.032959 ], [ 0.041199, -0.034332 ], [ 0.039825, -0.034332 ], [ 0.039825, -0.032959 ], [ 0.041199, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.034332 ], [ 0.041199, -0.035706 ], [ 0.039825, -0.035706 ], [ 0.039825, -0.034332 ], [ 0.041199, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.035706 ], [ 0.039825, -0.037079 ], [ 0.038452, -0.037079 ], [ 0.038452, -0.035706 ], [ 0.039825, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.037079 ], [ 0.039825, -0.038452 ], [ 0.038452, -0.038452 ], [ 0.038452, -0.037079 ], [ 0.039825, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.035706 ], [ 0.041199, -0.037079 ], [ 0.039825, -0.037079 ], [ 0.039825, -0.035706 ], [ 0.041199, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.037079 ], [ 0.041199, -0.038452 ], [ 0.039825, -0.038452 ], [ 0.039825, -0.037079 ], [ 0.041199, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.032959 ], [ 0.042572, -0.034332 ], [ 0.041199, -0.034332 ], [ 0.041199, -0.032959 ], [ 0.042572, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.034332 ], [ 0.042572, -0.035706 ], [ 0.041199, -0.035706 ], [ 0.041199, -0.034332 ], [ 0.042572, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.032959 ], [ 0.043945, -0.034332 ], [ 0.042572, -0.034332 ], [ 0.042572, -0.032959 ], [ 0.043945, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.034332 ], [ 0.043945, -0.035706 ], [ 0.042572, -0.035706 ], [ 0.042572, -0.034332 ], [ 0.043945, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.035706 ], [ 0.042572, -0.037079 ], [ 0.041199, -0.037079 ], [ 0.041199, -0.035706 ], [ 0.042572, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.037079 ], [ 0.042572, -0.038452 ], [ 0.041199, -0.038452 ], [ 0.041199, -0.037079 ], [ 0.042572, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.035706 ], [ 0.043945, -0.037079 ], [ 0.042572, -0.037079 ], [ 0.042572, -0.035706 ], [ 0.043945, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.037079 ], [ 0.043945, -0.038452 ], [ 0.042572, -0.038452 ], [ 0.042572, -0.037079 ], [ 0.043945, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.038452 ], [ 0.039825, -0.039825 ], [ 0.038452, -0.039825 ], [ 0.038452, -0.038452 ], [ 0.039825, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.039825 ], [ 0.039825, -0.041199 ], [ 0.038452, -0.041199 ], [ 0.038452, -0.039825 ], [ 0.039825, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.038452 ], [ 0.041199, -0.039825 ], [ 0.039825, -0.039825 ], [ 0.039825, -0.038452 ], [ 0.041199, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.039825 ], [ 0.041199, -0.041199 ], [ 0.039825, -0.041199 ], [ 0.039825, -0.039825 ], [ 0.041199, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.041199 ], [ 0.039825, -0.042572 ], [ 0.038452, -0.042572 ], [ 0.038452, -0.041199 ], [ 0.039825, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.042572 ], [ 0.039825, -0.043945 ], [ 0.038452, -0.043945 ], [ 0.038452, -0.042572 ], [ 0.039825, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.041199 ], [ 0.041199, -0.042572 ], [ 0.039825, -0.042572 ], [ 0.039825, -0.041199 ], [ 0.041199, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.042572 ], [ 0.041199, -0.043945 ], [ 0.039825, -0.043945 ], [ 0.039825, -0.042572 ], [ 0.041199, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.038452 ], [ 0.042572, -0.039825 ], [ 0.041199, -0.039825 ], [ 0.041199, -0.038452 ], [ 0.042572, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.039825 ], [ 0.042572, -0.041199 ], [ 0.041199, -0.041199 ], [ 0.041199, -0.039825 ], [ 0.042572, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.038452 ], [ 0.043945, -0.039825 ], [ 0.042572, -0.039825 ], [ 0.042572, -0.038452 ], [ 0.043945, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.039825 ], [ 0.043945, -0.041199 ], [ 0.042572, -0.041199 ], [ 0.042572, -0.039825 ], [ 0.043945, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.041199 ], [ 0.042572, -0.042572 ], [ 0.041199, -0.042572 ], [ 0.041199, -0.041199 ], [ 0.042572, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.042572 ], [ 0.042572, -0.043945 ], [ 0.041199, -0.043945 ], [ 0.041199, -0.042572 ], [ 0.042572, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.041199 ], [ 0.043945, -0.042572 ], [ 0.042572, -0.042572 ], [ 0.042572, -0.041199 ], [ 0.043945, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.042572 ], [ 0.043945, -0.043945 ], [ 0.042572, -0.043945 ], [ 0.042572, -0.042572 ], [ 0.043945, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.043945 ], [ 0.023346, -0.045319 ], [ 0.021973, -0.045319 ], [ 0.021973, -0.043945 ], [ 0.023346, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.045319 ], [ 0.023346, -0.046692 ], [ 0.021973, -0.046692 ], [ 0.021973, -0.045319 ], [ 0.023346, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.043945 ], [ 0.024719, -0.045319 ], [ 0.023346, -0.045319 ], [ 0.023346, -0.043945 ], [ 0.024719, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.045319 ], [ 0.024719, -0.046692 ], [ 0.023346, -0.046692 ], [ 0.023346, -0.045319 ], [ 0.024719, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.046692 ], [ 0.023346, -0.048065 ], [ 0.021973, -0.048065 ], [ 0.021973, -0.046692 ], [ 0.023346, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.048065 ], [ 0.023346, -0.049438 ], [ 0.021973, -0.049438 ], [ 0.021973, -0.048065 ], [ 0.023346, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.046692 ], [ 0.024719, -0.048065 ], [ 0.023346, -0.048065 ], [ 0.023346, -0.046692 ], [ 0.024719, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.048065 ], [ 0.024719, -0.049438 ], [ 0.023346, -0.049438 ], [ 0.023346, -0.048065 ], [ 0.024719, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.043945 ], [ 0.026093, -0.045319 ], [ 0.024719, -0.045319 ], [ 0.024719, -0.043945 ], [ 0.026093, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.045319 ], [ 0.026093, -0.046692 ], [ 0.024719, -0.046692 ], [ 0.024719, -0.045319 ], [ 0.026093, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.043945 ], [ 0.027466, -0.045319 ], [ 0.026093, -0.045319 ], [ 0.026093, -0.043945 ], [ 0.027466, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.045319 ], [ 0.027466, -0.046692 ], [ 0.026093, -0.046692 ], [ 0.026093, -0.045319 ], [ 0.027466, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.046692 ], [ 0.026093, -0.048065 ], [ 0.024719, -0.048065 ], [ 0.024719, -0.046692 ], [ 0.026093, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.048065 ], [ 0.026093, -0.049438 ], [ 0.024719, -0.049438 ], [ 0.024719, -0.048065 ], [ 0.026093, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.046692 ], [ 0.027466, -0.048065 ], [ 0.026093, -0.048065 ], [ 0.026093, -0.046692 ], [ 0.027466, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.048065 ], [ 0.027466, -0.049438 ], [ 0.026093, -0.049438 ], [ 0.026093, -0.048065 ], [ 0.027466, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.049438 ], [ 0.023346, -0.050812 ], [ 0.021973, -0.050812 ], [ 0.021973, -0.049438 ], [ 0.023346, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.050812 ], [ 0.023346, -0.052185 ], [ 0.021973, -0.052185 ], [ 0.021973, -0.050812 ], [ 0.023346, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.049438 ], [ 0.024719, -0.050812 ], [ 0.023346, -0.050812 ], [ 0.023346, -0.049438 ], [ 0.024719, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.050812 ], [ 0.024719, -0.052185 ], [ 0.023346, -0.052185 ], [ 0.023346, -0.050812 ], [ 0.024719, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.052185 ], [ 0.023346, -0.053558 ], [ 0.021973, -0.053558 ], [ 0.021973, -0.052185 ], [ 0.023346, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.053558 ], [ 0.023346, -0.054932 ], [ 0.021973, -0.054932 ], [ 0.021973, -0.053558 ], [ 0.023346, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.052185 ], [ 0.024719, -0.053558 ], [ 0.023346, -0.053558 ], [ 0.023346, -0.052185 ], [ 0.024719, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.053558 ], [ 0.024719, -0.054932 ], [ 0.023346, -0.054932 ], [ 0.023346, -0.053558 ], [ 0.024719, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.049438 ], [ 0.026093, -0.050812 ], [ 0.024719, -0.050812 ], [ 0.024719, -0.049438 ], [ 0.026093, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.050812 ], [ 0.026093, -0.052185 ], [ 0.024719, -0.052185 ], [ 0.024719, -0.050812 ], [ 0.026093, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.049438 ], [ 0.027466, -0.050812 ], [ 0.026093, -0.050812 ], [ 0.026093, -0.049438 ], [ 0.027466, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.050812 ], [ 0.027466, -0.052185 ], [ 0.026093, -0.052185 ], [ 0.026093, -0.050812 ], [ 0.027466, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.052185 ], [ 0.026093, -0.053558 ], [ 0.024719, -0.053558 ], [ 0.024719, -0.052185 ], [ 0.026093, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.053558 ], [ 0.026093, -0.054932 ], [ 0.024719, -0.054932 ], [ 0.024719, -0.053558 ], [ 0.026093, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.052185 ], [ 0.027466, -0.053558 ], [ 0.026093, -0.053558 ], [ 0.026093, -0.052185 ], [ 0.027466, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.053558 ], [ 0.027466, -0.054932 ], [ 0.026093, -0.054932 ], [ 0.026093, -0.053558 ], [ 0.027466, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.043945 ], [ 0.028839, -0.045319 ], [ 0.027466, -0.045319 ], [ 0.027466, -0.043945 ], [ 0.028839, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.045319 ], [ 0.028839, -0.046692 ], [ 0.027466, -0.046692 ], [ 0.027466, -0.045319 ], [ 0.028839, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.043945 ], [ 0.030212, -0.045319 ], [ 0.028839, -0.045319 ], [ 0.028839, -0.043945 ], [ 0.030212, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.045319 ], [ 0.030212, -0.046692 ], [ 0.028839, -0.046692 ], [ 0.028839, -0.045319 ], [ 0.030212, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.046692 ], [ 0.028839, -0.048065 ], [ 0.027466, -0.048065 ], [ 0.027466, -0.046692 ], [ 0.028839, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.048065 ], [ 0.028839, -0.049438 ], [ 0.027466, -0.049438 ], [ 0.027466, -0.048065 ], [ 0.028839, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.046692 ], [ 0.030212, -0.048065 ], [ 0.028839, -0.048065 ], [ 0.028839, -0.046692 ], [ 0.030212, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.048065 ], [ 0.030212, -0.049438 ], [ 0.028839, -0.049438 ], [ 0.028839, -0.048065 ], [ 0.030212, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.043945 ], [ 0.031586, -0.045319 ], [ 0.030212, -0.045319 ], [ 0.030212, -0.043945 ], [ 0.031586, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.045319 ], [ 0.031586, -0.046692 ], [ 0.030212, -0.046692 ], [ 0.030212, -0.045319 ], [ 0.031586, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.043945 ], [ 0.032959, -0.045319 ], [ 0.031586, -0.045319 ], [ 0.031586, -0.043945 ], [ 0.032959, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.045319 ], [ 0.032959, -0.046692 ], [ 0.031586, -0.046692 ], [ 0.031586, -0.045319 ], [ 0.032959, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.046692 ], [ 0.031586, -0.048065 ], [ 0.030212, -0.048065 ], [ 0.030212, -0.046692 ], [ 0.031586, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.048065 ], [ 0.031586, -0.049438 ], [ 0.030212, -0.049438 ], [ 0.030212, -0.048065 ], [ 0.031586, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.046692 ], [ 0.032959, -0.048065 ], [ 0.031586, -0.048065 ], [ 0.031586, -0.046692 ], [ 0.032959, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.048065 ], [ 0.032959, -0.049438 ], [ 0.031586, -0.049438 ], [ 0.031586, -0.048065 ], [ 0.032959, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.049438 ], [ 0.028839, -0.050812 ], [ 0.027466, -0.050812 ], [ 0.027466, -0.049438 ], [ 0.028839, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.050812 ], [ 0.028839, -0.052185 ], [ 0.027466, -0.052185 ], [ 0.027466, -0.050812 ], [ 0.028839, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.049438 ], [ 0.030212, -0.050812 ], [ 0.028839, -0.050812 ], [ 0.028839, -0.049438 ], [ 0.030212, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.050812 ], [ 0.030212, -0.052185 ], [ 0.028839, -0.052185 ], [ 0.028839, -0.050812 ], [ 0.030212, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.052185 ], [ 0.028839, -0.053558 ], [ 0.027466, -0.053558 ], [ 0.027466, -0.052185 ], [ 0.028839, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.053558 ], [ 0.028839, -0.054932 ], [ 0.027466, -0.054932 ], [ 0.027466, -0.053558 ], [ 0.028839, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.052185 ], [ 0.030212, -0.053558 ], [ 0.028839, -0.053558 ], [ 0.028839, -0.052185 ], [ 0.030212, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.053558 ], [ 0.030212, -0.054932 ], [ 0.028839, -0.054932 ], [ 0.028839, -0.053558 ], [ 0.030212, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.049438 ], [ 0.031586, -0.050812 ], [ 0.030212, -0.050812 ], [ 0.030212, -0.049438 ], [ 0.031586, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.050812 ], [ 0.031586, -0.052185 ], [ 0.030212, -0.052185 ], [ 0.030212, -0.050812 ], [ 0.031586, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.049438 ], [ 0.032959, -0.050812 ], [ 0.031586, -0.050812 ], [ 0.031586, -0.049438 ], [ 0.032959, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.050812 ], [ 0.032959, -0.052185 ], [ 0.031586, -0.052185 ], [ 0.031586, -0.050812 ], [ 0.032959, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.052185 ], [ 0.031586, -0.053558 ], [ 0.030212, -0.053558 ], [ 0.030212, -0.052185 ], [ 0.031586, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.053558 ], [ 0.031586, -0.054932 ], [ 0.030212, -0.054932 ], [ 0.030212, -0.053558 ], [ 0.031586, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.052185 ], [ 0.032959, -0.053558 ], [ 0.031586, -0.053558 ], [ 0.031586, -0.052185 ], [ 0.032959, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.053558 ], [ 0.032959, -0.054932 ], [ 0.031586, -0.054932 ], [ 0.031586, -0.053558 ], [ 0.032959, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.054932 ], [ 0.023346, -0.056305 ], [ 0.021973, -0.056305 ], [ 0.021973, -0.054932 ], [ 0.023346, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.056305 ], [ 0.023346, -0.057678 ], [ 0.021973, -0.057678 ], [ 0.021973, -0.056305 ], [ 0.023346, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.054932 ], [ 0.024719, -0.056305 ], [ 0.023346, -0.056305 ], [ 0.023346, -0.054932 ], [ 0.024719, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.056305 ], [ 0.024719, -0.057678 ], [ 0.023346, -0.057678 ], [ 0.023346, -0.056305 ], [ 0.024719, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.057678 ], [ 0.023346, -0.059052 ], [ 0.021973, -0.059052 ], [ 0.021973, -0.057678 ], [ 0.023346, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.059052 ], [ 0.023346, -0.060425 ], [ 0.021973, -0.060425 ], [ 0.021973, -0.059052 ], [ 0.023346, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.057678 ], [ 0.024719, -0.059052 ], [ 0.023346, -0.059052 ], [ 0.023346, -0.057678 ], [ 0.024719, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.059052 ], [ 0.024719, -0.060425 ], [ 0.023346, -0.060425 ], [ 0.023346, -0.059052 ], [ 0.024719, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.054932 ], [ 0.026093, -0.056305 ], [ 0.024719, -0.056305 ], [ 0.024719, -0.054932 ], [ 0.026093, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.056305 ], [ 0.026093, -0.057678 ], [ 0.024719, -0.057678 ], [ 0.024719, -0.056305 ], [ 0.026093, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.054932 ], [ 0.027466, -0.056305 ], [ 0.026093, -0.056305 ], [ 0.026093, -0.054932 ], [ 0.027466, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.056305 ], [ 0.027466, -0.057678 ], [ 0.026093, -0.057678 ], [ 0.026093, -0.056305 ], [ 0.027466, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.057678 ], [ 0.026093, -0.059052 ], [ 0.024719, -0.059052 ], [ 0.024719, -0.057678 ], [ 0.026093, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.059052 ], [ 0.026093, -0.060425 ], [ 0.024719, -0.060425 ], [ 0.024719, -0.059052 ], [ 0.026093, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.057678 ], [ 0.027466, -0.059052 ], [ 0.026093, -0.059052 ], [ 0.026093, -0.057678 ], [ 0.027466, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.059052 ], [ 0.027466, -0.060425 ], [ 0.026093, -0.060425 ], [ 0.026093, -0.059052 ], [ 0.027466, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.060425 ], [ 0.023346, -0.061798 ], [ 0.021973, -0.061798 ], [ 0.021973, -0.060425 ], [ 0.023346, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.061798 ], [ 0.023346, -0.063171 ], [ 0.021973, -0.063171 ], [ 0.021973, -0.061798 ], [ 0.023346, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.060425 ], [ 0.024719, -0.061798 ], [ 0.023346, -0.061798 ], [ 0.023346, -0.060425 ], [ 0.024719, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.061798 ], [ 0.024719, -0.063171 ], [ 0.023346, -0.063171 ], [ 0.023346, -0.061798 ], [ 0.024719, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.063171 ], [ 0.023346, -0.064545 ], [ 0.021973, -0.064545 ], [ 0.021973, -0.063171 ], [ 0.023346, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 16, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023346, -0.064545 ], [ 0.023346, -0.065918 ], [ 0.021973, -0.065918 ], [ 0.021973, -0.064545 ], [ 0.023346, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.063171 ], [ 0.024719, -0.064545 ], [ 0.023346, -0.064545 ], [ 0.023346, -0.063171 ], [ 0.024719, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 17, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, -0.064545 ], [ 0.024719, -0.065918 ], [ 0.023346, -0.065918 ], [ 0.023346, -0.064545 ], [ 0.024719, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.060425 ], [ 0.026093, -0.061798 ], [ 0.024719, -0.061798 ], [ 0.024719, -0.060425 ], [ 0.026093, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.061798 ], [ 0.026093, -0.063171 ], [ 0.024719, -0.063171 ], [ 0.024719, -0.061798 ], [ 0.026093, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.060425 ], [ 0.027466, -0.061798 ], [ 0.026093, -0.061798 ], [ 0.026093, -0.060425 ], [ 0.027466, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.061798 ], [ 0.027466, -0.063171 ], [ 0.026093, -0.063171 ], [ 0.026093, -0.061798 ], [ 0.027466, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.063171 ], [ 0.026093, -0.064545 ], [ 0.024719, -0.064545 ], [ 0.024719, -0.063171 ], [ 0.026093, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 18, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026093, -0.064545 ], [ 0.026093, -0.065918 ], [ 0.024719, -0.065918 ], [ 0.024719, -0.064545 ], [ 0.026093, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.063171 ], [ 0.027466, -0.064545 ], [ 0.026093, -0.064545 ], [ 0.026093, -0.063171 ], [ 0.027466, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 19, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, -0.064545 ], [ 0.027466, -0.065918 ], [ 0.026093, -0.065918 ], [ 0.026093, -0.064545 ], [ 0.027466, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.054932 ], [ 0.028839, -0.056305 ], [ 0.027466, -0.056305 ], [ 0.027466, -0.054932 ], [ 0.028839, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.056305 ], [ 0.028839, -0.057678 ], [ 0.027466, -0.057678 ], [ 0.027466, -0.056305 ], [ 0.028839, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.054932 ], [ 0.030212, -0.056305 ], [ 0.028839, -0.056305 ], [ 0.028839, -0.054932 ], [ 0.030212, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.056305 ], [ 0.030212, -0.057678 ], [ 0.028839, -0.057678 ], [ 0.028839, -0.056305 ], [ 0.030212, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.057678 ], [ 0.028839, -0.059052 ], [ 0.027466, -0.059052 ], [ 0.027466, -0.057678 ], [ 0.028839, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.059052 ], [ 0.028839, -0.060425 ], [ 0.027466, -0.060425 ], [ 0.027466, -0.059052 ], [ 0.028839, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.057678 ], [ 0.030212, -0.059052 ], [ 0.028839, -0.059052 ], [ 0.028839, -0.057678 ], [ 0.030212, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.059052 ], [ 0.030212, -0.060425 ], [ 0.028839, -0.060425 ], [ 0.028839, -0.059052 ], [ 0.030212, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.054932 ], [ 0.031586, -0.056305 ], [ 0.030212, -0.056305 ], [ 0.030212, -0.054932 ], [ 0.031586, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.056305 ], [ 0.031586, -0.057678 ], [ 0.030212, -0.057678 ], [ 0.030212, -0.056305 ], [ 0.031586, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.054932 ], [ 0.032959, -0.056305 ], [ 0.031586, -0.056305 ], [ 0.031586, -0.054932 ], [ 0.032959, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.056305 ], [ 0.032959, -0.057678 ], [ 0.031586, -0.057678 ], [ 0.031586, -0.056305 ], [ 0.032959, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.057678 ], [ 0.031586, -0.059052 ], [ 0.030212, -0.059052 ], [ 0.030212, -0.057678 ], [ 0.031586, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.059052 ], [ 0.031586, -0.060425 ], [ 0.030212, -0.060425 ], [ 0.030212, -0.059052 ], [ 0.031586, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.057678 ], [ 0.032959, -0.059052 ], [ 0.031586, -0.059052 ], [ 0.031586, -0.057678 ], [ 0.032959, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.059052 ], [ 0.032959, -0.060425 ], [ 0.031586, -0.060425 ], [ 0.031586, -0.059052 ], [ 0.032959, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.060425 ], [ 0.028839, -0.061798 ], [ 0.027466, -0.061798 ], [ 0.027466, -0.060425 ], [ 0.028839, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.061798 ], [ 0.028839, -0.063171 ], [ 0.027466, -0.063171 ], [ 0.027466, -0.061798 ], [ 0.028839, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.060425 ], [ 0.030212, -0.061798 ], [ 0.028839, -0.061798 ], [ 0.028839, -0.060425 ], [ 0.030212, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.061798 ], [ 0.030212, -0.063171 ], [ 0.028839, -0.063171 ], [ 0.028839, -0.061798 ], [ 0.030212, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.063171 ], [ 0.028839, -0.064545 ], [ 0.027466, -0.064545 ], [ 0.027466, -0.063171 ], [ 0.028839, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 20, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028839, -0.064545 ], [ 0.028839, -0.065918 ], [ 0.027466, -0.065918 ], [ 0.027466, -0.064545 ], [ 0.028839, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.063171 ], [ 0.030212, -0.064545 ], [ 0.028839, -0.064545 ], [ 0.028839, -0.063171 ], [ 0.030212, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 21, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, -0.064545 ], [ 0.030212, -0.065918 ], [ 0.028839, -0.065918 ], [ 0.028839, -0.064545 ], [ 0.030212, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.060425 ], [ 0.031586, -0.061798 ], [ 0.030212, -0.061798 ], [ 0.030212, -0.060425 ], [ 0.031586, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.061798 ], [ 0.031586, -0.063171 ], [ 0.030212, -0.063171 ], [ 0.030212, -0.061798 ], [ 0.031586, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.060425 ], [ 0.032959, -0.061798 ], [ 0.031586, -0.061798 ], [ 0.031586, -0.060425 ], [ 0.032959, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.061798 ], [ 0.032959, -0.063171 ], [ 0.031586, -0.063171 ], [ 0.031586, -0.061798 ], [ 0.032959, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.063171 ], [ 0.031586, -0.064545 ], [ 0.030212, -0.064545 ], [ 0.030212, -0.063171 ], [ 0.031586, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 22, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031586, -0.064545 ], [ 0.031586, -0.065918 ], [ 0.030212, -0.065918 ], [ 0.030212, -0.064545 ], [ 0.031586, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.063171 ], [ 0.032959, -0.064545 ], [ 0.031586, -0.064545 ], [ 0.031586, -0.063171 ], [ 0.032959, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 23, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, -0.064545 ], [ 0.032959, -0.065918 ], [ 0.031586, -0.065918 ], [ 0.031586, -0.064545 ], [ 0.032959, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.043945 ], [ 0.034332, -0.045319 ], [ 0.032959, -0.045319 ], [ 0.032959, -0.043945 ], [ 0.034332, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.045319 ], [ 0.034332, -0.046692 ], [ 0.032959, -0.046692 ], [ 0.032959, -0.045319 ], [ 0.034332, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.043945 ], [ 0.035706, -0.045319 ], [ 0.034332, -0.045319 ], [ 0.034332, -0.043945 ], [ 0.035706, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.045319 ], [ 0.035706, -0.046692 ], [ 0.034332, -0.046692 ], [ 0.034332, -0.045319 ], [ 0.035706, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.046692 ], [ 0.034332, -0.048065 ], [ 0.032959, -0.048065 ], [ 0.032959, -0.046692 ], [ 0.034332, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.048065 ], [ 0.034332, -0.049438 ], [ 0.032959, -0.049438 ], [ 0.032959, -0.048065 ], [ 0.034332, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.046692 ], [ 0.035706, -0.048065 ], [ 0.034332, -0.048065 ], [ 0.034332, -0.046692 ], [ 0.035706, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.048065 ], [ 0.035706, -0.049438 ], [ 0.034332, -0.049438 ], [ 0.034332, -0.048065 ], [ 0.035706, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.043945 ], [ 0.037079, -0.045319 ], [ 0.035706, -0.045319 ], [ 0.035706, -0.043945 ], [ 0.037079, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.045319 ], [ 0.037079, -0.046692 ], [ 0.035706, -0.046692 ], [ 0.035706, -0.045319 ], [ 0.037079, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.043945 ], [ 0.038452, -0.045319 ], [ 0.037079, -0.045319 ], [ 0.037079, -0.043945 ], [ 0.038452, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.045319 ], [ 0.038452, -0.046692 ], [ 0.037079, -0.046692 ], [ 0.037079, -0.045319 ], [ 0.038452, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.046692 ], [ 0.037079, -0.048065 ], [ 0.035706, -0.048065 ], [ 0.035706, -0.046692 ], [ 0.037079, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.048065 ], [ 0.037079, -0.049438 ], [ 0.035706, -0.049438 ], [ 0.035706, -0.048065 ], [ 0.037079, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.046692 ], [ 0.038452, -0.048065 ], [ 0.037079, -0.048065 ], [ 0.037079, -0.046692 ], [ 0.038452, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.048065 ], [ 0.038452, -0.049438 ], [ 0.037079, -0.049438 ], [ 0.037079, -0.048065 ], [ 0.038452, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.049438 ], [ 0.034332, -0.050812 ], [ 0.032959, -0.050812 ], [ 0.032959, -0.049438 ], [ 0.034332, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.050812 ], [ 0.034332, -0.052185 ], [ 0.032959, -0.052185 ], [ 0.032959, -0.050812 ], [ 0.034332, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.049438 ], [ 0.035706, -0.050812 ], [ 0.034332, -0.050812 ], [ 0.034332, -0.049438 ], [ 0.035706, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.050812 ], [ 0.035706, -0.052185 ], [ 0.034332, -0.052185 ], [ 0.034332, -0.050812 ], [ 0.035706, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.052185 ], [ 0.034332, -0.053558 ], [ 0.032959, -0.053558 ], [ 0.032959, -0.052185 ], [ 0.034332, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.053558 ], [ 0.034332, -0.054932 ], [ 0.032959, -0.054932 ], [ 0.032959, -0.053558 ], [ 0.034332, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.052185 ], [ 0.035706, -0.053558 ], [ 0.034332, -0.053558 ], [ 0.034332, -0.052185 ], [ 0.035706, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.053558 ], [ 0.035706, -0.054932 ], [ 0.034332, -0.054932 ], [ 0.034332, -0.053558 ], [ 0.035706, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.049438 ], [ 0.037079, -0.050812 ], [ 0.035706, -0.050812 ], [ 0.035706, -0.049438 ], [ 0.037079, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.050812 ], [ 0.037079, -0.052185 ], [ 0.035706, -0.052185 ], [ 0.035706, -0.050812 ], [ 0.037079, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.049438 ], [ 0.038452, -0.050812 ], [ 0.037079, -0.050812 ], [ 0.037079, -0.049438 ], [ 0.038452, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.050812 ], [ 0.038452, -0.052185 ], [ 0.037079, -0.052185 ], [ 0.037079, -0.050812 ], [ 0.038452, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.052185 ], [ 0.037079, -0.053558 ], [ 0.035706, -0.053558 ], [ 0.035706, -0.052185 ], [ 0.037079, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.053558 ], [ 0.037079, -0.054932 ], [ 0.035706, -0.054932 ], [ 0.035706, -0.053558 ], [ 0.037079, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.052185 ], [ 0.038452, -0.053558 ], [ 0.037079, -0.053558 ], [ 0.037079, -0.052185 ], [ 0.038452, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.053558 ], [ 0.038452, -0.054932 ], [ 0.037079, -0.054932 ], [ 0.037079, -0.053558 ], [ 0.038452, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.043945 ], [ 0.039825, -0.045319 ], [ 0.038452, -0.045319 ], [ 0.038452, -0.043945 ], [ 0.039825, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.045319 ], [ 0.039825, -0.046692 ], [ 0.038452, -0.046692 ], [ 0.038452, -0.045319 ], [ 0.039825, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.043945 ], [ 0.041199, -0.045319 ], [ 0.039825, -0.045319 ], [ 0.039825, -0.043945 ], [ 0.041199, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.045319 ], [ 0.041199, -0.046692 ], [ 0.039825, -0.046692 ], [ 0.039825, -0.045319 ], [ 0.041199, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.046692 ], [ 0.039825, -0.048065 ], [ 0.038452, -0.048065 ], [ 0.038452, -0.046692 ], [ 0.039825, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.048065 ], [ 0.039825, -0.049438 ], [ 0.038452, -0.049438 ], [ 0.038452, -0.048065 ], [ 0.039825, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.046692 ], [ 0.041199, -0.048065 ], [ 0.039825, -0.048065 ], [ 0.039825, -0.046692 ], [ 0.041199, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.048065 ], [ 0.041199, -0.049438 ], [ 0.039825, -0.049438 ], [ 0.039825, -0.048065 ], [ 0.041199, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.043945 ], [ 0.042572, -0.045319 ], [ 0.041199, -0.045319 ], [ 0.041199, -0.043945 ], [ 0.042572, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.045319 ], [ 0.042572, -0.046692 ], [ 0.041199, -0.046692 ], [ 0.041199, -0.045319 ], [ 0.042572, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.043945 ], [ 0.043945, -0.045319 ], [ 0.042572, -0.045319 ], [ 0.042572, -0.043945 ], [ 0.043945, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.045319 ], [ 0.043945, -0.046692 ], [ 0.042572, -0.046692 ], [ 0.042572, -0.045319 ], [ 0.043945, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.046692 ], [ 0.042572, -0.048065 ], [ 0.041199, -0.048065 ], [ 0.041199, -0.046692 ], [ 0.042572, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.048065 ], [ 0.042572, -0.049438 ], [ 0.041199, -0.049438 ], [ 0.041199, -0.048065 ], [ 0.042572, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.046692 ], [ 0.043945, -0.048065 ], [ 0.042572, -0.048065 ], [ 0.042572, -0.046692 ], [ 0.043945, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.048065 ], [ 0.043945, -0.049438 ], [ 0.042572, -0.049438 ], [ 0.042572, -0.048065 ], [ 0.043945, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.049438 ], [ 0.039825, -0.050812 ], [ 0.038452, -0.050812 ], [ 0.038452, -0.049438 ], [ 0.039825, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.050812 ], [ 0.039825, -0.052185 ], [ 0.038452, -0.052185 ], [ 0.038452, -0.050812 ], [ 0.039825, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.049438 ], [ 0.041199, -0.050812 ], [ 0.039825, -0.050812 ], [ 0.039825, -0.049438 ], [ 0.041199, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.050812 ], [ 0.041199, -0.052185 ], [ 0.039825, -0.052185 ], [ 0.039825, -0.050812 ], [ 0.041199, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.052185 ], [ 0.039825, -0.053558 ], [ 0.038452, -0.053558 ], [ 0.038452, -0.052185 ], [ 0.039825, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.053558 ], [ 0.039825, -0.054932 ], [ 0.038452, -0.054932 ], [ 0.038452, -0.053558 ], [ 0.039825, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.052185 ], [ 0.041199, -0.053558 ], [ 0.039825, -0.053558 ], [ 0.039825, -0.052185 ], [ 0.041199, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.053558 ], [ 0.041199, -0.054932 ], [ 0.039825, -0.054932 ], [ 0.039825, -0.053558 ], [ 0.041199, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.049438 ], [ 0.042572, -0.050812 ], [ 0.041199, -0.050812 ], [ 0.041199, -0.049438 ], [ 0.042572, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.050812 ], [ 0.042572, -0.052185 ], [ 0.041199, -0.052185 ], [ 0.041199, -0.050812 ], [ 0.042572, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.049438 ], [ 0.043945, -0.050812 ], [ 0.042572, -0.050812 ], [ 0.042572, -0.049438 ], [ 0.043945, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.050812 ], [ 0.043945, -0.052185 ], [ 0.042572, -0.052185 ], [ 0.042572, -0.050812 ], [ 0.043945, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.052185 ], [ 0.042572, -0.053558 ], [ 0.041199, -0.053558 ], [ 0.041199, -0.052185 ], [ 0.042572, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.053558 ], [ 0.042572, -0.054932 ], [ 0.041199, -0.054932 ], [ 0.041199, -0.053558 ], [ 0.042572, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.052185 ], [ 0.043945, -0.053558 ], [ 0.042572, -0.053558 ], [ 0.042572, -0.052185 ], [ 0.043945, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.053558 ], [ 0.043945, -0.054932 ], [ 0.042572, -0.054932 ], [ 0.042572, -0.053558 ], [ 0.043945, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.054932 ], [ 0.034332, -0.056305 ], [ 0.032959, -0.056305 ], [ 0.032959, -0.054932 ], [ 0.034332, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.056305 ], [ 0.034332, -0.057678 ], [ 0.032959, -0.057678 ], [ 0.032959, -0.056305 ], [ 0.034332, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.054932 ], [ 0.035706, -0.056305 ], [ 0.034332, -0.056305 ], [ 0.034332, -0.054932 ], [ 0.035706, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.056305 ], [ 0.035706, -0.057678 ], [ 0.034332, -0.057678 ], [ 0.034332, -0.056305 ], [ 0.035706, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.057678 ], [ 0.034332, -0.059052 ], [ 0.032959, -0.059052 ], [ 0.032959, -0.057678 ], [ 0.034332, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.059052 ], [ 0.034332, -0.060425 ], [ 0.032959, -0.060425 ], [ 0.032959, -0.059052 ], [ 0.034332, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.057678 ], [ 0.035706, -0.059052 ], [ 0.034332, -0.059052 ], [ 0.034332, -0.057678 ], [ 0.035706, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.059052 ], [ 0.035706, -0.060425 ], [ 0.034332, -0.060425 ], [ 0.034332, -0.059052 ], [ 0.035706, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.054932 ], [ 0.037079, -0.056305 ], [ 0.035706, -0.056305 ], [ 0.035706, -0.054932 ], [ 0.037079, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.056305 ], [ 0.037079, -0.057678 ], [ 0.035706, -0.057678 ], [ 0.035706, -0.056305 ], [ 0.037079, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.054932 ], [ 0.038452, -0.056305 ], [ 0.037079, -0.056305 ], [ 0.037079, -0.054932 ], [ 0.038452, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.056305 ], [ 0.038452, -0.057678 ], [ 0.037079, -0.057678 ], [ 0.037079, -0.056305 ], [ 0.038452, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.057678 ], [ 0.037079, -0.059052 ], [ 0.035706, -0.059052 ], [ 0.035706, -0.057678 ], [ 0.037079, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.059052 ], [ 0.037079, -0.060425 ], [ 0.035706, -0.060425 ], [ 0.035706, -0.059052 ], [ 0.037079, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.057678 ], [ 0.038452, -0.059052 ], [ 0.037079, -0.059052 ], [ 0.037079, -0.057678 ], [ 0.038452, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.059052 ], [ 0.038452, -0.060425 ], [ 0.037079, -0.060425 ], [ 0.037079, -0.059052 ], [ 0.038452, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.060425 ], [ 0.034332, -0.061798 ], [ 0.032959, -0.061798 ], [ 0.032959, -0.060425 ], [ 0.034332, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.061798 ], [ 0.034332, -0.063171 ], [ 0.032959, -0.063171 ], [ 0.032959, -0.061798 ], [ 0.034332, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.060425 ], [ 0.035706, -0.061798 ], [ 0.034332, -0.061798 ], [ 0.034332, -0.060425 ], [ 0.035706, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.061798 ], [ 0.035706, -0.063171 ], [ 0.034332, -0.063171 ], [ 0.034332, -0.061798 ], [ 0.035706, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.063171 ], [ 0.034332, -0.064545 ], [ 0.032959, -0.064545 ], [ 0.032959, -0.063171 ], [ 0.034332, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 24, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034332, -0.064545 ], [ 0.034332, -0.065918 ], [ 0.032959, -0.065918 ], [ 0.032959, -0.064545 ], [ 0.034332, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.063171 ], [ 0.035706, -0.064545 ], [ 0.034332, -0.064545 ], [ 0.034332, -0.063171 ], [ 0.035706, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 25, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, -0.064545 ], [ 0.035706, -0.065918 ], [ 0.034332, -0.065918 ], [ 0.034332, -0.064545 ], [ 0.035706, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.060425 ], [ 0.037079, -0.061798 ], [ 0.035706, -0.061798 ], [ 0.035706, -0.060425 ], [ 0.037079, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.061798 ], [ 0.037079, -0.063171 ], [ 0.035706, -0.063171 ], [ 0.035706, -0.061798 ], [ 0.037079, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.060425 ], [ 0.038452, -0.061798 ], [ 0.037079, -0.061798 ], [ 0.037079, -0.060425 ], [ 0.038452, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.061798 ], [ 0.038452, -0.063171 ], [ 0.037079, -0.063171 ], [ 0.037079, -0.061798 ], [ 0.038452, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.063171 ], [ 0.037079, -0.064545 ], [ 0.035706, -0.064545 ], [ 0.035706, -0.063171 ], [ 0.037079, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 26, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.037079, -0.064545 ], [ 0.037079, -0.065918 ], [ 0.035706, -0.065918 ], [ 0.035706, -0.064545 ], [ 0.037079, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.063171 ], [ 0.038452, -0.064545 ], [ 0.037079, -0.064545 ], [ 0.037079, -0.063171 ], [ 0.038452, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 27, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, -0.064545 ], [ 0.038452, -0.065918 ], [ 0.037079, -0.065918 ], [ 0.037079, -0.064545 ], [ 0.038452, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.054932 ], [ 0.039825, -0.056305 ], [ 0.038452, -0.056305 ], [ 0.038452, -0.054932 ], [ 0.039825, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.056305 ], [ 0.039825, -0.057678 ], [ 0.038452, -0.057678 ], [ 0.038452, -0.056305 ], [ 0.039825, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.054932 ], [ 0.041199, -0.056305 ], [ 0.039825, -0.056305 ], [ 0.039825, -0.054932 ], [ 0.041199, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.056305 ], [ 0.041199, -0.057678 ], [ 0.039825, -0.057678 ], [ 0.039825, -0.056305 ], [ 0.041199, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.057678 ], [ 0.039825, -0.059052 ], [ 0.038452, -0.059052 ], [ 0.038452, -0.057678 ], [ 0.039825, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.059052 ], [ 0.039825, -0.060425 ], [ 0.038452, -0.060425 ], [ 0.038452, -0.059052 ], [ 0.039825, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.057678 ], [ 0.041199, -0.059052 ], [ 0.039825, -0.059052 ], [ 0.039825, -0.057678 ], [ 0.041199, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.059052 ], [ 0.041199, -0.060425 ], [ 0.039825, -0.060425 ], [ 0.039825, -0.059052 ], [ 0.041199, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.054932 ], [ 0.042572, -0.056305 ], [ 0.041199, -0.056305 ], [ 0.041199, -0.054932 ], [ 0.042572, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.056305 ], [ 0.042572, -0.057678 ], [ 0.041199, -0.057678 ], [ 0.041199, -0.056305 ], [ 0.042572, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.054932 ], [ 0.043945, -0.056305 ], [ 0.042572, -0.056305 ], [ 0.042572, -0.054932 ], [ 0.043945, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.056305 ], [ 0.043945, -0.057678 ], [ 0.042572, -0.057678 ], [ 0.042572, -0.056305 ], [ 0.043945, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.057678 ], [ 0.042572, -0.059052 ], [ 0.041199, -0.059052 ], [ 0.041199, -0.057678 ], [ 0.042572, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.059052 ], [ 0.042572, -0.060425 ], [ 0.041199, -0.060425 ], [ 0.041199, -0.059052 ], [ 0.042572, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.057678 ], [ 0.043945, -0.059052 ], [ 0.042572, -0.059052 ], [ 0.042572, -0.057678 ], [ 0.043945, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.059052 ], [ 0.043945, -0.060425 ], [ 0.042572, -0.060425 ], [ 0.042572, -0.059052 ], [ 0.043945, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.060425 ], [ 0.039825, -0.061798 ], [ 0.038452, -0.061798 ], [ 0.038452, -0.060425 ], [ 0.039825, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.061798 ], [ 0.039825, -0.063171 ], [ 0.038452, -0.063171 ], [ 0.038452, -0.061798 ], [ 0.039825, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.060425 ], [ 0.041199, -0.061798 ], [ 0.039825, -0.061798 ], [ 0.039825, -0.060425 ], [ 0.041199, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.061798 ], [ 0.041199, -0.063171 ], [ 0.039825, -0.063171 ], [ 0.039825, -0.061798 ], [ 0.041199, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.063171 ], [ 0.039825, -0.064545 ], [ 0.038452, -0.064545 ], [ 0.038452, -0.063171 ], [ 0.039825, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 28, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039825, -0.064545 ], [ 0.039825, -0.065918 ], [ 0.038452, -0.065918 ], [ 0.038452, -0.064545 ], [ 0.039825, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.063171 ], [ 0.041199, -0.064545 ], [ 0.039825, -0.064545 ], [ 0.039825, -0.063171 ], [ 0.041199, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 29, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, -0.064545 ], [ 0.041199, -0.065918 ], [ 0.039825, -0.065918 ], [ 0.039825, -0.064545 ], [ 0.041199, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.060425 ], [ 0.042572, -0.061798 ], [ 0.041199, -0.061798 ], [ 0.041199, -0.060425 ], [ 0.042572, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.061798 ], [ 0.042572, -0.063171 ], [ 0.041199, -0.063171 ], [ 0.041199, -0.061798 ], [ 0.042572, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.060425 ], [ 0.043945, -0.061798 ], [ 0.042572, -0.061798 ], [ 0.042572, -0.060425 ], [ 0.043945, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.061798 ], [ 0.043945, -0.063171 ], [ 0.042572, -0.063171 ], [ 0.042572, -0.061798 ], [ 0.043945, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.063171 ], [ 0.042572, -0.064545 ], [ 0.041199, -0.064545 ], [ 0.041199, -0.063171 ], [ 0.042572, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 30, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042572, -0.064545 ], [ 0.042572, -0.065918 ], [ 0.041199, -0.065918 ], [ 0.041199, -0.064545 ], [ 0.042572, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.063171 ], [ 0.043945, -0.064545 ], [ 0.042572, -0.064545 ], [ 0.042572, -0.063171 ], [ 0.043945, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 31, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, -0.064545 ], [ 0.043945, -0.065918 ], [ 0.042572, -0.065918 ], [ 0.042572, -0.064545 ], [ 0.043945, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.021973 ], [ 0.045319, -0.023346 ], [ 0.043945, -0.023346 ], [ 0.043945, -0.021973 ], [ 0.045319, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.023346 ], [ 0.045319, -0.024719 ], [ 0.043945, -0.024719 ], [ 0.043945, -0.023346 ], [ 0.045319, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.021973 ], [ 0.046692, -0.023346 ], [ 0.045319, -0.023346 ], [ 0.045319, -0.021973 ], [ 0.046692, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.023346 ], [ 0.046692, -0.024719 ], [ 0.045319, -0.024719 ], [ 0.045319, -0.023346 ], [ 0.046692, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.024719 ], [ 0.045319, -0.026093 ], [ 0.043945, -0.026093 ], [ 0.043945, -0.024719 ], [ 0.045319, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.026093 ], [ 0.045319, -0.027466 ], [ 0.043945, -0.027466 ], [ 0.043945, -0.026093 ], [ 0.045319, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.024719 ], [ 0.046692, -0.026093 ], [ 0.045319, -0.026093 ], [ 0.045319, -0.024719 ], [ 0.046692, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.026093 ], [ 0.046692, -0.027466 ], [ 0.045319, -0.027466 ], [ 0.045319, -0.026093 ], [ 0.046692, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.021973 ], [ 0.048065, -0.023346 ], [ 0.046692, -0.023346 ], [ 0.046692, -0.021973 ], [ 0.048065, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.023346 ], [ 0.048065, -0.024719 ], [ 0.046692, -0.024719 ], [ 0.046692, -0.023346 ], [ 0.048065, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.021973 ], [ 0.049438, -0.023346 ], [ 0.048065, -0.023346 ], [ 0.048065, -0.021973 ], [ 0.049438, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.023346 ], [ 0.049438, -0.024719 ], [ 0.048065, -0.024719 ], [ 0.048065, -0.023346 ], [ 0.049438, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.024719 ], [ 0.048065, -0.026093 ], [ 0.046692, -0.026093 ], [ 0.046692, -0.024719 ], [ 0.048065, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.026093 ], [ 0.048065, -0.027466 ], [ 0.046692, -0.027466 ], [ 0.046692, -0.026093 ], [ 0.048065, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.024719 ], [ 0.049438, -0.026093 ], [ 0.048065, -0.026093 ], [ 0.048065, -0.024719 ], [ 0.049438, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.026093 ], [ 0.049438, -0.027466 ], [ 0.048065, -0.027466 ], [ 0.048065, -0.026093 ], [ 0.049438, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.027466 ], [ 0.045319, -0.028839 ], [ 0.043945, -0.028839 ], [ 0.043945, -0.027466 ], [ 0.045319, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.028839 ], [ 0.045319, -0.030212 ], [ 0.043945, -0.030212 ], [ 0.043945, -0.028839 ], [ 0.045319, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.027466 ], [ 0.046692, -0.028839 ], [ 0.045319, -0.028839 ], [ 0.045319, -0.027466 ], [ 0.046692, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.028839 ], [ 0.046692, -0.030212 ], [ 0.045319, -0.030212 ], [ 0.045319, -0.028839 ], [ 0.046692, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.030212 ], [ 0.045319, -0.031586 ], [ 0.043945, -0.031586 ], [ 0.043945, -0.030212 ], [ 0.045319, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.031586 ], [ 0.045319, -0.032959 ], [ 0.043945, -0.032959 ], [ 0.043945, -0.031586 ], [ 0.045319, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.030212 ], [ 0.046692, -0.031586 ], [ 0.045319, -0.031586 ], [ 0.045319, -0.030212 ], [ 0.046692, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.031586 ], [ 0.046692, -0.032959 ], [ 0.045319, -0.032959 ], [ 0.045319, -0.031586 ], [ 0.046692, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.027466 ], [ 0.048065, -0.028839 ], [ 0.046692, -0.028839 ], [ 0.046692, -0.027466 ], [ 0.048065, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.028839 ], [ 0.048065, -0.030212 ], [ 0.046692, -0.030212 ], [ 0.046692, -0.028839 ], [ 0.048065, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.027466 ], [ 0.049438, -0.028839 ], [ 0.048065, -0.028839 ], [ 0.048065, -0.027466 ], [ 0.049438, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.028839 ], [ 0.049438, -0.030212 ], [ 0.048065, -0.030212 ], [ 0.048065, -0.028839 ], [ 0.049438, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.030212 ], [ 0.048065, -0.031586 ], [ 0.046692, -0.031586 ], [ 0.046692, -0.030212 ], [ 0.048065, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.031586 ], [ 0.048065, -0.032959 ], [ 0.046692, -0.032959 ], [ 0.046692, -0.031586 ], [ 0.048065, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.030212 ], [ 0.049438, -0.031586 ], [ 0.048065, -0.031586 ], [ 0.048065, -0.030212 ], [ 0.049438, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.031586 ], [ 0.049438, -0.032959 ], [ 0.048065, -0.032959 ], [ 0.048065, -0.031586 ], [ 0.049438, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.021973 ], [ 0.050812, -0.023346 ], [ 0.049438, -0.023346 ], [ 0.049438, -0.021973 ], [ 0.050812, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.023346 ], [ 0.050812, -0.024719 ], [ 0.049438, -0.024719 ], [ 0.049438, -0.023346 ], [ 0.050812, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.021973 ], [ 0.052185, -0.023346 ], [ 0.050812, -0.023346 ], [ 0.050812, -0.021973 ], [ 0.052185, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.023346 ], [ 0.052185, -0.024719 ], [ 0.050812, -0.024719 ], [ 0.050812, -0.023346 ], [ 0.052185, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.024719 ], [ 0.050812, -0.026093 ], [ 0.049438, -0.026093 ], [ 0.049438, -0.024719 ], [ 0.050812, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.026093 ], [ 0.050812, -0.027466 ], [ 0.049438, -0.027466 ], [ 0.049438, -0.026093 ], [ 0.050812, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.024719 ], [ 0.052185, -0.026093 ], [ 0.050812, -0.026093 ], [ 0.050812, -0.024719 ], [ 0.052185, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.026093 ], [ 0.052185, -0.027466 ], [ 0.050812, -0.027466 ], [ 0.050812, -0.026093 ], [ 0.052185, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.021973 ], [ 0.053558, -0.023346 ], [ 0.052185, -0.023346 ], [ 0.052185, -0.021973 ], [ 0.053558, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.023346 ], [ 0.053558, -0.024719 ], [ 0.052185, -0.024719 ], [ 0.052185, -0.023346 ], [ 0.053558, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.021973 ], [ 0.054932, -0.023346 ], [ 0.053558, -0.023346 ], [ 0.053558, -0.021973 ], [ 0.054932, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.023346 ], [ 0.054932, -0.024719 ], [ 0.053558, -0.024719 ], [ 0.053558, -0.023346 ], [ 0.054932, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.024719 ], [ 0.053558, -0.026093 ], [ 0.052185, -0.026093 ], [ 0.052185, -0.024719 ], [ 0.053558, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.026093 ], [ 0.053558, -0.027466 ], [ 0.052185, -0.027466 ], [ 0.052185, -0.026093 ], [ 0.053558, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.024719 ], [ 0.054932, -0.026093 ], [ 0.053558, -0.026093 ], [ 0.053558, -0.024719 ], [ 0.054932, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.026093 ], [ 0.054932, -0.027466 ], [ 0.053558, -0.027466 ], [ 0.053558, -0.026093 ], [ 0.054932, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.027466 ], [ 0.050812, -0.028839 ], [ 0.049438, -0.028839 ], [ 0.049438, -0.027466 ], [ 0.050812, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.028839 ], [ 0.050812, -0.030212 ], [ 0.049438, -0.030212 ], [ 0.049438, -0.028839 ], [ 0.050812, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.027466 ], [ 0.052185, -0.028839 ], [ 0.050812, -0.028839 ], [ 0.050812, -0.027466 ], [ 0.052185, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.028839 ], [ 0.052185, -0.030212 ], [ 0.050812, -0.030212 ], [ 0.050812, -0.028839 ], [ 0.052185, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.030212 ], [ 0.050812, -0.031586 ], [ 0.049438, -0.031586 ], [ 0.049438, -0.030212 ], [ 0.050812, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.031586 ], [ 0.050812, -0.032959 ], [ 0.049438, -0.032959 ], [ 0.049438, -0.031586 ], [ 0.050812, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.030212 ], [ 0.052185, -0.031586 ], [ 0.050812, -0.031586 ], [ 0.050812, -0.030212 ], [ 0.052185, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.031586 ], [ 0.052185, -0.032959 ], [ 0.050812, -0.032959 ], [ 0.050812, -0.031586 ], [ 0.052185, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.027466 ], [ 0.053558, -0.028839 ], [ 0.052185, -0.028839 ], [ 0.052185, -0.027466 ], [ 0.053558, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.028839 ], [ 0.053558, -0.030212 ], [ 0.052185, -0.030212 ], [ 0.052185, -0.028839 ], [ 0.053558, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.027466 ], [ 0.054932, -0.028839 ], [ 0.053558, -0.028839 ], [ 0.053558, -0.027466 ], [ 0.054932, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.028839 ], [ 0.054932, -0.030212 ], [ 0.053558, -0.030212 ], [ 0.053558, -0.028839 ], [ 0.054932, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.030212 ], [ 0.053558, -0.031586 ], [ 0.052185, -0.031586 ], [ 0.052185, -0.030212 ], [ 0.053558, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.031586 ], [ 0.053558, -0.032959 ], [ 0.052185, -0.032959 ], [ 0.052185, -0.031586 ], [ 0.053558, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.030212 ], [ 0.054932, -0.031586 ], [ 0.053558, -0.031586 ], [ 0.053558, -0.030212 ], [ 0.054932, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.031586 ], [ 0.054932, -0.032959 ], [ 0.053558, -0.032959 ], [ 0.053558, -0.031586 ], [ 0.054932, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.032959 ], [ 0.045319, -0.034332 ], [ 0.043945, -0.034332 ], [ 0.043945, -0.032959 ], [ 0.045319, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.034332 ], [ 0.045319, -0.035706 ], [ 0.043945, -0.035706 ], [ 0.043945, -0.034332 ], [ 0.045319, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.032959 ], [ 0.046692, -0.034332 ], [ 0.045319, -0.034332 ], [ 0.045319, -0.032959 ], [ 0.046692, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.034332 ], [ 0.046692, -0.035706 ], [ 0.045319, -0.035706 ], [ 0.045319, -0.034332 ], [ 0.046692, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.035706 ], [ 0.045319, -0.037079 ], [ 0.043945, -0.037079 ], [ 0.043945, -0.035706 ], [ 0.045319, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.037079 ], [ 0.045319, -0.038452 ], [ 0.043945, -0.038452 ], [ 0.043945, -0.037079 ], [ 0.045319, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.035706 ], [ 0.046692, -0.037079 ], [ 0.045319, -0.037079 ], [ 0.045319, -0.035706 ], [ 0.046692, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.037079 ], [ 0.046692, -0.038452 ], [ 0.045319, -0.038452 ], [ 0.045319, -0.037079 ], [ 0.046692, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.032959 ], [ 0.048065, -0.034332 ], [ 0.046692, -0.034332 ], [ 0.046692, -0.032959 ], [ 0.048065, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.034332 ], [ 0.048065, -0.035706 ], [ 0.046692, -0.035706 ], [ 0.046692, -0.034332 ], [ 0.048065, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.032959 ], [ 0.049438, -0.034332 ], [ 0.048065, -0.034332 ], [ 0.048065, -0.032959 ], [ 0.049438, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.034332 ], [ 0.049438, -0.035706 ], [ 0.048065, -0.035706 ], [ 0.048065, -0.034332 ], [ 0.049438, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.035706 ], [ 0.048065, -0.037079 ], [ 0.046692, -0.037079 ], [ 0.046692, -0.035706 ], [ 0.048065, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.037079 ], [ 0.048065, -0.038452 ], [ 0.046692, -0.038452 ], [ 0.046692, -0.037079 ], [ 0.048065, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.035706 ], [ 0.049438, -0.037079 ], [ 0.048065, -0.037079 ], [ 0.048065, -0.035706 ], [ 0.049438, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.037079 ], [ 0.049438, -0.038452 ], [ 0.048065, -0.038452 ], [ 0.048065, -0.037079 ], [ 0.049438, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.038452 ], [ 0.045319, -0.039825 ], [ 0.043945, -0.039825 ], [ 0.043945, -0.038452 ], [ 0.045319, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.039825 ], [ 0.045319, -0.041199 ], [ 0.043945, -0.041199 ], [ 0.043945, -0.039825 ], [ 0.045319, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.038452 ], [ 0.046692, -0.039825 ], [ 0.045319, -0.039825 ], [ 0.045319, -0.038452 ], [ 0.046692, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.039825 ], [ 0.046692, -0.041199 ], [ 0.045319, -0.041199 ], [ 0.045319, -0.039825 ], [ 0.046692, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.041199 ], [ 0.045319, -0.042572 ], [ 0.043945, -0.042572 ], [ 0.043945, -0.041199 ], [ 0.045319, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.042572 ], [ 0.045319, -0.043945 ], [ 0.043945, -0.043945 ], [ 0.043945, -0.042572 ], [ 0.045319, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.041199 ], [ 0.046692, -0.042572 ], [ 0.045319, -0.042572 ], [ 0.045319, -0.041199 ], [ 0.046692, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.042572 ], [ 0.046692, -0.043945 ], [ 0.045319, -0.043945 ], [ 0.045319, -0.042572 ], [ 0.046692, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.038452 ], [ 0.048065, -0.039825 ], [ 0.046692, -0.039825 ], [ 0.046692, -0.038452 ], [ 0.048065, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.039825 ], [ 0.048065, -0.041199 ], [ 0.046692, -0.041199 ], [ 0.046692, -0.039825 ], [ 0.048065, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.038452 ], [ 0.049438, -0.039825 ], [ 0.048065, -0.039825 ], [ 0.048065, -0.038452 ], [ 0.049438, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.039825 ], [ 0.049438, -0.041199 ], [ 0.048065, -0.041199 ], [ 0.048065, -0.039825 ], [ 0.049438, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.041199 ], [ 0.048065, -0.042572 ], [ 0.046692, -0.042572 ], [ 0.046692, -0.041199 ], [ 0.048065, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.042572 ], [ 0.048065, -0.043945 ], [ 0.046692, -0.043945 ], [ 0.046692, -0.042572 ], [ 0.048065, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.041199 ], [ 0.049438, -0.042572 ], [ 0.048065, -0.042572 ], [ 0.048065, -0.041199 ], [ 0.049438, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.042572 ], [ 0.049438, -0.043945 ], [ 0.048065, -0.043945 ], [ 0.048065, -0.042572 ], [ 0.049438, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.032959 ], [ 0.050812, -0.034332 ], [ 0.049438, -0.034332 ], [ 0.049438, -0.032959 ], [ 0.050812, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.034332 ], [ 0.050812, -0.035706 ], [ 0.049438, -0.035706 ], [ 0.049438, -0.034332 ], [ 0.050812, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.032959 ], [ 0.052185, -0.034332 ], [ 0.050812, -0.034332 ], [ 0.050812, -0.032959 ], [ 0.052185, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.034332 ], [ 0.052185, -0.035706 ], [ 0.050812, -0.035706 ], [ 0.050812, -0.034332 ], [ 0.052185, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.035706 ], [ 0.050812, -0.037079 ], [ 0.049438, -0.037079 ], [ 0.049438, -0.035706 ], [ 0.050812, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.037079 ], [ 0.050812, -0.038452 ], [ 0.049438, -0.038452 ], [ 0.049438, -0.037079 ], [ 0.050812, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.035706 ], [ 0.052185, -0.037079 ], [ 0.050812, -0.037079 ], [ 0.050812, -0.035706 ], [ 0.052185, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.037079 ], [ 0.052185, -0.038452 ], [ 0.050812, -0.038452 ], [ 0.050812, -0.037079 ], [ 0.052185, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.032959 ], [ 0.053558, -0.034332 ], [ 0.052185, -0.034332 ], [ 0.052185, -0.032959 ], [ 0.053558, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.034332 ], [ 0.053558, -0.035706 ], [ 0.052185, -0.035706 ], [ 0.052185, -0.034332 ], [ 0.053558, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.032959 ], [ 0.054932, -0.034332 ], [ 0.053558, -0.034332 ], [ 0.053558, -0.032959 ], [ 0.054932, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.034332 ], [ 0.054932, -0.035706 ], [ 0.053558, -0.035706 ], [ 0.053558, -0.034332 ], [ 0.054932, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.035706 ], [ 0.053558, -0.037079 ], [ 0.052185, -0.037079 ], [ 0.052185, -0.035706 ], [ 0.053558, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.037079 ], [ 0.053558, -0.038452 ], [ 0.052185, -0.038452 ], [ 0.052185, -0.037079 ], [ 0.053558, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.035706 ], [ 0.054932, -0.037079 ], [ 0.053558, -0.037079 ], [ 0.053558, -0.035706 ], [ 0.054932, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.037079 ], [ 0.054932, -0.038452 ], [ 0.053558, -0.038452 ], [ 0.053558, -0.037079 ], [ 0.054932, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.038452 ], [ 0.050812, -0.039825 ], [ 0.049438, -0.039825 ], [ 0.049438, -0.038452 ], [ 0.050812, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.039825 ], [ 0.050812, -0.041199 ], [ 0.049438, -0.041199 ], [ 0.049438, -0.039825 ], [ 0.050812, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.038452 ], [ 0.052185, -0.039825 ], [ 0.050812, -0.039825 ], [ 0.050812, -0.038452 ], [ 0.052185, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.039825 ], [ 0.052185, -0.041199 ], [ 0.050812, -0.041199 ], [ 0.050812, -0.039825 ], [ 0.052185, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.041199 ], [ 0.050812, -0.042572 ], [ 0.049438, -0.042572 ], [ 0.049438, -0.041199 ], [ 0.050812, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.042572 ], [ 0.050812, -0.043945 ], [ 0.049438, -0.043945 ], [ 0.049438, -0.042572 ], [ 0.050812, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.041199 ], [ 0.052185, -0.042572 ], [ 0.050812, -0.042572 ], [ 0.050812, -0.041199 ], [ 0.052185, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.042572 ], [ 0.052185, -0.043945 ], [ 0.050812, -0.043945 ], [ 0.050812, -0.042572 ], [ 0.052185, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.038452 ], [ 0.053558, -0.039825 ], [ 0.052185, -0.039825 ], [ 0.052185, -0.038452 ], [ 0.053558, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.039825 ], [ 0.053558, -0.041199 ], [ 0.052185, -0.041199 ], [ 0.052185, -0.039825 ], [ 0.053558, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.038452 ], [ 0.054932, -0.039825 ], [ 0.053558, -0.039825 ], [ 0.053558, -0.038452 ], [ 0.054932, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.039825 ], [ 0.054932, -0.041199 ], [ 0.053558, -0.041199 ], [ 0.053558, -0.039825 ], [ 0.054932, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.041199 ], [ 0.053558, -0.042572 ], [ 0.052185, -0.042572 ], [ 0.052185, -0.041199 ], [ 0.053558, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.042572 ], [ 0.053558, -0.043945 ], [ 0.052185, -0.043945 ], [ 0.052185, -0.042572 ], [ 0.053558, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.041199 ], [ 0.054932, -0.042572 ], [ 0.053558, -0.042572 ], [ 0.053558, -0.041199 ], [ 0.054932, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.042572 ], [ 0.054932, -0.043945 ], [ 0.053558, -0.043945 ], [ 0.053558, -0.042572 ], [ 0.054932, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.021973 ], [ 0.056305, -0.023346 ], [ 0.054932, -0.023346 ], [ 0.054932, -0.021973 ], [ 0.056305, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.023346 ], [ 0.056305, -0.024719 ], [ 0.054932, -0.024719 ], [ 0.054932, -0.023346 ], [ 0.056305, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.021973 ], [ 0.057678, -0.023346 ], [ 0.056305, -0.023346 ], [ 0.056305, -0.021973 ], [ 0.057678, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.023346 ], [ 0.057678, -0.024719 ], [ 0.056305, -0.024719 ], [ 0.056305, -0.023346 ], [ 0.057678, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.024719 ], [ 0.056305, -0.026093 ], [ 0.054932, -0.026093 ], [ 0.054932, -0.024719 ], [ 0.056305, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.026093 ], [ 0.056305, -0.027466 ], [ 0.054932, -0.027466 ], [ 0.054932, -0.026093 ], [ 0.056305, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.024719 ], [ 0.057678, -0.026093 ], [ 0.056305, -0.026093 ], [ 0.056305, -0.024719 ], [ 0.057678, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.026093 ], [ 0.057678, -0.027466 ], [ 0.056305, -0.027466 ], [ 0.056305, -0.026093 ], [ 0.057678, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.021973 ], [ 0.059052, -0.023346 ], [ 0.057678, -0.023346 ], [ 0.057678, -0.021973 ], [ 0.059052, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.023346 ], [ 0.059052, -0.024719 ], [ 0.057678, -0.024719 ], [ 0.057678, -0.023346 ], [ 0.059052, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.021973 ], [ 0.060425, -0.023346 ], [ 0.059052, -0.023346 ], [ 0.059052, -0.021973 ], [ 0.060425, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.023346 ], [ 0.060425, -0.024719 ], [ 0.059052, -0.024719 ], [ 0.059052, -0.023346 ], [ 0.060425, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.024719 ], [ 0.059052, -0.026093 ], [ 0.057678, -0.026093 ], [ 0.057678, -0.024719 ], [ 0.059052, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.026093 ], [ 0.059052, -0.027466 ], [ 0.057678, -0.027466 ], [ 0.057678, -0.026093 ], [ 0.059052, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.024719 ], [ 0.060425, -0.026093 ], [ 0.059052, -0.026093 ], [ 0.059052, -0.024719 ], [ 0.060425, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.026093 ], [ 0.060425, -0.027466 ], [ 0.059052, -0.027466 ], [ 0.059052, -0.026093 ], [ 0.060425, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.027466 ], [ 0.056305, -0.028839 ], [ 0.054932, -0.028839 ], [ 0.054932, -0.027466 ], [ 0.056305, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.028839 ], [ 0.056305, -0.030212 ], [ 0.054932, -0.030212 ], [ 0.054932, -0.028839 ], [ 0.056305, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.027466 ], [ 0.057678, -0.028839 ], [ 0.056305, -0.028839 ], [ 0.056305, -0.027466 ], [ 0.057678, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.028839 ], [ 0.057678, -0.030212 ], [ 0.056305, -0.030212 ], [ 0.056305, -0.028839 ], [ 0.057678, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.030212 ], [ 0.056305, -0.031586 ], [ 0.054932, -0.031586 ], [ 0.054932, -0.030212 ], [ 0.056305, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.031586 ], [ 0.056305, -0.032959 ], [ 0.054932, -0.032959 ], [ 0.054932, -0.031586 ], [ 0.056305, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.030212 ], [ 0.057678, -0.031586 ], [ 0.056305, -0.031586 ], [ 0.056305, -0.030212 ], [ 0.057678, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.031586 ], [ 0.057678, -0.032959 ], [ 0.056305, -0.032959 ], [ 0.056305, -0.031586 ], [ 0.057678, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.027466 ], [ 0.059052, -0.028839 ], [ 0.057678, -0.028839 ], [ 0.057678, -0.027466 ], [ 0.059052, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.028839 ], [ 0.059052, -0.030212 ], [ 0.057678, -0.030212 ], [ 0.057678, -0.028839 ], [ 0.059052, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.027466 ], [ 0.060425, -0.028839 ], [ 0.059052, -0.028839 ], [ 0.059052, -0.027466 ], [ 0.060425, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.028839 ], [ 0.060425, -0.030212 ], [ 0.059052, -0.030212 ], [ 0.059052, -0.028839 ], [ 0.060425, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.030212 ], [ 0.059052, -0.031586 ], [ 0.057678, -0.031586 ], [ 0.057678, -0.030212 ], [ 0.059052, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.031586 ], [ 0.059052, -0.032959 ], [ 0.057678, -0.032959 ], [ 0.057678, -0.031586 ], [ 0.059052, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.030212 ], [ 0.060425, -0.031586 ], [ 0.059052, -0.031586 ], [ 0.059052, -0.030212 ], [ 0.060425, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.031586 ], [ 0.060425, -0.032959 ], [ 0.059052, -0.032959 ], [ 0.059052, -0.031586 ], [ 0.060425, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.021973 ], [ 0.061798, -0.023346 ], [ 0.060425, -0.023346 ], [ 0.060425, -0.021973 ], [ 0.061798, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.023346 ], [ 0.061798, -0.024719 ], [ 0.060425, -0.024719 ], [ 0.060425, -0.023346 ], [ 0.061798, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.021973 ], [ 0.063171, -0.023346 ], [ 0.061798, -0.023346 ], [ 0.061798, -0.021973 ], [ 0.063171, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.023346 ], [ 0.063171, -0.024719 ], [ 0.061798, -0.024719 ], [ 0.061798, -0.023346 ], [ 0.063171, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.024719 ], [ 0.061798, -0.026093 ], [ 0.060425, -0.026093 ], [ 0.060425, -0.024719 ], [ 0.061798, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.026093 ], [ 0.061798, -0.027466 ], [ 0.060425, -0.027466 ], [ 0.060425, -0.026093 ], [ 0.061798, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.024719 ], [ 0.063171, -0.026093 ], [ 0.061798, -0.026093 ], [ 0.061798, -0.024719 ], [ 0.063171, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.026093 ], [ 0.063171, -0.027466 ], [ 0.061798, -0.027466 ], [ 0.061798, -0.026093 ], [ 0.063171, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.021973 ], [ 0.064545, -0.023346 ], [ 0.063171, -0.023346 ], [ 0.063171, -0.021973 ], [ 0.064545, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.023346 ], [ 0.064545, -0.024719 ], [ 0.063171, -0.024719 ], [ 0.063171, -0.023346 ], [ 0.064545, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.021973 ], [ 0.065918, -0.023346 ], [ 0.064545, -0.023346 ], [ 0.064545, -0.021973 ], [ 0.065918, -0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 17 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.023346 ], [ 0.065918, -0.024719 ], [ 0.064545, -0.024719 ], [ 0.064545, -0.023346 ], [ 0.065918, -0.023346 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.024719 ], [ 0.064545, -0.026093 ], [ 0.063171, -0.026093 ], [ 0.063171, -0.024719 ], [ 0.064545, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.026093 ], [ 0.064545, -0.027466 ], [ 0.063171, -0.027466 ], [ 0.063171, -0.026093 ], [ 0.064545, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.024719 ], [ 0.065918, -0.026093 ], [ 0.064545, -0.026093 ], [ 0.064545, -0.024719 ], [ 0.065918, -0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 19 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.026093 ], [ 0.065918, -0.027466 ], [ 0.064545, -0.027466 ], [ 0.064545, -0.026093 ], [ 0.065918, -0.026093 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.027466 ], [ 0.061798, -0.028839 ], [ 0.060425, -0.028839 ], [ 0.060425, -0.027466 ], [ 0.061798, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.028839 ], [ 0.061798, -0.030212 ], [ 0.060425, -0.030212 ], [ 0.060425, -0.028839 ], [ 0.061798, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.027466 ], [ 0.063171, -0.028839 ], [ 0.061798, -0.028839 ], [ 0.061798, -0.027466 ], [ 0.063171, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.028839 ], [ 0.063171, -0.030212 ], [ 0.061798, -0.030212 ], [ 0.061798, -0.028839 ], [ 0.063171, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.030212 ], [ 0.061798, -0.031586 ], [ 0.060425, -0.031586 ], [ 0.060425, -0.030212 ], [ 0.061798, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.031586 ], [ 0.061798, -0.032959 ], [ 0.060425, -0.032959 ], [ 0.060425, -0.031586 ], [ 0.061798, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.030212 ], [ 0.063171, -0.031586 ], [ 0.061798, -0.031586 ], [ 0.061798, -0.030212 ], [ 0.063171, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.031586 ], [ 0.063171, -0.032959 ], [ 0.061798, -0.032959 ], [ 0.061798, -0.031586 ], [ 0.063171, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.027466 ], [ 0.064545, -0.028839 ], [ 0.063171, -0.028839 ], [ 0.063171, -0.027466 ], [ 0.064545, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.028839 ], [ 0.064545, -0.030212 ], [ 0.063171, -0.030212 ], [ 0.063171, -0.028839 ], [ 0.064545, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 20 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.027466 ], [ 0.065918, -0.028839 ], [ 0.064545, -0.028839 ], [ 0.064545, -0.027466 ], [ 0.065918, -0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.028839 ], [ 0.065918, -0.030212 ], [ 0.064545, -0.030212 ], [ 0.064545, -0.028839 ], [ 0.065918, -0.028839 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.030212 ], [ 0.064545, -0.031586 ], [ 0.063171, -0.031586 ], [ 0.063171, -0.030212 ], [ 0.064545, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.031586 ], [ 0.064545, -0.032959 ], [ 0.063171, -0.032959 ], [ 0.063171, -0.031586 ], [ 0.064545, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 22 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.030212 ], [ 0.065918, -0.031586 ], [ 0.064545, -0.031586 ], [ 0.064545, -0.030212 ], [ 0.065918, -0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 23 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.031586 ], [ 0.065918, -0.032959 ], [ 0.064545, -0.032959 ], [ 0.064545, -0.031586 ], [ 0.065918, -0.031586 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.032959 ], [ 0.056305, -0.034332 ], [ 0.054932, -0.034332 ], [ 0.054932, -0.032959 ], [ 0.056305, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.034332 ], [ 0.056305, -0.035706 ], [ 0.054932, -0.035706 ], [ 0.054932, -0.034332 ], [ 0.056305, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.032959 ], [ 0.057678, -0.034332 ], [ 0.056305, -0.034332 ], [ 0.056305, -0.032959 ], [ 0.057678, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.034332 ], [ 0.057678, -0.035706 ], [ 0.056305, -0.035706 ], [ 0.056305, -0.034332 ], [ 0.057678, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.035706 ], [ 0.056305, -0.037079 ], [ 0.054932, -0.037079 ], [ 0.054932, -0.035706 ], [ 0.056305, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.037079 ], [ 0.056305, -0.038452 ], [ 0.054932, -0.038452 ], [ 0.054932, -0.037079 ], [ 0.056305, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.035706 ], [ 0.057678, -0.037079 ], [ 0.056305, -0.037079 ], [ 0.056305, -0.035706 ], [ 0.057678, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.037079 ], [ 0.057678, -0.038452 ], [ 0.056305, -0.038452 ], [ 0.056305, -0.037079 ], [ 0.057678, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.032959 ], [ 0.059052, -0.034332 ], [ 0.057678, -0.034332 ], [ 0.057678, -0.032959 ], [ 0.059052, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.034332 ], [ 0.059052, -0.035706 ], [ 0.057678, -0.035706 ], [ 0.057678, -0.034332 ], [ 0.059052, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.032959 ], [ 0.060425, -0.034332 ], [ 0.059052, -0.034332 ], [ 0.059052, -0.032959 ], [ 0.060425, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.034332 ], [ 0.060425, -0.035706 ], [ 0.059052, -0.035706 ], [ 0.059052, -0.034332 ], [ 0.060425, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.035706 ], [ 0.059052, -0.037079 ], [ 0.057678, -0.037079 ], [ 0.057678, -0.035706 ], [ 0.059052, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.037079 ], [ 0.059052, -0.038452 ], [ 0.057678, -0.038452 ], [ 0.057678, -0.037079 ], [ 0.059052, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.035706 ], [ 0.060425, -0.037079 ], [ 0.059052, -0.037079 ], [ 0.059052, -0.035706 ], [ 0.060425, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.037079 ], [ 0.060425, -0.038452 ], [ 0.059052, -0.038452 ], [ 0.059052, -0.037079 ], [ 0.060425, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.038452 ], [ 0.056305, -0.039825 ], [ 0.054932, -0.039825 ], [ 0.054932, -0.038452 ], [ 0.056305, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.039825 ], [ 0.056305, -0.041199 ], [ 0.054932, -0.041199 ], [ 0.054932, -0.039825 ], [ 0.056305, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.038452 ], [ 0.057678, -0.039825 ], [ 0.056305, -0.039825 ], [ 0.056305, -0.038452 ], [ 0.057678, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.039825 ], [ 0.057678, -0.041199 ], [ 0.056305, -0.041199 ], [ 0.056305, -0.039825 ], [ 0.057678, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.041199 ], [ 0.056305, -0.042572 ], [ 0.054932, -0.042572 ], [ 0.054932, -0.041199 ], [ 0.056305, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.042572 ], [ 0.056305, -0.043945 ], [ 0.054932, -0.043945 ], [ 0.054932, -0.042572 ], [ 0.056305, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.041199 ], [ 0.057678, -0.042572 ], [ 0.056305, -0.042572 ], [ 0.056305, -0.041199 ], [ 0.057678, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.042572 ], [ 0.057678, -0.043945 ], [ 0.056305, -0.043945 ], [ 0.056305, -0.042572 ], [ 0.057678, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.038452 ], [ 0.059052, -0.039825 ], [ 0.057678, -0.039825 ], [ 0.057678, -0.038452 ], [ 0.059052, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.039825 ], [ 0.059052, -0.041199 ], [ 0.057678, -0.041199 ], [ 0.057678, -0.039825 ], [ 0.059052, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.038452 ], [ 0.060425, -0.039825 ], [ 0.059052, -0.039825 ], [ 0.059052, -0.038452 ], [ 0.060425, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.039825 ], [ 0.060425, -0.041199 ], [ 0.059052, -0.041199 ], [ 0.059052, -0.039825 ], [ 0.060425, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.041199 ], [ 0.059052, -0.042572 ], [ 0.057678, -0.042572 ], [ 0.057678, -0.041199 ], [ 0.059052, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.042572 ], [ 0.059052, -0.043945 ], [ 0.057678, -0.043945 ], [ 0.057678, -0.042572 ], [ 0.059052, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.041199 ], [ 0.060425, -0.042572 ], [ 0.059052, -0.042572 ], [ 0.059052, -0.041199 ], [ 0.060425, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.042572 ], [ 0.060425, -0.043945 ], [ 0.059052, -0.043945 ], [ 0.059052, -0.042572 ], [ 0.060425, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.032959 ], [ 0.061798, -0.034332 ], [ 0.060425, -0.034332 ], [ 0.060425, -0.032959 ], [ 0.061798, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.034332 ], [ 0.061798, -0.035706 ], [ 0.060425, -0.035706 ], [ 0.060425, -0.034332 ], [ 0.061798, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.032959 ], [ 0.063171, -0.034332 ], [ 0.061798, -0.034332 ], [ 0.061798, -0.032959 ], [ 0.063171, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.034332 ], [ 0.063171, -0.035706 ], [ 0.061798, -0.035706 ], [ 0.061798, -0.034332 ], [ 0.063171, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.035706 ], [ 0.061798, -0.037079 ], [ 0.060425, -0.037079 ], [ 0.060425, -0.035706 ], [ 0.061798, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.037079 ], [ 0.061798, -0.038452 ], [ 0.060425, -0.038452 ], [ 0.060425, -0.037079 ], [ 0.061798, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.035706 ], [ 0.063171, -0.037079 ], [ 0.061798, -0.037079 ], [ 0.061798, -0.035706 ], [ 0.063171, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.037079 ], [ 0.063171, -0.038452 ], [ 0.061798, -0.038452 ], [ 0.061798, -0.037079 ], [ 0.063171, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.032959 ], [ 0.064545, -0.034332 ], [ 0.063171, -0.034332 ], [ 0.063171, -0.032959 ], [ 0.064545, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.034332 ], [ 0.064545, -0.035706 ], [ 0.063171, -0.035706 ], [ 0.063171, -0.034332 ], [ 0.064545, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 24 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.032959 ], [ 0.065918, -0.034332 ], [ 0.064545, -0.034332 ], [ 0.064545, -0.032959 ], [ 0.065918, -0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.034332 ], [ 0.065918, -0.035706 ], [ 0.064545, -0.035706 ], [ 0.064545, -0.034332 ], [ 0.065918, -0.034332 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.035706 ], [ 0.064545, -0.037079 ], [ 0.063171, -0.037079 ], [ 0.063171, -0.035706 ], [ 0.064545, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.037079 ], [ 0.064545, -0.038452 ], [ 0.063171, -0.038452 ], [ 0.063171, -0.037079 ], [ 0.064545, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 26 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.035706 ], [ 0.065918, -0.037079 ], [ 0.064545, -0.037079 ], [ 0.064545, -0.035706 ], [ 0.065918, -0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 27 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.037079 ], [ 0.065918, -0.038452 ], [ 0.064545, -0.038452 ], [ 0.064545, -0.037079 ], [ 0.065918, -0.037079 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.038452 ], [ 0.061798, -0.039825 ], [ 0.060425, -0.039825 ], [ 0.060425, -0.038452 ], [ 0.061798, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.039825 ], [ 0.061798, -0.041199 ], [ 0.060425, -0.041199 ], [ 0.060425, -0.039825 ], [ 0.061798, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.038452 ], [ 0.063171, -0.039825 ], [ 0.061798, -0.039825 ], [ 0.061798, -0.038452 ], [ 0.063171, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.039825 ], [ 0.063171, -0.041199 ], [ 0.061798, -0.041199 ], [ 0.061798, -0.039825 ], [ 0.063171, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.041199 ], [ 0.061798, -0.042572 ], [ 0.060425, -0.042572 ], [ 0.060425, -0.041199 ], [ 0.061798, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.042572 ], [ 0.061798, -0.043945 ], [ 0.060425, -0.043945 ], [ 0.060425, -0.042572 ], [ 0.061798, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.041199 ], [ 0.063171, -0.042572 ], [ 0.061798, -0.042572 ], [ 0.061798, -0.041199 ], [ 0.063171, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.042572 ], [ 0.063171, -0.043945 ], [ 0.061798, -0.043945 ], [ 0.061798, -0.042572 ], [ 0.063171, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.038452 ], [ 0.064545, -0.039825 ], [ 0.063171, -0.039825 ], [ 0.063171, -0.038452 ], [ 0.064545, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.039825 ], [ 0.064545, -0.041199 ], [ 0.063171, -0.041199 ], [ 0.063171, -0.039825 ], [ 0.064545, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.038452 ], [ 0.065918, -0.039825 ], [ 0.064545, -0.039825 ], [ 0.064545, -0.038452 ], [ 0.065918, -0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.039825 ], [ 0.065918, -0.041199 ], [ 0.064545, -0.041199 ], [ 0.064545, -0.039825 ], [ 0.065918, -0.039825 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.041199 ], [ 0.064545, -0.042572 ], [ 0.063171, -0.042572 ], [ 0.063171, -0.041199 ], [ 0.064545, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.042572 ], [ 0.064545, -0.043945 ], [ 0.063171, -0.043945 ], [ 0.063171, -0.042572 ], [ 0.064545, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.041199 ], [ 0.065918, -0.042572 ], [ 0.064545, -0.042572 ], [ 0.064545, -0.041199 ], [ 0.065918, -0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 31 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.042572 ], [ 0.065918, -0.043945 ], [ 0.064545, -0.043945 ], [ 0.064545, -0.042572 ], [ 0.065918, -0.042572 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.043945 ], [ 0.045319, -0.045319 ], [ 0.043945, -0.045319 ], [ 0.043945, -0.043945 ], [ 0.045319, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.045319 ], [ 0.045319, -0.046692 ], [ 0.043945, -0.046692 ], [ 0.043945, -0.045319 ], [ 0.045319, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.043945 ], [ 0.046692, -0.045319 ], [ 0.045319, -0.045319 ], [ 0.045319, -0.043945 ], [ 0.046692, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.045319 ], [ 0.046692, -0.046692 ], [ 0.045319, -0.046692 ], [ 0.045319, -0.045319 ], [ 0.046692, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.046692 ], [ 0.045319, -0.048065 ], [ 0.043945, -0.048065 ], [ 0.043945, -0.046692 ], [ 0.045319, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.048065 ], [ 0.045319, -0.049438 ], [ 0.043945, -0.049438 ], [ 0.043945, -0.048065 ], [ 0.045319, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.046692 ], [ 0.046692, -0.048065 ], [ 0.045319, -0.048065 ], [ 0.045319, -0.046692 ], [ 0.046692, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.048065 ], [ 0.046692, -0.049438 ], [ 0.045319, -0.049438 ], [ 0.045319, -0.048065 ], [ 0.046692, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.043945 ], [ 0.048065, -0.045319 ], [ 0.046692, -0.045319 ], [ 0.046692, -0.043945 ], [ 0.048065, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.045319 ], [ 0.048065, -0.046692 ], [ 0.046692, -0.046692 ], [ 0.046692, -0.045319 ], [ 0.048065, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.043945 ], [ 0.049438, -0.045319 ], [ 0.048065, -0.045319 ], [ 0.048065, -0.043945 ], [ 0.049438, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.045319 ], [ 0.049438, -0.046692 ], [ 0.048065, -0.046692 ], [ 0.048065, -0.045319 ], [ 0.049438, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.046692 ], [ 0.048065, -0.048065 ], [ 0.046692, -0.048065 ], [ 0.046692, -0.046692 ], [ 0.048065, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.048065 ], [ 0.048065, -0.049438 ], [ 0.046692, -0.049438 ], [ 0.046692, -0.048065 ], [ 0.048065, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.046692 ], [ 0.049438, -0.048065 ], [ 0.048065, -0.048065 ], [ 0.048065, -0.046692 ], [ 0.049438, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.048065 ], [ 0.049438, -0.049438 ], [ 0.048065, -0.049438 ], [ 0.048065, -0.048065 ], [ 0.049438, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.049438 ], [ 0.045319, -0.050812 ], [ 0.043945, -0.050812 ], [ 0.043945, -0.049438 ], [ 0.045319, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.050812 ], [ 0.045319, -0.052185 ], [ 0.043945, -0.052185 ], [ 0.043945, -0.050812 ], [ 0.045319, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.049438 ], [ 0.046692, -0.050812 ], [ 0.045319, -0.050812 ], [ 0.045319, -0.049438 ], [ 0.046692, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.050812 ], [ 0.046692, -0.052185 ], [ 0.045319, -0.052185 ], [ 0.045319, -0.050812 ], [ 0.046692, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.052185 ], [ 0.045319, -0.053558 ], [ 0.043945, -0.053558 ], [ 0.043945, -0.052185 ], [ 0.045319, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.053558 ], [ 0.045319, -0.054932 ], [ 0.043945, -0.054932 ], [ 0.043945, -0.053558 ], [ 0.045319, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.052185 ], [ 0.046692, -0.053558 ], [ 0.045319, -0.053558 ], [ 0.045319, -0.052185 ], [ 0.046692, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.053558 ], [ 0.046692, -0.054932 ], [ 0.045319, -0.054932 ], [ 0.045319, -0.053558 ], [ 0.046692, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.049438 ], [ 0.048065, -0.050812 ], [ 0.046692, -0.050812 ], [ 0.046692, -0.049438 ], [ 0.048065, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.050812 ], [ 0.048065, -0.052185 ], [ 0.046692, -0.052185 ], [ 0.046692, -0.050812 ], [ 0.048065, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.049438 ], [ 0.049438, -0.050812 ], [ 0.048065, -0.050812 ], [ 0.048065, -0.049438 ], [ 0.049438, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.050812 ], [ 0.049438, -0.052185 ], [ 0.048065, -0.052185 ], [ 0.048065, -0.050812 ], [ 0.049438, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.052185 ], [ 0.048065, -0.053558 ], [ 0.046692, -0.053558 ], [ 0.046692, -0.052185 ], [ 0.048065, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.053558 ], [ 0.048065, -0.054932 ], [ 0.046692, -0.054932 ], [ 0.046692, -0.053558 ], [ 0.048065, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.052185 ], [ 0.049438, -0.053558 ], [ 0.048065, -0.053558 ], [ 0.048065, -0.052185 ], [ 0.049438, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.053558 ], [ 0.049438, -0.054932 ], [ 0.048065, -0.054932 ], [ 0.048065, -0.053558 ], [ 0.049438, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.043945 ], [ 0.050812, -0.045319 ], [ 0.049438, -0.045319 ], [ 0.049438, -0.043945 ], [ 0.050812, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.045319 ], [ 0.050812, -0.046692 ], [ 0.049438, -0.046692 ], [ 0.049438, -0.045319 ], [ 0.050812, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.043945 ], [ 0.052185, -0.045319 ], [ 0.050812, -0.045319 ], [ 0.050812, -0.043945 ], [ 0.052185, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.045319 ], [ 0.052185, -0.046692 ], [ 0.050812, -0.046692 ], [ 0.050812, -0.045319 ], [ 0.052185, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.046692 ], [ 0.050812, -0.048065 ], [ 0.049438, -0.048065 ], [ 0.049438, -0.046692 ], [ 0.050812, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.048065 ], [ 0.050812, -0.049438 ], [ 0.049438, -0.049438 ], [ 0.049438, -0.048065 ], [ 0.050812, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.046692 ], [ 0.052185, -0.048065 ], [ 0.050812, -0.048065 ], [ 0.050812, -0.046692 ], [ 0.052185, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.048065 ], [ 0.052185, -0.049438 ], [ 0.050812, -0.049438 ], [ 0.050812, -0.048065 ], [ 0.052185, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.043945 ], [ 0.053558, -0.045319 ], [ 0.052185, -0.045319 ], [ 0.052185, -0.043945 ], [ 0.053558, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.045319 ], [ 0.053558, -0.046692 ], [ 0.052185, -0.046692 ], [ 0.052185, -0.045319 ], [ 0.053558, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.043945 ], [ 0.054932, -0.045319 ], [ 0.053558, -0.045319 ], [ 0.053558, -0.043945 ], [ 0.054932, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.045319 ], [ 0.054932, -0.046692 ], [ 0.053558, -0.046692 ], [ 0.053558, -0.045319 ], [ 0.054932, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.046692 ], [ 0.053558, -0.048065 ], [ 0.052185, -0.048065 ], [ 0.052185, -0.046692 ], [ 0.053558, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.048065 ], [ 0.053558, -0.049438 ], [ 0.052185, -0.049438 ], [ 0.052185, -0.048065 ], [ 0.053558, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.046692 ], [ 0.054932, -0.048065 ], [ 0.053558, -0.048065 ], [ 0.053558, -0.046692 ], [ 0.054932, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.048065 ], [ 0.054932, -0.049438 ], [ 0.053558, -0.049438 ], [ 0.053558, -0.048065 ], [ 0.054932, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.049438 ], [ 0.050812, -0.050812 ], [ 0.049438, -0.050812 ], [ 0.049438, -0.049438 ], [ 0.050812, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.050812 ], [ 0.050812, -0.052185 ], [ 0.049438, -0.052185 ], [ 0.049438, -0.050812 ], [ 0.050812, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.049438 ], [ 0.052185, -0.050812 ], [ 0.050812, -0.050812 ], [ 0.050812, -0.049438 ], [ 0.052185, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.050812 ], [ 0.052185, -0.052185 ], [ 0.050812, -0.052185 ], [ 0.050812, -0.050812 ], [ 0.052185, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.052185 ], [ 0.050812, -0.053558 ], [ 0.049438, -0.053558 ], [ 0.049438, -0.052185 ], [ 0.050812, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.053558 ], [ 0.050812, -0.054932 ], [ 0.049438, -0.054932 ], [ 0.049438, -0.053558 ], [ 0.050812, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.052185 ], [ 0.052185, -0.053558 ], [ 0.050812, -0.053558 ], [ 0.050812, -0.052185 ], [ 0.052185, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.053558 ], [ 0.052185, -0.054932 ], [ 0.050812, -0.054932 ], [ 0.050812, -0.053558 ], [ 0.052185, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.049438 ], [ 0.053558, -0.050812 ], [ 0.052185, -0.050812 ], [ 0.052185, -0.049438 ], [ 0.053558, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.050812 ], [ 0.053558, -0.052185 ], [ 0.052185, -0.052185 ], [ 0.052185, -0.050812 ], [ 0.053558, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.049438 ], [ 0.054932, -0.050812 ], [ 0.053558, -0.050812 ], [ 0.053558, -0.049438 ], [ 0.054932, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.050812 ], [ 0.054932, -0.052185 ], [ 0.053558, -0.052185 ], [ 0.053558, -0.050812 ], [ 0.054932, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.052185 ], [ 0.053558, -0.053558 ], [ 0.052185, -0.053558 ], [ 0.052185, -0.052185 ], [ 0.053558, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.053558 ], [ 0.053558, -0.054932 ], [ 0.052185, -0.054932 ], [ 0.052185, -0.053558 ], [ 0.053558, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.052185 ], [ 0.054932, -0.053558 ], [ 0.053558, -0.053558 ], [ 0.053558, -0.052185 ], [ 0.054932, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.053558 ], [ 0.054932, -0.054932 ], [ 0.053558, -0.054932 ], [ 0.053558, -0.053558 ], [ 0.054932, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.054932 ], [ 0.045319, -0.056305 ], [ 0.043945, -0.056305 ], [ 0.043945, -0.054932 ], [ 0.045319, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.056305 ], [ 0.045319, -0.057678 ], [ 0.043945, -0.057678 ], [ 0.043945, -0.056305 ], [ 0.045319, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.054932 ], [ 0.046692, -0.056305 ], [ 0.045319, -0.056305 ], [ 0.045319, -0.054932 ], [ 0.046692, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.056305 ], [ 0.046692, -0.057678 ], [ 0.045319, -0.057678 ], [ 0.045319, -0.056305 ], [ 0.046692, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.057678 ], [ 0.045319, -0.059052 ], [ 0.043945, -0.059052 ], [ 0.043945, -0.057678 ], [ 0.045319, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.059052 ], [ 0.045319, -0.060425 ], [ 0.043945, -0.060425 ], [ 0.043945, -0.059052 ], [ 0.045319, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.057678 ], [ 0.046692, -0.059052 ], [ 0.045319, -0.059052 ], [ 0.045319, -0.057678 ], [ 0.046692, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.059052 ], [ 0.046692, -0.060425 ], [ 0.045319, -0.060425 ], [ 0.045319, -0.059052 ], [ 0.046692, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.054932 ], [ 0.048065, -0.056305 ], [ 0.046692, -0.056305 ], [ 0.046692, -0.054932 ], [ 0.048065, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.056305 ], [ 0.048065, -0.057678 ], [ 0.046692, -0.057678 ], [ 0.046692, -0.056305 ], [ 0.048065, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.054932 ], [ 0.049438, -0.056305 ], [ 0.048065, -0.056305 ], [ 0.048065, -0.054932 ], [ 0.049438, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.056305 ], [ 0.049438, -0.057678 ], [ 0.048065, -0.057678 ], [ 0.048065, -0.056305 ], [ 0.049438, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.057678 ], [ 0.048065, -0.059052 ], [ 0.046692, -0.059052 ], [ 0.046692, -0.057678 ], [ 0.048065, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.059052 ], [ 0.048065, -0.060425 ], [ 0.046692, -0.060425 ], [ 0.046692, -0.059052 ], [ 0.048065, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.057678 ], [ 0.049438, -0.059052 ], [ 0.048065, -0.059052 ], [ 0.048065, -0.057678 ], [ 0.049438, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.059052 ], [ 0.049438, -0.060425 ], [ 0.048065, -0.060425 ], [ 0.048065, -0.059052 ], [ 0.049438, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.060425 ], [ 0.045319, -0.061798 ], [ 0.043945, -0.061798 ], [ 0.043945, -0.060425 ], [ 0.045319, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.061798 ], [ 0.045319, -0.063171 ], [ 0.043945, -0.063171 ], [ 0.043945, -0.061798 ], [ 0.045319, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.060425 ], [ 0.046692, -0.061798 ], [ 0.045319, -0.061798 ], [ 0.045319, -0.060425 ], [ 0.046692, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.061798 ], [ 0.046692, -0.063171 ], [ 0.045319, -0.063171 ], [ 0.045319, -0.061798 ], [ 0.046692, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.063171 ], [ 0.045319, -0.064545 ], [ 0.043945, -0.064545 ], [ 0.043945, -0.063171 ], [ 0.045319, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 32, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.045319, -0.064545 ], [ 0.045319, -0.065918 ], [ 0.043945, -0.065918 ], [ 0.043945, -0.064545 ], [ 0.045319, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.063171 ], [ 0.046692, -0.064545 ], [ 0.045319, -0.064545 ], [ 0.045319, -0.063171 ], [ 0.046692, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 33, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, -0.064545 ], [ 0.046692, -0.065918 ], [ 0.045319, -0.065918 ], [ 0.045319, -0.064545 ], [ 0.046692, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.060425 ], [ 0.048065, -0.061798 ], [ 0.046692, -0.061798 ], [ 0.046692, -0.060425 ], [ 0.048065, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.061798 ], [ 0.048065, -0.063171 ], [ 0.046692, -0.063171 ], [ 0.046692, -0.061798 ], [ 0.048065, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.060425 ], [ 0.049438, -0.061798 ], [ 0.048065, -0.061798 ], [ 0.048065, -0.060425 ], [ 0.049438, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.061798 ], [ 0.049438, -0.063171 ], [ 0.048065, -0.063171 ], [ 0.048065, -0.061798 ], [ 0.049438, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.063171 ], [ 0.048065, -0.064545 ], [ 0.046692, -0.064545 ], [ 0.046692, -0.063171 ], [ 0.048065, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 34, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.048065, -0.064545 ], [ 0.048065, -0.065918 ], [ 0.046692, -0.065918 ], [ 0.046692, -0.064545 ], [ 0.048065, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.063171 ], [ 0.049438, -0.064545 ], [ 0.048065, -0.064545 ], [ 0.048065, -0.063171 ], [ 0.049438, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 35, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, -0.064545 ], [ 0.049438, -0.065918 ], [ 0.048065, -0.065918 ], [ 0.048065, -0.064545 ], [ 0.049438, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.054932 ], [ 0.050812, -0.056305 ], [ 0.049438, -0.056305 ], [ 0.049438, -0.054932 ], [ 0.050812, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.056305 ], [ 0.050812, -0.057678 ], [ 0.049438, -0.057678 ], [ 0.049438, -0.056305 ], [ 0.050812, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.054932 ], [ 0.052185, -0.056305 ], [ 0.050812, -0.056305 ], [ 0.050812, -0.054932 ], [ 0.052185, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.056305 ], [ 0.052185, -0.057678 ], [ 0.050812, -0.057678 ], [ 0.050812, -0.056305 ], [ 0.052185, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.057678 ], [ 0.050812, -0.059052 ], [ 0.049438, -0.059052 ], [ 0.049438, -0.057678 ], [ 0.050812, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.059052 ], [ 0.050812, -0.060425 ], [ 0.049438, -0.060425 ], [ 0.049438, -0.059052 ], [ 0.050812, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.057678 ], [ 0.052185, -0.059052 ], [ 0.050812, -0.059052 ], [ 0.050812, -0.057678 ], [ 0.052185, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.059052 ], [ 0.052185, -0.060425 ], [ 0.050812, -0.060425 ], [ 0.050812, -0.059052 ], [ 0.052185, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.054932 ], [ 0.053558, -0.056305 ], [ 0.052185, -0.056305 ], [ 0.052185, -0.054932 ], [ 0.053558, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.056305 ], [ 0.053558, -0.057678 ], [ 0.052185, -0.057678 ], [ 0.052185, -0.056305 ], [ 0.053558, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.054932 ], [ 0.054932, -0.056305 ], [ 0.053558, -0.056305 ], [ 0.053558, -0.054932 ], [ 0.054932, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.056305 ], [ 0.054932, -0.057678 ], [ 0.053558, -0.057678 ], [ 0.053558, -0.056305 ], [ 0.054932, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.057678 ], [ 0.053558, -0.059052 ], [ 0.052185, -0.059052 ], [ 0.052185, -0.057678 ], [ 0.053558, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.059052 ], [ 0.053558, -0.060425 ], [ 0.052185, -0.060425 ], [ 0.052185, -0.059052 ], [ 0.053558, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.057678 ], [ 0.054932, -0.059052 ], [ 0.053558, -0.059052 ], [ 0.053558, -0.057678 ], [ 0.054932, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.059052 ], [ 0.054932, -0.060425 ], [ 0.053558, -0.060425 ], [ 0.053558, -0.059052 ], [ 0.054932, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.060425 ], [ 0.050812, -0.061798 ], [ 0.049438, -0.061798 ], [ 0.049438, -0.060425 ], [ 0.050812, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.061798 ], [ 0.050812, -0.063171 ], [ 0.049438, -0.063171 ], [ 0.049438, -0.061798 ], [ 0.050812, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.060425 ], [ 0.052185, -0.061798 ], [ 0.050812, -0.061798 ], [ 0.050812, -0.060425 ], [ 0.052185, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.061798 ], [ 0.052185, -0.063171 ], [ 0.050812, -0.063171 ], [ 0.050812, -0.061798 ], [ 0.052185, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.063171 ], [ 0.050812, -0.064545 ], [ 0.049438, -0.064545 ], [ 0.049438, -0.063171 ], [ 0.050812, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 36, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.050812, -0.064545 ], [ 0.050812, -0.065918 ], [ 0.049438, -0.065918 ], [ 0.049438, -0.064545 ], [ 0.050812, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.063171 ], [ 0.052185, -0.064545 ], [ 0.050812, -0.064545 ], [ 0.050812, -0.063171 ], [ 0.052185, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 37, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, -0.064545 ], [ 0.052185, -0.065918 ], [ 0.050812, -0.065918 ], [ 0.050812, -0.064545 ], [ 0.052185, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.060425 ], [ 0.053558, -0.061798 ], [ 0.052185, -0.061798 ], [ 0.052185, -0.060425 ], [ 0.053558, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.061798 ], [ 0.053558, -0.063171 ], [ 0.052185, -0.063171 ], [ 0.052185, -0.061798 ], [ 0.053558, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.060425 ], [ 0.054932, -0.061798 ], [ 0.053558, -0.061798 ], [ 0.053558, -0.060425 ], [ 0.054932, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.061798 ], [ 0.054932, -0.063171 ], [ 0.053558, -0.063171 ], [ 0.053558, -0.061798 ], [ 0.054932, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.063171 ], [ 0.053558, -0.064545 ], [ 0.052185, -0.064545 ], [ 0.052185, -0.063171 ], [ 0.053558, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 38, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.053558, -0.064545 ], [ 0.053558, -0.065918 ], [ 0.052185, -0.065918 ], [ 0.052185, -0.064545 ], [ 0.053558, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.063171 ], [ 0.054932, -0.064545 ], [ 0.053558, -0.064545 ], [ 0.053558, -0.063171 ], [ 0.054932, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 39, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, -0.064545 ], [ 0.054932, -0.065918 ], [ 0.053558, -0.065918 ], [ 0.053558, -0.064545 ], [ 0.054932, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.043945 ], [ 0.056305, -0.045319 ], [ 0.054932, -0.045319 ], [ 0.054932, -0.043945 ], [ 0.056305, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.045319 ], [ 0.056305, -0.046692 ], [ 0.054932, -0.046692 ], [ 0.054932, -0.045319 ], [ 0.056305, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.043945 ], [ 0.057678, -0.045319 ], [ 0.056305, -0.045319 ], [ 0.056305, -0.043945 ], [ 0.057678, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.045319 ], [ 0.057678, -0.046692 ], [ 0.056305, -0.046692 ], [ 0.056305, -0.045319 ], [ 0.057678, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.046692 ], [ 0.056305, -0.048065 ], [ 0.054932, -0.048065 ], [ 0.054932, -0.046692 ], [ 0.056305, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.048065 ], [ 0.056305, -0.049438 ], [ 0.054932, -0.049438 ], [ 0.054932, -0.048065 ], [ 0.056305, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.046692 ], [ 0.057678, -0.048065 ], [ 0.056305, -0.048065 ], [ 0.056305, -0.046692 ], [ 0.057678, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.048065 ], [ 0.057678, -0.049438 ], [ 0.056305, -0.049438 ], [ 0.056305, -0.048065 ], [ 0.057678, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.043945 ], [ 0.059052, -0.045319 ], [ 0.057678, -0.045319 ], [ 0.057678, -0.043945 ], [ 0.059052, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.045319 ], [ 0.059052, -0.046692 ], [ 0.057678, -0.046692 ], [ 0.057678, -0.045319 ], [ 0.059052, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.043945 ], [ 0.060425, -0.045319 ], [ 0.059052, -0.045319 ], [ 0.059052, -0.043945 ], [ 0.060425, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.045319 ], [ 0.060425, -0.046692 ], [ 0.059052, -0.046692 ], [ 0.059052, -0.045319 ], [ 0.060425, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.046692 ], [ 0.059052, -0.048065 ], [ 0.057678, -0.048065 ], [ 0.057678, -0.046692 ], [ 0.059052, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.048065 ], [ 0.059052, -0.049438 ], [ 0.057678, -0.049438 ], [ 0.057678, -0.048065 ], [ 0.059052, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.046692 ], [ 0.060425, -0.048065 ], [ 0.059052, -0.048065 ], [ 0.059052, -0.046692 ], [ 0.060425, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.048065 ], [ 0.060425, -0.049438 ], [ 0.059052, -0.049438 ], [ 0.059052, -0.048065 ], [ 0.060425, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.049438 ], [ 0.056305, -0.050812 ], [ 0.054932, -0.050812 ], [ 0.054932, -0.049438 ], [ 0.056305, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.050812 ], [ 0.056305, -0.052185 ], [ 0.054932, -0.052185 ], [ 0.054932, -0.050812 ], [ 0.056305, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.049438 ], [ 0.057678, -0.050812 ], [ 0.056305, -0.050812 ], [ 0.056305, -0.049438 ], [ 0.057678, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.050812 ], [ 0.057678, -0.052185 ], [ 0.056305, -0.052185 ], [ 0.056305, -0.050812 ], [ 0.057678, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.052185 ], [ 0.056305, -0.053558 ], [ 0.054932, -0.053558 ], [ 0.054932, -0.052185 ], [ 0.056305, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.053558 ], [ 0.056305, -0.054932 ], [ 0.054932, -0.054932 ], [ 0.054932, -0.053558 ], [ 0.056305, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.052185 ], [ 0.057678, -0.053558 ], [ 0.056305, -0.053558 ], [ 0.056305, -0.052185 ], [ 0.057678, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.053558 ], [ 0.057678, -0.054932 ], [ 0.056305, -0.054932 ], [ 0.056305, -0.053558 ], [ 0.057678, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.049438 ], [ 0.059052, -0.050812 ], [ 0.057678, -0.050812 ], [ 0.057678, -0.049438 ], [ 0.059052, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.050812 ], [ 0.059052, -0.052185 ], [ 0.057678, -0.052185 ], [ 0.057678, -0.050812 ], [ 0.059052, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.049438 ], [ 0.060425, -0.050812 ], [ 0.059052, -0.050812 ], [ 0.059052, -0.049438 ], [ 0.060425, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.050812 ], [ 0.060425, -0.052185 ], [ 0.059052, -0.052185 ], [ 0.059052, -0.050812 ], [ 0.060425, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.052185 ], [ 0.059052, -0.053558 ], [ 0.057678, -0.053558 ], [ 0.057678, -0.052185 ], [ 0.059052, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.053558 ], [ 0.059052, -0.054932 ], [ 0.057678, -0.054932 ], [ 0.057678, -0.053558 ], [ 0.059052, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.052185 ], [ 0.060425, -0.053558 ], [ 0.059052, -0.053558 ], [ 0.059052, -0.052185 ], [ 0.060425, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.053558 ], [ 0.060425, -0.054932 ], [ 0.059052, -0.054932 ], [ 0.059052, -0.053558 ], [ 0.060425, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.043945 ], [ 0.061798, -0.045319 ], [ 0.060425, -0.045319 ], [ 0.060425, -0.043945 ], [ 0.061798, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.045319 ], [ 0.061798, -0.046692 ], [ 0.060425, -0.046692 ], [ 0.060425, -0.045319 ], [ 0.061798, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.043945 ], [ 0.063171, -0.045319 ], [ 0.061798, -0.045319 ], [ 0.061798, -0.043945 ], [ 0.063171, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.045319 ], [ 0.063171, -0.046692 ], [ 0.061798, -0.046692 ], [ 0.061798, -0.045319 ], [ 0.063171, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.046692 ], [ 0.061798, -0.048065 ], [ 0.060425, -0.048065 ], [ 0.060425, -0.046692 ], [ 0.061798, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.048065 ], [ 0.061798, -0.049438 ], [ 0.060425, -0.049438 ], [ 0.060425, -0.048065 ], [ 0.061798, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.046692 ], [ 0.063171, -0.048065 ], [ 0.061798, -0.048065 ], [ 0.061798, -0.046692 ], [ 0.063171, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.048065 ], [ 0.063171, -0.049438 ], [ 0.061798, -0.049438 ], [ 0.061798, -0.048065 ], [ 0.063171, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.043945 ], [ 0.064545, -0.045319 ], [ 0.063171, -0.045319 ], [ 0.063171, -0.043945 ], [ 0.064545, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.045319 ], [ 0.064545, -0.046692 ], [ 0.063171, -0.046692 ], [ 0.063171, -0.045319 ], [ 0.064545, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 32 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.043945 ], [ 0.065918, -0.045319 ], [ 0.064545, -0.045319 ], [ 0.064545, -0.043945 ], [ 0.065918, -0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 33 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.045319 ], [ 0.065918, -0.046692 ], [ 0.064545, -0.046692 ], [ 0.064545, -0.045319 ], [ 0.065918, -0.045319 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.046692 ], [ 0.064545, -0.048065 ], [ 0.063171, -0.048065 ], [ 0.063171, -0.046692 ], [ 0.064545, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.048065 ], [ 0.064545, -0.049438 ], [ 0.063171, -0.049438 ], [ 0.063171, -0.048065 ], [ 0.064545, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 34 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.046692 ], [ 0.065918, -0.048065 ], [ 0.064545, -0.048065 ], [ 0.064545, -0.046692 ], [ 0.065918, -0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 35 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.048065 ], [ 0.065918, -0.049438 ], [ 0.064545, -0.049438 ], [ 0.064545, -0.048065 ], [ 0.065918, -0.048065 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.049438 ], [ 0.061798, -0.050812 ], [ 0.060425, -0.050812 ], [ 0.060425, -0.049438 ], [ 0.061798, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.050812 ], [ 0.061798, -0.052185 ], [ 0.060425, -0.052185 ], [ 0.060425, -0.050812 ], [ 0.061798, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.049438 ], [ 0.063171, -0.050812 ], [ 0.061798, -0.050812 ], [ 0.061798, -0.049438 ], [ 0.063171, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.050812 ], [ 0.063171, -0.052185 ], [ 0.061798, -0.052185 ], [ 0.061798, -0.050812 ], [ 0.063171, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.052185 ], [ 0.061798, -0.053558 ], [ 0.060425, -0.053558 ], [ 0.060425, -0.052185 ], [ 0.061798, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.053558 ], [ 0.061798, -0.054932 ], [ 0.060425, -0.054932 ], [ 0.060425, -0.053558 ], [ 0.061798, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.052185 ], [ 0.063171, -0.053558 ], [ 0.061798, -0.053558 ], [ 0.061798, -0.052185 ], [ 0.063171, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.053558 ], [ 0.063171, -0.054932 ], [ 0.061798, -0.054932 ], [ 0.061798, -0.053558 ], [ 0.063171, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.049438 ], [ 0.064545, -0.050812 ], [ 0.063171, -0.050812 ], [ 0.063171, -0.049438 ], [ 0.064545, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.050812 ], [ 0.064545, -0.052185 ], [ 0.063171, -0.052185 ], [ 0.063171, -0.050812 ], [ 0.064545, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 36 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.049438 ], [ 0.065918, -0.050812 ], [ 0.064545, -0.050812 ], [ 0.064545, -0.049438 ], [ 0.065918, -0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 37 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.050812 ], [ 0.065918, -0.052185 ], [ 0.064545, -0.052185 ], [ 0.064545, -0.050812 ], [ 0.065918, -0.050812 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.052185 ], [ 0.064545, -0.053558 ], [ 0.063171, -0.053558 ], [ 0.063171, -0.052185 ], [ 0.064545, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.053558 ], [ 0.064545, -0.054932 ], [ 0.063171, -0.054932 ], [ 0.063171, -0.053558 ], [ 0.064545, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 38 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.052185 ], [ 0.065918, -0.053558 ], [ 0.064545, -0.053558 ], [ 0.064545, -0.052185 ], [ 0.065918, -0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 39 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.053558 ], [ 0.065918, -0.054932 ], [ 0.064545, -0.054932 ], [ 0.064545, -0.053558 ], [ 0.065918, -0.053558 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.054932 ], [ 0.056305, -0.056305 ], [ 0.054932, -0.056305 ], [ 0.054932, -0.054932 ], [ 0.056305, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.056305 ], [ 0.056305, -0.057678 ], [ 0.054932, -0.057678 ], [ 0.054932, -0.056305 ], [ 0.056305, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.054932 ], [ 0.057678, -0.056305 ], [ 0.056305, -0.056305 ], [ 0.056305, -0.054932 ], [ 0.057678, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.056305 ], [ 0.057678, -0.057678 ], [ 0.056305, -0.057678 ], [ 0.056305, -0.056305 ], [ 0.057678, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.057678 ], [ 0.056305, -0.059052 ], [ 0.054932, -0.059052 ], [ 0.054932, -0.057678 ], [ 0.056305, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.059052 ], [ 0.056305, -0.060425 ], [ 0.054932, -0.060425 ], [ 0.054932, -0.059052 ], [ 0.056305, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.057678 ], [ 0.057678, -0.059052 ], [ 0.056305, -0.059052 ], [ 0.056305, -0.057678 ], [ 0.057678, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.059052 ], [ 0.057678, -0.060425 ], [ 0.056305, -0.060425 ], [ 0.056305, -0.059052 ], [ 0.057678, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.054932 ], [ 0.059052, -0.056305 ], [ 0.057678, -0.056305 ], [ 0.057678, -0.054932 ], [ 0.059052, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.056305 ], [ 0.059052, -0.057678 ], [ 0.057678, -0.057678 ], [ 0.057678, -0.056305 ], [ 0.059052, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.054932 ], [ 0.060425, -0.056305 ], [ 0.059052, -0.056305 ], [ 0.059052, -0.054932 ], [ 0.060425, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.056305 ], [ 0.060425, -0.057678 ], [ 0.059052, -0.057678 ], [ 0.059052, -0.056305 ], [ 0.060425, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.057678 ], [ 0.059052, -0.059052 ], [ 0.057678, -0.059052 ], [ 0.057678, -0.057678 ], [ 0.059052, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.059052 ], [ 0.059052, -0.060425 ], [ 0.057678, -0.060425 ], [ 0.057678, -0.059052 ], [ 0.059052, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.057678 ], [ 0.060425, -0.059052 ], [ 0.059052, -0.059052 ], [ 0.059052, -0.057678 ], [ 0.060425, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.059052 ], [ 0.060425, -0.060425 ], [ 0.059052, -0.060425 ], [ 0.059052, -0.059052 ], [ 0.060425, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.060425 ], [ 0.056305, -0.061798 ], [ 0.054932, -0.061798 ], [ 0.054932, -0.060425 ], [ 0.056305, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.061798 ], [ 0.056305, -0.063171 ], [ 0.054932, -0.063171 ], [ 0.054932, -0.061798 ], [ 0.056305, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.060425 ], [ 0.057678, -0.061798 ], [ 0.056305, -0.061798 ], [ 0.056305, -0.060425 ], [ 0.057678, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.061798 ], [ 0.057678, -0.063171 ], [ 0.056305, -0.063171 ], [ 0.056305, -0.061798 ], [ 0.057678, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.063171 ], [ 0.056305, -0.064545 ], [ 0.054932, -0.064545 ], [ 0.054932, -0.063171 ], [ 0.056305, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 40, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.056305, -0.064545 ], [ 0.056305, -0.065918 ], [ 0.054932, -0.065918 ], [ 0.054932, -0.064545 ], [ 0.056305, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.063171 ], [ 0.057678, -0.064545 ], [ 0.056305, -0.064545 ], [ 0.056305, -0.063171 ], [ 0.057678, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 41, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, -0.064545 ], [ 0.057678, -0.065918 ], [ 0.056305, -0.065918 ], [ 0.056305, -0.064545 ], [ 0.057678, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.060425 ], [ 0.059052, -0.061798 ], [ 0.057678, -0.061798 ], [ 0.057678, -0.060425 ], [ 0.059052, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.061798 ], [ 0.059052, -0.063171 ], [ 0.057678, -0.063171 ], [ 0.057678, -0.061798 ], [ 0.059052, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.060425 ], [ 0.060425, -0.061798 ], [ 0.059052, -0.061798 ], [ 0.059052, -0.060425 ], [ 0.060425, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.061798 ], [ 0.060425, -0.063171 ], [ 0.059052, -0.063171 ], [ 0.059052, -0.061798 ], [ 0.060425, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.063171 ], [ 0.059052, -0.064545 ], [ 0.057678, -0.064545 ], [ 0.057678, -0.063171 ], [ 0.059052, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 42, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.059052, -0.064545 ], [ 0.059052, -0.065918 ], [ 0.057678, -0.065918 ], [ 0.057678, -0.064545 ], [ 0.059052, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.063171 ], [ 0.060425, -0.064545 ], [ 0.059052, -0.064545 ], [ 0.059052, -0.063171 ], [ 0.060425, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 43, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, -0.064545 ], [ 0.060425, -0.065918 ], [ 0.059052, -0.065918 ], [ 0.059052, -0.064545 ], [ 0.060425, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.054932 ], [ 0.061798, -0.056305 ], [ 0.060425, -0.056305 ], [ 0.060425, -0.054932 ], [ 0.061798, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.056305 ], [ 0.061798, -0.057678 ], [ 0.060425, -0.057678 ], [ 0.060425, -0.056305 ], [ 0.061798, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.054932 ], [ 0.063171, -0.056305 ], [ 0.061798, -0.056305 ], [ 0.061798, -0.054932 ], [ 0.063171, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.056305 ], [ 0.063171, -0.057678 ], [ 0.061798, -0.057678 ], [ 0.061798, -0.056305 ], [ 0.063171, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.057678 ], [ 0.061798, -0.059052 ], [ 0.060425, -0.059052 ], [ 0.060425, -0.057678 ], [ 0.061798, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.059052 ], [ 0.061798, -0.060425 ], [ 0.060425, -0.060425 ], [ 0.060425, -0.059052 ], [ 0.061798, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.057678 ], [ 0.063171, -0.059052 ], [ 0.061798, -0.059052 ], [ 0.061798, -0.057678 ], [ 0.063171, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.059052 ], [ 0.063171, -0.060425 ], [ 0.061798, -0.060425 ], [ 0.061798, -0.059052 ], [ 0.063171, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.054932 ], [ 0.064545, -0.056305 ], [ 0.063171, -0.056305 ], [ 0.063171, -0.054932 ], [ 0.064545, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.056305 ], [ 0.064545, -0.057678 ], [ 0.063171, -0.057678 ], [ 0.063171, -0.056305 ], [ 0.064545, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 40 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.054932 ], [ 0.065918, -0.056305 ], [ 0.064545, -0.056305 ], [ 0.064545, -0.054932 ], [ 0.065918, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 41 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.056305 ], [ 0.065918, -0.057678 ], [ 0.064545, -0.057678 ], [ 0.064545, -0.056305 ], [ 0.065918, -0.056305 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.057678 ], [ 0.064545, -0.059052 ], [ 0.063171, -0.059052 ], [ 0.063171, -0.057678 ], [ 0.064545, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.059052 ], [ 0.064545, -0.060425 ], [ 0.063171, -0.060425 ], [ 0.063171, -0.059052 ], [ 0.064545, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 42 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.057678 ], [ 0.065918, -0.059052 ], [ 0.064545, -0.059052 ], [ 0.064545, -0.057678 ], [ 0.065918, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.059052 ], [ 0.065918, -0.060425 ], [ 0.064545, -0.060425 ], [ 0.064545, -0.059052 ], [ 0.065918, -0.059052 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.060425 ], [ 0.061798, -0.061798 ], [ 0.060425, -0.061798 ], [ 0.060425, -0.060425 ], [ 0.061798, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.061798 ], [ 0.061798, -0.063171 ], [ 0.060425, -0.063171 ], [ 0.060425, -0.061798 ], [ 0.061798, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.060425 ], [ 0.063171, -0.061798 ], [ 0.061798, -0.061798 ], [ 0.061798, -0.060425 ], [ 0.063171, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.061798 ], [ 0.063171, -0.063171 ], [ 0.061798, -0.063171 ], [ 0.061798, -0.061798 ], [ 0.063171, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.063171 ], [ 0.061798, -0.064545 ], [ 0.060425, -0.064545 ], [ 0.060425, -0.063171 ], [ 0.061798, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 44, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.061798, -0.064545 ], [ 0.061798, -0.065918 ], [ 0.060425, -0.065918 ], [ 0.060425, -0.064545 ], [ 0.061798, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.063171 ], [ 0.063171, -0.064545 ], [ 0.061798, -0.064545 ], [ 0.061798, -0.063171 ], [ 0.063171, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 45, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, -0.064545 ], [ 0.063171, -0.065918 ], [ 0.061798, -0.065918 ], [ 0.061798, -0.064545 ], [ 0.063171, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.060425 ], [ 0.064545, -0.061798 ], [ 0.063171, -0.061798 ], [ 0.063171, -0.060425 ], [ 0.064545, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.061798 ], [ 0.064545, -0.063171 ], [ 0.063171, -0.063171 ], [ 0.063171, -0.061798 ], [ 0.064545, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 44 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.060425 ], [ 0.065918, -0.061798 ], [ 0.064545, -0.061798 ], [ 0.064545, -0.060425 ], [ 0.065918, -0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 45 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.061798 ], [ 0.065918, -0.063171 ], [ 0.064545, -0.063171 ], [ 0.064545, -0.061798 ], [ 0.065918, -0.061798 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.063171 ], [ 0.064545, -0.064545 ], [ 0.063171, -0.064545 ], [ 0.063171, -0.063171 ], [ 0.064545, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 46, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.064545, -0.064545 ], [ 0.064545, -0.065918 ], [ 0.063171, -0.065918 ], [ 0.063171, -0.064545 ], [ 0.064545, -0.064545 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 46 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.063171 ], [ 0.065918, -0.064545 ], [ 0.064545, -0.064545 ], [ 0.064545, -0.063171 ], [ 0.065918, -0.063171 ] ] ] } } +, +{ "type": "Feature", "properties": { "x": 47, "y": 47 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, -0.064545 ], [ 0.065918, -0.065918 ], [ 0.064545, -0.065918 ], [ 0.064545, -0.064545 ], [ 0.065918, -0.064545 ] ] ] } } +] } +] } +] } diff --git a/tests/grid-unaligned/in.json b/tests/grid-unaligned/in.json new file mode 100644 index 000000000..0f36bf022 --- /dev/null +++ b/tests/grid-unaligned/in.json @@ -0,0 +1,1024 @@ +{"type": "Feature","properties": {"Tile":45,"Long":"0.0000000","Lat":"0.0000000","KPI":165,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0000000],[0.0026270,0.0000000],[0.0026270,0.0018000],[0.0000000,0.0018000],[0.0000000,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0000000","Lat":"0.0018000","KPI":853,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0018000],[0.0026270,0.0018000],[0.0026270,0.0036000],[0.0000000,0.0036000],[0.0000000,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0000000","Lat":"0.0036000","KPI":989,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0036000],[0.0026270,0.0036000],[0.0026270,0.0054000],[0.0000000,0.0054000],[0.0000000,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0000000","Lat":"0.0054000","KPI":825,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0054000],[0.0026270,0.0054000],[0.0026270,0.0072000],[0.0000000,0.0072000],[0.0000000,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0000000","Lat":"0.0072000","KPI":561,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0072000],[0.0026270,0.0072000],[0.0026270,0.0090000],[0.0000000,0.0090000],[0.0000000,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0000000","Lat":"0.0090000","KPI":102,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0090000],[0.0026270,0.0090000],[0.0026270,0.0108000],[0.0000000,0.0108000],[0.0000000,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0000000","Lat":"0.0108000","KPI":926,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0108000],[0.0026270,0.0108000],[0.0026270,0.0126000],[0.0000000,0.0126000],[0.0000000,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0000000","Lat":"0.0126000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0126000],[0.0026270,0.0126000],[0.0026270,0.0144000],[0.0000000,0.0144000],[0.0000000,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0000000","Lat":"0.0144000","KPI":906,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0144000],[0.0026270,0.0144000],[0.0026270,0.0162000],[0.0000000,0.0162000],[0.0000000,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0000000","Lat":"0.0162000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0162000],[0.0026270,0.0162000],[0.0026270,0.0180000],[0.0000000,0.0180000],[0.0000000,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0000000","Lat":"0.0180000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0180000],[0.0026270,0.0180000],[0.0026270,0.0198000],[0.0000000,0.0198000],[0.0000000,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0000000","Lat":"0.0198000","KPI":628,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0198000],[0.0026270,0.0198000],[0.0026270,0.0216000],[0.0000000,0.0216000],[0.0000000,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0000000","Lat":"0.0216000","KPI":945,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0216000],[0.0026270,0.0216000],[0.0026270,0.0234000],[0.0000000,0.0234000],[0.0000000,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0000000","Lat":"0.0234000","KPI":32,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0234000],[0.0026270,0.0234000],[0.0026270,0.0252000],[0.0000000,0.0252000],[0.0000000,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0000000","Lat":"0.0252000","KPI":393,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0252000],[0.0026270,0.0252000],[0.0026270,0.0270000],[0.0000000,0.0270000],[0.0000000,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0000000","Lat":"0.0270000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0270000],[0.0026270,0.0270000],[0.0026270,0.0288000],[0.0000000,0.0288000],[0.0000000,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0000000","Lat":"0.0288000","KPI":520,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0288000],[0.0026270,0.0288000],[0.0026270,0.0306000],[0.0000000,0.0306000],[0.0000000,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0000000","Lat":"0.0306000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0306000],[0.0026270,0.0306000],[0.0026270,0.0324000],[0.0000000,0.0324000],[0.0000000,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0000000","Lat":"0.0324000","KPI":303,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0324000],[0.0026270,0.0324000],[0.0026270,0.0342000],[0.0000000,0.0342000],[0.0000000,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0000000","Lat":"0.0342000","KPI":951,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0342000],[0.0026270,0.0342000],[0.0026270,0.0360000],[0.0000000,0.0360000],[0.0000000,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0000000","Lat":"0.0360000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0360000],[0.0026270,0.0360000],[0.0026270,0.0378000],[0.0000000,0.0378000],[0.0000000,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0000000","Lat":"0.0378000","KPI":941,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0378000],[0.0026270,0.0378000],[0.0026270,0.0396000],[0.0000000,0.0396000],[0.0000000,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0000000","Lat":"0.0396000","KPI":441,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0396000],[0.0026270,0.0396000],[0.0026270,0.0414000],[0.0000000,0.0414000],[0.0000000,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0000000","Lat":"0.0414000","KPI":88,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0414000],[0.0026270,0.0414000],[0.0026270,0.0432000],[0.0000000,0.0432000],[0.0000000,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0000000","Lat":"0.0432000","KPI":405,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0432000],[0.0026270,0.0432000],[0.0026270,0.0450000],[0.0000000,0.0450000],[0.0000000,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0000000","Lat":"0.0450000","KPI":310,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0450000],[0.0026270,0.0450000],[0.0026270,0.0468000],[0.0000000,0.0468000],[0.0000000,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0000000","Lat":"0.0468000","KPI":548,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0468000],[0.0026270,0.0468000],[0.0026270,0.0486000],[0.0000000,0.0486000],[0.0000000,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0000000","Lat":"0.0486000","KPI":953,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0486000],[0.0026270,0.0486000],[0.0026270,0.0504000],[0.0000000,0.0504000],[0.0000000,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0000000","Lat":"0.0504000","KPI":692,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0504000],[0.0026270,0.0504000],[0.0026270,0.0522000],[0.0000000,0.0522000],[0.0000000,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0000000","Lat":"0.0522000","KPI":40,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0522000],[0.0026270,0.0522000],[0.0026270,0.0540000],[0.0000000,0.0540000],[0.0000000,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0000000","Lat":"0.0540000","KPI":355,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0540000],[0.0026270,0.0540000],[0.0026270,0.0558000],[0.0000000,0.0558000],[0.0000000,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0000000","Lat":"0.0558000","KPI":474,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0558000],[0.0026270,0.0558000],[0.0026270,0.0576000],[0.0000000,0.0576000],[0.0000000,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0026270","Lat":"0.0000000","KPI":533,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0000000],[0.0052541,0.0000000],[0.0052541,0.0018000],[0.0026270,0.0018000],[0.0026270,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0026270","Lat":"0.0018000","KPI":67,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0018000],[0.0052541,0.0018000],[0.0052541,0.0036000],[0.0026270,0.0036000],[0.0026270,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0026270","Lat":"0.0036000","KPI":361,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0036000],[0.0052541,0.0036000],[0.0052541,0.0054000],[0.0026270,0.0054000],[0.0026270,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0026270","Lat":"0.0054000","KPI":347,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0054000],[0.0052541,0.0054000],[0.0052541,0.0072000],[0.0026270,0.0072000],[0.0026270,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0026270","Lat":"0.0072000","KPI":624,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0072000],[0.0052541,0.0072000],[0.0052541,0.0090000],[0.0026270,0.0090000],[0.0026270,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0026270","Lat":"0.0090000","KPI":298,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0090000],[0.0052541,0.0090000],[0.0052541,0.0108000],[0.0026270,0.0108000],[0.0026270,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0026270","Lat":"0.0108000","KPI":688,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0108000],[0.0052541,0.0108000],[0.0052541,0.0126000],[0.0026270,0.0126000],[0.0026270,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0026270","Lat":"0.0126000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0126000],[0.0052541,0.0126000],[0.0052541,0.0144000],[0.0026270,0.0144000],[0.0026270,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0026270","Lat":"0.0144000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0144000],[0.0052541,0.0144000],[0.0052541,0.0162000],[0.0026270,0.0162000],[0.0026270,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0026270","Lat":"0.0162000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0162000],[0.0052541,0.0162000],[0.0052541,0.0180000],[0.0026270,0.0180000],[0.0026270,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0026270","Lat":"0.0180000","KPI":718,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0180000],[0.0052541,0.0180000],[0.0052541,0.0198000],[0.0026270,0.0198000],[0.0026270,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0026270","Lat":"0.0198000","KPI":839,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0198000],[0.0052541,0.0198000],[0.0052541,0.0216000],[0.0026270,0.0216000],[0.0026270,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0026270","Lat":"0.0216000","KPI":993,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0216000],[0.0052541,0.0216000],[0.0052541,0.0234000],[0.0026270,0.0234000],[0.0026270,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0026270","Lat":"0.0234000","KPI":577,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0234000],[0.0052541,0.0234000],[0.0052541,0.0252000],[0.0026270,0.0252000],[0.0026270,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0026270","Lat":"0.0252000","KPI":445,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0252000],[0.0052541,0.0252000],[0.0052541,0.0270000],[0.0026270,0.0270000],[0.0026270,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0026270","Lat":"0.0270000","KPI":943,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0270000],[0.0052541,0.0270000],[0.0052541,0.0288000],[0.0026270,0.0288000],[0.0026270,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0026270","Lat":"0.0288000","KPI":675,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0288000],[0.0052541,0.0288000],[0.0052541,0.0306000],[0.0026270,0.0306000],[0.0026270,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0026270","Lat":"0.0306000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0306000],[0.0052541,0.0306000],[0.0052541,0.0324000],[0.0026270,0.0324000],[0.0026270,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0026270","Lat":"0.0324000","KPI":732,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0324000],[0.0052541,0.0324000],[0.0052541,0.0342000],[0.0026270,0.0342000],[0.0026270,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0026270","Lat":"0.0342000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0342000],[0.0052541,0.0342000],[0.0052541,0.0360000],[0.0026270,0.0360000],[0.0026270,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0026270","Lat":"0.0360000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0360000],[0.0052541,0.0360000],[0.0052541,0.0378000],[0.0026270,0.0378000],[0.0026270,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0026270","Lat":"0.0378000","KPI":867,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0378000],[0.0052541,0.0378000],[0.0052541,0.0396000],[0.0026270,0.0396000],[0.0026270,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0026270","Lat":"0.0396000","KPI":927,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0396000],[0.0052541,0.0396000],[0.0052541,0.0414000],[0.0026270,0.0414000],[0.0026270,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0026270","Lat":"0.0414000","KPI":718,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0414000],[0.0052541,0.0414000],[0.0052541,0.0432000],[0.0026270,0.0432000],[0.0026270,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0026270","Lat":"0.0432000","KPI":588,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0432000],[0.0052541,0.0432000],[0.0052541,0.0450000],[0.0026270,0.0450000],[0.0026270,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0026270","Lat":"0.0450000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0450000],[0.0052541,0.0450000],[0.0052541,0.0468000],[0.0026270,0.0468000],[0.0026270,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0026270","Lat":"0.0468000","KPI":510,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0468000],[0.0052541,0.0468000],[0.0052541,0.0486000],[0.0026270,0.0486000],[0.0026270,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0026270","Lat":"0.0486000","KPI":871,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0486000],[0.0052541,0.0486000],[0.0052541,0.0504000],[0.0026270,0.0504000],[0.0026270,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0026270","Lat":"0.0504000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0504000],[0.0052541,0.0504000],[0.0052541,0.0522000],[0.0026270,0.0522000],[0.0026270,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0026270","Lat":"0.0522000","KPI":116,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0522000],[0.0052541,0.0522000],[0.0052541,0.0540000],[0.0026270,0.0540000],[0.0026270,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0026270","Lat":"0.0540000","KPI":734,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0540000],[0.0052541,0.0540000],[0.0052541,0.0558000],[0.0026270,0.0558000],[0.0026270,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0026270","Lat":"0.0558000","KPI":434,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0558000],[0.0052541,0.0558000],[0.0052541,0.0576000],[0.0026270,0.0576000],[0.0026270,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0052541","Lat":"0.0000000","KPI":3,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0000000],[0.0078811,0.0000000],[0.0078811,0.0018000],[0.0052541,0.0018000],[0.0052541,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0052541","Lat":"0.0018000","KPI":327,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0018000],[0.0078811,0.0018000],[0.0078811,0.0036000],[0.0052541,0.0036000],[0.0052541,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0052541","Lat":"0.0036000","KPI":430,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0036000],[0.0078811,0.0036000],[0.0078811,0.0054000],[0.0052541,0.0054000],[0.0052541,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0052541","Lat":"0.0054000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0054000],[0.0078811,0.0054000],[0.0078811,0.0072000],[0.0052541,0.0072000],[0.0052541,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0052541","Lat":"0.0072000","KPI":633,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0072000],[0.0078811,0.0072000],[0.0078811,0.0090000],[0.0052541,0.0090000],[0.0052541,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0052541","Lat":"0.0090000","KPI":161,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0090000],[0.0078811,0.0090000],[0.0078811,0.0108000],[0.0052541,0.0108000],[0.0052541,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0052541","Lat":"0.0108000","KPI":432,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0108000],[0.0078811,0.0108000],[0.0078811,0.0126000],[0.0052541,0.0126000],[0.0052541,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0052541","Lat":"0.0126000","KPI":49,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0126000],[0.0078811,0.0126000],[0.0078811,0.0144000],[0.0052541,0.0144000],[0.0052541,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0052541","Lat":"0.0144000","KPI":224,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0144000],[0.0078811,0.0144000],[0.0078811,0.0162000],[0.0052541,0.0162000],[0.0052541,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0052541","Lat":"0.0162000","KPI":361,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0162000],[0.0078811,0.0162000],[0.0078811,0.0180000],[0.0052541,0.0180000],[0.0052541,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0052541","Lat":"0.0180000","KPI":316,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0180000],[0.0078811,0.0180000],[0.0078811,0.0198000],[0.0052541,0.0198000],[0.0052541,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0052541","Lat":"0.0198000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0198000],[0.0078811,0.0198000],[0.0078811,0.0216000],[0.0052541,0.0216000],[0.0052541,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0052541","Lat":"0.0216000","KPI":254,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0216000],[0.0078811,0.0216000],[0.0078811,0.0234000],[0.0052541,0.0234000],[0.0052541,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0052541","Lat":"0.0234000","KPI":254,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0234000],[0.0078811,0.0234000],[0.0078811,0.0252000],[0.0052541,0.0252000],[0.0052541,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0052541","Lat":"0.0252000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0252000],[0.0078811,0.0252000],[0.0078811,0.0270000],[0.0052541,0.0270000],[0.0052541,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0052541","Lat":"0.0270000","KPI":500,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0270000],[0.0078811,0.0270000],[0.0078811,0.0288000],[0.0052541,0.0288000],[0.0052541,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0052541","Lat":"0.0288000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0288000],[0.0078811,0.0288000],[0.0078811,0.0306000],[0.0052541,0.0306000],[0.0052541,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0052541","Lat":"0.0306000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0306000],[0.0078811,0.0306000],[0.0078811,0.0324000],[0.0052541,0.0324000],[0.0052541,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0052541","Lat":"0.0324000","KPI":36,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0324000],[0.0078811,0.0324000],[0.0078811,0.0342000],[0.0052541,0.0342000],[0.0052541,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0052541","Lat":"0.0342000","KPI":868,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0342000],[0.0078811,0.0342000],[0.0078811,0.0360000],[0.0052541,0.0360000],[0.0052541,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0052541","Lat":"0.0360000","KPI":238,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0360000],[0.0078811,0.0360000],[0.0078811,0.0378000],[0.0052541,0.0378000],[0.0052541,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0052541","Lat":"0.0378000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0378000],[0.0078811,0.0378000],[0.0078811,0.0396000],[0.0052541,0.0396000],[0.0052541,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0052541","Lat":"0.0396000","KPI":181,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0396000],[0.0078811,0.0396000],[0.0078811,0.0414000],[0.0052541,0.0414000],[0.0052541,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0052541","Lat":"0.0414000","KPI":683,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0414000],[0.0078811,0.0414000],[0.0078811,0.0432000],[0.0052541,0.0432000],[0.0052541,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0052541","Lat":"0.0432000","KPI":288,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0432000],[0.0078811,0.0432000],[0.0078811,0.0450000],[0.0052541,0.0450000],[0.0052541,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0052541","Lat":"0.0450000","KPI":782,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0450000],[0.0078811,0.0450000],[0.0078811,0.0468000],[0.0052541,0.0468000],[0.0052541,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0052541","Lat":"0.0468000","KPI":2,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0468000],[0.0078811,0.0468000],[0.0078811,0.0486000],[0.0052541,0.0486000],[0.0052541,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0052541","Lat":"0.0486000","KPI":61,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0486000],[0.0078811,0.0486000],[0.0078811,0.0504000],[0.0052541,0.0504000],[0.0052541,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0052541","Lat":"0.0504000","KPI":954,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0504000],[0.0078811,0.0504000],[0.0078811,0.0522000],[0.0052541,0.0522000],[0.0052541,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0052541","Lat":"0.0522000","KPI":11,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0522000],[0.0078811,0.0522000],[0.0078811,0.0540000],[0.0052541,0.0540000],[0.0052541,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0052541","Lat":"0.0540000","KPI":400,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0540000],[0.0078811,0.0540000],[0.0078811,0.0558000],[0.0052541,0.0558000],[0.0052541,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0052541","Lat":"0.0558000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0558000],[0.0078811,0.0558000],[0.0078811,0.0576000],[0.0052541,0.0576000],[0.0052541,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0078811","Lat":"0.0000000","KPI":698,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0000000],[0.0105082,0.0000000],[0.0105082,0.0018000],[0.0078811,0.0018000],[0.0078811,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0078811","Lat":"0.0018000","KPI":597,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0018000],[0.0105082,0.0018000],[0.0105082,0.0036000],[0.0078811,0.0036000],[0.0078811,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0078811","Lat":"0.0036000","KPI":80,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0036000],[0.0105082,0.0036000],[0.0105082,0.0054000],[0.0078811,0.0054000],[0.0078811,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0078811","Lat":"0.0054000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0054000],[0.0105082,0.0054000],[0.0105082,0.0072000],[0.0078811,0.0072000],[0.0078811,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0078811","Lat":"0.0072000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0072000],[0.0105082,0.0072000],[0.0105082,0.0090000],[0.0078811,0.0090000],[0.0078811,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0078811","Lat":"0.0090000","KPI":364,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0090000],[0.0105082,0.0090000],[0.0105082,0.0108000],[0.0078811,0.0108000],[0.0078811,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0078811","Lat":"0.0108000","KPI":793,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0108000],[0.0105082,0.0108000],[0.0105082,0.0126000],[0.0078811,0.0126000],[0.0078811,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0078811","Lat":"0.0126000","KPI":34,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0126000],[0.0105082,0.0126000],[0.0105082,0.0144000],[0.0078811,0.0144000],[0.0078811,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0078811","Lat":"0.0144000","KPI":857,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0144000],[0.0105082,0.0144000],[0.0105082,0.0162000],[0.0078811,0.0162000],[0.0078811,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0078811","Lat":"0.0162000","KPI":287,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0162000],[0.0105082,0.0162000],[0.0105082,0.0180000],[0.0078811,0.0180000],[0.0078811,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0078811","Lat":"0.0180000","KPI":415,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0180000],[0.0105082,0.0180000],[0.0105082,0.0198000],[0.0078811,0.0198000],[0.0078811,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0078811","Lat":"0.0198000","KPI":30,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0198000],[0.0105082,0.0198000],[0.0105082,0.0216000],[0.0078811,0.0216000],[0.0078811,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0078811","Lat":"0.0216000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0216000],[0.0105082,0.0216000],[0.0105082,0.0234000],[0.0078811,0.0234000],[0.0078811,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0078811","Lat":"0.0234000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0234000],[0.0105082,0.0234000],[0.0105082,0.0252000],[0.0078811,0.0252000],[0.0078811,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0078811","Lat":"0.0252000","KPI":810,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0252000],[0.0105082,0.0252000],[0.0105082,0.0270000],[0.0078811,0.0270000],[0.0078811,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0078811","Lat":"0.0270000","KPI":690,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0270000],[0.0105082,0.0270000],[0.0105082,0.0288000],[0.0078811,0.0288000],[0.0078811,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0078811","Lat":"0.0288000","KPI":462,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0288000],[0.0105082,0.0288000],[0.0105082,0.0306000],[0.0078811,0.0306000],[0.0078811,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0078811","Lat":"0.0306000","KPI":28,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0306000],[0.0105082,0.0306000],[0.0105082,0.0324000],[0.0078811,0.0324000],[0.0078811,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0078811","Lat":"0.0324000","KPI":661,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0324000],[0.0105082,0.0324000],[0.0105082,0.0342000],[0.0078811,0.0342000],[0.0078811,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0078811","Lat":"0.0342000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0342000],[0.0105082,0.0342000],[0.0105082,0.0360000],[0.0078811,0.0360000],[0.0078811,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0078811","Lat":"0.0360000","KPI":188,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0360000],[0.0105082,0.0360000],[0.0105082,0.0378000],[0.0078811,0.0378000],[0.0078811,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0078811","Lat":"0.0378000","KPI":201,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0378000],[0.0105082,0.0378000],[0.0105082,0.0396000],[0.0078811,0.0396000],[0.0078811,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0078811","Lat":"0.0396000","KPI":714,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0396000],[0.0105082,0.0396000],[0.0105082,0.0414000],[0.0078811,0.0414000],[0.0078811,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0078811","Lat":"0.0414000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0414000],[0.0105082,0.0414000],[0.0105082,0.0432000],[0.0078811,0.0432000],[0.0078811,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0078811","Lat":"0.0432000","KPI":147,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0432000],[0.0105082,0.0432000],[0.0105082,0.0450000],[0.0078811,0.0450000],[0.0078811,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0078811","Lat":"0.0450000","KPI":87,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0450000],[0.0105082,0.0450000],[0.0105082,0.0468000],[0.0078811,0.0468000],[0.0078811,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0078811","Lat":"0.0468000","KPI":127,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0468000],[0.0105082,0.0468000],[0.0105082,0.0486000],[0.0078811,0.0486000],[0.0078811,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0078811","Lat":"0.0486000","KPI":551,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0486000],[0.0105082,0.0486000],[0.0105082,0.0504000],[0.0078811,0.0504000],[0.0078811,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0078811","Lat":"0.0504000","KPI":663,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0504000],[0.0105082,0.0504000],[0.0105082,0.0522000],[0.0078811,0.0522000],[0.0078811,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0078811","Lat":"0.0522000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0522000],[0.0105082,0.0522000],[0.0105082,0.0540000],[0.0078811,0.0540000],[0.0078811,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0078811","Lat":"0.0540000","KPI":864,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0540000],[0.0105082,0.0540000],[0.0105082,0.0558000],[0.0078811,0.0558000],[0.0078811,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0078811","Lat":"0.0558000","KPI":790,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0558000],[0.0105082,0.0558000],[0.0105082,0.0576000],[0.0078811,0.0576000],[0.0078811,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0105082","Lat":"0.0000000","KPI":147,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0000000],[0.0131352,0.0000000],[0.0131352,0.0018000],[0.0105082,0.0018000],[0.0105082,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0105082","Lat":"0.0018000","KPI":418,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0018000],[0.0131352,0.0018000],[0.0131352,0.0036000],[0.0105082,0.0036000],[0.0105082,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0105082","Lat":"0.0036000","KPI":327,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0036000],[0.0131352,0.0036000],[0.0131352,0.0054000],[0.0105082,0.0054000],[0.0105082,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0105082","Lat":"0.0054000","KPI":122,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0054000],[0.0131352,0.0054000],[0.0131352,0.0072000],[0.0105082,0.0072000],[0.0105082,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0105082","Lat":"0.0072000","KPI":494,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0072000],[0.0131352,0.0072000],[0.0131352,0.0090000],[0.0105082,0.0090000],[0.0105082,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0105082","Lat":"0.0090000","KPI":218,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0090000],[0.0131352,0.0090000],[0.0131352,0.0108000],[0.0105082,0.0108000],[0.0105082,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0105082","Lat":"0.0108000","KPI":662,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0108000],[0.0131352,0.0108000],[0.0131352,0.0126000],[0.0105082,0.0126000],[0.0105082,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0105082","Lat":"0.0126000","KPI":991,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0126000],[0.0131352,0.0126000],[0.0131352,0.0144000],[0.0105082,0.0144000],[0.0105082,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0105082","Lat":"0.0144000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0144000],[0.0131352,0.0144000],[0.0131352,0.0162000],[0.0105082,0.0162000],[0.0105082,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0105082","Lat":"0.0162000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0162000],[0.0131352,0.0162000],[0.0131352,0.0180000],[0.0105082,0.0180000],[0.0105082,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0105082","Lat":"0.0180000","KPI":442,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0180000],[0.0131352,0.0180000],[0.0131352,0.0198000],[0.0105082,0.0198000],[0.0105082,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0105082","Lat":"0.0198000","KPI":199,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0198000],[0.0131352,0.0198000],[0.0131352,0.0216000],[0.0105082,0.0216000],[0.0105082,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0105082","Lat":"0.0216000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0216000],[0.0131352,0.0216000],[0.0131352,0.0234000],[0.0105082,0.0234000],[0.0105082,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0105082","Lat":"0.0234000","KPI":784,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0234000],[0.0131352,0.0234000],[0.0131352,0.0252000],[0.0105082,0.0252000],[0.0105082,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0105082","Lat":"0.0252000","KPI":656,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0252000],[0.0131352,0.0252000],[0.0131352,0.0270000],[0.0105082,0.0270000],[0.0105082,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0105082","Lat":"0.0270000","KPI":823,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0270000],[0.0131352,0.0270000],[0.0131352,0.0288000],[0.0105082,0.0288000],[0.0105082,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0105082","Lat":"0.0288000","KPI":913,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0288000],[0.0131352,0.0288000],[0.0131352,0.0306000],[0.0105082,0.0306000],[0.0105082,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0105082","Lat":"0.0306000","KPI":691,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0306000],[0.0131352,0.0306000],[0.0131352,0.0324000],[0.0105082,0.0324000],[0.0105082,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0105082","Lat":"0.0324000","KPI":198,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0324000],[0.0131352,0.0324000],[0.0131352,0.0342000],[0.0105082,0.0342000],[0.0105082,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0105082","Lat":"0.0342000","KPI":517,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0342000],[0.0131352,0.0342000],[0.0131352,0.0360000],[0.0105082,0.0360000],[0.0105082,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0105082","Lat":"0.0360000","KPI":802,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0360000],[0.0131352,0.0360000],[0.0131352,0.0378000],[0.0105082,0.0378000],[0.0105082,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0105082","Lat":"0.0378000","KPI":618,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0378000],[0.0131352,0.0378000],[0.0131352,0.0396000],[0.0105082,0.0396000],[0.0105082,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0105082","Lat":"0.0396000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0396000],[0.0131352,0.0396000],[0.0131352,0.0414000],[0.0105082,0.0414000],[0.0105082,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0105082","Lat":"0.0414000","KPI":733,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0414000],[0.0131352,0.0414000],[0.0131352,0.0432000],[0.0105082,0.0432000],[0.0105082,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0105082","Lat":"0.0432000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0432000],[0.0131352,0.0432000],[0.0131352,0.0450000],[0.0105082,0.0450000],[0.0105082,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0105082","Lat":"0.0450000","KPI":246,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0450000],[0.0131352,0.0450000],[0.0131352,0.0468000],[0.0105082,0.0468000],[0.0105082,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0105082","Lat":"0.0468000","KPI":643,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0468000],[0.0131352,0.0468000],[0.0131352,0.0486000],[0.0105082,0.0486000],[0.0105082,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0105082","Lat":"0.0486000","KPI":595,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0486000],[0.0131352,0.0486000],[0.0131352,0.0504000],[0.0105082,0.0504000],[0.0105082,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0105082","Lat":"0.0504000","KPI":426,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0504000],[0.0131352,0.0504000],[0.0131352,0.0522000],[0.0105082,0.0522000],[0.0105082,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0105082","Lat":"0.0522000","KPI":87,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0522000],[0.0131352,0.0522000],[0.0131352,0.0540000],[0.0105082,0.0540000],[0.0105082,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0105082","Lat":"0.0540000","KPI":922,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0540000],[0.0131352,0.0540000],[0.0131352,0.0558000],[0.0105082,0.0558000],[0.0105082,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0105082","Lat":"0.0558000","KPI":438,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0558000],[0.0131352,0.0558000],[0.0131352,0.0576000],[0.0105082,0.0576000],[0.0105082,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0131352","Lat":"0.0000000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0000000],[0.0157622,0.0000000],[0.0157622,0.0018000],[0.0131352,0.0018000],[0.0131352,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0131352","Lat":"0.0018000","KPI":435,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0018000],[0.0157622,0.0018000],[0.0157622,0.0036000],[0.0131352,0.0036000],[0.0131352,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0131352","Lat":"0.0036000","KPI":346,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0036000],[0.0157622,0.0036000],[0.0157622,0.0054000],[0.0131352,0.0054000],[0.0131352,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0131352","Lat":"0.0054000","KPI":265,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0054000],[0.0157622,0.0054000],[0.0157622,0.0072000],[0.0131352,0.0072000],[0.0131352,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0131352","Lat":"0.0072000","KPI":413,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0072000],[0.0157622,0.0072000],[0.0157622,0.0090000],[0.0131352,0.0090000],[0.0131352,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0131352","Lat":"0.0090000","KPI":211,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0090000],[0.0157622,0.0090000],[0.0157622,0.0108000],[0.0131352,0.0108000],[0.0131352,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0131352","Lat":"0.0108000","KPI":223,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0108000],[0.0157622,0.0108000],[0.0157622,0.0126000],[0.0131352,0.0126000],[0.0131352,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0131352","Lat":"0.0126000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0126000],[0.0157622,0.0126000],[0.0157622,0.0144000],[0.0131352,0.0144000],[0.0131352,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0131352","Lat":"0.0144000","KPI":890,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0144000],[0.0157622,0.0144000],[0.0157622,0.0162000],[0.0131352,0.0162000],[0.0131352,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0131352","Lat":"0.0162000","KPI":312,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0162000],[0.0157622,0.0162000],[0.0157622,0.0180000],[0.0131352,0.0180000],[0.0131352,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0131352","Lat":"0.0180000","KPI":495,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0180000],[0.0157622,0.0180000],[0.0157622,0.0198000],[0.0131352,0.0198000],[0.0131352,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0131352","Lat":"0.0198000","KPI":674,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0198000],[0.0157622,0.0198000],[0.0157622,0.0216000],[0.0131352,0.0216000],[0.0131352,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0131352","Lat":"0.0216000","KPI":987,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0216000],[0.0157622,0.0216000],[0.0157622,0.0234000],[0.0131352,0.0234000],[0.0131352,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0131352","Lat":"0.0234000","KPI":367,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0234000],[0.0157622,0.0234000],[0.0157622,0.0252000],[0.0131352,0.0252000],[0.0131352,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0131352","Lat":"0.0252000","KPI":109,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0252000],[0.0157622,0.0252000],[0.0157622,0.0270000],[0.0131352,0.0270000],[0.0131352,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0131352","Lat":"0.0270000","KPI":391,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0270000],[0.0157622,0.0270000],[0.0157622,0.0288000],[0.0131352,0.0288000],[0.0131352,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0131352","Lat":"0.0288000","KPI":190,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0288000],[0.0157622,0.0288000],[0.0157622,0.0306000],[0.0131352,0.0306000],[0.0131352,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0131352","Lat":"0.0306000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0306000],[0.0157622,0.0306000],[0.0157622,0.0324000],[0.0131352,0.0324000],[0.0131352,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0131352","Lat":"0.0324000","KPI":416,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0324000],[0.0157622,0.0324000],[0.0157622,0.0342000],[0.0131352,0.0342000],[0.0131352,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0131352","Lat":"0.0342000","KPI":261,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0342000],[0.0157622,0.0342000],[0.0157622,0.0360000],[0.0131352,0.0360000],[0.0131352,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0131352","Lat":"0.0360000","KPI":443,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0360000],[0.0157622,0.0360000],[0.0157622,0.0378000],[0.0131352,0.0378000],[0.0131352,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0131352","Lat":"0.0378000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0378000],[0.0157622,0.0378000],[0.0157622,0.0396000],[0.0131352,0.0396000],[0.0131352,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0131352","Lat":"0.0396000","KPI":55,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0396000],[0.0157622,0.0396000],[0.0157622,0.0414000],[0.0131352,0.0414000],[0.0131352,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0131352","Lat":"0.0414000","KPI":870,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0414000],[0.0157622,0.0414000],[0.0157622,0.0432000],[0.0131352,0.0432000],[0.0131352,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0131352","Lat":"0.0432000","KPI":872,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0432000],[0.0157622,0.0432000],[0.0157622,0.0450000],[0.0131352,0.0450000],[0.0131352,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0131352","Lat":"0.0450000","KPI":304,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0450000],[0.0157622,0.0450000],[0.0157622,0.0468000],[0.0131352,0.0468000],[0.0131352,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0131352","Lat":"0.0468000","KPI":994,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0468000],[0.0157622,0.0468000],[0.0157622,0.0486000],[0.0131352,0.0486000],[0.0131352,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0131352","Lat":"0.0486000","KPI":202,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0486000],[0.0157622,0.0486000],[0.0157622,0.0504000],[0.0131352,0.0504000],[0.0131352,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0131352","Lat":"0.0504000","KPI":883,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0504000],[0.0157622,0.0504000],[0.0157622,0.0522000],[0.0131352,0.0522000],[0.0131352,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0131352","Lat":"0.0522000","KPI":435,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0522000],[0.0157622,0.0522000],[0.0157622,0.0540000],[0.0131352,0.0540000],[0.0131352,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0131352","Lat":"0.0540000","KPI":683,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0540000],[0.0157622,0.0540000],[0.0157622,0.0558000],[0.0131352,0.0558000],[0.0131352,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0131352","Lat":"0.0558000","KPI":626,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0558000],[0.0157622,0.0558000],[0.0157622,0.0576000],[0.0131352,0.0576000],[0.0131352,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0157622","Lat":"0.0000000","KPI":671,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0000000],[0.0183893,0.0000000],[0.0183893,0.0018000],[0.0157622,0.0018000],[0.0157622,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0157622","Lat":"0.0018000","KPI":932,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0018000],[0.0183893,0.0018000],[0.0183893,0.0036000],[0.0157622,0.0036000],[0.0157622,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0157622","Lat":"0.0036000","KPI":507,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0036000],[0.0183893,0.0036000],[0.0183893,0.0054000],[0.0157622,0.0054000],[0.0157622,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0157622","Lat":"0.0054000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0054000],[0.0183893,0.0054000],[0.0183893,0.0072000],[0.0157622,0.0072000],[0.0157622,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0157622","Lat":"0.0072000","KPI":475,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0072000],[0.0183893,0.0072000],[0.0183893,0.0090000],[0.0157622,0.0090000],[0.0157622,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0157622","Lat":"0.0090000","KPI":530,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0090000],[0.0183893,0.0090000],[0.0183893,0.0108000],[0.0157622,0.0108000],[0.0157622,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0157622","Lat":"0.0108000","KPI":980,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0108000],[0.0183893,0.0108000],[0.0183893,0.0126000],[0.0157622,0.0126000],[0.0157622,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0157622","Lat":"0.0126000","KPI":233,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0126000],[0.0183893,0.0126000],[0.0183893,0.0144000],[0.0157622,0.0144000],[0.0157622,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0157622","Lat":"0.0144000","KPI":132,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0144000],[0.0183893,0.0144000],[0.0183893,0.0162000],[0.0157622,0.0162000],[0.0157622,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0157622","Lat":"0.0162000","KPI":379,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0162000],[0.0183893,0.0162000],[0.0183893,0.0180000],[0.0157622,0.0180000],[0.0157622,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0157622","Lat":"0.0180000","KPI":370,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0180000],[0.0183893,0.0180000],[0.0183893,0.0198000],[0.0157622,0.0198000],[0.0157622,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0157622","Lat":"0.0198000","KPI":542,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0198000],[0.0183893,0.0198000],[0.0183893,0.0216000],[0.0157622,0.0216000],[0.0157622,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0157622","Lat":"0.0216000","KPI":757,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0216000],[0.0183893,0.0216000],[0.0183893,0.0234000],[0.0157622,0.0234000],[0.0157622,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0157622","Lat":"0.0234000","KPI":606,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0234000],[0.0183893,0.0234000],[0.0183893,0.0252000],[0.0157622,0.0252000],[0.0157622,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0157622","Lat":"0.0252000","KPI":696,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0252000],[0.0183893,0.0252000],[0.0183893,0.0270000],[0.0157622,0.0270000],[0.0157622,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0157622","Lat":"0.0270000","KPI":599,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0270000],[0.0183893,0.0270000],[0.0183893,0.0288000],[0.0157622,0.0288000],[0.0157622,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0157622","Lat":"0.0288000","KPI":610,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0288000],[0.0183893,0.0288000],[0.0183893,0.0306000],[0.0157622,0.0306000],[0.0157622,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0157622","Lat":"0.0306000","KPI":429,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0306000],[0.0183893,0.0306000],[0.0183893,0.0324000],[0.0157622,0.0324000],[0.0157622,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0157622","Lat":"0.0324000","KPI":293,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0324000],[0.0183893,0.0324000],[0.0183893,0.0342000],[0.0157622,0.0342000],[0.0157622,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0157622","Lat":"0.0342000","KPI":634,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0342000],[0.0183893,0.0342000],[0.0183893,0.0360000],[0.0157622,0.0360000],[0.0157622,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0157622","Lat":"0.0360000","KPI":469,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0360000],[0.0183893,0.0360000],[0.0183893,0.0378000],[0.0157622,0.0378000],[0.0157622,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0157622","Lat":"0.0378000","KPI":213,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0378000],[0.0183893,0.0378000],[0.0183893,0.0396000],[0.0157622,0.0396000],[0.0157622,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0157622","Lat":"0.0396000","KPI":382,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0396000],[0.0183893,0.0396000],[0.0183893,0.0414000],[0.0157622,0.0414000],[0.0157622,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0157622","Lat":"0.0414000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0414000],[0.0183893,0.0414000],[0.0183893,0.0432000],[0.0157622,0.0432000],[0.0157622,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0157622","Lat":"0.0432000","KPI":67,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0432000],[0.0183893,0.0432000],[0.0183893,0.0450000],[0.0157622,0.0450000],[0.0157622,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0157622","Lat":"0.0450000","KPI":88,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0450000],[0.0183893,0.0450000],[0.0183893,0.0468000],[0.0157622,0.0468000],[0.0157622,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0157622","Lat":"0.0468000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0468000],[0.0183893,0.0468000],[0.0183893,0.0486000],[0.0157622,0.0486000],[0.0157622,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0157622","Lat":"0.0486000","KPI":670,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0486000],[0.0183893,0.0486000],[0.0183893,0.0504000],[0.0157622,0.0504000],[0.0157622,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0157622","Lat":"0.0504000","KPI":425,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0504000],[0.0183893,0.0504000],[0.0183893,0.0522000],[0.0157622,0.0522000],[0.0157622,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0157622","Lat":"0.0522000","KPI":1,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0522000],[0.0183893,0.0522000],[0.0183893,0.0540000],[0.0157622,0.0540000],[0.0157622,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0157622","Lat":"0.0540000","KPI":600,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0540000],[0.0183893,0.0540000],[0.0183893,0.0558000],[0.0157622,0.0558000],[0.0157622,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0157622","Lat":"0.0558000","KPI":865,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0558000],[0.0183893,0.0558000],[0.0183893,0.0576000],[0.0157622,0.0576000],[0.0157622,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0183893","Lat":"0.0000000","KPI":138,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0000000],[0.0210163,0.0000000],[0.0210163,0.0018000],[0.0183893,0.0018000],[0.0183893,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0183893","Lat":"0.0018000","KPI":359,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0018000],[0.0210163,0.0018000],[0.0210163,0.0036000],[0.0183893,0.0036000],[0.0183893,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0183893","Lat":"0.0036000","KPI":403,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0036000],[0.0210163,0.0036000],[0.0210163,0.0054000],[0.0183893,0.0054000],[0.0183893,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0183893","Lat":"0.0054000","KPI":780,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0054000],[0.0210163,0.0054000],[0.0210163,0.0072000],[0.0183893,0.0072000],[0.0183893,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0183893","Lat":"0.0072000","KPI":919,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0072000],[0.0210163,0.0072000],[0.0210163,0.0090000],[0.0183893,0.0090000],[0.0183893,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0183893","Lat":"0.0090000","KPI":599,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0090000],[0.0210163,0.0090000],[0.0210163,0.0108000],[0.0183893,0.0108000],[0.0183893,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0183893","Lat":"0.0108000","KPI":793,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0108000],[0.0210163,0.0108000],[0.0210163,0.0126000],[0.0183893,0.0126000],[0.0183893,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0183893","Lat":"0.0126000","KPI":210,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0126000],[0.0210163,0.0126000],[0.0210163,0.0144000],[0.0183893,0.0144000],[0.0183893,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0183893","Lat":"0.0144000","KPI":999,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0144000],[0.0210163,0.0144000],[0.0210163,0.0162000],[0.0183893,0.0162000],[0.0183893,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0183893","Lat":"0.0162000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0162000],[0.0210163,0.0162000],[0.0210163,0.0180000],[0.0183893,0.0180000],[0.0183893,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0183893","Lat":"0.0180000","KPI":598,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0180000],[0.0210163,0.0180000],[0.0210163,0.0198000],[0.0183893,0.0198000],[0.0183893,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0183893","Lat":"0.0198000","KPI":443,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0198000],[0.0210163,0.0198000],[0.0210163,0.0216000],[0.0183893,0.0216000],[0.0183893,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0183893","Lat":"0.0216000","KPI":161,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0216000],[0.0210163,0.0216000],[0.0210163,0.0234000],[0.0183893,0.0234000],[0.0183893,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0183893","Lat":"0.0234000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0234000],[0.0210163,0.0234000],[0.0210163,0.0252000],[0.0183893,0.0252000],[0.0183893,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0183893","Lat":"0.0252000","KPI":307,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0252000],[0.0210163,0.0252000],[0.0210163,0.0270000],[0.0183893,0.0270000],[0.0183893,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0183893","Lat":"0.0270000","KPI":898,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0270000],[0.0210163,0.0270000],[0.0210163,0.0288000],[0.0183893,0.0288000],[0.0183893,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0183893","Lat":"0.0288000","KPI":509,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0288000],[0.0210163,0.0288000],[0.0210163,0.0306000],[0.0183893,0.0306000],[0.0183893,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0183893","Lat":"0.0306000","KPI":290,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0306000],[0.0210163,0.0306000],[0.0210163,0.0324000],[0.0183893,0.0324000],[0.0183893,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0183893","Lat":"0.0324000","KPI":46,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0324000],[0.0210163,0.0324000],[0.0210163,0.0342000],[0.0183893,0.0342000],[0.0183893,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0183893","Lat":"0.0342000","KPI":247,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0342000],[0.0210163,0.0342000],[0.0210163,0.0360000],[0.0183893,0.0360000],[0.0183893,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0183893","Lat":"0.0360000","KPI":259,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0360000],[0.0210163,0.0360000],[0.0210163,0.0378000],[0.0183893,0.0378000],[0.0183893,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0183893","Lat":"0.0378000","KPI":622,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0378000],[0.0210163,0.0378000],[0.0210163,0.0396000],[0.0183893,0.0396000],[0.0183893,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0183893","Lat":"0.0396000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0396000],[0.0210163,0.0396000],[0.0210163,0.0414000],[0.0183893,0.0414000],[0.0183893,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0183893","Lat":"0.0414000","KPI":546,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0414000],[0.0210163,0.0414000],[0.0210163,0.0432000],[0.0183893,0.0432000],[0.0183893,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0183893","Lat":"0.0432000","KPI":143,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0432000],[0.0210163,0.0432000],[0.0210163,0.0450000],[0.0183893,0.0450000],[0.0183893,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0183893","Lat":"0.0450000","KPI":743,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0450000],[0.0210163,0.0450000],[0.0210163,0.0468000],[0.0183893,0.0468000],[0.0183893,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0183893","Lat":"0.0468000","KPI":584,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0468000],[0.0210163,0.0468000],[0.0210163,0.0486000],[0.0183893,0.0486000],[0.0183893,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0183893","Lat":"0.0486000","KPI":115,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0486000],[0.0210163,0.0486000],[0.0210163,0.0504000],[0.0183893,0.0504000],[0.0183893,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0183893","Lat":"0.0504000","KPI":225,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0504000],[0.0210163,0.0504000],[0.0210163,0.0522000],[0.0183893,0.0522000],[0.0183893,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0183893","Lat":"0.0522000","KPI":517,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0522000],[0.0210163,0.0522000],[0.0210163,0.0540000],[0.0183893,0.0540000],[0.0183893,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0183893","Lat":"0.0540000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0540000],[0.0210163,0.0540000],[0.0210163,0.0558000],[0.0183893,0.0558000],[0.0183893,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0183893","Lat":"0.0558000","KPI":178,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0558000],[0.0210163,0.0558000],[0.0210163,0.0576000],[0.0183893,0.0576000],[0.0183893,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0210163","Lat":"0.0000000","KPI":205,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0000000],[0.0236434,0.0000000],[0.0236434,0.0018000],[0.0210163,0.0018000],[0.0210163,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0210163","Lat":"0.0018000","KPI":868,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0018000],[0.0236434,0.0018000],[0.0236434,0.0036000],[0.0210163,0.0036000],[0.0210163,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0210163","Lat":"0.0036000","KPI":884,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0036000],[0.0236434,0.0036000],[0.0236434,0.0054000],[0.0210163,0.0054000],[0.0210163,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0210163","Lat":"0.0054000","KPI":509,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0054000],[0.0236434,0.0054000],[0.0236434,0.0072000],[0.0210163,0.0072000],[0.0210163,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0210163","Lat":"0.0072000","KPI":523,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0072000],[0.0236434,0.0072000],[0.0236434,0.0090000],[0.0210163,0.0090000],[0.0210163,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0210163","Lat":"0.0090000","KPI":610,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0090000],[0.0236434,0.0090000],[0.0236434,0.0108000],[0.0210163,0.0108000],[0.0210163,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0210163","Lat":"0.0108000","KPI":903,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0108000],[0.0236434,0.0108000],[0.0236434,0.0126000],[0.0210163,0.0126000],[0.0210163,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0210163","Lat":"0.0126000","KPI":603,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0126000],[0.0236434,0.0126000],[0.0236434,0.0144000],[0.0210163,0.0144000],[0.0210163,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0210163","Lat":"0.0144000","KPI":831,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0144000],[0.0236434,0.0144000],[0.0236434,0.0162000],[0.0210163,0.0162000],[0.0210163,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0210163","Lat":"0.0162000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0162000],[0.0236434,0.0162000],[0.0236434,0.0180000],[0.0210163,0.0180000],[0.0210163,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0210163","Lat":"0.0180000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0180000],[0.0236434,0.0180000],[0.0236434,0.0198000],[0.0210163,0.0198000],[0.0210163,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0210163","Lat":"0.0198000","KPI":103,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0198000],[0.0236434,0.0198000],[0.0236434,0.0216000],[0.0210163,0.0216000],[0.0210163,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0210163","Lat":"0.0216000","KPI":649,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0216000],[0.0236434,0.0216000],[0.0236434,0.0234000],[0.0210163,0.0234000],[0.0210163,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0210163","Lat":"0.0234000","KPI":86,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0234000],[0.0236434,0.0234000],[0.0236434,0.0252000],[0.0210163,0.0252000],[0.0210163,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0210163","Lat":"0.0252000","KPI":223,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0252000],[0.0236434,0.0252000],[0.0236434,0.0270000],[0.0210163,0.0270000],[0.0210163,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0210163","Lat":"0.0270000","KPI":513,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0270000],[0.0236434,0.0270000],[0.0236434,0.0288000],[0.0210163,0.0288000],[0.0210163,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0210163","Lat":"0.0288000","KPI":273,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0288000],[0.0236434,0.0288000],[0.0236434,0.0306000],[0.0210163,0.0306000],[0.0210163,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0210163","Lat":"0.0306000","KPI":425,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0306000],[0.0236434,0.0306000],[0.0236434,0.0324000],[0.0210163,0.0324000],[0.0210163,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0210163","Lat":"0.0324000","KPI":163,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0324000],[0.0236434,0.0324000],[0.0236434,0.0342000],[0.0210163,0.0342000],[0.0210163,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0210163","Lat":"0.0342000","KPI":430,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0342000],[0.0236434,0.0342000],[0.0236434,0.0360000],[0.0210163,0.0360000],[0.0210163,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0210163","Lat":"0.0360000","KPI":249,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0360000],[0.0236434,0.0360000],[0.0236434,0.0378000],[0.0210163,0.0378000],[0.0210163,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0210163","Lat":"0.0378000","KPI":457,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0378000],[0.0236434,0.0378000],[0.0236434,0.0396000],[0.0210163,0.0396000],[0.0210163,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0210163","Lat":"0.0396000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0396000],[0.0236434,0.0396000],[0.0236434,0.0414000],[0.0210163,0.0414000],[0.0210163,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0210163","Lat":"0.0414000","KPI":807,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0414000],[0.0236434,0.0414000],[0.0236434,0.0432000],[0.0210163,0.0432000],[0.0210163,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0210163","Lat":"0.0432000","KPI":975,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0432000],[0.0236434,0.0432000],[0.0236434,0.0450000],[0.0210163,0.0450000],[0.0210163,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0210163","Lat":"0.0450000","KPI":263,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0450000],[0.0236434,0.0450000],[0.0236434,0.0468000],[0.0210163,0.0468000],[0.0210163,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0210163","Lat":"0.0468000","KPI":417,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0468000],[0.0236434,0.0468000],[0.0236434,0.0486000],[0.0210163,0.0486000],[0.0210163,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0210163","Lat":"0.0486000","KPI":4,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0486000],[0.0236434,0.0486000],[0.0236434,0.0504000],[0.0210163,0.0504000],[0.0210163,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0210163","Lat":"0.0504000","KPI":267,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0504000],[0.0236434,0.0504000],[0.0236434,0.0522000],[0.0210163,0.0522000],[0.0210163,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0210163","Lat":"0.0522000","KPI":125,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0522000],[0.0236434,0.0522000],[0.0236434,0.0540000],[0.0210163,0.0540000],[0.0210163,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0210163","Lat":"0.0540000","KPI":639,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0540000],[0.0236434,0.0540000],[0.0236434,0.0558000],[0.0210163,0.0558000],[0.0210163,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0210163","Lat":"0.0558000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0558000],[0.0236434,0.0558000],[0.0236434,0.0576000],[0.0210163,0.0576000],[0.0210163,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0236434","Lat":"0.0000000","KPI":923,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0000000],[0.0262704,0.0000000],[0.0262704,0.0018000],[0.0236434,0.0018000],[0.0236434,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0236434","Lat":"0.0018000","KPI":842,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0018000],[0.0262704,0.0018000],[0.0262704,0.0036000],[0.0236434,0.0036000],[0.0236434,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0236434","Lat":"0.0036000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0036000],[0.0262704,0.0036000],[0.0262704,0.0054000],[0.0236434,0.0054000],[0.0236434,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0236434","Lat":"0.0054000","KPI":407,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0054000],[0.0262704,0.0054000],[0.0262704,0.0072000],[0.0236434,0.0072000],[0.0236434,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0236434","Lat":"0.0072000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0072000],[0.0262704,0.0072000],[0.0262704,0.0090000],[0.0236434,0.0090000],[0.0236434,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0236434","Lat":"0.0090000","KPI":48,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0090000],[0.0262704,0.0090000],[0.0262704,0.0108000],[0.0236434,0.0108000],[0.0236434,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0236434","Lat":"0.0108000","KPI":968,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0108000],[0.0262704,0.0108000],[0.0262704,0.0126000],[0.0236434,0.0126000],[0.0236434,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0236434","Lat":"0.0126000","KPI":631,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0126000],[0.0262704,0.0126000],[0.0262704,0.0144000],[0.0236434,0.0144000],[0.0236434,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0236434","Lat":"0.0144000","KPI":792,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0144000],[0.0262704,0.0144000],[0.0262704,0.0162000],[0.0236434,0.0162000],[0.0236434,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0236434","Lat":"0.0162000","KPI":188,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0162000],[0.0262704,0.0162000],[0.0262704,0.0180000],[0.0236434,0.0180000],[0.0236434,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0236434","Lat":"0.0180000","KPI":75,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0180000],[0.0262704,0.0180000],[0.0262704,0.0198000],[0.0236434,0.0198000],[0.0236434,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0236434","Lat":"0.0198000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0198000],[0.0262704,0.0198000],[0.0262704,0.0216000],[0.0236434,0.0216000],[0.0236434,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0236434","Lat":"0.0216000","KPI":997,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0216000],[0.0262704,0.0216000],[0.0262704,0.0234000],[0.0236434,0.0234000],[0.0236434,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0236434","Lat":"0.0234000","KPI":0,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0234000],[0.0262704,0.0234000],[0.0262704,0.0252000],[0.0236434,0.0252000],[0.0236434,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0236434","Lat":"0.0252000","KPI":148,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0252000],[0.0262704,0.0252000],[0.0262704,0.0270000],[0.0236434,0.0270000],[0.0236434,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0236434","Lat":"0.0270000","KPI":978,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0270000],[0.0262704,0.0270000],[0.0262704,0.0288000],[0.0236434,0.0288000],[0.0236434,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0236434","Lat":"0.0288000","KPI":371,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0288000],[0.0262704,0.0288000],[0.0262704,0.0306000],[0.0236434,0.0306000],[0.0236434,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0236434","Lat":"0.0306000","KPI":656,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0306000],[0.0262704,0.0306000],[0.0262704,0.0324000],[0.0236434,0.0324000],[0.0236434,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0236434","Lat":"0.0324000","KPI":435,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0324000],[0.0262704,0.0324000],[0.0262704,0.0342000],[0.0236434,0.0342000],[0.0236434,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0236434","Lat":"0.0342000","KPI":761,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0342000],[0.0262704,0.0342000],[0.0262704,0.0360000],[0.0236434,0.0360000],[0.0236434,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0236434","Lat":"0.0360000","KPI":956,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0360000],[0.0262704,0.0360000],[0.0262704,0.0378000],[0.0236434,0.0378000],[0.0236434,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0236434","Lat":"0.0378000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0378000],[0.0262704,0.0378000],[0.0262704,0.0396000],[0.0236434,0.0396000],[0.0236434,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0236434","Lat":"0.0396000","KPI":835,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0396000],[0.0262704,0.0396000],[0.0262704,0.0414000],[0.0236434,0.0414000],[0.0236434,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0236434","Lat":"0.0414000","KPI":544,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0414000],[0.0262704,0.0414000],[0.0262704,0.0432000],[0.0236434,0.0432000],[0.0236434,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0236434","Lat":"0.0432000","KPI":774,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0432000],[0.0262704,0.0432000],[0.0262704,0.0450000],[0.0236434,0.0450000],[0.0236434,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0236434","Lat":"0.0450000","KPI":20,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0450000],[0.0262704,0.0450000],[0.0262704,0.0468000],[0.0236434,0.0468000],[0.0236434,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0236434","Lat":"0.0468000","KPI":333,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0468000],[0.0262704,0.0468000],[0.0262704,0.0486000],[0.0236434,0.0486000],[0.0236434,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0236434","Lat":"0.0486000","KPI":684,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0486000],[0.0262704,0.0486000],[0.0262704,0.0504000],[0.0236434,0.0504000],[0.0236434,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0236434","Lat":"0.0504000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0504000],[0.0262704,0.0504000],[0.0262704,0.0522000],[0.0236434,0.0522000],[0.0236434,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0236434","Lat":"0.0522000","KPI":917,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0522000],[0.0262704,0.0522000],[0.0262704,0.0540000],[0.0236434,0.0540000],[0.0236434,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0236434","Lat":"0.0540000","KPI":676,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0540000],[0.0262704,0.0540000],[0.0262704,0.0558000],[0.0236434,0.0558000],[0.0236434,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0236434","Lat":"0.0558000","KPI":848,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0558000],[0.0262704,0.0558000],[0.0262704,0.0576000],[0.0236434,0.0576000],[0.0236434,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0262704","Lat":"0.0000000","KPI":936,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0000000],[0.0288974,0.0000000],[0.0288974,0.0018000],[0.0262704,0.0018000],[0.0262704,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0262704","Lat":"0.0018000","KPI":424,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0018000],[0.0288974,0.0018000],[0.0288974,0.0036000],[0.0262704,0.0036000],[0.0262704,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0262704","Lat":"0.0036000","KPI":459,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0036000],[0.0288974,0.0036000],[0.0288974,0.0054000],[0.0262704,0.0054000],[0.0262704,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0262704","Lat":"0.0054000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0054000],[0.0288974,0.0054000],[0.0288974,0.0072000],[0.0262704,0.0072000],[0.0262704,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0262704","Lat":"0.0072000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0072000],[0.0288974,0.0072000],[0.0288974,0.0090000],[0.0262704,0.0090000],[0.0262704,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0262704","Lat":"0.0090000","KPI":231,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0090000],[0.0288974,0.0090000],[0.0288974,0.0108000],[0.0262704,0.0108000],[0.0262704,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0262704","Lat":"0.0108000","KPI":94,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0108000],[0.0288974,0.0108000],[0.0288974,0.0126000],[0.0262704,0.0126000],[0.0262704,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0262704","Lat":"0.0126000","KPI":218,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0126000],[0.0288974,0.0126000],[0.0288974,0.0144000],[0.0262704,0.0144000],[0.0262704,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0262704","Lat":"0.0144000","KPI":902,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0144000],[0.0288974,0.0144000],[0.0288974,0.0162000],[0.0262704,0.0162000],[0.0262704,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0262704","Lat":"0.0162000","KPI":664,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0162000],[0.0288974,0.0162000],[0.0288974,0.0180000],[0.0262704,0.0180000],[0.0262704,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0262704","Lat":"0.0180000","KPI":324,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0180000],[0.0288974,0.0180000],[0.0288974,0.0198000],[0.0262704,0.0198000],[0.0262704,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0262704","Lat":"0.0198000","KPI":207,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0198000],[0.0288974,0.0198000],[0.0288974,0.0216000],[0.0262704,0.0216000],[0.0262704,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0262704","Lat":"0.0216000","KPI":340,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0216000],[0.0288974,0.0216000],[0.0288974,0.0234000],[0.0262704,0.0234000],[0.0262704,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0262704","Lat":"0.0234000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0234000],[0.0288974,0.0234000],[0.0288974,0.0252000],[0.0262704,0.0252000],[0.0262704,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0262704","Lat":"0.0252000","KPI":240,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0252000],[0.0288974,0.0252000],[0.0288974,0.0270000],[0.0262704,0.0270000],[0.0262704,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0262704","Lat":"0.0270000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0270000],[0.0288974,0.0270000],[0.0288974,0.0288000],[0.0262704,0.0288000],[0.0262704,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0262704","Lat":"0.0288000","KPI":384,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0288000],[0.0288974,0.0288000],[0.0288974,0.0306000],[0.0262704,0.0306000],[0.0262704,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0262704","Lat":"0.0306000","KPI":332,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0306000],[0.0288974,0.0306000],[0.0288974,0.0324000],[0.0262704,0.0324000],[0.0262704,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0262704","Lat":"0.0324000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0324000],[0.0288974,0.0324000],[0.0288974,0.0342000],[0.0262704,0.0342000],[0.0262704,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0262704","Lat":"0.0342000","KPI":597,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0342000],[0.0288974,0.0342000],[0.0288974,0.0360000],[0.0262704,0.0360000],[0.0262704,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0262704","Lat":"0.0360000","KPI":18,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0360000],[0.0288974,0.0360000],[0.0288974,0.0378000],[0.0262704,0.0378000],[0.0262704,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0262704","Lat":"0.0378000","KPI":843,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0378000],[0.0288974,0.0378000],[0.0288974,0.0396000],[0.0262704,0.0396000],[0.0262704,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0262704","Lat":"0.0396000","KPI":600,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0396000],[0.0288974,0.0396000],[0.0288974,0.0414000],[0.0262704,0.0414000],[0.0262704,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0262704","Lat":"0.0414000","KPI":983,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0414000],[0.0288974,0.0414000],[0.0288974,0.0432000],[0.0262704,0.0432000],[0.0262704,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0262704","Lat":"0.0432000","KPI":122,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0432000],[0.0288974,0.0432000],[0.0288974,0.0450000],[0.0262704,0.0450000],[0.0262704,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0262704","Lat":"0.0450000","KPI":300,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0450000],[0.0288974,0.0450000],[0.0288974,0.0468000],[0.0262704,0.0468000],[0.0262704,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0262704","Lat":"0.0468000","KPI":670,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0468000],[0.0288974,0.0468000],[0.0288974,0.0486000],[0.0262704,0.0486000],[0.0262704,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0262704","Lat":"0.0486000","KPI":916,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0486000],[0.0288974,0.0486000],[0.0288974,0.0504000],[0.0262704,0.0504000],[0.0262704,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0262704","Lat":"0.0504000","KPI":255,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0504000],[0.0288974,0.0504000],[0.0288974,0.0522000],[0.0262704,0.0522000],[0.0262704,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0262704","Lat":"0.0522000","KPI":461,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0522000],[0.0288974,0.0522000],[0.0288974,0.0540000],[0.0262704,0.0540000],[0.0262704,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0262704","Lat":"0.0540000","KPI":765,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0540000],[0.0288974,0.0540000],[0.0288974,0.0558000],[0.0262704,0.0558000],[0.0262704,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0262704","Lat":"0.0558000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0558000],[0.0288974,0.0558000],[0.0288974,0.0576000],[0.0262704,0.0576000],[0.0262704,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0288974","Lat":"0.0000000","KPI":519,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0000000],[0.0315245,0.0000000],[0.0315245,0.0018000],[0.0288974,0.0018000],[0.0288974,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0288974","Lat":"0.0018000","KPI":53,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0018000],[0.0315245,0.0018000],[0.0315245,0.0036000],[0.0288974,0.0036000],[0.0288974,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0288974","Lat":"0.0036000","KPI":809,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0036000],[0.0315245,0.0036000],[0.0315245,0.0054000],[0.0288974,0.0054000],[0.0288974,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0288974","Lat":"0.0054000","KPI":363,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0054000],[0.0315245,0.0054000],[0.0315245,0.0072000],[0.0288974,0.0072000],[0.0288974,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0288974","Lat":"0.0072000","KPI":815,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0072000],[0.0315245,0.0072000],[0.0315245,0.0090000],[0.0288974,0.0090000],[0.0288974,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0288974","Lat":"0.0090000","KPI":835,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0090000],[0.0315245,0.0090000],[0.0315245,0.0108000],[0.0288974,0.0108000],[0.0288974,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0288974","Lat":"0.0108000","KPI":863,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0108000],[0.0315245,0.0108000],[0.0315245,0.0126000],[0.0288974,0.0126000],[0.0288974,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0288974","Lat":"0.0126000","KPI":528,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0126000],[0.0315245,0.0126000],[0.0315245,0.0144000],[0.0288974,0.0144000],[0.0288974,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0288974","Lat":"0.0144000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0144000],[0.0315245,0.0144000],[0.0315245,0.0162000],[0.0288974,0.0162000],[0.0288974,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0288974","Lat":"0.0162000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0162000],[0.0315245,0.0162000],[0.0315245,0.0180000],[0.0288974,0.0180000],[0.0288974,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0288974","Lat":"0.0180000","KPI":988,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0180000],[0.0315245,0.0180000],[0.0315245,0.0198000],[0.0288974,0.0198000],[0.0288974,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0288974","Lat":"0.0198000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0198000],[0.0315245,0.0198000],[0.0315245,0.0216000],[0.0288974,0.0216000],[0.0288974,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0288974","Lat":"0.0216000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0216000],[0.0315245,0.0216000],[0.0315245,0.0234000],[0.0288974,0.0234000],[0.0288974,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0288974","Lat":"0.0234000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0234000],[0.0315245,0.0234000],[0.0315245,0.0252000],[0.0288974,0.0252000],[0.0288974,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0288974","Lat":"0.0252000","KPI":145,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0252000],[0.0315245,0.0252000],[0.0315245,0.0270000],[0.0288974,0.0270000],[0.0288974,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0288974","Lat":"0.0270000","KPI":313,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0270000],[0.0315245,0.0270000],[0.0315245,0.0288000],[0.0288974,0.0288000],[0.0288974,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0288974","Lat":"0.0288000","KPI":35,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0288000],[0.0315245,0.0288000],[0.0315245,0.0306000],[0.0288974,0.0306000],[0.0288974,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0288974","Lat":"0.0306000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0306000],[0.0315245,0.0306000],[0.0315245,0.0324000],[0.0288974,0.0324000],[0.0288974,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0288974","Lat":"0.0324000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0324000],[0.0315245,0.0324000],[0.0315245,0.0342000],[0.0288974,0.0342000],[0.0288974,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0288974","Lat":"0.0342000","KPI":606,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0342000],[0.0315245,0.0342000],[0.0315245,0.0360000],[0.0288974,0.0360000],[0.0288974,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0288974","Lat":"0.0360000","KPI":218,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0360000],[0.0315245,0.0360000],[0.0315245,0.0378000],[0.0288974,0.0378000],[0.0288974,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0288974","Lat":"0.0378000","KPI":130,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0378000],[0.0315245,0.0378000],[0.0315245,0.0396000],[0.0288974,0.0396000],[0.0288974,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0288974","Lat":"0.0396000","KPI":238,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0396000],[0.0315245,0.0396000],[0.0315245,0.0414000],[0.0288974,0.0414000],[0.0288974,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0288974","Lat":"0.0414000","KPI":855,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0414000],[0.0315245,0.0414000],[0.0315245,0.0432000],[0.0288974,0.0432000],[0.0288974,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0288974","Lat":"0.0432000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0432000],[0.0315245,0.0432000],[0.0315245,0.0450000],[0.0288974,0.0450000],[0.0288974,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0288974","Lat":"0.0450000","KPI":826,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0450000],[0.0315245,0.0450000],[0.0315245,0.0468000],[0.0288974,0.0468000],[0.0288974,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0288974","Lat":"0.0468000","KPI":638,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0468000],[0.0315245,0.0468000],[0.0315245,0.0486000],[0.0288974,0.0486000],[0.0288974,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0288974","Lat":"0.0486000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0486000],[0.0315245,0.0486000],[0.0315245,0.0504000],[0.0288974,0.0504000],[0.0288974,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0288974","Lat":"0.0504000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0504000],[0.0315245,0.0504000],[0.0315245,0.0522000],[0.0288974,0.0522000],[0.0288974,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0288974","Lat":"0.0522000","KPI":332,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0522000],[0.0315245,0.0522000],[0.0315245,0.0540000],[0.0288974,0.0540000],[0.0288974,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0288974","Lat":"0.0540000","KPI":556,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0540000],[0.0315245,0.0540000],[0.0315245,0.0558000],[0.0288974,0.0558000],[0.0288974,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0288974","Lat":"0.0558000","KPI":205,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0558000],[0.0315245,0.0558000],[0.0315245,0.0576000],[0.0288974,0.0576000],[0.0288974,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0315245","Lat":"0.0000000","KPI":605,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0000000],[0.0341515,0.0000000],[0.0341515,0.0018000],[0.0315245,0.0018000],[0.0315245,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0315245","Lat":"0.0018000","KPI":992,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0018000],[0.0341515,0.0018000],[0.0341515,0.0036000],[0.0315245,0.0036000],[0.0315245,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0315245","Lat":"0.0036000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0036000],[0.0341515,0.0036000],[0.0341515,0.0054000],[0.0315245,0.0054000],[0.0315245,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0315245","Lat":"0.0054000","KPI":890,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0054000],[0.0341515,0.0054000],[0.0341515,0.0072000],[0.0315245,0.0072000],[0.0315245,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0315245","Lat":"0.0072000","KPI":707,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0072000],[0.0341515,0.0072000],[0.0341515,0.0090000],[0.0315245,0.0090000],[0.0315245,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0315245","Lat":"0.0090000","KPI":427,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0090000],[0.0341515,0.0090000],[0.0341515,0.0108000],[0.0315245,0.0108000],[0.0315245,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0315245","Lat":"0.0108000","KPI":367,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0108000],[0.0341515,0.0108000],[0.0341515,0.0126000],[0.0315245,0.0126000],[0.0315245,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0315245","Lat":"0.0126000","KPI":488,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0126000],[0.0341515,0.0126000],[0.0341515,0.0144000],[0.0315245,0.0144000],[0.0315245,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0315245","Lat":"0.0144000","KPI":100,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0144000],[0.0341515,0.0144000],[0.0341515,0.0162000],[0.0315245,0.0162000],[0.0315245,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0315245","Lat":"0.0162000","KPI":586,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0162000],[0.0341515,0.0162000],[0.0341515,0.0180000],[0.0315245,0.0180000],[0.0315245,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0315245","Lat":"0.0180000","KPI":725,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0180000],[0.0341515,0.0180000],[0.0341515,0.0198000],[0.0315245,0.0198000],[0.0315245,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0315245","Lat":"0.0198000","KPI":533,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0198000],[0.0341515,0.0198000],[0.0341515,0.0216000],[0.0315245,0.0216000],[0.0315245,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0315245","Lat":"0.0216000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0216000],[0.0341515,0.0216000],[0.0341515,0.0234000],[0.0315245,0.0234000],[0.0315245,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0315245","Lat":"0.0234000","KPI":411,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0234000],[0.0341515,0.0234000],[0.0341515,0.0252000],[0.0315245,0.0252000],[0.0315245,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0315245","Lat":"0.0252000","KPI":24,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0252000],[0.0341515,0.0252000],[0.0341515,0.0270000],[0.0315245,0.0270000],[0.0315245,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0315245","Lat":"0.0270000","KPI":567,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0270000],[0.0341515,0.0270000],[0.0341515,0.0288000],[0.0315245,0.0288000],[0.0315245,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0315245","Lat":"0.0288000","KPI":227,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0288000],[0.0341515,0.0288000],[0.0341515,0.0306000],[0.0315245,0.0306000],[0.0315245,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0315245","Lat":"0.0306000","KPI":247,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0306000],[0.0341515,0.0306000],[0.0341515,0.0324000],[0.0315245,0.0324000],[0.0315245,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0315245","Lat":"0.0324000","KPI":279,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0324000],[0.0341515,0.0324000],[0.0341515,0.0342000],[0.0315245,0.0342000],[0.0315245,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0315245","Lat":"0.0342000","KPI":300,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0342000],[0.0341515,0.0342000],[0.0341515,0.0360000],[0.0315245,0.0360000],[0.0315245,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0315245","Lat":"0.0360000","KPI":522,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0360000],[0.0341515,0.0360000],[0.0341515,0.0378000],[0.0315245,0.0378000],[0.0315245,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0315245","Lat":"0.0378000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0378000],[0.0341515,0.0378000],[0.0341515,0.0396000],[0.0315245,0.0396000],[0.0315245,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0315245","Lat":"0.0396000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0396000],[0.0341515,0.0396000],[0.0341515,0.0414000],[0.0315245,0.0414000],[0.0315245,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0315245","Lat":"0.0414000","KPI":922,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0414000],[0.0341515,0.0414000],[0.0341515,0.0432000],[0.0315245,0.0432000],[0.0315245,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0315245","Lat":"0.0432000","KPI":840,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0432000],[0.0341515,0.0432000],[0.0341515,0.0450000],[0.0315245,0.0450000],[0.0315245,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0315245","Lat":"0.0450000","KPI":298,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0450000],[0.0341515,0.0450000],[0.0341515,0.0468000],[0.0315245,0.0468000],[0.0315245,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0315245","Lat":"0.0468000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0468000],[0.0341515,0.0468000],[0.0341515,0.0486000],[0.0315245,0.0486000],[0.0315245,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0315245","Lat":"0.0486000","KPI":329,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0486000],[0.0341515,0.0486000],[0.0341515,0.0504000],[0.0315245,0.0504000],[0.0315245,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0315245","Lat":"0.0504000","KPI":691,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0504000],[0.0341515,0.0504000],[0.0341515,0.0522000],[0.0315245,0.0522000],[0.0315245,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0315245","Lat":"0.0522000","KPI":646,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0522000],[0.0341515,0.0522000],[0.0341515,0.0540000],[0.0315245,0.0540000],[0.0315245,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0315245","Lat":"0.0540000","KPI":232,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0540000],[0.0341515,0.0540000],[0.0341515,0.0558000],[0.0315245,0.0558000],[0.0315245,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0315245","Lat":"0.0558000","KPI":257,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0558000],[0.0341515,0.0558000],[0.0341515,0.0576000],[0.0315245,0.0576000],[0.0315245,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0341515","Lat":"0.0000000","KPI":820,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0000000],[0.0367786,0.0000000],[0.0367786,0.0018000],[0.0341515,0.0018000],[0.0341515,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0341515","Lat":"0.0018000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0018000],[0.0367786,0.0018000],[0.0367786,0.0036000],[0.0341515,0.0036000],[0.0341515,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0341515","Lat":"0.0036000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0036000],[0.0367786,0.0036000],[0.0367786,0.0054000],[0.0341515,0.0054000],[0.0341515,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0341515","Lat":"0.0054000","KPI":589,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0054000],[0.0367786,0.0054000],[0.0367786,0.0072000],[0.0341515,0.0072000],[0.0341515,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0341515","Lat":"0.0072000","KPI":824,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0072000],[0.0367786,0.0072000],[0.0367786,0.0090000],[0.0341515,0.0090000],[0.0341515,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0341515","Lat":"0.0090000","KPI":997,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0090000],[0.0367786,0.0090000],[0.0367786,0.0108000],[0.0341515,0.0108000],[0.0341515,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0341515","Lat":"0.0108000","KPI":239,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0108000],[0.0367786,0.0108000],[0.0367786,0.0126000],[0.0341515,0.0126000],[0.0341515,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0341515","Lat":"0.0126000","KPI":329,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0126000],[0.0367786,0.0126000],[0.0367786,0.0144000],[0.0341515,0.0144000],[0.0341515,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0341515","Lat":"0.0144000","KPI":782,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0144000],[0.0367786,0.0144000],[0.0367786,0.0162000],[0.0341515,0.0162000],[0.0341515,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0341515","Lat":"0.0162000","KPI":313,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0162000],[0.0367786,0.0162000],[0.0367786,0.0180000],[0.0341515,0.0180000],[0.0341515,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0341515","Lat":"0.0180000","KPI":113,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0180000],[0.0367786,0.0180000],[0.0367786,0.0198000],[0.0341515,0.0198000],[0.0341515,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0341515","Lat":"0.0198000","KPI":6,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0198000],[0.0367786,0.0198000],[0.0367786,0.0216000],[0.0341515,0.0216000],[0.0341515,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0341515","Lat":"0.0216000","KPI":736,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0216000],[0.0367786,0.0216000],[0.0367786,0.0234000],[0.0341515,0.0234000],[0.0341515,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0341515","Lat":"0.0234000","KPI":483,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0234000],[0.0367786,0.0234000],[0.0367786,0.0252000],[0.0341515,0.0252000],[0.0341515,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0341515","Lat":"0.0252000","KPI":589,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0252000],[0.0367786,0.0252000],[0.0367786,0.0270000],[0.0341515,0.0270000],[0.0341515,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0341515","Lat":"0.0270000","KPI":501,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0270000],[0.0367786,0.0270000],[0.0367786,0.0288000],[0.0341515,0.0288000],[0.0341515,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0341515","Lat":"0.0288000","KPI":67,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0288000],[0.0367786,0.0288000],[0.0367786,0.0306000],[0.0341515,0.0306000],[0.0341515,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0341515","Lat":"0.0306000","KPI":607,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0306000],[0.0367786,0.0306000],[0.0367786,0.0324000],[0.0341515,0.0324000],[0.0341515,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0341515","Lat":"0.0324000","KPI":217,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0324000],[0.0367786,0.0324000],[0.0367786,0.0342000],[0.0341515,0.0342000],[0.0341515,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0341515","Lat":"0.0342000","KPI":564,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0342000],[0.0367786,0.0342000],[0.0367786,0.0360000],[0.0341515,0.0360000],[0.0341515,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0341515","Lat":"0.0360000","KPI":102,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0360000],[0.0367786,0.0360000],[0.0367786,0.0378000],[0.0341515,0.0378000],[0.0341515,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0341515","Lat":"0.0378000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0378000],[0.0367786,0.0378000],[0.0367786,0.0396000],[0.0341515,0.0396000],[0.0341515,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0341515","Lat":"0.0396000","KPI":128,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0396000],[0.0367786,0.0396000],[0.0367786,0.0414000],[0.0341515,0.0414000],[0.0341515,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0341515","Lat":"0.0414000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0414000],[0.0367786,0.0414000],[0.0367786,0.0432000],[0.0341515,0.0432000],[0.0341515,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0341515","Lat":"0.0432000","KPI":511,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0432000],[0.0367786,0.0432000],[0.0367786,0.0450000],[0.0341515,0.0450000],[0.0341515,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0341515","Lat":"0.0450000","KPI":920,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0450000],[0.0367786,0.0450000],[0.0367786,0.0468000],[0.0341515,0.0468000],[0.0341515,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0341515","Lat":"0.0468000","KPI":857,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0468000],[0.0367786,0.0468000],[0.0367786,0.0486000],[0.0341515,0.0486000],[0.0341515,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0341515","Lat":"0.0486000","KPI":875,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0486000],[0.0367786,0.0486000],[0.0367786,0.0504000],[0.0341515,0.0504000],[0.0341515,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0341515","Lat":"0.0504000","KPI":305,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0504000],[0.0367786,0.0504000],[0.0367786,0.0522000],[0.0341515,0.0522000],[0.0341515,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0341515","Lat":"0.0522000","KPI":590,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0522000],[0.0367786,0.0522000],[0.0367786,0.0540000],[0.0341515,0.0540000],[0.0341515,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0341515","Lat":"0.0540000","KPI":539,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0540000],[0.0367786,0.0540000],[0.0367786,0.0558000],[0.0341515,0.0558000],[0.0341515,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0341515","Lat":"0.0558000","KPI":979,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0558000],[0.0367786,0.0558000],[0.0367786,0.0576000],[0.0341515,0.0576000],[0.0341515,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0367786","Lat":"0.0000000","KPI":510,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0000000],[0.0394056,0.0000000],[0.0394056,0.0018000],[0.0367786,0.0018000],[0.0367786,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0367786","Lat":"0.0018000","KPI":163,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0018000],[0.0394056,0.0018000],[0.0394056,0.0036000],[0.0367786,0.0036000],[0.0367786,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0367786","Lat":"0.0036000","KPI":638,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0036000],[0.0394056,0.0036000],[0.0394056,0.0054000],[0.0367786,0.0054000],[0.0367786,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0367786","Lat":"0.0054000","KPI":731,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0054000],[0.0394056,0.0054000],[0.0394056,0.0072000],[0.0367786,0.0072000],[0.0367786,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0367786","Lat":"0.0072000","KPI":830,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0072000],[0.0394056,0.0072000],[0.0394056,0.0090000],[0.0367786,0.0090000],[0.0367786,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0367786","Lat":"0.0090000","KPI":489,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0090000],[0.0394056,0.0090000],[0.0394056,0.0108000],[0.0367786,0.0108000],[0.0367786,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0367786","Lat":"0.0108000","KPI":685,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0108000],[0.0394056,0.0108000],[0.0394056,0.0126000],[0.0367786,0.0126000],[0.0367786,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0367786","Lat":"0.0126000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0126000],[0.0394056,0.0126000],[0.0394056,0.0144000],[0.0367786,0.0144000],[0.0367786,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0367786","Lat":"0.0144000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0144000],[0.0394056,0.0144000],[0.0394056,0.0162000],[0.0367786,0.0162000],[0.0367786,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0367786","Lat":"0.0162000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0162000],[0.0394056,0.0162000],[0.0394056,0.0180000],[0.0367786,0.0180000],[0.0367786,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0367786","Lat":"0.0180000","KPI":679,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0180000],[0.0394056,0.0180000],[0.0394056,0.0198000],[0.0367786,0.0198000],[0.0367786,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0367786","Lat":"0.0198000","KPI":112,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0198000],[0.0394056,0.0198000],[0.0394056,0.0216000],[0.0367786,0.0216000],[0.0367786,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0367786","Lat":"0.0216000","KPI":688,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0216000],[0.0394056,0.0216000],[0.0394056,0.0234000],[0.0367786,0.0234000],[0.0367786,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0367786","Lat":"0.0234000","KPI":909,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0234000],[0.0394056,0.0234000],[0.0394056,0.0252000],[0.0367786,0.0252000],[0.0367786,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0367786","Lat":"0.0252000","KPI":128,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0252000],[0.0394056,0.0252000],[0.0394056,0.0270000],[0.0367786,0.0270000],[0.0367786,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0367786","Lat":"0.0270000","KPI":152,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0270000],[0.0394056,0.0270000],[0.0394056,0.0288000],[0.0367786,0.0288000],[0.0367786,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0367786","Lat":"0.0288000","KPI":898,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0288000],[0.0394056,0.0288000],[0.0394056,0.0306000],[0.0367786,0.0306000],[0.0367786,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0367786","Lat":"0.0306000","KPI":716,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0306000],[0.0394056,0.0306000],[0.0394056,0.0324000],[0.0367786,0.0324000],[0.0367786,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0367786","Lat":"0.0324000","KPI":893,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0324000],[0.0394056,0.0324000],[0.0394056,0.0342000],[0.0367786,0.0342000],[0.0367786,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0367786","Lat":"0.0342000","KPI":186,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0342000],[0.0394056,0.0342000],[0.0394056,0.0360000],[0.0367786,0.0360000],[0.0367786,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0367786","Lat":"0.0360000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0360000],[0.0394056,0.0360000],[0.0394056,0.0378000],[0.0367786,0.0378000],[0.0367786,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0367786","Lat":"0.0378000","KPI":567,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0378000],[0.0394056,0.0378000],[0.0394056,0.0396000],[0.0367786,0.0396000],[0.0367786,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0367786","Lat":"0.0396000","KPI":296,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0396000],[0.0394056,0.0396000],[0.0394056,0.0414000],[0.0367786,0.0414000],[0.0367786,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0367786","Lat":"0.0414000","KPI":50,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0414000],[0.0394056,0.0414000],[0.0394056,0.0432000],[0.0367786,0.0432000],[0.0367786,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0367786","Lat":"0.0432000","KPI":394,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0432000],[0.0394056,0.0432000],[0.0394056,0.0450000],[0.0367786,0.0450000],[0.0367786,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0367786","Lat":"0.0450000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0450000],[0.0394056,0.0450000],[0.0394056,0.0468000],[0.0367786,0.0468000],[0.0367786,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0367786","Lat":"0.0468000","KPI":174,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0468000],[0.0394056,0.0468000],[0.0394056,0.0486000],[0.0367786,0.0486000],[0.0367786,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0367786","Lat":"0.0486000","KPI":768,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0486000],[0.0394056,0.0486000],[0.0394056,0.0504000],[0.0367786,0.0504000],[0.0367786,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0367786","Lat":"0.0504000","KPI":866,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0504000],[0.0394056,0.0504000],[0.0394056,0.0522000],[0.0367786,0.0522000],[0.0367786,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0367786","Lat":"0.0522000","KPI":952,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0522000],[0.0394056,0.0522000],[0.0394056,0.0540000],[0.0367786,0.0540000],[0.0367786,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0367786","Lat":"0.0540000","KPI":817,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0540000],[0.0394056,0.0540000],[0.0394056,0.0558000],[0.0367786,0.0558000],[0.0367786,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0367786","Lat":"0.0558000","KPI":840,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0558000],[0.0394056,0.0558000],[0.0394056,0.0576000],[0.0367786,0.0576000],[0.0367786,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0394056","Lat":"0.0000000","KPI":776,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0000000],[0.0420326,0.0000000],[0.0420326,0.0018000],[0.0394056,0.0018000],[0.0394056,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0394056","Lat":"0.0018000","KPI":825,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0018000],[0.0420326,0.0018000],[0.0420326,0.0036000],[0.0394056,0.0036000],[0.0394056,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0394056","Lat":"0.0036000","KPI":998,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0036000],[0.0420326,0.0036000],[0.0420326,0.0054000],[0.0394056,0.0054000],[0.0394056,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0394056","Lat":"0.0054000","KPI":756,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0054000],[0.0420326,0.0054000],[0.0420326,0.0072000],[0.0394056,0.0072000],[0.0394056,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0394056","Lat":"0.0072000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0072000],[0.0420326,0.0072000],[0.0420326,0.0090000],[0.0394056,0.0090000],[0.0394056,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0394056","Lat":"0.0090000","KPI":330,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0090000],[0.0420326,0.0090000],[0.0420326,0.0108000],[0.0394056,0.0108000],[0.0394056,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0394056","Lat":"0.0108000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0108000],[0.0420326,0.0108000],[0.0420326,0.0126000],[0.0394056,0.0126000],[0.0394056,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0394056","Lat":"0.0126000","KPI":253,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0126000],[0.0420326,0.0126000],[0.0420326,0.0144000],[0.0394056,0.0144000],[0.0394056,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0394056","Lat":"0.0144000","KPI":102,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0144000],[0.0420326,0.0144000],[0.0420326,0.0162000],[0.0394056,0.0162000],[0.0394056,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0394056","Lat":"0.0162000","KPI":228,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0162000],[0.0420326,0.0162000],[0.0420326,0.0180000],[0.0394056,0.0180000],[0.0394056,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0394056","Lat":"0.0180000","KPI":935,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0180000],[0.0420326,0.0180000],[0.0420326,0.0198000],[0.0394056,0.0198000],[0.0394056,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0394056","Lat":"0.0198000","KPI":43,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0198000],[0.0420326,0.0198000],[0.0420326,0.0216000],[0.0394056,0.0216000],[0.0394056,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0394056","Lat":"0.0216000","KPI":790,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0216000],[0.0420326,0.0216000],[0.0420326,0.0234000],[0.0394056,0.0234000],[0.0394056,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0394056","Lat":"0.0234000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0234000],[0.0420326,0.0234000],[0.0420326,0.0252000],[0.0394056,0.0252000],[0.0394056,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0394056","Lat":"0.0252000","KPI":544,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0252000],[0.0420326,0.0252000],[0.0420326,0.0270000],[0.0394056,0.0270000],[0.0394056,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0394056","Lat":"0.0270000","KPI":52,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0270000],[0.0420326,0.0270000],[0.0420326,0.0288000],[0.0394056,0.0288000],[0.0394056,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0394056","Lat":"0.0288000","KPI":335,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0288000],[0.0420326,0.0288000],[0.0420326,0.0306000],[0.0394056,0.0306000],[0.0394056,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0394056","Lat":"0.0306000","KPI":532,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0306000],[0.0420326,0.0306000],[0.0420326,0.0324000],[0.0394056,0.0324000],[0.0394056,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0394056","Lat":"0.0324000","KPI":566,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0324000],[0.0420326,0.0324000],[0.0420326,0.0342000],[0.0394056,0.0342000],[0.0394056,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0394056","Lat":"0.0342000","KPI":393,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0342000],[0.0420326,0.0342000],[0.0420326,0.0360000],[0.0394056,0.0360000],[0.0394056,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0394056","Lat":"0.0360000","KPI":28,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0360000],[0.0420326,0.0360000],[0.0420326,0.0378000],[0.0394056,0.0378000],[0.0394056,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0394056","Lat":"0.0378000","KPI":751,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0378000],[0.0420326,0.0378000],[0.0420326,0.0396000],[0.0394056,0.0396000],[0.0394056,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0394056","Lat":"0.0396000","KPI":235,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0396000],[0.0420326,0.0396000],[0.0420326,0.0414000],[0.0394056,0.0414000],[0.0394056,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0394056","Lat":"0.0414000","KPI":587,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0414000],[0.0420326,0.0414000],[0.0420326,0.0432000],[0.0394056,0.0432000],[0.0394056,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0394056","Lat":"0.0432000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0432000],[0.0420326,0.0432000],[0.0420326,0.0450000],[0.0394056,0.0450000],[0.0394056,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0394056","Lat":"0.0450000","KPI":133,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0450000],[0.0420326,0.0450000],[0.0420326,0.0468000],[0.0394056,0.0468000],[0.0394056,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0394056","Lat":"0.0468000","KPI":312,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0468000],[0.0420326,0.0468000],[0.0420326,0.0486000],[0.0394056,0.0486000],[0.0394056,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0394056","Lat":"0.0486000","KPI":799,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0486000],[0.0420326,0.0486000],[0.0420326,0.0504000],[0.0394056,0.0504000],[0.0394056,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0394056","Lat":"0.0504000","KPI":917,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0504000],[0.0420326,0.0504000],[0.0420326,0.0522000],[0.0394056,0.0522000],[0.0394056,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0394056","Lat":"0.0522000","KPI":654,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0522000],[0.0420326,0.0522000],[0.0420326,0.0540000],[0.0394056,0.0540000],[0.0394056,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0394056","Lat":"0.0540000","KPI":36,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0540000],[0.0420326,0.0540000],[0.0420326,0.0558000],[0.0394056,0.0558000],[0.0394056,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0394056","Lat":"0.0558000","KPI":68,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0558000],[0.0420326,0.0558000],[0.0420326,0.0576000],[0.0394056,0.0576000],[0.0394056,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0420326","Lat":"0.0000000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0000000],[0.0446597,0.0000000],[0.0446597,0.0018000],[0.0420326,0.0018000],[0.0420326,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0420326","Lat":"0.0018000","KPI":720,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0018000],[0.0446597,0.0018000],[0.0446597,0.0036000],[0.0420326,0.0036000],[0.0420326,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0420326","Lat":"0.0036000","KPI":679,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0036000],[0.0446597,0.0036000],[0.0446597,0.0054000],[0.0420326,0.0054000],[0.0420326,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0420326","Lat":"0.0054000","KPI":809,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0054000],[0.0446597,0.0054000],[0.0446597,0.0072000],[0.0420326,0.0072000],[0.0420326,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0420326","Lat":"0.0072000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0072000],[0.0446597,0.0072000],[0.0446597,0.0090000],[0.0420326,0.0090000],[0.0420326,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0420326","Lat":"0.0090000","KPI":965,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0090000],[0.0446597,0.0090000],[0.0446597,0.0108000],[0.0420326,0.0108000],[0.0420326,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0420326","Lat":"0.0108000","KPI":161,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0108000],[0.0446597,0.0108000],[0.0446597,0.0126000],[0.0420326,0.0126000],[0.0420326,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0420326","Lat":"0.0126000","KPI":72,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0126000],[0.0446597,0.0126000],[0.0446597,0.0144000],[0.0420326,0.0144000],[0.0420326,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0420326","Lat":"0.0144000","KPI":307,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0144000],[0.0446597,0.0144000],[0.0446597,0.0162000],[0.0420326,0.0162000],[0.0420326,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0420326","Lat":"0.0162000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0162000],[0.0446597,0.0162000],[0.0446597,0.0180000],[0.0420326,0.0180000],[0.0420326,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0420326","Lat":"0.0180000","KPI":405,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0180000],[0.0446597,0.0180000],[0.0446597,0.0198000],[0.0420326,0.0198000],[0.0420326,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0420326","Lat":"0.0198000","KPI":326,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0198000],[0.0446597,0.0198000],[0.0446597,0.0216000],[0.0420326,0.0216000],[0.0420326,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0420326","Lat":"0.0216000","KPI":989,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0216000],[0.0446597,0.0216000],[0.0446597,0.0234000],[0.0420326,0.0234000],[0.0420326,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0420326","Lat":"0.0234000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0234000],[0.0446597,0.0234000],[0.0446597,0.0252000],[0.0420326,0.0252000],[0.0420326,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0420326","Lat":"0.0252000","KPI":378,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0252000],[0.0446597,0.0252000],[0.0446597,0.0270000],[0.0420326,0.0270000],[0.0420326,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0420326","Lat":"0.0270000","KPI":762,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0270000],[0.0446597,0.0270000],[0.0446597,0.0288000],[0.0420326,0.0288000],[0.0420326,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0420326","Lat":"0.0288000","KPI":292,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0288000],[0.0446597,0.0288000],[0.0446597,0.0306000],[0.0420326,0.0306000],[0.0420326,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0420326","Lat":"0.0306000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0306000],[0.0446597,0.0306000],[0.0446597,0.0324000],[0.0420326,0.0324000],[0.0420326,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0420326","Lat":"0.0324000","KPI":18,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0324000],[0.0446597,0.0324000],[0.0446597,0.0342000],[0.0420326,0.0342000],[0.0420326,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0420326","Lat":"0.0342000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0342000],[0.0446597,0.0342000],[0.0446597,0.0360000],[0.0420326,0.0360000],[0.0420326,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0420326","Lat":"0.0360000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0360000],[0.0446597,0.0360000],[0.0446597,0.0378000],[0.0420326,0.0378000],[0.0420326,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0420326","Lat":"0.0378000","KPI":437,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0378000],[0.0446597,0.0378000],[0.0446597,0.0396000],[0.0420326,0.0396000],[0.0420326,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0420326","Lat":"0.0396000","KPI":465,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0396000],[0.0446597,0.0396000],[0.0446597,0.0414000],[0.0420326,0.0414000],[0.0420326,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0420326","Lat":"0.0414000","KPI":334,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0414000],[0.0446597,0.0414000],[0.0446597,0.0432000],[0.0420326,0.0432000],[0.0420326,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0420326","Lat":"0.0432000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0432000],[0.0446597,0.0432000],[0.0446597,0.0450000],[0.0420326,0.0450000],[0.0420326,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0420326","Lat":"0.0450000","KPI":434,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0450000],[0.0446597,0.0450000],[0.0446597,0.0468000],[0.0420326,0.0468000],[0.0420326,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0420326","Lat":"0.0468000","KPI":316,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0468000],[0.0446597,0.0468000],[0.0446597,0.0486000],[0.0420326,0.0486000],[0.0420326,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0420326","Lat":"0.0486000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0486000],[0.0446597,0.0486000],[0.0446597,0.0504000],[0.0420326,0.0504000],[0.0420326,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0420326","Lat":"0.0504000","KPI":65,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0504000],[0.0446597,0.0504000],[0.0446597,0.0522000],[0.0420326,0.0522000],[0.0420326,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0420326","Lat":"0.0522000","KPI":282,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0522000],[0.0446597,0.0522000],[0.0446597,0.0540000],[0.0420326,0.0540000],[0.0420326,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0420326","Lat":"0.0540000","KPI":822,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0540000],[0.0446597,0.0540000],[0.0446597,0.0558000],[0.0420326,0.0558000],[0.0420326,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0420326","Lat":"0.0558000","KPI":185,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0558000],[0.0446597,0.0558000],[0.0446597,0.0576000],[0.0420326,0.0576000],[0.0420326,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0446597","Lat":"0.0000000","KPI":393,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0000000],[0.0472867,0.0000000],[0.0472867,0.0018000],[0.0446597,0.0018000],[0.0446597,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0446597","Lat":"0.0018000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0018000],[0.0472867,0.0018000],[0.0472867,0.0036000],[0.0446597,0.0036000],[0.0446597,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0446597","Lat":"0.0036000","KPI":236,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0036000],[0.0472867,0.0036000],[0.0472867,0.0054000],[0.0446597,0.0054000],[0.0446597,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0446597","Lat":"0.0054000","KPI":264,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0054000],[0.0472867,0.0054000],[0.0472867,0.0072000],[0.0446597,0.0072000],[0.0446597,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0446597","Lat":"0.0072000","KPI":398,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0072000],[0.0472867,0.0072000],[0.0472867,0.0090000],[0.0446597,0.0090000],[0.0446597,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0446597","Lat":"0.0090000","KPI":387,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0090000],[0.0472867,0.0090000],[0.0472867,0.0108000],[0.0446597,0.0108000],[0.0446597,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0446597","Lat":"0.0108000","KPI":742,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0108000],[0.0472867,0.0108000],[0.0472867,0.0126000],[0.0446597,0.0126000],[0.0446597,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0446597","Lat":"0.0126000","KPI":307,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0126000],[0.0472867,0.0126000],[0.0472867,0.0144000],[0.0446597,0.0144000],[0.0446597,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0446597","Lat":"0.0144000","KPI":356,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0144000],[0.0472867,0.0144000],[0.0472867,0.0162000],[0.0446597,0.0162000],[0.0446597,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0446597","Lat":"0.0162000","KPI":160,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0162000],[0.0472867,0.0162000],[0.0472867,0.0180000],[0.0446597,0.0180000],[0.0446597,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0446597","Lat":"0.0180000","KPI":655,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0180000],[0.0472867,0.0180000],[0.0472867,0.0198000],[0.0446597,0.0198000],[0.0446597,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0446597","Lat":"0.0198000","KPI":352,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0198000],[0.0472867,0.0198000],[0.0472867,0.0216000],[0.0446597,0.0216000],[0.0446597,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0446597","Lat":"0.0216000","KPI":807,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0216000],[0.0472867,0.0216000],[0.0472867,0.0234000],[0.0446597,0.0234000],[0.0446597,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0446597","Lat":"0.0234000","KPI":967,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0234000],[0.0472867,0.0234000],[0.0472867,0.0252000],[0.0446597,0.0252000],[0.0446597,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0446597","Lat":"0.0252000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0252000],[0.0472867,0.0252000],[0.0472867,0.0270000],[0.0446597,0.0270000],[0.0446597,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0446597","Lat":"0.0270000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0270000],[0.0472867,0.0270000],[0.0472867,0.0288000],[0.0446597,0.0288000],[0.0446597,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0446597","Lat":"0.0288000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0288000],[0.0472867,0.0288000],[0.0472867,0.0306000],[0.0446597,0.0306000],[0.0446597,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0446597","Lat":"0.0306000","KPI":226,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0306000],[0.0472867,0.0306000],[0.0472867,0.0324000],[0.0446597,0.0324000],[0.0446597,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0446597","Lat":"0.0324000","KPI":584,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0324000],[0.0472867,0.0324000],[0.0472867,0.0342000],[0.0446597,0.0342000],[0.0446597,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0446597","Lat":"0.0342000","KPI":829,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0342000],[0.0472867,0.0342000],[0.0472867,0.0360000],[0.0446597,0.0360000],[0.0446597,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0446597","Lat":"0.0360000","KPI":789,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0360000],[0.0472867,0.0360000],[0.0472867,0.0378000],[0.0446597,0.0378000],[0.0446597,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0446597","Lat":"0.0378000","KPI":463,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0378000],[0.0472867,0.0378000],[0.0472867,0.0396000],[0.0446597,0.0396000],[0.0446597,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0446597","Lat":"0.0396000","KPI":190,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0396000],[0.0472867,0.0396000],[0.0472867,0.0414000],[0.0446597,0.0414000],[0.0446597,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0446597","Lat":"0.0414000","KPI":191,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0414000],[0.0472867,0.0414000],[0.0472867,0.0432000],[0.0446597,0.0432000],[0.0446597,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0446597","Lat":"0.0432000","KPI":191,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0432000],[0.0472867,0.0432000],[0.0472867,0.0450000],[0.0446597,0.0450000],[0.0446597,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0446597","Lat":"0.0450000","KPI":368,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0450000],[0.0472867,0.0450000],[0.0472867,0.0468000],[0.0446597,0.0468000],[0.0446597,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0446597","Lat":"0.0468000","KPI":286,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0468000],[0.0472867,0.0468000],[0.0472867,0.0486000],[0.0446597,0.0486000],[0.0446597,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0446597","Lat":"0.0486000","KPI":978,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0486000],[0.0472867,0.0486000],[0.0472867,0.0504000],[0.0446597,0.0504000],[0.0446597,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0446597","Lat":"0.0504000","KPI":7,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0504000],[0.0472867,0.0504000],[0.0472867,0.0522000],[0.0446597,0.0522000],[0.0446597,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0446597","Lat":"0.0522000","KPI":620,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0522000],[0.0472867,0.0522000],[0.0472867,0.0540000],[0.0446597,0.0540000],[0.0446597,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0446597","Lat":"0.0540000","KPI":488,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0540000],[0.0472867,0.0540000],[0.0472867,0.0558000],[0.0446597,0.0558000],[0.0446597,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0446597","Lat":"0.0558000","KPI":534,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0558000],[0.0472867,0.0558000],[0.0472867,0.0576000],[0.0446597,0.0576000],[0.0446597,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0472867","Lat":"0.0000000","KPI":993,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0000000],[0.0499138,0.0000000],[0.0499138,0.0018000],[0.0472867,0.0018000],[0.0472867,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0472867","Lat":"0.0018000","KPI":648,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0018000],[0.0499138,0.0018000],[0.0499138,0.0036000],[0.0472867,0.0036000],[0.0472867,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0472867","Lat":"0.0036000","KPI":790,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0036000],[0.0499138,0.0036000],[0.0499138,0.0054000],[0.0472867,0.0054000],[0.0472867,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0472867","Lat":"0.0054000","KPI":262,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0054000],[0.0499138,0.0054000],[0.0499138,0.0072000],[0.0472867,0.0072000],[0.0472867,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0472867","Lat":"0.0072000","KPI":242,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0072000],[0.0499138,0.0072000],[0.0499138,0.0090000],[0.0472867,0.0090000],[0.0472867,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0472867","Lat":"0.0090000","KPI":666,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0090000],[0.0499138,0.0090000],[0.0499138,0.0108000],[0.0472867,0.0108000],[0.0472867,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0472867","Lat":"0.0108000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0108000],[0.0499138,0.0108000],[0.0499138,0.0126000],[0.0472867,0.0126000],[0.0472867,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0472867","Lat":"0.0126000","KPI":652,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0126000],[0.0499138,0.0126000],[0.0499138,0.0144000],[0.0472867,0.0144000],[0.0472867,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0472867","Lat":"0.0144000","KPI":233,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0144000],[0.0499138,0.0144000],[0.0499138,0.0162000],[0.0472867,0.0162000],[0.0472867,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0472867","Lat":"0.0162000","KPI":646,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0162000],[0.0499138,0.0162000],[0.0499138,0.0180000],[0.0472867,0.0180000],[0.0472867,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0472867","Lat":"0.0180000","KPI":330,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0180000],[0.0499138,0.0180000],[0.0499138,0.0198000],[0.0472867,0.0198000],[0.0472867,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0472867","Lat":"0.0198000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0198000],[0.0499138,0.0198000],[0.0499138,0.0216000],[0.0472867,0.0216000],[0.0472867,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0472867","Lat":"0.0216000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0216000],[0.0499138,0.0216000],[0.0499138,0.0234000],[0.0472867,0.0234000],[0.0472867,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0472867","Lat":"0.0234000","KPI":89,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0234000],[0.0499138,0.0234000],[0.0499138,0.0252000],[0.0472867,0.0252000],[0.0472867,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0472867","Lat":"0.0252000","KPI":876,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0252000],[0.0499138,0.0252000],[0.0499138,0.0270000],[0.0472867,0.0270000],[0.0472867,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0472867","Lat":"0.0270000","KPI":158,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0270000],[0.0499138,0.0270000],[0.0499138,0.0288000],[0.0472867,0.0288000],[0.0472867,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0472867","Lat":"0.0288000","KPI":115,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0288000],[0.0499138,0.0288000],[0.0499138,0.0306000],[0.0472867,0.0306000],[0.0472867,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0472867","Lat":"0.0306000","KPI":723,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0306000],[0.0499138,0.0306000],[0.0499138,0.0324000],[0.0472867,0.0324000],[0.0472867,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0472867","Lat":"0.0324000","KPI":181,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0324000],[0.0499138,0.0324000],[0.0499138,0.0342000],[0.0472867,0.0342000],[0.0472867,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0472867","Lat":"0.0342000","KPI":472,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0342000],[0.0499138,0.0342000],[0.0499138,0.0360000],[0.0472867,0.0360000],[0.0472867,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0472867","Lat":"0.0360000","KPI":920,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0360000],[0.0499138,0.0360000],[0.0499138,0.0378000],[0.0472867,0.0378000],[0.0472867,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0472867","Lat":"0.0378000","KPI":515,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0378000],[0.0499138,0.0378000],[0.0499138,0.0396000],[0.0472867,0.0396000],[0.0472867,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0472867","Lat":"0.0396000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0396000],[0.0499138,0.0396000],[0.0499138,0.0414000],[0.0472867,0.0414000],[0.0472867,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0472867","Lat":"0.0414000","KPI":280,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0414000],[0.0499138,0.0414000],[0.0499138,0.0432000],[0.0472867,0.0432000],[0.0472867,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0472867","Lat":"0.0432000","KPI":713,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0432000],[0.0499138,0.0432000],[0.0499138,0.0450000],[0.0472867,0.0450000],[0.0472867,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0472867","Lat":"0.0450000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0450000],[0.0499138,0.0450000],[0.0499138,0.0468000],[0.0472867,0.0468000],[0.0472867,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0472867","Lat":"0.0468000","KPI":416,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0468000],[0.0499138,0.0468000],[0.0499138,0.0486000],[0.0472867,0.0486000],[0.0472867,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0472867","Lat":"0.0486000","KPI":837,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0486000],[0.0499138,0.0486000],[0.0499138,0.0504000],[0.0472867,0.0504000],[0.0472867,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0472867","Lat":"0.0504000","KPI":568,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0504000],[0.0499138,0.0504000],[0.0499138,0.0522000],[0.0472867,0.0522000],[0.0472867,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0472867","Lat":"0.0522000","KPI":176,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0522000],[0.0499138,0.0522000],[0.0499138,0.0540000],[0.0472867,0.0540000],[0.0472867,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0472867","Lat":"0.0540000","KPI":71,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0540000],[0.0499138,0.0540000],[0.0499138,0.0558000],[0.0472867,0.0558000],[0.0472867,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0472867","Lat":"0.0558000","KPI":813,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0558000],[0.0499138,0.0558000],[0.0499138,0.0576000],[0.0472867,0.0576000],[0.0472867,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0499138","Lat":"0.0000000","KPI":731,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0000000],[0.0525408,0.0000000],[0.0525408,0.0018000],[0.0499138,0.0018000],[0.0499138,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0499138","Lat":"0.0018000","KPI":958,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0018000],[0.0525408,0.0018000],[0.0525408,0.0036000],[0.0499138,0.0036000],[0.0499138,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0499138","Lat":"0.0036000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0036000],[0.0525408,0.0036000],[0.0525408,0.0054000],[0.0499138,0.0054000],[0.0499138,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0499138","Lat":"0.0054000","KPI":237,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0054000],[0.0525408,0.0054000],[0.0525408,0.0072000],[0.0499138,0.0072000],[0.0499138,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0499138","Lat":"0.0072000","KPI":292,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0072000],[0.0525408,0.0072000],[0.0525408,0.0090000],[0.0499138,0.0090000],[0.0499138,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0499138","Lat":"0.0090000","KPI":482,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0090000],[0.0525408,0.0090000],[0.0525408,0.0108000],[0.0499138,0.0108000],[0.0499138,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0499138","Lat":"0.0108000","KPI":641,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0108000],[0.0525408,0.0108000],[0.0525408,0.0126000],[0.0499138,0.0126000],[0.0499138,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0499138","Lat":"0.0126000","KPI":290,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0126000],[0.0525408,0.0126000],[0.0525408,0.0144000],[0.0499138,0.0144000],[0.0499138,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0499138","Lat":"0.0144000","KPI":58,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0144000],[0.0525408,0.0144000],[0.0525408,0.0162000],[0.0499138,0.0162000],[0.0499138,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0499138","Lat":"0.0162000","KPI":970,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0162000],[0.0525408,0.0162000],[0.0525408,0.0180000],[0.0499138,0.0180000],[0.0499138,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0499138","Lat":"0.0180000","KPI":181,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0180000],[0.0525408,0.0180000],[0.0525408,0.0198000],[0.0499138,0.0198000],[0.0499138,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0499138","Lat":"0.0198000","KPI":720,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0198000],[0.0525408,0.0198000],[0.0525408,0.0216000],[0.0499138,0.0216000],[0.0499138,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0499138","Lat":"0.0216000","KPI":468,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0216000],[0.0525408,0.0216000],[0.0525408,0.0234000],[0.0499138,0.0234000],[0.0499138,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0499138","Lat":"0.0234000","KPI":185,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0234000],[0.0525408,0.0234000],[0.0525408,0.0252000],[0.0499138,0.0252000],[0.0499138,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0499138","Lat":"0.0252000","KPI":117,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0252000],[0.0525408,0.0252000],[0.0525408,0.0270000],[0.0499138,0.0270000],[0.0499138,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0499138","Lat":"0.0270000","KPI":872,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0270000],[0.0525408,0.0270000],[0.0525408,0.0288000],[0.0499138,0.0288000],[0.0499138,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0499138","Lat":"0.0288000","KPI":592,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0288000],[0.0525408,0.0288000],[0.0525408,0.0306000],[0.0499138,0.0306000],[0.0499138,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0499138","Lat":"0.0306000","KPI":225,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0306000],[0.0525408,0.0306000],[0.0525408,0.0324000],[0.0499138,0.0324000],[0.0499138,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0499138","Lat":"0.0324000","KPI":342,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0324000],[0.0525408,0.0324000],[0.0525408,0.0342000],[0.0499138,0.0342000],[0.0499138,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0499138","Lat":"0.0342000","KPI":588,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0342000],[0.0525408,0.0342000],[0.0525408,0.0360000],[0.0499138,0.0360000],[0.0499138,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0499138","Lat":"0.0360000","KPI":543,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0360000],[0.0525408,0.0360000],[0.0525408,0.0378000],[0.0499138,0.0378000],[0.0499138,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0499138","Lat":"0.0378000","KPI":652,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0378000],[0.0525408,0.0378000],[0.0525408,0.0396000],[0.0499138,0.0396000],[0.0499138,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0499138","Lat":"0.0396000","KPI":524,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0396000],[0.0525408,0.0396000],[0.0525408,0.0414000],[0.0499138,0.0414000],[0.0499138,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0499138","Lat":"0.0414000","KPI":476,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0414000],[0.0525408,0.0414000],[0.0525408,0.0432000],[0.0499138,0.0432000],[0.0499138,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0499138","Lat":"0.0432000","KPI":866,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0432000],[0.0525408,0.0432000],[0.0525408,0.0450000],[0.0499138,0.0450000],[0.0499138,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0499138","Lat":"0.0450000","KPI":598,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0450000],[0.0525408,0.0450000],[0.0525408,0.0468000],[0.0499138,0.0468000],[0.0499138,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0499138","Lat":"0.0468000","KPI":22,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0468000],[0.0525408,0.0468000],[0.0525408,0.0486000],[0.0499138,0.0486000],[0.0499138,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0499138","Lat":"0.0486000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0486000],[0.0525408,0.0486000],[0.0525408,0.0504000],[0.0499138,0.0504000],[0.0499138,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0499138","Lat":"0.0504000","KPI":725,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0504000],[0.0525408,0.0504000],[0.0525408,0.0522000],[0.0499138,0.0522000],[0.0499138,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0499138","Lat":"0.0522000","KPI":719,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0522000],[0.0525408,0.0522000],[0.0525408,0.0540000],[0.0499138,0.0540000],[0.0499138,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0499138","Lat":"0.0540000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0540000],[0.0525408,0.0540000],[0.0525408,0.0558000],[0.0499138,0.0558000],[0.0499138,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0499138","Lat":"0.0558000","KPI":605,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0558000],[0.0525408,0.0558000],[0.0525408,0.0576000],[0.0499138,0.0576000],[0.0499138,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0525408","Lat":"0.0000000","KPI":944,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0000000],[0.0551678,0.0000000],[0.0551678,0.0018000],[0.0525408,0.0018000],[0.0525408,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0525408","Lat":"0.0018000","KPI":122,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0018000],[0.0551678,0.0018000],[0.0551678,0.0036000],[0.0525408,0.0036000],[0.0525408,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0525408","Lat":"0.0036000","KPI":406,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0036000],[0.0551678,0.0036000],[0.0551678,0.0054000],[0.0525408,0.0054000],[0.0525408,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0525408","Lat":"0.0054000","KPI":453,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0054000],[0.0551678,0.0054000],[0.0551678,0.0072000],[0.0525408,0.0072000],[0.0525408,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0525408","Lat":"0.0072000","KPI":227,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0072000],[0.0551678,0.0072000],[0.0551678,0.0090000],[0.0525408,0.0090000],[0.0525408,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0525408","Lat":"0.0090000","KPI":657,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0090000],[0.0551678,0.0090000],[0.0551678,0.0108000],[0.0525408,0.0108000],[0.0525408,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0525408","Lat":"0.0108000","KPI":784,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0108000],[0.0551678,0.0108000],[0.0551678,0.0126000],[0.0525408,0.0126000],[0.0525408,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0525408","Lat":"0.0126000","KPI":419,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0126000],[0.0551678,0.0126000],[0.0551678,0.0144000],[0.0525408,0.0144000],[0.0525408,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0525408","Lat":"0.0144000","KPI":119,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0144000],[0.0551678,0.0144000],[0.0551678,0.0162000],[0.0525408,0.0162000],[0.0525408,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0525408","Lat":"0.0162000","KPI":187,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0162000],[0.0551678,0.0162000],[0.0551678,0.0180000],[0.0525408,0.0180000],[0.0525408,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0525408","Lat":"0.0180000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0180000],[0.0551678,0.0180000],[0.0551678,0.0198000],[0.0525408,0.0198000],[0.0525408,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0525408","Lat":"0.0198000","KPI":955,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0198000],[0.0551678,0.0198000],[0.0551678,0.0216000],[0.0525408,0.0216000],[0.0525408,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0525408","Lat":"0.0216000","KPI":528,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0216000],[0.0551678,0.0216000],[0.0551678,0.0234000],[0.0525408,0.0234000],[0.0525408,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0525408","Lat":"0.0234000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0234000],[0.0551678,0.0234000],[0.0551678,0.0252000],[0.0525408,0.0252000],[0.0525408,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0525408","Lat":"0.0252000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0252000],[0.0551678,0.0252000],[0.0551678,0.0270000],[0.0525408,0.0270000],[0.0525408,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0525408","Lat":"0.0270000","KPI":514,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0270000],[0.0551678,0.0270000],[0.0551678,0.0288000],[0.0525408,0.0288000],[0.0525408,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0525408","Lat":"0.0288000","KPI":876,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0288000],[0.0551678,0.0288000],[0.0551678,0.0306000],[0.0525408,0.0306000],[0.0525408,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0525408","Lat":"0.0306000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0306000],[0.0551678,0.0306000],[0.0551678,0.0324000],[0.0525408,0.0324000],[0.0525408,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0525408","Lat":"0.0324000","KPI":245,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0324000],[0.0551678,0.0324000],[0.0551678,0.0342000],[0.0525408,0.0342000],[0.0525408,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0525408","Lat":"0.0342000","KPI":550,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0342000],[0.0551678,0.0342000],[0.0551678,0.0360000],[0.0525408,0.0360000],[0.0525408,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0525408","Lat":"0.0360000","KPI":180,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0360000],[0.0551678,0.0360000],[0.0551678,0.0378000],[0.0525408,0.0378000],[0.0525408,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0525408","Lat":"0.0378000","KPI":841,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0378000],[0.0551678,0.0378000],[0.0551678,0.0396000],[0.0525408,0.0396000],[0.0525408,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0525408","Lat":"0.0396000","KPI":224,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0396000],[0.0551678,0.0396000],[0.0551678,0.0414000],[0.0525408,0.0414000],[0.0525408,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0525408","Lat":"0.0414000","KPI":936,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0414000],[0.0551678,0.0414000],[0.0551678,0.0432000],[0.0525408,0.0432000],[0.0525408,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0525408","Lat":"0.0432000","KPI":658,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0432000],[0.0551678,0.0432000],[0.0551678,0.0450000],[0.0525408,0.0450000],[0.0525408,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0525408","Lat":"0.0450000","KPI":892,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0450000],[0.0551678,0.0450000],[0.0551678,0.0468000],[0.0525408,0.0468000],[0.0525408,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0525408","Lat":"0.0468000","KPI":575,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0468000],[0.0551678,0.0468000],[0.0551678,0.0486000],[0.0525408,0.0486000],[0.0525408,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0525408","Lat":"0.0486000","KPI":529,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0486000],[0.0551678,0.0486000],[0.0551678,0.0504000],[0.0525408,0.0504000],[0.0525408,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0525408","Lat":"0.0504000","KPI":646,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0504000],[0.0551678,0.0504000],[0.0551678,0.0522000],[0.0525408,0.0522000],[0.0525408,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0525408","Lat":"0.0522000","KPI":806,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0522000],[0.0551678,0.0522000],[0.0551678,0.0540000],[0.0525408,0.0540000],[0.0525408,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0525408","Lat":"0.0540000","KPI":916,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0540000],[0.0551678,0.0540000],[0.0551678,0.0558000],[0.0525408,0.0558000],[0.0525408,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0525408","Lat":"0.0558000","KPI":909,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0558000],[0.0551678,0.0558000],[0.0551678,0.0576000],[0.0525408,0.0576000],[0.0525408,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0551678","Lat":"0.0000000","KPI":910,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0000000],[0.0577949,0.0000000],[0.0577949,0.0018000],[0.0551678,0.0018000],[0.0551678,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0551678","Lat":"0.0018000","KPI":733,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0018000],[0.0577949,0.0018000],[0.0577949,0.0036000],[0.0551678,0.0036000],[0.0551678,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0551678","Lat":"0.0036000","KPI":832,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0036000],[0.0577949,0.0036000],[0.0577949,0.0054000],[0.0551678,0.0054000],[0.0551678,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0551678","Lat":"0.0054000","KPI":529,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0054000],[0.0577949,0.0054000],[0.0577949,0.0072000],[0.0551678,0.0072000],[0.0551678,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0551678","Lat":"0.0072000","KPI":672,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0072000],[0.0577949,0.0072000],[0.0577949,0.0090000],[0.0551678,0.0090000],[0.0551678,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0551678","Lat":"0.0090000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0090000],[0.0577949,0.0090000],[0.0577949,0.0108000],[0.0551678,0.0108000],[0.0551678,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0551678","Lat":"0.0108000","KPI":571,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0108000],[0.0577949,0.0108000],[0.0577949,0.0126000],[0.0551678,0.0126000],[0.0551678,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0551678","Lat":"0.0126000","KPI":789,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0126000],[0.0577949,0.0126000],[0.0577949,0.0144000],[0.0551678,0.0144000],[0.0551678,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0551678","Lat":"0.0144000","KPI":902,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0144000],[0.0577949,0.0144000],[0.0577949,0.0162000],[0.0551678,0.0162000],[0.0551678,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0551678","Lat":"0.0162000","KPI":342,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0162000],[0.0577949,0.0162000],[0.0577949,0.0180000],[0.0551678,0.0180000],[0.0551678,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0551678","Lat":"0.0180000","KPI":137,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0180000],[0.0577949,0.0180000],[0.0577949,0.0198000],[0.0551678,0.0198000],[0.0551678,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0551678","Lat":"0.0198000","KPI":786,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0198000],[0.0577949,0.0198000],[0.0577949,0.0216000],[0.0551678,0.0216000],[0.0551678,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0551678","Lat":"0.0216000","KPI":702,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0216000],[0.0577949,0.0216000],[0.0577949,0.0234000],[0.0551678,0.0234000],[0.0551678,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0551678","Lat":"0.0234000","KPI":742,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0234000],[0.0577949,0.0234000],[0.0577949,0.0252000],[0.0551678,0.0252000],[0.0551678,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0551678","Lat":"0.0252000","KPI":736,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0252000],[0.0577949,0.0252000],[0.0577949,0.0270000],[0.0551678,0.0270000],[0.0551678,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0551678","Lat":"0.0270000","KPI":740,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0270000],[0.0577949,0.0270000],[0.0577949,0.0288000],[0.0551678,0.0288000],[0.0551678,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0551678","Lat":"0.0288000","KPI":851,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0288000],[0.0577949,0.0288000],[0.0577949,0.0306000],[0.0551678,0.0306000],[0.0551678,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0551678","Lat":"0.0306000","KPI":11,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0306000],[0.0577949,0.0306000],[0.0577949,0.0324000],[0.0551678,0.0324000],[0.0551678,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0551678","Lat":"0.0324000","KPI":746,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0324000],[0.0577949,0.0324000],[0.0577949,0.0342000],[0.0551678,0.0342000],[0.0551678,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0551678","Lat":"0.0342000","KPI":359,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0342000],[0.0577949,0.0342000],[0.0577949,0.0360000],[0.0551678,0.0360000],[0.0551678,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0551678","Lat":"0.0360000","KPI":816,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0360000],[0.0577949,0.0360000],[0.0577949,0.0378000],[0.0551678,0.0378000],[0.0551678,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0551678","Lat":"0.0378000","KPI":485,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0378000],[0.0577949,0.0378000],[0.0577949,0.0396000],[0.0551678,0.0396000],[0.0551678,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0551678","Lat":"0.0396000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0396000],[0.0577949,0.0396000],[0.0577949,0.0414000],[0.0551678,0.0414000],[0.0551678,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0551678","Lat":"0.0414000","KPI":634,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0414000],[0.0577949,0.0414000],[0.0577949,0.0432000],[0.0551678,0.0432000],[0.0551678,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0551678","Lat":"0.0432000","KPI":814,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0432000],[0.0577949,0.0432000],[0.0577949,0.0450000],[0.0551678,0.0450000],[0.0551678,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0551678","Lat":"0.0450000","KPI":871,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0450000],[0.0577949,0.0450000],[0.0577949,0.0468000],[0.0551678,0.0468000],[0.0551678,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0551678","Lat":"0.0468000","KPI":729,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0468000],[0.0577949,0.0468000],[0.0577949,0.0486000],[0.0551678,0.0486000],[0.0551678,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0551678","Lat":"0.0486000","KPI":831,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0486000],[0.0577949,0.0486000],[0.0577949,0.0504000],[0.0551678,0.0504000],[0.0551678,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0551678","Lat":"0.0504000","KPI":714,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0504000],[0.0577949,0.0504000],[0.0577949,0.0522000],[0.0551678,0.0522000],[0.0551678,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0551678","Lat":"0.0522000","KPI":315,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0522000],[0.0577949,0.0522000],[0.0577949,0.0540000],[0.0551678,0.0540000],[0.0551678,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0551678","Lat":"0.0540000","KPI":131,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0540000],[0.0577949,0.0540000],[0.0577949,0.0558000],[0.0551678,0.0558000],[0.0551678,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0551678","Lat":"0.0558000","KPI":673,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0558000],[0.0577949,0.0558000],[0.0577949,0.0576000],[0.0551678,0.0576000],[0.0551678,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0577949","Lat":"0.0000000","KPI":877,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0000000],[0.0604219,0.0000000],[0.0604219,0.0018000],[0.0577949,0.0018000],[0.0577949,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0577949","Lat":"0.0018000","KPI":519,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0018000],[0.0604219,0.0018000],[0.0604219,0.0036000],[0.0577949,0.0036000],[0.0577949,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0577949","Lat":"0.0036000","KPI":49,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0036000],[0.0604219,0.0036000],[0.0604219,0.0054000],[0.0577949,0.0054000],[0.0577949,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0577949","Lat":"0.0054000","KPI":975,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0054000],[0.0604219,0.0054000],[0.0604219,0.0072000],[0.0577949,0.0072000],[0.0577949,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0577949","Lat":"0.0072000","KPI":227,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0072000],[0.0604219,0.0072000],[0.0604219,0.0090000],[0.0577949,0.0090000],[0.0577949,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0577949","Lat":"0.0090000","KPI":266,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0090000],[0.0604219,0.0090000],[0.0604219,0.0108000],[0.0577949,0.0108000],[0.0577949,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0577949","Lat":"0.0108000","KPI":904,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0108000],[0.0604219,0.0108000],[0.0604219,0.0126000],[0.0577949,0.0126000],[0.0577949,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0577949","Lat":"0.0126000","KPI":230,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0126000],[0.0604219,0.0126000],[0.0604219,0.0144000],[0.0577949,0.0144000],[0.0577949,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0577949","Lat":"0.0144000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0144000],[0.0604219,0.0144000],[0.0604219,0.0162000],[0.0577949,0.0162000],[0.0577949,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0577949","Lat":"0.0162000","KPI":2,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0162000],[0.0604219,0.0162000],[0.0604219,0.0180000],[0.0577949,0.0180000],[0.0577949,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0577949","Lat":"0.0180000","KPI":560,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0180000],[0.0604219,0.0180000],[0.0604219,0.0198000],[0.0577949,0.0198000],[0.0577949,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0577949","Lat":"0.0198000","KPI":900,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0198000],[0.0604219,0.0198000],[0.0604219,0.0216000],[0.0577949,0.0216000],[0.0577949,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0577949","Lat":"0.0216000","KPI":870,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0216000],[0.0604219,0.0216000],[0.0604219,0.0234000],[0.0577949,0.0234000],[0.0577949,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0577949","Lat":"0.0234000","KPI":342,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0234000],[0.0604219,0.0234000],[0.0604219,0.0252000],[0.0577949,0.0252000],[0.0577949,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0577949","Lat":"0.0252000","KPI":389,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0252000],[0.0604219,0.0252000],[0.0604219,0.0270000],[0.0577949,0.0270000],[0.0577949,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0577949","Lat":"0.0270000","KPI":421,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0270000],[0.0604219,0.0270000],[0.0604219,0.0288000],[0.0577949,0.0288000],[0.0577949,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0577949","Lat":"0.0288000","KPI":889,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0288000],[0.0604219,0.0288000],[0.0604219,0.0306000],[0.0577949,0.0306000],[0.0577949,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0577949","Lat":"0.0306000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0306000],[0.0604219,0.0306000],[0.0604219,0.0324000],[0.0577949,0.0324000],[0.0577949,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0577949","Lat":"0.0324000","KPI":410,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0324000],[0.0604219,0.0324000],[0.0604219,0.0342000],[0.0577949,0.0342000],[0.0577949,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0577949","Lat":"0.0342000","KPI":166,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0342000],[0.0604219,0.0342000],[0.0604219,0.0360000],[0.0577949,0.0360000],[0.0577949,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0577949","Lat":"0.0360000","KPI":925,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0360000],[0.0604219,0.0360000],[0.0604219,0.0378000],[0.0577949,0.0378000],[0.0577949,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0577949","Lat":"0.0378000","KPI":960,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0378000],[0.0604219,0.0378000],[0.0604219,0.0396000],[0.0577949,0.0396000],[0.0577949,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0577949","Lat":"0.0396000","KPI":923,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0396000],[0.0604219,0.0396000],[0.0604219,0.0414000],[0.0577949,0.0414000],[0.0577949,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0577949","Lat":"0.0414000","KPI":889,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0414000],[0.0604219,0.0414000],[0.0604219,0.0432000],[0.0577949,0.0432000],[0.0577949,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0577949","Lat":"0.0432000","KPI":800,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0432000],[0.0604219,0.0432000],[0.0604219,0.0450000],[0.0577949,0.0450000],[0.0577949,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0577949","Lat":"0.0450000","KPI":185,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0450000],[0.0604219,0.0450000],[0.0604219,0.0468000],[0.0577949,0.0468000],[0.0577949,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0577949","Lat":"0.0468000","KPI":355,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0468000],[0.0604219,0.0468000],[0.0604219,0.0486000],[0.0577949,0.0486000],[0.0577949,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0577949","Lat":"0.0486000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0486000],[0.0604219,0.0486000],[0.0604219,0.0504000],[0.0577949,0.0504000],[0.0577949,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0577949","Lat":"0.0504000","KPI":564,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0504000],[0.0604219,0.0504000],[0.0604219,0.0522000],[0.0577949,0.0522000],[0.0577949,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0577949","Lat":"0.0522000","KPI":977,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0522000],[0.0604219,0.0522000],[0.0604219,0.0540000],[0.0577949,0.0540000],[0.0577949,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0577949","Lat":"0.0540000","KPI":231,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0540000],[0.0604219,0.0540000],[0.0604219,0.0558000],[0.0577949,0.0558000],[0.0577949,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0577949","Lat":"0.0558000","KPI":322,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0558000],[0.0604219,0.0558000],[0.0604219,0.0576000],[0.0577949,0.0576000],[0.0577949,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0604219","Lat":"0.0000000","KPI":100,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0000000],[0.0630490,0.0000000],[0.0630490,0.0018000],[0.0604219,0.0018000],[0.0604219,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0604219","Lat":"0.0018000","KPI":879,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0018000],[0.0630490,0.0018000],[0.0630490,0.0036000],[0.0604219,0.0036000],[0.0604219,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0604219","Lat":"0.0036000","KPI":485,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0036000],[0.0630490,0.0036000],[0.0630490,0.0054000],[0.0604219,0.0054000],[0.0604219,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0604219","Lat":"0.0054000","KPI":720,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0054000],[0.0630490,0.0054000],[0.0630490,0.0072000],[0.0604219,0.0072000],[0.0604219,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0604219","Lat":"0.0072000","KPI":499,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0072000],[0.0630490,0.0072000],[0.0630490,0.0090000],[0.0604219,0.0090000],[0.0604219,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0604219","Lat":"0.0090000","KPI":830,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0090000],[0.0630490,0.0090000],[0.0630490,0.0108000],[0.0604219,0.0108000],[0.0604219,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0604219","Lat":"0.0108000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0108000],[0.0630490,0.0108000],[0.0630490,0.0126000],[0.0604219,0.0126000],[0.0604219,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0604219","Lat":"0.0126000","KPI":183,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0126000],[0.0630490,0.0126000],[0.0630490,0.0144000],[0.0604219,0.0144000],[0.0604219,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0604219","Lat":"0.0144000","KPI":763,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0144000],[0.0630490,0.0144000],[0.0630490,0.0162000],[0.0604219,0.0162000],[0.0604219,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0604219","Lat":"0.0162000","KPI":782,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0162000],[0.0630490,0.0162000],[0.0630490,0.0180000],[0.0604219,0.0180000],[0.0604219,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0604219","Lat":"0.0180000","KPI":857,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0180000],[0.0630490,0.0180000],[0.0630490,0.0198000],[0.0604219,0.0198000],[0.0604219,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0604219","Lat":"0.0198000","KPI":42,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0198000],[0.0630490,0.0198000],[0.0630490,0.0216000],[0.0604219,0.0216000],[0.0604219,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0604219","Lat":"0.0216000","KPI":677,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0216000],[0.0630490,0.0216000],[0.0630490,0.0234000],[0.0604219,0.0234000],[0.0604219,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0604219","Lat":"0.0234000","KPI":259,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0234000],[0.0630490,0.0234000],[0.0630490,0.0252000],[0.0604219,0.0252000],[0.0604219,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0604219","Lat":"0.0252000","KPI":868,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0252000],[0.0630490,0.0252000],[0.0630490,0.0270000],[0.0604219,0.0270000],[0.0604219,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0604219","Lat":"0.0270000","KPI":171,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0270000],[0.0630490,0.0270000],[0.0630490,0.0288000],[0.0604219,0.0288000],[0.0604219,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0604219","Lat":"0.0288000","KPI":884,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0288000],[0.0630490,0.0288000],[0.0630490,0.0306000],[0.0604219,0.0306000],[0.0604219,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0604219","Lat":"0.0306000","KPI":12,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0306000],[0.0630490,0.0306000],[0.0630490,0.0324000],[0.0604219,0.0324000],[0.0604219,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0604219","Lat":"0.0324000","KPI":540,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0324000],[0.0630490,0.0324000],[0.0630490,0.0342000],[0.0604219,0.0342000],[0.0604219,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0604219","Lat":"0.0342000","KPI":812,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0342000],[0.0630490,0.0342000],[0.0630490,0.0360000],[0.0604219,0.0360000],[0.0604219,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0604219","Lat":"0.0360000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0360000],[0.0630490,0.0360000],[0.0630490,0.0378000],[0.0604219,0.0378000],[0.0604219,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0604219","Lat":"0.0378000","KPI":139,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0378000],[0.0630490,0.0378000],[0.0630490,0.0396000],[0.0604219,0.0396000],[0.0604219,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0604219","Lat":"0.0396000","KPI":944,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0396000],[0.0630490,0.0396000],[0.0630490,0.0414000],[0.0604219,0.0414000],[0.0604219,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0604219","Lat":"0.0414000","KPI":898,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0414000],[0.0630490,0.0414000],[0.0630490,0.0432000],[0.0604219,0.0432000],[0.0604219,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0604219","Lat":"0.0432000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0432000],[0.0630490,0.0432000],[0.0630490,0.0450000],[0.0604219,0.0450000],[0.0604219,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0604219","Lat":"0.0450000","KPI":301,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0450000],[0.0630490,0.0450000],[0.0630490,0.0468000],[0.0604219,0.0468000],[0.0604219,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0604219","Lat":"0.0468000","KPI":573,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0468000],[0.0630490,0.0468000],[0.0630490,0.0486000],[0.0604219,0.0486000],[0.0604219,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0604219","Lat":"0.0486000","KPI":626,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0486000],[0.0630490,0.0486000],[0.0630490,0.0504000],[0.0604219,0.0504000],[0.0604219,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0604219","Lat":"0.0504000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0504000],[0.0630490,0.0504000],[0.0630490,0.0522000],[0.0604219,0.0522000],[0.0604219,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0604219","Lat":"0.0522000","KPI":906,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0522000],[0.0630490,0.0522000],[0.0630490,0.0540000],[0.0604219,0.0540000],[0.0604219,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0604219","Lat":"0.0540000","KPI":321,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0540000],[0.0630490,0.0540000],[0.0630490,0.0558000],[0.0604219,0.0558000],[0.0604219,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0604219","Lat":"0.0558000","KPI":294,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0558000],[0.0630490,0.0558000],[0.0630490,0.0576000],[0.0604219,0.0576000],[0.0604219,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0630490","Lat":"0.0000000","KPI":867,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0000000],[0.0656760,0.0000000],[0.0656760,0.0018000],[0.0630490,0.0018000],[0.0630490,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0630490","Lat":"0.0018000","KPI":409,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0018000],[0.0656760,0.0018000],[0.0656760,0.0036000],[0.0630490,0.0036000],[0.0630490,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0630490","Lat":"0.0036000","KPI":328,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0036000],[0.0656760,0.0036000],[0.0656760,0.0054000],[0.0630490,0.0054000],[0.0630490,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0630490","Lat":"0.0054000","KPI":647,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0054000],[0.0656760,0.0054000],[0.0656760,0.0072000],[0.0630490,0.0072000],[0.0630490,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0630490","Lat":"0.0072000","KPI":134,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0072000],[0.0656760,0.0072000],[0.0656760,0.0090000],[0.0630490,0.0090000],[0.0630490,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0630490","Lat":"0.0090000","KPI":77,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0090000],[0.0656760,0.0090000],[0.0656760,0.0108000],[0.0630490,0.0108000],[0.0630490,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0630490","Lat":"0.0108000","KPI":126,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0108000],[0.0656760,0.0108000],[0.0656760,0.0126000],[0.0630490,0.0126000],[0.0630490,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0630490","Lat":"0.0126000","KPI":234,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0126000],[0.0656760,0.0126000],[0.0656760,0.0144000],[0.0630490,0.0144000],[0.0630490,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0630490","Lat":"0.0144000","KPI":90,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0144000],[0.0656760,0.0144000],[0.0656760,0.0162000],[0.0630490,0.0162000],[0.0630490,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0630490","Lat":"0.0162000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0162000],[0.0656760,0.0162000],[0.0656760,0.0180000],[0.0630490,0.0180000],[0.0630490,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0630490","Lat":"0.0180000","KPI":783,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0180000],[0.0656760,0.0180000],[0.0656760,0.0198000],[0.0630490,0.0198000],[0.0630490,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0630490","Lat":"0.0198000","KPI":539,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0198000],[0.0656760,0.0198000],[0.0656760,0.0216000],[0.0630490,0.0216000],[0.0630490,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0630490","Lat":"0.0216000","KPI":566,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0216000],[0.0656760,0.0216000],[0.0656760,0.0234000],[0.0630490,0.0234000],[0.0630490,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0630490","Lat":"0.0234000","KPI":371,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0234000],[0.0656760,0.0234000],[0.0656760,0.0252000],[0.0630490,0.0252000],[0.0630490,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0630490","Lat":"0.0252000","KPI":979,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0252000],[0.0656760,0.0252000],[0.0656760,0.0270000],[0.0630490,0.0270000],[0.0630490,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0630490","Lat":"0.0270000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0270000],[0.0656760,0.0270000],[0.0656760,0.0288000],[0.0630490,0.0288000],[0.0630490,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0630490","Lat":"0.0288000","KPI":277,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0288000],[0.0656760,0.0288000],[0.0656760,0.0306000],[0.0630490,0.0306000],[0.0630490,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0630490","Lat":"0.0306000","KPI":661,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0306000],[0.0656760,0.0306000],[0.0656760,0.0324000],[0.0630490,0.0324000],[0.0630490,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0630490","Lat":"0.0324000","KPI":212,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0324000],[0.0656760,0.0324000],[0.0656760,0.0342000],[0.0630490,0.0342000],[0.0630490,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0630490","Lat":"0.0342000","KPI":353,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0342000],[0.0656760,0.0342000],[0.0656760,0.0360000],[0.0630490,0.0360000],[0.0630490,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0630490","Lat":"0.0360000","KPI":109,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0360000],[0.0656760,0.0360000],[0.0656760,0.0378000],[0.0630490,0.0378000],[0.0630490,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0630490","Lat":"0.0378000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0378000],[0.0656760,0.0378000],[0.0656760,0.0396000],[0.0630490,0.0396000],[0.0630490,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0630490","Lat":"0.0396000","KPI":574,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0396000],[0.0656760,0.0396000],[0.0656760,0.0414000],[0.0630490,0.0414000],[0.0630490,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0630490","Lat":"0.0414000","KPI":266,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0414000],[0.0656760,0.0414000],[0.0656760,0.0432000],[0.0630490,0.0432000],[0.0630490,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0630490","Lat":"0.0432000","KPI":54,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0432000],[0.0656760,0.0432000],[0.0656760,0.0450000],[0.0630490,0.0450000],[0.0630490,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0630490","Lat":"0.0450000","KPI":33,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0450000],[0.0656760,0.0450000],[0.0656760,0.0468000],[0.0630490,0.0468000],[0.0630490,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0630490","Lat":"0.0468000","KPI":781,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0468000],[0.0656760,0.0468000],[0.0656760,0.0486000],[0.0630490,0.0486000],[0.0630490,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0630490","Lat":"0.0486000","KPI":907,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0486000],[0.0656760,0.0486000],[0.0656760,0.0504000],[0.0630490,0.0504000],[0.0630490,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0630490","Lat":"0.0504000","KPI":580,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0504000],[0.0656760,0.0504000],[0.0656760,0.0522000],[0.0630490,0.0522000],[0.0630490,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0630490","Lat":"0.0522000","KPI":131,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0522000],[0.0656760,0.0522000],[0.0656760,0.0540000],[0.0630490,0.0540000],[0.0630490,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0630490","Lat":"0.0540000","KPI":415,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0540000],[0.0656760,0.0540000],[0.0656760,0.0558000],[0.0630490,0.0558000],[0.0630490,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0630490","Lat":"0.0558000","KPI":567,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0558000],[0.0656760,0.0558000],[0.0656760,0.0576000],[0.0630490,0.0576000],[0.0630490,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0656760","Lat":"0.0000000","KPI":532,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0000000],[0.0683030,0.0000000],[0.0683030,0.0018000],[0.0656760,0.0018000],[0.0656760,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0656760","Lat":"0.0018000","KPI":438,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0018000],[0.0683030,0.0018000],[0.0683030,0.0036000],[0.0656760,0.0036000],[0.0656760,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0656760","Lat":"0.0036000","KPI":549,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0036000],[0.0683030,0.0036000],[0.0683030,0.0054000],[0.0656760,0.0054000],[0.0656760,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0656760","Lat":"0.0054000","KPI":120,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0054000],[0.0683030,0.0054000],[0.0683030,0.0072000],[0.0656760,0.0072000],[0.0656760,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0656760","Lat":"0.0072000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0072000],[0.0683030,0.0072000],[0.0683030,0.0090000],[0.0656760,0.0090000],[0.0656760,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0656760","Lat":"0.0090000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0090000],[0.0683030,0.0090000],[0.0683030,0.0108000],[0.0656760,0.0108000],[0.0656760,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0656760","Lat":"0.0108000","KPI":213,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0108000],[0.0683030,0.0108000],[0.0683030,0.0126000],[0.0656760,0.0126000],[0.0656760,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0656760","Lat":"0.0126000","KPI":641,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0126000],[0.0683030,0.0126000],[0.0683030,0.0144000],[0.0656760,0.0144000],[0.0656760,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0656760","Lat":"0.0144000","KPI":697,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0144000],[0.0683030,0.0144000],[0.0683030,0.0162000],[0.0656760,0.0162000],[0.0656760,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0656760","Lat":"0.0162000","KPI":615,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0162000],[0.0683030,0.0162000],[0.0683030,0.0180000],[0.0656760,0.0180000],[0.0656760,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0656760","Lat":"0.0180000","KPI":387,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0180000],[0.0683030,0.0180000],[0.0683030,0.0198000],[0.0656760,0.0198000],[0.0656760,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0656760","Lat":"0.0198000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0198000],[0.0683030,0.0198000],[0.0683030,0.0216000],[0.0656760,0.0216000],[0.0656760,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0656760","Lat":"0.0216000","KPI":806,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0216000],[0.0683030,0.0216000],[0.0683030,0.0234000],[0.0656760,0.0234000],[0.0656760,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0656760","Lat":"0.0234000","KPI":239,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0234000],[0.0683030,0.0234000],[0.0683030,0.0252000],[0.0656760,0.0252000],[0.0656760,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0656760","Lat":"0.0252000","KPI":450,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0252000],[0.0683030,0.0252000],[0.0683030,0.0270000],[0.0656760,0.0270000],[0.0656760,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0656760","Lat":"0.0270000","KPI":253,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0270000],[0.0683030,0.0270000],[0.0683030,0.0288000],[0.0656760,0.0288000],[0.0656760,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0656760","Lat":"0.0288000","KPI":91,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0288000],[0.0683030,0.0288000],[0.0683030,0.0306000],[0.0656760,0.0306000],[0.0656760,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0656760","Lat":"0.0306000","KPI":601,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0306000],[0.0683030,0.0306000],[0.0683030,0.0324000],[0.0656760,0.0324000],[0.0656760,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0656760","Lat":"0.0324000","KPI":304,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0324000],[0.0683030,0.0324000],[0.0683030,0.0342000],[0.0656760,0.0342000],[0.0656760,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0656760","Lat":"0.0342000","KPI":594,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0342000],[0.0683030,0.0342000],[0.0683030,0.0360000],[0.0656760,0.0360000],[0.0656760,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0656760","Lat":"0.0360000","KPI":874,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0360000],[0.0683030,0.0360000],[0.0683030,0.0378000],[0.0656760,0.0378000],[0.0656760,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0656760","Lat":"0.0378000","KPI":800,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0378000],[0.0683030,0.0378000],[0.0683030,0.0396000],[0.0656760,0.0396000],[0.0656760,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0656760","Lat":"0.0396000","KPI":589,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0396000],[0.0683030,0.0396000],[0.0683030,0.0414000],[0.0656760,0.0414000],[0.0656760,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0656760","Lat":"0.0414000","KPI":538,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0414000],[0.0683030,0.0414000],[0.0683030,0.0432000],[0.0656760,0.0432000],[0.0656760,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0656760","Lat":"0.0432000","KPI":268,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0432000],[0.0683030,0.0432000],[0.0683030,0.0450000],[0.0656760,0.0450000],[0.0656760,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0656760","Lat":"0.0450000","KPI":77,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0450000],[0.0683030,0.0450000],[0.0683030,0.0468000],[0.0656760,0.0468000],[0.0656760,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0656760","Lat":"0.0468000","KPI":687,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0468000],[0.0683030,0.0468000],[0.0683030,0.0486000],[0.0656760,0.0486000],[0.0656760,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0656760","Lat":"0.0486000","KPI":917,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0486000],[0.0683030,0.0486000],[0.0683030,0.0504000],[0.0656760,0.0504000],[0.0656760,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0656760","Lat":"0.0504000","KPI":544,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0504000],[0.0683030,0.0504000],[0.0683030,0.0522000],[0.0656760,0.0522000],[0.0656760,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0656760","Lat":"0.0522000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0522000],[0.0683030,0.0522000],[0.0683030,0.0540000],[0.0656760,0.0540000],[0.0656760,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0656760","Lat":"0.0540000","KPI":464,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0540000],[0.0683030,0.0540000],[0.0683030,0.0558000],[0.0656760,0.0558000],[0.0656760,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0656760","Lat":"0.0558000","KPI":192,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0558000],[0.0683030,0.0558000],[0.0683030,0.0576000],[0.0656760,0.0576000],[0.0656760,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0683030","Lat":"0.0000000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0000000],[0.0709301,0.0000000],[0.0709301,0.0018000],[0.0683030,0.0018000],[0.0683030,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0683030","Lat":"0.0018000","KPI":558,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0018000],[0.0709301,0.0018000],[0.0709301,0.0036000],[0.0683030,0.0036000],[0.0683030,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0683030","Lat":"0.0036000","KPI":939,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0036000],[0.0709301,0.0036000],[0.0709301,0.0054000],[0.0683030,0.0054000],[0.0683030,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0683030","Lat":"0.0054000","KPI":517,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0054000],[0.0709301,0.0054000],[0.0709301,0.0072000],[0.0683030,0.0072000],[0.0683030,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0683030","Lat":"0.0072000","KPI":461,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0072000],[0.0709301,0.0072000],[0.0709301,0.0090000],[0.0683030,0.0090000],[0.0683030,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0683030","Lat":"0.0090000","KPI":934,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0090000],[0.0709301,0.0090000],[0.0709301,0.0108000],[0.0683030,0.0108000],[0.0683030,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0683030","Lat":"0.0108000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0108000],[0.0709301,0.0108000],[0.0709301,0.0126000],[0.0683030,0.0126000],[0.0683030,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0683030","Lat":"0.0126000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0126000],[0.0709301,0.0126000],[0.0709301,0.0144000],[0.0683030,0.0144000],[0.0683030,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0683030","Lat":"0.0144000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0144000],[0.0709301,0.0144000],[0.0709301,0.0162000],[0.0683030,0.0162000],[0.0683030,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0683030","Lat":"0.0162000","KPI":940,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0162000],[0.0709301,0.0162000],[0.0709301,0.0180000],[0.0683030,0.0180000],[0.0683030,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0683030","Lat":"0.0180000","KPI":43,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0180000],[0.0709301,0.0180000],[0.0709301,0.0198000],[0.0683030,0.0198000],[0.0683030,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0683030","Lat":"0.0198000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0198000],[0.0709301,0.0198000],[0.0709301,0.0216000],[0.0683030,0.0216000],[0.0683030,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0683030","Lat":"0.0216000","KPI":526,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0216000],[0.0709301,0.0216000],[0.0709301,0.0234000],[0.0683030,0.0234000],[0.0683030,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0683030","Lat":"0.0234000","KPI":635,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0234000],[0.0709301,0.0234000],[0.0709301,0.0252000],[0.0683030,0.0252000],[0.0683030,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0683030","Lat":"0.0252000","KPI":964,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0252000],[0.0709301,0.0252000],[0.0709301,0.0270000],[0.0683030,0.0270000],[0.0683030,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0683030","Lat":"0.0270000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0270000],[0.0709301,0.0270000],[0.0709301,0.0288000],[0.0683030,0.0288000],[0.0683030,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0683030","Lat":"0.0288000","KPI":964,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0288000],[0.0709301,0.0288000],[0.0709301,0.0306000],[0.0683030,0.0306000],[0.0683030,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0683030","Lat":"0.0306000","KPI":879,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0306000],[0.0709301,0.0306000],[0.0709301,0.0324000],[0.0683030,0.0324000],[0.0683030,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0683030","Lat":"0.0324000","KPI":527,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0324000],[0.0709301,0.0324000],[0.0709301,0.0342000],[0.0683030,0.0342000],[0.0683030,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0683030","Lat":"0.0342000","KPI":620,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0342000],[0.0709301,0.0342000],[0.0709301,0.0360000],[0.0683030,0.0360000],[0.0683030,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0683030","Lat":"0.0360000","KPI":554,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0360000],[0.0709301,0.0360000],[0.0709301,0.0378000],[0.0683030,0.0378000],[0.0683030,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0683030","Lat":"0.0378000","KPI":314,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0378000],[0.0709301,0.0378000],[0.0709301,0.0396000],[0.0683030,0.0396000],[0.0683030,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0683030","Lat":"0.0396000","KPI":730,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0396000],[0.0709301,0.0396000],[0.0709301,0.0414000],[0.0683030,0.0414000],[0.0683030,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0683030","Lat":"0.0414000","KPI":733,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0414000],[0.0709301,0.0414000],[0.0709301,0.0432000],[0.0683030,0.0432000],[0.0683030,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0683030","Lat":"0.0432000","KPI":268,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0432000],[0.0709301,0.0432000],[0.0709301,0.0450000],[0.0683030,0.0450000],[0.0683030,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0683030","Lat":"0.0450000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0450000],[0.0709301,0.0450000],[0.0709301,0.0468000],[0.0683030,0.0468000],[0.0683030,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0683030","Lat":"0.0468000","KPI":340,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0468000],[0.0709301,0.0468000],[0.0709301,0.0486000],[0.0683030,0.0486000],[0.0683030,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0683030","Lat":"0.0486000","KPI":269,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0486000],[0.0709301,0.0486000],[0.0709301,0.0504000],[0.0683030,0.0504000],[0.0683030,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0683030","Lat":"0.0504000","KPI":947,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0504000],[0.0709301,0.0504000],[0.0709301,0.0522000],[0.0683030,0.0522000],[0.0683030,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0683030","Lat":"0.0522000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0522000],[0.0709301,0.0522000],[0.0709301,0.0540000],[0.0683030,0.0540000],[0.0683030,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0683030","Lat":"0.0540000","KPI":392,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0540000],[0.0709301,0.0540000],[0.0709301,0.0558000],[0.0683030,0.0558000],[0.0683030,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0683030","Lat":"0.0558000","KPI":824,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0558000],[0.0709301,0.0558000],[0.0709301,0.0576000],[0.0683030,0.0576000],[0.0683030,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0709301","Lat":"0.0000000","KPI":488,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0000000],[0.0735571,0.0000000],[0.0735571,0.0018000],[0.0709301,0.0018000],[0.0709301,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0709301","Lat":"0.0018000","KPI":153,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0018000],[0.0735571,0.0018000],[0.0735571,0.0036000],[0.0709301,0.0036000],[0.0709301,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0709301","Lat":"0.0036000","KPI":138,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0036000],[0.0735571,0.0036000],[0.0735571,0.0054000],[0.0709301,0.0054000],[0.0709301,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0709301","Lat":"0.0054000","KPI":763,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0054000],[0.0735571,0.0054000],[0.0735571,0.0072000],[0.0709301,0.0072000],[0.0709301,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0709301","Lat":"0.0072000","KPI":919,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0072000],[0.0735571,0.0072000],[0.0735571,0.0090000],[0.0709301,0.0090000],[0.0709301,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0709301","Lat":"0.0090000","KPI":55,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0090000],[0.0735571,0.0090000],[0.0735571,0.0108000],[0.0709301,0.0108000],[0.0709301,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0709301","Lat":"0.0108000","KPI":896,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0108000],[0.0735571,0.0108000],[0.0735571,0.0126000],[0.0709301,0.0126000],[0.0709301,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0709301","Lat":"0.0126000","KPI":120,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0126000],[0.0735571,0.0126000],[0.0735571,0.0144000],[0.0709301,0.0144000],[0.0709301,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0709301","Lat":"0.0144000","KPI":941,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0144000],[0.0735571,0.0144000],[0.0735571,0.0162000],[0.0709301,0.0162000],[0.0709301,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0709301","Lat":"0.0162000","KPI":990,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0162000],[0.0735571,0.0162000],[0.0735571,0.0180000],[0.0709301,0.0180000],[0.0709301,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0709301","Lat":"0.0180000","KPI":485,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0180000],[0.0735571,0.0180000],[0.0735571,0.0198000],[0.0709301,0.0198000],[0.0709301,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0709301","Lat":"0.0198000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0198000],[0.0735571,0.0198000],[0.0735571,0.0216000],[0.0709301,0.0216000],[0.0709301,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0709301","Lat":"0.0216000","KPI":745,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0216000],[0.0735571,0.0216000],[0.0735571,0.0234000],[0.0709301,0.0234000],[0.0709301,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0709301","Lat":"0.0234000","KPI":72,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0234000],[0.0735571,0.0234000],[0.0735571,0.0252000],[0.0709301,0.0252000],[0.0709301,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0709301","Lat":"0.0252000","KPI":191,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0252000],[0.0735571,0.0252000],[0.0735571,0.0270000],[0.0709301,0.0270000],[0.0709301,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0709301","Lat":"0.0270000","KPI":987,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0270000],[0.0735571,0.0270000],[0.0735571,0.0288000],[0.0709301,0.0288000],[0.0709301,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0709301","Lat":"0.0288000","KPI":176,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0288000],[0.0735571,0.0288000],[0.0735571,0.0306000],[0.0709301,0.0306000],[0.0709301,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0709301","Lat":"0.0306000","KPI":100,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0306000],[0.0735571,0.0306000],[0.0735571,0.0324000],[0.0709301,0.0324000],[0.0709301,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0709301","Lat":"0.0324000","KPI":457,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0324000],[0.0735571,0.0324000],[0.0735571,0.0342000],[0.0709301,0.0342000],[0.0709301,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0709301","Lat":"0.0342000","KPI":328,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0342000],[0.0735571,0.0342000],[0.0735571,0.0360000],[0.0709301,0.0360000],[0.0709301,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0709301","Lat":"0.0360000","KPI":552,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0360000],[0.0735571,0.0360000],[0.0735571,0.0378000],[0.0709301,0.0378000],[0.0709301,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0709301","Lat":"0.0378000","KPI":660,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0378000],[0.0735571,0.0378000],[0.0735571,0.0396000],[0.0709301,0.0396000],[0.0709301,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0709301","Lat":"0.0396000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0396000],[0.0735571,0.0396000],[0.0735571,0.0414000],[0.0709301,0.0414000],[0.0709301,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0709301","Lat":"0.0414000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0414000],[0.0735571,0.0414000],[0.0735571,0.0432000],[0.0709301,0.0432000],[0.0709301,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0709301","Lat":"0.0432000","KPI":719,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0432000],[0.0735571,0.0432000],[0.0735571,0.0450000],[0.0709301,0.0450000],[0.0709301,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0709301","Lat":"0.0450000","KPI":457,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0450000],[0.0735571,0.0450000],[0.0735571,0.0468000],[0.0709301,0.0468000],[0.0709301,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0709301","Lat":"0.0468000","KPI":162,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0468000],[0.0735571,0.0468000],[0.0735571,0.0486000],[0.0709301,0.0486000],[0.0709301,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0709301","Lat":"0.0486000","KPI":21,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0486000],[0.0735571,0.0486000],[0.0735571,0.0504000],[0.0709301,0.0504000],[0.0709301,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0709301","Lat":"0.0504000","KPI":139,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0504000],[0.0735571,0.0504000],[0.0735571,0.0522000],[0.0709301,0.0522000],[0.0709301,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0709301","Lat":"0.0522000","KPI":734,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0522000],[0.0735571,0.0522000],[0.0735571,0.0540000],[0.0709301,0.0540000],[0.0709301,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0709301","Lat":"0.0540000","KPI":121,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0540000],[0.0735571,0.0540000],[0.0735571,0.0558000],[0.0709301,0.0558000],[0.0709301,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0709301","Lat":"0.0558000","KPI":254,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0558000],[0.0735571,0.0558000],[0.0735571,0.0576000],[0.0709301,0.0576000],[0.0709301,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0735571","Lat":"0.0000000","KPI":99,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0000000],[0.0761842,0.0000000],[0.0761842,0.0018000],[0.0735571,0.0018000],[0.0735571,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0735571","Lat":"0.0018000","KPI":931,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0018000],[0.0761842,0.0018000],[0.0761842,0.0036000],[0.0735571,0.0036000],[0.0735571,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0735571","Lat":"0.0036000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0036000],[0.0761842,0.0036000],[0.0761842,0.0054000],[0.0735571,0.0054000],[0.0735571,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0735571","Lat":"0.0054000","KPI":859,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0054000],[0.0761842,0.0054000],[0.0761842,0.0072000],[0.0735571,0.0072000],[0.0735571,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0735571","Lat":"0.0072000","KPI":337,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0072000],[0.0761842,0.0072000],[0.0761842,0.0090000],[0.0735571,0.0090000],[0.0735571,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0735571","Lat":"0.0090000","KPI":940,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0090000],[0.0761842,0.0090000],[0.0761842,0.0108000],[0.0735571,0.0108000],[0.0735571,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0735571","Lat":"0.0108000","KPI":464,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0108000],[0.0761842,0.0108000],[0.0761842,0.0126000],[0.0735571,0.0126000],[0.0735571,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0735571","Lat":"0.0126000","KPI":864,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0126000],[0.0761842,0.0126000],[0.0761842,0.0144000],[0.0735571,0.0144000],[0.0735571,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0735571","Lat":"0.0144000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0144000],[0.0761842,0.0144000],[0.0761842,0.0162000],[0.0735571,0.0162000],[0.0735571,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0735571","Lat":"0.0162000","KPI":608,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0162000],[0.0761842,0.0162000],[0.0761842,0.0180000],[0.0735571,0.0180000],[0.0735571,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0735571","Lat":"0.0180000","KPI":831,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0180000],[0.0761842,0.0180000],[0.0761842,0.0198000],[0.0735571,0.0198000],[0.0735571,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0735571","Lat":"0.0198000","KPI":832,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0198000],[0.0761842,0.0198000],[0.0761842,0.0216000],[0.0735571,0.0216000],[0.0735571,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0735571","Lat":"0.0216000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0216000],[0.0761842,0.0216000],[0.0761842,0.0234000],[0.0735571,0.0234000],[0.0735571,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0735571","Lat":"0.0234000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0234000],[0.0761842,0.0234000],[0.0761842,0.0252000],[0.0735571,0.0252000],[0.0735571,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0735571","Lat":"0.0252000","KPI":817,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0252000],[0.0761842,0.0252000],[0.0761842,0.0270000],[0.0735571,0.0270000],[0.0735571,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0735571","Lat":"0.0270000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0270000],[0.0761842,0.0270000],[0.0761842,0.0288000],[0.0735571,0.0288000],[0.0735571,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0735571","Lat":"0.0288000","KPI":684,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0288000],[0.0761842,0.0288000],[0.0761842,0.0306000],[0.0735571,0.0306000],[0.0735571,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0735571","Lat":"0.0306000","KPI":959,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0306000],[0.0761842,0.0306000],[0.0761842,0.0324000],[0.0735571,0.0324000],[0.0735571,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0735571","Lat":"0.0324000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0324000],[0.0761842,0.0324000],[0.0761842,0.0342000],[0.0735571,0.0342000],[0.0735571,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0735571","Lat":"0.0342000","KPI":956,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0342000],[0.0761842,0.0342000],[0.0761842,0.0360000],[0.0735571,0.0360000],[0.0735571,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0735571","Lat":"0.0360000","KPI":951,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0360000],[0.0761842,0.0360000],[0.0761842,0.0378000],[0.0735571,0.0378000],[0.0735571,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0735571","Lat":"0.0378000","KPI":186,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0378000],[0.0761842,0.0378000],[0.0761842,0.0396000],[0.0735571,0.0396000],[0.0735571,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0735571","Lat":"0.0396000","KPI":343,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0396000],[0.0761842,0.0396000],[0.0761842,0.0414000],[0.0735571,0.0414000],[0.0735571,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0735571","Lat":"0.0414000","KPI":498,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0414000],[0.0761842,0.0414000],[0.0761842,0.0432000],[0.0735571,0.0432000],[0.0735571,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0735571","Lat":"0.0432000","KPI":219,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0432000],[0.0761842,0.0432000],[0.0761842,0.0450000],[0.0735571,0.0450000],[0.0735571,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0735571","Lat":"0.0450000","KPI":361,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0450000],[0.0761842,0.0450000],[0.0761842,0.0468000],[0.0735571,0.0468000],[0.0735571,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0735571","Lat":"0.0468000","KPI":979,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0468000],[0.0761842,0.0468000],[0.0761842,0.0486000],[0.0735571,0.0486000],[0.0735571,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0735571","Lat":"0.0486000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0486000],[0.0761842,0.0486000],[0.0761842,0.0504000],[0.0735571,0.0504000],[0.0735571,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0735571","Lat":"0.0504000","KPI":908,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0504000],[0.0761842,0.0504000],[0.0761842,0.0522000],[0.0735571,0.0522000],[0.0735571,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0735571","Lat":"0.0522000","KPI":310,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0522000],[0.0761842,0.0522000],[0.0761842,0.0540000],[0.0735571,0.0540000],[0.0735571,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0735571","Lat":"0.0540000","KPI":609,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0540000],[0.0761842,0.0540000],[0.0761842,0.0558000],[0.0735571,0.0558000],[0.0735571,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0735571","Lat":"0.0558000","KPI":938,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0558000],[0.0761842,0.0558000],[0.0761842,0.0576000],[0.0735571,0.0576000],[0.0735571,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0761842","Lat":"0.0000000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0000000],[0.0788112,0.0000000],[0.0788112,0.0018000],[0.0761842,0.0018000],[0.0761842,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0761842","Lat":"0.0018000","KPI":458,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0018000],[0.0788112,0.0018000],[0.0788112,0.0036000],[0.0761842,0.0036000],[0.0761842,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0761842","Lat":"0.0036000","KPI":954,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0036000],[0.0788112,0.0036000],[0.0788112,0.0054000],[0.0761842,0.0054000],[0.0761842,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0761842","Lat":"0.0054000","KPI":414,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0054000],[0.0788112,0.0054000],[0.0788112,0.0072000],[0.0761842,0.0072000],[0.0761842,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0761842","Lat":"0.0072000","KPI":23,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0072000],[0.0788112,0.0072000],[0.0788112,0.0090000],[0.0761842,0.0090000],[0.0761842,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0761842","Lat":"0.0090000","KPI":590,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0090000],[0.0788112,0.0090000],[0.0788112,0.0108000],[0.0761842,0.0108000],[0.0761842,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0761842","Lat":"0.0108000","KPI":547,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0108000],[0.0788112,0.0108000],[0.0788112,0.0126000],[0.0761842,0.0126000],[0.0761842,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0761842","Lat":"0.0126000","KPI":370,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0126000],[0.0788112,0.0126000],[0.0788112,0.0144000],[0.0761842,0.0144000],[0.0761842,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0761842","Lat":"0.0144000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0144000],[0.0788112,0.0144000],[0.0788112,0.0162000],[0.0761842,0.0162000],[0.0761842,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0761842","Lat":"0.0162000","KPI":874,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0162000],[0.0788112,0.0162000],[0.0788112,0.0180000],[0.0761842,0.0180000],[0.0761842,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0761842","Lat":"0.0180000","KPI":621,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0180000],[0.0788112,0.0180000],[0.0788112,0.0198000],[0.0761842,0.0198000],[0.0761842,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0761842","Lat":"0.0198000","KPI":662,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0198000],[0.0788112,0.0198000],[0.0788112,0.0216000],[0.0761842,0.0216000],[0.0761842,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0761842","Lat":"0.0216000","KPI":394,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0216000],[0.0788112,0.0216000],[0.0788112,0.0234000],[0.0761842,0.0234000],[0.0761842,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0761842","Lat":"0.0234000","KPI":29,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0234000],[0.0788112,0.0234000],[0.0788112,0.0252000],[0.0761842,0.0252000],[0.0761842,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0761842","Lat":"0.0252000","KPI":578,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0252000],[0.0788112,0.0252000],[0.0788112,0.0270000],[0.0761842,0.0270000],[0.0761842,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0761842","Lat":"0.0270000","KPI":292,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0270000],[0.0788112,0.0270000],[0.0788112,0.0288000],[0.0761842,0.0288000],[0.0761842,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0761842","Lat":"0.0288000","KPI":149,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0288000],[0.0788112,0.0288000],[0.0788112,0.0306000],[0.0761842,0.0306000],[0.0761842,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0761842","Lat":"0.0306000","KPI":774,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0306000],[0.0788112,0.0306000],[0.0788112,0.0324000],[0.0761842,0.0324000],[0.0761842,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0761842","Lat":"0.0324000","KPI":251,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0324000],[0.0788112,0.0324000],[0.0788112,0.0342000],[0.0761842,0.0342000],[0.0761842,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0761842","Lat":"0.0342000","KPI":616,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0342000],[0.0788112,0.0342000],[0.0788112,0.0360000],[0.0761842,0.0360000],[0.0761842,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0761842","Lat":"0.0360000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0360000],[0.0788112,0.0360000],[0.0788112,0.0378000],[0.0761842,0.0378000],[0.0761842,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0761842","Lat":"0.0378000","KPI":924,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0378000],[0.0788112,0.0378000],[0.0788112,0.0396000],[0.0761842,0.0396000],[0.0761842,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0761842","Lat":"0.0396000","KPI":389,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0396000],[0.0788112,0.0396000],[0.0788112,0.0414000],[0.0761842,0.0414000],[0.0761842,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0761842","Lat":"0.0414000","KPI":240,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0414000],[0.0788112,0.0414000],[0.0788112,0.0432000],[0.0761842,0.0432000],[0.0761842,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0761842","Lat":"0.0432000","KPI":333,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0432000],[0.0788112,0.0432000],[0.0788112,0.0450000],[0.0761842,0.0450000],[0.0761842,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0761842","Lat":"0.0450000","KPI":773,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0450000],[0.0788112,0.0450000],[0.0788112,0.0468000],[0.0761842,0.0468000],[0.0761842,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0761842","Lat":"0.0468000","KPI":52,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0468000],[0.0788112,0.0468000],[0.0788112,0.0486000],[0.0761842,0.0486000],[0.0761842,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0761842","Lat":"0.0486000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0486000],[0.0788112,0.0486000],[0.0788112,0.0504000],[0.0761842,0.0504000],[0.0761842,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0761842","Lat":"0.0504000","KPI":510,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0504000],[0.0788112,0.0504000],[0.0788112,0.0522000],[0.0761842,0.0522000],[0.0761842,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0761842","Lat":"0.0522000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0522000],[0.0788112,0.0522000],[0.0788112,0.0540000],[0.0761842,0.0540000],[0.0761842,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0761842","Lat":"0.0540000","KPI":876,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0540000],[0.0788112,0.0540000],[0.0788112,0.0558000],[0.0761842,0.0558000],[0.0761842,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0761842","Lat":"0.0558000","KPI":531,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0558000],[0.0788112,0.0558000],[0.0788112,0.0576000],[0.0761842,0.0576000],[0.0761842,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0788112","Lat":"0.0000000","KPI":270,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0000000],[0.0814382,0.0000000],[0.0814382,0.0018000],[0.0788112,0.0018000],[0.0788112,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0788112","Lat":"0.0018000","KPI":687,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0018000],[0.0814382,0.0018000],[0.0814382,0.0036000],[0.0788112,0.0036000],[0.0788112,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0788112","Lat":"0.0036000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0036000],[0.0814382,0.0036000],[0.0814382,0.0054000],[0.0788112,0.0054000],[0.0788112,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0788112","Lat":"0.0054000","KPI":175,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0054000],[0.0814382,0.0054000],[0.0814382,0.0072000],[0.0788112,0.0072000],[0.0788112,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0788112","Lat":"0.0072000","KPI":510,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0072000],[0.0814382,0.0072000],[0.0814382,0.0090000],[0.0788112,0.0090000],[0.0788112,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0788112","Lat":"0.0090000","KPI":457,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0090000],[0.0814382,0.0090000],[0.0814382,0.0108000],[0.0788112,0.0108000],[0.0788112,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0788112","Lat":"0.0108000","KPI":749,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0108000],[0.0814382,0.0108000],[0.0814382,0.0126000],[0.0788112,0.0126000],[0.0788112,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0788112","Lat":"0.0126000","KPI":237,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0126000],[0.0814382,0.0126000],[0.0814382,0.0144000],[0.0788112,0.0144000],[0.0788112,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0788112","Lat":"0.0144000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0144000],[0.0814382,0.0144000],[0.0814382,0.0162000],[0.0788112,0.0162000],[0.0788112,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0788112","Lat":"0.0162000","KPI":640,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0162000],[0.0814382,0.0162000],[0.0814382,0.0180000],[0.0788112,0.0180000],[0.0788112,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0788112","Lat":"0.0180000","KPI":846,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0180000],[0.0814382,0.0180000],[0.0814382,0.0198000],[0.0788112,0.0198000],[0.0788112,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0788112","Lat":"0.0198000","KPI":837,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0198000],[0.0814382,0.0198000],[0.0814382,0.0216000],[0.0788112,0.0216000],[0.0788112,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0788112","Lat":"0.0216000","KPI":593,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0216000],[0.0814382,0.0216000],[0.0814382,0.0234000],[0.0788112,0.0234000],[0.0788112,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0788112","Lat":"0.0234000","KPI":73,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0234000],[0.0814382,0.0234000],[0.0814382,0.0252000],[0.0788112,0.0252000],[0.0788112,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0788112","Lat":"0.0252000","KPI":287,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0252000],[0.0814382,0.0252000],[0.0814382,0.0270000],[0.0788112,0.0270000],[0.0788112,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0788112","Lat":"0.0270000","KPI":871,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0270000],[0.0814382,0.0270000],[0.0814382,0.0288000],[0.0788112,0.0288000],[0.0788112,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0788112","Lat":"0.0288000","KPI":973,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0288000],[0.0814382,0.0288000],[0.0814382,0.0306000],[0.0788112,0.0306000],[0.0788112,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0788112","Lat":"0.0306000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0306000],[0.0814382,0.0306000],[0.0814382,0.0324000],[0.0788112,0.0324000],[0.0788112,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0788112","Lat":"0.0324000","KPI":874,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0324000],[0.0814382,0.0324000],[0.0814382,0.0342000],[0.0788112,0.0342000],[0.0788112,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0788112","Lat":"0.0342000","KPI":826,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0342000],[0.0814382,0.0342000],[0.0814382,0.0360000],[0.0788112,0.0360000],[0.0788112,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0788112","Lat":"0.0360000","KPI":858,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0360000],[0.0814382,0.0360000],[0.0814382,0.0378000],[0.0788112,0.0378000],[0.0788112,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0788112","Lat":"0.0378000","KPI":129,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0378000],[0.0814382,0.0378000],[0.0814382,0.0396000],[0.0788112,0.0396000],[0.0788112,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0788112","Lat":"0.0396000","KPI":766,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0396000],[0.0814382,0.0396000],[0.0814382,0.0414000],[0.0788112,0.0414000],[0.0788112,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0788112","Lat":"0.0414000","KPI":308,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0414000],[0.0814382,0.0414000],[0.0814382,0.0432000],[0.0788112,0.0432000],[0.0788112,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0788112","Lat":"0.0432000","KPI":618,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0432000],[0.0814382,0.0432000],[0.0814382,0.0450000],[0.0788112,0.0450000],[0.0788112,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0788112","Lat":"0.0450000","KPI":752,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0450000],[0.0814382,0.0450000],[0.0814382,0.0468000],[0.0788112,0.0468000],[0.0788112,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0788112","Lat":"0.0468000","KPI":109,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0468000],[0.0814382,0.0468000],[0.0814382,0.0486000],[0.0788112,0.0486000],[0.0788112,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0788112","Lat":"0.0486000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0486000],[0.0814382,0.0486000],[0.0814382,0.0504000],[0.0788112,0.0504000],[0.0788112,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0788112","Lat":"0.0504000","KPI":701,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0504000],[0.0814382,0.0504000],[0.0814382,0.0522000],[0.0788112,0.0522000],[0.0788112,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0788112","Lat":"0.0522000","KPI":385,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0522000],[0.0814382,0.0522000],[0.0814382,0.0540000],[0.0788112,0.0540000],[0.0788112,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0788112","Lat":"0.0540000","KPI":39,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0540000],[0.0814382,0.0540000],[0.0814382,0.0558000],[0.0788112,0.0558000],[0.0788112,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0788112","Lat":"0.0558000","KPI":418,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0558000],[0.0814382,0.0558000],[0.0814382,0.0576000],[0.0788112,0.0576000],[0.0788112,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0814382","Lat":"0.0000000","KPI":390,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0000000],[0.0840653,0.0000000],[0.0840653,0.0018000],[0.0814382,0.0018000],[0.0814382,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0814382","Lat":"0.0018000","KPI":487,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0018000],[0.0840653,0.0018000],[0.0840653,0.0036000],[0.0814382,0.0036000],[0.0814382,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0814382","Lat":"0.0036000","KPI":285,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0036000],[0.0840653,0.0036000],[0.0840653,0.0054000],[0.0814382,0.0054000],[0.0814382,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0814382","Lat":"0.0054000","KPI":563,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0054000],[0.0840653,0.0054000],[0.0840653,0.0072000],[0.0814382,0.0072000],[0.0814382,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0814382","Lat":"0.0072000","KPI":592,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0072000],[0.0840653,0.0072000],[0.0840653,0.0090000],[0.0814382,0.0090000],[0.0814382,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0814382","Lat":"0.0090000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0090000],[0.0840653,0.0090000],[0.0840653,0.0108000],[0.0814382,0.0108000],[0.0814382,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0814382","Lat":"0.0108000","KPI":776,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0108000],[0.0840653,0.0108000],[0.0840653,0.0126000],[0.0814382,0.0126000],[0.0814382,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0814382","Lat":"0.0126000","KPI":927,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0126000],[0.0840653,0.0126000],[0.0840653,0.0144000],[0.0814382,0.0144000],[0.0814382,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0814382","Lat":"0.0144000","KPI":205,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0144000],[0.0840653,0.0144000],[0.0840653,0.0162000],[0.0814382,0.0162000],[0.0814382,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0814382","Lat":"0.0162000","KPI":59,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0162000],[0.0840653,0.0162000],[0.0840653,0.0180000],[0.0814382,0.0180000],[0.0814382,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0814382","Lat":"0.0180000","KPI":978,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0180000],[0.0840653,0.0180000],[0.0840653,0.0198000],[0.0814382,0.0198000],[0.0814382,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0814382","Lat":"0.0198000","KPI":651,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0198000],[0.0840653,0.0198000],[0.0840653,0.0216000],[0.0814382,0.0216000],[0.0814382,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0814382","Lat":"0.0216000","KPI":893,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0216000],[0.0840653,0.0216000],[0.0840653,0.0234000],[0.0814382,0.0234000],[0.0814382,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0814382","Lat":"0.0234000","KPI":267,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0234000],[0.0840653,0.0234000],[0.0840653,0.0252000],[0.0814382,0.0252000],[0.0814382,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0814382","Lat":"0.0252000","KPI":870,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0252000],[0.0840653,0.0252000],[0.0840653,0.0270000],[0.0814382,0.0270000],[0.0814382,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0814382","Lat":"0.0270000","KPI":0,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0270000],[0.0840653,0.0270000],[0.0840653,0.0288000],[0.0814382,0.0288000],[0.0814382,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0814382","Lat":"0.0288000","KPI":326,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0288000],[0.0840653,0.0288000],[0.0840653,0.0306000],[0.0814382,0.0306000],[0.0814382,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0814382","Lat":"0.0306000","KPI":838,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0306000],[0.0840653,0.0306000],[0.0840653,0.0324000],[0.0814382,0.0324000],[0.0814382,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0814382","Lat":"0.0324000","KPI":779,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0324000],[0.0840653,0.0324000],[0.0840653,0.0342000],[0.0814382,0.0342000],[0.0814382,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0814382","Lat":"0.0342000","KPI":37,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0342000],[0.0840653,0.0342000],[0.0840653,0.0360000],[0.0814382,0.0360000],[0.0814382,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0814382","Lat":"0.0360000","KPI":208,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0360000],[0.0840653,0.0360000],[0.0840653,0.0378000],[0.0814382,0.0378000],[0.0814382,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0814382","Lat":"0.0378000","KPI":803,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0378000],[0.0840653,0.0378000],[0.0840653,0.0396000],[0.0814382,0.0396000],[0.0814382,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0814382","Lat":"0.0396000","KPI":497,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0396000],[0.0840653,0.0396000],[0.0840653,0.0414000],[0.0814382,0.0414000],[0.0814382,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0814382","Lat":"0.0414000","KPI":45,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0414000],[0.0840653,0.0414000],[0.0840653,0.0432000],[0.0814382,0.0432000],[0.0814382,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0814382","Lat":"0.0432000","KPI":660,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0432000],[0.0840653,0.0432000],[0.0840653,0.0450000],[0.0814382,0.0450000],[0.0814382,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0814382","Lat":"0.0450000","KPI":425,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0450000],[0.0840653,0.0450000],[0.0840653,0.0468000],[0.0814382,0.0468000],[0.0814382,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0814382","Lat":"0.0468000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0468000],[0.0840653,0.0468000],[0.0840653,0.0486000],[0.0814382,0.0486000],[0.0814382,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0814382","Lat":"0.0486000","KPI":448,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0486000],[0.0840653,0.0486000],[0.0840653,0.0504000],[0.0814382,0.0504000],[0.0814382,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0814382","Lat":"0.0504000","KPI":767,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0504000],[0.0840653,0.0504000],[0.0840653,0.0522000],[0.0814382,0.0522000],[0.0814382,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0814382","Lat":"0.0522000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0522000],[0.0840653,0.0522000],[0.0840653,0.0540000],[0.0814382,0.0540000],[0.0814382,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0814382","Lat":"0.0540000","KPI":340,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0540000],[0.0840653,0.0540000],[0.0840653,0.0558000],[0.0814382,0.0558000],[0.0814382,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0814382","Lat":"0.0558000","KPI":243,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0558000],[0.0840653,0.0558000],[0.0840653,0.0576000],[0.0814382,0.0576000],[0.0814382,0.0558000]]]}} diff --git a/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json b/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json new file mode 100644 index 000000000..b339cadbc --- /dev/null +++ b/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json @@ -0,0 +1,4670 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "0.000000,0.000000,0.084065,0.057600", +"center": "0.084065,0.057600,11", +"description": "tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 11, \"fields\": {\"KPI\": \"Number\", \"Lat\": \"String\", \"Long\": \"String\", \"Tile\": \"Number\", \"fill\": \"String\", \"fill-opacity\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1024,\"geometry\": \"Polygon\",\"attributeCount\": 6,\"attributes\": [{\"attribute\": \"KPI\",\"count\": 656,\"type\": \"number\",\"values\": [0,1,100,101,102,103,109,11,110,112,113,115,116,117,119,12,120,121,122,124,125,126,127,128,129,130,131,132,133,134,137,138,139,143,145,147,148,149,150,152,153,158,16,160,161,162,163,165,166,171,174,175,176,178,18,180,181,183,185,186,187,188,190,191,192,198,199,2,20,201,202,204,205,206,207,208,21,210,211,212,213,217,218,219,22,223,224,225,226,227,228,23,230,231,232,233,234,235,236,237],\"min\": 0,\"max\": 999},{\"attribute\": \"Lat\",\"count\": 32,\"type\": \"string\",\"values\": [\"0.0000000\",\"0.0018000\",\"0.0036000\",\"0.0054000\",\"0.0072000\",\"0.0090000\",\"0.0108000\",\"0.0126000\",\"0.0144000\",\"0.0162000\",\"0.0180000\",\"0.0198000\",\"0.0216000\",\"0.0234000\",\"0.0252000\",\"0.0270000\",\"0.0288000\",\"0.0306000\",\"0.0324000\",\"0.0342000\",\"0.0360000\",\"0.0378000\",\"0.0396000\",\"0.0414000\",\"0.0432000\",\"0.0450000\",\"0.0468000\",\"0.0486000\",\"0.0504000\",\"0.0522000\",\"0.0540000\",\"0.0558000\"]},{\"attribute\": \"Long\",\"count\": 32,\"type\": \"string\",\"values\": [\"0.0000000\",\"0.0026270\",\"0.0052541\",\"0.0078811\",\"0.0105082\",\"0.0131352\",\"0.0157622\",\"0.0183893\",\"0.0210163\",\"0.0236434\",\"0.0262704\",\"0.0288974\",\"0.0315245\",\"0.0341515\",\"0.0367786\",\"0.0394056\",\"0.0420326\",\"0.0446597\",\"0.0472867\",\"0.0499138\",\"0.0525408\",\"0.0551678\",\"0.0577949\",\"0.0604219\",\"0.0630490\",\"0.0656760\",\"0.0683030\",\"0.0709301\",\"0.0735571\",\"0.0761842\",\"0.0788112\",\"0.0814382\"]},{\"attribute\": \"Tile\",\"count\": 100,\"type\": \"number\",\"values\": [0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 0,\"max\": 99},{\"attribute\": \"fill\",\"count\": 1,\"type\": \"string\",\"values\": [\"#000066\"]},{\"attribute\": \"fill-opacity\",\"count\": 1,\"type\": \"number\",\"values\": [0.5],\"min\": 0.5,\"max\": 0.5}]}]}}", +"maxzoom": "11", +"minzoom": "0", +"name": "tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 32 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 32 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 31 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 64 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 63 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 64 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 63 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 128 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 127 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.065918 ], [ 0.010986, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.065918 ], [ 0.010986, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 128 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 127 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.065918 ], [ 0.010986, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.065918 ], [ 0.010986, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0540000", "KPI": 232, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.065918 ], [ 0.032959, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.065918 ], [ 0.032959, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0432000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0540000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0315245", "Lat": "0.0324000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0420326", "Lat": "0.0324000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0525408", "Lat": "0.0540000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.065918 ], [ 0.054932, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.065918 ], [ 0.054932, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0525408", "Lat": "0.0432000", "KPI": 658, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0656760", "Lat": "0.0540000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0540000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.065918 ], [ 0.076904, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.065918 ], [ 0.076904, 0.065918 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761842", "Lat": "0.0432000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0324000", "KPI": 245, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0656760", "Lat": "0.0324000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761842", "Lat": "0.0324000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.060425 ], [ 0.005493, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.060425 ], [ 0.005493, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.060425 ], [ 0.010986, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.060425 ], [ 0.010986, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0486000", "KPI": 595, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0105082", "Lat": "0.0378000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0270000", "KPI": 823, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0162000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0157622", "Lat": "0.0108000", "KPI": 980, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262704", "Lat": "0.0108000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0108000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0108000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0577949", "Lat": "0.0108000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0108000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0814382", "Lat": "0.0108000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 255 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.060425 ], [ 0.005493, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.060425 ], [ 0.005493, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.060425 ], [ 0.010986, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.060425 ], [ 0.010986, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0486000", "KPI": 595, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0540000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.060425 ], [ 0.016479, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.060425 ], [ 0.016479, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0157622", "Lat": "0.0486000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.054932 ], [ 0.016479, 0.049438 ], [ 0.010986, 0.049438 ], [ 0.010986, 0.054932 ], [ 0.016479, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157622", "Lat": "0.0432000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.049438 ], [ 0.016479, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.049438 ], [ 0.016479, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.060425 ], [ 0.021973, 0.054932 ], [ 0.016479, 0.054932 ], [ 0.016479, 0.060425 ], [ 0.021973, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0210163", "Lat": "0.0486000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.049438 ], [ 0.016479, 0.049438 ], [ 0.016479, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.049438 ], [ 0.021973, 0.043945 ], [ 0.016479, 0.043945 ], [ 0.016479, 0.049438 ], [ 0.021973, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0262704", "Lat": "0.0540000", "KPI": 765, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.060425 ], [ 0.027466, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.060425 ], [ 0.027466, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0486000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.054932 ], [ 0.027466, 0.049438 ], [ 0.021973, 0.049438 ], [ 0.021973, 0.054932 ], [ 0.027466, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0540000", "KPI": 232, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.060425 ], [ 0.032959, 0.054932 ], [ 0.027466, 0.054932 ], [ 0.027466, 0.060425 ], [ 0.032959, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0486000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.049438 ], [ 0.027466, 0.049438 ], [ 0.027466, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262704", "Lat": "0.0432000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.049438 ], [ 0.027466, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.049438 ], [ 0.027466, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0432000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.049438 ], [ 0.032959, 0.043945 ], [ 0.027466, 0.043945 ], [ 0.027466, 0.049438 ], [ 0.032959, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0540000", "KPI": 817, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.060425 ], [ 0.038452, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.060425 ], [ 0.038452, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0486000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.054932 ], [ 0.038452, 0.049438 ], [ 0.032959, 0.049438 ], [ 0.032959, 0.054932 ], [ 0.038452, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0432000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.049438 ], [ 0.038452, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.049438 ], [ 0.038452, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0540000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.060425 ], [ 0.043945, 0.054932 ], [ 0.038452, 0.054932 ], [ 0.038452, 0.060425 ], [ 0.043945, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0420326", "Lat": "0.0486000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.049438 ], [ 0.038452, 0.049438 ], [ 0.038452, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.049438 ], [ 0.043945, 0.043945 ], [ 0.038452, 0.043945 ], [ 0.038452, 0.049438 ], [ 0.043945, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0105082", "Lat": "0.0378000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0378000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.043945 ], [ 0.016479, 0.038452 ], [ 0.010986, 0.038452 ], [ 0.010986, 0.043945 ], [ 0.016479, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0157622", "Lat": "0.0324000", "KPI": 293, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.038452 ], [ 0.016479, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.038452 ], [ 0.016479, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0270000", "KPI": 823, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0157622", "Lat": "0.0270000", "KPI": 599, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.032959 ], [ 0.016479, 0.027466 ], [ 0.010986, 0.027466 ], [ 0.010986, 0.032959 ], [ 0.016479, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157622", "Lat": "0.0216000", "KPI": 757, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.027466 ], [ 0.016479, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.027466 ], [ 0.016479, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0162000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0162000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.021973 ], [ 0.016479, 0.016479 ], [ 0.010986, 0.016479 ], [ 0.010986, 0.021973 ], [ 0.016479, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0157622", "Lat": "0.0108000", "KPI": 980, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0210163", "Lat": "0.0378000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.038452 ], [ 0.016479, 0.038452 ], [ 0.016479, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.038452 ], [ 0.021973, 0.032959 ], [ 0.016479, 0.032959 ], [ 0.016479, 0.038452 ], [ 0.021973, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262704", "Lat": "0.0378000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.043945 ], [ 0.027466, 0.038452 ], [ 0.021973, 0.038452 ], [ 0.021973, 0.043945 ], [ 0.027466, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0315245", "Lat": "0.0378000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.038452 ], [ 0.027466, 0.038452 ], [ 0.027466, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0324000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.038452 ], [ 0.027466, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.038452 ], [ 0.027466, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0315245", "Lat": "0.0324000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.038452 ], [ 0.032959, 0.032959 ], [ 0.027466, 0.032959 ], [ 0.027466, 0.038452 ], [ 0.032959, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0210163", "Lat": "0.0270000", "KPI": 513, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.027466 ], [ 0.016479, 0.027466 ], [ 0.016479, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.027466 ], [ 0.021973, 0.021973 ], [ 0.016479, 0.021973 ], [ 0.016479, 0.027466 ], [ 0.021973, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0262704", "Lat": "0.0270000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.032959 ], [ 0.027466, 0.027466 ], [ 0.021973, 0.027466 ], [ 0.021973, 0.032959 ], [ 0.027466, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0315245", "Lat": "0.0270000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.027466 ], [ 0.027466, 0.027466 ], [ 0.027466, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262704", "Lat": "0.0216000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.027466 ], [ 0.027466, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.027466 ], [ 0.027466, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.027466 ], [ 0.032959, 0.021973 ], [ 0.027466, 0.021973 ], [ 0.027466, 0.027466 ], [ 0.032959, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0367786", "Lat": "0.0378000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.043945 ], [ 0.038452, 0.038452 ], [ 0.032959, 0.038452 ], [ 0.032959, 0.043945 ], [ 0.038452, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0367786", "Lat": "0.0324000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.038452 ], [ 0.038452, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.038452 ], [ 0.038452, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0420326", "Lat": "0.0378000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.038452 ], [ 0.038452, 0.038452 ], [ 0.038452, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0420326", "Lat": "0.0324000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.038452 ], [ 0.043945, 0.032959 ], [ 0.038452, 0.032959 ], [ 0.038452, 0.038452 ], [ 0.043945, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0367786", "Lat": "0.0270000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.032959 ], [ 0.038452, 0.027466 ], [ 0.032959, 0.027466 ], [ 0.032959, 0.032959 ], [ 0.038452, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0367786", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.027466 ], [ 0.038452, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.027466 ], [ 0.038452, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0270000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.027466 ], [ 0.038452, 0.027466 ], [ 0.038452, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.027466 ], [ 0.043945, 0.021973 ], [ 0.038452, 0.021973 ], [ 0.038452, 0.027466 ], [ 0.043945, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210163", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.016479 ], [ 0.016479, 0.016479 ], [ 0.016479, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0262704", "Lat": "0.0162000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.021973 ], [ 0.027466, 0.016479 ], [ 0.021973, 0.016479 ], [ 0.021973, 0.021973 ], [ 0.027466, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0315245", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.016479 ], [ 0.027466, 0.016479 ], [ 0.027466, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262704", "Lat": "0.0108000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0367786", "Lat": "0.0162000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.021973 ], [ 0.038452, 0.016479 ], [ 0.032959, 0.016479 ], [ 0.032959, 0.021973 ], [ 0.038452, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0108000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0420326", "Lat": "0.0162000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.016479 ], [ 0.038452, 0.016479 ], [ 0.038452, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472867", "Lat": "0.0540000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.060425 ], [ 0.049438, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.060425 ], [ 0.049438, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0472867", "Lat": "0.0486000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.054932 ], [ 0.049438, 0.049438 ], [ 0.043945, 0.049438 ], [ 0.043945, 0.054932 ], [ 0.049438, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0432000", "KPI": 713, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.049438 ], [ 0.049438, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.049438 ], [ 0.049438, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0525408", "Lat": "0.0540000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.060425 ], [ 0.054932, 0.054932 ], [ 0.049438, 0.054932 ], [ 0.049438, 0.060425 ], [ 0.054932, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0525408", "Lat": "0.0486000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.049438 ], [ 0.049438, 0.049438 ], [ 0.049438, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0525408", "Lat": "0.0432000", "KPI": 658, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.049438 ], [ 0.054932, 0.043945 ], [ 0.049438, 0.043945 ], [ 0.049438, 0.049438 ], [ 0.054932, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0577949", "Lat": "0.0540000", "KPI": 231, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.060425 ], [ 0.060425, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.060425 ], [ 0.060425, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577949", "Lat": "0.0486000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.054932 ], [ 0.060425, 0.049438 ], [ 0.054932, 0.049438 ], [ 0.054932, 0.054932 ], [ 0.060425, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0577949", "Lat": "0.0432000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.049438 ], [ 0.060425, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.049438 ], [ 0.060425, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0656760", "Lat": "0.0540000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.060425 ], [ 0.065918, 0.054932 ], [ 0.060425, 0.054932 ], [ 0.060425, 0.060425 ], [ 0.065918, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0656760", "Lat": "0.0486000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.049438 ], [ 0.060425, 0.049438 ], [ 0.060425, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.049438 ], [ 0.065918, 0.043945 ], [ 0.060425, 0.043945 ], [ 0.060425, 0.049438 ], [ 0.065918, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0540000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.060425 ], [ 0.071411, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.060425 ], [ 0.071411, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0709301", "Lat": "0.0486000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.054932 ], [ 0.071411, 0.049438 ], [ 0.065918, 0.049438 ], [ 0.065918, 0.054932 ], [ 0.071411, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0709301", "Lat": "0.0432000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.049438 ], [ 0.071411, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.049438 ], [ 0.071411, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0540000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.060425 ], [ 0.076904, 0.054932 ], [ 0.071411, 0.054932 ], [ 0.071411, 0.060425 ], [ 0.076904, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0761842", "Lat": "0.0486000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.049438 ], [ 0.071411, 0.049438 ], [ 0.071411, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761842", "Lat": "0.0432000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.049438 ], [ 0.076904, 0.043945 ], [ 0.071411, 0.043945 ], [ 0.071411, 0.049438 ], [ 0.076904, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0814382", "Lat": "0.0540000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.060425 ], [ 0.082397, 0.054932 ], [ 0.076904, 0.054932 ], [ 0.076904, 0.060425 ], [ 0.082397, 0.060425 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0814382", "Lat": "0.0486000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.054932 ], [ 0.082397, 0.049438 ], [ 0.076904, 0.049438 ], [ 0.076904, 0.054932 ], [ 0.082397, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0432000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.049438 ], [ 0.082397, 0.043945 ], [ 0.076904, 0.043945 ], [ 0.076904, 0.049438 ], [ 0.082397, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0472867", "Lat": "0.0378000", "KPI": 515, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.043945 ], [ 0.049438, 0.038452 ], [ 0.043945, 0.038452 ], [ 0.043945, 0.043945 ], [ 0.049438, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0472867", "Lat": "0.0324000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.038452 ], [ 0.049438, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.038452 ], [ 0.049438, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0525408", "Lat": "0.0378000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.038452 ], [ 0.049438, 0.038452 ], [ 0.049438, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0324000", "KPI": 245, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.038452 ], [ 0.054932, 0.032959 ], [ 0.049438, 0.032959 ], [ 0.049438, 0.038452 ], [ 0.054932, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0472867", "Lat": "0.0270000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.032959 ], [ 0.049438, 0.027466 ], [ 0.043945, 0.027466 ], [ 0.043945, 0.032959 ], [ 0.049438, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0472867", "Lat": "0.0216000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.027466 ], [ 0.049438, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.027466 ], [ 0.049438, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0270000", "KPI": 514, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.027466 ], [ 0.049438, 0.027466 ], [ 0.049438, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.027466 ], [ 0.054932, 0.021973 ], [ 0.049438, 0.021973 ], [ 0.049438, 0.027466 ], [ 0.054932, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0378000", "KPI": 960, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043945 ], [ 0.060425, 0.038452 ], [ 0.054932, 0.038452 ], [ 0.054932, 0.043945 ], [ 0.060425, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0577949", "Lat": "0.0324000", "KPI": 410, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.038452 ], [ 0.060425, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.038452 ], [ 0.060425, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577949", "Lat": "0.0270000", "KPI": 421, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032959 ], [ 0.060425, 0.027466 ], [ 0.054932, 0.027466 ], [ 0.054932, 0.032959 ], [ 0.060425, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0577949", "Lat": "0.0216000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.027466 ], [ 0.060425, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.027466 ], [ 0.060425, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0472867", "Lat": "0.0162000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.021973 ], [ 0.049438, 0.016479 ], [ 0.043945, 0.016479 ], [ 0.043945, 0.021973 ], [ 0.049438, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0108000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0525408", "Lat": "0.0162000", "KPI": 187, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.016479 ], [ 0.049438, 0.016479 ], [ 0.049438, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577949", "Lat": "0.0162000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021973 ], [ 0.060425, 0.016479 ], [ 0.054932, 0.016479 ], [ 0.054932, 0.021973 ], [ 0.060425, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0577949", "Lat": "0.0108000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0656760", "Lat": "0.0378000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.038452 ], [ 0.060425, 0.038452 ], [ 0.060425, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0656760", "Lat": "0.0324000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.038452 ], [ 0.065918, 0.032959 ], [ 0.060425, 0.032959 ], [ 0.060425, 0.038452 ], [ 0.065918, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0378000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.043945 ], [ 0.071411, 0.038452 ], [ 0.065918, 0.038452 ], [ 0.065918, 0.043945 ], [ 0.071411, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709301", "Lat": "0.0324000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.038452 ], [ 0.071411, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.038452 ], [ 0.071411, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0270000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.027466 ], [ 0.060425, 0.027466 ], [ 0.060425, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.027466 ], [ 0.065918, 0.021973 ], [ 0.060425, 0.021973 ], [ 0.060425, 0.027466 ], [ 0.065918, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0270000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.032959 ], [ 0.071411, 0.027466 ], [ 0.065918, 0.027466 ], [ 0.065918, 0.032959 ], [ 0.071411, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0709301", "Lat": "0.0216000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.027466 ], [ 0.071411, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.027466 ], [ 0.071411, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761842", "Lat": "0.0378000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.038452 ], [ 0.071411, 0.038452 ], [ 0.071411, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761842", "Lat": "0.0324000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.038452 ], [ 0.076904, 0.032959 ], [ 0.071411, 0.032959 ], [ 0.071411, 0.038452 ], [ 0.076904, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0814382", "Lat": "0.0378000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.043945 ], [ 0.082397, 0.038452 ], [ 0.076904, 0.038452 ], [ 0.076904, 0.043945 ], [ 0.082397, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0814382", "Lat": "0.0324000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.038452 ], [ 0.082397, 0.032959 ], [ 0.076904, 0.032959 ], [ 0.076904, 0.038452 ], [ 0.082397, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0761842", "Lat": "0.0270000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.027466 ], [ 0.071411, 0.027466 ], [ 0.071411, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.027466 ], [ 0.076904, 0.021973 ], [ 0.071411, 0.021973 ], [ 0.071411, 0.027466 ], [ 0.076904, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814382", "Lat": "0.0270000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.032959 ], [ 0.082397, 0.027466 ], [ 0.076904, 0.027466 ], [ 0.076904, 0.032959 ], [ 0.082397, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0814382", "Lat": "0.0216000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.027466 ], [ 0.082397, 0.021973 ], [ 0.076904, 0.021973 ], [ 0.076904, 0.027466 ], [ 0.082397, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656760", "Lat": "0.0162000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.016479 ], [ 0.060425, 0.016479 ], [ 0.060425, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0162000", "KPI": 990, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.021973 ], [ 0.071411, 0.016479 ], [ 0.065918, 0.016479 ], [ 0.065918, 0.021973 ], [ 0.071411, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0108000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0761842", "Lat": "0.0162000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.016479 ], [ 0.071411, 0.016479 ], [ 0.071411, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0162000", "KPI": 59, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.021973 ], [ 0.082397, 0.016479 ], [ 0.076904, 0.016479 ], [ 0.076904, 0.021973 ], [ 0.082397, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0814382", "Lat": "0.0108000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0026270", "Lat": "0.0540000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.057678 ], [ 0.002747, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.057678 ], [ 0.002747, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0026270", "Lat": "0.0522000", "KPI": 116, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.054932 ], [ 0.002747, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.054932 ], [ 0.002747, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0026270", "Lat": "0.0486000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.052185 ], [ 0.002747, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.052185 ], [ 0.002747, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0450000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.049438 ], [ 0.002747, 0.046692 ], [ 0.000000, 0.046692 ], [ 0.000000, 0.049438 ], [ 0.002747, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0432000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.046692 ], [ 0.002747, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.046692 ], [ 0.002747, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.057678 ], [ 0.005493, 0.054932 ], [ 0.002747, 0.054932 ], [ 0.002747, 0.057678 ], [ 0.005493, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0052541", "Lat": "0.0522000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.052185 ], [ 0.002747, 0.052185 ], [ 0.002747, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.052185 ], [ 0.005493, 0.049438 ], [ 0.002747, 0.049438 ], [ 0.002747, 0.052185 ], [ 0.005493, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0052541", "Lat": "0.0450000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.046692 ], [ 0.002747, 0.046692 ], [ 0.002747, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.046692 ], [ 0.005493, 0.043945 ], [ 0.002747, 0.043945 ], [ 0.002747, 0.046692 ], [ 0.005493, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0026270", "Lat": "0.0396000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.043945 ], [ 0.002747, 0.041199 ], [ 0.000000, 0.041199 ], [ 0.000000, 0.043945 ], [ 0.002747, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0378000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.041199 ], [ 0.002747, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.041199 ], [ 0.002747, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0342000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.038452 ], [ 0.002747, 0.035706 ], [ 0.000000, 0.035706 ], [ 0.000000, 0.038452 ], [ 0.002747, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0324000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.035706 ], [ 0.002747, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.035706 ], [ 0.002747, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0052541", "Lat": "0.0396000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.041199 ], [ 0.002747, 0.041199 ], [ 0.002747, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.041199 ], [ 0.005493, 0.038452 ], [ 0.002747, 0.038452 ], [ 0.002747, 0.041199 ], [ 0.005493, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0052541", "Lat": "0.0342000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.035706 ], [ 0.002747, 0.035706 ], [ 0.002747, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.035706 ], [ 0.005493, 0.032959 ], [ 0.002747, 0.032959 ], [ 0.002747, 0.035706 ], [ 0.005493, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026270", "Lat": "0.0288000", "KPI": 675, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.032959 ], [ 0.002747, 0.030212 ], [ 0.000000, 0.030212 ], [ 0.000000, 0.032959 ], [ 0.002747, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0270000", "KPI": 943, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.030212 ], [ 0.002747, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.030212 ], [ 0.002747, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0026270", "Lat": "0.0234000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.027466 ], [ 0.002747, 0.024719 ], [ 0.000000, 0.024719 ], [ 0.000000, 0.027466 ], [ 0.002747, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0216000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.024719 ], [ 0.002747, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.024719 ], [ 0.002747, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0052541", "Lat": "0.0288000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.030212 ], [ 0.002747, 0.030212 ], [ 0.002747, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.030212 ], [ 0.005493, 0.027466 ], [ 0.002747, 0.027466 ], [ 0.002747, 0.030212 ], [ 0.005493, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0052541", "Lat": "0.0234000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.024719 ], [ 0.002747, 0.024719 ], [ 0.002747, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.024719 ], [ 0.005493, 0.021973 ], [ 0.002747, 0.021973 ], [ 0.002747, 0.024719 ], [ 0.005493, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0026270", "Lat": "0.0180000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.021973 ], [ 0.002747, 0.019226 ], [ 0.000000, 0.019226 ], [ 0.000000, 0.021973 ], [ 0.002747, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0162000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.019226 ], [ 0.002747, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.019226 ], [ 0.002747, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0126000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.016479 ], [ 0.002747, 0.013733 ], [ 0.000000, 0.013733 ], [ 0.000000, 0.016479 ], [ 0.002747, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0108000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.013733 ], [ 0.002747, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.013733 ], [ 0.002747, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052541", "Lat": "0.0180000", "KPI": 316, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.019226 ], [ 0.002747, 0.019226 ], [ 0.002747, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.019226 ], [ 0.005493, 0.016479 ], [ 0.002747, 0.016479 ], [ 0.002747, 0.019226 ], [ 0.005493, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0052541", "Lat": "0.0126000", "KPI": 49, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.013733 ], [ 0.002747, 0.013733 ], [ 0.002747, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.013733 ], [ 0.005493, 0.010986 ], [ 0.002747, 0.010986 ], [ 0.002747, 0.013733 ], [ 0.005493, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026270", "Lat": "0.0072000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.010986 ], [ 0.002747, 0.008240 ], [ 0.000000, 0.008240 ], [ 0.000000, 0.010986 ], [ 0.002747, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0072000", "KPI": 633, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.008240 ], [ 0.002747, 0.008240 ], [ 0.002747, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0078811", "Lat": "0.0054000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.008240 ], [ 0.008240, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.008240 ], [ 0.008240, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0078811", "Lat": "0.0018000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.005493 ], [ 0.008240, 0.002747 ], [ 0.005493, 0.002747 ], [ 0.005493, 0.005493 ], [ 0.008240, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0078811", "Lat": "0.0000000", "KPI": 698, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.002747 ], [ 0.008240, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.002747 ], [ 0.008240, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.008240 ], [ 0.010986, 0.005493 ], [ 0.008240, 0.005493 ], [ 0.008240, 0.008240 ], [ 0.010986, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131352", "Lat": "0.0054000", "KPI": 265, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.008240 ], [ 0.013733, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.008240 ], [ 0.013733, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105082", "Lat": "0.0018000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.002747 ], [ 0.008240, 0.002747 ], [ 0.008240, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.002747 ], [ 0.010986, 0.000000 ], [ 0.008240, 0.000000 ], [ 0.008240, 0.002747 ], [ 0.010986, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131352", "Lat": "0.0018000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.005493 ], [ 0.013733, 0.002747 ], [ 0.010986, 0.002747 ], [ 0.010986, 0.005493 ], [ 0.013733, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131352", "Lat": "0.0000000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.002747 ], [ 0.013733, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.002747 ], [ 0.013733, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.008240 ], [ 0.016479, 0.005493 ], [ 0.013733, 0.005493 ], [ 0.013733, 0.008240 ], [ 0.016479, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0054000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.008240 ], [ 0.019226, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.008240 ], [ 0.019226, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157622", "Lat": "0.0018000", "KPI": 932, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.002747 ], [ 0.013733, 0.002747 ], [ 0.013733, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.002747 ], [ 0.016479, 0.000000 ], [ 0.013733, 0.000000 ], [ 0.013733, 0.002747 ], [ 0.016479, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0018000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.005493 ], [ 0.019226, 0.002747 ], [ 0.016479, 0.002747 ], [ 0.016479, 0.005493 ], [ 0.019226, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183893", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.002747 ], [ 0.019226, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.002747 ], [ 0.019226, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.008240 ], [ 0.021973, 0.005493 ], [ 0.019226, 0.005493 ], [ 0.019226, 0.008240 ], [ 0.021973, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0236434", "Lat": "0.0054000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.008240 ], [ 0.024719, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.008240 ], [ 0.024719, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210163", "Lat": "0.0018000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.002747 ], [ 0.019226, 0.002747 ], [ 0.019226, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.002747 ], [ 0.021973, 0.000000 ], [ 0.019226, 0.000000 ], [ 0.019226, 0.002747 ], [ 0.021973, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236434", "Lat": "0.0018000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.005493 ], [ 0.024719, 0.002747 ], [ 0.021973, 0.002747 ], [ 0.021973, 0.005493 ], [ 0.024719, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0000000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.002747 ], [ 0.024719, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.002747 ], [ 0.024719, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.008240 ], [ 0.027466, 0.005493 ], [ 0.024719, 0.005493 ], [ 0.024719, 0.008240 ], [ 0.027466, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0288974", "Lat": "0.0054000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.008240 ], [ 0.030212, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.008240 ], [ 0.030212, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.008240 ], [ 0.032959, 0.005493 ], [ 0.030212, 0.005493 ], [ 0.030212, 0.008240 ], [ 0.032959, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262704", "Lat": "0.0018000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.002747 ], [ 0.024719, 0.002747 ], [ 0.024719, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.002747 ], [ 0.027466, 0.000000 ], [ 0.024719, 0.000000 ], [ 0.024719, 0.002747 ], [ 0.027466, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0288974", "Lat": "0.0018000", "KPI": 53, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.005493 ], [ 0.030212, 0.002747 ], [ 0.027466, 0.002747 ], [ 0.027466, 0.005493 ], [ 0.030212, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0288974", "Lat": "0.0000000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.002747 ], [ 0.030212, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.002747 ], [ 0.030212, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0315245", "Lat": "0.0018000", "KPI": 992, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.002747 ], [ 0.030212, 0.002747 ], [ 0.030212, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.002747 ], [ 0.032959, 0.000000 ], [ 0.030212, 0.000000 ], [ 0.030212, 0.002747 ], [ 0.032959, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0341515", "Lat": "0.0054000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.008240 ], [ 0.035706, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.008240 ], [ 0.035706, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.008240 ], [ 0.038452, 0.005493 ], [ 0.035706, 0.005493 ], [ 0.035706, 0.008240 ], [ 0.038452, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0341515", "Lat": "0.0018000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.005493 ], [ 0.035706, 0.002747 ], [ 0.032959, 0.002747 ], [ 0.032959, 0.005493 ], [ 0.035706, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0341515", "Lat": "0.0000000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.002747 ], [ 0.035706, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.002747 ], [ 0.035706, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0367786", "Lat": "0.0018000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.002747 ], [ 0.035706, 0.002747 ], [ 0.035706, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.002747 ], [ 0.038452, 0.000000 ], [ 0.035706, 0.000000 ], [ 0.035706, 0.002747 ], [ 0.038452, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0054000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.008240 ], [ 0.041199, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.008240 ], [ 0.041199, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.008240 ], [ 0.043945, 0.005493 ], [ 0.041199, 0.005493 ], [ 0.041199, 0.008240 ], [ 0.043945, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0394056", "Lat": "0.0018000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.005493 ], [ 0.041199, 0.002747 ], [ 0.038452, 0.002747 ], [ 0.038452, 0.005493 ], [ 0.041199, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0000000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.002747 ], [ 0.041199, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.002747 ], [ 0.041199, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420326", "Lat": "0.0018000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.002747 ], [ 0.041199, 0.002747 ], [ 0.041199, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.002747 ], [ 0.043945, 0.000000 ], [ 0.041199, 0.000000 ], [ 0.041199, 0.002747 ], [ 0.043945, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0054000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.008240 ], [ 0.046692, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.008240 ], [ 0.046692, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.008240 ], [ 0.049438, 0.005493 ], [ 0.046692, 0.005493 ], [ 0.046692, 0.008240 ], [ 0.049438, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0018000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.005493 ], [ 0.046692, 0.002747 ], [ 0.043945, 0.002747 ], [ 0.043945, 0.005493 ], [ 0.046692, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0446597", "Lat": "0.0000000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.002747 ], [ 0.046692, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.002747 ], [ 0.046692, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0472867", "Lat": "0.0018000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.002747 ], [ 0.046692, 0.002747 ], [ 0.046692, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.002747 ], [ 0.049438, 0.000000 ], [ 0.046692, 0.000000 ], [ 0.046692, 0.002747 ], [ 0.049438, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499138", "Lat": "0.0054000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.008240 ], [ 0.052185, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.008240 ], [ 0.052185, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.008240 ], [ 0.054932, 0.005493 ], [ 0.052185, 0.005493 ], [ 0.052185, 0.008240 ], [ 0.054932, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0499138", "Lat": "0.0018000", "KPI": 958, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.005493 ], [ 0.052185, 0.002747 ], [ 0.049438, 0.002747 ], [ 0.049438, 0.005493 ], [ 0.052185, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0000000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.002747 ], [ 0.052185, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.002747 ], [ 0.052185, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525408", "Lat": "0.0018000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.002747 ], [ 0.052185, 0.002747 ], [ 0.052185, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.002747 ], [ 0.054932, 0.000000 ], [ 0.052185, 0.000000 ], [ 0.052185, 0.002747 ], [ 0.054932, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551678", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.008240 ], [ 0.057678, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.008240 ], [ 0.057678, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.008240 ], [ 0.060425, 0.005493 ], [ 0.057678, 0.005493 ], [ 0.057678, 0.008240 ], [ 0.060425, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551678", "Lat": "0.0018000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.005493 ], [ 0.057678, 0.002747 ], [ 0.054932, 0.002747 ], [ 0.054932, 0.005493 ], [ 0.057678, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0551678", "Lat": "0.0000000", "KPI": 910, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.002747 ], [ 0.057678, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.002747 ], [ 0.057678, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0577949", "Lat": "0.0018000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.002747 ], [ 0.057678, 0.002747 ], [ 0.057678, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.002747 ], [ 0.060425, 0.000000 ], [ 0.057678, 0.000000 ], [ 0.057678, 0.002747 ], [ 0.060425, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630490", "Lat": "0.0054000", "KPI": 647, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.008240 ], [ 0.063171, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.008240 ], [ 0.063171, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630490", "Lat": "0.0018000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.005493 ], [ 0.063171, 0.002747 ], [ 0.060425, 0.002747 ], [ 0.060425, 0.005493 ], [ 0.063171, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0630490", "Lat": "0.0000000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.002747 ], [ 0.063171, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.002747 ], [ 0.063171, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.008240 ], [ 0.065918, 0.005493 ], [ 0.063171, 0.005493 ], [ 0.063171, 0.008240 ], [ 0.065918, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0683030", "Lat": "0.0054000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.008240 ], [ 0.068665, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.008240 ], [ 0.068665, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656760", "Lat": "0.0018000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.002747 ], [ 0.063171, 0.002747 ], [ 0.063171, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.002747 ], [ 0.065918, 0.000000 ], [ 0.063171, 0.000000 ], [ 0.063171, 0.002747 ], [ 0.065918, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0683030", "Lat": "0.0018000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.005493 ], [ 0.068665, 0.002747 ], [ 0.065918, 0.002747 ], [ 0.065918, 0.005493 ], [ 0.068665, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0000000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.002747 ], [ 0.068665, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.002747 ], [ 0.068665, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.008240 ], [ 0.071411, 0.005493 ], [ 0.068665, 0.005493 ], [ 0.068665, 0.008240 ], [ 0.071411, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0735571", "Lat": "0.0054000", "KPI": 859, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.008240 ], [ 0.074158, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.008240 ], [ 0.074158, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0709301", "Lat": "0.0018000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.002747 ], [ 0.068665, 0.002747 ], [ 0.068665, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.002747 ], [ 0.071411, 0.000000 ], [ 0.068665, 0.000000 ], [ 0.068665, 0.002747 ], [ 0.071411, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0735571", "Lat": "0.0018000", "KPI": 931, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.005493 ], [ 0.074158, 0.002747 ], [ 0.071411, 0.002747 ], [ 0.071411, 0.005493 ], [ 0.074158, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0000000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.002747 ], [ 0.074158, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.002747 ], [ 0.074158, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.008240 ], [ 0.076904, 0.005493 ], [ 0.074158, 0.005493 ], [ 0.074158, 0.008240 ], [ 0.076904, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0788112", "Lat": "0.0054000", "KPI": 175, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.008240 ], [ 0.079651, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.008240 ], [ 0.079651, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761842", "Lat": "0.0018000", "KPI": 458, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.002747 ], [ 0.074158, 0.002747 ], [ 0.074158, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.002747 ], [ 0.076904, 0.000000 ], [ 0.074158, 0.000000 ], [ 0.074158, 0.002747 ], [ 0.076904, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0788112", "Lat": "0.0018000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.005493 ], [ 0.079651, 0.002747 ], [ 0.076904, 0.002747 ], [ 0.076904, 0.005493 ], [ 0.079651, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0000000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.002747 ], [ 0.079651, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.002747 ], [ 0.079651, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.008240 ], [ 0.082397, 0.005493 ], [ 0.079651, 0.005493 ], [ 0.079651, 0.008240 ], [ 0.082397, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0018000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.002747 ], [ 0.079651, 0.002747 ], [ 0.079651, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.002747 ], [ 0.082397, 0.000000 ], [ 0.079651, 0.000000 ], [ 0.079651, 0.002747 ], [ 0.082397, 0.002747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 511 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0026270", "Lat": "0.0540000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.057678 ], [ 0.002747, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.057678 ], [ 0.002747, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0026270", "Lat": "0.0522000", "KPI": 116, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.054932 ], [ 0.002747, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.054932 ], [ 0.002747, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0026270", "Lat": "0.0486000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.052185 ], [ 0.002747, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.052185 ], [ 0.002747, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0450000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.049438 ], [ 0.002747, 0.046692 ], [ 0.000000, 0.046692 ], [ 0.000000, 0.049438 ], [ 0.002747, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0432000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.046692 ], [ 0.002747, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.046692 ], [ 0.002747, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.057678 ], [ 0.005493, 0.054932 ], [ 0.002747, 0.054932 ], [ 0.002747, 0.057678 ], [ 0.005493, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0052541", "Lat": "0.0522000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.052185 ], [ 0.002747, 0.052185 ], [ 0.002747, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.052185 ], [ 0.005493, 0.049438 ], [ 0.002747, 0.049438 ], [ 0.002747, 0.052185 ], [ 0.005493, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0078811", "Lat": "0.0540000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.057678 ], [ 0.008240, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.057678 ], [ 0.008240, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078811", "Lat": "0.0522000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.054932 ], [ 0.008240, 0.052185 ], [ 0.005493, 0.052185 ], [ 0.005493, 0.054932 ], [ 0.008240, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078811", "Lat": "0.0486000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.052185 ], [ 0.008240, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.052185 ], [ 0.008240, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0052541", "Lat": "0.0450000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.046692 ], [ 0.002747, 0.046692 ], [ 0.002747, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.046692 ], [ 0.005493, 0.043945 ], [ 0.002747, 0.043945 ], [ 0.002747, 0.046692 ], [ 0.005493, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078811", "Lat": "0.0450000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.049438 ], [ 0.008240, 0.046692 ], [ 0.005493, 0.046692 ], [ 0.005493, 0.049438 ], [ 0.008240, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0078811", "Lat": "0.0432000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.046692 ], [ 0.008240, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.046692 ], [ 0.008240, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.057678 ], [ 0.010986, 0.054932 ], [ 0.008240, 0.054932 ], [ 0.008240, 0.057678 ], [ 0.010986, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0105082", "Lat": "0.0522000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.052185 ], [ 0.008240, 0.052185 ], [ 0.008240, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0486000", "KPI": 595, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.052185 ], [ 0.010986, 0.049438 ], [ 0.008240, 0.049438 ], [ 0.008240, 0.052185 ], [ 0.010986, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0131352", "Lat": "0.0540000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.057678 ], [ 0.013733, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.057678 ], [ 0.013733, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0131352", "Lat": "0.0522000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.054932 ], [ 0.013733, 0.052185 ], [ 0.010986, 0.052185 ], [ 0.010986, 0.054932 ], [ 0.013733, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0131352", "Lat": "0.0486000", "KPI": 202, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.052185 ], [ 0.013733, 0.049438 ], [ 0.010986, 0.049438 ], [ 0.010986, 0.052185 ], [ 0.013733, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0105082", "Lat": "0.0450000", "KPI": 246, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.046692 ], [ 0.008240, 0.046692 ], [ 0.008240, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.046692 ], [ 0.010986, 0.043945 ], [ 0.008240, 0.043945 ], [ 0.008240, 0.046692 ], [ 0.010986, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0131352", "Lat": "0.0450000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.049438 ], [ 0.013733, 0.046692 ], [ 0.010986, 0.046692 ], [ 0.010986, 0.049438 ], [ 0.013733, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0131352", "Lat": "0.0432000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.046692 ], [ 0.013733, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.046692 ], [ 0.013733, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0540000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.057678 ], [ 0.016479, 0.054932 ], [ 0.013733, 0.054932 ], [ 0.013733, 0.057678 ], [ 0.016479, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0157622", "Lat": "0.0522000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.054932 ], [ 0.016479, 0.052185 ], [ 0.013733, 0.052185 ], [ 0.013733, 0.054932 ], [ 0.016479, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0157622", "Lat": "0.0486000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.052185 ], [ 0.016479, 0.049438 ], [ 0.013733, 0.049438 ], [ 0.013733, 0.052185 ], [ 0.016479, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0183893", "Lat": "0.0540000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.057678 ], [ 0.019226, 0.054932 ], [ 0.016479, 0.054932 ], [ 0.016479, 0.057678 ], [ 0.019226, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0183893", "Lat": "0.0522000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.054932 ], [ 0.019226, 0.052185 ], [ 0.016479, 0.052185 ], [ 0.016479, 0.054932 ], [ 0.019226, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0183893", "Lat": "0.0486000", "KPI": 115, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.052185 ], [ 0.019226, 0.049438 ], [ 0.016479, 0.049438 ], [ 0.016479, 0.052185 ], [ 0.019226, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157622", "Lat": "0.0450000", "KPI": 88, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.049438 ], [ 0.016479, 0.046692 ], [ 0.013733, 0.046692 ], [ 0.013733, 0.049438 ], [ 0.016479, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157622", "Lat": "0.0432000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.046692 ], [ 0.016479, 0.043945 ], [ 0.013733, 0.043945 ], [ 0.013733, 0.046692 ], [ 0.016479, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0183893", "Lat": "0.0450000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.049438 ], [ 0.019226, 0.046692 ], [ 0.016479, 0.046692 ], [ 0.016479, 0.049438 ], [ 0.019226, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0183893", "Lat": "0.0432000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.046692 ], [ 0.019226, 0.043945 ], [ 0.016479, 0.043945 ], [ 0.016479, 0.046692 ], [ 0.019226, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.057678 ], [ 0.021973, 0.054932 ], [ 0.019226, 0.054932 ], [ 0.019226, 0.057678 ], [ 0.021973, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0210163", "Lat": "0.0522000", "KPI": 125, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.052185 ], [ 0.019226, 0.052185 ], [ 0.019226, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0210163", "Lat": "0.0486000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.052185 ], [ 0.021973, 0.049438 ], [ 0.019226, 0.049438 ], [ 0.019226, 0.052185 ], [ 0.021973, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0236434", "Lat": "0.0540000", "KPI": 676, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.057678 ], [ 0.024719, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.057678 ], [ 0.024719, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0236434", "Lat": "0.0522000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.054932 ], [ 0.024719, 0.052185 ], [ 0.021973, 0.052185 ], [ 0.021973, 0.054932 ], [ 0.024719, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0236434", "Lat": "0.0486000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.052185 ], [ 0.024719, 0.049438 ], [ 0.021973, 0.049438 ], [ 0.021973, 0.052185 ], [ 0.024719, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0210163", "Lat": "0.0450000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.049438 ], [ 0.021973, 0.046692 ], [ 0.019226, 0.046692 ], [ 0.019226, 0.049438 ], [ 0.021973, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.046692 ], [ 0.021973, 0.043945 ], [ 0.019226, 0.043945 ], [ 0.019226, 0.046692 ], [ 0.021973, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0236434", "Lat": "0.0450000", "KPI": 20, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.049438 ], [ 0.024719, 0.046692 ], [ 0.021973, 0.046692 ], [ 0.021973, 0.049438 ], [ 0.024719, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0236434", "Lat": "0.0432000", "KPI": 774, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.046692 ], [ 0.024719, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.046692 ], [ 0.024719, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0262704", "Lat": "0.0540000", "KPI": 765, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.057678 ], [ 0.027466, 0.054932 ], [ 0.024719, 0.054932 ], [ 0.024719, 0.057678 ], [ 0.027466, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0262704", "Lat": "0.0522000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.054932 ], [ 0.027466, 0.052185 ], [ 0.024719, 0.052185 ], [ 0.024719, 0.054932 ], [ 0.027466, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0288974", "Lat": "0.0540000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.057678 ], [ 0.030212, 0.054932 ], [ 0.027466, 0.054932 ], [ 0.027466, 0.057678 ], [ 0.030212, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0288974", "Lat": "0.0522000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.054932 ], [ 0.030212, 0.052185 ], [ 0.027466, 0.052185 ], [ 0.027466, 0.054932 ], [ 0.030212, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0486000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.052185 ], [ 0.027466, 0.049438 ], [ 0.024719, 0.049438 ], [ 0.024719, 0.052185 ], [ 0.027466, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0288974", "Lat": "0.0486000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.052185 ], [ 0.030212, 0.049438 ], [ 0.027466, 0.049438 ], [ 0.027466, 0.052185 ], [ 0.030212, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0540000", "KPI": 232, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.057678 ], [ 0.032959, 0.054932 ], [ 0.030212, 0.054932 ], [ 0.030212, 0.057678 ], [ 0.032959, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0315245", "Lat": "0.0522000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.052185 ], [ 0.030212, 0.052185 ], [ 0.030212, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0486000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.052185 ], [ 0.032959, 0.049438 ], [ 0.030212, 0.049438 ], [ 0.030212, 0.052185 ], [ 0.032959, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0262704", "Lat": "0.0450000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.049438 ], [ 0.027466, 0.046692 ], [ 0.024719, 0.046692 ], [ 0.024719, 0.049438 ], [ 0.027466, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262704", "Lat": "0.0432000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.046692 ], [ 0.027466, 0.043945 ], [ 0.024719, 0.043945 ], [ 0.024719, 0.046692 ], [ 0.027466, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0288974", "Lat": "0.0450000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.049438 ], [ 0.030212, 0.046692 ], [ 0.027466, 0.046692 ], [ 0.027466, 0.049438 ], [ 0.030212, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0288974", "Lat": "0.0432000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.046692 ], [ 0.030212, 0.043945 ], [ 0.027466, 0.043945 ], [ 0.027466, 0.046692 ], [ 0.030212, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0315245", "Lat": "0.0450000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.049438 ], [ 0.032959, 0.046692 ], [ 0.030212, 0.046692 ], [ 0.030212, 0.049438 ], [ 0.032959, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0432000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.046692 ], [ 0.032959, 0.043945 ], [ 0.030212, 0.043945 ], [ 0.030212, 0.046692 ], [ 0.032959, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0341515", "Lat": "0.0540000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.057678 ], [ 0.035706, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.057678 ], [ 0.035706, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0341515", "Lat": "0.0522000", "KPI": 590, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.054932 ], [ 0.035706, 0.052185 ], [ 0.032959, 0.052185 ], [ 0.032959, 0.054932 ], [ 0.035706, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0341515", "Lat": "0.0486000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.052185 ], [ 0.035706, 0.049438 ], [ 0.032959, 0.049438 ], [ 0.032959, 0.052185 ], [ 0.035706, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0540000", "KPI": 817, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.057678 ], [ 0.038452, 0.054932 ], [ 0.035706, 0.054932 ], [ 0.035706, 0.057678 ], [ 0.038452, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0367786", "Lat": "0.0522000", "KPI": 952, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.054932 ], [ 0.038452, 0.052185 ], [ 0.035706, 0.052185 ], [ 0.035706, 0.054932 ], [ 0.038452, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0486000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.052185 ], [ 0.038452, 0.049438 ], [ 0.035706, 0.049438 ], [ 0.035706, 0.052185 ], [ 0.038452, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0341515", "Lat": "0.0450000", "KPI": 920, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.049438 ], [ 0.035706, 0.046692 ], [ 0.032959, 0.046692 ], [ 0.032959, 0.049438 ], [ 0.035706, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0341515", "Lat": "0.0432000", "KPI": 511, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.046692 ], [ 0.035706, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.046692 ], [ 0.035706, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0450000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.049438 ], [ 0.038452, 0.046692 ], [ 0.035706, 0.046692 ], [ 0.035706, 0.049438 ], [ 0.038452, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0432000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.046692 ], [ 0.038452, 0.043945 ], [ 0.035706, 0.043945 ], [ 0.035706, 0.046692 ], [ 0.038452, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0394056", "Lat": "0.0540000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.057678 ], [ 0.041199, 0.054932 ], [ 0.038452, 0.054932 ], [ 0.038452, 0.057678 ], [ 0.041199, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0394056", "Lat": "0.0522000", "KPI": 654, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.054932 ], [ 0.041199, 0.052185 ], [ 0.038452, 0.052185 ], [ 0.038452, 0.054932 ], [ 0.041199, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0486000", "KPI": 799, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.052185 ], [ 0.041199, 0.049438 ], [ 0.038452, 0.049438 ], [ 0.038452, 0.052185 ], [ 0.041199, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0540000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.057678 ], [ 0.043945, 0.054932 ], [ 0.041199, 0.054932 ], [ 0.041199, 0.057678 ], [ 0.043945, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420326", "Lat": "0.0522000", "KPI": 282, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.052185 ], [ 0.041199, 0.052185 ], [ 0.041199, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0420326", "Lat": "0.0486000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.052185 ], [ 0.043945, 0.049438 ], [ 0.041199, 0.049438 ], [ 0.041199, 0.052185 ], [ 0.043945, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0394056", "Lat": "0.0450000", "KPI": 133, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.049438 ], [ 0.041199, 0.046692 ], [ 0.038452, 0.046692 ], [ 0.038452, 0.049438 ], [ 0.041199, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0394056", "Lat": "0.0432000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.046692 ], [ 0.041199, 0.043945 ], [ 0.038452, 0.043945 ], [ 0.038452, 0.046692 ], [ 0.041199, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0450000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.049438 ], [ 0.043945, 0.046692 ], [ 0.041199, 0.046692 ], [ 0.041199, 0.049438 ], [ 0.043945, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.046692 ], [ 0.043945, 0.043945 ], [ 0.041199, 0.043945 ], [ 0.041199, 0.046692 ], [ 0.043945, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0026270", "Lat": "0.0396000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.043945 ], [ 0.002747, 0.041199 ], [ 0.000000, 0.041199 ], [ 0.000000, 0.043945 ], [ 0.002747, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0378000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.041199 ], [ 0.002747, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.041199 ], [ 0.002747, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0342000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.038452 ], [ 0.002747, 0.035706 ], [ 0.000000, 0.035706 ], [ 0.000000, 0.038452 ], [ 0.002747, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0324000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.035706 ], [ 0.002747, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.035706 ], [ 0.002747, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0052541", "Lat": "0.0396000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.041199 ], [ 0.002747, 0.041199 ], [ 0.002747, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.041199 ], [ 0.005493, 0.038452 ], [ 0.002747, 0.038452 ], [ 0.002747, 0.041199 ], [ 0.005493, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0078811", "Lat": "0.0396000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.043945 ], [ 0.008240, 0.041199 ], [ 0.005493, 0.041199 ], [ 0.005493, 0.043945 ], [ 0.008240, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0078811", "Lat": "0.0378000", "KPI": 201, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.041199 ], [ 0.008240, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.041199 ], [ 0.008240, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0052541", "Lat": "0.0342000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.035706 ], [ 0.002747, 0.035706 ], [ 0.002747, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.035706 ], [ 0.005493, 0.032959 ], [ 0.002747, 0.032959 ], [ 0.002747, 0.035706 ], [ 0.005493, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078811", "Lat": "0.0342000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.038452 ], [ 0.008240, 0.035706 ], [ 0.005493, 0.035706 ], [ 0.005493, 0.038452 ], [ 0.008240, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0324000", "KPI": 661, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.035706 ], [ 0.008240, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.035706 ], [ 0.008240, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026270", "Lat": "0.0288000", "KPI": 675, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.032959 ], [ 0.002747, 0.030212 ], [ 0.000000, 0.030212 ], [ 0.000000, 0.032959 ], [ 0.002747, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0270000", "KPI": 943, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.030212 ], [ 0.002747, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.030212 ], [ 0.002747, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0026270", "Lat": "0.0234000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.027466 ], [ 0.002747, 0.024719 ], [ 0.000000, 0.024719 ], [ 0.000000, 0.027466 ], [ 0.002747, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0216000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.024719 ], [ 0.002747, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.024719 ], [ 0.002747, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0052541", "Lat": "0.0288000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.030212 ], [ 0.002747, 0.030212 ], [ 0.002747, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.030212 ], [ 0.005493, 0.027466 ], [ 0.002747, 0.027466 ], [ 0.002747, 0.030212 ], [ 0.005493, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0078811", "Lat": "0.0288000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.032959 ], [ 0.008240, 0.030212 ], [ 0.005493, 0.030212 ], [ 0.005493, 0.032959 ], [ 0.008240, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0078811", "Lat": "0.0270000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.030212 ], [ 0.008240, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.030212 ], [ 0.008240, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0052541", "Lat": "0.0234000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.024719 ], [ 0.002747, 0.024719 ], [ 0.002747, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.024719 ], [ 0.005493, 0.021973 ], [ 0.002747, 0.021973 ], [ 0.002747, 0.024719 ], [ 0.005493, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0234000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.027466 ], [ 0.008240, 0.024719 ], [ 0.005493, 0.024719 ], [ 0.005493, 0.027466 ], [ 0.008240, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0078811", "Lat": "0.0216000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.024719 ], [ 0.008240, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.024719 ], [ 0.008240, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0105082", "Lat": "0.0396000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.041199 ], [ 0.008240, 0.041199 ], [ 0.008240, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0105082", "Lat": "0.0378000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.041199 ], [ 0.010986, 0.038452 ], [ 0.008240, 0.038452 ], [ 0.008240, 0.041199 ], [ 0.010986, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0131352", "Lat": "0.0396000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.043945 ], [ 0.013733, 0.041199 ], [ 0.010986, 0.041199 ], [ 0.010986, 0.043945 ], [ 0.013733, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0131352", "Lat": "0.0378000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.041199 ], [ 0.013733, 0.038452 ], [ 0.010986, 0.038452 ], [ 0.010986, 0.041199 ], [ 0.013733, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105082", "Lat": "0.0342000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.035706 ], [ 0.008240, 0.035706 ], [ 0.008240, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.035706 ], [ 0.010986, 0.032959 ], [ 0.008240, 0.032959 ], [ 0.008240, 0.035706 ], [ 0.010986, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0131352", "Lat": "0.0342000", "KPI": 261, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.038452 ], [ 0.013733, 0.035706 ], [ 0.010986, 0.035706 ], [ 0.010986, 0.038452 ], [ 0.013733, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0131352", "Lat": "0.0324000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.035706 ], [ 0.013733, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.035706 ], [ 0.013733, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0157622", "Lat": "0.0396000", "KPI": 382, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.043945 ], [ 0.016479, 0.041199 ], [ 0.013733, 0.041199 ], [ 0.013733, 0.043945 ], [ 0.016479, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0378000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.041199 ], [ 0.016479, 0.038452 ], [ 0.013733, 0.038452 ], [ 0.013733, 0.041199 ], [ 0.016479, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0183893", "Lat": "0.0396000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.043945 ], [ 0.019226, 0.041199 ], [ 0.016479, 0.041199 ], [ 0.016479, 0.043945 ], [ 0.019226, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0183893", "Lat": "0.0378000", "KPI": 622, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.041199 ], [ 0.019226, 0.038452 ], [ 0.016479, 0.038452 ], [ 0.016479, 0.041199 ], [ 0.019226, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0157622", "Lat": "0.0342000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.038452 ], [ 0.016479, 0.035706 ], [ 0.013733, 0.035706 ], [ 0.013733, 0.038452 ], [ 0.016479, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0157622", "Lat": "0.0324000", "KPI": 293, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.035706 ], [ 0.016479, 0.032959 ], [ 0.013733, 0.032959 ], [ 0.013733, 0.035706 ], [ 0.016479, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0183893", "Lat": "0.0342000", "KPI": 247, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.038452 ], [ 0.019226, 0.035706 ], [ 0.016479, 0.035706 ], [ 0.016479, 0.038452 ], [ 0.019226, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0183893", "Lat": "0.0324000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.035706 ], [ 0.019226, 0.032959 ], [ 0.016479, 0.032959 ], [ 0.016479, 0.035706 ], [ 0.019226, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0288000", "KPI": 913, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.030212 ], [ 0.008240, 0.030212 ], [ 0.008240, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0270000", "KPI": 823, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.030212 ], [ 0.010986, 0.027466 ], [ 0.008240, 0.027466 ], [ 0.008240, 0.030212 ], [ 0.010986, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0131352", "Lat": "0.0288000", "KPI": 190, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.032959 ], [ 0.013733, 0.030212 ], [ 0.010986, 0.030212 ], [ 0.010986, 0.032959 ], [ 0.013733, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0131352", "Lat": "0.0270000", "KPI": 391, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.030212 ], [ 0.013733, 0.027466 ], [ 0.010986, 0.027466 ], [ 0.010986, 0.030212 ], [ 0.013733, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0105082", "Lat": "0.0234000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.024719 ], [ 0.008240, 0.024719 ], [ 0.008240, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.024719 ], [ 0.010986, 0.021973 ], [ 0.008240, 0.021973 ], [ 0.008240, 0.024719 ], [ 0.010986, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0131352", "Lat": "0.0234000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.027466 ], [ 0.013733, 0.024719 ], [ 0.010986, 0.024719 ], [ 0.010986, 0.027466 ], [ 0.013733, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0131352", "Lat": "0.0216000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.024719 ], [ 0.013733, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.024719 ], [ 0.013733, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0157622", "Lat": "0.0288000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.032959 ], [ 0.016479, 0.030212 ], [ 0.013733, 0.030212 ], [ 0.013733, 0.032959 ], [ 0.016479, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0157622", "Lat": "0.0270000", "KPI": 599, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.030212 ], [ 0.016479, 0.027466 ], [ 0.013733, 0.027466 ], [ 0.013733, 0.030212 ], [ 0.016479, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0183893", "Lat": "0.0288000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.032959 ], [ 0.019226, 0.030212 ], [ 0.016479, 0.030212 ], [ 0.016479, 0.032959 ], [ 0.019226, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0270000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.030212 ], [ 0.019226, 0.027466 ], [ 0.016479, 0.027466 ], [ 0.016479, 0.030212 ], [ 0.019226, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0157622", "Lat": "0.0234000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.027466 ], [ 0.016479, 0.024719 ], [ 0.013733, 0.024719 ], [ 0.013733, 0.027466 ], [ 0.016479, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157622", "Lat": "0.0216000", "KPI": 757, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.024719 ], [ 0.016479, 0.021973 ], [ 0.013733, 0.021973 ], [ 0.013733, 0.024719 ], [ 0.016479, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183893", "Lat": "0.0234000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.027466 ], [ 0.019226, 0.024719 ], [ 0.016479, 0.024719 ], [ 0.016479, 0.027466 ], [ 0.019226, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0183893", "Lat": "0.0216000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.024719 ], [ 0.019226, 0.021973 ], [ 0.016479, 0.021973 ], [ 0.016479, 0.024719 ], [ 0.019226, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0026270", "Lat": "0.0180000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.021973 ], [ 0.002747, 0.019226 ], [ 0.000000, 0.019226 ], [ 0.000000, 0.021973 ], [ 0.002747, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0162000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.019226 ], [ 0.002747, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.019226 ], [ 0.002747, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0126000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.016479 ], [ 0.002747, 0.013733 ], [ 0.000000, 0.013733 ], [ 0.000000, 0.016479 ], [ 0.002747, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0108000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.013733 ], [ 0.002747, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.013733 ], [ 0.002747, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052541", "Lat": "0.0180000", "KPI": 316, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.019226 ], [ 0.002747, 0.019226 ], [ 0.002747, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.019226 ], [ 0.005493, 0.016479 ], [ 0.002747, 0.016479 ], [ 0.002747, 0.019226 ], [ 0.005493, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0078811", "Lat": "0.0180000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.021973 ], [ 0.008240, 0.019226 ], [ 0.005493, 0.019226 ], [ 0.005493, 0.021973 ], [ 0.008240, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0078811", "Lat": "0.0162000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.019226 ], [ 0.008240, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.019226 ], [ 0.008240, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0052541", "Lat": "0.0126000", "KPI": 49, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.013733 ], [ 0.002747, 0.013733 ], [ 0.002747, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.013733 ], [ 0.005493, 0.010986 ], [ 0.002747, 0.010986 ], [ 0.002747, 0.013733 ], [ 0.005493, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0078811", "Lat": "0.0126000", "KPI": 34, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.016479 ], [ 0.008240, 0.013733 ], [ 0.005493, 0.013733 ], [ 0.005493, 0.016479 ], [ 0.008240, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0078811", "Lat": "0.0108000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.013733 ], [ 0.008240, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.013733 ], [ 0.008240, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026270", "Lat": "0.0072000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.010986 ], [ 0.002747, 0.008240 ], [ 0.000000, 0.008240 ], [ 0.000000, 0.010986 ], [ 0.002747, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0072000", "KPI": 633, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.008240 ], [ 0.002747, 0.008240 ], [ 0.002747, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0072000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.010986 ], [ 0.008240, 0.008240 ], [ 0.005493, 0.008240 ], [ 0.005493, 0.010986 ], [ 0.008240, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0078811", "Lat": "0.0054000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.008240 ], [ 0.008240, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.008240 ], [ 0.008240, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0078811", "Lat": "0.0018000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.005493 ], [ 0.008240, 0.002747 ], [ 0.005493, 0.002747 ], [ 0.005493, 0.005493 ], [ 0.008240, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0078811", "Lat": "0.0000000", "KPI": 698, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.002747 ], [ 0.008240, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.002747 ], [ 0.008240, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0105082", "Lat": "0.0180000", "KPI": 442, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.019226 ], [ 0.008240, 0.019226 ], [ 0.008240, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0162000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.019226 ], [ 0.010986, 0.016479 ], [ 0.008240, 0.016479 ], [ 0.008240, 0.019226 ], [ 0.010986, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0131352", "Lat": "0.0180000", "KPI": 495, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.021973 ], [ 0.013733, 0.019226 ], [ 0.010986, 0.019226 ], [ 0.010986, 0.021973 ], [ 0.013733, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0131352", "Lat": "0.0162000", "KPI": 312, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.019226 ], [ 0.013733, 0.016479 ], [ 0.010986, 0.016479 ], [ 0.010986, 0.019226 ], [ 0.013733, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105082", "Lat": "0.0126000", "KPI": 991, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.013733 ], [ 0.008240, 0.013733 ], [ 0.008240, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.013733 ], [ 0.010986, 0.010986 ], [ 0.008240, 0.010986 ], [ 0.008240, 0.013733 ], [ 0.010986, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0131352", "Lat": "0.0126000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.016479 ], [ 0.013733, 0.013733 ], [ 0.010986, 0.013733 ], [ 0.010986, 0.016479 ], [ 0.013733, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0131352", "Lat": "0.0108000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.013733 ], [ 0.013733, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.013733 ], [ 0.013733, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0157622", "Lat": "0.0180000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.021973 ], [ 0.016479, 0.019226 ], [ 0.013733, 0.019226 ], [ 0.013733, 0.021973 ], [ 0.016479, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0162000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.019226 ], [ 0.016479, 0.016479 ], [ 0.013733, 0.016479 ], [ 0.013733, 0.019226 ], [ 0.016479, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183893", "Lat": "0.0180000", "KPI": 598, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.021973 ], [ 0.019226, 0.019226 ], [ 0.016479, 0.019226 ], [ 0.016479, 0.021973 ], [ 0.019226, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0183893", "Lat": "0.0162000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.019226 ], [ 0.019226, 0.016479 ], [ 0.016479, 0.016479 ], [ 0.016479, 0.019226 ], [ 0.019226, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0126000", "KPI": 233, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.013733 ], [ 0.013733, 0.013733 ], [ 0.013733, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0157622", "Lat": "0.0108000", "KPI": 980, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.013733 ], [ 0.016479, 0.010986 ], [ 0.013733, 0.010986 ], [ 0.013733, 0.013733 ], [ 0.016479, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0126000", "KPI": 210, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.016479 ], [ 0.019226, 0.013733 ], [ 0.016479, 0.013733 ], [ 0.016479, 0.016479 ], [ 0.019226, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0183893", "Lat": "0.0108000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.013733 ], [ 0.019226, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.013733 ], [ 0.019226, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0105082", "Lat": "0.0072000", "KPI": 494, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.008240 ], [ 0.008240, 0.008240 ], [ 0.008240, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.008240 ], [ 0.010986, 0.005493 ], [ 0.008240, 0.005493 ], [ 0.008240, 0.008240 ], [ 0.010986, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0131352", "Lat": "0.0072000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.010986 ], [ 0.013733, 0.008240 ], [ 0.010986, 0.008240 ], [ 0.010986, 0.010986 ], [ 0.013733, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131352", "Lat": "0.0054000", "KPI": 265, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.008240 ], [ 0.013733, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.008240 ], [ 0.013733, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105082", "Lat": "0.0018000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.002747 ], [ 0.008240, 0.002747 ], [ 0.008240, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.002747 ], [ 0.010986, 0.000000 ], [ 0.008240, 0.000000 ], [ 0.008240, 0.002747 ], [ 0.010986, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131352", "Lat": "0.0018000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.005493 ], [ 0.013733, 0.002747 ], [ 0.010986, 0.002747 ], [ 0.010986, 0.005493 ], [ 0.013733, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131352", "Lat": "0.0000000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.002747 ], [ 0.013733, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.002747 ], [ 0.013733, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0157622", "Lat": "0.0072000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.008240 ], [ 0.013733, 0.008240 ], [ 0.013733, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.008240 ], [ 0.016479, 0.005493 ], [ 0.013733, 0.005493 ], [ 0.013733, 0.008240 ], [ 0.016479, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0183893", "Lat": "0.0072000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.010986 ], [ 0.019226, 0.008240 ], [ 0.016479, 0.008240 ], [ 0.016479, 0.010986 ], [ 0.019226, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0054000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.008240 ], [ 0.019226, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.008240 ], [ 0.019226, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157622", "Lat": "0.0018000", "KPI": 932, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.002747 ], [ 0.013733, 0.002747 ], [ 0.013733, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.002747 ], [ 0.016479, 0.000000 ], [ 0.013733, 0.000000 ], [ 0.013733, 0.002747 ], [ 0.016479, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0018000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.005493 ], [ 0.019226, 0.002747 ], [ 0.016479, 0.002747 ], [ 0.016479, 0.005493 ], [ 0.019226, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183893", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.002747 ], [ 0.019226, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.002747 ], [ 0.019226, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0210163", "Lat": "0.0396000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.041199 ], [ 0.019226, 0.041199 ], [ 0.019226, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0210163", "Lat": "0.0378000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.041199 ], [ 0.021973, 0.038452 ], [ 0.019226, 0.038452 ], [ 0.019226, 0.041199 ], [ 0.021973, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0236434", "Lat": "0.0396000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.043945 ], [ 0.024719, 0.041199 ], [ 0.021973, 0.041199 ], [ 0.021973, 0.043945 ], [ 0.024719, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0236434", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.041199 ], [ 0.024719, 0.038452 ], [ 0.021973, 0.038452 ], [ 0.021973, 0.041199 ], [ 0.024719, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210163", "Lat": "0.0342000", "KPI": 430, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.038452 ], [ 0.021973, 0.035706 ], [ 0.019226, 0.035706 ], [ 0.019226, 0.038452 ], [ 0.021973, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.035706 ], [ 0.021973, 0.032959 ], [ 0.019226, 0.032959 ], [ 0.019226, 0.035706 ], [ 0.021973, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0236434", "Lat": "0.0342000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.038452 ], [ 0.024719, 0.035706 ], [ 0.021973, 0.035706 ], [ 0.021973, 0.038452 ], [ 0.024719, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0236434", "Lat": "0.0324000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.035706 ], [ 0.024719, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.035706 ], [ 0.024719, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0262704", "Lat": "0.0396000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.043945 ], [ 0.027466, 0.041199 ], [ 0.024719, 0.041199 ], [ 0.024719, 0.043945 ], [ 0.027466, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262704", "Lat": "0.0378000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.041199 ], [ 0.027466, 0.038452 ], [ 0.024719, 0.038452 ], [ 0.024719, 0.041199 ], [ 0.027466, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0288974", "Lat": "0.0396000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.043945 ], [ 0.030212, 0.041199 ], [ 0.027466, 0.041199 ], [ 0.027466, 0.043945 ], [ 0.030212, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0288974", "Lat": "0.0378000", "KPI": 130, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.041199 ], [ 0.030212, 0.038452 ], [ 0.027466, 0.038452 ], [ 0.027466, 0.041199 ], [ 0.030212, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0315245", "Lat": "0.0396000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.041199 ], [ 0.030212, 0.041199 ], [ 0.030212, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0315245", "Lat": "0.0378000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.041199 ], [ 0.032959, 0.038452 ], [ 0.030212, 0.038452 ], [ 0.030212, 0.041199 ], [ 0.032959, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0262704", "Lat": "0.0342000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.038452 ], [ 0.027466, 0.035706 ], [ 0.024719, 0.035706 ], [ 0.024719, 0.038452 ], [ 0.027466, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0324000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.035706 ], [ 0.027466, 0.032959 ], [ 0.024719, 0.032959 ], [ 0.024719, 0.035706 ], [ 0.027466, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0288974", "Lat": "0.0342000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.038452 ], [ 0.030212, 0.035706 ], [ 0.027466, 0.035706 ], [ 0.027466, 0.038452 ], [ 0.030212, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0288974", "Lat": "0.0324000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.035706 ], [ 0.030212, 0.032959 ], [ 0.027466, 0.032959 ], [ 0.027466, 0.035706 ], [ 0.030212, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0315245", "Lat": "0.0342000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.038452 ], [ 0.032959, 0.035706 ], [ 0.030212, 0.035706 ], [ 0.030212, 0.038452 ], [ 0.032959, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0315245", "Lat": "0.0324000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.035706 ], [ 0.032959, 0.032959 ], [ 0.030212, 0.032959 ], [ 0.030212, 0.035706 ], [ 0.032959, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0210163", "Lat": "0.0288000", "KPI": 273, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.030212 ], [ 0.019226, 0.030212 ], [ 0.019226, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0210163", "Lat": "0.0270000", "KPI": 513, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.030212 ], [ 0.021973, 0.027466 ], [ 0.019226, 0.027466 ], [ 0.019226, 0.030212 ], [ 0.021973, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0236434", "Lat": "0.0288000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.032959 ], [ 0.024719, 0.030212 ], [ 0.021973, 0.030212 ], [ 0.021973, 0.032959 ], [ 0.024719, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236434", "Lat": "0.0270000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.030212 ], [ 0.024719, 0.027466 ], [ 0.021973, 0.027466 ], [ 0.021973, 0.030212 ], [ 0.024719, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210163", "Lat": "0.0234000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.027466 ], [ 0.021973, 0.024719 ], [ 0.019226, 0.024719 ], [ 0.019226, 0.027466 ], [ 0.021973, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.024719 ], [ 0.021973, 0.021973 ], [ 0.019226, 0.021973 ], [ 0.019226, 0.024719 ], [ 0.021973, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0236434", "Lat": "0.0234000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.027466 ], [ 0.024719, 0.024719 ], [ 0.021973, 0.024719 ], [ 0.021973, 0.027466 ], [ 0.024719, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0236434", "Lat": "0.0216000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.024719 ], [ 0.024719, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.024719 ], [ 0.024719, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0262704", "Lat": "0.0288000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.032959 ], [ 0.027466, 0.030212 ], [ 0.024719, 0.030212 ], [ 0.024719, 0.032959 ], [ 0.027466, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0262704", "Lat": "0.0270000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.030212 ], [ 0.027466, 0.027466 ], [ 0.024719, 0.027466 ], [ 0.024719, 0.030212 ], [ 0.027466, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0288974", "Lat": "0.0288000", "KPI": 35, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.032959 ], [ 0.030212, 0.030212 ], [ 0.027466, 0.030212 ], [ 0.027466, 0.032959 ], [ 0.030212, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0288974", "Lat": "0.0270000", "KPI": 313, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.030212 ], [ 0.030212, 0.027466 ], [ 0.027466, 0.027466 ], [ 0.027466, 0.030212 ], [ 0.030212, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0315245", "Lat": "0.0288000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.030212 ], [ 0.030212, 0.030212 ], [ 0.030212, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0315245", "Lat": "0.0270000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.030212 ], [ 0.032959, 0.027466 ], [ 0.030212, 0.027466 ], [ 0.030212, 0.030212 ], [ 0.032959, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0262704", "Lat": "0.0234000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.027466 ], [ 0.027466, 0.024719 ], [ 0.024719, 0.024719 ], [ 0.024719, 0.027466 ], [ 0.027466, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262704", "Lat": "0.0216000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.024719 ], [ 0.027466, 0.021973 ], [ 0.024719, 0.021973 ], [ 0.024719, 0.024719 ], [ 0.027466, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0288974", "Lat": "0.0234000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.027466 ], [ 0.030212, 0.024719 ], [ 0.027466, 0.024719 ], [ 0.027466, 0.027466 ], [ 0.030212, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0288974", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.024719 ], [ 0.030212, 0.021973 ], [ 0.027466, 0.021973 ], [ 0.027466, 0.024719 ], [ 0.030212, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0315245", "Lat": "0.0234000", "KPI": 411, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.027466 ], [ 0.032959, 0.024719 ], [ 0.030212, 0.024719 ], [ 0.030212, 0.027466 ], [ 0.032959, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.024719 ], [ 0.032959, 0.021973 ], [ 0.030212, 0.021973 ], [ 0.030212, 0.024719 ], [ 0.032959, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0341515", "Lat": "0.0396000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.043945 ], [ 0.035706, 0.041199 ], [ 0.032959, 0.041199 ], [ 0.032959, 0.043945 ], [ 0.035706, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341515", "Lat": "0.0378000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.041199 ], [ 0.035706, 0.038452 ], [ 0.032959, 0.038452 ], [ 0.032959, 0.041199 ], [ 0.035706, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367786", "Lat": "0.0396000", "KPI": 296, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.043945 ], [ 0.038452, 0.041199 ], [ 0.035706, 0.041199 ], [ 0.035706, 0.043945 ], [ 0.038452, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0367786", "Lat": "0.0378000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.041199 ], [ 0.038452, 0.038452 ], [ 0.035706, 0.038452 ], [ 0.035706, 0.041199 ], [ 0.038452, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0341515", "Lat": "0.0342000", "KPI": 564, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.038452 ], [ 0.035706, 0.035706 ], [ 0.032959, 0.035706 ], [ 0.032959, 0.038452 ], [ 0.035706, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0341515", "Lat": "0.0324000", "KPI": 217, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.035706 ], [ 0.035706, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.035706 ], [ 0.035706, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0367786", "Lat": "0.0342000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.038452 ], [ 0.038452, 0.035706 ], [ 0.035706, 0.035706 ], [ 0.035706, 0.038452 ], [ 0.038452, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0367786", "Lat": "0.0324000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.035706 ], [ 0.038452, 0.032959 ], [ 0.035706, 0.032959 ], [ 0.035706, 0.035706 ], [ 0.038452, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0396000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.043945 ], [ 0.041199, 0.041199 ], [ 0.038452, 0.041199 ], [ 0.038452, 0.043945 ], [ 0.041199, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0378000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.041199 ], [ 0.041199, 0.038452 ], [ 0.038452, 0.038452 ], [ 0.038452, 0.041199 ], [ 0.041199, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0420326", "Lat": "0.0396000", "KPI": 465, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.041199 ], [ 0.041199, 0.041199 ], [ 0.041199, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0420326", "Lat": "0.0378000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.041199 ], [ 0.043945, 0.038452 ], [ 0.041199, 0.038452 ], [ 0.041199, 0.041199 ], [ 0.043945, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0342000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.038452 ], [ 0.041199, 0.035706 ], [ 0.038452, 0.035706 ], [ 0.038452, 0.038452 ], [ 0.041199, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0394056", "Lat": "0.0324000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.035706 ], [ 0.041199, 0.032959 ], [ 0.038452, 0.032959 ], [ 0.038452, 0.035706 ], [ 0.041199, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0420326", "Lat": "0.0342000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.038452 ], [ 0.043945, 0.035706 ], [ 0.041199, 0.035706 ], [ 0.041199, 0.038452 ], [ 0.043945, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0420326", "Lat": "0.0324000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.035706 ], [ 0.043945, 0.032959 ], [ 0.041199, 0.032959 ], [ 0.041199, 0.035706 ], [ 0.043945, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0341515", "Lat": "0.0288000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.032959 ], [ 0.035706, 0.030212 ], [ 0.032959, 0.030212 ], [ 0.032959, 0.032959 ], [ 0.035706, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0341515", "Lat": "0.0270000", "KPI": 501, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.030212 ], [ 0.035706, 0.027466 ], [ 0.032959, 0.027466 ], [ 0.032959, 0.030212 ], [ 0.035706, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0367786", "Lat": "0.0288000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.032959 ], [ 0.038452, 0.030212 ], [ 0.035706, 0.030212 ], [ 0.035706, 0.032959 ], [ 0.038452, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0367786", "Lat": "0.0270000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.030212 ], [ 0.038452, 0.027466 ], [ 0.035706, 0.027466 ], [ 0.035706, 0.030212 ], [ 0.038452, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0341515", "Lat": "0.0234000", "KPI": 483, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.027466 ], [ 0.035706, 0.024719 ], [ 0.032959, 0.024719 ], [ 0.032959, 0.027466 ], [ 0.035706, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0341515", "Lat": "0.0216000", "KPI": 736, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.024719 ], [ 0.035706, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.024719 ], [ 0.035706, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0367786", "Lat": "0.0234000", "KPI": 909, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.027466 ], [ 0.038452, 0.024719 ], [ 0.035706, 0.024719 ], [ 0.035706, 0.027466 ], [ 0.038452, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0367786", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.024719 ], [ 0.038452, 0.021973 ], [ 0.035706, 0.021973 ], [ 0.035706, 0.024719 ], [ 0.038452, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0288000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.032959 ], [ 0.041199, 0.030212 ], [ 0.038452, 0.030212 ], [ 0.038452, 0.032959 ], [ 0.041199, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0394056", "Lat": "0.0270000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.030212 ], [ 0.041199, 0.027466 ], [ 0.038452, 0.027466 ], [ 0.038452, 0.030212 ], [ 0.041199, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420326", "Lat": "0.0288000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.030212 ], [ 0.041199, 0.030212 ], [ 0.041199, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0270000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.030212 ], [ 0.043945, 0.027466 ], [ 0.041199, 0.027466 ], [ 0.041199, 0.030212 ], [ 0.043945, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394056", "Lat": "0.0234000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.027466 ], [ 0.041199, 0.024719 ], [ 0.038452, 0.024719 ], [ 0.038452, 0.027466 ], [ 0.041199, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0394056", "Lat": "0.0216000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.024719 ], [ 0.041199, 0.021973 ], [ 0.038452, 0.021973 ], [ 0.038452, 0.024719 ], [ 0.041199, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0420326", "Lat": "0.0234000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.027466 ], [ 0.043945, 0.024719 ], [ 0.041199, 0.024719 ], [ 0.041199, 0.027466 ], [ 0.043945, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.024719 ], [ 0.043945, 0.021973 ], [ 0.041199, 0.021973 ], [ 0.041199, 0.024719 ], [ 0.043945, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210163", "Lat": "0.0180000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.019226 ], [ 0.019226, 0.019226 ], [ 0.019226, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210163", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.019226 ], [ 0.021973, 0.016479 ], [ 0.019226, 0.016479 ], [ 0.019226, 0.019226 ], [ 0.021973, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0236434", "Lat": "0.0180000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.021973 ], [ 0.024719, 0.019226 ], [ 0.021973, 0.019226 ], [ 0.021973, 0.021973 ], [ 0.024719, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0162000", "KPI": 188, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.019226 ], [ 0.024719, 0.016479 ], [ 0.021973, 0.016479 ], [ 0.021973, 0.019226 ], [ 0.024719, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210163", "Lat": "0.0126000", "KPI": 603, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.013733 ], [ 0.019226, 0.013733 ], [ 0.019226, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.013733 ], [ 0.021973, 0.010986 ], [ 0.019226, 0.010986 ], [ 0.019226, 0.013733 ], [ 0.021973, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0236434", "Lat": "0.0126000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.016479 ], [ 0.024719, 0.013733 ], [ 0.021973, 0.013733 ], [ 0.021973, 0.016479 ], [ 0.024719, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236434", "Lat": "0.0108000", "KPI": 968, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.013733 ], [ 0.024719, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.013733 ], [ 0.024719, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0262704", "Lat": "0.0180000", "KPI": 324, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.021973 ], [ 0.027466, 0.019226 ], [ 0.024719, 0.019226 ], [ 0.024719, 0.021973 ], [ 0.027466, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0262704", "Lat": "0.0162000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.019226 ], [ 0.027466, 0.016479 ], [ 0.024719, 0.016479 ], [ 0.024719, 0.019226 ], [ 0.027466, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0288974", "Lat": "0.0180000", "KPI": 988, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.021973 ], [ 0.030212, 0.019226 ], [ 0.027466, 0.019226 ], [ 0.027466, 0.021973 ], [ 0.030212, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0288974", "Lat": "0.0162000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.019226 ], [ 0.030212, 0.016479 ], [ 0.027466, 0.016479 ], [ 0.027466, 0.019226 ], [ 0.030212, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0315245", "Lat": "0.0180000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.019226 ], [ 0.030212, 0.019226 ], [ 0.030212, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0315245", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.019226 ], [ 0.032959, 0.016479 ], [ 0.030212, 0.016479 ], [ 0.030212, 0.019226 ], [ 0.032959, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0262704", "Lat": "0.0126000", "KPI": 218, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.013733 ], [ 0.024719, 0.013733 ], [ 0.024719, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262704", "Lat": "0.0108000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.013733 ], [ 0.027466, 0.010986 ], [ 0.024719, 0.010986 ], [ 0.024719, 0.013733 ], [ 0.027466, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0288974", "Lat": "0.0126000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.016479 ], [ 0.030212, 0.013733 ], [ 0.027466, 0.013733 ], [ 0.027466, 0.016479 ], [ 0.030212, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0288974", "Lat": "0.0108000", "KPI": 863, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.013733 ], [ 0.030212, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.013733 ], [ 0.030212, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0126000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.013733 ], [ 0.030212, 0.013733 ], [ 0.030212, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.013733 ], [ 0.032959, 0.010986 ], [ 0.030212, 0.010986 ], [ 0.030212, 0.013733 ], [ 0.032959, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0210163", "Lat": "0.0072000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.008240 ], [ 0.019226, 0.008240 ], [ 0.019226, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.008240 ], [ 0.021973, 0.005493 ], [ 0.019226, 0.005493 ], [ 0.019226, 0.008240 ], [ 0.021973, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0236434", "Lat": "0.0072000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.010986 ], [ 0.024719, 0.008240 ], [ 0.021973, 0.008240 ], [ 0.021973, 0.010986 ], [ 0.024719, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0236434", "Lat": "0.0054000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.008240 ], [ 0.024719, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.008240 ], [ 0.024719, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210163", "Lat": "0.0018000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.002747 ], [ 0.019226, 0.002747 ], [ 0.019226, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.002747 ], [ 0.021973, 0.000000 ], [ 0.019226, 0.000000 ], [ 0.019226, 0.002747 ], [ 0.021973, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236434", "Lat": "0.0018000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.005493 ], [ 0.024719, 0.002747 ], [ 0.021973, 0.002747 ], [ 0.021973, 0.005493 ], [ 0.024719, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0000000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.002747 ], [ 0.024719, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.002747 ], [ 0.024719, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0262704", "Lat": "0.0072000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.008240 ], [ 0.024719, 0.008240 ], [ 0.024719, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.008240 ], [ 0.027466, 0.005493 ], [ 0.024719, 0.005493 ], [ 0.024719, 0.008240 ], [ 0.027466, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0288974", "Lat": "0.0072000", "KPI": 815, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.010986 ], [ 0.030212, 0.008240 ], [ 0.027466, 0.008240 ], [ 0.027466, 0.010986 ], [ 0.030212, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0288974", "Lat": "0.0054000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.008240 ], [ 0.030212, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.008240 ], [ 0.030212, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0315245", "Lat": "0.0072000", "KPI": 707, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.008240 ], [ 0.030212, 0.008240 ], [ 0.030212, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.008240 ], [ 0.032959, 0.005493 ], [ 0.030212, 0.005493 ], [ 0.030212, 0.008240 ], [ 0.032959, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262704", "Lat": "0.0018000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.002747 ], [ 0.024719, 0.002747 ], [ 0.024719, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.002747 ], [ 0.027466, 0.000000 ], [ 0.024719, 0.000000 ], [ 0.024719, 0.002747 ], [ 0.027466, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0288974", "Lat": "0.0018000", "KPI": 53, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.005493 ], [ 0.030212, 0.002747 ], [ 0.027466, 0.002747 ], [ 0.027466, 0.005493 ], [ 0.030212, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0288974", "Lat": "0.0000000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.002747 ], [ 0.030212, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.002747 ], [ 0.030212, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0315245", "Lat": "0.0018000", "KPI": 992, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.002747 ], [ 0.030212, 0.002747 ], [ 0.030212, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.002747 ], [ 0.032959, 0.000000 ], [ 0.030212, 0.000000 ], [ 0.030212, 0.002747 ], [ 0.032959, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0341515", "Lat": "0.0180000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.021973 ], [ 0.035706, 0.019226 ], [ 0.032959, 0.019226 ], [ 0.032959, 0.021973 ], [ 0.035706, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0341515", "Lat": "0.0162000", "KPI": 313, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.019226 ], [ 0.035706, 0.016479 ], [ 0.032959, 0.016479 ], [ 0.032959, 0.019226 ], [ 0.035706, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0367786", "Lat": "0.0180000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.021973 ], [ 0.038452, 0.019226 ], [ 0.035706, 0.019226 ], [ 0.035706, 0.021973 ], [ 0.038452, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0367786", "Lat": "0.0162000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.019226 ], [ 0.038452, 0.016479 ], [ 0.035706, 0.016479 ], [ 0.035706, 0.019226 ], [ 0.038452, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0341515", "Lat": "0.0126000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.016479 ], [ 0.035706, 0.013733 ], [ 0.032959, 0.013733 ], [ 0.032959, 0.016479 ], [ 0.035706, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0341515", "Lat": "0.0108000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.013733 ], [ 0.035706, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.013733 ], [ 0.035706, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367786", "Lat": "0.0126000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.013733 ], [ 0.035706, 0.013733 ], [ 0.035706, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0108000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.013733 ], [ 0.038452, 0.010986 ], [ 0.035706, 0.010986 ], [ 0.035706, 0.013733 ], [ 0.038452, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0180000", "KPI": 935, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.021973 ], [ 0.041199, 0.019226 ], [ 0.038452, 0.019226 ], [ 0.038452, 0.021973 ], [ 0.041199, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0394056", "Lat": "0.0162000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.019226 ], [ 0.041199, 0.016479 ], [ 0.038452, 0.016479 ], [ 0.038452, 0.019226 ], [ 0.041199, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0420326", "Lat": "0.0180000", "KPI": 405, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.019226 ], [ 0.041199, 0.019226 ], [ 0.041199, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0420326", "Lat": "0.0162000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.019226 ], [ 0.043945, 0.016479 ], [ 0.041199, 0.016479 ], [ 0.041199, 0.019226 ], [ 0.043945, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0394056", "Lat": "0.0126000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.016479 ], [ 0.041199, 0.013733 ], [ 0.038452, 0.013733 ], [ 0.038452, 0.016479 ], [ 0.041199, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0394056", "Lat": "0.0108000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.013733 ], [ 0.041199, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.013733 ], [ 0.041199, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0420326", "Lat": "0.0126000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.013733 ], [ 0.041199, 0.013733 ], [ 0.041199, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.013733 ], [ 0.043945, 0.010986 ], [ 0.041199, 0.010986 ], [ 0.041199, 0.013733 ], [ 0.043945, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0341515", "Lat": "0.0072000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.010986 ], [ 0.035706, 0.008240 ], [ 0.032959, 0.008240 ], [ 0.032959, 0.010986 ], [ 0.035706, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0341515", "Lat": "0.0054000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.008240 ], [ 0.035706, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.008240 ], [ 0.035706, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0367786", "Lat": "0.0072000", "KPI": 830, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.008240 ], [ 0.035706, 0.008240 ], [ 0.035706, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.008240 ], [ 0.038452, 0.005493 ], [ 0.035706, 0.005493 ], [ 0.035706, 0.008240 ], [ 0.038452, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0341515", "Lat": "0.0018000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.005493 ], [ 0.035706, 0.002747 ], [ 0.032959, 0.002747 ], [ 0.032959, 0.005493 ], [ 0.035706, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0341515", "Lat": "0.0000000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.002747 ], [ 0.035706, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.002747 ], [ 0.035706, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0367786", "Lat": "0.0018000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.002747 ], [ 0.035706, 0.002747 ], [ 0.035706, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.002747 ], [ 0.038452, 0.000000 ], [ 0.035706, 0.000000 ], [ 0.035706, 0.002747 ], [ 0.038452, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394056", "Lat": "0.0072000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.010986 ], [ 0.041199, 0.008240 ], [ 0.038452, 0.008240 ], [ 0.038452, 0.010986 ], [ 0.041199, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0054000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.008240 ], [ 0.041199, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.008240 ], [ 0.041199, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0420326", "Lat": "0.0072000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.008240 ], [ 0.041199, 0.008240 ], [ 0.041199, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.008240 ], [ 0.043945, 0.005493 ], [ 0.041199, 0.005493 ], [ 0.041199, 0.008240 ], [ 0.043945, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0394056", "Lat": "0.0018000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.005493 ], [ 0.041199, 0.002747 ], [ 0.038452, 0.002747 ], [ 0.038452, 0.005493 ], [ 0.041199, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0000000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.002747 ], [ 0.041199, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.002747 ], [ 0.041199, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420326", "Lat": "0.0018000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.002747 ], [ 0.041199, 0.002747 ], [ 0.041199, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.002747 ], [ 0.043945, 0.000000 ], [ 0.041199, 0.000000 ], [ 0.041199, 0.002747 ], [ 0.043945, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0540000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.057678 ], [ 0.046692, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.057678 ], [ 0.046692, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0446597", "Lat": "0.0522000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.054932 ], [ 0.046692, 0.052185 ], [ 0.043945, 0.052185 ], [ 0.043945, 0.054932 ], [ 0.046692, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0446597", "Lat": "0.0486000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.052185 ], [ 0.046692, 0.049438 ], [ 0.043945, 0.049438 ], [ 0.043945, 0.052185 ], [ 0.046692, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472867", "Lat": "0.0540000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.057678 ], [ 0.049438, 0.054932 ], [ 0.046692, 0.054932 ], [ 0.046692, 0.057678 ], [ 0.049438, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0472867", "Lat": "0.0522000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.054932 ], [ 0.049438, 0.052185 ], [ 0.046692, 0.052185 ], [ 0.046692, 0.054932 ], [ 0.049438, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0472867", "Lat": "0.0486000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.052185 ], [ 0.049438, 0.049438 ], [ 0.046692, 0.049438 ], [ 0.046692, 0.052185 ], [ 0.049438, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446597", "Lat": "0.0450000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.049438 ], [ 0.046692, 0.046692 ], [ 0.043945, 0.046692 ], [ 0.043945, 0.049438 ], [ 0.046692, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0446597", "Lat": "0.0432000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.046692 ], [ 0.046692, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.046692 ], [ 0.046692, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0472867", "Lat": "0.0450000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.049438 ], [ 0.049438, 0.046692 ], [ 0.046692, 0.046692 ], [ 0.046692, 0.049438 ], [ 0.049438, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0432000", "KPI": 713, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.046692 ], [ 0.049438, 0.043945 ], [ 0.046692, 0.043945 ], [ 0.046692, 0.046692 ], [ 0.049438, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0499138", "Lat": "0.0540000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.057678 ], [ 0.052185, 0.054932 ], [ 0.049438, 0.054932 ], [ 0.049438, 0.057678 ], [ 0.052185, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0499138", "Lat": "0.0522000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.054932 ], [ 0.052185, 0.052185 ], [ 0.049438, 0.052185 ], [ 0.049438, 0.054932 ], [ 0.052185, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0499138", "Lat": "0.0486000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.052185 ], [ 0.052185, 0.049438 ], [ 0.049438, 0.049438 ], [ 0.049438, 0.052185 ], [ 0.052185, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0525408", "Lat": "0.0540000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.057678 ], [ 0.054932, 0.054932 ], [ 0.052185, 0.054932 ], [ 0.052185, 0.057678 ], [ 0.054932, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0525408", "Lat": "0.0522000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.052185 ], [ 0.052185, 0.052185 ], [ 0.052185, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0525408", "Lat": "0.0486000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.052185 ], [ 0.054932, 0.049438 ], [ 0.052185, 0.049438 ], [ 0.052185, 0.052185 ], [ 0.054932, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499138", "Lat": "0.0450000", "KPI": 598, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.049438 ], [ 0.052185, 0.046692 ], [ 0.049438, 0.046692 ], [ 0.049438, 0.049438 ], [ 0.052185, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0499138", "Lat": "0.0432000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.046692 ], [ 0.052185, 0.043945 ], [ 0.049438, 0.043945 ], [ 0.049438, 0.046692 ], [ 0.052185, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0525408", "Lat": "0.0450000", "KPI": 892, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.049438 ], [ 0.054932, 0.046692 ], [ 0.052185, 0.046692 ], [ 0.052185, 0.049438 ], [ 0.054932, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0525408", "Lat": "0.0432000", "KPI": 658, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.046692 ], [ 0.054932, 0.043945 ], [ 0.052185, 0.043945 ], [ 0.052185, 0.046692 ], [ 0.054932, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0551678", "Lat": "0.0540000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.057678 ], [ 0.057678, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.057678 ], [ 0.057678, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0551678", "Lat": "0.0522000", "KPI": 315, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.054932 ], [ 0.057678, 0.052185 ], [ 0.054932, 0.052185 ], [ 0.054932, 0.054932 ], [ 0.057678, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0551678", "Lat": "0.0486000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.052185 ], [ 0.057678, 0.049438 ], [ 0.054932, 0.049438 ], [ 0.054932, 0.052185 ], [ 0.057678, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0577949", "Lat": "0.0540000", "KPI": 231, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.057678 ], [ 0.060425, 0.054932 ], [ 0.057678, 0.054932 ], [ 0.057678, 0.057678 ], [ 0.060425, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577949", "Lat": "0.0522000", "KPI": 977, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.054932 ], [ 0.060425, 0.052185 ], [ 0.057678, 0.052185 ], [ 0.057678, 0.054932 ], [ 0.060425, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577949", "Lat": "0.0486000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.052185 ], [ 0.060425, 0.049438 ], [ 0.057678, 0.049438 ], [ 0.057678, 0.052185 ], [ 0.060425, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0551678", "Lat": "0.0450000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.049438 ], [ 0.057678, 0.046692 ], [ 0.054932, 0.046692 ], [ 0.054932, 0.049438 ], [ 0.057678, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0551678", "Lat": "0.0432000", "KPI": 814, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.046692 ], [ 0.057678, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.046692 ], [ 0.057678, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0577949", "Lat": "0.0450000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.049438 ], [ 0.060425, 0.046692 ], [ 0.057678, 0.046692 ], [ 0.057678, 0.049438 ], [ 0.060425, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0577949", "Lat": "0.0432000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.046692 ], [ 0.060425, 0.043945 ], [ 0.057678, 0.043945 ], [ 0.057678, 0.046692 ], [ 0.060425, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0630490", "Lat": "0.0540000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.057678 ], [ 0.063171, 0.054932 ], [ 0.060425, 0.054932 ], [ 0.060425, 0.057678 ], [ 0.063171, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0630490", "Lat": "0.0522000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.054932 ], [ 0.063171, 0.052185 ], [ 0.060425, 0.052185 ], [ 0.060425, 0.054932 ], [ 0.063171, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0630490", "Lat": "0.0486000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.052185 ], [ 0.063171, 0.049438 ], [ 0.060425, 0.049438 ], [ 0.060425, 0.052185 ], [ 0.063171, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630490", "Lat": "0.0450000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.049438 ], [ 0.063171, 0.046692 ], [ 0.060425, 0.046692 ], [ 0.060425, 0.049438 ], [ 0.063171, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0630490", "Lat": "0.0432000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.046692 ], [ 0.063171, 0.043945 ], [ 0.060425, 0.043945 ], [ 0.060425, 0.046692 ], [ 0.063171, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0656760", "Lat": "0.0540000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.057678 ], [ 0.065918, 0.054932 ], [ 0.063171, 0.054932 ], [ 0.063171, 0.057678 ], [ 0.065918, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0656760", "Lat": "0.0522000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.052185 ], [ 0.063171, 0.052185 ], [ 0.063171, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0656760", "Lat": "0.0486000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.052185 ], [ 0.065918, 0.049438 ], [ 0.063171, 0.049438 ], [ 0.063171, 0.052185 ], [ 0.065918, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0683030", "Lat": "0.0540000", "KPI": 392, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.057678 ], [ 0.068665, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.057678 ], [ 0.068665, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0683030", "Lat": "0.0522000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.054932 ], [ 0.068665, 0.052185 ], [ 0.065918, 0.052185 ], [ 0.065918, 0.054932 ], [ 0.068665, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0683030", "Lat": "0.0486000", "KPI": 269, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.052185 ], [ 0.068665, 0.049438 ], [ 0.065918, 0.049438 ], [ 0.065918, 0.052185 ], [ 0.068665, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0450000", "KPI": 77, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.049438 ], [ 0.065918, 0.046692 ], [ 0.063171, 0.046692 ], [ 0.063171, 0.049438 ], [ 0.065918, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.046692 ], [ 0.065918, 0.043945 ], [ 0.063171, 0.043945 ], [ 0.063171, 0.046692 ], [ 0.065918, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0683030", "Lat": "0.0450000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.049438 ], [ 0.068665, 0.046692 ], [ 0.065918, 0.046692 ], [ 0.065918, 0.049438 ], [ 0.068665, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0683030", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.046692 ], [ 0.068665, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.046692 ], [ 0.068665, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0540000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.057678 ], [ 0.071411, 0.054932 ], [ 0.068665, 0.054932 ], [ 0.068665, 0.057678 ], [ 0.071411, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0709301", "Lat": "0.0522000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.054932 ], [ 0.071411, 0.052185 ], [ 0.068665, 0.052185 ], [ 0.068665, 0.054932 ], [ 0.071411, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0709301", "Lat": "0.0486000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.052185 ], [ 0.071411, 0.049438 ], [ 0.068665, 0.049438 ], [ 0.068665, 0.052185 ], [ 0.071411, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0735571", "Lat": "0.0540000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.057678 ], [ 0.074158, 0.054932 ], [ 0.071411, 0.054932 ], [ 0.071411, 0.057678 ], [ 0.074158, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0735571", "Lat": "0.0522000", "KPI": 310, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.054932 ], [ 0.074158, 0.052185 ], [ 0.071411, 0.052185 ], [ 0.071411, 0.054932 ], [ 0.074158, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0735571", "Lat": "0.0486000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.052185 ], [ 0.074158, 0.049438 ], [ 0.071411, 0.049438 ], [ 0.071411, 0.052185 ], [ 0.074158, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0709301", "Lat": "0.0450000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.049438 ], [ 0.071411, 0.046692 ], [ 0.068665, 0.046692 ], [ 0.068665, 0.049438 ], [ 0.071411, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0709301", "Lat": "0.0432000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.046692 ], [ 0.071411, 0.043945 ], [ 0.068665, 0.043945 ], [ 0.068665, 0.046692 ], [ 0.071411, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0735571", "Lat": "0.0450000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.049438 ], [ 0.074158, 0.046692 ], [ 0.071411, 0.046692 ], [ 0.071411, 0.049438 ], [ 0.074158, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0735571", "Lat": "0.0432000", "KPI": 219, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.046692 ], [ 0.074158, 0.043945 ], [ 0.071411, 0.043945 ], [ 0.071411, 0.046692 ], [ 0.074158, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0540000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.057678 ], [ 0.076904, 0.054932 ], [ 0.074158, 0.054932 ], [ 0.074158, 0.057678 ], [ 0.076904, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0761842", "Lat": "0.0522000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.052185 ], [ 0.074158, 0.052185 ], [ 0.074158, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0761842", "Lat": "0.0486000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.052185 ], [ 0.076904, 0.049438 ], [ 0.074158, 0.049438 ], [ 0.074158, 0.052185 ], [ 0.076904, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0788112", "Lat": "0.0540000", "KPI": 39, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.057678 ], [ 0.079651, 0.054932 ], [ 0.076904, 0.054932 ], [ 0.076904, 0.057678 ], [ 0.079651, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0788112", "Lat": "0.0522000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.054932 ], [ 0.079651, 0.052185 ], [ 0.076904, 0.052185 ], [ 0.076904, 0.054932 ], [ 0.079651, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0788112", "Lat": "0.0486000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.052185 ], [ 0.079651, 0.049438 ], [ 0.076904, 0.049438 ], [ 0.076904, 0.052185 ], [ 0.079651, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0761842", "Lat": "0.0450000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.049438 ], [ 0.076904, 0.046692 ], [ 0.074158, 0.046692 ], [ 0.074158, 0.049438 ], [ 0.076904, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761842", "Lat": "0.0432000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.046692 ], [ 0.076904, 0.043945 ], [ 0.074158, 0.043945 ], [ 0.074158, 0.046692 ], [ 0.076904, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0788112", "Lat": "0.0450000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.049438 ], [ 0.079651, 0.046692 ], [ 0.076904, 0.046692 ], [ 0.076904, 0.049438 ], [ 0.079651, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0788112", "Lat": "0.0432000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.046692 ], [ 0.079651, 0.043945 ], [ 0.076904, 0.043945 ], [ 0.076904, 0.046692 ], [ 0.079651, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0814382", "Lat": "0.0540000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.057678 ], [ 0.082397, 0.054932 ], [ 0.079651, 0.054932 ], [ 0.079651, 0.057678 ], [ 0.082397, 0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0522000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.054932 ], [ 0.082397, 0.052185 ], [ 0.079651, 0.052185 ], [ 0.079651, 0.054932 ], [ 0.082397, 0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0814382", "Lat": "0.0486000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.052185 ], [ 0.082397, 0.049438 ], [ 0.079651, 0.049438 ], [ 0.079651, 0.052185 ], [ 0.082397, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0814382", "Lat": "0.0450000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.049438 ], [ 0.082397, 0.046692 ], [ 0.079651, 0.046692 ], [ 0.079651, 0.049438 ], [ 0.082397, 0.049438 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0432000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.046692 ], [ 0.082397, 0.043945 ], [ 0.079651, 0.043945 ], [ 0.079651, 0.046692 ], [ 0.082397, 0.046692 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0446597", "Lat": "0.0396000", "KPI": 190, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.043945 ], [ 0.046692, 0.041199 ], [ 0.043945, 0.041199 ], [ 0.043945, 0.043945 ], [ 0.046692, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0446597", "Lat": "0.0378000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.041199 ], [ 0.046692, 0.038452 ], [ 0.043945, 0.038452 ], [ 0.043945, 0.041199 ], [ 0.046692, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0472867", "Lat": "0.0396000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.043945 ], [ 0.049438, 0.041199 ], [ 0.046692, 0.041199 ], [ 0.046692, 0.043945 ], [ 0.049438, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0472867", "Lat": "0.0378000", "KPI": 515, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.041199 ], [ 0.049438, 0.038452 ], [ 0.046692, 0.038452 ], [ 0.046692, 0.041199 ], [ 0.049438, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446597", "Lat": "0.0342000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.038452 ], [ 0.046692, 0.035706 ], [ 0.043945, 0.035706 ], [ 0.043945, 0.038452 ], [ 0.046692, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0446597", "Lat": "0.0324000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.035706 ], [ 0.046692, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.035706 ], [ 0.046692, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0472867", "Lat": "0.0342000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.038452 ], [ 0.049438, 0.035706 ], [ 0.046692, 0.035706 ], [ 0.046692, 0.038452 ], [ 0.049438, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0472867", "Lat": "0.0324000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.035706 ], [ 0.049438, 0.032959 ], [ 0.046692, 0.032959 ], [ 0.046692, 0.035706 ], [ 0.049438, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0499138", "Lat": "0.0396000", "KPI": 524, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.043945 ], [ 0.052185, 0.041199 ], [ 0.049438, 0.041199 ], [ 0.049438, 0.043945 ], [ 0.052185, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0499138", "Lat": "0.0378000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.041199 ], [ 0.052185, 0.038452 ], [ 0.049438, 0.038452 ], [ 0.049438, 0.041199 ], [ 0.052185, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0525408", "Lat": "0.0396000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.041199 ], [ 0.052185, 0.041199 ], [ 0.052185, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0525408", "Lat": "0.0378000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.041199 ], [ 0.054932, 0.038452 ], [ 0.052185, 0.038452 ], [ 0.052185, 0.041199 ], [ 0.054932, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0499138", "Lat": "0.0342000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.038452 ], [ 0.052185, 0.035706 ], [ 0.049438, 0.035706 ], [ 0.049438, 0.038452 ], [ 0.052185, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0499138", "Lat": "0.0324000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.035706 ], [ 0.052185, 0.032959 ], [ 0.049438, 0.032959 ], [ 0.049438, 0.035706 ], [ 0.052185, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0525408", "Lat": "0.0342000", "KPI": 550, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.038452 ], [ 0.054932, 0.035706 ], [ 0.052185, 0.035706 ], [ 0.052185, 0.038452 ], [ 0.054932, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0324000", "KPI": 245, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.035706 ], [ 0.054932, 0.032959 ], [ 0.052185, 0.032959 ], [ 0.052185, 0.035706 ], [ 0.054932, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0288000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.032959 ], [ 0.046692, 0.030212 ], [ 0.043945, 0.030212 ], [ 0.043945, 0.032959 ], [ 0.046692, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446597", "Lat": "0.0270000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.030212 ], [ 0.046692, 0.027466 ], [ 0.043945, 0.027466 ], [ 0.043945, 0.030212 ], [ 0.046692, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0472867", "Lat": "0.0288000", "KPI": 115, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.032959 ], [ 0.049438, 0.030212 ], [ 0.046692, 0.030212 ], [ 0.046692, 0.032959 ], [ 0.049438, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0472867", "Lat": "0.0270000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.030212 ], [ 0.049438, 0.027466 ], [ 0.046692, 0.027466 ], [ 0.046692, 0.030212 ], [ 0.049438, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0446597", "Lat": "0.0234000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.027466 ], [ 0.046692, 0.024719 ], [ 0.043945, 0.024719 ], [ 0.043945, 0.027466 ], [ 0.046692, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0446597", "Lat": "0.0216000", "KPI": 807, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.024719 ], [ 0.046692, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.024719 ], [ 0.046692, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0472867", "Lat": "0.0234000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.027466 ], [ 0.049438, 0.024719 ], [ 0.046692, 0.024719 ], [ 0.046692, 0.027466 ], [ 0.049438, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0472867", "Lat": "0.0216000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.024719 ], [ 0.049438, 0.021973 ], [ 0.046692, 0.021973 ], [ 0.046692, 0.024719 ], [ 0.049438, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499138", "Lat": "0.0288000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.032959 ], [ 0.052185, 0.030212 ], [ 0.049438, 0.030212 ], [ 0.049438, 0.032959 ], [ 0.052185, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0499138", "Lat": "0.0270000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.030212 ], [ 0.052185, 0.027466 ], [ 0.049438, 0.027466 ], [ 0.049438, 0.030212 ], [ 0.052185, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0525408", "Lat": "0.0288000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.030212 ], [ 0.052185, 0.030212 ], [ 0.052185, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0270000", "KPI": 514, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.030212 ], [ 0.054932, 0.027466 ], [ 0.052185, 0.027466 ], [ 0.052185, 0.030212 ], [ 0.054932, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0499138", "Lat": "0.0234000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.027466 ], [ 0.052185, 0.024719 ], [ 0.049438, 0.024719 ], [ 0.049438, 0.027466 ], [ 0.052185, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0499138", "Lat": "0.0216000", "KPI": 468, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.024719 ], [ 0.052185, 0.021973 ], [ 0.049438, 0.021973 ], [ 0.049438, 0.024719 ], [ 0.052185, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0525408", "Lat": "0.0234000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.027466 ], [ 0.054932, 0.024719 ], [ 0.052185, 0.024719 ], [ 0.052185, 0.027466 ], [ 0.054932, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.024719 ], [ 0.054932, 0.021973 ], [ 0.052185, 0.021973 ], [ 0.052185, 0.024719 ], [ 0.054932, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0551678", "Lat": "0.0396000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.043945 ], [ 0.057678, 0.041199 ], [ 0.054932, 0.041199 ], [ 0.054932, 0.043945 ], [ 0.057678, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0551678", "Lat": "0.0378000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.041199 ], [ 0.057678, 0.038452 ], [ 0.054932, 0.038452 ], [ 0.054932, 0.041199 ], [ 0.057678, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0577949", "Lat": "0.0396000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043945 ], [ 0.060425, 0.041199 ], [ 0.057678, 0.041199 ], [ 0.057678, 0.043945 ], [ 0.060425, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0378000", "KPI": 960, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.041199 ], [ 0.060425, 0.038452 ], [ 0.057678, 0.038452 ], [ 0.057678, 0.041199 ], [ 0.060425, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0551678", "Lat": "0.0342000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.038452 ], [ 0.057678, 0.035706 ], [ 0.054932, 0.035706 ], [ 0.054932, 0.038452 ], [ 0.057678, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0551678", "Lat": "0.0324000", "KPI": 746, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.035706 ], [ 0.057678, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.035706 ], [ 0.057678, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0577949", "Lat": "0.0342000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.038452 ], [ 0.060425, 0.035706 ], [ 0.057678, 0.035706 ], [ 0.057678, 0.038452 ], [ 0.060425, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0577949", "Lat": "0.0324000", "KPI": 410, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.035706 ], [ 0.060425, 0.032959 ], [ 0.057678, 0.032959 ], [ 0.057678, 0.035706 ], [ 0.060425, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0630490", "Lat": "0.0396000", "KPI": 574, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.043945 ], [ 0.063171, 0.041199 ], [ 0.060425, 0.041199 ], [ 0.060425, 0.043945 ], [ 0.063171, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0630490", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.041199 ], [ 0.063171, 0.038452 ], [ 0.060425, 0.038452 ], [ 0.060425, 0.041199 ], [ 0.063171, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0630490", "Lat": "0.0342000", "KPI": 353, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.038452 ], [ 0.063171, 0.035706 ], [ 0.060425, 0.035706 ], [ 0.060425, 0.038452 ], [ 0.063171, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0630490", "Lat": "0.0324000", "KPI": 212, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.035706 ], [ 0.063171, 0.032959 ], [ 0.060425, 0.032959 ], [ 0.060425, 0.035706 ], [ 0.063171, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0551678", "Lat": "0.0288000", "KPI": 851, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.032959 ], [ 0.057678, 0.030212 ], [ 0.054932, 0.030212 ], [ 0.054932, 0.032959 ], [ 0.057678, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0551678", "Lat": "0.0270000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.030212 ], [ 0.057678, 0.027466 ], [ 0.054932, 0.027466 ], [ 0.054932, 0.030212 ], [ 0.057678, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0577949", "Lat": "0.0288000", "KPI": 889, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032959 ], [ 0.060425, 0.030212 ], [ 0.057678, 0.030212 ], [ 0.057678, 0.032959 ], [ 0.060425, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577949", "Lat": "0.0270000", "KPI": 421, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.030212 ], [ 0.060425, 0.027466 ], [ 0.057678, 0.027466 ], [ 0.057678, 0.030212 ], [ 0.060425, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0551678", "Lat": "0.0234000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.027466 ], [ 0.057678, 0.024719 ], [ 0.054932, 0.024719 ], [ 0.054932, 0.027466 ], [ 0.057678, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0551678", "Lat": "0.0216000", "KPI": 702, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.024719 ], [ 0.057678, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.024719 ], [ 0.057678, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0234000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.027466 ], [ 0.060425, 0.024719 ], [ 0.057678, 0.024719 ], [ 0.057678, 0.027466 ], [ 0.060425, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0577949", "Lat": "0.0216000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.024719 ], [ 0.060425, 0.021973 ], [ 0.057678, 0.021973 ], [ 0.057678, 0.024719 ], [ 0.060425, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0630490", "Lat": "0.0288000", "KPI": 277, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.032959 ], [ 0.063171, 0.030212 ], [ 0.060425, 0.030212 ], [ 0.060425, 0.032959 ], [ 0.063171, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0630490", "Lat": "0.0270000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.030212 ], [ 0.063171, 0.027466 ], [ 0.060425, 0.027466 ], [ 0.060425, 0.030212 ], [ 0.063171, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0630490", "Lat": "0.0234000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.027466 ], [ 0.063171, 0.024719 ], [ 0.060425, 0.024719 ], [ 0.060425, 0.027466 ], [ 0.063171, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0630490", "Lat": "0.0216000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.024719 ], [ 0.063171, 0.021973 ], [ 0.060425, 0.021973 ], [ 0.060425, 0.024719 ], [ 0.063171, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0446597", "Lat": "0.0180000", "KPI": 655, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.021973 ], [ 0.046692, 0.019226 ], [ 0.043945, 0.019226 ], [ 0.043945, 0.021973 ], [ 0.046692, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0446597", "Lat": "0.0162000", "KPI": 160, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.019226 ], [ 0.046692, 0.016479 ], [ 0.043945, 0.016479 ], [ 0.043945, 0.019226 ], [ 0.046692, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0472867", "Lat": "0.0180000", "KPI": 330, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.021973 ], [ 0.049438, 0.019226 ], [ 0.046692, 0.019226 ], [ 0.046692, 0.021973 ], [ 0.049438, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0472867", "Lat": "0.0162000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.019226 ], [ 0.049438, 0.016479 ], [ 0.046692, 0.016479 ], [ 0.046692, 0.019226 ], [ 0.049438, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0446597", "Lat": "0.0126000", "KPI": 307, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.016479 ], [ 0.046692, 0.013733 ], [ 0.043945, 0.013733 ], [ 0.043945, 0.016479 ], [ 0.046692, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0108000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.013733 ], [ 0.046692, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.013733 ], [ 0.046692, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0472867", "Lat": "0.0126000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.013733 ], [ 0.046692, 0.013733 ], [ 0.046692, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0108000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.013733 ], [ 0.049438, 0.010986 ], [ 0.046692, 0.010986 ], [ 0.046692, 0.013733 ], [ 0.049438, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0499138", "Lat": "0.0180000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.021973 ], [ 0.052185, 0.019226 ], [ 0.049438, 0.019226 ], [ 0.049438, 0.021973 ], [ 0.052185, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0499138", "Lat": "0.0162000", "KPI": 970, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.019226 ], [ 0.052185, 0.016479 ], [ 0.049438, 0.016479 ], [ 0.049438, 0.019226 ], [ 0.052185, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0525408", "Lat": "0.0180000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.019226 ], [ 0.052185, 0.019226 ], [ 0.052185, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0525408", "Lat": "0.0162000", "KPI": 187, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.019226 ], [ 0.054932, 0.016479 ], [ 0.052185, 0.016479 ], [ 0.052185, 0.019226 ], [ 0.054932, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0499138", "Lat": "0.0126000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.016479 ], [ 0.052185, 0.013733 ], [ 0.049438, 0.013733 ], [ 0.049438, 0.016479 ], [ 0.052185, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499138", "Lat": "0.0108000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.013733 ], [ 0.052185, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.013733 ], [ 0.052185, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0525408", "Lat": "0.0126000", "KPI": 419, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.013733 ], [ 0.052185, 0.013733 ], [ 0.052185, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.013733 ], [ 0.054932, 0.010986 ], [ 0.052185, 0.010986 ], [ 0.052185, 0.013733 ], [ 0.054932, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0446597", "Lat": "0.0072000", "KPI": 398, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.010986 ], [ 0.046692, 0.008240 ], [ 0.043945, 0.008240 ], [ 0.043945, 0.010986 ], [ 0.046692, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0054000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.008240 ], [ 0.046692, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.008240 ], [ 0.046692, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0472867", "Lat": "0.0072000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.008240 ], [ 0.046692, 0.008240 ], [ 0.046692, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.008240 ], [ 0.049438, 0.005493 ], [ 0.046692, 0.005493 ], [ 0.046692, 0.008240 ], [ 0.049438, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0018000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.005493 ], [ 0.046692, 0.002747 ], [ 0.043945, 0.002747 ], [ 0.043945, 0.005493 ], [ 0.046692, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0446597", "Lat": "0.0000000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.002747 ], [ 0.046692, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.002747 ], [ 0.046692, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0472867", "Lat": "0.0018000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.002747 ], [ 0.046692, 0.002747 ], [ 0.046692, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.002747 ], [ 0.049438, 0.000000 ], [ 0.046692, 0.000000 ], [ 0.046692, 0.002747 ], [ 0.049438, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0499138", "Lat": "0.0072000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.010986 ], [ 0.052185, 0.008240 ], [ 0.049438, 0.008240 ], [ 0.049438, 0.010986 ], [ 0.052185, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499138", "Lat": "0.0054000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.008240 ], [ 0.052185, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.008240 ], [ 0.052185, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0525408", "Lat": "0.0072000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.008240 ], [ 0.052185, 0.008240 ], [ 0.052185, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.008240 ], [ 0.054932, 0.005493 ], [ 0.052185, 0.005493 ], [ 0.052185, 0.008240 ], [ 0.054932, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0499138", "Lat": "0.0018000", "KPI": 958, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.005493 ], [ 0.052185, 0.002747 ], [ 0.049438, 0.002747 ], [ 0.049438, 0.005493 ], [ 0.052185, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0000000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.002747 ], [ 0.052185, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.002747 ], [ 0.052185, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525408", "Lat": "0.0018000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.002747 ], [ 0.052185, 0.002747 ], [ 0.052185, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.002747 ], [ 0.054932, 0.000000 ], [ 0.052185, 0.000000 ], [ 0.052185, 0.002747 ], [ 0.054932, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0551678", "Lat": "0.0180000", "KPI": 137, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.021973 ], [ 0.057678, 0.019226 ], [ 0.054932, 0.019226 ], [ 0.054932, 0.021973 ], [ 0.057678, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0551678", "Lat": "0.0162000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.019226 ], [ 0.057678, 0.016479 ], [ 0.054932, 0.016479 ], [ 0.054932, 0.019226 ], [ 0.057678, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0577949", "Lat": "0.0180000", "KPI": 560, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021973 ], [ 0.060425, 0.019226 ], [ 0.057678, 0.019226 ], [ 0.057678, 0.021973 ], [ 0.060425, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577949", "Lat": "0.0162000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.019226 ], [ 0.060425, 0.016479 ], [ 0.057678, 0.016479 ], [ 0.057678, 0.019226 ], [ 0.060425, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0551678", "Lat": "0.0126000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.016479 ], [ 0.057678, 0.013733 ], [ 0.054932, 0.013733 ], [ 0.054932, 0.016479 ], [ 0.057678, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0551678", "Lat": "0.0108000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.013733 ], [ 0.057678, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.013733 ], [ 0.057678, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577949", "Lat": "0.0126000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.013733 ], [ 0.057678, 0.013733 ], [ 0.057678, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0577949", "Lat": "0.0108000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.013733 ], [ 0.060425, 0.010986 ], [ 0.057678, 0.010986 ], [ 0.057678, 0.013733 ], [ 0.060425, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0630490", "Lat": "0.0180000", "KPI": 783, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.021973 ], [ 0.063171, 0.019226 ], [ 0.060425, 0.019226 ], [ 0.060425, 0.021973 ], [ 0.063171, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0630490", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.019226 ], [ 0.063171, 0.016479 ], [ 0.060425, 0.016479 ], [ 0.060425, 0.019226 ], [ 0.063171, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0630490", "Lat": "0.0126000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.016479 ], [ 0.063171, 0.013733 ], [ 0.060425, 0.013733 ], [ 0.060425, 0.016479 ], [ 0.063171, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0630490", "Lat": "0.0108000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.013733 ], [ 0.063171, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.013733 ], [ 0.063171, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0551678", "Lat": "0.0072000", "KPI": 672, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.010986 ], [ 0.057678, 0.008240 ], [ 0.054932, 0.008240 ], [ 0.054932, 0.010986 ], [ 0.057678, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551678", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.008240 ], [ 0.057678, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.008240 ], [ 0.057678, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0577949", "Lat": "0.0072000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.008240 ], [ 0.057678, 0.008240 ], [ 0.057678, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.008240 ], [ 0.060425, 0.005493 ], [ 0.057678, 0.005493 ], [ 0.057678, 0.008240 ], [ 0.060425, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551678", "Lat": "0.0018000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.005493 ], [ 0.057678, 0.002747 ], [ 0.054932, 0.002747 ], [ 0.054932, 0.005493 ], [ 0.057678, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0551678", "Lat": "0.0000000", "KPI": 910, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.002747 ], [ 0.057678, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.002747 ], [ 0.057678, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0577949", "Lat": "0.0018000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.002747 ], [ 0.057678, 0.002747 ], [ 0.057678, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.002747 ], [ 0.060425, 0.000000 ], [ 0.057678, 0.000000 ], [ 0.057678, 0.002747 ], [ 0.060425, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0630490", "Lat": "0.0072000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.010986 ], [ 0.063171, 0.008240 ], [ 0.060425, 0.008240 ], [ 0.060425, 0.010986 ], [ 0.063171, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630490", "Lat": "0.0054000", "KPI": 647, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.008240 ], [ 0.063171, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.008240 ], [ 0.063171, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630490", "Lat": "0.0018000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.005493 ], [ 0.063171, 0.002747 ], [ 0.060425, 0.002747 ], [ 0.060425, 0.005493 ], [ 0.063171, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0630490", "Lat": "0.0000000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.002747 ], [ 0.063171, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.002747 ], [ 0.063171, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0656760", "Lat": "0.0396000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.041199 ], [ 0.063171, 0.041199 ], [ 0.063171, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0656760", "Lat": "0.0378000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.041199 ], [ 0.065918, 0.038452 ], [ 0.063171, 0.038452 ], [ 0.063171, 0.041199 ], [ 0.065918, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0683030", "Lat": "0.0396000", "KPI": 730, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.043945 ], [ 0.068665, 0.041199 ], [ 0.065918, 0.041199 ], [ 0.065918, 0.043945 ], [ 0.068665, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0683030", "Lat": "0.0378000", "KPI": 314, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.041199 ], [ 0.068665, 0.038452 ], [ 0.065918, 0.038452 ], [ 0.065918, 0.041199 ], [ 0.068665, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0656760", "Lat": "0.0342000", "KPI": 594, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.038452 ], [ 0.065918, 0.035706 ], [ 0.063171, 0.035706 ], [ 0.063171, 0.038452 ], [ 0.065918, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0656760", "Lat": "0.0324000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.035706 ], [ 0.065918, 0.032959 ], [ 0.063171, 0.032959 ], [ 0.063171, 0.035706 ], [ 0.065918, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0683030", "Lat": "0.0342000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.038452 ], [ 0.068665, 0.035706 ], [ 0.065918, 0.035706 ], [ 0.065918, 0.038452 ], [ 0.068665, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0683030", "Lat": "0.0324000", "KPI": 527, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.035706 ], [ 0.068665, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.035706 ], [ 0.068665, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0709301", "Lat": "0.0396000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.043945 ], [ 0.071411, 0.041199 ], [ 0.068665, 0.041199 ], [ 0.068665, 0.043945 ], [ 0.071411, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0378000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.041199 ], [ 0.071411, 0.038452 ], [ 0.068665, 0.038452 ], [ 0.068665, 0.041199 ], [ 0.071411, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0735571", "Lat": "0.0396000", "KPI": 343, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.043945 ], [ 0.074158, 0.041199 ], [ 0.071411, 0.041199 ], [ 0.071411, 0.043945 ], [ 0.074158, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0735571", "Lat": "0.0378000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.041199 ], [ 0.074158, 0.038452 ], [ 0.071411, 0.038452 ], [ 0.071411, 0.041199 ], [ 0.074158, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0342000", "KPI": 328, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.038452 ], [ 0.071411, 0.035706 ], [ 0.068665, 0.035706 ], [ 0.068665, 0.038452 ], [ 0.071411, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709301", "Lat": "0.0324000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.035706 ], [ 0.071411, 0.032959 ], [ 0.068665, 0.032959 ], [ 0.068665, 0.035706 ], [ 0.071411, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0735571", "Lat": "0.0342000", "KPI": 956, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.038452 ], [ 0.074158, 0.035706 ], [ 0.071411, 0.035706 ], [ 0.071411, 0.038452 ], [ 0.074158, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0735571", "Lat": "0.0324000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.035706 ], [ 0.074158, 0.032959 ], [ 0.071411, 0.032959 ], [ 0.071411, 0.035706 ], [ 0.074158, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0656760", "Lat": "0.0288000", "KPI": 91, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.030212 ], [ 0.063171, 0.030212 ], [ 0.063171, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0270000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.030212 ], [ 0.065918, 0.027466 ], [ 0.063171, 0.027466 ], [ 0.063171, 0.030212 ], [ 0.065918, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0683030", "Lat": "0.0288000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.032959 ], [ 0.068665, 0.030212 ], [ 0.065918, 0.030212 ], [ 0.065918, 0.032959 ], [ 0.068665, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0683030", "Lat": "0.0270000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.030212 ], [ 0.068665, 0.027466 ], [ 0.065918, 0.027466 ], [ 0.065918, 0.030212 ], [ 0.068665, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0656760", "Lat": "0.0234000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.027466 ], [ 0.065918, 0.024719 ], [ 0.063171, 0.024719 ], [ 0.063171, 0.027466 ], [ 0.065918, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.024719 ], [ 0.065918, 0.021973 ], [ 0.063171, 0.021973 ], [ 0.063171, 0.024719 ], [ 0.065918, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0234000", "KPI": 635, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.027466 ], [ 0.068665, 0.024719 ], [ 0.065918, 0.024719 ], [ 0.065918, 0.027466 ], [ 0.068665, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0683030", "Lat": "0.0216000", "KPI": 526, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.024719 ], [ 0.068665, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.024719 ], [ 0.068665, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0709301", "Lat": "0.0288000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.032959 ], [ 0.071411, 0.030212 ], [ 0.068665, 0.030212 ], [ 0.068665, 0.032959 ], [ 0.071411, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0270000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.030212 ], [ 0.071411, 0.027466 ], [ 0.068665, 0.027466 ], [ 0.068665, 0.030212 ], [ 0.071411, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0735571", "Lat": "0.0288000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.032959 ], [ 0.074158, 0.030212 ], [ 0.071411, 0.030212 ], [ 0.071411, 0.032959 ], [ 0.074158, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0735571", "Lat": "0.0270000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.030212 ], [ 0.074158, 0.027466 ], [ 0.071411, 0.027466 ], [ 0.071411, 0.030212 ], [ 0.074158, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0709301", "Lat": "0.0234000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.027466 ], [ 0.071411, 0.024719 ], [ 0.068665, 0.024719 ], [ 0.068665, 0.027466 ], [ 0.071411, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0709301", "Lat": "0.0216000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.024719 ], [ 0.071411, 0.021973 ], [ 0.068665, 0.021973 ], [ 0.068665, 0.024719 ], [ 0.071411, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0735571", "Lat": "0.0234000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.027466 ], [ 0.074158, 0.024719 ], [ 0.071411, 0.024719 ], [ 0.071411, 0.027466 ], [ 0.074158, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0735571", "Lat": "0.0216000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.024719 ], [ 0.074158, 0.021973 ], [ 0.071411, 0.021973 ], [ 0.071411, 0.024719 ], [ 0.074158, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0761842", "Lat": "0.0396000", "KPI": 389, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.041199 ], [ 0.074158, 0.041199 ], [ 0.074158, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761842", "Lat": "0.0378000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.041199 ], [ 0.076904, 0.038452 ], [ 0.074158, 0.038452 ], [ 0.074158, 0.041199 ], [ 0.076904, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0788112", "Lat": "0.0396000", "KPI": 766, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.043945 ], [ 0.079651, 0.041199 ], [ 0.076904, 0.041199 ], [ 0.076904, 0.043945 ], [ 0.079651, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0788112", "Lat": "0.0378000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.041199 ], [ 0.079651, 0.038452 ], [ 0.076904, 0.038452 ], [ 0.076904, 0.041199 ], [ 0.079651, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0761842", "Lat": "0.0342000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.038452 ], [ 0.076904, 0.035706 ], [ 0.074158, 0.035706 ], [ 0.074158, 0.038452 ], [ 0.076904, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761842", "Lat": "0.0324000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.035706 ], [ 0.076904, 0.032959 ], [ 0.074158, 0.032959 ], [ 0.074158, 0.035706 ], [ 0.076904, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0788112", "Lat": "0.0342000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.038452 ], [ 0.079651, 0.035706 ], [ 0.076904, 0.035706 ], [ 0.076904, 0.038452 ], [ 0.079651, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0788112", "Lat": "0.0324000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.035706 ], [ 0.079651, 0.032959 ], [ 0.076904, 0.032959 ], [ 0.076904, 0.035706 ], [ 0.079651, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0814382", "Lat": "0.0396000", "KPI": 497, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.043945 ], [ 0.082397, 0.041199 ], [ 0.079651, 0.041199 ], [ 0.079651, 0.043945 ], [ 0.082397, 0.043945 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0814382", "Lat": "0.0378000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.041199 ], [ 0.082397, 0.038452 ], [ 0.079651, 0.038452 ], [ 0.079651, 0.041199 ], [ 0.082397, 0.041199 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0814382", "Lat": "0.0342000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.038452 ], [ 0.082397, 0.035706 ], [ 0.079651, 0.035706 ], [ 0.079651, 0.038452 ], [ 0.082397, 0.038452 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0814382", "Lat": "0.0324000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.035706 ], [ 0.082397, 0.032959 ], [ 0.079651, 0.032959 ], [ 0.079651, 0.035706 ], [ 0.082397, 0.035706 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0761842", "Lat": "0.0288000", "KPI": 149, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.030212 ], [ 0.074158, 0.030212 ], [ 0.074158, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0761842", "Lat": "0.0270000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.030212 ], [ 0.076904, 0.027466 ], [ 0.074158, 0.027466 ], [ 0.074158, 0.030212 ], [ 0.076904, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0788112", "Lat": "0.0288000", "KPI": 973, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.032959 ], [ 0.079651, 0.030212 ], [ 0.076904, 0.030212 ], [ 0.076904, 0.032959 ], [ 0.079651, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0788112", "Lat": "0.0270000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.030212 ], [ 0.079651, 0.027466 ], [ 0.076904, 0.027466 ], [ 0.076904, 0.030212 ], [ 0.079651, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0761842", "Lat": "0.0234000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.027466 ], [ 0.076904, 0.024719 ], [ 0.074158, 0.024719 ], [ 0.074158, 0.027466 ], [ 0.076904, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.024719 ], [ 0.076904, 0.021973 ], [ 0.074158, 0.021973 ], [ 0.074158, 0.024719 ], [ 0.076904, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0788112", "Lat": "0.0234000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.027466 ], [ 0.079651, 0.024719 ], [ 0.076904, 0.024719 ], [ 0.076904, 0.027466 ], [ 0.079651, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0788112", "Lat": "0.0216000", "KPI": 593, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.024719 ], [ 0.079651, 0.021973 ], [ 0.076904, 0.021973 ], [ 0.076904, 0.024719 ], [ 0.079651, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0814382", "Lat": "0.0288000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.032959 ], [ 0.082397, 0.030212 ], [ 0.079651, 0.030212 ], [ 0.079651, 0.032959 ], [ 0.082397, 0.032959 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814382", "Lat": "0.0270000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.030212 ], [ 0.082397, 0.027466 ], [ 0.079651, 0.027466 ], [ 0.079651, 0.030212 ], [ 0.082397, 0.030212 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0234000", "KPI": 267, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.027466 ], [ 0.082397, 0.024719 ], [ 0.079651, 0.024719 ], [ 0.079651, 0.027466 ], [ 0.082397, 0.027466 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0814382", "Lat": "0.0216000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.024719 ], [ 0.082397, 0.021973 ], [ 0.079651, 0.021973 ], [ 0.079651, 0.024719 ], [ 0.082397, 0.024719 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0656760", "Lat": "0.0180000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.019226 ], [ 0.063171, 0.019226 ], [ 0.063171, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656760", "Lat": "0.0162000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.019226 ], [ 0.065918, 0.016479 ], [ 0.063171, 0.016479 ], [ 0.063171, 0.019226 ], [ 0.065918, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0683030", "Lat": "0.0180000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.021973 ], [ 0.068665, 0.019226 ], [ 0.065918, 0.019226 ], [ 0.065918, 0.021973 ], [ 0.068665, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0683030", "Lat": "0.0162000", "KPI": 940, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.019226 ], [ 0.068665, 0.016479 ], [ 0.065918, 0.016479 ], [ 0.065918, 0.019226 ], [ 0.068665, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0656760", "Lat": "0.0126000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.013733 ], [ 0.063171, 0.013733 ], [ 0.063171, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.013733 ], [ 0.065918, 0.010986 ], [ 0.063171, 0.010986 ], [ 0.063171, 0.013733 ], [ 0.065918, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0683030", "Lat": "0.0126000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.016479 ], [ 0.068665, 0.013733 ], [ 0.065918, 0.013733 ], [ 0.065918, 0.016479 ], [ 0.068665, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0683030", "Lat": "0.0108000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.013733 ], [ 0.068665, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.013733 ], [ 0.068665, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0709301", "Lat": "0.0180000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.021973 ], [ 0.071411, 0.019226 ], [ 0.068665, 0.019226 ], [ 0.068665, 0.021973 ], [ 0.071411, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0162000", "KPI": 990, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.019226 ], [ 0.071411, 0.016479 ], [ 0.068665, 0.016479 ], [ 0.068665, 0.019226 ], [ 0.071411, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0735571", "Lat": "0.0180000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.021973 ], [ 0.074158, 0.019226 ], [ 0.071411, 0.019226 ], [ 0.071411, 0.021973 ], [ 0.074158, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0735571", "Lat": "0.0162000", "KPI": 608, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.019226 ], [ 0.074158, 0.016479 ], [ 0.071411, 0.016479 ], [ 0.071411, 0.019226 ], [ 0.074158, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0709301", "Lat": "0.0126000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.013733 ], [ 0.068665, 0.013733 ], [ 0.068665, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0108000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.013733 ], [ 0.071411, 0.010986 ], [ 0.068665, 0.010986 ], [ 0.068665, 0.013733 ], [ 0.071411, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0735571", "Lat": "0.0126000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.016479 ], [ 0.074158, 0.013733 ], [ 0.071411, 0.013733 ], [ 0.071411, 0.016479 ], [ 0.074158, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0735571", "Lat": "0.0108000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.013733 ], [ 0.074158, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.013733 ], [ 0.074158, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0656760", "Lat": "0.0072000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.008240 ], [ 0.063171, 0.008240 ], [ 0.063171, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.008240 ], [ 0.065918, 0.005493 ], [ 0.063171, 0.005493 ], [ 0.063171, 0.008240 ], [ 0.065918, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0683030", "Lat": "0.0072000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.010986 ], [ 0.068665, 0.008240 ], [ 0.065918, 0.008240 ], [ 0.065918, 0.010986 ], [ 0.068665, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0683030", "Lat": "0.0054000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.008240 ], [ 0.068665, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.008240 ], [ 0.068665, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656760", "Lat": "0.0018000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.002747 ], [ 0.063171, 0.002747 ], [ 0.063171, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.002747 ], [ 0.065918, 0.000000 ], [ 0.063171, 0.000000 ], [ 0.063171, 0.002747 ], [ 0.065918, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0683030", "Lat": "0.0018000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.005493 ], [ 0.068665, 0.002747 ], [ 0.065918, 0.002747 ], [ 0.065918, 0.005493 ], [ 0.068665, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0000000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.002747 ], [ 0.068665, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.002747 ], [ 0.068665, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0709301", "Lat": "0.0072000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.008240 ], [ 0.068665, 0.008240 ], [ 0.068665, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.008240 ], [ 0.071411, 0.005493 ], [ 0.068665, 0.005493 ], [ 0.068665, 0.008240 ], [ 0.071411, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735571", "Lat": "0.0072000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.010986 ], [ 0.074158, 0.008240 ], [ 0.071411, 0.008240 ], [ 0.071411, 0.010986 ], [ 0.074158, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0735571", "Lat": "0.0054000", "KPI": 859, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.008240 ], [ 0.074158, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.008240 ], [ 0.074158, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0709301", "Lat": "0.0018000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.002747 ], [ 0.068665, 0.002747 ], [ 0.068665, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.002747 ], [ 0.071411, 0.000000 ], [ 0.068665, 0.000000 ], [ 0.068665, 0.002747 ], [ 0.071411, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0735571", "Lat": "0.0018000", "KPI": 931, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.005493 ], [ 0.074158, 0.002747 ], [ 0.071411, 0.002747 ], [ 0.071411, 0.005493 ], [ 0.074158, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0000000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.002747 ], [ 0.074158, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.002747 ], [ 0.074158, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0761842", "Lat": "0.0180000", "KPI": 621, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.019226 ], [ 0.074158, 0.019226 ], [ 0.074158, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0761842", "Lat": "0.0162000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.019226 ], [ 0.076904, 0.016479 ], [ 0.074158, 0.016479 ], [ 0.074158, 0.019226 ], [ 0.076904, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0788112", "Lat": "0.0180000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.021973 ], [ 0.079651, 0.019226 ], [ 0.076904, 0.019226 ], [ 0.076904, 0.021973 ], [ 0.079651, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0788112", "Lat": "0.0162000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.019226 ], [ 0.079651, 0.016479 ], [ 0.076904, 0.016479 ], [ 0.076904, 0.019226 ], [ 0.079651, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0761842", "Lat": "0.0126000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.013733 ], [ 0.074158, 0.013733 ], [ 0.074158, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.013733 ], [ 0.076904, 0.010986 ], [ 0.074158, 0.010986 ], [ 0.074158, 0.013733 ], [ 0.076904, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0788112", "Lat": "0.0126000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.016479 ], [ 0.079651, 0.013733 ], [ 0.076904, 0.013733 ], [ 0.076904, 0.016479 ], [ 0.079651, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0788112", "Lat": "0.0108000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.013733 ], [ 0.079651, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.013733 ], [ 0.079651, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0814382", "Lat": "0.0180000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.021973 ], [ 0.082397, 0.019226 ], [ 0.079651, 0.019226 ], [ 0.079651, 0.021973 ], [ 0.082397, 0.021973 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0162000", "KPI": 59, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.019226 ], [ 0.082397, 0.016479 ], [ 0.079651, 0.016479 ], [ 0.079651, 0.019226 ], [ 0.082397, 0.019226 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0814382", "Lat": "0.0126000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.013733 ], [ 0.079651, 0.013733 ], [ 0.079651, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0814382", "Lat": "0.0108000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.013733 ], [ 0.082397, 0.010986 ], [ 0.079651, 0.010986 ], [ 0.079651, 0.013733 ], [ 0.082397, 0.013733 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0761842", "Lat": "0.0072000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.008240 ], [ 0.074158, 0.008240 ], [ 0.074158, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.008240 ], [ 0.076904, 0.005493 ], [ 0.074158, 0.005493 ], [ 0.074158, 0.008240 ], [ 0.076904, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0788112", "Lat": "0.0072000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.010986 ], [ 0.079651, 0.008240 ], [ 0.076904, 0.008240 ], [ 0.076904, 0.010986 ], [ 0.079651, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0788112", "Lat": "0.0054000", "KPI": 175, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.008240 ], [ 0.079651, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.008240 ], [ 0.079651, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761842", "Lat": "0.0018000", "KPI": 458, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.002747 ], [ 0.074158, 0.002747 ], [ 0.074158, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.002747 ], [ 0.076904, 0.000000 ], [ 0.074158, 0.000000 ], [ 0.074158, 0.002747 ], [ 0.076904, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0788112", "Lat": "0.0018000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.005493 ], [ 0.079651, 0.002747 ], [ 0.076904, 0.002747 ], [ 0.076904, 0.005493 ], [ 0.079651, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0000000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.002747 ], [ 0.079651, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.002747 ], [ 0.079651, 0.002747 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0814382", "Lat": "0.0072000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.008240 ], [ 0.079651, 0.008240 ], [ 0.079651, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.008240 ], [ 0.082397, 0.005493 ], [ 0.079651, 0.005493 ], [ 0.079651, 0.008240 ], [ 0.082397, 0.008240 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0018000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.002747 ], [ 0.079651, 0.002747 ], [ 0.079651, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.002747 ], [ 0.082397, 0.000000 ], [ 0.079651, 0.000000 ], [ 0.079651, 0.002747 ], [ 0.082397, 0.002747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1023, "y": 1024 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 853, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003433 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003433 ], [ 0.002618, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.003433 ], [ 0.003433, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003433 ], [ 0.003433, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.001802 ], [ 0.003433, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.003433, 0.001802 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1023, "y": 1023 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0000000", "Lat": "0.0558000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.057592 ], [ 0.002618, 0.055790 ], [ 0.000000, 0.055790 ], [ 0.000000, 0.057592 ], [ 0.002618, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0558000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.057592 ], [ 0.003433, 0.055790 ], [ 0.002618, 0.055790 ], [ 0.002618, 0.057592 ], [ 0.003433, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0540000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.055790 ], [ 0.002618, 0.053987 ], [ 0.000000, 0.053987 ], [ 0.000000, 0.055790 ], [ 0.002618, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0000000", "Lat": "0.0522000", "KPI": 40, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.053987 ], [ 0.002618, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.053987 ], [ 0.002618, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0504000", "KPI": 692, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.052185 ], [ 0.002618, 0.050383 ], [ 0.000000, 0.050383 ], [ 0.000000, 0.052185 ], [ 0.002618, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0000000", "Lat": "0.0486000", "KPI": 953, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.050383 ], [ 0.002618, 0.048580 ], [ 0.000000, 0.048580 ], [ 0.000000, 0.050383 ], [ 0.002618, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0026270", "Lat": "0.0540000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.055790 ], [ 0.003433, 0.053987 ], [ 0.002618, 0.053987 ], [ 0.002618, 0.055790 ], [ 0.003433, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0026270", "Lat": "0.0522000", "KPI": 116, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.053987 ], [ 0.003433, 0.052185 ], [ 0.002618, 0.052185 ], [ 0.002618, 0.053987 ], [ 0.003433, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0026270", "Lat": "0.0504000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.052185 ], [ 0.003433, 0.050383 ], [ 0.002618, 0.050383 ], [ 0.002618, 0.052185 ], [ 0.003433, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0026270", "Lat": "0.0486000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.050383 ], [ 0.003433, 0.048580 ], [ 0.002618, 0.048580 ], [ 0.002618, 0.050383 ], [ 0.003433, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0468000", "KPI": 548, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.048580 ], [ 0.002618, 0.046821 ], [ 0.000000, 0.046821 ], [ 0.000000, 0.048580 ], [ 0.002618, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0000000", "Lat": "0.0450000", "KPI": 310, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.046821 ], [ 0.002618, 0.045018 ], [ 0.000000, 0.045018 ], [ 0.000000, 0.046821 ], [ 0.002618, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0000000", "Lat": "0.0432000", "KPI": 405, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.045018 ], [ 0.002618, 0.043216 ], [ 0.000000, 0.043216 ], [ 0.000000, 0.045018 ], [ 0.002618, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0026270", "Lat": "0.0468000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.048580 ], [ 0.003433, 0.046821 ], [ 0.002618, 0.046821 ], [ 0.002618, 0.048580 ], [ 0.003433, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0450000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.046821 ], [ 0.003433, 0.045018 ], [ 0.002618, 0.045018 ], [ 0.002618, 0.046821 ], [ 0.003433, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0432000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.045018 ], [ 0.003433, 0.043216 ], [ 0.002618, 0.043216 ], [ 0.002618, 0.045018 ], [ 0.003433, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0000000", "Lat": "0.0414000", "KPI": 88, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.043216 ], [ 0.002618, 0.041413 ], [ 0.000000, 0.041413 ], [ 0.000000, 0.043216 ], [ 0.002618, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0000000", "Lat": "0.0396000", "KPI": 441, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.041413 ], [ 0.002618, 0.039611 ], [ 0.000000, 0.039611 ], [ 0.000000, 0.041413 ], [ 0.002618, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0378000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.039611 ], [ 0.002618, 0.037808 ], [ 0.000000, 0.037808 ], [ 0.000000, 0.039611 ], [ 0.002618, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0026270", "Lat": "0.0414000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.043216 ], [ 0.003433, 0.041413 ], [ 0.002618, 0.041413 ], [ 0.002618, 0.043216 ], [ 0.003433, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0026270", "Lat": "0.0396000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.041413 ], [ 0.003433, 0.039611 ], [ 0.002618, 0.039611 ], [ 0.002618, 0.041413 ], [ 0.003433, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0378000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.039611 ], [ 0.003433, 0.037808 ], [ 0.002618, 0.037808 ], [ 0.002618, 0.039611 ], [ 0.003433, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0000000", "Lat": "0.0360000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.037808 ], [ 0.002618, 0.036006 ], [ 0.000000, 0.036006 ], [ 0.000000, 0.037808 ], [ 0.002618, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0000000", "Lat": "0.0342000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.036006 ], [ 0.002618, 0.034204 ], [ 0.000000, 0.034204 ], [ 0.000000, 0.036006 ], [ 0.002618, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0000000", "Lat": "0.0324000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.034204 ], [ 0.002618, 0.032401 ], [ 0.000000, 0.032401 ], [ 0.000000, 0.034204 ], [ 0.002618, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0026270", "Lat": "0.0360000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.037808 ], [ 0.003433, 0.036006 ], [ 0.002618, 0.036006 ], [ 0.002618, 0.037808 ], [ 0.003433, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0342000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.036006 ], [ 0.003433, 0.034204 ], [ 0.002618, 0.034204 ], [ 0.002618, 0.036006 ], [ 0.003433, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0324000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.034204 ], [ 0.003433, 0.032401 ], [ 0.002618, 0.032401 ], [ 0.002618, 0.034204 ], [ 0.003433, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0000000", "Lat": "0.0306000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.032401 ], [ 0.002618, 0.030599 ], [ 0.000000, 0.030599 ], [ 0.000000, 0.032401 ], [ 0.002618, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0000000", "Lat": "0.0288000", "KPI": 520, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.030599 ], [ 0.002618, 0.028796 ], [ 0.000000, 0.028796 ], [ 0.000000, 0.030599 ], [ 0.002618, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0000000", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.028796 ], [ 0.002618, 0.026994 ], [ 0.000000, 0.026994 ], [ 0.000000, 0.028796 ], [ 0.002618, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0026270", "Lat": "0.0306000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.032401 ], [ 0.003433, 0.030599 ], [ 0.002618, 0.030599 ], [ 0.002618, 0.032401 ], [ 0.003433, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026270", "Lat": "0.0288000", "KPI": 675, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.030599 ], [ 0.003433, 0.028796 ], [ 0.002618, 0.028796 ], [ 0.002618, 0.030599 ], [ 0.003433, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0270000", "KPI": 943, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.028796 ], [ 0.003433, 0.026994 ], [ 0.002618, 0.026994 ], [ 0.002618, 0.028796 ], [ 0.003433, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0000000", "Lat": "0.0252000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.026994 ], [ 0.002618, 0.025191 ], [ 0.000000, 0.025191 ], [ 0.000000, 0.026994 ], [ 0.002618, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0000000", "Lat": "0.0234000", "KPI": 32, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.025191 ], [ 0.002618, 0.023389 ], [ 0.000000, 0.023389 ], [ 0.000000, 0.025191 ], [ 0.002618, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0000000", "Lat": "0.0216000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.023389 ], [ 0.002618, 0.021586 ], [ 0.000000, 0.021586 ], [ 0.000000, 0.023389 ], [ 0.002618, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0026270", "Lat": "0.0252000", "KPI": 445, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.026994 ], [ 0.003433, 0.025191 ], [ 0.002618, 0.025191 ], [ 0.002618, 0.026994 ], [ 0.003433, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0026270", "Lat": "0.0234000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.025191 ], [ 0.003433, 0.023389 ], [ 0.002618, 0.023389 ], [ 0.002618, 0.025191 ], [ 0.003433, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0216000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.023389 ], [ 0.003433, 0.021586 ], [ 0.002618, 0.021586 ], [ 0.002618, 0.023389 ], [ 0.003433, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0000000", "Lat": "0.0198000", "KPI": 628, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.021586 ], [ 0.002618, 0.019784 ], [ 0.000000, 0.019784 ], [ 0.000000, 0.021586 ], [ 0.002618, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0180000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.019784 ], [ 0.002618, 0.017982 ], [ 0.000000, 0.017982 ], [ 0.000000, 0.019784 ], [ 0.002618, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0000000", "Lat": "0.0162000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.017982 ], [ 0.002618, 0.016179 ], [ 0.000000, 0.016179 ], [ 0.000000, 0.017982 ], [ 0.002618, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0026270", "Lat": "0.0198000", "KPI": 839, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.021586 ], [ 0.003433, 0.019784 ], [ 0.002618, 0.019784 ], [ 0.002618, 0.021586 ], [ 0.003433, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0026270", "Lat": "0.0180000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.019784 ], [ 0.003433, 0.017982 ], [ 0.002618, 0.017982 ], [ 0.002618, 0.019784 ], [ 0.003433, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0162000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.017982 ], [ 0.003433, 0.016179 ], [ 0.002618, 0.016179 ], [ 0.002618, 0.017982 ], [ 0.003433, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0000000", "Lat": "0.0144000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.016179 ], [ 0.002618, 0.014420 ], [ 0.000000, 0.014420 ], [ 0.000000, 0.016179 ], [ 0.002618, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0126000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.014420 ], [ 0.002618, 0.012617 ], [ 0.000000, 0.012617 ], [ 0.000000, 0.014420 ], [ 0.002618, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0000000", "Lat": "0.0108000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.012617 ], [ 0.002618, 0.010815 ], [ 0.000000, 0.010815 ], [ 0.000000, 0.012617 ], [ 0.002618, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0026270", "Lat": "0.0144000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.016179 ], [ 0.003433, 0.014420 ], [ 0.002618, 0.014420 ], [ 0.002618, 0.016179 ], [ 0.003433, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0126000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.014420 ], [ 0.003433, 0.012617 ], [ 0.002618, 0.012617 ], [ 0.002618, 0.014420 ], [ 0.003433, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0108000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.012617 ], [ 0.003433, 0.010815 ], [ 0.002618, 0.010815 ], [ 0.002618, 0.012617 ], [ 0.003433, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0090000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.010815 ], [ 0.002618, 0.009012 ], [ 0.000000, 0.009012 ], [ 0.000000, 0.010815 ], [ 0.002618, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0000000", "Lat": "0.0072000", "KPI": 561, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.009012 ], [ 0.002618, 0.007210 ], [ 0.000000, 0.007210 ], [ 0.000000, 0.009012 ], [ 0.002618, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0054000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.007210 ], [ 0.002618, 0.005407 ], [ 0.000000, 0.005407 ], [ 0.000000, 0.007210 ], [ 0.002618, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0026270", "Lat": "0.0090000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.010815 ], [ 0.003433, 0.009012 ], [ 0.002618, 0.009012 ], [ 0.002618, 0.010815 ], [ 0.003433, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026270", "Lat": "0.0072000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.009012 ], [ 0.003433, 0.007210 ], [ 0.002618, 0.007210 ], [ 0.002618, 0.009012 ], [ 0.003433, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.007210 ], [ 0.003433, 0.005407 ], [ 0.002618, 0.005407 ], [ 0.002618, 0.007210 ], [ 0.003433, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0000000", "Lat": "0.0036000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.005407 ], [ 0.002618, 0.003605 ], [ 0.000000, 0.003605 ], [ 0.000000, 0.005407 ], [ 0.002618, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 853, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003605 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003605 ], [ 0.002618, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0026270", "Lat": "0.0036000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.005407 ], [ 0.003433, 0.003605 ], [ 0.002618, 0.003605 ], [ 0.002618, 0.005407 ], [ 0.003433, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.003605 ], [ 0.003433, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003605 ], [ 0.003433, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.001802 ], [ 0.003433, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.003433, 0.001802 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 1024 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 853, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003433 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003433 ], [ 0.002618, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.003433 ], [ 0.005236, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003433 ], [ 0.005236, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.001802 ], [ 0.005236, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.005236, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.003433 ], [ 0.007896, 0.001802 ], [ 0.005236, 0.001802 ], [ 0.005236, 0.003433 ], [ 0.007896, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.001802 ], [ 0.007896, 0.000000 ], [ 0.005236, 0.000000 ], [ 0.005236, 0.001802 ], [ 0.007896, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0078811", "Lat": "0.0018000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.003433 ], [ 0.010514, 0.001802 ], [ 0.007896, 0.001802 ], [ 0.007896, 0.003433 ], [ 0.010514, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0078811", "Lat": "0.0000000", "KPI": 698, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.001802 ], [ 0.010514, 0.000000 ], [ 0.007896, 0.000000 ], [ 0.007896, 0.001802 ], [ 0.010514, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105082", "Lat": "0.0018000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.003433 ], [ 0.013132, 0.001802 ], [ 0.010514, 0.001802 ], [ 0.010514, 0.003433 ], [ 0.013132, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.001802 ], [ 0.013132, 0.000000 ], [ 0.010514, 0.000000 ], [ 0.010514, 0.001802 ], [ 0.013132, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131352", "Lat": "0.0018000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.003433 ], [ 0.015750, 0.001802 ], [ 0.013132, 0.001802 ], [ 0.013132, 0.003433 ], [ 0.015750, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131352", "Lat": "0.0000000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.001802 ], [ 0.015750, 0.000000 ], [ 0.013132, 0.000000 ], [ 0.013132, 0.001802 ], [ 0.015750, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157622", "Lat": "0.0018000", "KPI": 932, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.003433 ], [ 0.018411, 0.001802 ], [ 0.015750, 0.001802 ], [ 0.015750, 0.003433 ], [ 0.018411, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.001802 ], [ 0.018411, 0.000000 ], [ 0.015750, 0.000000 ], [ 0.015750, 0.001802 ], [ 0.018411, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0018000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.003433 ], [ 0.021029, 0.001802 ], [ 0.018411, 0.001802 ], [ 0.018411, 0.003433 ], [ 0.021029, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183893", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.001802 ], [ 0.021029, 0.000000 ], [ 0.018411, 0.000000 ], [ 0.018411, 0.001802 ], [ 0.021029, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210163", "Lat": "0.0018000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.003433 ], [ 0.023646, 0.001802 ], [ 0.021029, 0.001802 ], [ 0.021029, 0.003433 ], [ 0.023646, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.001802 ], [ 0.023646, 0.000000 ], [ 0.021029, 0.000000 ], [ 0.021029, 0.001802 ], [ 0.023646, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236434", "Lat": "0.0018000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.003433 ], [ 0.026264, 0.001802 ], [ 0.023646, 0.001802 ], [ 0.023646, 0.003433 ], [ 0.026264, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0000000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.001802 ], [ 0.026264, 0.000000 ], [ 0.023646, 0.000000 ], [ 0.023646, 0.001802 ], [ 0.026264, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262704", "Lat": "0.0018000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.003433 ], [ 0.028882, 0.001802 ], [ 0.026264, 0.001802 ], [ 0.026264, 0.003433 ], [ 0.028882, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.001802 ], [ 0.028882, 0.000000 ], [ 0.026264, 0.000000 ], [ 0.026264, 0.001802 ], [ 0.028882, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0288974", "Lat": "0.0018000", "KPI": 53, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.003433 ], [ 0.031543, 0.001802 ], [ 0.028882, 0.001802 ], [ 0.028882, 0.003433 ], [ 0.031543, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0288974", "Lat": "0.0000000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.001802 ], [ 0.031543, 0.000000 ], [ 0.028882, 0.000000 ], [ 0.028882, 0.001802 ], [ 0.031543, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0315245", "Lat": "0.0018000", "KPI": 992, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.003433 ], [ 0.034161, 0.001802 ], [ 0.031543, 0.001802 ], [ 0.031543, 0.003433 ], [ 0.034161, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.001802 ], [ 0.034161, 0.000000 ], [ 0.031543, 0.000000 ], [ 0.031543, 0.001802 ], [ 0.034161, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0341515", "Lat": "0.0018000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.003433 ], [ 0.036778, 0.001802 ], [ 0.034161, 0.001802 ], [ 0.034161, 0.003433 ], [ 0.036778, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0341515", "Lat": "0.0000000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.001802 ], [ 0.036778, 0.000000 ], [ 0.034161, 0.000000 ], [ 0.034161, 0.001802 ], [ 0.036778, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0367786", "Lat": "0.0018000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.003433 ], [ 0.039396, 0.001802 ], [ 0.036778, 0.001802 ], [ 0.036778, 0.003433 ], [ 0.039396, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.001802 ], [ 0.039396, 0.000000 ], [ 0.036778, 0.000000 ], [ 0.036778, 0.001802 ], [ 0.039396, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0394056", "Lat": "0.0018000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.003433 ], [ 0.042014, 0.001802 ], [ 0.039396, 0.001802 ], [ 0.039396, 0.003433 ], [ 0.042014, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0000000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.001802 ], [ 0.042014, 0.000000 ], [ 0.039396, 0.000000 ], [ 0.039396, 0.001802 ], [ 0.042014, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420326", "Lat": "0.0018000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.003433 ], [ 0.044675, 0.001802 ], [ 0.042014, 0.001802 ], [ 0.042014, 0.003433 ], [ 0.044675, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.001802 ], [ 0.044675, 0.000000 ], [ 0.042014, 0.000000 ], [ 0.042014, 0.001802 ], [ 0.044675, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0018000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.003433 ], [ 0.047293, 0.001802 ], [ 0.044675, 0.001802 ], [ 0.044675, 0.003433 ], [ 0.047293, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0446597", "Lat": "0.0000000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.001802 ], [ 0.047293, 0.000000 ], [ 0.044675, 0.000000 ], [ 0.044675, 0.001802 ], [ 0.047293, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0472867", "Lat": "0.0018000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.003433 ], [ 0.049911, 0.001802 ], [ 0.047293, 0.001802 ], [ 0.047293, 0.003433 ], [ 0.049911, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.001802 ], [ 0.049911, 0.000000 ], [ 0.047293, 0.000000 ], [ 0.047293, 0.001802 ], [ 0.049911, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0499138", "Lat": "0.0018000", "KPI": 958, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.003433 ], [ 0.052528, 0.001802 ], [ 0.049911, 0.001802 ], [ 0.049911, 0.003433 ], [ 0.052528, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0000000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.001802 ], [ 0.052528, 0.000000 ], [ 0.049911, 0.000000 ], [ 0.049911, 0.001802 ], [ 0.052528, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525408", "Lat": "0.0018000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.003433 ], [ 0.055189, 0.001802 ], [ 0.052528, 0.001802 ], [ 0.052528, 0.003433 ], [ 0.055189, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.001802 ], [ 0.055189, 0.000000 ], [ 0.052528, 0.000000 ], [ 0.052528, 0.001802 ], [ 0.055189, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551678", "Lat": "0.0018000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.003433 ], [ 0.057807, 0.001802 ], [ 0.055189, 0.001802 ], [ 0.055189, 0.003433 ], [ 0.057807, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0551678", "Lat": "0.0000000", "KPI": 910, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.001802 ], [ 0.057807, 0.000000 ], [ 0.055189, 0.000000 ], [ 0.055189, 0.001802 ], [ 0.057807, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0577949", "Lat": "0.0018000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.003433 ], [ 0.060425, 0.001802 ], [ 0.057807, 0.001802 ], [ 0.057807, 0.003433 ], [ 0.060425, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.001802 ], [ 0.060425, 0.000000 ], [ 0.057807, 0.000000 ], [ 0.057807, 0.001802 ], [ 0.060425, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0604219", "Lat": "0.0018000", "KPI": 879, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.003433 ], [ 0.063043, 0.001802 ], [ 0.060425, 0.001802 ], [ 0.060425, 0.003433 ], [ 0.063043, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0604219", "Lat": "0.0000000", "KPI": 100, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.001802 ], [ 0.063043, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.001802 ], [ 0.063043, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630490", "Lat": "0.0018000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.003433 ], [ 0.065660, 0.001802 ], [ 0.063043, 0.001802 ], [ 0.063043, 0.003433 ], [ 0.065660, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0630490", "Lat": "0.0000000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.001802 ], [ 0.065660, 0.000000 ], [ 0.063043, 0.000000 ], [ 0.063043, 0.001802 ], [ 0.065660, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656760", "Lat": "0.0018000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.003433 ], [ 0.068321, 0.001802 ], [ 0.065660, 0.001802 ], [ 0.065660, 0.003433 ], [ 0.068321, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.001802 ], [ 0.068321, 0.000000 ], [ 0.065660, 0.000000 ], [ 0.065660, 0.001802 ], [ 0.068321, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0683030", "Lat": "0.0018000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.003433 ], [ 0.070939, 0.001802 ], [ 0.068321, 0.001802 ], [ 0.068321, 0.003433 ], [ 0.070939, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0000000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.001802 ], [ 0.070939, 0.000000 ], [ 0.068321, 0.000000 ], [ 0.068321, 0.001802 ], [ 0.070939, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0709301", "Lat": "0.0018000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.003433 ], [ 0.073557, 0.001802 ], [ 0.070939, 0.001802 ], [ 0.070939, 0.003433 ], [ 0.073557, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.001802 ], [ 0.073557, 0.000000 ], [ 0.070939, 0.000000 ], [ 0.070939, 0.001802 ], [ 0.073557, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0735571", "Lat": "0.0018000", "KPI": 931, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.003433 ], [ 0.076175, 0.001802 ], [ 0.073557, 0.001802 ], [ 0.073557, 0.003433 ], [ 0.076175, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0000000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.001802 ], [ 0.076175, 0.000000 ], [ 0.073557, 0.000000 ], [ 0.073557, 0.001802 ], [ 0.076175, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761842", "Lat": "0.0018000", "KPI": 458, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.003433 ], [ 0.078793, 0.001802 ], [ 0.076175, 0.001802 ], [ 0.076175, 0.003433 ], [ 0.078793, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.001802 ], [ 0.078793, 0.000000 ], [ 0.076175, 0.000000 ], [ 0.076175, 0.001802 ], [ 0.078793, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0788112", "Lat": "0.0018000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.003433 ], [ 0.081453, 0.001802 ], [ 0.078793, 0.001802 ], [ 0.078793, 0.003433 ], [ 0.081453, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0000000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.001802 ], [ 0.081453, 0.000000 ], [ 0.078793, 0.000000 ], [ 0.078793, 0.001802 ], [ 0.081453, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0018000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.003433 ], [ 0.084071, 0.001802 ], [ 0.081453, 0.001802 ], [ 0.081453, 0.003433 ], [ 0.084071, 0.003433 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.001802 ], [ 0.084071, 0.000000 ], [ 0.081453, 0.000000 ], [ 0.081453, 0.001802 ], [ 0.084071, 0.001802 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 1023 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0000000", "Lat": "0.0558000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.057592 ], [ 0.002618, 0.055790 ], [ 0.000000, 0.055790 ], [ 0.000000, 0.057592 ], [ 0.002618, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0558000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.057592 ], [ 0.005236, 0.055790 ], [ 0.002618, 0.055790 ], [ 0.002618, 0.057592 ], [ 0.005236, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0052541", "Lat": "0.0558000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.057592 ], [ 0.007896, 0.055790 ], [ 0.005236, 0.055790 ], [ 0.005236, 0.057592 ], [ 0.007896, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0078811", "Lat": "0.0558000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.057592 ], [ 0.010514, 0.055790 ], [ 0.007896, 0.055790 ], [ 0.007896, 0.057592 ], [ 0.010514, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0540000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.055790 ], [ 0.002618, 0.053987 ], [ 0.000000, 0.053987 ], [ 0.000000, 0.055790 ], [ 0.002618, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0000000", "Lat": "0.0522000", "KPI": 40, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.053987 ], [ 0.002618, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.053987 ], [ 0.002618, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0504000", "KPI": 692, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.052185 ], [ 0.002618, 0.050383 ], [ 0.000000, 0.050383 ], [ 0.000000, 0.052185 ], [ 0.002618, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0000000", "Lat": "0.0486000", "KPI": 953, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.050383 ], [ 0.002618, 0.048580 ], [ 0.000000, 0.048580 ], [ 0.000000, 0.050383 ], [ 0.002618, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0026270", "Lat": "0.0540000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.055790 ], [ 0.005236, 0.053987 ], [ 0.002618, 0.053987 ], [ 0.002618, 0.055790 ], [ 0.005236, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0026270", "Lat": "0.0522000", "KPI": 116, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.053987 ], [ 0.005236, 0.052185 ], [ 0.002618, 0.052185 ], [ 0.002618, 0.053987 ], [ 0.005236, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0026270", "Lat": "0.0504000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.052185 ], [ 0.005236, 0.050383 ], [ 0.002618, 0.050383 ], [ 0.002618, 0.052185 ], [ 0.005236, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0026270", "Lat": "0.0486000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.050383 ], [ 0.005236, 0.048580 ], [ 0.002618, 0.048580 ], [ 0.002618, 0.050383 ], [ 0.005236, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0468000", "KPI": 548, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.048580 ], [ 0.002618, 0.046821 ], [ 0.000000, 0.046821 ], [ 0.000000, 0.048580 ], [ 0.002618, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0000000", "Lat": "0.0450000", "KPI": 310, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.046821 ], [ 0.002618, 0.045018 ], [ 0.000000, 0.045018 ], [ 0.000000, 0.046821 ], [ 0.002618, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0000000", "Lat": "0.0432000", "KPI": 405, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.045018 ], [ 0.002618, 0.043216 ], [ 0.000000, 0.043216 ], [ 0.000000, 0.045018 ], [ 0.002618, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0026270", "Lat": "0.0468000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.048580 ], [ 0.005236, 0.046821 ], [ 0.002618, 0.046821 ], [ 0.002618, 0.048580 ], [ 0.005236, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0450000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.046821 ], [ 0.005236, 0.045018 ], [ 0.002618, 0.045018 ], [ 0.002618, 0.046821 ], [ 0.005236, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0432000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.045018 ], [ 0.005236, 0.043216 ], [ 0.002618, 0.043216 ], [ 0.002618, 0.045018 ], [ 0.005236, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.055790 ], [ 0.007896, 0.053987 ], [ 0.005236, 0.053987 ], [ 0.005236, 0.055790 ], [ 0.007896, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0052541", "Lat": "0.0522000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.053987 ], [ 0.007896, 0.052185 ], [ 0.005236, 0.052185 ], [ 0.005236, 0.053987 ], [ 0.007896, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0052541", "Lat": "0.0504000", "KPI": 954, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.052185 ], [ 0.007896, 0.050383 ], [ 0.005236, 0.050383 ], [ 0.005236, 0.052185 ], [ 0.007896, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.050383 ], [ 0.007896, 0.048580 ], [ 0.005236, 0.048580 ], [ 0.005236, 0.050383 ], [ 0.007896, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0078811", "Lat": "0.0540000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.055790 ], [ 0.010514, 0.053987 ], [ 0.007896, 0.053987 ], [ 0.007896, 0.055790 ], [ 0.010514, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078811", "Lat": "0.0522000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.053987 ], [ 0.010514, 0.052185 ], [ 0.007896, 0.052185 ], [ 0.007896, 0.053987 ], [ 0.010514, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0078811", "Lat": "0.0504000", "KPI": 663, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.052185 ], [ 0.010514, 0.050383 ], [ 0.007896, 0.050383 ], [ 0.007896, 0.052185 ], [ 0.010514, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078811", "Lat": "0.0486000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.050383 ], [ 0.010514, 0.048580 ], [ 0.007896, 0.048580 ], [ 0.007896, 0.050383 ], [ 0.010514, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0052541", "Lat": "0.0468000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.048580 ], [ 0.007896, 0.046821 ], [ 0.005236, 0.046821 ], [ 0.005236, 0.048580 ], [ 0.007896, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0052541", "Lat": "0.0450000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.046821 ], [ 0.007896, 0.045018 ], [ 0.005236, 0.045018 ], [ 0.005236, 0.046821 ], [ 0.007896, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.045018 ], [ 0.007896, 0.043216 ], [ 0.005236, 0.043216 ], [ 0.005236, 0.045018 ], [ 0.007896, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0078811", "Lat": "0.0468000", "KPI": 127, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.048580 ], [ 0.010514, 0.046821 ], [ 0.007896, 0.046821 ], [ 0.007896, 0.048580 ], [ 0.010514, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078811", "Lat": "0.0450000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.046821 ], [ 0.010514, 0.045018 ], [ 0.007896, 0.045018 ], [ 0.007896, 0.046821 ], [ 0.010514, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0078811", "Lat": "0.0432000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.045018 ], [ 0.010514, 0.043216 ], [ 0.007896, 0.043216 ], [ 0.007896, 0.045018 ], [ 0.010514, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0105082", "Lat": "0.0558000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.057592 ], [ 0.013132, 0.055790 ], [ 0.010514, 0.055790 ], [ 0.010514, 0.057592 ], [ 0.013132, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0131352", "Lat": "0.0558000", "KPI": 626, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.057592 ], [ 0.015750, 0.055790 ], [ 0.013132, 0.055790 ], [ 0.013132, 0.057592 ], [ 0.015750, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0157622", "Lat": "0.0558000", "KPI": 865, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.057592 ], [ 0.018411, 0.055790 ], [ 0.015750, 0.055790 ], [ 0.015750, 0.057592 ], [ 0.018411, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0183893", "Lat": "0.0558000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.057592 ], [ 0.021029, 0.055790 ], [ 0.018411, 0.055790 ], [ 0.018411, 0.057592 ], [ 0.021029, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.055790 ], [ 0.013132, 0.053987 ], [ 0.010514, 0.053987 ], [ 0.010514, 0.055790 ], [ 0.013132, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0105082", "Lat": "0.0522000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.053987 ], [ 0.013132, 0.052185 ], [ 0.010514, 0.052185 ], [ 0.010514, 0.053987 ], [ 0.013132, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0105082", "Lat": "0.0504000", "KPI": 426, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.052185 ], [ 0.013132, 0.050383 ], [ 0.010514, 0.050383 ], [ 0.010514, 0.052185 ], [ 0.013132, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0486000", "KPI": 595, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.050383 ], [ 0.013132, 0.048580 ], [ 0.010514, 0.048580 ], [ 0.010514, 0.050383 ], [ 0.013132, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0131352", "Lat": "0.0540000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.055790 ], [ 0.015750, 0.053987 ], [ 0.013132, 0.053987 ], [ 0.013132, 0.055790 ], [ 0.015750, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0131352", "Lat": "0.0522000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.053987 ], [ 0.015750, 0.052185 ], [ 0.013132, 0.052185 ], [ 0.013132, 0.053987 ], [ 0.015750, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0131352", "Lat": "0.0504000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.052185 ], [ 0.015750, 0.050383 ], [ 0.013132, 0.050383 ], [ 0.013132, 0.052185 ], [ 0.015750, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0131352", "Lat": "0.0486000", "KPI": 202, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.050383 ], [ 0.015750, 0.048580 ], [ 0.013132, 0.048580 ], [ 0.013132, 0.050383 ], [ 0.015750, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0105082", "Lat": "0.0468000", "KPI": 643, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.048580 ], [ 0.013132, 0.046821 ], [ 0.010514, 0.046821 ], [ 0.010514, 0.048580 ], [ 0.013132, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0105082", "Lat": "0.0450000", "KPI": 246, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.046821 ], [ 0.013132, 0.045018 ], [ 0.010514, 0.045018 ], [ 0.010514, 0.046821 ], [ 0.013132, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.045018 ], [ 0.013132, 0.043216 ], [ 0.010514, 0.043216 ], [ 0.010514, 0.045018 ], [ 0.013132, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0131352", "Lat": "0.0468000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.048580 ], [ 0.015750, 0.046821 ], [ 0.013132, 0.046821 ], [ 0.013132, 0.048580 ], [ 0.015750, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0131352", "Lat": "0.0450000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.046821 ], [ 0.015750, 0.045018 ], [ 0.013132, 0.045018 ], [ 0.013132, 0.046821 ], [ 0.015750, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0131352", "Lat": "0.0432000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.045018 ], [ 0.015750, 0.043216 ], [ 0.013132, 0.043216 ], [ 0.013132, 0.045018 ], [ 0.015750, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0540000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.055790 ], [ 0.018411, 0.053987 ], [ 0.015750, 0.053987 ], [ 0.015750, 0.055790 ], [ 0.018411, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0157622", "Lat": "0.0522000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.053987 ], [ 0.018411, 0.052185 ], [ 0.015750, 0.052185 ], [ 0.015750, 0.053987 ], [ 0.018411, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0157622", "Lat": "0.0504000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.052185 ], [ 0.018411, 0.050383 ], [ 0.015750, 0.050383 ], [ 0.015750, 0.052185 ], [ 0.018411, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0157622", "Lat": "0.0486000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.050383 ], [ 0.018411, 0.048580 ], [ 0.015750, 0.048580 ], [ 0.015750, 0.050383 ], [ 0.018411, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0183893", "Lat": "0.0540000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.055790 ], [ 0.021029, 0.053987 ], [ 0.018411, 0.053987 ], [ 0.018411, 0.055790 ], [ 0.021029, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0183893", "Lat": "0.0522000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.053987 ], [ 0.021029, 0.052185 ], [ 0.018411, 0.052185 ], [ 0.018411, 0.053987 ], [ 0.021029, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0183893", "Lat": "0.0504000", "KPI": 225, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.052185 ], [ 0.021029, 0.050383 ], [ 0.018411, 0.050383 ], [ 0.018411, 0.052185 ], [ 0.021029, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0183893", "Lat": "0.0486000", "KPI": 115, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.050383 ], [ 0.021029, 0.048580 ], [ 0.018411, 0.048580 ], [ 0.018411, 0.050383 ], [ 0.021029, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0157622", "Lat": "0.0468000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.048580 ], [ 0.018411, 0.046821 ], [ 0.015750, 0.046821 ], [ 0.015750, 0.048580 ], [ 0.018411, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157622", "Lat": "0.0450000", "KPI": 88, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.046821 ], [ 0.018411, 0.045018 ], [ 0.015750, 0.045018 ], [ 0.015750, 0.046821 ], [ 0.018411, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157622", "Lat": "0.0432000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.045018 ], [ 0.018411, 0.043216 ], [ 0.015750, 0.043216 ], [ 0.015750, 0.045018 ], [ 0.018411, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0183893", "Lat": "0.0468000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.048580 ], [ 0.021029, 0.046821 ], [ 0.018411, 0.046821 ], [ 0.018411, 0.048580 ], [ 0.021029, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0183893", "Lat": "0.0450000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.046821 ], [ 0.021029, 0.045018 ], [ 0.018411, 0.045018 ], [ 0.018411, 0.046821 ], [ 0.021029, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0183893", "Lat": "0.0432000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.045018 ], [ 0.021029, 0.043216 ], [ 0.018411, 0.043216 ], [ 0.018411, 0.045018 ], [ 0.021029, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210163", "Lat": "0.0558000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.057592 ], [ 0.023646, 0.055790 ], [ 0.021029, 0.055790 ], [ 0.021029, 0.057592 ], [ 0.023646, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0236434", "Lat": "0.0558000", "KPI": 848, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.057592 ], [ 0.026264, 0.055790 ], [ 0.023646, 0.055790 ], [ 0.023646, 0.057592 ], [ 0.026264, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0262704", "Lat": "0.0558000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.057592 ], [ 0.028882, 0.055790 ], [ 0.026264, 0.055790 ], [ 0.026264, 0.057592 ], [ 0.028882, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0288974", "Lat": "0.0558000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.057592 ], [ 0.031543, 0.055790 ], [ 0.028882, 0.055790 ], [ 0.028882, 0.057592 ], [ 0.031543, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0558000", "KPI": 257, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.057592 ], [ 0.034161, 0.055790 ], [ 0.031543, 0.055790 ], [ 0.031543, 0.057592 ], [ 0.034161, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.055790 ], [ 0.023646, 0.053987 ], [ 0.021029, 0.053987 ], [ 0.021029, 0.055790 ], [ 0.023646, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0210163", "Lat": "0.0522000", "KPI": 125, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.053987 ], [ 0.023646, 0.052185 ], [ 0.021029, 0.052185 ], [ 0.021029, 0.053987 ], [ 0.023646, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210163", "Lat": "0.0504000", "KPI": 267, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.052185 ], [ 0.023646, 0.050383 ], [ 0.021029, 0.050383 ], [ 0.021029, 0.052185 ], [ 0.023646, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0210163", "Lat": "0.0486000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.050383 ], [ 0.023646, 0.048580 ], [ 0.021029, 0.048580 ], [ 0.021029, 0.050383 ], [ 0.023646, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0236434", "Lat": "0.0540000", "KPI": 676, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.055790 ], [ 0.026264, 0.053987 ], [ 0.023646, 0.053987 ], [ 0.023646, 0.055790 ], [ 0.026264, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0236434", "Lat": "0.0522000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.053987 ], [ 0.026264, 0.052185 ], [ 0.023646, 0.052185 ], [ 0.023646, 0.053987 ], [ 0.026264, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0236434", "Lat": "0.0504000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.052185 ], [ 0.026264, 0.050383 ], [ 0.023646, 0.050383 ], [ 0.023646, 0.052185 ], [ 0.026264, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0236434", "Lat": "0.0486000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.050383 ], [ 0.026264, 0.048580 ], [ 0.023646, 0.048580 ], [ 0.023646, 0.050383 ], [ 0.026264, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0210163", "Lat": "0.0468000", "KPI": 417, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.048580 ], [ 0.023646, 0.046821 ], [ 0.021029, 0.046821 ], [ 0.021029, 0.048580 ], [ 0.023646, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0210163", "Lat": "0.0450000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.046821 ], [ 0.023646, 0.045018 ], [ 0.021029, 0.045018 ], [ 0.021029, 0.046821 ], [ 0.023646, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.045018 ], [ 0.023646, 0.043216 ], [ 0.021029, 0.043216 ], [ 0.021029, 0.045018 ], [ 0.023646, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0236434", "Lat": "0.0468000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.048580 ], [ 0.026264, 0.046821 ], [ 0.023646, 0.046821 ], [ 0.023646, 0.048580 ], [ 0.026264, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0236434", "Lat": "0.0450000", "KPI": 20, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.046821 ], [ 0.026264, 0.045018 ], [ 0.023646, 0.045018 ], [ 0.023646, 0.046821 ], [ 0.026264, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0236434", "Lat": "0.0432000", "KPI": 774, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.045018 ], [ 0.026264, 0.043216 ], [ 0.023646, 0.043216 ], [ 0.023646, 0.045018 ], [ 0.026264, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0262704", "Lat": "0.0540000", "KPI": 765, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.055790 ], [ 0.028882, 0.053987 ], [ 0.026264, 0.053987 ], [ 0.026264, 0.055790 ], [ 0.028882, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0262704", "Lat": "0.0522000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.053987 ], [ 0.028882, 0.052185 ], [ 0.026264, 0.052185 ], [ 0.026264, 0.053987 ], [ 0.028882, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0288974", "Lat": "0.0540000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.055790 ], [ 0.031543, 0.053987 ], [ 0.028882, 0.053987 ], [ 0.028882, 0.055790 ], [ 0.031543, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0288974", "Lat": "0.0522000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.053987 ], [ 0.031543, 0.052185 ], [ 0.028882, 0.052185 ], [ 0.028882, 0.053987 ], [ 0.031543, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0262704", "Lat": "0.0504000", "KPI": 255, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.052185 ], [ 0.028882, 0.050383 ], [ 0.026264, 0.050383 ], [ 0.026264, 0.052185 ], [ 0.028882, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0486000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.050383 ], [ 0.028882, 0.048580 ], [ 0.026264, 0.048580 ], [ 0.026264, 0.050383 ], [ 0.028882, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0288974", "Lat": "0.0504000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.052185 ], [ 0.031543, 0.050383 ], [ 0.028882, 0.050383 ], [ 0.028882, 0.052185 ], [ 0.031543, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0288974", "Lat": "0.0486000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.050383 ], [ 0.031543, 0.048580 ], [ 0.028882, 0.048580 ], [ 0.028882, 0.050383 ], [ 0.031543, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0540000", "KPI": 232, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.055790 ], [ 0.034161, 0.053987 ], [ 0.031543, 0.053987 ], [ 0.031543, 0.055790 ], [ 0.034161, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0315245", "Lat": "0.0522000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.053987 ], [ 0.034161, 0.052185 ], [ 0.031543, 0.052185 ], [ 0.031543, 0.053987 ], [ 0.034161, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0315245", "Lat": "0.0504000", "KPI": 691, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.052185 ], [ 0.034161, 0.050383 ], [ 0.031543, 0.050383 ], [ 0.031543, 0.052185 ], [ 0.034161, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0486000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.050383 ], [ 0.034161, 0.048580 ], [ 0.031543, 0.048580 ], [ 0.031543, 0.050383 ], [ 0.034161, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0262704", "Lat": "0.0468000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.048580 ], [ 0.028882, 0.046821 ], [ 0.026264, 0.046821 ], [ 0.026264, 0.048580 ], [ 0.028882, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0288974", "Lat": "0.0468000", "KPI": 638, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.048580 ], [ 0.031543, 0.046821 ], [ 0.028882, 0.046821 ], [ 0.028882, 0.048580 ], [ 0.031543, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0262704", "Lat": "0.0450000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.046821 ], [ 0.028882, 0.045018 ], [ 0.026264, 0.045018 ], [ 0.026264, 0.046821 ], [ 0.028882, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262704", "Lat": "0.0432000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.045018 ], [ 0.028882, 0.043216 ], [ 0.026264, 0.043216 ], [ 0.026264, 0.045018 ], [ 0.028882, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0288974", "Lat": "0.0450000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.046821 ], [ 0.031543, 0.045018 ], [ 0.028882, 0.045018 ], [ 0.028882, 0.046821 ], [ 0.031543, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0288974", "Lat": "0.0432000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.045018 ], [ 0.031543, 0.043216 ], [ 0.028882, 0.043216 ], [ 0.028882, 0.045018 ], [ 0.031543, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0315245", "Lat": "0.0468000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.048580 ], [ 0.034161, 0.046821 ], [ 0.031543, 0.046821 ], [ 0.031543, 0.048580 ], [ 0.034161, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0315245", "Lat": "0.0450000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.046821 ], [ 0.034161, 0.045018 ], [ 0.031543, 0.045018 ], [ 0.031543, 0.046821 ], [ 0.034161, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0432000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.045018 ], [ 0.034161, 0.043216 ], [ 0.031543, 0.043216 ], [ 0.031543, 0.045018 ], [ 0.034161, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0341515", "Lat": "0.0558000", "KPI": 979, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.057592 ], [ 0.036778, 0.055790 ], [ 0.034161, 0.055790 ], [ 0.034161, 0.057592 ], [ 0.036778, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0367786", "Lat": "0.0558000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.057592 ], [ 0.039396, 0.055790 ], [ 0.036778, 0.055790 ], [ 0.036778, 0.057592 ], [ 0.039396, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0394056", "Lat": "0.0558000", "KPI": 68, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.057592 ], [ 0.042014, 0.055790 ], [ 0.039396, 0.055790 ], [ 0.039396, 0.057592 ], [ 0.042014, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0420326", "Lat": "0.0558000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.057592 ], [ 0.044675, 0.055790 ], [ 0.042014, 0.055790 ], [ 0.042014, 0.057592 ], [ 0.044675, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0341515", "Lat": "0.0540000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.055790 ], [ 0.036778, 0.053987 ], [ 0.034161, 0.053987 ], [ 0.034161, 0.055790 ], [ 0.036778, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0341515", "Lat": "0.0522000", "KPI": 590, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.053987 ], [ 0.036778, 0.052185 ], [ 0.034161, 0.052185 ], [ 0.034161, 0.053987 ], [ 0.036778, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0341515", "Lat": "0.0504000", "KPI": 305, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.052185 ], [ 0.036778, 0.050383 ], [ 0.034161, 0.050383 ], [ 0.034161, 0.052185 ], [ 0.036778, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0341515", "Lat": "0.0486000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.050383 ], [ 0.036778, 0.048580 ], [ 0.034161, 0.048580 ], [ 0.034161, 0.050383 ], [ 0.036778, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0540000", "KPI": 817, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.055790 ], [ 0.039396, 0.053987 ], [ 0.036778, 0.053987 ], [ 0.036778, 0.055790 ], [ 0.039396, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0367786", "Lat": "0.0522000", "KPI": 952, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.053987 ], [ 0.039396, 0.052185 ], [ 0.036778, 0.052185 ], [ 0.036778, 0.053987 ], [ 0.039396, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0367786", "Lat": "0.0504000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.052185 ], [ 0.039396, 0.050383 ], [ 0.036778, 0.050383 ], [ 0.036778, 0.052185 ], [ 0.039396, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0486000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.050383 ], [ 0.039396, 0.048580 ], [ 0.036778, 0.048580 ], [ 0.036778, 0.050383 ], [ 0.039396, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0341515", "Lat": "0.0468000", "KPI": 857, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.048580 ], [ 0.036778, 0.046821 ], [ 0.034161, 0.046821 ], [ 0.034161, 0.048580 ], [ 0.036778, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0341515", "Lat": "0.0450000", "KPI": 920, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.046821 ], [ 0.036778, 0.045018 ], [ 0.034161, 0.045018 ], [ 0.034161, 0.046821 ], [ 0.036778, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0341515", "Lat": "0.0432000", "KPI": 511, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.045018 ], [ 0.036778, 0.043216 ], [ 0.034161, 0.043216 ], [ 0.034161, 0.045018 ], [ 0.036778, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367786", "Lat": "0.0468000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.048580 ], [ 0.039396, 0.046821 ], [ 0.036778, 0.046821 ], [ 0.036778, 0.048580 ], [ 0.039396, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0450000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.046821 ], [ 0.039396, 0.045018 ], [ 0.036778, 0.045018 ], [ 0.036778, 0.046821 ], [ 0.039396, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0432000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.045018 ], [ 0.039396, 0.043216 ], [ 0.036778, 0.043216 ], [ 0.036778, 0.045018 ], [ 0.039396, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0394056", "Lat": "0.0540000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.055790 ], [ 0.042014, 0.053987 ], [ 0.039396, 0.053987 ], [ 0.039396, 0.055790 ], [ 0.042014, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0394056", "Lat": "0.0522000", "KPI": 654, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.053987 ], [ 0.042014, 0.052185 ], [ 0.039396, 0.052185 ], [ 0.039396, 0.053987 ], [ 0.042014, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0394056", "Lat": "0.0504000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.052185 ], [ 0.042014, 0.050383 ], [ 0.039396, 0.050383 ], [ 0.039396, 0.052185 ], [ 0.042014, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0486000", "KPI": 799, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.050383 ], [ 0.042014, 0.048580 ], [ 0.039396, 0.048580 ], [ 0.039396, 0.050383 ], [ 0.042014, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0540000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.055790 ], [ 0.044675, 0.053987 ], [ 0.042014, 0.053987 ], [ 0.042014, 0.055790 ], [ 0.044675, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420326", "Lat": "0.0522000", "KPI": 282, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.053987 ], [ 0.044675, 0.052185 ], [ 0.042014, 0.052185 ], [ 0.042014, 0.053987 ], [ 0.044675, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0420326", "Lat": "0.0504000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.052185 ], [ 0.044675, 0.050383 ], [ 0.042014, 0.050383 ], [ 0.042014, 0.052185 ], [ 0.044675, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0420326", "Lat": "0.0486000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.050383 ], [ 0.044675, 0.048580 ], [ 0.042014, 0.048580 ], [ 0.042014, 0.050383 ], [ 0.044675, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0394056", "Lat": "0.0468000", "KPI": 312, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.048580 ], [ 0.042014, 0.046821 ], [ 0.039396, 0.046821 ], [ 0.039396, 0.048580 ], [ 0.042014, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0394056", "Lat": "0.0450000", "KPI": 133, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.046821 ], [ 0.042014, 0.045018 ], [ 0.039396, 0.045018 ], [ 0.039396, 0.046821 ], [ 0.042014, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0394056", "Lat": "0.0432000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.045018 ], [ 0.042014, 0.043216 ], [ 0.039396, 0.043216 ], [ 0.039396, 0.045018 ], [ 0.042014, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0420326", "Lat": "0.0468000", "KPI": 316, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.048580 ], [ 0.044675, 0.046821 ], [ 0.042014, 0.046821 ], [ 0.042014, 0.048580 ], [ 0.044675, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0450000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.046821 ], [ 0.044675, 0.045018 ], [ 0.042014, 0.045018 ], [ 0.042014, 0.046821 ], [ 0.044675, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.045018 ], [ 0.044675, 0.043216 ], [ 0.042014, 0.043216 ], [ 0.042014, 0.045018 ], [ 0.044675, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0000000", "Lat": "0.0414000", "KPI": 88, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.043216 ], [ 0.002618, 0.041413 ], [ 0.000000, 0.041413 ], [ 0.000000, 0.043216 ], [ 0.002618, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0000000", "Lat": "0.0396000", "KPI": 441, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.041413 ], [ 0.002618, 0.039611 ], [ 0.000000, 0.039611 ], [ 0.000000, 0.041413 ], [ 0.002618, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0378000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.039611 ], [ 0.002618, 0.037808 ], [ 0.000000, 0.037808 ], [ 0.000000, 0.039611 ], [ 0.002618, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0026270", "Lat": "0.0414000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.043216 ], [ 0.005236, 0.041413 ], [ 0.002618, 0.041413 ], [ 0.002618, 0.043216 ], [ 0.005236, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0026270", "Lat": "0.0396000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.041413 ], [ 0.005236, 0.039611 ], [ 0.002618, 0.039611 ], [ 0.002618, 0.041413 ], [ 0.005236, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0378000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.039611 ], [ 0.005236, 0.037808 ], [ 0.002618, 0.037808 ], [ 0.002618, 0.039611 ], [ 0.005236, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0000000", "Lat": "0.0360000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.037808 ], [ 0.002618, 0.036006 ], [ 0.000000, 0.036006 ], [ 0.000000, 0.037808 ], [ 0.002618, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0000000", "Lat": "0.0342000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.036006 ], [ 0.002618, 0.034204 ], [ 0.000000, 0.034204 ], [ 0.000000, 0.036006 ], [ 0.002618, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0000000", "Lat": "0.0324000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.034204 ], [ 0.002618, 0.032401 ], [ 0.000000, 0.032401 ], [ 0.000000, 0.034204 ], [ 0.002618, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0026270", "Lat": "0.0360000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.037808 ], [ 0.005236, 0.036006 ], [ 0.002618, 0.036006 ], [ 0.002618, 0.037808 ], [ 0.005236, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0342000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.036006 ], [ 0.005236, 0.034204 ], [ 0.002618, 0.034204 ], [ 0.002618, 0.036006 ], [ 0.005236, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0324000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.034204 ], [ 0.005236, 0.032401 ], [ 0.002618, 0.032401 ], [ 0.002618, 0.034204 ], [ 0.005236, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052541", "Lat": "0.0414000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.043216 ], [ 0.007896, 0.041413 ], [ 0.005236, 0.041413 ], [ 0.005236, 0.043216 ], [ 0.007896, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0052541", "Lat": "0.0396000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.041413 ], [ 0.007896, 0.039611 ], [ 0.005236, 0.039611 ], [ 0.005236, 0.041413 ], [ 0.007896, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.039611 ], [ 0.007896, 0.037808 ], [ 0.005236, 0.037808 ], [ 0.005236, 0.039611 ], [ 0.007896, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0078811", "Lat": "0.0414000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.043216 ], [ 0.010514, 0.041413 ], [ 0.007896, 0.041413 ], [ 0.007896, 0.043216 ], [ 0.010514, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0078811", "Lat": "0.0396000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.041413 ], [ 0.010514, 0.039611 ], [ 0.007896, 0.039611 ], [ 0.007896, 0.041413 ], [ 0.010514, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0078811", "Lat": "0.0378000", "KPI": 201, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.039611 ], [ 0.010514, 0.037808 ], [ 0.007896, 0.037808 ], [ 0.007896, 0.039611 ], [ 0.010514, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0360000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.037808 ], [ 0.007896, 0.036006 ], [ 0.005236, 0.036006 ], [ 0.005236, 0.037808 ], [ 0.007896, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0052541", "Lat": "0.0342000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.036006 ], [ 0.007896, 0.034204 ], [ 0.005236, 0.034204 ], [ 0.005236, 0.036006 ], [ 0.007896, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.034204 ], [ 0.007896, 0.032401 ], [ 0.005236, 0.032401 ], [ 0.005236, 0.034204 ], [ 0.007896, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0078811", "Lat": "0.0360000", "KPI": 188, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.037808 ], [ 0.010514, 0.036006 ], [ 0.007896, 0.036006 ], [ 0.007896, 0.037808 ], [ 0.010514, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078811", "Lat": "0.0342000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.036006 ], [ 0.010514, 0.034204 ], [ 0.007896, 0.034204 ], [ 0.007896, 0.036006 ], [ 0.010514, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0324000", "KPI": 661, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.034204 ], [ 0.010514, 0.032401 ], [ 0.007896, 0.032401 ], [ 0.007896, 0.034204 ], [ 0.010514, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0000000", "Lat": "0.0306000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.032401 ], [ 0.002618, 0.030599 ], [ 0.000000, 0.030599 ], [ 0.000000, 0.032401 ], [ 0.002618, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0000000", "Lat": "0.0288000", "KPI": 520, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.030599 ], [ 0.002618, 0.028796 ], [ 0.000000, 0.028796 ], [ 0.000000, 0.030599 ], [ 0.002618, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0000000", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.028796 ], [ 0.002618, 0.026994 ], [ 0.000000, 0.026994 ], [ 0.000000, 0.028796 ], [ 0.002618, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0026270", "Lat": "0.0306000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.032401 ], [ 0.005236, 0.030599 ], [ 0.002618, 0.030599 ], [ 0.002618, 0.032401 ], [ 0.005236, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026270", "Lat": "0.0288000", "KPI": 675, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.030599 ], [ 0.005236, 0.028796 ], [ 0.002618, 0.028796 ], [ 0.002618, 0.030599 ], [ 0.005236, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0270000", "KPI": 943, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.028796 ], [ 0.005236, 0.026994 ], [ 0.002618, 0.026994 ], [ 0.002618, 0.028796 ], [ 0.005236, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0000000", "Lat": "0.0252000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.026994 ], [ 0.002618, 0.025191 ], [ 0.000000, 0.025191 ], [ 0.000000, 0.026994 ], [ 0.002618, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0000000", "Lat": "0.0234000", "KPI": 32, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.025191 ], [ 0.002618, 0.023389 ], [ 0.000000, 0.023389 ], [ 0.000000, 0.025191 ], [ 0.002618, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0000000", "Lat": "0.0216000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.023389 ], [ 0.002618, 0.021586 ], [ 0.000000, 0.021586 ], [ 0.000000, 0.023389 ], [ 0.002618, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0026270", "Lat": "0.0252000", "KPI": 445, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.026994 ], [ 0.005236, 0.025191 ], [ 0.002618, 0.025191 ], [ 0.002618, 0.026994 ], [ 0.005236, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0026270", "Lat": "0.0234000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.025191 ], [ 0.005236, 0.023389 ], [ 0.002618, 0.023389 ], [ 0.002618, 0.025191 ], [ 0.005236, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0216000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.023389 ], [ 0.005236, 0.021586 ], [ 0.002618, 0.021586 ], [ 0.002618, 0.023389 ], [ 0.005236, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0052541", "Lat": "0.0306000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.032401 ], [ 0.007896, 0.030599 ], [ 0.005236, 0.030599 ], [ 0.005236, 0.032401 ], [ 0.007896, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0052541", "Lat": "0.0288000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.030599 ], [ 0.007896, 0.028796 ], [ 0.005236, 0.028796 ], [ 0.005236, 0.030599 ], [ 0.007896, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.028796 ], [ 0.007896, 0.026994 ], [ 0.005236, 0.026994 ], [ 0.005236, 0.028796 ], [ 0.007896, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0078811", "Lat": "0.0306000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.032401 ], [ 0.010514, 0.030599 ], [ 0.007896, 0.030599 ], [ 0.007896, 0.032401 ], [ 0.010514, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0078811", "Lat": "0.0288000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.030599 ], [ 0.010514, 0.028796 ], [ 0.007896, 0.028796 ], [ 0.007896, 0.030599 ], [ 0.010514, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0078811", "Lat": "0.0270000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.028796 ], [ 0.010514, 0.026994 ], [ 0.007896, 0.026994 ], [ 0.007896, 0.028796 ], [ 0.010514, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0052541", "Lat": "0.0252000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.026994 ], [ 0.007896, 0.025191 ], [ 0.005236, 0.025191 ], [ 0.005236, 0.026994 ], [ 0.007896, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0052541", "Lat": "0.0234000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.025191 ], [ 0.007896, 0.023389 ], [ 0.005236, 0.023389 ], [ 0.005236, 0.025191 ], [ 0.007896, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.023389 ], [ 0.007896, 0.021586 ], [ 0.005236, 0.021586 ], [ 0.005236, 0.023389 ], [ 0.007896, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0078811", "Lat": "0.0252000", "KPI": 810, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.026994 ], [ 0.010514, 0.025191 ], [ 0.007896, 0.025191 ], [ 0.007896, 0.026994 ], [ 0.010514, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0234000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.025191 ], [ 0.010514, 0.023389 ], [ 0.007896, 0.023389 ], [ 0.007896, 0.025191 ], [ 0.010514, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0078811", "Lat": "0.0216000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.023389 ], [ 0.010514, 0.021586 ], [ 0.007896, 0.021586 ], [ 0.007896, 0.023389 ], [ 0.010514, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0105082", "Lat": "0.0414000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.043216 ], [ 0.013132, 0.041413 ], [ 0.010514, 0.041413 ], [ 0.010514, 0.043216 ], [ 0.013132, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0105082", "Lat": "0.0396000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.041413 ], [ 0.013132, 0.039611 ], [ 0.010514, 0.039611 ], [ 0.010514, 0.041413 ], [ 0.013132, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0105082", "Lat": "0.0378000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.039611 ], [ 0.013132, 0.037808 ], [ 0.010514, 0.037808 ], [ 0.010514, 0.039611 ], [ 0.013132, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0131352", "Lat": "0.0414000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.043216 ], [ 0.015750, 0.041413 ], [ 0.013132, 0.041413 ], [ 0.013132, 0.043216 ], [ 0.015750, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0131352", "Lat": "0.0396000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.041413 ], [ 0.015750, 0.039611 ], [ 0.013132, 0.039611 ], [ 0.013132, 0.041413 ], [ 0.015750, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0131352", "Lat": "0.0378000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.039611 ], [ 0.015750, 0.037808 ], [ 0.013132, 0.037808 ], [ 0.013132, 0.039611 ], [ 0.015750, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0105082", "Lat": "0.0360000", "KPI": 802, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.037808 ], [ 0.013132, 0.036006 ], [ 0.010514, 0.036006 ], [ 0.010514, 0.037808 ], [ 0.013132, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105082", "Lat": "0.0342000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.036006 ], [ 0.013132, 0.034204 ], [ 0.010514, 0.034204 ], [ 0.010514, 0.036006 ], [ 0.013132, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.034204 ], [ 0.013132, 0.032401 ], [ 0.010514, 0.032401 ], [ 0.010514, 0.034204 ], [ 0.013132, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0131352", "Lat": "0.0360000", "KPI": 443, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.037808 ], [ 0.015750, 0.036006 ], [ 0.013132, 0.036006 ], [ 0.013132, 0.037808 ], [ 0.015750, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0131352", "Lat": "0.0342000", "KPI": 261, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.036006 ], [ 0.015750, 0.034204 ], [ 0.013132, 0.034204 ], [ 0.013132, 0.036006 ], [ 0.015750, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0131352", "Lat": "0.0324000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.034204 ], [ 0.015750, 0.032401 ], [ 0.013132, 0.032401 ], [ 0.013132, 0.034204 ], [ 0.015750, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0157622", "Lat": "0.0414000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.043216 ], [ 0.018411, 0.041413 ], [ 0.015750, 0.041413 ], [ 0.015750, 0.043216 ], [ 0.018411, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0157622", "Lat": "0.0396000", "KPI": 382, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.041413 ], [ 0.018411, 0.039611 ], [ 0.015750, 0.039611 ], [ 0.015750, 0.041413 ], [ 0.018411, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0378000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.039611 ], [ 0.018411, 0.037808 ], [ 0.015750, 0.037808 ], [ 0.015750, 0.039611 ], [ 0.018411, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0183893", "Lat": "0.0414000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.043216 ], [ 0.021029, 0.041413 ], [ 0.018411, 0.041413 ], [ 0.018411, 0.043216 ], [ 0.021029, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0183893", "Lat": "0.0396000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.041413 ], [ 0.021029, 0.039611 ], [ 0.018411, 0.039611 ], [ 0.018411, 0.041413 ], [ 0.021029, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0183893", "Lat": "0.0378000", "KPI": 622, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.039611 ], [ 0.021029, 0.037808 ], [ 0.018411, 0.037808 ], [ 0.018411, 0.039611 ], [ 0.021029, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0157622", "Lat": "0.0360000", "KPI": 469, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.037808 ], [ 0.018411, 0.036006 ], [ 0.015750, 0.036006 ], [ 0.015750, 0.037808 ], [ 0.018411, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0157622", "Lat": "0.0342000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.036006 ], [ 0.018411, 0.034204 ], [ 0.015750, 0.034204 ], [ 0.015750, 0.036006 ], [ 0.018411, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0157622", "Lat": "0.0324000", "KPI": 293, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.034204 ], [ 0.018411, 0.032401 ], [ 0.015750, 0.032401 ], [ 0.015750, 0.034204 ], [ 0.018411, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0183893", "Lat": "0.0360000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.037808 ], [ 0.021029, 0.036006 ], [ 0.018411, 0.036006 ], [ 0.018411, 0.037808 ], [ 0.021029, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0183893", "Lat": "0.0342000", "KPI": 247, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.036006 ], [ 0.021029, 0.034204 ], [ 0.018411, 0.034204 ], [ 0.018411, 0.036006 ], [ 0.021029, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0183893", "Lat": "0.0324000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.034204 ], [ 0.021029, 0.032401 ], [ 0.018411, 0.032401 ], [ 0.018411, 0.034204 ], [ 0.021029, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0105082", "Lat": "0.0306000", "KPI": 691, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.032401 ], [ 0.013132, 0.030599 ], [ 0.010514, 0.030599 ], [ 0.010514, 0.032401 ], [ 0.013132, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0288000", "KPI": 913, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.030599 ], [ 0.013132, 0.028796 ], [ 0.010514, 0.028796 ], [ 0.010514, 0.030599 ], [ 0.013132, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0270000", "KPI": 823, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.028796 ], [ 0.013132, 0.026994 ], [ 0.010514, 0.026994 ], [ 0.010514, 0.028796 ], [ 0.013132, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0131352", "Lat": "0.0306000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.032401 ], [ 0.015750, 0.030599 ], [ 0.013132, 0.030599 ], [ 0.013132, 0.032401 ], [ 0.015750, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0131352", "Lat": "0.0288000", "KPI": 190, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.030599 ], [ 0.015750, 0.028796 ], [ 0.013132, 0.028796 ], [ 0.013132, 0.030599 ], [ 0.015750, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0131352", "Lat": "0.0270000", "KPI": 391, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.028796 ], [ 0.015750, 0.026994 ], [ 0.013132, 0.026994 ], [ 0.013132, 0.028796 ], [ 0.015750, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0105082", "Lat": "0.0252000", "KPI": 656, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.026994 ], [ 0.013132, 0.025191 ], [ 0.010514, 0.025191 ], [ 0.010514, 0.026994 ], [ 0.013132, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0105082", "Lat": "0.0234000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.025191 ], [ 0.013132, 0.023389 ], [ 0.010514, 0.023389 ], [ 0.010514, 0.025191 ], [ 0.013132, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.023389 ], [ 0.013132, 0.021586 ], [ 0.010514, 0.021586 ], [ 0.010514, 0.023389 ], [ 0.013132, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0131352", "Lat": "0.0252000", "KPI": 109, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.026994 ], [ 0.015750, 0.025191 ], [ 0.013132, 0.025191 ], [ 0.013132, 0.026994 ], [ 0.015750, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0131352", "Lat": "0.0234000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.025191 ], [ 0.015750, 0.023389 ], [ 0.013132, 0.023389 ], [ 0.013132, 0.025191 ], [ 0.015750, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0131352", "Lat": "0.0216000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.023389 ], [ 0.015750, 0.021586 ], [ 0.013132, 0.021586 ], [ 0.013132, 0.023389 ], [ 0.015750, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157622", "Lat": "0.0306000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.032401 ], [ 0.018411, 0.030599 ], [ 0.015750, 0.030599 ], [ 0.015750, 0.032401 ], [ 0.018411, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0157622", "Lat": "0.0288000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.030599 ], [ 0.018411, 0.028796 ], [ 0.015750, 0.028796 ], [ 0.015750, 0.030599 ], [ 0.018411, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0157622", "Lat": "0.0270000", "KPI": 599, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.028796 ], [ 0.018411, 0.026994 ], [ 0.015750, 0.026994 ], [ 0.015750, 0.028796 ], [ 0.018411, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0183893", "Lat": "0.0306000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.032401 ], [ 0.021029, 0.030599 ], [ 0.018411, 0.030599 ], [ 0.018411, 0.032401 ], [ 0.021029, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0183893", "Lat": "0.0288000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.030599 ], [ 0.021029, 0.028796 ], [ 0.018411, 0.028796 ], [ 0.018411, 0.030599 ], [ 0.021029, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0270000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.028796 ], [ 0.021029, 0.026994 ], [ 0.018411, 0.026994 ], [ 0.018411, 0.028796 ], [ 0.021029, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0157622", "Lat": "0.0252000", "KPI": 696, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.026994 ], [ 0.018411, 0.025191 ], [ 0.015750, 0.025191 ], [ 0.015750, 0.026994 ], [ 0.018411, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0157622", "Lat": "0.0234000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.025191 ], [ 0.018411, 0.023389 ], [ 0.015750, 0.023389 ], [ 0.015750, 0.025191 ], [ 0.018411, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157622", "Lat": "0.0216000", "KPI": 757, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.023389 ], [ 0.018411, 0.021586 ], [ 0.015750, 0.021586 ], [ 0.015750, 0.023389 ], [ 0.018411, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0183893", "Lat": "0.0252000", "KPI": 307, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.026994 ], [ 0.021029, 0.025191 ], [ 0.018411, 0.025191 ], [ 0.018411, 0.026994 ], [ 0.021029, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183893", "Lat": "0.0234000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.025191 ], [ 0.021029, 0.023389 ], [ 0.018411, 0.023389 ], [ 0.018411, 0.025191 ], [ 0.021029, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0183893", "Lat": "0.0216000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.023389 ], [ 0.021029, 0.021586 ], [ 0.018411, 0.021586 ], [ 0.018411, 0.023389 ], [ 0.021029, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0000000", "Lat": "0.0198000", "KPI": 628, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.021586 ], [ 0.002618, 0.019784 ], [ 0.000000, 0.019784 ], [ 0.000000, 0.021586 ], [ 0.002618, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0180000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.019784 ], [ 0.002618, 0.017982 ], [ 0.000000, 0.017982 ], [ 0.000000, 0.019784 ], [ 0.002618, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0000000", "Lat": "0.0162000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.017982 ], [ 0.002618, 0.016179 ], [ 0.000000, 0.016179 ], [ 0.000000, 0.017982 ], [ 0.002618, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0026270", "Lat": "0.0198000", "KPI": 839, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.021586 ], [ 0.005236, 0.019784 ], [ 0.002618, 0.019784 ], [ 0.002618, 0.021586 ], [ 0.005236, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0026270", "Lat": "0.0180000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.019784 ], [ 0.005236, 0.017982 ], [ 0.002618, 0.017982 ], [ 0.002618, 0.019784 ], [ 0.005236, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0162000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.017982 ], [ 0.005236, 0.016179 ], [ 0.002618, 0.016179 ], [ 0.002618, 0.017982 ], [ 0.005236, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0000000", "Lat": "0.0144000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.016179 ], [ 0.002618, 0.014420 ], [ 0.000000, 0.014420 ], [ 0.000000, 0.016179 ], [ 0.002618, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0126000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.014420 ], [ 0.002618, 0.012617 ], [ 0.000000, 0.012617 ], [ 0.000000, 0.014420 ], [ 0.002618, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0000000", "Lat": "0.0108000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.012617 ], [ 0.002618, 0.010815 ], [ 0.000000, 0.010815 ], [ 0.000000, 0.012617 ], [ 0.002618, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0026270", "Lat": "0.0144000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.016179 ], [ 0.005236, 0.014420 ], [ 0.002618, 0.014420 ], [ 0.002618, 0.016179 ], [ 0.005236, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0126000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.014420 ], [ 0.005236, 0.012617 ], [ 0.002618, 0.012617 ], [ 0.002618, 0.014420 ], [ 0.005236, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0108000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.012617 ], [ 0.005236, 0.010815 ], [ 0.002618, 0.010815 ], [ 0.002618, 0.012617 ], [ 0.005236, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052541", "Lat": "0.0198000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.021586 ], [ 0.007896, 0.019784 ], [ 0.005236, 0.019784 ], [ 0.005236, 0.021586 ], [ 0.007896, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052541", "Lat": "0.0180000", "KPI": 316, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.019784 ], [ 0.007896, 0.017982 ], [ 0.005236, 0.017982 ], [ 0.005236, 0.019784 ], [ 0.007896, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.017982 ], [ 0.007896, 0.016179 ], [ 0.005236, 0.016179 ], [ 0.005236, 0.017982 ], [ 0.007896, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0078811", "Lat": "0.0198000", "KPI": 30, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.021586 ], [ 0.010514, 0.019784 ], [ 0.007896, 0.019784 ], [ 0.007896, 0.021586 ], [ 0.010514, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0078811", "Lat": "0.0180000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.019784 ], [ 0.010514, 0.017982 ], [ 0.007896, 0.017982 ], [ 0.007896, 0.019784 ], [ 0.010514, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0078811", "Lat": "0.0162000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.017982 ], [ 0.010514, 0.016179 ], [ 0.007896, 0.016179 ], [ 0.007896, 0.017982 ], [ 0.010514, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0052541", "Lat": "0.0144000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.016179 ], [ 0.007896, 0.014420 ], [ 0.005236, 0.014420 ], [ 0.005236, 0.016179 ], [ 0.007896, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0052541", "Lat": "0.0126000", "KPI": 49, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.014420 ], [ 0.007896, 0.012617 ], [ 0.005236, 0.012617 ], [ 0.005236, 0.014420 ], [ 0.007896, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.012617 ], [ 0.007896, 0.010815 ], [ 0.005236, 0.010815 ], [ 0.005236, 0.012617 ], [ 0.007896, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0078811", "Lat": "0.0144000", "KPI": 857, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.016179 ], [ 0.010514, 0.014420 ], [ 0.007896, 0.014420 ], [ 0.007896, 0.016179 ], [ 0.010514, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0078811", "Lat": "0.0126000", "KPI": 34, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.014420 ], [ 0.010514, 0.012617 ], [ 0.007896, 0.012617 ], [ 0.007896, 0.014420 ], [ 0.010514, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0078811", "Lat": "0.0108000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.012617 ], [ 0.010514, 0.010815 ], [ 0.007896, 0.010815 ], [ 0.007896, 0.012617 ], [ 0.010514, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0090000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.010815 ], [ 0.002618, 0.009012 ], [ 0.000000, 0.009012 ], [ 0.000000, 0.010815 ], [ 0.002618, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0000000", "Lat": "0.0072000", "KPI": 561, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.009012 ], [ 0.002618, 0.007210 ], [ 0.000000, 0.007210 ], [ 0.000000, 0.009012 ], [ 0.002618, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0054000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.007210 ], [ 0.002618, 0.005407 ], [ 0.000000, 0.005407 ], [ 0.000000, 0.007210 ], [ 0.002618, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0026270", "Lat": "0.0090000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.010815 ], [ 0.005236, 0.009012 ], [ 0.002618, 0.009012 ], [ 0.002618, 0.010815 ], [ 0.005236, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026270", "Lat": "0.0072000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.009012 ], [ 0.005236, 0.007210 ], [ 0.002618, 0.007210 ], [ 0.002618, 0.009012 ], [ 0.005236, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.007210 ], [ 0.005236, 0.005407 ], [ 0.002618, 0.005407 ], [ 0.002618, 0.007210 ], [ 0.005236, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0000000", "Lat": "0.0036000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.005407 ], [ 0.002618, 0.003605 ], [ 0.000000, 0.003605 ], [ 0.000000, 0.005407 ], [ 0.002618, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 853, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003605 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003605 ], [ 0.002618, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0026270", "Lat": "0.0036000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.005407 ], [ 0.005236, 0.003605 ], [ 0.002618, 0.003605 ], [ 0.002618, 0.005407 ], [ 0.005236, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.003605 ], [ 0.005236, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003605 ], [ 0.005236, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.001802 ], [ 0.005236, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.005236, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0052541", "Lat": "0.0090000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.010815 ], [ 0.007896, 0.009012 ], [ 0.005236, 0.009012 ], [ 0.005236, 0.010815 ], [ 0.007896, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0072000", "KPI": 633, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.009012 ], [ 0.007896, 0.007210 ], [ 0.005236, 0.007210 ], [ 0.005236, 0.009012 ], [ 0.007896, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.007210 ], [ 0.007896, 0.005407 ], [ 0.005236, 0.005407 ], [ 0.005236, 0.007210 ], [ 0.007896, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0078811", "Lat": "0.0090000", "KPI": 364, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.010815 ], [ 0.010514, 0.009012 ], [ 0.007896, 0.009012 ], [ 0.007896, 0.010815 ], [ 0.010514, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0072000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.009012 ], [ 0.010514, 0.007210 ], [ 0.007896, 0.007210 ], [ 0.007896, 0.009012 ], [ 0.010514, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0078811", "Lat": "0.0054000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.007210 ], [ 0.010514, 0.005407 ], [ 0.007896, 0.005407 ], [ 0.007896, 0.007210 ], [ 0.010514, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0036000", "KPI": 430, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.005407 ], [ 0.007896, 0.003605 ], [ 0.005236, 0.003605 ], [ 0.005236, 0.005407 ], [ 0.007896, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.003605 ], [ 0.007896, 0.001802 ], [ 0.005236, 0.001802 ], [ 0.005236, 0.003605 ], [ 0.007896, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.001802 ], [ 0.007896, 0.000000 ], [ 0.005236, 0.000000 ], [ 0.005236, 0.001802 ], [ 0.007896, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0078811", "Lat": "0.0036000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.005407 ], [ 0.010514, 0.003605 ], [ 0.007896, 0.003605 ], [ 0.007896, 0.005407 ], [ 0.010514, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0078811", "Lat": "0.0018000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.003605 ], [ 0.010514, 0.001802 ], [ 0.007896, 0.001802 ], [ 0.007896, 0.003605 ], [ 0.010514, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0078811", "Lat": "0.0000000", "KPI": 698, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.001802 ], [ 0.010514, 0.000000 ], [ 0.007896, 0.000000 ], [ 0.007896, 0.001802 ], [ 0.010514, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0105082", "Lat": "0.0198000", "KPI": 199, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.021586 ], [ 0.013132, 0.019784 ], [ 0.010514, 0.019784 ], [ 0.010514, 0.021586 ], [ 0.013132, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0105082", "Lat": "0.0180000", "KPI": 442, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.019784 ], [ 0.013132, 0.017982 ], [ 0.010514, 0.017982 ], [ 0.010514, 0.019784 ], [ 0.013132, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0162000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.017982 ], [ 0.013132, 0.016179 ], [ 0.010514, 0.016179 ], [ 0.010514, 0.017982 ], [ 0.013132, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0131352", "Lat": "0.0198000", "KPI": 674, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.021586 ], [ 0.015750, 0.019784 ], [ 0.013132, 0.019784 ], [ 0.013132, 0.021586 ], [ 0.015750, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0131352", "Lat": "0.0180000", "KPI": 495, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.019784 ], [ 0.015750, 0.017982 ], [ 0.013132, 0.017982 ], [ 0.013132, 0.019784 ], [ 0.015750, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0131352", "Lat": "0.0162000", "KPI": 312, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.017982 ], [ 0.015750, 0.016179 ], [ 0.013132, 0.016179 ], [ 0.013132, 0.017982 ], [ 0.015750, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0105082", "Lat": "0.0144000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.016179 ], [ 0.013132, 0.014420 ], [ 0.010514, 0.014420 ], [ 0.010514, 0.016179 ], [ 0.013132, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105082", "Lat": "0.0126000", "KPI": 991, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.014420 ], [ 0.013132, 0.012617 ], [ 0.010514, 0.012617 ], [ 0.010514, 0.014420 ], [ 0.013132, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.012617 ], [ 0.013132, 0.010815 ], [ 0.010514, 0.010815 ], [ 0.010514, 0.012617 ], [ 0.013132, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0131352", "Lat": "0.0144000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.016179 ], [ 0.015750, 0.014420 ], [ 0.013132, 0.014420 ], [ 0.013132, 0.016179 ], [ 0.015750, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0131352", "Lat": "0.0126000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.014420 ], [ 0.015750, 0.012617 ], [ 0.013132, 0.012617 ], [ 0.013132, 0.014420 ], [ 0.015750, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0131352", "Lat": "0.0108000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.012617 ], [ 0.015750, 0.010815 ], [ 0.013132, 0.010815 ], [ 0.013132, 0.012617 ], [ 0.015750, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0157622", "Lat": "0.0198000", "KPI": 542, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.021586 ], [ 0.018411, 0.019784 ], [ 0.015750, 0.019784 ], [ 0.015750, 0.021586 ], [ 0.018411, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0157622", "Lat": "0.0180000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.019784 ], [ 0.018411, 0.017982 ], [ 0.015750, 0.017982 ], [ 0.015750, 0.019784 ], [ 0.018411, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0162000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.017982 ], [ 0.018411, 0.016179 ], [ 0.015750, 0.016179 ], [ 0.015750, 0.017982 ], [ 0.018411, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0183893", "Lat": "0.0198000", "KPI": 443, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.021586 ], [ 0.021029, 0.019784 ], [ 0.018411, 0.019784 ], [ 0.018411, 0.021586 ], [ 0.021029, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183893", "Lat": "0.0180000", "KPI": 598, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.019784 ], [ 0.021029, 0.017982 ], [ 0.018411, 0.017982 ], [ 0.018411, 0.019784 ], [ 0.021029, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0183893", "Lat": "0.0162000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.017982 ], [ 0.021029, 0.016179 ], [ 0.018411, 0.016179 ], [ 0.018411, 0.017982 ], [ 0.021029, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0157622", "Lat": "0.0144000", "KPI": 132, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.016179 ], [ 0.018411, 0.014420 ], [ 0.015750, 0.014420 ], [ 0.015750, 0.016179 ], [ 0.018411, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0126000", "KPI": 233, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.014420 ], [ 0.018411, 0.012617 ], [ 0.015750, 0.012617 ], [ 0.015750, 0.014420 ], [ 0.018411, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0157622", "Lat": "0.0108000", "KPI": 980, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.012617 ], [ 0.018411, 0.010815 ], [ 0.015750, 0.010815 ], [ 0.015750, 0.012617 ], [ 0.018411, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0183893", "Lat": "0.0144000", "KPI": 999, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.016179 ], [ 0.021029, 0.014420 ], [ 0.018411, 0.014420 ], [ 0.018411, 0.016179 ], [ 0.021029, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0126000", "KPI": 210, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.014420 ], [ 0.021029, 0.012617 ], [ 0.018411, 0.012617 ], [ 0.018411, 0.014420 ], [ 0.021029, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0183893", "Lat": "0.0108000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.012617 ], [ 0.021029, 0.010815 ], [ 0.018411, 0.010815 ], [ 0.018411, 0.012617 ], [ 0.021029, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0105082", "Lat": "0.0090000", "KPI": 218, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.010815 ], [ 0.013132, 0.009012 ], [ 0.010514, 0.009012 ], [ 0.010514, 0.010815 ], [ 0.013132, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0105082", "Lat": "0.0072000", "KPI": 494, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.009012 ], [ 0.013132, 0.007210 ], [ 0.010514, 0.007210 ], [ 0.010514, 0.009012 ], [ 0.013132, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.007210 ], [ 0.013132, 0.005407 ], [ 0.010514, 0.005407 ], [ 0.010514, 0.007210 ], [ 0.013132, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131352", "Lat": "0.0090000", "KPI": 211, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.010815 ], [ 0.015750, 0.009012 ], [ 0.013132, 0.009012 ], [ 0.013132, 0.010815 ], [ 0.015750, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0131352", "Lat": "0.0072000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.009012 ], [ 0.015750, 0.007210 ], [ 0.013132, 0.007210 ], [ 0.013132, 0.009012 ], [ 0.015750, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131352", "Lat": "0.0054000", "KPI": 265, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.007210 ], [ 0.015750, 0.005407 ], [ 0.013132, 0.005407 ], [ 0.013132, 0.007210 ], [ 0.015750, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0105082", "Lat": "0.0036000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.005407 ], [ 0.013132, 0.003605 ], [ 0.010514, 0.003605 ], [ 0.010514, 0.005407 ], [ 0.013132, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105082", "Lat": "0.0018000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.003605 ], [ 0.013132, 0.001802 ], [ 0.010514, 0.001802 ], [ 0.010514, 0.003605 ], [ 0.013132, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.001802 ], [ 0.013132, 0.000000 ], [ 0.010514, 0.000000 ], [ 0.010514, 0.001802 ], [ 0.013132, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0131352", "Lat": "0.0036000", "KPI": 346, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.005407 ], [ 0.015750, 0.003605 ], [ 0.013132, 0.003605 ], [ 0.013132, 0.005407 ], [ 0.015750, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131352", "Lat": "0.0018000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.003605 ], [ 0.015750, 0.001802 ], [ 0.013132, 0.001802 ], [ 0.013132, 0.003605 ], [ 0.015750, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131352", "Lat": "0.0000000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.001802 ], [ 0.015750, 0.000000 ], [ 0.013132, 0.000000 ], [ 0.013132, 0.001802 ], [ 0.015750, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0157622", "Lat": "0.0090000", "KPI": 530, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.010815 ], [ 0.018411, 0.009012 ], [ 0.015750, 0.009012 ], [ 0.015750, 0.010815 ], [ 0.018411, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0157622", "Lat": "0.0072000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.009012 ], [ 0.018411, 0.007210 ], [ 0.015750, 0.007210 ], [ 0.015750, 0.009012 ], [ 0.018411, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.007210 ], [ 0.018411, 0.005407 ], [ 0.015750, 0.005407 ], [ 0.015750, 0.007210 ], [ 0.018411, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183893", "Lat": "0.0090000", "KPI": 599, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.010815 ], [ 0.021029, 0.009012 ], [ 0.018411, 0.009012 ], [ 0.018411, 0.010815 ], [ 0.021029, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0183893", "Lat": "0.0072000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.009012 ], [ 0.021029, 0.007210 ], [ 0.018411, 0.007210 ], [ 0.018411, 0.009012 ], [ 0.021029, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0054000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.007210 ], [ 0.021029, 0.005407 ], [ 0.018411, 0.005407 ], [ 0.018411, 0.007210 ], [ 0.021029, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0157622", "Lat": "0.0036000", "KPI": 507, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.005407 ], [ 0.018411, 0.003605 ], [ 0.015750, 0.003605 ], [ 0.015750, 0.005407 ], [ 0.018411, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157622", "Lat": "0.0018000", "KPI": 932, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.003605 ], [ 0.018411, 0.001802 ], [ 0.015750, 0.001802 ], [ 0.015750, 0.003605 ], [ 0.018411, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.001802 ], [ 0.018411, 0.000000 ], [ 0.015750, 0.000000 ], [ 0.015750, 0.001802 ], [ 0.018411, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0183893", "Lat": "0.0036000", "KPI": 403, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.005407 ], [ 0.021029, 0.003605 ], [ 0.018411, 0.003605 ], [ 0.018411, 0.005407 ], [ 0.021029, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0018000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.003605 ], [ 0.021029, 0.001802 ], [ 0.018411, 0.001802 ], [ 0.018411, 0.003605 ], [ 0.021029, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183893", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.001802 ], [ 0.021029, 0.000000 ], [ 0.018411, 0.000000 ], [ 0.018411, 0.001802 ], [ 0.021029, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0210163", "Lat": "0.0414000", "KPI": 807, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.043216 ], [ 0.023646, 0.041413 ], [ 0.021029, 0.041413 ], [ 0.021029, 0.043216 ], [ 0.023646, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0210163", "Lat": "0.0396000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.041413 ], [ 0.023646, 0.039611 ], [ 0.021029, 0.039611 ], [ 0.021029, 0.041413 ], [ 0.023646, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0210163", "Lat": "0.0378000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.039611 ], [ 0.023646, 0.037808 ], [ 0.021029, 0.037808 ], [ 0.021029, 0.039611 ], [ 0.023646, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0236434", "Lat": "0.0414000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.043216 ], [ 0.026264, 0.041413 ], [ 0.023646, 0.041413 ], [ 0.023646, 0.043216 ], [ 0.026264, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0236434", "Lat": "0.0396000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.041413 ], [ 0.026264, 0.039611 ], [ 0.023646, 0.039611 ], [ 0.023646, 0.041413 ], [ 0.026264, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0236434", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.039611 ], [ 0.026264, 0.037808 ], [ 0.023646, 0.037808 ], [ 0.023646, 0.039611 ], [ 0.026264, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0210163", "Lat": "0.0360000", "KPI": 249, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.037808 ], [ 0.023646, 0.036006 ], [ 0.021029, 0.036006 ], [ 0.021029, 0.037808 ], [ 0.023646, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210163", "Lat": "0.0342000", "KPI": 430, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.036006 ], [ 0.023646, 0.034204 ], [ 0.021029, 0.034204 ], [ 0.021029, 0.036006 ], [ 0.023646, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.034204 ], [ 0.023646, 0.032401 ], [ 0.021029, 0.032401 ], [ 0.021029, 0.034204 ], [ 0.023646, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0236434", "Lat": "0.0360000", "KPI": 956, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.037808 ], [ 0.026264, 0.036006 ], [ 0.023646, 0.036006 ], [ 0.023646, 0.037808 ], [ 0.026264, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0236434", "Lat": "0.0342000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.036006 ], [ 0.026264, 0.034204 ], [ 0.023646, 0.034204 ], [ 0.023646, 0.036006 ], [ 0.026264, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0236434", "Lat": "0.0324000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.034204 ], [ 0.026264, 0.032401 ], [ 0.023646, 0.032401 ], [ 0.023646, 0.034204 ], [ 0.026264, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0262704", "Lat": "0.0414000", "KPI": 983, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.043216 ], [ 0.028882, 0.041413 ], [ 0.026264, 0.041413 ], [ 0.026264, 0.043216 ], [ 0.028882, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0288974", "Lat": "0.0414000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.043216 ], [ 0.031543, 0.041413 ], [ 0.028882, 0.041413 ], [ 0.028882, 0.043216 ], [ 0.031543, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0262704", "Lat": "0.0396000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.041413 ], [ 0.028882, 0.039611 ], [ 0.026264, 0.039611 ], [ 0.026264, 0.041413 ], [ 0.028882, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262704", "Lat": "0.0378000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.039611 ], [ 0.028882, 0.037808 ], [ 0.026264, 0.037808 ], [ 0.026264, 0.039611 ], [ 0.028882, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0288974", "Lat": "0.0396000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.041413 ], [ 0.031543, 0.039611 ], [ 0.028882, 0.039611 ], [ 0.028882, 0.041413 ], [ 0.031543, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0288974", "Lat": "0.0378000", "KPI": 130, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.039611 ], [ 0.031543, 0.037808 ], [ 0.028882, 0.037808 ], [ 0.028882, 0.039611 ], [ 0.031543, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0414000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.043216 ], [ 0.034161, 0.041413 ], [ 0.031543, 0.041413 ], [ 0.031543, 0.043216 ], [ 0.034161, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0315245", "Lat": "0.0396000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.041413 ], [ 0.034161, 0.039611 ], [ 0.031543, 0.039611 ], [ 0.031543, 0.041413 ], [ 0.034161, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0315245", "Lat": "0.0378000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.039611 ], [ 0.034161, 0.037808 ], [ 0.031543, 0.037808 ], [ 0.031543, 0.039611 ], [ 0.034161, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0262704", "Lat": "0.0360000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.037808 ], [ 0.028882, 0.036006 ], [ 0.026264, 0.036006 ], [ 0.026264, 0.037808 ], [ 0.028882, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0288974", "Lat": "0.0360000", "KPI": 218, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.037808 ], [ 0.031543, 0.036006 ], [ 0.028882, 0.036006 ], [ 0.028882, 0.037808 ], [ 0.031543, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0262704", "Lat": "0.0342000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.036006 ], [ 0.028882, 0.034204 ], [ 0.026264, 0.034204 ], [ 0.026264, 0.036006 ], [ 0.028882, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0324000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.034204 ], [ 0.028882, 0.032401 ], [ 0.026264, 0.032401 ], [ 0.026264, 0.034204 ], [ 0.028882, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0288974", "Lat": "0.0342000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.036006 ], [ 0.031543, 0.034204 ], [ 0.028882, 0.034204 ], [ 0.028882, 0.036006 ], [ 0.031543, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0288974", "Lat": "0.0324000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.034204 ], [ 0.031543, 0.032401 ], [ 0.028882, 0.032401 ], [ 0.028882, 0.034204 ], [ 0.031543, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0315245", "Lat": "0.0360000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.037808 ], [ 0.034161, 0.036006 ], [ 0.031543, 0.036006 ], [ 0.031543, 0.037808 ], [ 0.034161, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0315245", "Lat": "0.0342000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.036006 ], [ 0.034161, 0.034204 ], [ 0.031543, 0.034204 ], [ 0.031543, 0.036006 ], [ 0.034161, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0315245", "Lat": "0.0324000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.034204 ], [ 0.034161, 0.032401 ], [ 0.031543, 0.032401 ], [ 0.031543, 0.034204 ], [ 0.034161, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0210163", "Lat": "0.0306000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.032401 ], [ 0.023646, 0.030599 ], [ 0.021029, 0.030599 ], [ 0.021029, 0.032401 ], [ 0.023646, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0210163", "Lat": "0.0288000", "KPI": 273, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.030599 ], [ 0.023646, 0.028796 ], [ 0.021029, 0.028796 ], [ 0.021029, 0.030599 ], [ 0.023646, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0210163", "Lat": "0.0270000", "KPI": 513, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.028796 ], [ 0.023646, 0.026994 ], [ 0.021029, 0.026994 ], [ 0.021029, 0.028796 ], [ 0.023646, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0236434", "Lat": "0.0306000", "KPI": 656, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.032401 ], [ 0.026264, 0.030599 ], [ 0.023646, 0.030599 ], [ 0.023646, 0.032401 ], [ 0.026264, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0236434", "Lat": "0.0288000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.030599 ], [ 0.026264, 0.028796 ], [ 0.023646, 0.028796 ], [ 0.023646, 0.030599 ], [ 0.026264, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236434", "Lat": "0.0270000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.028796 ], [ 0.026264, 0.026994 ], [ 0.023646, 0.026994 ], [ 0.023646, 0.028796 ], [ 0.026264, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0210163", "Lat": "0.0252000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.026994 ], [ 0.023646, 0.025191 ], [ 0.021029, 0.025191 ], [ 0.021029, 0.026994 ], [ 0.023646, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210163", "Lat": "0.0234000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.025191 ], [ 0.023646, 0.023389 ], [ 0.021029, 0.023389 ], [ 0.021029, 0.025191 ], [ 0.023646, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.023389 ], [ 0.023646, 0.021586 ], [ 0.021029, 0.021586 ], [ 0.021029, 0.023389 ], [ 0.023646, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0236434", "Lat": "0.0252000", "KPI": 148, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.026994 ], [ 0.026264, 0.025191 ], [ 0.023646, 0.025191 ], [ 0.023646, 0.026994 ], [ 0.026264, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0236434", "Lat": "0.0234000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.025191 ], [ 0.026264, 0.023389 ], [ 0.023646, 0.023389 ], [ 0.023646, 0.025191 ], [ 0.026264, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0236434", "Lat": "0.0216000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.023389 ], [ 0.026264, 0.021586 ], [ 0.023646, 0.021586 ], [ 0.023646, 0.023389 ], [ 0.026264, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0262704", "Lat": "0.0306000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.032401 ], [ 0.028882, 0.030599 ], [ 0.026264, 0.030599 ], [ 0.026264, 0.032401 ], [ 0.028882, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0288974", "Lat": "0.0306000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.032401 ], [ 0.031543, 0.030599 ], [ 0.028882, 0.030599 ], [ 0.028882, 0.032401 ], [ 0.031543, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0262704", "Lat": "0.0288000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.030599 ], [ 0.028882, 0.028796 ], [ 0.026264, 0.028796 ], [ 0.026264, 0.030599 ], [ 0.028882, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0262704", "Lat": "0.0270000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.028796 ], [ 0.028882, 0.026994 ], [ 0.026264, 0.026994 ], [ 0.026264, 0.028796 ], [ 0.028882, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0288974", "Lat": "0.0288000", "KPI": 35, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.030599 ], [ 0.031543, 0.028796 ], [ 0.028882, 0.028796 ], [ 0.028882, 0.030599 ], [ 0.031543, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0288974", "Lat": "0.0270000", "KPI": 313, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.028796 ], [ 0.031543, 0.026994 ], [ 0.028882, 0.026994 ], [ 0.028882, 0.028796 ], [ 0.031543, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0315245", "Lat": "0.0306000", "KPI": 247, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.032401 ], [ 0.034161, 0.030599 ], [ 0.031543, 0.030599 ], [ 0.031543, 0.032401 ], [ 0.034161, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0315245", "Lat": "0.0288000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.030599 ], [ 0.034161, 0.028796 ], [ 0.031543, 0.028796 ], [ 0.031543, 0.030599 ], [ 0.034161, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0315245", "Lat": "0.0270000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.028796 ], [ 0.034161, 0.026994 ], [ 0.031543, 0.026994 ], [ 0.031543, 0.028796 ], [ 0.034161, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0262704", "Lat": "0.0252000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.026994 ], [ 0.028882, 0.025191 ], [ 0.026264, 0.025191 ], [ 0.026264, 0.026994 ], [ 0.028882, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0288974", "Lat": "0.0252000", "KPI": 145, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.026994 ], [ 0.031543, 0.025191 ], [ 0.028882, 0.025191 ], [ 0.028882, 0.026994 ], [ 0.031543, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0262704", "Lat": "0.0234000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.025191 ], [ 0.028882, 0.023389 ], [ 0.026264, 0.023389 ], [ 0.026264, 0.025191 ], [ 0.028882, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262704", "Lat": "0.0216000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.023389 ], [ 0.028882, 0.021586 ], [ 0.026264, 0.021586 ], [ 0.026264, 0.023389 ], [ 0.028882, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0288974", "Lat": "0.0234000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.025191 ], [ 0.031543, 0.023389 ], [ 0.028882, 0.023389 ], [ 0.028882, 0.025191 ], [ 0.031543, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0288974", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.023389 ], [ 0.031543, 0.021586 ], [ 0.028882, 0.021586 ], [ 0.028882, 0.023389 ], [ 0.031543, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0315245", "Lat": "0.0252000", "KPI": 24, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.026994 ], [ 0.034161, 0.025191 ], [ 0.031543, 0.025191 ], [ 0.031543, 0.026994 ], [ 0.034161, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0315245", "Lat": "0.0234000", "KPI": 411, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.025191 ], [ 0.034161, 0.023389 ], [ 0.031543, 0.023389 ], [ 0.031543, 0.025191 ], [ 0.034161, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.023389 ], [ 0.034161, 0.021586 ], [ 0.031543, 0.021586 ], [ 0.031543, 0.023389 ], [ 0.034161, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0341515", "Lat": "0.0414000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.043216 ], [ 0.036778, 0.041413 ], [ 0.034161, 0.041413 ], [ 0.034161, 0.043216 ], [ 0.036778, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0341515", "Lat": "0.0396000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.041413 ], [ 0.036778, 0.039611 ], [ 0.034161, 0.039611 ], [ 0.034161, 0.041413 ], [ 0.036778, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341515", "Lat": "0.0378000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.039611 ], [ 0.036778, 0.037808 ], [ 0.034161, 0.037808 ], [ 0.034161, 0.039611 ], [ 0.036778, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0367786", "Lat": "0.0414000", "KPI": 50, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.043216 ], [ 0.039396, 0.041413 ], [ 0.036778, 0.041413 ], [ 0.036778, 0.043216 ], [ 0.039396, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367786", "Lat": "0.0396000", "KPI": 296, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.041413 ], [ 0.039396, 0.039611 ], [ 0.036778, 0.039611 ], [ 0.036778, 0.041413 ], [ 0.039396, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0367786", "Lat": "0.0378000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.039611 ], [ 0.039396, 0.037808 ], [ 0.036778, 0.037808 ], [ 0.036778, 0.039611 ], [ 0.039396, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341515", "Lat": "0.0360000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.037808 ], [ 0.036778, 0.036006 ], [ 0.034161, 0.036006 ], [ 0.034161, 0.037808 ], [ 0.036778, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0341515", "Lat": "0.0342000", "KPI": 564, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.036006 ], [ 0.036778, 0.034204 ], [ 0.034161, 0.034204 ], [ 0.034161, 0.036006 ], [ 0.036778, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0341515", "Lat": "0.0324000", "KPI": 217, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.034204 ], [ 0.036778, 0.032401 ], [ 0.034161, 0.032401 ], [ 0.034161, 0.034204 ], [ 0.036778, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0367786", "Lat": "0.0360000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.037808 ], [ 0.039396, 0.036006 ], [ 0.036778, 0.036006 ], [ 0.036778, 0.037808 ], [ 0.039396, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0367786", "Lat": "0.0342000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.036006 ], [ 0.039396, 0.034204 ], [ 0.036778, 0.034204 ], [ 0.036778, 0.036006 ], [ 0.039396, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0367786", "Lat": "0.0324000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.034204 ], [ 0.039396, 0.032401 ], [ 0.036778, 0.032401 ], [ 0.036778, 0.034204 ], [ 0.039396, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0394056", "Lat": "0.0414000", "KPI": 587, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.043216 ], [ 0.042014, 0.041413 ], [ 0.039396, 0.041413 ], [ 0.039396, 0.043216 ], [ 0.042014, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0396000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.041413 ], [ 0.042014, 0.039611 ], [ 0.039396, 0.039611 ], [ 0.039396, 0.041413 ], [ 0.042014, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0378000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.039611 ], [ 0.042014, 0.037808 ], [ 0.039396, 0.037808 ], [ 0.039396, 0.039611 ], [ 0.042014, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0420326", "Lat": "0.0414000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.043216 ], [ 0.044675, 0.041413 ], [ 0.042014, 0.041413 ], [ 0.042014, 0.043216 ], [ 0.044675, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0420326", "Lat": "0.0396000", "KPI": 465, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.041413 ], [ 0.044675, 0.039611 ], [ 0.042014, 0.039611 ], [ 0.042014, 0.041413 ], [ 0.044675, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0420326", "Lat": "0.0378000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.039611 ], [ 0.044675, 0.037808 ], [ 0.042014, 0.037808 ], [ 0.042014, 0.039611 ], [ 0.044675, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0394056", "Lat": "0.0360000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.037808 ], [ 0.042014, 0.036006 ], [ 0.039396, 0.036006 ], [ 0.039396, 0.037808 ], [ 0.042014, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0342000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.036006 ], [ 0.042014, 0.034204 ], [ 0.039396, 0.034204 ], [ 0.039396, 0.036006 ], [ 0.042014, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0394056", "Lat": "0.0324000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.034204 ], [ 0.042014, 0.032401 ], [ 0.039396, 0.032401 ], [ 0.039396, 0.034204 ], [ 0.042014, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0420326", "Lat": "0.0360000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.037808 ], [ 0.044675, 0.036006 ], [ 0.042014, 0.036006 ], [ 0.042014, 0.037808 ], [ 0.044675, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0420326", "Lat": "0.0342000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.036006 ], [ 0.044675, 0.034204 ], [ 0.042014, 0.034204 ], [ 0.042014, 0.036006 ], [ 0.044675, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0420326", "Lat": "0.0324000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.034204 ], [ 0.044675, 0.032401 ], [ 0.042014, 0.032401 ], [ 0.042014, 0.034204 ], [ 0.044675, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0341515", "Lat": "0.0306000", "KPI": 607, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.032401 ], [ 0.036778, 0.030599 ], [ 0.034161, 0.030599 ], [ 0.034161, 0.032401 ], [ 0.036778, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0341515", "Lat": "0.0288000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.030599 ], [ 0.036778, 0.028796 ], [ 0.034161, 0.028796 ], [ 0.034161, 0.030599 ], [ 0.036778, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0341515", "Lat": "0.0270000", "KPI": 501, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.028796 ], [ 0.036778, 0.026994 ], [ 0.034161, 0.026994 ], [ 0.034161, 0.028796 ], [ 0.036778, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0367786", "Lat": "0.0306000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.032401 ], [ 0.039396, 0.030599 ], [ 0.036778, 0.030599 ], [ 0.036778, 0.032401 ], [ 0.039396, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0367786", "Lat": "0.0288000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.030599 ], [ 0.039396, 0.028796 ], [ 0.036778, 0.028796 ], [ 0.036778, 0.030599 ], [ 0.039396, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0367786", "Lat": "0.0270000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.028796 ], [ 0.039396, 0.026994 ], [ 0.036778, 0.026994 ], [ 0.036778, 0.028796 ], [ 0.039396, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0341515", "Lat": "0.0252000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.026994 ], [ 0.036778, 0.025191 ], [ 0.034161, 0.025191 ], [ 0.034161, 0.026994 ], [ 0.036778, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0341515", "Lat": "0.0234000", "KPI": 483, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.025191 ], [ 0.036778, 0.023389 ], [ 0.034161, 0.023389 ], [ 0.034161, 0.025191 ], [ 0.036778, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0341515", "Lat": "0.0216000", "KPI": 736, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.023389 ], [ 0.036778, 0.021586 ], [ 0.034161, 0.021586 ], [ 0.034161, 0.023389 ], [ 0.036778, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0367786", "Lat": "0.0252000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.026994 ], [ 0.039396, 0.025191 ], [ 0.036778, 0.025191 ], [ 0.036778, 0.026994 ], [ 0.039396, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0367786", "Lat": "0.0234000", "KPI": 909, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.025191 ], [ 0.039396, 0.023389 ], [ 0.036778, 0.023389 ], [ 0.036778, 0.025191 ], [ 0.039396, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0367786", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.023389 ], [ 0.039396, 0.021586 ], [ 0.036778, 0.021586 ], [ 0.036778, 0.023389 ], [ 0.039396, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0394056", "Lat": "0.0306000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.032401 ], [ 0.042014, 0.030599 ], [ 0.039396, 0.030599 ], [ 0.039396, 0.032401 ], [ 0.042014, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0288000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.030599 ], [ 0.042014, 0.028796 ], [ 0.039396, 0.028796 ], [ 0.039396, 0.030599 ], [ 0.042014, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0394056", "Lat": "0.0270000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.028796 ], [ 0.042014, 0.026994 ], [ 0.039396, 0.026994 ], [ 0.039396, 0.028796 ], [ 0.042014, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0420326", "Lat": "0.0306000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.032401 ], [ 0.044675, 0.030599 ], [ 0.042014, 0.030599 ], [ 0.042014, 0.032401 ], [ 0.044675, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420326", "Lat": "0.0288000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.030599 ], [ 0.044675, 0.028796 ], [ 0.042014, 0.028796 ], [ 0.042014, 0.030599 ], [ 0.044675, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0270000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.028796 ], [ 0.044675, 0.026994 ], [ 0.042014, 0.026994 ], [ 0.042014, 0.028796 ], [ 0.044675, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0394056", "Lat": "0.0252000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.026994 ], [ 0.042014, 0.025191 ], [ 0.039396, 0.025191 ], [ 0.039396, 0.026994 ], [ 0.042014, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394056", "Lat": "0.0234000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.025191 ], [ 0.042014, 0.023389 ], [ 0.039396, 0.023389 ], [ 0.039396, 0.025191 ], [ 0.042014, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0394056", "Lat": "0.0216000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.023389 ], [ 0.042014, 0.021586 ], [ 0.039396, 0.021586 ], [ 0.039396, 0.023389 ], [ 0.042014, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0420326", "Lat": "0.0252000", "KPI": 378, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.026994 ], [ 0.044675, 0.025191 ], [ 0.042014, 0.025191 ], [ 0.042014, 0.026994 ], [ 0.044675, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0420326", "Lat": "0.0234000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.025191 ], [ 0.044675, 0.023389 ], [ 0.042014, 0.023389 ], [ 0.042014, 0.025191 ], [ 0.044675, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.023389 ], [ 0.044675, 0.021586 ], [ 0.042014, 0.021586 ], [ 0.042014, 0.023389 ], [ 0.044675, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210163", "Lat": "0.0198000", "KPI": 103, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.021586 ], [ 0.023646, 0.019784 ], [ 0.021029, 0.019784 ], [ 0.021029, 0.021586 ], [ 0.023646, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210163", "Lat": "0.0180000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.019784 ], [ 0.023646, 0.017982 ], [ 0.021029, 0.017982 ], [ 0.021029, 0.019784 ], [ 0.023646, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210163", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.017982 ], [ 0.023646, 0.016179 ], [ 0.021029, 0.016179 ], [ 0.021029, 0.017982 ], [ 0.023646, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0236434", "Lat": "0.0198000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.021586 ], [ 0.026264, 0.019784 ], [ 0.023646, 0.019784 ], [ 0.023646, 0.021586 ], [ 0.026264, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0236434", "Lat": "0.0180000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.019784 ], [ 0.026264, 0.017982 ], [ 0.023646, 0.017982 ], [ 0.023646, 0.019784 ], [ 0.026264, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0162000", "KPI": 188, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.017982 ], [ 0.026264, 0.016179 ], [ 0.023646, 0.016179 ], [ 0.023646, 0.017982 ], [ 0.026264, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0210163", "Lat": "0.0144000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.016179 ], [ 0.023646, 0.014420 ], [ 0.021029, 0.014420 ], [ 0.021029, 0.016179 ], [ 0.023646, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210163", "Lat": "0.0126000", "KPI": 603, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.014420 ], [ 0.023646, 0.012617 ], [ 0.021029, 0.012617 ], [ 0.021029, 0.014420 ], [ 0.023646, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.012617 ], [ 0.023646, 0.010815 ], [ 0.021029, 0.010815 ], [ 0.021029, 0.012617 ], [ 0.023646, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0236434", "Lat": "0.0144000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.016179 ], [ 0.026264, 0.014420 ], [ 0.023646, 0.014420 ], [ 0.023646, 0.016179 ], [ 0.026264, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0236434", "Lat": "0.0126000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.014420 ], [ 0.026264, 0.012617 ], [ 0.023646, 0.012617 ], [ 0.023646, 0.014420 ], [ 0.026264, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236434", "Lat": "0.0108000", "KPI": 968, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.012617 ], [ 0.026264, 0.010815 ], [ 0.023646, 0.010815 ], [ 0.023646, 0.012617 ], [ 0.026264, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262704", "Lat": "0.0198000", "KPI": 207, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.021586 ], [ 0.028882, 0.019784 ], [ 0.026264, 0.019784 ], [ 0.026264, 0.021586 ], [ 0.028882, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0288974", "Lat": "0.0198000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.021586 ], [ 0.031543, 0.019784 ], [ 0.028882, 0.019784 ], [ 0.028882, 0.021586 ], [ 0.031543, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0262704", "Lat": "0.0180000", "KPI": 324, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.019784 ], [ 0.028882, 0.017982 ], [ 0.026264, 0.017982 ], [ 0.026264, 0.019784 ], [ 0.028882, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0262704", "Lat": "0.0162000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.017982 ], [ 0.028882, 0.016179 ], [ 0.026264, 0.016179 ], [ 0.026264, 0.017982 ], [ 0.028882, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0288974", "Lat": "0.0180000", "KPI": 988, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.019784 ], [ 0.031543, 0.017982 ], [ 0.028882, 0.017982 ], [ 0.028882, 0.019784 ], [ 0.031543, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0288974", "Lat": "0.0162000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.017982 ], [ 0.031543, 0.016179 ], [ 0.028882, 0.016179 ], [ 0.028882, 0.017982 ], [ 0.031543, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0198000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.021586 ], [ 0.034161, 0.019784 ], [ 0.031543, 0.019784 ], [ 0.031543, 0.021586 ], [ 0.034161, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0315245", "Lat": "0.0180000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.019784 ], [ 0.034161, 0.017982 ], [ 0.031543, 0.017982 ], [ 0.031543, 0.019784 ], [ 0.034161, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0315245", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.017982 ], [ 0.034161, 0.016179 ], [ 0.031543, 0.016179 ], [ 0.031543, 0.017982 ], [ 0.034161, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0262704", "Lat": "0.0144000", "KPI": 902, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.016179 ], [ 0.028882, 0.014420 ], [ 0.026264, 0.014420 ], [ 0.026264, 0.016179 ], [ 0.028882, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0288974", "Lat": "0.0144000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.016179 ], [ 0.031543, 0.014420 ], [ 0.028882, 0.014420 ], [ 0.028882, 0.016179 ], [ 0.031543, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0262704", "Lat": "0.0126000", "KPI": 218, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.014420 ], [ 0.028882, 0.012617 ], [ 0.026264, 0.012617 ], [ 0.026264, 0.014420 ], [ 0.028882, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262704", "Lat": "0.0108000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.012617 ], [ 0.028882, 0.010815 ], [ 0.026264, 0.010815 ], [ 0.026264, 0.012617 ], [ 0.028882, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0288974", "Lat": "0.0126000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.014420 ], [ 0.031543, 0.012617 ], [ 0.028882, 0.012617 ], [ 0.028882, 0.014420 ], [ 0.031543, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0288974", "Lat": "0.0108000", "KPI": 863, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.012617 ], [ 0.031543, 0.010815 ], [ 0.028882, 0.010815 ], [ 0.028882, 0.012617 ], [ 0.031543, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315245", "Lat": "0.0144000", "KPI": 100, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.016179 ], [ 0.034161, 0.014420 ], [ 0.031543, 0.014420 ], [ 0.031543, 0.016179 ], [ 0.034161, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0126000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.014420 ], [ 0.034161, 0.012617 ], [ 0.031543, 0.012617 ], [ 0.031543, 0.014420 ], [ 0.034161, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.012617 ], [ 0.034161, 0.010815 ], [ 0.031543, 0.010815 ], [ 0.031543, 0.012617 ], [ 0.034161, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0210163", "Lat": "0.0090000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.010815 ], [ 0.023646, 0.009012 ], [ 0.021029, 0.009012 ], [ 0.021029, 0.010815 ], [ 0.023646, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0210163", "Lat": "0.0072000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.009012 ], [ 0.023646, 0.007210 ], [ 0.021029, 0.007210 ], [ 0.021029, 0.009012 ], [ 0.023646, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.007210 ], [ 0.023646, 0.005407 ], [ 0.021029, 0.005407 ], [ 0.021029, 0.007210 ], [ 0.023646, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0236434", "Lat": "0.0090000", "KPI": 48, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.010815 ], [ 0.026264, 0.009012 ], [ 0.023646, 0.009012 ], [ 0.023646, 0.010815 ], [ 0.026264, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0236434", "Lat": "0.0072000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.009012 ], [ 0.026264, 0.007210 ], [ 0.023646, 0.007210 ], [ 0.023646, 0.009012 ], [ 0.026264, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0236434", "Lat": "0.0054000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.007210 ], [ 0.026264, 0.005407 ], [ 0.023646, 0.005407 ], [ 0.023646, 0.007210 ], [ 0.026264, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0210163", "Lat": "0.0036000", "KPI": 884, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.005407 ], [ 0.023646, 0.003605 ], [ 0.021029, 0.003605 ], [ 0.021029, 0.005407 ], [ 0.023646, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210163", "Lat": "0.0018000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.003605 ], [ 0.023646, 0.001802 ], [ 0.021029, 0.001802 ], [ 0.021029, 0.003605 ], [ 0.023646, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.001802 ], [ 0.023646, 0.000000 ], [ 0.021029, 0.000000 ], [ 0.021029, 0.001802 ], [ 0.023646, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0236434", "Lat": "0.0036000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.005407 ], [ 0.026264, 0.003605 ], [ 0.023646, 0.003605 ], [ 0.023646, 0.005407 ], [ 0.026264, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236434", "Lat": "0.0018000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.003605 ], [ 0.026264, 0.001802 ], [ 0.023646, 0.001802 ], [ 0.023646, 0.003605 ], [ 0.026264, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0000000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.001802 ], [ 0.026264, 0.000000 ], [ 0.023646, 0.000000 ], [ 0.023646, 0.001802 ], [ 0.026264, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0262704", "Lat": "0.0090000", "KPI": 231, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.010815 ], [ 0.028882, 0.009012 ], [ 0.026264, 0.009012 ], [ 0.026264, 0.010815 ], [ 0.028882, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0288974", "Lat": "0.0090000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.010815 ], [ 0.031543, 0.009012 ], [ 0.028882, 0.009012 ], [ 0.028882, 0.010815 ], [ 0.031543, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0262704", "Lat": "0.0072000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.009012 ], [ 0.028882, 0.007210 ], [ 0.026264, 0.007210 ], [ 0.026264, 0.009012 ], [ 0.028882, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.007210 ], [ 0.028882, 0.005407 ], [ 0.026264, 0.005407 ], [ 0.026264, 0.007210 ], [ 0.028882, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0288974", "Lat": "0.0072000", "KPI": 815, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.009012 ], [ 0.031543, 0.007210 ], [ 0.028882, 0.007210 ], [ 0.028882, 0.009012 ], [ 0.031543, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0288974", "Lat": "0.0054000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.007210 ], [ 0.031543, 0.005407 ], [ 0.028882, 0.005407 ], [ 0.028882, 0.007210 ], [ 0.031543, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0090000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.010815 ], [ 0.034161, 0.009012 ], [ 0.031543, 0.009012 ], [ 0.031543, 0.010815 ], [ 0.034161, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0315245", "Lat": "0.0072000", "KPI": 707, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.009012 ], [ 0.034161, 0.007210 ], [ 0.031543, 0.007210 ], [ 0.031543, 0.009012 ], [ 0.034161, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.007210 ], [ 0.034161, 0.005407 ], [ 0.031543, 0.005407 ], [ 0.031543, 0.007210 ], [ 0.034161, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0262704", "Lat": "0.0036000", "KPI": 459, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.005407 ], [ 0.028882, 0.003605 ], [ 0.026264, 0.003605 ], [ 0.026264, 0.005407 ], [ 0.028882, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0288974", "Lat": "0.0036000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.005407 ], [ 0.031543, 0.003605 ], [ 0.028882, 0.003605 ], [ 0.028882, 0.005407 ], [ 0.031543, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262704", "Lat": "0.0018000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.003605 ], [ 0.028882, 0.001802 ], [ 0.026264, 0.001802 ], [ 0.026264, 0.003605 ], [ 0.028882, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.001802 ], [ 0.028882, 0.000000 ], [ 0.026264, 0.000000 ], [ 0.026264, 0.001802 ], [ 0.028882, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0288974", "Lat": "0.0018000", "KPI": 53, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.003605 ], [ 0.031543, 0.001802 ], [ 0.028882, 0.001802 ], [ 0.028882, 0.003605 ], [ 0.031543, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0288974", "Lat": "0.0000000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.001802 ], [ 0.031543, 0.000000 ], [ 0.028882, 0.000000 ], [ 0.028882, 0.001802 ], [ 0.031543, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0315245", "Lat": "0.0036000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.005407 ], [ 0.034161, 0.003605 ], [ 0.031543, 0.003605 ], [ 0.031543, 0.005407 ], [ 0.034161, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0315245", "Lat": "0.0018000", "KPI": 992, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.003605 ], [ 0.034161, 0.001802 ], [ 0.031543, 0.001802 ], [ 0.031543, 0.003605 ], [ 0.034161, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.001802 ], [ 0.034161, 0.000000 ], [ 0.031543, 0.000000 ], [ 0.031543, 0.001802 ], [ 0.034161, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0341515", "Lat": "0.0198000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.021586 ], [ 0.036778, 0.019784 ], [ 0.034161, 0.019784 ], [ 0.034161, 0.021586 ], [ 0.036778, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0341515", "Lat": "0.0180000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.019784 ], [ 0.036778, 0.017982 ], [ 0.034161, 0.017982 ], [ 0.034161, 0.019784 ], [ 0.036778, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0341515", "Lat": "0.0162000", "KPI": 313, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.017982 ], [ 0.036778, 0.016179 ], [ 0.034161, 0.016179 ], [ 0.034161, 0.017982 ], [ 0.036778, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0198000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.021586 ], [ 0.039396, 0.019784 ], [ 0.036778, 0.019784 ], [ 0.036778, 0.021586 ], [ 0.039396, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0367786", "Lat": "0.0180000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.019784 ], [ 0.039396, 0.017982 ], [ 0.036778, 0.017982 ], [ 0.036778, 0.019784 ], [ 0.039396, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0367786", "Lat": "0.0162000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.017982 ], [ 0.039396, 0.016179 ], [ 0.036778, 0.016179 ], [ 0.036778, 0.017982 ], [ 0.039396, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0341515", "Lat": "0.0144000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.016179 ], [ 0.036778, 0.014420 ], [ 0.034161, 0.014420 ], [ 0.034161, 0.016179 ], [ 0.036778, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0341515", "Lat": "0.0126000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.014420 ], [ 0.036778, 0.012617 ], [ 0.034161, 0.012617 ], [ 0.034161, 0.014420 ], [ 0.036778, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0341515", "Lat": "0.0108000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.012617 ], [ 0.036778, 0.010815 ], [ 0.034161, 0.010815 ], [ 0.034161, 0.012617 ], [ 0.036778, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0367786", "Lat": "0.0144000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.016179 ], [ 0.039396, 0.014420 ], [ 0.036778, 0.014420 ], [ 0.036778, 0.016179 ], [ 0.039396, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367786", "Lat": "0.0126000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.014420 ], [ 0.039396, 0.012617 ], [ 0.036778, 0.012617 ], [ 0.036778, 0.014420 ], [ 0.039396, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0108000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.012617 ], [ 0.039396, 0.010815 ], [ 0.036778, 0.010815 ], [ 0.036778, 0.012617 ], [ 0.039396, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0394056", "Lat": "0.0198000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.021586 ], [ 0.042014, 0.019784 ], [ 0.039396, 0.019784 ], [ 0.039396, 0.021586 ], [ 0.042014, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0180000", "KPI": 935, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.019784 ], [ 0.042014, 0.017982 ], [ 0.039396, 0.017982 ], [ 0.039396, 0.019784 ], [ 0.042014, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0394056", "Lat": "0.0162000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.017982 ], [ 0.042014, 0.016179 ], [ 0.039396, 0.016179 ], [ 0.039396, 0.017982 ], [ 0.042014, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0420326", "Lat": "0.0198000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.021586 ], [ 0.044675, 0.019784 ], [ 0.042014, 0.019784 ], [ 0.042014, 0.021586 ], [ 0.044675, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0420326", "Lat": "0.0180000", "KPI": 405, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.019784 ], [ 0.044675, 0.017982 ], [ 0.042014, 0.017982 ], [ 0.042014, 0.019784 ], [ 0.044675, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0420326", "Lat": "0.0162000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.017982 ], [ 0.044675, 0.016179 ], [ 0.042014, 0.016179 ], [ 0.042014, 0.017982 ], [ 0.044675, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0394056", "Lat": "0.0144000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.016179 ], [ 0.042014, 0.014420 ], [ 0.039396, 0.014420 ], [ 0.039396, 0.016179 ], [ 0.042014, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0394056", "Lat": "0.0126000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.014420 ], [ 0.042014, 0.012617 ], [ 0.039396, 0.012617 ], [ 0.039396, 0.014420 ], [ 0.042014, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0394056", "Lat": "0.0108000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.012617 ], [ 0.042014, 0.010815 ], [ 0.039396, 0.010815 ], [ 0.039396, 0.012617 ], [ 0.042014, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0420326", "Lat": "0.0144000", "KPI": 307, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.016179 ], [ 0.044675, 0.014420 ], [ 0.042014, 0.014420 ], [ 0.042014, 0.016179 ], [ 0.044675, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0420326", "Lat": "0.0126000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.014420 ], [ 0.044675, 0.012617 ], [ 0.042014, 0.012617 ], [ 0.042014, 0.014420 ], [ 0.044675, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.012617 ], [ 0.044675, 0.010815 ], [ 0.042014, 0.010815 ], [ 0.042014, 0.012617 ], [ 0.044675, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0341515", "Lat": "0.0090000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.010815 ], [ 0.036778, 0.009012 ], [ 0.034161, 0.009012 ], [ 0.034161, 0.010815 ], [ 0.036778, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0341515", "Lat": "0.0072000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.009012 ], [ 0.036778, 0.007210 ], [ 0.034161, 0.007210 ], [ 0.034161, 0.009012 ], [ 0.036778, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0341515", "Lat": "0.0054000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.007210 ], [ 0.036778, 0.005407 ], [ 0.034161, 0.005407 ], [ 0.034161, 0.007210 ], [ 0.036778, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0367786", "Lat": "0.0090000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.010815 ], [ 0.039396, 0.009012 ], [ 0.036778, 0.009012 ], [ 0.036778, 0.010815 ], [ 0.039396, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0367786", "Lat": "0.0072000", "KPI": 830, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.009012 ], [ 0.039396, 0.007210 ], [ 0.036778, 0.007210 ], [ 0.036778, 0.009012 ], [ 0.039396, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.007210 ], [ 0.039396, 0.005407 ], [ 0.036778, 0.005407 ], [ 0.036778, 0.007210 ], [ 0.039396, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0341515", "Lat": "0.0036000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.005407 ], [ 0.036778, 0.003605 ], [ 0.034161, 0.003605 ], [ 0.034161, 0.005407 ], [ 0.036778, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0341515", "Lat": "0.0018000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.003605 ], [ 0.036778, 0.001802 ], [ 0.034161, 0.001802 ], [ 0.034161, 0.003605 ], [ 0.036778, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0341515", "Lat": "0.0000000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.001802 ], [ 0.036778, 0.000000 ], [ 0.034161, 0.000000 ], [ 0.034161, 0.001802 ], [ 0.036778, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0367786", "Lat": "0.0036000", "KPI": 638, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.005407 ], [ 0.039396, 0.003605 ], [ 0.036778, 0.003605 ], [ 0.036778, 0.005407 ], [ 0.039396, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0367786", "Lat": "0.0018000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.003605 ], [ 0.039396, 0.001802 ], [ 0.036778, 0.001802 ], [ 0.036778, 0.003605 ], [ 0.039396, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.001802 ], [ 0.039396, 0.000000 ], [ 0.036778, 0.000000 ], [ 0.036778, 0.001802 ], [ 0.039396, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0394056", "Lat": "0.0090000", "KPI": 330, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.010815 ], [ 0.042014, 0.009012 ], [ 0.039396, 0.009012 ], [ 0.039396, 0.010815 ], [ 0.042014, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394056", "Lat": "0.0072000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.009012 ], [ 0.042014, 0.007210 ], [ 0.039396, 0.007210 ], [ 0.039396, 0.009012 ], [ 0.042014, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0054000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.007210 ], [ 0.042014, 0.005407 ], [ 0.039396, 0.005407 ], [ 0.039396, 0.007210 ], [ 0.042014, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0090000", "KPI": 965, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.010815 ], [ 0.044675, 0.009012 ], [ 0.042014, 0.009012 ], [ 0.042014, 0.010815 ], [ 0.044675, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0420326", "Lat": "0.0072000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.009012 ], [ 0.044675, 0.007210 ], [ 0.042014, 0.007210 ], [ 0.042014, 0.009012 ], [ 0.044675, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.007210 ], [ 0.044675, 0.005407 ], [ 0.042014, 0.005407 ], [ 0.042014, 0.007210 ], [ 0.044675, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0394056", "Lat": "0.0036000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.005407 ], [ 0.042014, 0.003605 ], [ 0.039396, 0.003605 ], [ 0.039396, 0.005407 ], [ 0.042014, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0394056", "Lat": "0.0018000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.003605 ], [ 0.042014, 0.001802 ], [ 0.039396, 0.001802 ], [ 0.039396, 0.003605 ], [ 0.042014, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0000000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.001802 ], [ 0.042014, 0.000000 ], [ 0.039396, 0.000000 ], [ 0.039396, 0.001802 ], [ 0.042014, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0420326", "Lat": "0.0036000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.005407 ], [ 0.044675, 0.003605 ], [ 0.042014, 0.003605 ], [ 0.042014, 0.005407 ], [ 0.044675, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420326", "Lat": "0.0018000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.003605 ], [ 0.044675, 0.001802 ], [ 0.042014, 0.001802 ], [ 0.042014, 0.003605 ], [ 0.044675, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.001802 ], [ 0.044675, 0.000000 ], [ 0.042014, 0.000000 ], [ 0.042014, 0.001802 ], [ 0.044675, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0446597", "Lat": "0.0558000", "KPI": 534, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.057592 ], [ 0.047293, 0.055790 ], [ 0.044675, 0.055790 ], [ 0.044675, 0.057592 ], [ 0.047293, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0472867", "Lat": "0.0558000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.057592 ], [ 0.049911, 0.055790 ], [ 0.047293, 0.055790 ], [ 0.047293, 0.057592 ], [ 0.049911, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0499138", "Lat": "0.0558000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.057592 ], [ 0.052528, 0.055790 ], [ 0.049911, 0.055790 ], [ 0.049911, 0.057592 ], [ 0.052528, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0525408", "Lat": "0.0558000", "KPI": 909, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.057592 ], [ 0.055189, 0.055790 ], [ 0.052528, 0.055790 ], [ 0.052528, 0.057592 ], [ 0.055189, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0540000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.055790 ], [ 0.047293, 0.053987 ], [ 0.044675, 0.053987 ], [ 0.044675, 0.055790 ], [ 0.047293, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0446597", "Lat": "0.0522000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.053987 ], [ 0.047293, 0.052185 ], [ 0.044675, 0.052185 ], [ 0.044675, 0.053987 ], [ 0.047293, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0446597", "Lat": "0.0504000", "KPI": 7, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.052185 ], [ 0.047293, 0.050383 ], [ 0.044675, 0.050383 ], [ 0.044675, 0.052185 ], [ 0.047293, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0446597", "Lat": "0.0486000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.050383 ], [ 0.047293, 0.048580 ], [ 0.044675, 0.048580 ], [ 0.044675, 0.050383 ], [ 0.047293, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472867", "Lat": "0.0540000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.055790 ], [ 0.049911, 0.053987 ], [ 0.047293, 0.053987 ], [ 0.047293, 0.055790 ], [ 0.049911, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0472867", "Lat": "0.0522000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.053987 ], [ 0.049911, 0.052185 ], [ 0.047293, 0.052185 ], [ 0.047293, 0.053987 ], [ 0.049911, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0472867", "Lat": "0.0504000", "KPI": 568, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.052185 ], [ 0.049911, 0.050383 ], [ 0.047293, 0.050383 ], [ 0.047293, 0.052185 ], [ 0.049911, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0472867", "Lat": "0.0486000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.050383 ], [ 0.049911, 0.048580 ], [ 0.047293, 0.048580 ], [ 0.047293, 0.050383 ], [ 0.049911, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0446597", "Lat": "0.0468000", "KPI": 286, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.048580 ], [ 0.047293, 0.046821 ], [ 0.044675, 0.046821 ], [ 0.044675, 0.048580 ], [ 0.047293, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446597", "Lat": "0.0450000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.046821 ], [ 0.047293, 0.045018 ], [ 0.044675, 0.045018 ], [ 0.044675, 0.046821 ], [ 0.047293, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0446597", "Lat": "0.0432000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.045018 ], [ 0.047293, 0.043216 ], [ 0.044675, 0.043216 ], [ 0.044675, 0.045018 ], [ 0.047293, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0472867", "Lat": "0.0468000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.048580 ], [ 0.049911, 0.046821 ], [ 0.047293, 0.046821 ], [ 0.047293, 0.048580 ], [ 0.049911, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0472867", "Lat": "0.0450000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.046821 ], [ 0.049911, 0.045018 ], [ 0.047293, 0.045018 ], [ 0.047293, 0.046821 ], [ 0.049911, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0432000", "KPI": 713, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.045018 ], [ 0.049911, 0.043216 ], [ 0.047293, 0.043216 ], [ 0.047293, 0.045018 ], [ 0.049911, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0499138", "Lat": "0.0540000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.055790 ], [ 0.052528, 0.053987 ], [ 0.049911, 0.053987 ], [ 0.049911, 0.055790 ], [ 0.052528, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0499138", "Lat": "0.0522000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.053987 ], [ 0.052528, 0.052185 ], [ 0.049911, 0.052185 ], [ 0.049911, 0.053987 ], [ 0.052528, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0499138", "Lat": "0.0504000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.052185 ], [ 0.052528, 0.050383 ], [ 0.049911, 0.050383 ], [ 0.049911, 0.052185 ], [ 0.052528, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0499138", "Lat": "0.0486000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.050383 ], [ 0.052528, 0.048580 ], [ 0.049911, 0.048580 ], [ 0.049911, 0.050383 ], [ 0.052528, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0525408", "Lat": "0.0540000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.055790 ], [ 0.055189, 0.053987 ], [ 0.052528, 0.053987 ], [ 0.052528, 0.055790 ], [ 0.055189, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0525408", "Lat": "0.0522000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.053987 ], [ 0.055189, 0.052185 ], [ 0.052528, 0.052185 ], [ 0.052528, 0.053987 ], [ 0.055189, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0504000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.052185 ], [ 0.055189, 0.050383 ], [ 0.052528, 0.050383 ], [ 0.052528, 0.052185 ], [ 0.055189, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0525408", "Lat": "0.0486000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.050383 ], [ 0.055189, 0.048580 ], [ 0.052528, 0.048580 ], [ 0.052528, 0.050383 ], [ 0.055189, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0499138", "Lat": "0.0468000", "KPI": 22, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.048580 ], [ 0.052528, 0.046821 ], [ 0.049911, 0.046821 ], [ 0.049911, 0.048580 ], [ 0.052528, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499138", "Lat": "0.0450000", "KPI": 598, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.046821 ], [ 0.052528, 0.045018 ], [ 0.049911, 0.045018 ], [ 0.049911, 0.046821 ], [ 0.052528, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0499138", "Lat": "0.0432000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.045018 ], [ 0.052528, 0.043216 ], [ 0.049911, 0.043216 ], [ 0.049911, 0.045018 ], [ 0.052528, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0525408", "Lat": "0.0468000", "KPI": 575, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.048580 ], [ 0.055189, 0.046821 ], [ 0.052528, 0.046821 ], [ 0.052528, 0.048580 ], [ 0.055189, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0525408", "Lat": "0.0450000", "KPI": 892, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.046821 ], [ 0.055189, 0.045018 ], [ 0.052528, 0.045018 ], [ 0.052528, 0.046821 ], [ 0.055189, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0525408", "Lat": "0.0432000", "KPI": 658, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.045018 ], [ 0.055189, 0.043216 ], [ 0.052528, 0.043216 ], [ 0.052528, 0.045018 ], [ 0.055189, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0551678", "Lat": "0.0558000", "KPI": 673, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.057592 ], [ 0.057807, 0.055790 ], [ 0.055189, 0.055790 ], [ 0.055189, 0.057592 ], [ 0.057807, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577949", "Lat": "0.0558000", "KPI": 322, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.057592 ], [ 0.060425, 0.055790 ], [ 0.057807, 0.055790 ], [ 0.057807, 0.057592 ], [ 0.060425, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0604219", "Lat": "0.0558000", "KPI": 294, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.057592 ], [ 0.063043, 0.055790 ], [ 0.060425, 0.055790 ], [ 0.060425, 0.057592 ], [ 0.063043, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0630490", "Lat": "0.0558000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.057592 ], [ 0.065660, 0.055790 ], [ 0.063043, 0.055790 ], [ 0.063043, 0.057592 ], [ 0.065660, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0551678", "Lat": "0.0540000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.055790 ], [ 0.057807, 0.053987 ], [ 0.055189, 0.053987 ], [ 0.055189, 0.055790 ], [ 0.057807, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0551678", "Lat": "0.0522000", "KPI": 315, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.053987 ], [ 0.057807, 0.052185 ], [ 0.055189, 0.052185 ], [ 0.055189, 0.053987 ], [ 0.057807, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0551678", "Lat": "0.0504000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.052185 ], [ 0.057807, 0.050383 ], [ 0.055189, 0.050383 ], [ 0.055189, 0.052185 ], [ 0.057807, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0551678", "Lat": "0.0486000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.050383 ], [ 0.057807, 0.048580 ], [ 0.055189, 0.048580 ], [ 0.055189, 0.050383 ], [ 0.057807, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0577949", "Lat": "0.0540000", "KPI": 231, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.055790 ], [ 0.060425, 0.053987 ], [ 0.057807, 0.053987 ], [ 0.057807, 0.055790 ], [ 0.060425, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577949", "Lat": "0.0522000", "KPI": 977, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.053987 ], [ 0.060425, 0.052185 ], [ 0.057807, 0.052185 ], [ 0.057807, 0.053987 ], [ 0.060425, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0577949", "Lat": "0.0504000", "KPI": 564, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.052185 ], [ 0.060425, 0.050383 ], [ 0.057807, 0.050383 ], [ 0.057807, 0.052185 ], [ 0.060425, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577949", "Lat": "0.0486000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.050383 ], [ 0.060425, 0.048580 ], [ 0.057807, 0.048580 ], [ 0.057807, 0.050383 ], [ 0.060425, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0551678", "Lat": "0.0468000", "KPI": 729, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.048580 ], [ 0.057807, 0.046821 ], [ 0.055189, 0.046821 ], [ 0.055189, 0.048580 ], [ 0.057807, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0551678", "Lat": "0.0450000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.046821 ], [ 0.057807, 0.045018 ], [ 0.055189, 0.045018 ], [ 0.055189, 0.046821 ], [ 0.057807, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0551678", "Lat": "0.0432000", "KPI": 814, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.045018 ], [ 0.057807, 0.043216 ], [ 0.055189, 0.043216 ], [ 0.055189, 0.045018 ], [ 0.057807, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0577949", "Lat": "0.0468000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.048580 ], [ 0.060425, 0.046821 ], [ 0.057807, 0.046821 ], [ 0.057807, 0.048580 ], [ 0.060425, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0577949", "Lat": "0.0450000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.046821 ], [ 0.060425, 0.045018 ], [ 0.057807, 0.045018 ], [ 0.057807, 0.046821 ], [ 0.060425, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0577949", "Lat": "0.0432000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.045018 ], [ 0.060425, 0.043216 ], [ 0.057807, 0.043216 ], [ 0.057807, 0.045018 ], [ 0.060425, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0604219", "Lat": "0.0540000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.055790 ], [ 0.063043, 0.053987 ], [ 0.060425, 0.053987 ], [ 0.060425, 0.055790 ], [ 0.063043, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0604219", "Lat": "0.0522000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.053987 ], [ 0.063043, 0.052185 ], [ 0.060425, 0.052185 ], [ 0.060425, 0.053987 ], [ 0.063043, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0604219", "Lat": "0.0504000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.052185 ], [ 0.063043, 0.050383 ], [ 0.060425, 0.050383 ], [ 0.060425, 0.052185 ], [ 0.063043, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0604219", "Lat": "0.0486000", "KPI": 626, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.050383 ], [ 0.063043, 0.048580 ], [ 0.060425, 0.048580 ], [ 0.060425, 0.050383 ], [ 0.063043, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0630490", "Lat": "0.0540000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.055790 ], [ 0.065660, 0.053987 ], [ 0.063043, 0.053987 ], [ 0.063043, 0.055790 ], [ 0.065660, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0630490", "Lat": "0.0522000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.053987 ], [ 0.065660, 0.052185 ], [ 0.063043, 0.052185 ], [ 0.063043, 0.053987 ], [ 0.065660, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630490", "Lat": "0.0504000", "KPI": 580, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.052185 ], [ 0.065660, 0.050383 ], [ 0.063043, 0.050383 ], [ 0.063043, 0.052185 ], [ 0.065660, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0630490", "Lat": "0.0486000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.050383 ], [ 0.065660, 0.048580 ], [ 0.063043, 0.048580 ], [ 0.063043, 0.050383 ], [ 0.065660, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0604219", "Lat": "0.0468000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.048580 ], [ 0.063043, 0.046821 ], [ 0.060425, 0.046821 ], [ 0.060425, 0.048580 ], [ 0.063043, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0604219", "Lat": "0.0450000", "KPI": 301, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.046821 ], [ 0.063043, 0.045018 ], [ 0.060425, 0.045018 ], [ 0.060425, 0.046821 ], [ 0.063043, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0604219", "Lat": "0.0432000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.045018 ], [ 0.063043, 0.043216 ], [ 0.060425, 0.043216 ], [ 0.060425, 0.045018 ], [ 0.063043, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0630490", "Lat": "0.0468000", "KPI": 781, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.048580 ], [ 0.065660, 0.046821 ], [ 0.063043, 0.046821 ], [ 0.063043, 0.048580 ], [ 0.065660, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630490", "Lat": "0.0450000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.046821 ], [ 0.065660, 0.045018 ], [ 0.063043, 0.045018 ], [ 0.063043, 0.046821 ], [ 0.065660, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0630490", "Lat": "0.0432000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.045018 ], [ 0.065660, 0.043216 ], [ 0.063043, 0.043216 ], [ 0.063043, 0.045018 ], [ 0.065660, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0656760", "Lat": "0.0558000", "KPI": 192, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.057592 ], [ 0.068321, 0.055790 ], [ 0.065660, 0.055790 ], [ 0.065660, 0.057592 ], [ 0.068321, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0683030", "Lat": "0.0558000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.057592 ], [ 0.070939, 0.055790 ], [ 0.068321, 0.055790 ], [ 0.068321, 0.057592 ], [ 0.070939, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0709301", "Lat": "0.0558000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.057592 ], [ 0.073557, 0.055790 ], [ 0.070939, 0.055790 ], [ 0.070939, 0.057592 ], [ 0.073557, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0735571", "Lat": "0.0558000", "KPI": 938, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.057592 ], [ 0.076175, 0.055790 ], [ 0.073557, 0.055790 ], [ 0.073557, 0.057592 ], [ 0.076175, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0656760", "Lat": "0.0540000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.055790 ], [ 0.068321, 0.053987 ], [ 0.065660, 0.053987 ], [ 0.065660, 0.055790 ], [ 0.068321, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0656760", "Lat": "0.0522000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.053987 ], [ 0.068321, 0.052185 ], [ 0.065660, 0.052185 ], [ 0.065660, 0.053987 ], [ 0.068321, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0656760", "Lat": "0.0504000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.052185 ], [ 0.068321, 0.050383 ], [ 0.065660, 0.050383 ], [ 0.065660, 0.052185 ], [ 0.068321, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0656760", "Lat": "0.0486000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.050383 ], [ 0.068321, 0.048580 ], [ 0.065660, 0.048580 ], [ 0.065660, 0.050383 ], [ 0.068321, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0683030", "Lat": "0.0540000", "KPI": 392, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.055790 ], [ 0.070939, 0.053987 ], [ 0.068321, 0.053987 ], [ 0.068321, 0.055790 ], [ 0.070939, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0683030", "Lat": "0.0522000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.053987 ], [ 0.070939, 0.052185 ], [ 0.068321, 0.052185 ], [ 0.068321, 0.053987 ], [ 0.070939, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0683030", "Lat": "0.0504000", "KPI": 947, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.052185 ], [ 0.070939, 0.050383 ], [ 0.068321, 0.050383 ], [ 0.068321, 0.052185 ], [ 0.070939, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0683030", "Lat": "0.0486000", "KPI": 269, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.050383 ], [ 0.070939, 0.048580 ], [ 0.068321, 0.048580 ], [ 0.068321, 0.050383 ], [ 0.070939, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0656760", "Lat": "0.0468000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.048580 ], [ 0.068321, 0.046821 ], [ 0.065660, 0.046821 ], [ 0.065660, 0.048580 ], [ 0.068321, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0450000", "KPI": 77, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.046821 ], [ 0.068321, 0.045018 ], [ 0.065660, 0.045018 ], [ 0.065660, 0.046821 ], [ 0.068321, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.045018 ], [ 0.068321, 0.043216 ], [ 0.065660, 0.043216 ], [ 0.065660, 0.045018 ], [ 0.068321, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0683030", "Lat": "0.0468000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.048580 ], [ 0.070939, 0.046821 ], [ 0.068321, 0.046821 ], [ 0.068321, 0.048580 ], [ 0.070939, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0683030", "Lat": "0.0450000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.046821 ], [ 0.070939, 0.045018 ], [ 0.068321, 0.045018 ], [ 0.068321, 0.046821 ], [ 0.070939, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0683030", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.045018 ], [ 0.070939, 0.043216 ], [ 0.068321, 0.043216 ], [ 0.068321, 0.045018 ], [ 0.070939, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0540000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.055790 ], [ 0.073557, 0.053987 ], [ 0.070939, 0.053987 ], [ 0.070939, 0.055790 ], [ 0.073557, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0709301", "Lat": "0.0522000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.053987 ], [ 0.073557, 0.052185 ], [ 0.070939, 0.052185 ], [ 0.070939, 0.053987 ], [ 0.073557, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0709301", "Lat": "0.0504000", "KPI": 139, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.052185 ], [ 0.073557, 0.050383 ], [ 0.070939, 0.050383 ], [ 0.070939, 0.052185 ], [ 0.073557, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0709301", "Lat": "0.0486000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.050383 ], [ 0.073557, 0.048580 ], [ 0.070939, 0.048580 ], [ 0.070939, 0.050383 ], [ 0.073557, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0735571", "Lat": "0.0540000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.055790 ], [ 0.076175, 0.053987 ], [ 0.073557, 0.053987 ], [ 0.073557, 0.055790 ], [ 0.076175, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0735571", "Lat": "0.0522000", "KPI": 310, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.053987 ], [ 0.076175, 0.052185 ], [ 0.073557, 0.052185 ], [ 0.073557, 0.053987 ], [ 0.076175, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0735571", "Lat": "0.0504000", "KPI": 908, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.052185 ], [ 0.076175, 0.050383 ], [ 0.073557, 0.050383 ], [ 0.073557, 0.052185 ], [ 0.076175, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0735571", "Lat": "0.0486000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.050383 ], [ 0.076175, 0.048580 ], [ 0.073557, 0.048580 ], [ 0.073557, 0.050383 ], [ 0.076175, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0709301", "Lat": "0.0468000", "KPI": 162, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.048580 ], [ 0.073557, 0.046821 ], [ 0.070939, 0.046821 ], [ 0.070939, 0.048580 ], [ 0.073557, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0709301", "Lat": "0.0450000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.046821 ], [ 0.073557, 0.045018 ], [ 0.070939, 0.045018 ], [ 0.070939, 0.046821 ], [ 0.073557, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0709301", "Lat": "0.0432000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.045018 ], [ 0.073557, 0.043216 ], [ 0.070939, 0.043216 ], [ 0.070939, 0.045018 ], [ 0.073557, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0468000", "KPI": 979, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.048580 ], [ 0.076175, 0.046821 ], [ 0.073557, 0.046821 ], [ 0.073557, 0.048580 ], [ 0.076175, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0735571", "Lat": "0.0450000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.046821 ], [ 0.076175, 0.045018 ], [ 0.073557, 0.045018 ], [ 0.073557, 0.046821 ], [ 0.076175, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0735571", "Lat": "0.0432000", "KPI": 219, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.045018 ], [ 0.076175, 0.043216 ], [ 0.073557, 0.043216 ], [ 0.073557, 0.045018 ], [ 0.076175, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0761842", "Lat": "0.0558000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.057592 ], [ 0.078793, 0.055790 ], [ 0.076175, 0.055790 ], [ 0.076175, 0.057592 ], [ 0.078793, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0558000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.057592 ], [ 0.081453, 0.055790 ], [ 0.078793, 0.055790 ], [ 0.078793, 0.057592 ], [ 0.081453, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0814382", "Lat": "0.0558000", "KPI": 243, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.057592 ], [ 0.084071, 0.055790 ], [ 0.081453, 0.055790 ], [ 0.081453, 0.057592 ], [ 0.084071, 0.057592 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0540000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.055790 ], [ 0.078793, 0.053987 ], [ 0.076175, 0.053987 ], [ 0.076175, 0.055790 ], [ 0.078793, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0761842", "Lat": "0.0522000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.053987 ], [ 0.078793, 0.052185 ], [ 0.076175, 0.052185 ], [ 0.076175, 0.053987 ], [ 0.078793, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0761842", "Lat": "0.0504000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.052185 ], [ 0.078793, 0.050383 ], [ 0.076175, 0.050383 ], [ 0.076175, 0.052185 ], [ 0.078793, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0761842", "Lat": "0.0486000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.050383 ], [ 0.078793, 0.048580 ], [ 0.076175, 0.048580 ], [ 0.076175, 0.050383 ], [ 0.078793, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0788112", "Lat": "0.0540000", "KPI": 39, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.055790 ], [ 0.081453, 0.053987 ], [ 0.078793, 0.053987 ], [ 0.078793, 0.055790 ], [ 0.081453, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0788112", "Lat": "0.0522000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.053987 ], [ 0.081453, 0.052185 ], [ 0.078793, 0.052185 ], [ 0.078793, 0.053987 ], [ 0.081453, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0788112", "Lat": "0.0504000", "KPI": 701, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.052185 ], [ 0.081453, 0.050383 ], [ 0.078793, 0.050383 ], [ 0.078793, 0.052185 ], [ 0.081453, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0788112", "Lat": "0.0486000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.050383 ], [ 0.081453, 0.048580 ], [ 0.078793, 0.048580 ], [ 0.078793, 0.050383 ], [ 0.081453, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761842", "Lat": "0.0468000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.048580 ], [ 0.078793, 0.046821 ], [ 0.076175, 0.046821 ], [ 0.076175, 0.048580 ], [ 0.078793, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0761842", "Lat": "0.0450000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.046821 ], [ 0.078793, 0.045018 ], [ 0.076175, 0.045018 ], [ 0.076175, 0.046821 ], [ 0.078793, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761842", "Lat": "0.0432000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.045018 ], [ 0.078793, 0.043216 ], [ 0.076175, 0.043216 ], [ 0.076175, 0.045018 ], [ 0.078793, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0788112", "Lat": "0.0468000", "KPI": 109, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.048580 ], [ 0.081453, 0.046821 ], [ 0.078793, 0.046821 ], [ 0.078793, 0.048580 ], [ 0.081453, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0788112", "Lat": "0.0450000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.046821 ], [ 0.081453, 0.045018 ], [ 0.078793, 0.045018 ], [ 0.078793, 0.046821 ], [ 0.081453, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0788112", "Lat": "0.0432000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.045018 ], [ 0.081453, 0.043216 ], [ 0.078793, 0.043216 ], [ 0.078793, 0.045018 ], [ 0.081453, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0814382", "Lat": "0.0540000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.055790 ], [ 0.084071, 0.053987 ], [ 0.081453, 0.053987 ], [ 0.081453, 0.055790 ], [ 0.084071, 0.055790 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0522000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.053987 ], [ 0.084071, 0.052185 ], [ 0.081453, 0.052185 ], [ 0.081453, 0.053987 ], [ 0.084071, 0.053987 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0814382", "Lat": "0.0504000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.052185 ], [ 0.084071, 0.050383 ], [ 0.081453, 0.050383 ], [ 0.081453, 0.052185 ], [ 0.084071, 0.052185 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0814382", "Lat": "0.0486000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.050383 ], [ 0.084071, 0.048580 ], [ 0.081453, 0.048580 ], [ 0.081453, 0.050383 ], [ 0.084071, 0.050383 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0814382", "Lat": "0.0468000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.048580 ], [ 0.084071, 0.046821 ], [ 0.081453, 0.046821 ], [ 0.081453, 0.048580 ], [ 0.084071, 0.048580 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0814382", "Lat": "0.0450000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.046821 ], [ 0.084071, 0.045018 ], [ 0.081453, 0.045018 ], [ 0.081453, 0.046821 ], [ 0.084071, 0.046821 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0432000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.045018 ], [ 0.084071, 0.043216 ], [ 0.081453, 0.043216 ], [ 0.081453, 0.045018 ], [ 0.084071, 0.045018 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0446597", "Lat": "0.0414000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.043216 ], [ 0.047293, 0.041413 ], [ 0.044675, 0.041413 ], [ 0.044675, 0.043216 ], [ 0.047293, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0446597", "Lat": "0.0396000", "KPI": 190, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.041413 ], [ 0.047293, 0.039611 ], [ 0.044675, 0.039611 ], [ 0.044675, 0.041413 ], [ 0.047293, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0446597", "Lat": "0.0378000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.039611 ], [ 0.047293, 0.037808 ], [ 0.044675, 0.037808 ], [ 0.044675, 0.039611 ], [ 0.047293, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0414000", "KPI": 280, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.043216 ], [ 0.049911, 0.041413 ], [ 0.047293, 0.041413 ], [ 0.047293, 0.043216 ], [ 0.049911, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0472867", "Lat": "0.0396000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.041413 ], [ 0.049911, 0.039611 ], [ 0.047293, 0.039611 ], [ 0.047293, 0.041413 ], [ 0.049911, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0472867", "Lat": "0.0378000", "KPI": 515, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.039611 ], [ 0.049911, 0.037808 ], [ 0.047293, 0.037808 ], [ 0.047293, 0.039611 ], [ 0.049911, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0446597", "Lat": "0.0360000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.037808 ], [ 0.047293, 0.036006 ], [ 0.044675, 0.036006 ], [ 0.044675, 0.037808 ], [ 0.047293, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446597", "Lat": "0.0342000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.036006 ], [ 0.047293, 0.034204 ], [ 0.044675, 0.034204 ], [ 0.044675, 0.036006 ], [ 0.047293, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0446597", "Lat": "0.0324000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.034204 ], [ 0.047293, 0.032401 ], [ 0.044675, 0.032401 ], [ 0.044675, 0.034204 ], [ 0.047293, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0360000", "KPI": 920, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.037808 ], [ 0.049911, 0.036006 ], [ 0.047293, 0.036006 ], [ 0.047293, 0.037808 ], [ 0.049911, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0472867", "Lat": "0.0342000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.036006 ], [ 0.049911, 0.034204 ], [ 0.047293, 0.034204 ], [ 0.047293, 0.036006 ], [ 0.049911, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0472867", "Lat": "0.0324000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.034204 ], [ 0.049911, 0.032401 ], [ 0.047293, 0.032401 ], [ 0.047293, 0.034204 ], [ 0.049911, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0499138", "Lat": "0.0414000", "KPI": 476, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.043216 ], [ 0.052528, 0.041413 ], [ 0.049911, 0.041413 ], [ 0.049911, 0.043216 ], [ 0.052528, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0499138", "Lat": "0.0396000", "KPI": 524, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.041413 ], [ 0.052528, 0.039611 ], [ 0.049911, 0.039611 ], [ 0.049911, 0.041413 ], [ 0.052528, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0499138", "Lat": "0.0378000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.039611 ], [ 0.052528, 0.037808 ], [ 0.049911, 0.037808 ], [ 0.049911, 0.039611 ], [ 0.052528, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0525408", "Lat": "0.0414000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.043216 ], [ 0.055189, 0.041413 ], [ 0.052528, 0.041413 ], [ 0.052528, 0.043216 ], [ 0.055189, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0525408", "Lat": "0.0396000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.041413 ], [ 0.055189, 0.039611 ], [ 0.052528, 0.039611 ], [ 0.052528, 0.041413 ], [ 0.055189, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0525408", "Lat": "0.0378000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.039611 ], [ 0.055189, 0.037808 ], [ 0.052528, 0.037808 ], [ 0.052528, 0.039611 ], [ 0.055189, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0499138", "Lat": "0.0360000", "KPI": 543, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.037808 ], [ 0.052528, 0.036006 ], [ 0.049911, 0.036006 ], [ 0.049911, 0.037808 ], [ 0.052528, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0499138", "Lat": "0.0342000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.036006 ], [ 0.052528, 0.034204 ], [ 0.049911, 0.034204 ], [ 0.049911, 0.036006 ], [ 0.052528, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0499138", "Lat": "0.0324000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.034204 ], [ 0.052528, 0.032401 ], [ 0.049911, 0.032401 ], [ 0.049911, 0.034204 ], [ 0.052528, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0525408", "Lat": "0.0360000", "KPI": 180, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.037808 ], [ 0.055189, 0.036006 ], [ 0.052528, 0.036006 ], [ 0.052528, 0.037808 ], [ 0.055189, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0525408", "Lat": "0.0342000", "KPI": 550, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.036006 ], [ 0.055189, 0.034204 ], [ 0.052528, 0.034204 ], [ 0.052528, 0.036006 ], [ 0.055189, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0324000", "KPI": 245, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.034204 ], [ 0.055189, 0.032401 ], [ 0.052528, 0.032401 ], [ 0.052528, 0.034204 ], [ 0.055189, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0446597", "Lat": "0.0306000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.032401 ], [ 0.047293, 0.030599 ], [ 0.044675, 0.030599 ], [ 0.044675, 0.032401 ], [ 0.047293, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0288000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.030599 ], [ 0.047293, 0.028796 ], [ 0.044675, 0.028796 ], [ 0.044675, 0.030599 ], [ 0.047293, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446597", "Lat": "0.0270000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.028796 ], [ 0.047293, 0.026994 ], [ 0.044675, 0.026994 ], [ 0.044675, 0.028796 ], [ 0.047293, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0472867", "Lat": "0.0306000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.032401 ], [ 0.049911, 0.030599 ], [ 0.047293, 0.030599 ], [ 0.047293, 0.032401 ], [ 0.049911, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0472867", "Lat": "0.0288000", "KPI": 115, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.030599 ], [ 0.049911, 0.028796 ], [ 0.047293, 0.028796 ], [ 0.047293, 0.030599 ], [ 0.049911, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0472867", "Lat": "0.0270000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.028796 ], [ 0.049911, 0.026994 ], [ 0.047293, 0.026994 ], [ 0.047293, 0.028796 ], [ 0.049911, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0446597", "Lat": "0.0252000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.026994 ], [ 0.047293, 0.025191 ], [ 0.044675, 0.025191 ], [ 0.044675, 0.026994 ], [ 0.047293, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0446597", "Lat": "0.0234000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.025191 ], [ 0.047293, 0.023389 ], [ 0.044675, 0.023389 ], [ 0.044675, 0.025191 ], [ 0.047293, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0446597", "Lat": "0.0216000", "KPI": 807, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.023389 ], [ 0.047293, 0.021586 ], [ 0.044675, 0.021586 ], [ 0.044675, 0.023389 ], [ 0.047293, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0472867", "Lat": "0.0252000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.026994 ], [ 0.049911, 0.025191 ], [ 0.047293, 0.025191 ], [ 0.047293, 0.026994 ], [ 0.049911, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0472867", "Lat": "0.0234000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.025191 ], [ 0.049911, 0.023389 ], [ 0.047293, 0.023389 ], [ 0.047293, 0.025191 ], [ 0.049911, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0472867", "Lat": "0.0216000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.023389 ], [ 0.049911, 0.021586 ], [ 0.047293, 0.021586 ], [ 0.047293, 0.023389 ], [ 0.049911, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0499138", "Lat": "0.0306000", "KPI": 225, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.032401 ], [ 0.052528, 0.030599 ], [ 0.049911, 0.030599 ], [ 0.049911, 0.032401 ], [ 0.052528, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499138", "Lat": "0.0288000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.030599 ], [ 0.052528, 0.028796 ], [ 0.049911, 0.028796 ], [ 0.049911, 0.030599 ], [ 0.052528, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0499138", "Lat": "0.0270000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.028796 ], [ 0.052528, 0.026994 ], [ 0.049911, 0.026994 ], [ 0.049911, 0.028796 ], [ 0.052528, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0525408", "Lat": "0.0306000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.032401 ], [ 0.055189, 0.030599 ], [ 0.052528, 0.030599 ], [ 0.052528, 0.032401 ], [ 0.055189, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0525408", "Lat": "0.0288000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.030599 ], [ 0.055189, 0.028796 ], [ 0.052528, 0.028796 ], [ 0.052528, 0.030599 ], [ 0.055189, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0270000", "KPI": 514, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.028796 ], [ 0.055189, 0.026994 ], [ 0.052528, 0.026994 ], [ 0.052528, 0.028796 ], [ 0.055189, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0252000", "KPI": 117, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.026994 ], [ 0.052528, 0.025191 ], [ 0.049911, 0.025191 ], [ 0.049911, 0.026994 ], [ 0.052528, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0499138", "Lat": "0.0234000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.025191 ], [ 0.052528, 0.023389 ], [ 0.049911, 0.023389 ], [ 0.049911, 0.025191 ], [ 0.052528, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0499138", "Lat": "0.0216000", "KPI": 468, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.023389 ], [ 0.052528, 0.021586 ], [ 0.049911, 0.021586 ], [ 0.049911, 0.023389 ], [ 0.052528, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0525408", "Lat": "0.0252000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.026994 ], [ 0.055189, 0.025191 ], [ 0.052528, 0.025191 ], [ 0.052528, 0.026994 ], [ 0.055189, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0525408", "Lat": "0.0234000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.025191 ], [ 0.055189, 0.023389 ], [ 0.052528, 0.023389 ], [ 0.052528, 0.025191 ], [ 0.055189, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.023389 ], [ 0.055189, 0.021586 ], [ 0.052528, 0.021586 ], [ 0.052528, 0.023389 ], [ 0.055189, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0551678", "Lat": "0.0414000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.043216 ], [ 0.057807, 0.041413 ], [ 0.055189, 0.041413 ], [ 0.055189, 0.043216 ], [ 0.057807, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0551678", "Lat": "0.0396000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.041413 ], [ 0.057807, 0.039611 ], [ 0.055189, 0.039611 ], [ 0.055189, 0.041413 ], [ 0.057807, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0551678", "Lat": "0.0378000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.039611 ], [ 0.057807, 0.037808 ], [ 0.055189, 0.037808 ], [ 0.055189, 0.039611 ], [ 0.057807, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0577949", "Lat": "0.0414000", "KPI": 889, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043216 ], [ 0.060425, 0.041413 ], [ 0.057807, 0.041413 ], [ 0.057807, 0.043216 ], [ 0.060425, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0577949", "Lat": "0.0396000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.041413 ], [ 0.060425, 0.039611 ], [ 0.057807, 0.039611 ], [ 0.057807, 0.041413 ], [ 0.060425, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0378000", "KPI": 960, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.039611 ], [ 0.060425, 0.037808 ], [ 0.057807, 0.037808 ], [ 0.057807, 0.039611 ], [ 0.060425, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0551678", "Lat": "0.0360000", "KPI": 816, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.037808 ], [ 0.057807, 0.036006 ], [ 0.055189, 0.036006 ], [ 0.055189, 0.037808 ], [ 0.057807, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0551678", "Lat": "0.0342000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.036006 ], [ 0.057807, 0.034204 ], [ 0.055189, 0.034204 ], [ 0.055189, 0.036006 ], [ 0.057807, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0551678", "Lat": "0.0324000", "KPI": 746, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.034204 ], [ 0.057807, 0.032401 ], [ 0.055189, 0.032401 ], [ 0.055189, 0.034204 ], [ 0.057807, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0577949", "Lat": "0.0360000", "KPI": 925, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.037808 ], [ 0.060425, 0.036006 ], [ 0.057807, 0.036006 ], [ 0.057807, 0.037808 ], [ 0.060425, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0577949", "Lat": "0.0342000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.036006 ], [ 0.060425, 0.034204 ], [ 0.057807, 0.034204 ], [ 0.057807, 0.036006 ], [ 0.060425, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0577949", "Lat": "0.0324000", "KPI": 410, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.034204 ], [ 0.060425, 0.032401 ], [ 0.057807, 0.032401 ], [ 0.057807, 0.034204 ], [ 0.060425, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0604219", "Lat": "0.0414000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.043216 ], [ 0.063043, 0.041413 ], [ 0.060425, 0.041413 ], [ 0.060425, 0.043216 ], [ 0.063043, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0604219", "Lat": "0.0396000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.041413 ], [ 0.063043, 0.039611 ], [ 0.060425, 0.039611 ], [ 0.060425, 0.041413 ], [ 0.063043, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0604219", "Lat": "0.0378000", "KPI": 139, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.039611 ], [ 0.063043, 0.037808 ], [ 0.060425, 0.037808 ], [ 0.060425, 0.039611 ], [ 0.063043, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0630490", "Lat": "0.0414000", "KPI": 266, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.043216 ], [ 0.065660, 0.041413 ], [ 0.063043, 0.041413 ], [ 0.063043, 0.043216 ], [ 0.065660, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0630490", "Lat": "0.0396000", "KPI": 574, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.041413 ], [ 0.065660, 0.039611 ], [ 0.063043, 0.039611 ], [ 0.063043, 0.041413 ], [ 0.065660, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0630490", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.039611 ], [ 0.065660, 0.037808 ], [ 0.063043, 0.037808 ], [ 0.063043, 0.039611 ], [ 0.065660, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0604219", "Lat": "0.0360000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.037808 ], [ 0.063043, 0.036006 ], [ 0.060425, 0.036006 ], [ 0.060425, 0.037808 ], [ 0.063043, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0604219", "Lat": "0.0342000", "KPI": 812, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.036006 ], [ 0.063043, 0.034204 ], [ 0.060425, 0.034204 ], [ 0.060425, 0.036006 ], [ 0.063043, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0604219", "Lat": "0.0324000", "KPI": 540, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.034204 ], [ 0.063043, 0.032401 ], [ 0.060425, 0.032401 ], [ 0.060425, 0.034204 ], [ 0.063043, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0630490", "Lat": "0.0360000", "KPI": 109, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.037808 ], [ 0.065660, 0.036006 ], [ 0.063043, 0.036006 ], [ 0.063043, 0.037808 ], [ 0.065660, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0630490", "Lat": "0.0342000", "KPI": 353, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.036006 ], [ 0.065660, 0.034204 ], [ 0.063043, 0.034204 ], [ 0.063043, 0.036006 ], [ 0.065660, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0630490", "Lat": "0.0324000", "KPI": 212, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.034204 ], [ 0.065660, 0.032401 ], [ 0.063043, 0.032401 ], [ 0.063043, 0.034204 ], [ 0.065660, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0551678", "Lat": "0.0306000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.032401 ], [ 0.057807, 0.030599 ], [ 0.055189, 0.030599 ], [ 0.055189, 0.032401 ], [ 0.057807, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0551678", "Lat": "0.0288000", "KPI": 851, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.030599 ], [ 0.057807, 0.028796 ], [ 0.055189, 0.028796 ], [ 0.055189, 0.030599 ], [ 0.057807, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0551678", "Lat": "0.0270000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.028796 ], [ 0.057807, 0.026994 ], [ 0.055189, 0.026994 ], [ 0.055189, 0.028796 ], [ 0.057807, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0577949", "Lat": "0.0306000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032401 ], [ 0.060425, 0.030599 ], [ 0.057807, 0.030599 ], [ 0.057807, 0.032401 ], [ 0.060425, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0577949", "Lat": "0.0288000", "KPI": 889, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.030599 ], [ 0.060425, 0.028796 ], [ 0.057807, 0.028796 ], [ 0.057807, 0.030599 ], [ 0.060425, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577949", "Lat": "0.0270000", "KPI": 421, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.028796 ], [ 0.060425, 0.026994 ], [ 0.057807, 0.026994 ], [ 0.057807, 0.028796 ], [ 0.060425, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0551678", "Lat": "0.0252000", "KPI": 736, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.026994 ], [ 0.057807, 0.025191 ], [ 0.055189, 0.025191 ], [ 0.055189, 0.026994 ], [ 0.057807, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0551678", "Lat": "0.0234000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.025191 ], [ 0.057807, 0.023389 ], [ 0.055189, 0.023389 ], [ 0.055189, 0.025191 ], [ 0.057807, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0551678", "Lat": "0.0216000", "KPI": 702, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.023389 ], [ 0.057807, 0.021586 ], [ 0.055189, 0.021586 ], [ 0.055189, 0.023389 ], [ 0.057807, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0577949", "Lat": "0.0252000", "KPI": 389, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.026994 ], [ 0.060425, 0.025191 ], [ 0.057807, 0.025191 ], [ 0.057807, 0.026994 ], [ 0.060425, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0234000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.025191 ], [ 0.060425, 0.023389 ], [ 0.057807, 0.023389 ], [ 0.057807, 0.025191 ], [ 0.060425, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0577949", "Lat": "0.0216000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.023389 ], [ 0.060425, 0.021586 ], [ 0.057807, 0.021586 ], [ 0.057807, 0.023389 ], [ 0.060425, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0604219", "Lat": "0.0306000", "KPI": 12, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.032401 ], [ 0.063043, 0.030599 ], [ 0.060425, 0.030599 ], [ 0.060425, 0.032401 ], [ 0.063043, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0604219", "Lat": "0.0288000", "KPI": 884, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.030599 ], [ 0.063043, 0.028796 ], [ 0.060425, 0.028796 ], [ 0.060425, 0.030599 ], [ 0.063043, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0604219", "Lat": "0.0270000", "KPI": 171, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.028796 ], [ 0.063043, 0.026994 ], [ 0.060425, 0.026994 ], [ 0.060425, 0.028796 ], [ 0.063043, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0630490", "Lat": "0.0306000", "KPI": 661, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.032401 ], [ 0.065660, 0.030599 ], [ 0.063043, 0.030599 ], [ 0.063043, 0.032401 ], [ 0.065660, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0630490", "Lat": "0.0288000", "KPI": 277, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.030599 ], [ 0.065660, 0.028796 ], [ 0.063043, 0.028796 ], [ 0.063043, 0.030599 ], [ 0.065660, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0630490", "Lat": "0.0270000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.028796 ], [ 0.065660, 0.026994 ], [ 0.063043, 0.026994 ], [ 0.063043, 0.028796 ], [ 0.065660, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0604219", "Lat": "0.0252000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.026994 ], [ 0.063043, 0.025191 ], [ 0.060425, 0.025191 ], [ 0.060425, 0.026994 ], [ 0.063043, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0604219", "Lat": "0.0234000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.025191 ], [ 0.063043, 0.023389 ], [ 0.060425, 0.023389 ], [ 0.060425, 0.025191 ], [ 0.063043, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0604219", "Lat": "0.0216000", "KPI": 677, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.023389 ], [ 0.063043, 0.021586 ], [ 0.060425, 0.021586 ], [ 0.060425, 0.023389 ], [ 0.063043, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0630490", "Lat": "0.0252000", "KPI": 979, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.026994 ], [ 0.065660, 0.025191 ], [ 0.063043, 0.025191 ], [ 0.063043, 0.026994 ], [ 0.065660, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0630490", "Lat": "0.0234000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.025191 ], [ 0.065660, 0.023389 ], [ 0.063043, 0.023389 ], [ 0.063043, 0.025191 ], [ 0.065660, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0630490", "Lat": "0.0216000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.023389 ], [ 0.065660, 0.021586 ], [ 0.063043, 0.021586 ], [ 0.063043, 0.023389 ], [ 0.065660, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0198000", "KPI": 352, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.021586 ], [ 0.047293, 0.019784 ], [ 0.044675, 0.019784 ], [ 0.044675, 0.021586 ], [ 0.047293, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0446597", "Lat": "0.0180000", "KPI": 655, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.019784 ], [ 0.047293, 0.017982 ], [ 0.044675, 0.017982 ], [ 0.044675, 0.019784 ], [ 0.047293, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0446597", "Lat": "0.0162000", "KPI": 160, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.017982 ], [ 0.047293, 0.016179 ], [ 0.044675, 0.016179 ], [ 0.044675, 0.017982 ], [ 0.047293, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0472867", "Lat": "0.0198000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.021586 ], [ 0.049911, 0.019784 ], [ 0.047293, 0.019784 ], [ 0.047293, 0.021586 ], [ 0.049911, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0472867", "Lat": "0.0180000", "KPI": 330, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.019784 ], [ 0.049911, 0.017982 ], [ 0.047293, 0.017982 ], [ 0.047293, 0.019784 ], [ 0.049911, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0472867", "Lat": "0.0162000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.017982 ], [ 0.049911, 0.016179 ], [ 0.047293, 0.016179 ], [ 0.047293, 0.017982 ], [ 0.049911, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0446597", "Lat": "0.0144000", "KPI": 356, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.016179 ], [ 0.047293, 0.014420 ], [ 0.044675, 0.014420 ], [ 0.044675, 0.016179 ], [ 0.047293, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0446597", "Lat": "0.0126000", "KPI": 307, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.014420 ], [ 0.047293, 0.012617 ], [ 0.044675, 0.012617 ], [ 0.044675, 0.014420 ], [ 0.047293, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0108000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.012617 ], [ 0.047293, 0.010815 ], [ 0.044675, 0.010815 ], [ 0.044675, 0.012617 ], [ 0.047293, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0472867", "Lat": "0.0144000", "KPI": 233, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.016179 ], [ 0.049911, 0.014420 ], [ 0.047293, 0.014420 ], [ 0.047293, 0.016179 ], [ 0.049911, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0472867", "Lat": "0.0126000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.014420 ], [ 0.049911, 0.012617 ], [ 0.047293, 0.012617 ], [ 0.047293, 0.014420 ], [ 0.049911, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0108000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.012617 ], [ 0.049911, 0.010815 ], [ 0.047293, 0.010815 ], [ 0.047293, 0.012617 ], [ 0.049911, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0499138", "Lat": "0.0198000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.021586 ], [ 0.052528, 0.019784 ], [ 0.049911, 0.019784 ], [ 0.049911, 0.021586 ], [ 0.052528, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0499138", "Lat": "0.0180000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.019784 ], [ 0.052528, 0.017982 ], [ 0.049911, 0.017982 ], [ 0.049911, 0.019784 ], [ 0.052528, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0499138", "Lat": "0.0162000", "KPI": 970, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.017982 ], [ 0.052528, 0.016179 ], [ 0.049911, 0.016179 ], [ 0.049911, 0.017982 ], [ 0.052528, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0525408", "Lat": "0.0198000", "KPI": 955, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.021586 ], [ 0.055189, 0.019784 ], [ 0.052528, 0.019784 ], [ 0.052528, 0.021586 ], [ 0.055189, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0525408", "Lat": "0.0180000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.019784 ], [ 0.055189, 0.017982 ], [ 0.052528, 0.017982 ], [ 0.052528, 0.019784 ], [ 0.055189, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0525408", "Lat": "0.0162000", "KPI": 187, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.017982 ], [ 0.055189, 0.016179 ], [ 0.052528, 0.016179 ], [ 0.052528, 0.017982 ], [ 0.055189, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499138", "Lat": "0.0144000", "KPI": 58, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.016179 ], [ 0.052528, 0.014420 ], [ 0.049911, 0.014420 ], [ 0.049911, 0.016179 ], [ 0.052528, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0499138", "Lat": "0.0126000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.014420 ], [ 0.052528, 0.012617 ], [ 0.049911, 0.012617 ], [ 0.049911, 0.014420 ], [ 0.052528, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499138", "Lat": "0.0108000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.012617 ], [ 0.052528, 0.010815 ], [ 0.049911, 0.010815 ], [ 0.049911, 0.012617 ], [ 0.052528, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0525408", "Lat": "0.0144000", "KPI": 119, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.016179 ], [ 0.055189, 0.014420 ], [ 0.052528, 0.014420 ], [ 0.052528, 0.016179 ], [ 0.055189, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0525408", "Lat": "0.0126000", "KPI": 419, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.014420 ], [ 0.055189, 0.012617 ], [ 0.052528, 0.012617 ], [ 0.052528, 0.014420 ], [ 0.055189, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.012617 ], [ 0.055189, 0.010815 ], [ 0.052528, 0.010815 ], [ 0.052528, 0.012617 ], [ 0.055189, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0446597", "Lat": "0.0090000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.010815 ], [ 0.047293, 0.009012 ], [ 0.044675, 0.009012 ], [ 0.044675, 0.010815 ], [ 0.047293, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0446597", "Lat": "0.0072000", "KPI": 398, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.009012 ], [ 0.047293, 0.007210 ], [ 0.044675, 0.007210 ], [ 0.044675, 0.009012 ], [ 0.047293, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0054000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.007210 ], [ 0.047293, 0.005407 ], [ 0.044675, 0.005407 ], [ 0.044675, 0.007210 ], [ 0.047293, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0090000", "KPI": 666, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.010815 ], [ 0.049911, 0.009012 ], [ 0.047293, 0.009012 ], [ 0.047293, 0.010815 ], [ 0.049911, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0472867", "Lat": "0.0072000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.009012 ], [ 0.049911, 0.007210 ], [ 0.047293, 0.007210 ], [ 0.047293, 0.009012 ], [ 0.049911, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.007210 ], [ 0.049911, 0.005407 ], [ 0.047293, 0.005407 ], [ 0.047293, 0.007210 ], [ 0.049911, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0446597", "Lat": "0.0036000", "KPI": 236, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.005407 ], [ 0.047293, 0.003605 ], [ 0.044675, 0.003605 ], [ 0.044675, 0.005407 ], [ 0.047293, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0018000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.003605 ], [ 0.047293, 0.001802 ], [ 0.044675, 0.001802 ], [ 0.044675, 0.003605 ], [ 0.047293, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0446597", "Lat": "0.0000000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.001802 ], [ 0.047293, 0.000000 ], [ 0.044675, 0.000000 ], [ 0.044675, 0.001802 ], [ 0.047293, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0472867", "Lat": "0.0036000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.005407 ], [ 0.049911, 0.003605 ], [ 0.047293, 0.003605 ], [ 0.047293, 0.005407 ], [ 0.049911, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0472867", "Lat": "0.0018000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.003605 ], [ 0.049911, 0.001802 ], [ 0.047293, 0.001802 ], [ 0.047293, 0.003605 ], [ 0.049911, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.001802 ], [ 0.049911, 0.000000 ], [ 0.047293, 0.000000 ], [ 0.047293, 0.001802 ], [ 0.049911, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0499138", "Lat": "0.0090000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.010815 ], [ 0.052528, 0.009012 ], [ 0.049911, 0.009012 ], [ 0.049911, 0.010815 ], [ 0.052528, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0499138", "Lat": "0.0072000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.009012 ], [ 0.052528, 0.007210 ], [ 0.049911, 0.007210 ], [ 0.049911, 0.009012 ], [ 0.052528, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499138", "Lat": "0.0054000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.007210 ], [ 0.052528, 0.005407 ], [ 0.049911, 0.005407 ], [ 0.049911, 0.007210 ], [ 0.052528, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0525408", "Lat": "0.0090000", "KPI": 657, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.010815 ], [ 0.055189, 0.009012 ], [ 0.052528, 0.009012 ], [ 0.052528, 0.010815 ], [ 0.055189, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0525408", "Lat": "0.0072000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.009012 ], [ 0.055189, 0.007210 ], [ 0.052528, 0.007210 ], [ 0.052528, 0.009012 ], [ 0.055189, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.007210 ], [ 0.055189, 0.005407 ], [ 0.052528, 0.005407 ], [ 0.052528, 0.007210 ], [ 0.055189, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0499138", "Lat": "0.0036000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.005407 ], [ 0.052528, 0.003605 ], [ 0.049911, 0.003605 ], [ 0.049911, 0.005407 ], [ 0.052528, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0499138", "Lat": "0.0018000", "KPI": 958, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.003605 ], [ 0.052528, 0.001802 ], [ 0.049911, 0.001802 ], [ 0.049911, 0.003605 ], [ 0.052528, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0000000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.001802 ], [ 0.052528, 0.000000 ], [ 0.049911, 0.000000 ], [ 0.049911, 0.001802 ], [ 0.052528, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0525408", "Lat": "0.0036000", "KPI": 406, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.005407 ], [ 0.055189, 0.003605 ], [ 0.052528, 0.003605 ], [ 0.052528, 0.005407 ], [ 0.055189, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525408", "Lat": "0.0018000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.003605 ], [ 0.055189, 0.001802 ], [ 0.052528, 0.001802 ], [ 0.052528, 0.003605 ], [ 0.055189, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.001802 ], [ 0.055189, 0.000000 ], [ 0.052528, 0.000000 ], [ 0.052528, 0.001802 ], [ 0.055189, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0551678", "Lat": "0.0198000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.021586 ], [ 0.057807, 0.019784 ], [ 0.055189, 0.019784 ], [ 0.055189, 0.021586 ], [ 0.057807, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0551678", "Lat": "0.0180000", "KPI": 137, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.019784 ], [ 0.057807, 0.017982 ], [ 0.055189, 0.017982 ], [ 0.055189, 0.019784 ], [ 0.057807, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0551678", "Lat": "0.0162000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.017982 ], [ 0.057807, 0.016179 ], [ 0.055189, 0.016179 ], [ 0.055189, 0.017982 ], [ 0.057807, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0577949", "Lat": "0.0198000", "KPI": 900, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021586 ], [ 0.060425, 0.019784 ], [ 0.057807, 0.019784 ], [ 0.057807, 0.021586 ], [ 0.060425, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0577949", "Lat": "0.0180000", "KPI": 560, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.019784 ], [ 0.060425, 0.017982 ], [ 0.057807, 0.017982 ], [ 0.057807, 0.019784 ], [ 0.060425, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577949", "Lat": "0.0162000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.017982 ], [ 0.060425, 0.016179 ], [ 0.057807, 0.016179 ], [ 0.057807, 0.017982 ], [ 0.060425, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0551678", "Lat": "0.0144000", "KPI": 902, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.016179 ], [ 0.057807, 0.014420 ], [ 0.055189, 0.014420 ], [ 0.055189, 0.016179 ], [ 0.057807, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0551678", "Lat": "0.0126000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.014420 ], [ 0.057807, 0.012617 ], [ 0.055189, 0.012617 ], [ 0.055189, 0.014420 ], [ 0.057807, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0551678", "Lat": "0.0108000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.012617 ], [ 0.057807, 0.010815 ], [ 0.055189, 0.010815 ], [ 0.055189, 0.012617 ], [ 0.057807, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0577949", "Lat": "0.0144000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016179 ], [ 0.060425, 0.014420 ], [ 0.057807, 0.014420 ], [ 0.057807, 0.016179 ], [ 0.060425, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577949", "Lat": "0.0126000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.014420 ], [ 0.060425, 0.012617 ], [ 0.057807, 0.012617 ], [ 0.057807, 0.014420 ], [ 0.060425, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0577949", "Lat": "0.0108000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.012617 ], [ 0.060425, 0.010815 ], [ 0.057807, 0.010815 ], [ 0.057807, 0.012617 ], [ 0.060425, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0604219", "Lat": "0.0198000", "KPI": 42, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.021586 ], [ 0.063043, 0.019784 ], [ 0.060425, 0.019784 ], [ 0.060425, 0.021586 ], [ 0.063043, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0604219", "Lat": "0.0180000", "KPI": 857, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.019784 ], [ 0.063043, 0.017982 ], [ 0.060425, 0.017982 ], [ 0.060425, 0.019784 ], [ 0.063043, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0604219", "Lat": "0.0162000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.017982 ], [ 0.063043, 0.016179 ], [ 0.060425, 0.016179 ], [ 0.060425, 0.017982 ], [ 0.063043, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0630490", "Lat": "0.0198000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.021586 ], [ 0.065660, 0.019784 ], [ 0.063043, 0.019784 ], [ 0.063043, 0.021586 ], [ 0.065660, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0630490", "Lat": "0.0180000", "KPI": 783, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.019784 ], [ 0.065660, 0.017982 ], [ 0.063043, 0.017982 ], [ 0.063043, 0.019784 ], [ 0.065660, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0630490", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.017982 ], [ 0.065660, 0.016179 ], [ 0.063043, 0.016179 ], [ 0.063043, 0.017982 ], [ 0.065660, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0604219", "Lat": "0.0144000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.016179 ], [ 0.063043, 0.014420 ], [ 0.060425, 0.014420 ], [ 0.060425, 0.016179 ], [ 0.063043, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0604219", "Lat": "0.0126000", "KPI": 183, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.014420 ], [ 0.063043, 0.012617 ], [ 0.060425, 0.012617 ], [ 0.060425, 0.014420 ], [ 0.063043, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0604219", "Lat": "0.0108000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.012617 ], [ 0.063043, 0.010815 ], [ 0.060425, 0.010815 ], [ 0.060425, 0.012617 ], [ 0.063043, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0630490", "Lat": "0.0144000", "KPI": 90, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.016179 ], [ 0.065660, 0.014420 ], [ 0.063043, 0.014420 ], [ 0.063043, 0.016179 ], [ 0.065660, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0630490", "Lat": "0.0126000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.014420 ], [ 0.065660, 0.012617 ], [ 0.063043, 0.012617 ], [ 0.063043, 0.014420 ], [ 0.065660, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0630490", "Lat": "0.0108000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.012617 ], [ 0.065660, 0.010815 ], [ 0.063043, 0.010815 ], [ 0.063043, 0.012617 ], [ 0.065660, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0551678", "Lat": "0.0090000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.010815 ], [ 0.057807, 0.009012 ], [ 0.055189, 0.009012 ], [ 0.055189, 0.010815 ], [ 0.057807, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0551678", "Lat": "0.0072000", "KPI": 672, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.009012 ], [ 0.057807, 0.007210 ], [ 0.055189, 0.007210 ], [ 0.055189, 0.009012 ], [ 0.057807, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551678", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.007210 ], [ 0.057807, 0.005407 ], [ 0.055189, 0.005407 ], [ 0.055189, 0.007210 ], [ 0.057807, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0577949", "Lat": "0.0090000", "KPI": 266, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010815 ], [ 0.060425, 0.009012 ], [ 0.057807, 0.009012 ], [ 0.057807, 0.010815 ], [ 0.060425, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0577949", "Lat": "0.0072000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.009012 ], [ 0.060425, 0.007210 ], [ 0.057807, 0.007210 ], [ 0.057807, 0.009012 ], [ 0.060425, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.007210 ], [ 0.060425, 0.005407 ], [ 0.057807, 0.005407 ], [ 0.057807, 0.007210 ], [ 0.060425, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0551678", "Lat": "0.0036000", "KPI": 832, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.005407 ], [ 0.057807, 0.003605 ], [ 0.055189, 0.003605 ], [ 0.055189, 0.005407 ], [ 0.057807, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551678", "Lat": "0.0018000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.003605 ], [ 0.057807, 0.001802 ], [ 0.055189, 0.001802 ], [ 0.055189, 0.003605 ], [ 0.057807, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0551678", "Lat": "0.0000000", "KPI": 910, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.001802 ], [ 0.057807, 0.000000 ], [ 0.055189, 0.000000 ], [ 0.055189, 0.001802 ], [ 0.057807, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0577949", "Lat": "0.0036000", "KPI": 49, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005407 ], [ 0.060425, 0.003605 ], [ 0.057807, 0.003605 ], [ 0.057807, 0.005407 ], [ 0.060425, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0577949", "Lat": "0.0018000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.003605 ], [ 0.060425, 0.001802 ], [ 0.057807, 0.001802 ], [ 0.057807, 0.003605 ], [ 0.060425, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.001802 ], [ 0.060425, 0.000000 ], [ 0.057807, 0.000000 ], [ 0.057807, 0.001802 ], [ 0.060425, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0604219", "Lat": "0.0090000", "KPI": 830, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.010815 ], [ 0.063043, 0.009012 ], [ 0.060425, 0.009012 ], [ 0.060425, 0.010815 ], [ 0.063043, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0604219", "Lat": "0.0072000", "KPI": 499, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.009012 ], [ 0.063043, 0.007210 ], [ 0.060425, 0.007210 ], [ 0.060425, 0.009012 ], [ 0.063043, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0604219", "Lat": "0.0054000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.007210 ], [ 0.063043, 0.005407 ], [ 0.060425, 0.005407 ], [ 0.060425, 0.007210 ], [ 0.063043, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0630490", "Lat": "0.0090000", "KPI": 77, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.010815 ], [ 0.065660, 0.009012 ], [ 0.063043, 0.009012 ], [ 0.063043, 0.010815 ], [ 0.065660, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0630490", "Lat": "0.0072000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.009012 ], [ 0.065660, 0.007210 ], [ 0.063043, 0.007210 ], [ 0.063043, 0.009012 ], [ 0.065660, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630490", "Lat": "0.0054000", "KPI": 647, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.007210 ], [ 0.065660, 0.005407 ], [ 0.063043, 0.005407 ], [ 0.063043, 0.007210 ], [ 0.065660, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0604219", "Lat": "0.0036000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.005407 ], [ 0.063043, 0.003605 ], [ 0.060425, 0.003605 ], [ 0.060425, 0.005407 ], [ 0.063043, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0604219", "Lat": "0.0018000", "KPI": 879, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.003605 ], [ 0.063043, 0.001802 ], [ 0.060425, 0.001802 ], [ 0.060425, 0.003605 ], [ 0.063043, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0604219", "Lat": "0.0000000", "KPI": 100, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.001802 ], [ 0.063043, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.001802 ], [ 0.063043, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0630490", "Lat": "0.0036000", "KPI": 328, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.005407 ], [ 0.065660, 0.003605 ], [ 0.063043, 0.003605 ], [ 0.063043, 0.005407 ], [ 0.065660, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630490", "Lat": "0.0018000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.003605 ], [ 0.065660, 0.001802 ], [ 0.063043, 0.001802 ], [ 0.063043, 0.003605 ], [ 0.065660, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0630490", "Lat": "0.0000000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.001802 ], [ 0.065660, 0.000000 ], [ 0.063043, 0.000000 ], [ 0.063043, 0.001802 ], [ 0.065660, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0656760", "Lat": "0.0414000", "KPI": 538, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.043216 ], [ 0.068321, 0.041413 ], [ 0.065660, 0.041413 ], [ 0.065660, 0.043216 ], [ 0.068321, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0656760", "Lat": "0.0396000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.041413 ], [ 0.068321, 0.039611 ], [ 0.065660, 0.039611 ], [ 0.065660, 0.041413 ], [ 0.068321, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0656760", "Lat": "0.0378000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.039611 ], [ 0.068321, 0.037808 ], [ 0.065660, 0.037808 ], [ 0.065660, 0.039611 ], [ 0.068321, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0683030", "Lat": "0.0414000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.043216 ], [ 0.070939, 0.041413 ], [ 0.068321, 0.041413 ], [ 0.068321, 0.043216 ], [ 0.070939, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0683030", "Lat": "0.0396000", "KPI": 730, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.041413 ], [ 0.070939, 0.039611 ], [ 0.068321, 0.039611 ], [ 0.068321, 0.041413 ], [ 0.070939, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0683030", "Lat": "0.0378000", "KPI": 314, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.039611 ], [ 0.070939, 0.037808 ], [ 0.068321, 0.037808 ], [ 0.068321, 0.039611 ], [ 0.070939, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0656760", "Lat": "0.0360000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.037808 ], [ 0.068321, 0.036006 ], [ 0.065660, 0.036006 ], [ 0.065660, 0.037808 ], [ 0.068321, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0656760", "Lat": "0.0342000", "KPI": 594, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.036006 ], [ 0.068321, 0.034204 ], [ 0.065660, 0.034204 ], [ 0.065660, 0.036006 ], [ 0.068321, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0656760", "Lat": "0.0324000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.034204 ], [ 0.068321, 0.032401 ], [ 0.065660, 0.032401 ], [ 0.065660, 0.034204 ], [ 0.068321, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0683030", "Lat": "0.0360000", "KPI": 554, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.037808 ], [ 0.070939, 0.036006 ], [ 0.068321, 0.036006 ], [ 0.068321, 0.037808 ], [ 0.070939, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0683030", "Lat": "0.0342000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.036006 ], [ 0.070939, 0.034204 ], [ 0.068321, 0.034204 ], [ 0.068321, 0.036006 ], [ 0.070939, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0683030", "Lat": "0.0324000", "KPI": 527, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.034204 ], [ 0.070939, 0.032401 ], [ 0.068321, 0.032401 ], [ 0.068321, 0.034204 ], [ 0.070939, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0709301", "Lat": "0.0414000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.043216 ], [ 0.073557, 0.041413 ], [ 0.070939, 0.041413 ], [ 0.070939, 0.043216 ], [ 0.073557, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0709301", "Lat": "0.0396000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.041413 ], [ 0.073557, 0.039611 ], [ 0.070939, 0.039611 ], [ 0.070939, 0.041413 ], [ 0.073557, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0378000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.039611 ], [ 0.073557, 0.037808 ], [ 0.070939, 0.037808 ], [ 0.070939, 0.039611 ], [ 0.073557, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0735571", "Lat": "0.0414000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.043216 ], [ 0.076175, 0.041413 ], [ 0.073557, 0.041413 ], [ 0.073557, 0.043216 ], [ 0.076175, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0735571", "Lat": "0.0396000", "KPI": 343, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.041413 ], [ 0.076175, 0.039611 ], [ 0.073557, 0.039611 ], [ 0.073557, 0.041413 ], [ 0.076175, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0735571", "Lat": "0.0378000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.039611 ], [ 0.076175, 0.037808 ], [ 0.073557, 0.037808 ], [ 0.073557, 0.039611 ], [ 0.076175, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0709301", "Lat": "0.0360000", "KPI": 552, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.037808 ], [ 0.073557, 0.036006 ], [ 0.070939, 0.036006 ], [ 0.070939, 0.037808 ], [ 0.073557, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0342000", "KPI": 328, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.036006 ], [ 0.073557, 0.034204 ], [ 0.070939, 0.034204 ], [ 0.070939, 0.036006 ], [ 0.073557, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709301", "Lat": "0.0324000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.034204 ], [ 0.073557, 0.032401 ], [ 0.070939, 0.032401 ], [ 0.070939, 0.034204 ], [ 0.073557, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0735571", "Lat": "0.0360000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.037808 ], [ 0.076175, 0.036006 ], [ 0.073557, 0.036006 ], [ 0.073557, 0.037808 ], [ 0.076175, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0735571", "Lat": "0.0342000", "KPI": 956, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.036006 ], [ 0.076175, 0.034204 ], [ 0.073557, 0.034204 ], [ 0.073557, 0.036006 ], [ 0.076175, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0735571", "Lat": "0.0324000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.034204 ], [ 0.076175, 0.032401 ], [ 0.073557, 0.032401 ], [ 0.073557, 0.034204 ], [ 0.076175, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0656760", "Lat": "0.0306000", "KPI": 601, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.032401 ], [ 0.068321, 0.030599 ], [ 0.065660, 0.030599 ], [ 0.065660, 0.032401 ], [ 0.068321, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0656760", "Lat": "0.0288000", "KPI": 91, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.030599 ], [ 0.068321, 0.028796 ], [ 0.065660, 0.028796 ], [ 0.065660, 0.030599 ], [ 0.068321, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0270000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.028796 ], [ 0.068321, 0.026994 ], [ 0.065660, 0.026994 ], [ 0.065660, 0.028796 ], [ 0.068321, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0683030", "Lat": "0.0306000", "KPI": 879, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.032401 ], [ 0.070939, 0.030599 ], [ 0.068321, 0.030599 ], [ 0.068321, 0.032401 ], [ 0.070939, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0683030", "Lat": "0.0288000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.030599 ], [ 0.070939, 0.028796 ], [ 0.068321, 0.028796 ], [ 0.068321, 0.030599 ], [ 0.070939, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0683030", "Lat": "0.0270000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.028796 ], [ 0.070939, 0.026994 ], [ 0.068321, 0.026994 ], [ 0.068321, 0.028796 ], [ 0.070939, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0656760", "Lat": "0.0252000", "KPI": 450, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.026994 ], [ 0.068321, 0.025191 ], [ 0.065660, 0.025191 ], [ 0.065660, 0.026994 ], [ 0.068321, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0656760", "Lat": "0.0234000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.025191 ], [ 0.068321, 0.023389 ], [ 0.065660, 0.023389 ], [ 0.065660, 0.025191 ], [ 0.068321, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.023389 ], [ 0.068321, 0.021586 ], [ 0.065660, 0.021586 ], [ 0.065660, 0.023389 ], [ 0.068321, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0683030", "Lat": "0.0252000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.026994 ], [ 0.070939, 0.025191 ], [ 0.068321, 0.025191 ], [ 0.068321, 0.026994 ], [ 0.070939, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0234000", "KPI": 635, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.025191 ], [ 0.070939, 0.023389 ], [ 0.068321, 0.023389 ], [ 0.068321, 0.025191 ], [ 0.070939, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0683030", "Lat": "0.0216000", "KPI": 526, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.023389 ], [ 0.070939, 0.021586 ], [ 0.068321, 0.021586 ], [ 0.068321, 0.023389 ], [ 0.070939, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0709301", "Lat": "0.0306000", "KPI": 100, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.032401 ], [ 0.073557, 0.030599 ], [ 0.070939, 0.030599 ], [ 0.070939, 0.032401 ], [ 0.073557, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0709301", "Lat": "0.0288000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.030599 ], [ 0.073557, 0.028796 ], [ 0.070939, 0.028796 ], [ 0.070939, 0.030599 ], [ 0.073557, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0270000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.028796 ], [ 0.073557, 0.026994 ], [ 0.070939, 0.026994 ], [ 0.070939, 0.028796 ], [ 0.073557, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0735571", "Lat": "0.0306000", "KPI": 959, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.032401 ], [ 0.076175, 0.030599 ], [ 0.073557, 0.030599 ], [ 0.073557, 0.032401 ], [ 0.076175, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0735571", "Lat": "0.0288000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.030599 ], [ 0.076175, 0.028796 ], [ 0.073557, 0.028796 ], [ 0.073557, 0.030599 ], [ 0.076175, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0735571", "Lat": "0.0270000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.028796 ], [ 0.076175, 0.026994 ], [ 0.073557, 0.026994 ], [ 0.073557, 0.028796 ], [ 0.076175, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0709301", "Lat": "0.0252000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.026994 ], [ 0.073557, 0.025191 ], [ 0.070939, 0.025191 ], [ 0.070939, 0.026994 ], [ 0.073557, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0709301", "Lat": "0.0234000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.025191 ], [ 0.073557, 0.023389 ], [ 0.070939, 0.023389 ], [ 0.070939, 0.025191 ], [ 0.073557, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0709301", "Lat": "0.0216000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.023389 ], [ 0.073557, 0.021586 ], [ 0.070939, 0.021586 ], [ 0.070939, 0.023389 ], [ 0.073557, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0735571", "Lat": "0.0252000", "KPI": 817, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.026994 ], [ 0.076175, 0.025191 ], [ 0.073557, 0.025191 ], [ 0.073557, 0.026994 ], [ 0.076175, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0735571", "Lat": "0.0234000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.025191 ], [ 0.076175, 0.023389 ], [ 0.073557, 0.023389 ], [ 0.073557, 0.025191 ], [ 0.076175, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0735571", "Lat": "0.0216000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.023389 ], [ 0.076175, 0.021586 ], [ 0.073557, 0.021586 ], [ 0.073557, 0.023389 ], [ 0.076175, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0761842", "Lat": "0.0414000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.043216 ], [ 0.078793, 0.041413 ], [ 0.076175, 0.041413 ], [ 0.076175, 0.043216 ], [ 0.078793, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0761842", "Lat": "0.0396000", "KPI": 389, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.041413 ], [ 0.078793, 0.039611 ], [ 0.076175, 0.039611 ], [ 0.076175, 0.041413 ], [ 0.078793, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761842", "Lat": "0.0378000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.039611 ], [ 0.078793, 0.037808 ], [ 0.076175, 0.037808 ], [ 0.076175, 0.039611 ], [ 0.078793, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0788112", "Lat": "0.0414000", "KPI": 308, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.043216 ], [ 0.081453, 0.041413 ], [ 0.078793, 0.041413 ], [ 0.078793, 0.043216 ], [ 0.081453, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0788112", "Lat": "0.0396000", "KPI": 766, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.041413 ], [ 0.081453, 0.039611 ], [ 0.078793, 0.039611 ], [ 0.078793, 0.041413 ], [ 0.081453, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0788112", "Lat": "0.0378000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.039611 ], [ 0.081453, 0.037808 ], [ 0.078793, 0.037808 ], [ 0.078793, 0.039611 ], [ 0.081453, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0761842", "Lat": "0.0360000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.037808 ], [ 0.078793, 0.036006 ], [ 0.076175, 0.036006 ], [ 0.076175, 0.037808 ], [ 0.078793, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0761842", "Lat": "0.0342000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.036006 ], [ 0.078793, 0.034204 ], [ 0.076175, 0.034204 ], [ 0.076175, 0.036006 ], [ 0.078793, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761842", "Lat": "0.0324000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.034204 ], [ 0.078793, 0.032401 ], [ 0.076175, 0.032401 ], [ 0.076175, 0.034204 ], [ 0.078793, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0788112", "Lat": "0.0360000", "KPI": 858, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.037808 ], [ 0.081453, 0.036006 ], [ 0.078793, 0.036006 ], [ 0.078793, 0.037808 ], [ 0.081453, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0788112", "Lat": "0.0342000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.036006 ], [ 0.081453, 0.034204 ], [ 0.078793, 0.034204 ], [ 0.078793, 0.036006 ], [ 0.081453, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0788112", "Lat": "0.0324000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.034204 ], [ 0.081453, 0.032401 ], [ 0.078793, 0.032401 ], [ 0.078793, 0.034204 ], [ 0.081453, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0814382", "Lat": "0.0414000", "KPI": 45, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.043216 ], [ 0.084071, 0.041413 ], [ 0.081453, 0.041413 ], [ 0.081453, 0.043216 ], [ 0.084071, 0.043216 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0814382", "Lat": "0.0396000", "KPI": 497, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.041413 ], [ 0.084071, 0.039611 ], [ 0.081453, 0.039611 ], [ 0.081453, 0.041413 ], [ 0.084071, 0.041413 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0814382", "Lat": "0.0378000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.039611 ], [ 0.084071, 0.037808 ], [ 0.081453, 0.037808 ], [ 0.081453, 0.039611 ], [ 0.084071, 0.039611 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0814382", "Lat": "0.0360000", "KPI": 208, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.037808 ], [ 0.084071, 0.036006 ], [ 0.081453, 0.036006 ], [ 0.081453, 0.037808 ], [ 0.084071, 0.037808 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0814382", "Lat": "0.0342000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.036006 ], [ 0.084071, 0.034204 ], [ 0.081453, 0.034204 ], [ 0.081453, 0.036006 ], [ 0.084071, 0.036006 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0814382", "Lat": "0.0324000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.034204 ], [ 0.084071, 0.032401 ], [ 0.081453, 0.032401 ], [ 0.081453, 0.034204 ], [ 0.084071, 0.034204 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0761842", "Lat": "0.0306000", "KPI": 774, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.032401 ], [ 0.078793, 0.030599 ], [ 0.076175, 0.030599 ], [ 0.076175, 0.032401 ], [ 0.078793, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0761842", "Lat": "0.0288000", "KPI": 149, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.030599 ], [ 0.078793, 0.028796 ], [ 0.076175, 0.028796 ], [ 0.076175, 0.030599 ], [ 0.078793, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0761842", "Lat": "0.0270000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.028796 ], [ 0.078793, 0.026994 ], [ 0.076175, 0.026994 ], [ 0.076175, 0.028796 ], [ 0.078793, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0788112", "Lat": "0.0306000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.032401 ], [ 0.081453, 0.030599 ], [ 0.078793, 0.030599 ], [ 0.078793, 0.032401 ], [ 0.081453, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0788112", "Lat": "0.0288000", "KPI": 973, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.030599 ], [ 0.081453, 0.028796 ], [ 0.078793, 0.028796 ], [ 0.078793, 0.030599 ], [ 0.081453, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0788112", "Lat": "0.0270000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.028796 ], [ 0.081453, 0.026994 ], [ 0.078793, 0.026994 ], [ 0.078793, 0.028796 ], [ 0.081453, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0761842", "Lat": "0.0252000", "KPI": 578, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.026994 ], [ 0.078793, 0.025191 ], [ 0.076175, 0.025191 ], [ 0.076175, 0.026994 ], [ 0.078793, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0761842", "Lat": "0.0234000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.025191 ], [ 0.078793, 0.023389 ], [ 0.076175, 0.023389 ], [ 0.076175, 0.025191 ], [ 0.078793, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.023389 ], [ 0.078793, 0.021586 ], [ 0.076175, 0.021586 ], [ 0.076175, 0.023389 ], [ 0.078793, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0788112", "Lat": "0.0252000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.026994 ], [ 0.081453, 0.025191 ], [ 0.078793, 0.025191 ], [ 0.078793, 0.026994 ], [ 0.081453, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0788112", "Lat": "0.0234000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.025191 ], [ 0.081453, 0.023389 ], [ 0.078793, 0.023389 ], [ 0.078793, 0.025191 ], [ 0.081453, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0788112", "Lat": "0.0216000", "KPI": 593, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.023389 ], [ 0.081453, 0.021586 ], [ 0.078793, 0.021586 ], [ 0.078793, 0.023389 ], [ 0.081453, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0306000", "KPI": 838, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.032401 ], [ 0.084071, 0.030599 ], [ 0.081453, 0.030599 ], [ 0.081453, 0.032401 ], [ 0.084071, 0.032401 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0814382", "Lat": "0.0288000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.030599 ], [ 0.084071, 0.028796 ], [ 0.081453, 0.028796 ], [ 0.081453, 0.030599 ], [ 0.084071, 0.030599 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814382", "Lat": "0.0270000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.028796 ], [ 0.084071, 0.026994 ], [ 0.081453, 0.026994 ], [ 0.081453, 0.028796 ], [ 0.084071, 0.028796 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0252000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.026994 ], [ 0.084071, 0.025191 ], [ 0.081453, 0.025191 ], [ 0.081453, 0.026994 ], [ 0.084071, 0.026994 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0234000", "KPI": 267, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.025191 ], [ 0.084071, 0.023389 ], [ 0.081453, 0.023389 ], [ 0.081453, 0.025191 ], [ 0.084071, 0.025191 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0814382", "Lat": "0.0216000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.023389 ], [ 0.084071, 0.021586 ], [ 0.081453, 0.021586 ], [ 0.081453, 0.023389 ], [ 0.084071, 0.023389 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0656760", "Lat": "0.0198000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.021586 ], [ 0.068321, 0.019784 ], [ 0.065660, 0.019784 ], [ 0.065660, 0.021586 ], [ 0.068321, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0656760", "Lat": "0.0180000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.019784 ], [ 0.068321, 0.017982 ], [ 0.065660, 0.017982 ], [ 0.065660, 0.019784 ], [ 0.068321, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656760", "Lat": "0.0162000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.017982 ], [ 0.068321, 0.016179 ], [ 0.065660, 0.016179 ], [ 0.065660, 0.017982 ], [ 0.068321, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0683030", "Lat": "0.0198000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.021586 ], [ 0.070939, 0.019784 ], [ 0.068321, 0.019784 ], [ 0.068321, 0.021586 ], [ 0.070939, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0683030", "Lat": "0.0180000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.019784 ], [ 0.070939, 0.017982 ], [ 0.068321, 0.017982 ], [ 0.068321, 0.019784 ], [ 0.070939, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0683030", "Lat": "0.0162000", "KPI": 940, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.017982 ], [ 0.070939, 0.016179 ], [ 0.068321, 0.016179 ], [ 0.068321, 0.017982 ], [ 0.070939, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0656760", "Lat": "0.0144000", "KPI": 697, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.016179 ], [ 0.068321, 0.014420 ], [ 0.065660, 0.014420 ], [ 0.065660, 0.016179 ], [ 0.068321, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0656760", "Lat": "0.0126000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.014420 ], [ 0.068321, 0.012617 ], [ 0.065660, 0.012617 ], [ 0.065660, 0.014420 ], [ 0.068321, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.012617 ], [ 0.068321, 0.010815 ], [ 0.065660, 0.010815 ], [ 0.065660, 0.012617 ], [ 0.068321, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683030", "Lat": "0.0144000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.016179 ], [ 0.070939, 0.014420 ], [ 0.068321, 0.014420 ], [ 0.068321, 0.016179 ], [ 0.070939, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0683030", "Lat": "0.0126000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.014420 ], [ 0.070939, 0.012617 ], [ 0.068321, 0.012617 ], [ 0.068321, 0.014420 ], [ 0.070939, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0683030", "Lat": "0.0108000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.012617 ], [ 0.070939, 0.010815 ], [ 0.068321, 0.010815 ], [ 0.068321, 0.012617 ], [ 0.070939, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0709301", "Lat": "0.0198000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.021586 ], [ 0.073557, 0.019784 ], [ 0.070939, 0.019784 ], [ 0.070939, 0.021586 ], [ 0.073557, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0709301", "Lat": "0.0180000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.019784 ], [ 0.073557, 0.017982 ], [ 0.070939, 0.017982 ], [ 0.070939, 0.019784 ], [ 0.073557, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0162000", "KPI": 990, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.017982 ], [ 0.073557, 0.016179 ], [ 0.070939, 0.016179 ], [ 0.070939, 0.017982 ], [ 0.073557, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0735571", "Lat": "0.0198000", "KPI": 832, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.021586 ], [ 0.076175, 0.019784 ], [ 0.073557, 0.019784 ], [ 0.073557, 0.021586 ], [ 0.076175, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0735571", "Lat": "0.0180000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.019784 ], [ 0.076175, 0.017982 ], [ 0.073557, 0.017982 ], [ 0.073557, 0.019784 ], [ 0.076175, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0735571", "Lat": "0.0162000", "KPI": 608, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.017982 ], [ 0.076175, 0.016179 ], [ 0.073557, 0.016179 ], [ 0.073557, 0.017982 ], [ 0.076175, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0144000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.016179 ], [ 0.073557, 0.014420 ], [ 0.070939, 0.014420 ], [ 0.070939, 0.016179 ], [ 0.073557, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0709301", "Lat": "0.0126000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.014420 ], [ 0.073557, 0.012617 ], [ 0.070939, 0.012617 ], [ 0.070939, 0.014420 ], [ 0.073557, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0108000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.012617 ], [ 0.073557, 0.010815 ], [ 0.070939, 0.010815 ], [ 0.070939, 0.012617 ], [ 0.073557, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735571", "Lat": "0.0144000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.016179 ], [ 0.076175, 0.014420 ], [ 0.073557, 0.014420 ], [ 0.073557, 0.016179 ], [ 0.076175, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0735571", "Lat": "0.0126000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.014420 ], [ 0.076175, 0.012617 ], [ 0.073557, 0.012617 ], [ 0.073557, 0.014420 ], [ 0.076175, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0735571", "Lat": "0.0108000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.012617 ], [ 0.076175, 0.010815 ], [ 0.073557, 0.010815 ], [ 0.073557, 0.012617 ], [ 0.076175, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0656760", "Lat": "0.0090000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.010815 ], [ 0.068321, 0.009012 ], [ 0.065660, 0.009012 ], [ 0.065660, 0.010815 ], [ 0.068321, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0656760", "Lat": "0.0072000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.009012 ], [ 0.068321, 0.007210 ], [ 0.065660, 0.007210 ], [ 0.065660, 0.009012 ], [ 0.068321, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.007210 ], [ 0.068321, 0.005407 ], [ 0.065660, 0.005407 ], [ 0.065660, 0.007210 ], [ 0.068321, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0683030", "Lat": "0.0090000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.010815 ], [ 0.070939, 0.009012 ], [ 0.068321, 0.009012 ], [ 0.068321, 0.010815 ], [ 0.070939, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0683030", "Lat": "0.0072000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.009012 ], [ 0.070939, 0.007210 ], [ 0.068321, 0.007210 ], [ 0.068321, 0.009012 ], [ 0.070939, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0683030", "Lat": "0.0054000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.007210 ], [ 0.070939, 0.005407 ], [ 0.068321, 0.005407 ], [ 0.068321, 0.007210 ], [ 0.070939, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0656760", "Lat": "0.0036000", "KPI": 549, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.005407 ], [ 0.068321, 0.003605 ], [ 0.065660, 0.003605 ], [ 0.065660, 0.005407 ], [ 0.068321, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656760", "Lat": "0.0018000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.003605 ], [ 0.068321, 0.001802 ], [ 0.065660, 0.001802 ], [ 0.065660, 0.003605 ], [ 0.068321, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.001802 ], [ 0.068321, 0.000000 ], [ 0.065660, 0.000000 ], [ 0.065660, 0.001802 ], [ 0.068321, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0683030", "Lat": "0.0036000", "KPI": 939, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.005407 ], [ 0.070939, 0.003605 ], [ 0.068321, 0.003605 ], [ 0.068321, 0.005407 ], [ 0.070939, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0683030", "Lat": "0.0018000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.003605 ], [ 0.070939, 0.001802 ], [ 0.068321, 0.001802 ], [ 0.068321, 0.003605 ], [ 0.070939, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0000000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.001802 ], [ 0.070939, 0.000000 ], [ 0.068321, 0.000000 ], [ 0.068321, 0.001802 ], [ 0.070939, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0709301", "Lat": "0.0090000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.010815 ], [ 0.073557, 0.009012 ], [ 0.070939, 0.009012 ], [ 0.070939, 0.010815 ], [ 0.073557, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0709301", "Lat": "0.0072000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.009012 ], [ 0.073557, 0.007210 ], [ 0.070939, 0.007210 ], [ 0.070939, 0.009012 ], [ 0.073557, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.007210 ], [ 0.073557, 0.005407 ], [ 0.070939, 0.005407 ], [ 0.070939, 0.007210 ], [ 0.073557, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0735571", "Lat": "0.0090000", "KPI": 940, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.010815 ], [ 0.076175, 0.009012 ], [ 0.073557, 0.009012 ], [ 0.073557, 0.010815 ], [ 0.076175, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735571", "Lat": "0.0072000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.009012 ], [ 0.076175, 0.007210 ], [ 0.073557, 0.007210 ], [ 0.073557, 0.009012 ], [ 0.076175, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0735571", "Lat": "0.0054000", "KPI": 859, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.007210 ], [ 0.076175, 0.005407 ], [ 0.073557, 0.005407 ], [ 0.073557, 0.007210 ], [ 0.076175, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0709301", "Lat": "0.0036000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.005407 ], [ 0.073557, 0.003605 ], [ 0.070939, 0.003605 ], [ 0.070939, 0.005407 ], [ 0.073557, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0709301", "Lat": "0.0018000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.003605 ], [ 0.073557, 0.001802 ], [ 0.070939, 0.001802 ], [ 0.070939, 0.003605 ], [ 0.073557, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.001802 ], [ 0.073557, 0.000000 ], [ 0.070939, 0.000000 ], [ 0.070939, 0.001802 ], [ 0.073557, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0735571", "Lat": "0.0036000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.005407 ], [ 0.076175, 0.003605 ], [ 0.073557, 0.003605 ], [ 0.073557, 0.005407 ], [ 0.076175, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0735571", "Lat": "0.0018000", "KPI": 931, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.003605 ], [ 0.076175, 0.001802 ], [ 0.073557, 0.001802 ], [ 0.073557, 0.003605 ], [ 0.076175, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0000000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.001802 ], [ 0.076175, 0.000000 ], [ 0.073557, 0.000000 ], [ 0.073557, 0.001802 ], [ 0.076175, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0761842", "Lat": "0.0198000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.021586 ], [ 0.078793, 0.019784 ], [ 0.076175, 0.019784 ], [ 0.076175, 0.021586 ], [ 0.078793, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0761842", "Lat": "0.0180000", "KPI": 621, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.019784 ], [ 0.078793, 0.017982 ], [ 0.076175, 0.017982 ], [ 0.076175, 0.019784 ], [ 0.078793, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0761842", "Lat": "0.0162000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.017982 ], [ 0.078793, 0.016179 ], [ 0.076175, 0.016179 ], [ 0.076175, 0.017982 ], [ 0.078793, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0788112", "Lat": "0.0198000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.021586 ], [ 0.081453, 0.019784 ], [ 0.078793, 0.019784 ], [ 0.078793, 0.021586 ], [ 0.081453, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0788112", "Lat": "0.0180000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.019784 ], [ 0.081453, 0.017982 ], [ 0.078793, 0.017982 ], [ 0.078793, 0.019784 ], [ 0.081453, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0788112", "Lat": "0.0162000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.017982 ], [ 0.081453, 0.016179 ], [ 0.078793, 0.016179 ], [ 0.078793, 0.017982 ], [ 0.081453, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0761842", "Lat": "0.0144000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.016179 ], [ 0.078793, 0.014420 ], [ 0.076175, 0.014420 ], [ 0.076175, 0.016179 ], [ 0.078793, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0761842", "Lat": "0.0126000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.014420 ], [ 0.078793, 0.012617 ], [ 0.076175, 0.012617 ], [ 0.076175, 0.014420 ], [ 0.078793, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.012617 ], [ 0.078793, 0.010815 ], [ 0.076175, 0.010815 ], [ 0.076175, 0.012617 ], [ 0.078793, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0788112", "Lat": "0.0144000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.016179 ], [ 0.081453, 0.014420 ], [ 0.078793, 0.014420 ], [ 0.078793, 0.016179 ], [ 0.081453, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0788112", "Lat": "0.0126000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.014420 ], [ 0.081453, 0.012617 ], [ 0.078793, 0.012617 ], [ 0.078793, 0.014420 ], [ 0.081453, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0788112", "Lat": "0.0108000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.012617 ], [ 0.081453, 0.010815 ], [ 0.078793, 0.010815 ], [ 0.078793, 0.012617 ], [ 0.081453, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0814382", "Lat": "0.0198000", "KPI": 651, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.021586 ], [ 0.084071, 0.019784 ], [ 0.081453, 0.019784 ], [ 0.081453, 0.021586 ], [ 0.084071, 0.021586 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0814382", "Lat": "0.0180000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.019784 ], [ 0.084071, 0.017982 ], [ 0.081453, 0.017982 ], [ 0.081453, 0.019784 ], [ 0.084071, 0.019784 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0162000", "KPI": 59, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.017982 ], [ 0.084071, 0.016179 ], [ 0.081453, 0.016179 ], [ 0.081453, 0.017982 ], [ 0.084071, 0.017982 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0814382", "Lat": "0.0144000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.016179 ], [ 0.084071, 0.014420 ], [ 0.081453, 0.014420 ], [ 0.081453, 0.016179 ], [ 0.084071, 0.016179 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0814382", "Lat": "0.0126000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.014420 ], [ 0.084071, 0.012617 ], [ 0.081453, 0.012617 ], [ 0.081453, 0.014420 ], [ 0.084071, 0.014420 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0814382", "Lat": "0.0108000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.012617 ], [ 0.084071, 0.010815 ], [ 0.081453, 0.010815 ], [ 0.081453, 0.012617 ], [ 0.084071, 0.012617 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0761842", "Lat": "0.0090000", "KPI": 590, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.010815 ], [ 0.078793, 0.009012 ], [ 0.076175, 0.009012 ], [ 0.076175, 0.010815 ], [ 0.078793, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0761842", "Lat": "0.0072000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.009012 ], [ 0.078793, 0.007210 ], [ 0.076175, 0.007210 ], [ 0.076175, 0.009012 ], [ 0.078793, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.007210 ], [ 0.078793, 0.005407 ], [ 0.076175, 0.005407 ], [ 0.076175, 0.007210 ], [ 0.078793, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0788112", "Lat": "0.0090000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.010815 ], [ 0.081453, 0.009012 ], [ 0.078793, 0.009012 ], [ 0.078793, 0.010815 ], [ 0.081453, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0788112", "Lat": "0.0072000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.009012 ], [ 0.081453, 0.007210 ], [ 0.078793, 0.007210 ], [ 0.078793, 0.009012 ], [ 0.081453, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0788112", "Lat": "0.0054000", "KPI": 175, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.007210 ], [ 0.081453, 0.005407 ], [ 0.078793, 0.005407 ], [ 0.078793, 0.007210 ], [ 0.081453, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0761842", "Lat": "0.0036000", "KPI": 954, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.005407 ], [ 0.078793, 0.003605 ], [ 0.076175, 0.003605 ], [ 0.076175, 0.005407 ], [ 0.078793, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761842", "Lat": "0.0018000", "KPI": 458, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.003605 ], [ 0.078793, 0.001802 ], [ 0.076175, 0.001802 ], [ 0.076175, 0.003605 ], [ 0.078793, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.001802 ], [ 0.078793, 0.000000 ], [ 0.076175, 0.000000 ], [ 0.076175, 0.001802 ], [ 0.078793, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0788112", "Lat": "0.0036000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.005407 ], [ 0.081453, 0.003605 ], [ 0.078793, 0.003605 ], [ 0.078793, 0.005407 ], [ 0.081453, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0788112", "Lat": "0.0018000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.003605 ], [ 0.081453, 0.001802 ], [ 0.078793, 0.001802 ], [ 0.078793, 0.003605 ], [ 0.081453, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0000000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.001802 ], [ 0.081453, 0.000000 ], [ 0.078793, 0.000000 ], [ 0.078793, 0.001802 ], [ 0.081453, 0.001802 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0814382", "Lat": "0.0090000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.010815 ], [ 0.084071, 0.009012 ], [ 0.081453, 0.009012 ], [ 0.081453, 0.010815 ], [ 0.084071, 0.010815 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0814382", "Lat": "0.0072000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.009012 ], [ 0.084071, 0.007210 ], [ 0.081453, 0.007210 ], [ 0.081453, 0.009012 ], [ 0.084071, 0.009012 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.007210 ], [ 0.084071, 0.005407 ], [ 0.081453, 0.005407 ], [ 0.081453, 0.007210 ], [ 0.084071, 0.007210 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0814382", "Lat": "0.0036000", "KPI": 285, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.005407 ], [ 0.084071, 0.003605 ], [ 0.081453, 0.003605 ], [ 0.081453, 0.005407 ], [ 0.084071, 0.005407 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0018000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.003605 ], [ 0.084071, 0.001802 ], [ 0.081453, 0.001802 ], [ 0.081453, 0.003605 ], [ 0.084071, 0.003605 ] ] ] } } +, +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.001802 ], [ 0.084071, 0.000000 ], [ 0.081453, 0.000000 ], [ 0.081453, 0.001802 ], [ 0.084071, 0.001802 ] ] ] } } +] } +] } +] } diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json index 38653c2a3..35f7b6307 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json @@ -12,1371 +12,1363 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -111.093750, 75.845169 ], [ -111.093750, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 75.845169 ], [ -105.468750, 75.845169 ], [ -105.468750, 75.140778 ], [ -106.875000, 75.140778 ], [ -106.875000, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -111.093750, 74.775843 ], [ -111.093750, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.497157 ], [ -116.718750, 75.497157 ], [ -116.718750, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 75.845169 ], [ -111.093750, 75.845169 ] ], [ [ -111.093750, 75.845169 ], [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.845169 ], [ -111.093750, 75.845169 ] ] ], [ [ [ -64.687500, 44.087585 ], [ -64.687500, 43.068888 ], [ -66.093750, 43.068888 ], [ -66.093750, 44.087585 ], [ -64.687500, 44.087585 ] ] ], [ [ [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ] ] ], [ [ [ -105.468750, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.226700 ] ] ], [ [ [ -57.656250, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 50.736455 ], [ -64.687500, 50.736455 ], [ -64.687500, 49.837982 ], [ -67.500000, 49.837982 ], [ -67.500000, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 47.989922 ], [ -70.312500, 47.989922 ], [ -70.312500, 47.040182 ], [ -70.312500, 45.089036 ], [ -75.937500, 45.089036 ], [ -75.937500, 44.087585 ], [ -78.750000, 44.087585 ], [ -78.750000, 42.032974 ], [ -82.968750, 42.032974 ], [ -82.968750, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.989922 ], [ -94.218750, 47.989922 ], [ -94.218750, 49.837982 ], [ -95.625000, 49.837982 ], [ -95.625000, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 47.989922 ], [ -125.156250, 47.989922 ], [ -125.156250, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 50.736455 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.330873 ], [ -130.781250, 53.330873 ], [ -130.781250, 54.977614 ], [ -129.375000, 54.977614 ], [ -129.375000, 55.776573 ], [ -132.187500, 55.776573 ], [ -132.187500, 57.326521 ], [ -133.593750, 57.326521 ], [ -133.593750, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 69.657086 ], [ -139.218750, 69.657086 ], [ -139.218750, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 68.656555 ], [ -135.000000, 68.656555 ], [ -135.000000, 69.657086 ], [ -130.781250, 69.657086 ], [ -130.781250, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.162558 ], [ -118.125000, 69.162558 ], [ -118.125000, 68.656555 ], [ -115.312500, 68.656555 ], [ -115.312500, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 70.140364 ], [ -113.906250, 70.140364 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 71.074056 ], [ -119.531250, 71.074056 ], [ -119.531250, 71.965388 ], [ -120.937500, 71.965388 ], [ -120.937500, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -126.562500, 71.524909 ], [ -126.562500, 71.965388 ], [ -125.156250, 71.965388 ], [ -125.156250, 73.226700 ], [ -123.750000, 73.226700 ], [ -123.750000, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.402163 ], [ -119.531250, 74.402163 ], [ -119.531250, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -115.312500, 73.627789 ], [ -115.312500, 73.226700 ], [ -113.906250, 73.226700 ], [ -113.906250, 72.816074 ], [ -112.500000, 72.816074 ], [ -112.500000, 72.395706 ], [ -109.687500, 72.395706 ], [ -109.687500, 71.965388 ], [ -108.281250, 71.965388 ], [ -108.281250, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 71.074056 ], [ -104.062500, 71.074056 ], [ -104.062500, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -102.656250, 69.657086 ], [ -102.656250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.138852 ], [ -102.656250, 68.138852 ], [ -102.656250, 67.609221 ], [ -98.437500, 67.609221 ], [ -98.437500, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 69.162558 ], [ -98.437500, 69.162558 ], [ -98.437500, 69.657086 ], [ -97.031250, 69.657086 ], [ -97.031250, 71.074056 ], [ -99.843750, 71.074056 ], [ -99.843750, 71.524909 ], [ -101.250000, 71.524909 ], [ -101.250000, 71.965388 ], [ -102.656250, 71.965388 ], [ -102.656250, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.627789 ], [ -97.031250, 73.627789 ], [ -97.031250, 73.226700 ], [ -98.437500, 73.226700 ], [ -98.437500, 72.395706 ], [ -97.031250, 72.395706 ], [ -97.031250, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 71.965388 ], [ -95.625000, 74.019543 ], [ -90.000000, 74.019543 ], [ -90.000000, 73.226700 ], [ -88.593750, 73.226700 ], [ -88.593750, 73.627789 ], [ -85.781250, 73.627789 ], [ -85.781250, 73.226700 ], [ -87.187500, 73.226700 ], [ -87.187500, 72.816074 ], [ -84.375000, 72.816074 ], [ -84.375000, 73.226700 ], [ -81.562500, 73.226700 ], [ -80.156250, 73.226700 ], [ -80.156250, 73.627789 ], [ -78.750000, 73.627789 ], [ -78.750000, 73.226700 ], [ -75.937500, 73.226700 ], [ -75.937500, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 71.965388 ], [ -78.750000, 71.965388 ], [ -78.750000, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -71.718750, 71.524909 ], [ -71.718750, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.140364 ], [ -67.500000, 70.140364 ], [ -67.500000, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.609221 ], [ -64.687500, 67.609221 ], [ -64.687500, 67.067433 ], [ -61.875000, 67.067433 ], [ -61.875000, 65.366837 ], [ -63.281250, 65.366837 ], [ -63.281250, 64.774125 ], [ -64.687500, 64.774125 ], [ -64.687500, 65.946472 ], [ -66.093750, 65.946472 ], [ -66.093750, 66.513260 ], [ -67.500000, 66.513260 ], [ -67.500000, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.168107 ], [ -64.687500, 64.168107 ], [ -64.687500, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.606396 ], [ -68.906250, 61.606396 ], [ -68.906250, 62.267923 ], [ -71.718750, 62.267923 ], [ -71.718750, 63.548552 ], [ -73.125000, 63.548552 ], [ -73.125000, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -77.343750, 64.774125 ], [ -77.343750, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 68.138852 ], [ -74.531250, 68.138852 ], [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -77.343750, 69.162558 ], [ -77.343750, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.548552 ], [ -91.406250, 63.548552 ], [ -91.406250, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -94.218750, 61.606396 ], [ -94.218750, 58.813742 ], [ -92.812500, 58.813742 ], [ -92.812500, 57.326521 ], [ -91.406250, 57.326521 ], [ -91.406250, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 54.977614 ], [ -82.968750, 54.977614 ], [ -82.968750, 53.330873 ], [ -81.562500, 53.330873 ], [ -81.562500, 51.618017 ], [ -78.750000, 51.618017 ], [ -78.750000, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.977614 ], [ -77.343750, 54.977614 ], [ -77.343750, 55.776573 ], [ -75.937500, 55.776573 ], [ -75.937500, 57.326521 ], [ -77.343750, 57.326521 ], [ -77.343750, 58.077876 ], [ -78.750000, 58.077876 ], [ -78.750000, 58.813742 ], [ -77.343750, 58.813742 ], [ -77.343750, 61.606396 ], [ -78.750000, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -78.750000, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 60.930432 ], [ -68.906250, 60.930432 ], [ -68.906250, 60.239811 ], [ -70.312500, 60.239811 ], [ -70.312500, 59.534318 ], [ -68.906250, 59.534318 ], [ -68.906250, 58.077876 ], [ -66.093750, 58.077876 ], [ -66.093750, 58.813742 ], [ -64.687500, 58.813742 ], [ -64.687500, 59.534318 ], [ -63.281250, 59.534318 ], [ -63.281250, 58.813742 ], [ -61.875000, 58.813742 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.250000, 54.162434 ], [ -56.250000, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 50.736455 ] ], [ [ -84.375000, 69.657086 ], [ -84.375000, 70.140364 ], [ -88.593750, 70.140364 ], [ -88.593750, 71.074056 ], [ -90.000000, 71.074056 ], [ -90.000000, 73.226700 ], [ -91.406250, 73.226700 ], [ -91.406250, 72.816074 ], [ -92.812500, 72.816074 ], [ -92.812500, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.965388 ], [ -94.218750, 71.524909 ], [ -92.812500, 71.524909 ], [ -92.812500, 70.612614 ], [ -91.406250, 70.612614 ], [ -91.406250, 69.657086 ], [ -90.000000, 69.657086 ], [ -90.000000, 68.656555 ], [ -88.593750, 68.656555 ], [ -88.593750, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.609221 ], [ -85.781250, 67.609221 ], [ -85.781250, 69.657086 ], [ -84.375000, 69.657086 ] ], [ [ -97.031250, 68.656555 ], [ -97.031250, 68.138852 ], [ -94.218750, 68.138852 ], [ -94.218750, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 68.656555 ], [ -97.031250, 68.656555 ] ], [ [ -118.125000, 71.965388 ], [ -118.125000, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 71.965388 ], [ -118.125000, 71.965388 ] ], [ [ -116.718750, 72.816074 ], [ -115.312500, 72.816074 ], [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 72.816074 ] ], [ [ -105.468750, 68.656555 ], [ -105.468750, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.656555 ], [ -105.468750, 68.656555 ] ] ], [ [ [ -88.593750, 80.415707 ], [ -88.593750, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 81.308321 ], [ -91.406250, 81.308321 ], [ -91.406250, 81.923186 ], [ -90.000000, 81.923186 ], [ -90.000000, 82.118384 ], [ -87.187500, 82.118384 ], [ -87.187500, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.676285 ], [ -84.375000, 82.676285 ], [ -84.375000, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 83.026219 ], [ -78.750000, 83.026219 ], [ -78.750000, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -73.125000, 83.026219 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.026219 ], [ -66.093750, 83.026219 ], [ -66.093750, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -64.687500, 81.923186 ], [ -64.687500, 81.723188 ], [ -66.093750, 81.723188 ], [ -66.093750, 81.093214 ], [ -67.500000, 81.093214 ], [ -67.500000, 80.647035 ], [ -68.906250, 80.647035 ], [ -68.906250, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.718750, 79.935918 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.432371 ], [ -77.343750, 79.432371 ], [ -77.343750, 79.171335 ], [ -75.937500, 79.171335 ], [ -75.937500, 77.767582 ], [ -77.343750, 77.767582 ], [ -77.343750, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.157163 ], [ -80.156250, 77.157163 ], [ -80.156250, 76.840816 ], [ -77.343750, 76.840816 ], [ -77.343750, 76.516819 ], [ -78.750000, 76.516819 ], [ -78.750000, 76.184995 ], [ -87.187500, 76.184995 ], [ -87.187500, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.840816 ], [ -87.187500, 76.840816 ], [ -87.187500, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -88.593750, 78.061989 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.349411 ], [ -94.218750, 79.171335 ], [ -92.812500, 79.171335 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -95.625000, 80.415707 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.415707 ], [ -88.593750, 80.415707 ] ], [ [ -87.187500, 80.415707 ], [ -87.187500, 80.178713 ], [ -81.562500, 80.178713 ], [ -81.562500, 80.415707 ], [ -87.187500, 80.415707 ] ], [ [ -87.187500, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -87.187500, 78.349411 ], [ -87.187500, 78.630006 ] ], [ [ -85.781250, 78.630006 ], [ -85.781250, 79.171335 ], [ -87.187500, 79.171335 ], [ -87.187500, 78.630006 ], [ -85.781250, 78.630006 ] ], [ [ -85.781250, 77.767582 ], [ -85.781250, 77.466028 ], [ -84.375000, 77.466028 ], [ -84.375000, 77.767582 ], [ -85.781250, 77.767582 ] ] ], [ [ [ -94.218750, 77.157163 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.497157 ], [ -84.375000, 75.497157 ], [ -84.375000, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.402163 ], [ -92.812500, 74.402163 ], [ -92.812500, 75.845169 ], [ -94.218750, 75.845169 ], [ -94.218750, 76.184995 ], [ -95.625000, 76.184995 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.218750, 77.157163 ] ] ], [ [ [ -116.718750, 77.466028 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.516819 ], [ -120.937500, 76.516819 ], [ -120.937500, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.466028 ], [ -116.718750, 77.466028 ] ] ], [ [ [ -132.187500, 54.162434 ], [ -132.187500, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ] ] ], [ [ [ -98.437500, 76.516819 ], [ -98.437500, 75.845169 ], [ -97.031250, 75.845169 ], [ -97.031250, 75.497157 ], [ -98.437500, 75.497157 ], [ -98.437500, 74.775843 ], [ -101.250000, 74.775843 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.184995 ], [ -99.843750, 76.184995 ], [ -99.843750, 76.516819 ], [ -98.437500, 76.516819 ] ] ], [ [ [ -68.906250, 47.989922 ], [ -66.093750, 47.989922 ], [ -66.093750, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 46.073231 ], [ -60.468750, 46.073231 ], [ -60.468750, 45.089036 ], [ -63.281250, 45.089036 ], [ -63.281250, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -68.906250, 47.040182 ], [ -68.906250, 47.989922 ] ] ], [ [ [ -104.062500, 79.171335 ], [ -104.062500, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.630006 ], [ -99.843750, 78.630006 ], [ -99.843750, 77.767582 ], [ -101.250000, 77.767582 ], [ -101.250000, 78.061989 ], [ -102.656250, 78.061989 ], [ -102.656250, 78.349411 ], [ -104.062500, 78.349411 ], [ -104.062500, 78.630006 ], [ -105.468750, 78.630006 ], [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ] ] ], [ [ [ -97.031250, 78.903929 ], [ -97.031250, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.466028 ], [ -97.031250, 77.466028 ], [ -97.031250, 77.767582 ], [ -98.437500, 77.767582 ], [ -98.437500, 78.903929 ], [ -97.031250, 78.903929 ] ] ], [ [ [ -74.531250, 68.138852 ], [ -74.531250, 67.067433 ], [ -77.343750, 67.067433 ], [ -77.343750, 68.138852 ], [ -74.531250, 68.138852 ] ] ], [ [ [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.168107 ], [ -80.156250, 64.168107 ], [ -80.156250, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 65.366837 ] ] ], [ [ [ -109.687500, 78.061989 ], [ -109.687500, 77.466028 ], [ -113.906250, 77.466028 ], [ -113.906250, 77.767582 ], [ -112.500000, 77.767582 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -95.625000, 75.140778 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -109.687500, 78.630006 ], [ -109.687500, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -109.687500, 78.630006 ] ] ], [ [ [ -53.437500, 47.989922 ], [ -52.031250, 47.989922 ], [ -52.031250, 47.040182 ], [ -53.437500, 47.040182 ], [ -53.437500, 47.989922 ] ] ], [ [ [ -105.468750, 73.226700 ], [ -104.062500, 73.226700 ], [ -104.062500, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 73.226700 ] ] ], [ [ [ -57.656250, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 48.922499 ], [ -53.437500, 48.922499 ], [ -53.437500, 47.989922 ], [ -54.843750, 47.989922 ], [ -54.843750, 47.040182 ], [ -56.250000, 47.040182 ], [ -56.250000, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -116.718750, 73.226700 ], [ -118.125000, 73.226700 ], [ -118.125000, 72.816074 ], [ -119.531250, 72.816074 ], [ -119.531250, 72.395706 ], [ -120.937500, 72.395706 ], [ -120.937500, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -126.562500, 71.524909 ], [ -126.562500, 72.816074 ], [ -125.156250, 72.816074 ], [ -125.156250, 74.402163 ], [ -118.125000, 74.402163 ], [ -118.125000, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.226700 ] ] ], [ [ [ -64.687500, 45.089036 ], [ -64.687500, 44.087585 ], [ -67.500000, 44.087585 ], [ -67.500000, 45.089036 ], [ -64.687500, 45.089036 ] ] ], [ [ [ -82.968750, 62.915233 ], [ -82.968750, 62.267923 ], [ -84.375000, 62.267923 ], [ -84.375000, 62.915233 ], [ -82.968750, 62.915233 ] ] ], [ [ [ -60.468750, 46.073231 ], [ -61.875000, 46.073231 ], [ -61.875000, 47.040182 ], [ -60.468750, 47.040182 ], [ -60.468750, 46.073231 ] ] ], [ [ [ -97.031250, 70.140364 ], [ -97.031250, 69.162558 ], [ -99.843750, 69.162558 ], [ -99.843750, 70.140364 ], [ -97.031250, 70.140364 ] ] ], [ [ [ -91.406250, 81.093214 ], [ -91.406250, 81.723188 ], [ -92.812500, 81.723188 ], [ -92.812500, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 82.118384 ], [ -87.187500, 82.118384 ], [ -87.187500, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.676285 ], [ -82.968750, 82.676285 ], [ -82.968750, 83.026219 ], [ -80.156250, 83.026219 ], [ -80.156250, 83.194896 ], [ -66.093750, 83.194896 ], [ -66.093750, 83.026219 ], [ -64.687500, 83.026219 ], [ -64.687500, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.494824 ], [ -63.281250, 82.494824 ], [ -63.281250, 82.308893 ], [ -64.687500, 82.308893 ], [ -64.687500, 81.923186 ], [ -67.500000, 81.923186 ], [ -67.500000, 81.723188 ], [ -68.906250, 81.723188 ], [ -68.906250, 81.518272 ], [ -66.093750, 81.518272 ], [ -66.093750, 81.308321 ], [ -67.500000, 81.308321 ], [ -67.500000, 81.093214 ], [ -68.906250, 81.093214 ], [ -68.906250, 80.872827 ], [ -70.312500, 80.872827 ], [ -70.312500, 80.178713 ], [ -71.718750, 80.178713 ], [ -71.718750, 79.687184 ], [ -74.531250, 79.687184 ], [ -74.531250, 79.432371 ], [ -75.937500, 79.432371 ], [ -75.937500, 79.171335 ], [ -77.343750, 79.171335 ], [ -77.343750, 78.903929 ], [ -75.937500, 78.903929 ], [ -75.937500, 78.349411 ], [ -77.343750, 78.349411 ], [ -77.343750, 78.061989 ], [ -78.750000, 78.061989 ], [ -78.750000, 77.466028 ], [ -80.156250, 77.466028 ], [ -80.156250, 77.157163 ], [ -78.750000, 77.157163 ], [ -78.750000, 76.516819 ], [ -80.156250, 76.516819 ], [ -80.156250, 76.184995 ], [ -84.375000, 76.184995 ], [ -84.375000, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 77.157163 ], [ -88.593750, 77.157163 ], [ -88.593750, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -87.187500, 78.061989 ], [ -87.187500, 78.349411 ], [ -88.593750, 78.349411 ], [ -94.218750, 78.349411 ], [ -94.218750, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.687184 ], [ -97.031250, 79.687184 ], [ -97.031250, 80.872827 ], [ -95.625000, 80.872827 ], [ -95.625000, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 81.093214 ], [ -91.406250, 81.093214 ] ], [ [ -87.187500, 78.903929 ], [ -88.593750, 78.903929 ], [ -88.593750, 78.630006 ], [ -87.187500, 78.630006 ], [ -87.187500, 78.903929 ] ], [ [ -87.187500, 79.687184 ], [ -87.187500, 78.903929 ], [ -85.781250, 78.903929 ], [ -85.781250, 79.687184 ], [ -87.187500, 79.687184 ] ], [ [ -90.000000, 80.647035 ], [ -90.000000, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 80.415707 ], [ -82.968750, 80.415707 ], [ -82.968750, 80.647035 ], [ -90.000000, 80.647035 ] ], [ [ -91.406250, 81.093214 ], [ -91.406250, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 81.093214 ], [ -91.406250, 81.093214 ] ] ], [ [ [ -95.625000, 77.157163 ], [ -95.625000, 76.840816 ], [ -92.812500, 76.840816 ], [ -92.812500, 76.516819 ], [ -91.406250, 76.516819 ], [ -91.406250, 76.184995 ], [ -90.000000, 76.184995 ], [ -90.000000, 75.845169 ], [ -88.593750, 75.845169 ], [ -88.593750, 75.497157 ], [ -85.781250, 75.497157 ], [ -85.781250, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.775843 ], [ -87.187500, 74.775843 ], [ -87.187500, 74.402163 ], [ -90.000000, 74.402163 ], [ -90.000000, 74.775843 ], [ -92.812500, 74.775843 ], [ -92.812500, 75.845169 ], [ -94.218750, 75.845169 ], [ -94.218750, 76.516819 ], [ -98.437500, 76.516819 ], [ -98.437500, 77.157163 ], [ -95.625000, 77.157163 ] ] ], [ [ [ -132.187500, 54.162434 ], [ -132.187500, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ] ] ], [ [ [ -111.093750, 75.845169 ], [ -111.093750, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 76.184995 ], [ -106.875000, 76.184995 ], [ -106.875000, 75.140778 ], [ -111.093750, 75.140778 ], [ -111.093750, 74.775843 ], [ -112.500000, 74.775843 ], [ -112.500000, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.845169 ], [ -116.718750, 75.845169 ], [ -116.718750, 76.184995 ], [ -113.906250, 76.184995 ], [ -113.906250, 75.845169 ], [ -111.093750, 75.845169 ] ], [ [ -113.906250, 75.497157 ], [ -113.906250, 75.140778 ], [ -112.500000, 75.140778 ], [ -112.500000, 75.497157 ], [ -113.906250, 75.497157 ] ], [ [ -111.093750, 75.845169 ], [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.845169 ], [ -111.093750, 75.845169 ] ] ], [ [ [ -97.031250, 71.524909 ], [ -101.250000, 71.524909 ], [ -101.250000, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.226700 ], [ -102.656250, 73.226700 ], [ -102.656250, 73.627789 ], [ -101.250000, 73.627789 ], [ -101.250000, 74.019543 ], [ -98.437500, 74.019543 ], [ -98.437500, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 71.524909 ] ] ], [ [ [ -116.718750, 77.767582 ], [ -116.718750, 76.840816 ], [ -118.125000, 76.840816 ], [ -118.125000, 76.184995 ], [ -123.750000, 76.184995 ], [ -123.750000, 76.516819 ], [ -122.343750, 76.516819 ], [ -122.343750, 77.157163 ], [ -120.937500, 77.157163 ], [ -120.937500, 77.466028 ], [ -119.531250, 77.466028 ], [ -119.531250, 77.767582 ], [ -116.718750, 77.767582 ] ] ], [ [ [ -92.812500, 74.402163 ], [ -92.812500, 74.019543 ], [ -91.406250, 74.019543 ], [ -91.406250, 73.627789 ], [ -92.812500, 73.627789 ], [ -92.812500, 72.816074 ], [ -94.218750, 72.816074 ], [ -94.218750, 72.395706 ], [ -95.625000, 72.395706 ], [ -95.625000, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 74.402163 ], [ -92.812500, 74.402163 ] ] ], [ [ [ -99.843750, 76.840816 ], [ -99.843750, 76.516819 ], [ -98.437500, 76.516819 ], [ -98.437500, 75.140778 ], [ -101.250000, 75.140778 ], [ -101.250000, 75.845169 ], [ -102.656250, 75.845169 ], [ -102.656250, 76.516819 ], [ -101.250000, 76.516819 ], [ -101.250000, 76.840816 ], [ -99.843750, 76.840816 ] ] ], [ [ [ -57.656250, 51.618017 ], [ -56.250000, 51.618017 ], [ -56.250000, 49.837982 ], [ -54.843750, 49.837982 ], [ -54.843750, 48.922499 ], [ -53.437500, 48.922499 ], [ -53.437500, 47.040182 ], [ -56.250000, 47.040182 ], [ -56.250000, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 51.618017 ] ] ], [ [ [ -104.062500, 79.171335 ], [ -104.062500, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.061989 ], [ -104.062500, 78.061989 ], [ -104.062500, 78.349411 ], [ -105.468750, 78.349411 ], [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ] ] ], [ [ [ -78.750000, 74.019543 ], [ -78.750000, 73.627789 ], [ -77.343750, 73.627789 ], [ -77.343750, 73.226700 ], [ -78.750000, 73.226700 ], [ -78.750000, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.226700 ], [ -81.562500, 73.226700 ], [ -81.562500, 74.019543 ], [ -78.750000, 74.019543 ] ] ], [ [ [ -97.031250, 78.061989 ], [ -98.437500, 78.061989 ], [ -98.437500, 78.349411 ], [ -99.843750, 78.349411 ], [ -99.843750, 78.903929 ], [ -97.031250, 78.903929 ], [ -97.031250, 78.630006 ], [ -95.625000, 78.630006 ], [ -95.625000, 78.349411 ], [ -97.031250, 78.349411 ], [ -97.031250, 78.061989 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -111.093750, 78.061989 ], [ -111.093750, 77.466028 ], [ -113.906250, 77.466028 ], [ -113.906250, 78.061989 ], [ -111.093750, 78.061989 ] ] ], [ [ [ -82.968750, 64.168107 ], [ -80.156250, 64.168107 ], [ -80.156250, 63.548552 ], [ -82.968750, 63.548552 ], [ -82.968750, 64.168107 ] ] ], [ [ [ -111.093750, 78.903929 ], [ -111.093750, 78.630006 ], [ -112.500000, 78.630006 ], [ -112.500000, 78.903929 ], [ -111.093750, 78.903929 ] ] ], [ [ [ -126.562500, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.837982 ] ] ], [ [ [ -97.031250, 78.061989 ], [ -95.625000, 78.061989 ], [ -95.625000, 77.767582 ], [ -97.031250, 77.767582 ], [ -97.031250, 78.061989 ] ] ], [ [ [ -67.500000, 49.837982 ], [ -66.093750, 49.837982 ], [ -66.093750, 47.040182 ], [ -64.687500, 47.040182 ], [ -63.281250, 47.040182 ], [ -63.281250, 46.073231 ], [ -61.875000, 46.073231 ], [ -61.875000, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 46.073231 ], [ -68.906250, 46.073231 ], [ -68.906250, 47.989922 ], [ -68.906250, 48.922499 ], [ -67.500000, 48.922499 ], [ -67.500000, 49.837982 ] ] ], [ [ [ -116.718750, 73.226700 ], [ -115.312500, 73.226700 ], [ -115.312500, 72.816074 ], [ -109.687500, 72.816074 ], [ -109.687500, 73.226700 ], [ -108.281250, 73.226700 ], [ -108.281250, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 72.816074 ], [ -105.468750, 70.612614 ], [ -104.062500, 70.612614 ], [ -104.062500, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -104.062500, 69.657086 ], [ -104.062500, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.138852 ], [ -99.843750, 68.138852 ], [ -99.843750, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 67.609221 ], [ -95.625000, 67.609221 ], [ -95.625000, 70.140364 ], [ -97.031250, 70.140364 ], [ -97.031250, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 71.965388 ], [ -94.218750, 71.965388 ], [ -94.218750, 71.074056 ], [ -92.812500, 71.074056 ], [ -92.812500, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.162558 ], [ -88.593750, 69.162558 ], [ -88.593750, 67.609221 ], [ -87.187500, 67.609221 ], [ -87.187500, 68.656555 ], [ -85.781250, 68.656555 ], [ -85.781250, 70.140364 ], [ -87.187500, 70.140364 ], [ -87.187500, 70.612614 ], [ -90.000000, 70.612614 ], [ -90.000000, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.524909 ], [ -90.000000, 71.524909 ], [ -90.000000, 71.965388 ], [ -91.406250, 71.965388 ], [ -91.406250, 72.816074 ], [ -90.000000, 72.816074 ], [ -90.000000, 73.226700 ], [ -88.593750, 73.226700 ], [ -88.593750, 73.627789 ], [ -87.187500, 73.627789 ], [ -87.187500, 72.816074 ], [ -85.781250, 72.816074 ], [ -85.781250, 73.627789 ], [ -82.968750, 73.627789 ], [ -82.968750, 73.226700 ], [ -81.562500, 73.226700 ], [ -81.562500, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -71.718750, 71.524909 ], [ -71.718750, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 69.657086 ], [ -67.500000, 69.657086 ], [ -67.500000, 69.162558 ], [ -68.906250, 69.162558 ], [ -68.906250, 68.656555 ], [ -67.500000, 68.656555 ], [ -67.500000, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.609221 ], [ -64.687500, 67.609221 ], [ -64.687500, 67.067433 ], [ -61.875000, 67.067433 ], [ -61.875000, 66.513260 ], [ -63.281250, 66.513260 ], [ -63.281250, 65.946472 ], [ -64.687500, 65.946472 ], [ -64.687500, 65.366837 ], [ -66.093750, 65.366837 ], [ -66.093750, 65.946472 ], [ -67.500000, 65.946472 ], [ -67.500000, 66.513260 ], [ -68.906250, 66.513260 ], [ -68.906250, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.168107 ], [ -64.687500, 64.168107 ], [ -64.687500, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.267923 ], [ -68.906250, 62.267923 ], [ -68.906250, 62.915233 ], [ -73.125000, 62.915233 ], [ -73.125000, 64.168107 ], [ -74.531250, 64.168107 ], [ -74.531250, 64.774125 ], [ -78.750000, 64.774125 ], [ -78.750000, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 67.067433 ], [ -73.125000, 67.067433 ], [ -73.125000, 68.138852 ], [ -75.937500, 68.138852 ], [ -75.937500, 67.609221 ], [ -77.343750, 67.609221 ], [ -77.343750, 68.656555 ], [ -77.343750, 70.140364 ], [ -82.968750, 70.140364 ], [ -82.968750, 69.657086 ], [ -81.562500, 69.657086 ], [ -81.562500, 68.656555 ], [ -82.968750, 68.656555 ], [ -82.968750, 67.609221 ], [ -81.562500, 67.609221 ], [ -81.562500, 67.067433 ], [ -82.968750, 67.067433 ], [ -82.968750, 66.513260 ], [ -87.187500, 66.513260 ], [ -87.187500, 65.946472 ], [ -85.781250, 65.946472 ], [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.168107 ], [ -84.375000, 64.168107 ], [ -84.375000, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 65.366837 ], [ -88.593750, 65.366837 ], [ -88.593750, 64.168107 ], [ -91.406250, 64.168107 ], [ -91.406250, 62.915233 ], [ -92.812500, 62.915233 ], [ -92.812500, 62.267923 ], [ -94.218750, 62.267923 ], [ -94.218750, 61.606396 ], [ -95.625000, 61.606396 ], [ -95.625000, 58.813742 ], [ -94.218750, 58.813742 ], [ -94.218750, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.326521 ], [ -90.000000, 57.326521 ], [ -90.000000, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 55.776573 ], [ -82.968750, 55.776573 ], [ -82.968750, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 51.618017 ], [ -80.156250, 51.618017 ], [ -80.156250, 52.482780 ], [ -78.750000, 52.482780 ], [ -78.750000, 53.330873 ], [ -80.156250, 53.330873 ], [ -80.156250, 54.977614 ], [ -78.750000, 54.977614 ], [ -78.750000, 55.776573 ], [ -77.343750, 55.776573 ], [ -77.343750, 58.077876 ], [ -78.750000, 58.077876 ], [ -78.750000, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.750000, 60.239811 ], [ -78.750000, 62.915233 ], [ -75.937500, 62.915233 ], [ -75.937500, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.606396 ], [ -70.312500, 61.606396 ], [ -70.312500, 58.813742 ], [ -67.500000, 58.813742 ], [ -67.500000, 59.534318 ], [ -66.093750, 59.534318 ], [ -66.093750, 60.239811 ], [ -64.687500, 60.239811 ], [ -64.687500, 58.813742 ], [ -63.281250, 58.813742 ], [ -63.281250, 58.077876 ], [ -61.875000, 58.077876 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.250000, 54.162434 ], [ -56.250000, 52.482780 ], [ -57.656250, 52.482780 ], [ -57.656250, 51.618017 ], [ -59.062500, 51.618017 ], [ -59.062500, 50.736455 ], [ -67.500000, 50.736455 ], [ -67.500000, 49.837982 ], [ -68.906250, 49.837982 ], [ -68.906250, 48.922499 ], [ -70.312500, 48.922499 ], [ -70.312500, 47.989922 ], [ -70.312500, 46.073231 ], [ -71.718750, 46.073231 ], [ -71.718750, 45.089036 ], [ -77.343750, 45.089036 ], [ -77.343750, 44.087585 ], [ -80.156250, 44.087585 ], [ -80.156250, 43.068888 ], [ -81.562500, 43.068888 ], [ -81.562500, 42.032974 ], [ -84.375000, 42.032974 ], [ -84.375000, 43.068888 ], [ -82.968750, 43.068888 ], [ -82.968750, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.922499 ], [ -95.625000, 48.922499 ], [ -95.625000, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 50.736455 ], [ -126.562500, 50.736455 ], [ -126.562500, 49.837982 ], [ -129.375000, 49.837982 ], [ -129.375000, 50.736455 ], [ -127.968750, 50.736455 ], [ -127.968750, 51.618017 ], [ -129.375000, 51.618017 ], [ -129.375000, 54.162434 ], [ -130.781250, 54.162434 ], [ -130.781250, 56.559482 ], [ -132.187500, 56.559482 ], [ -132.187500, 57.326521 ], [ -133.593750, 57.326521 ], [ -133.593750, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 60.930432 ], [ -142.031250, 60.930432 ], [ -142.031250, 69.657086 ], [ -139.218750, 69.657086 ], [ -139.218750, 69.162558 ], [ -136.406250, 69.162558 ], [ -136.406250, 69.657086 ], [ -132.187500, 69.657086 ], [ -132.187500, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 70.612614 ], [ -127.968750, 70.612614 ], [ -127.968750, 70.140364 ], [ -125.156250, 70.140364 ], [ -125.156250, 69.657086 ], [ -123.750000, 69.657086 ], [ -123.750000, 70.140364 ], [ -122.343750, 70.140364 ], [ -122.343750, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.162558 ], [ -115.312500, 69.162558 ], [ -115.312500, 69.657086 ], [ -118.125000, 69.657086 ], [ -118.125000, 70.140364 ], [ -115.312500, 70.140364 ], [ -115.312500, 70.612614 ], [ -119.531250, 70.612614 ], [ -119.531250, 71.074056 ], [ -116.718750, 71.074056 ], [ -116.718750, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.816074 ], [ -116.718750, 72.816074 ], [ -116.718750, 73.226700 ] ], [ [ -113.906250, 68.656555 ], [ -113.906250, 68.138852 ], [ -111.093750, 68.138852 ], [ -111.093750, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 68.138852 ], [ -109.687500, 68.138852 ], [ -109.687500, 68.656555 ], [ -113.906250, 68.656555 ] ], [ [ -108.281250, 69.162558 ], [ -109.687500, 69.162558 ], [ -109.687500, 68.656555 ], [ -108.281250, 68.656555 ], [ -108.281250, 69.162558 ] ], [ [ -115.312500, 69.162558 ], [ -115.312500, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -115.312500, 69.162558 ] ], [ [ -109.687500, 72.816074 ], [ -109.687500, 72.395706 ], [ -108.281250, 72.395706 ], [ -108.281250, 72.816074 ], [ -109.687500, 72.816074 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -154.687500, 20.632784 ], [ -154.687500, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ], [ -154.687500, 20.632784 ] ] ], [ [ [ -94.218750, 49.837982 ], [ -94.218750, 47.989922 ], [ -85.781250, 47.989922 ], [ -85.781250, 47.040182 ], [ -84.375000, 47.040182 ], [ -84.375000, 46.073231 ], [ -82.968750, 46.073231 ], [ -82.968750, 42.032974 ], [ -78.750000, 42.032974 ], [ -78.750000, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 34.307144 ], [ -78.750000, 34.307144 ], [ -78.750000, 31.952162 ], [ -81.562500, 31.952162 ], [ -81.562500, 28.304381 ], [ -80.156250, 28.304381 ], [ -80.156250, 24.527135 ], [ -81.562500, 24.527135 ], [ -81.562500, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -94.218750, 29.535230 ], [ -94.218750, 28.304381 ], [ -97.031250, 28.304381 ], [ -97.031250, 25.799891 ], [ -99.843750, 25.799891 ], [ -99.843750, 28.304381 ], [ -101.250000, 28.304381 ], [ -101.250000, 29.535230 ], [ -105.468750, 29.535230 ], [ -105.468750, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 30.751278 ], [ -113.906250, 30.751278 ], [ -113.906250, 31.952162 ], [ -116.718750, 31.952162 ], [ -116.718750, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -122.343750, 35.460670 ], [ -122.343750, 37.718590 ], [ -123.750000, 37.718590 ], [ -123.750000, 42.032974 ], [ -125.156250, 42.032974 ], [ -125.156250, 43.068888 ], [ -123.750000, 43.068888 ], [ -123.750000, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.922499 ], [ -95.625000, 48.922499 ], [ -95.625000, 49.837982 ], [ -94.218750, 49.837982 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -142.031250, 59.534318 ], [ -142.031250, 60.239811 ], [ -149.062500, 60.239811 ], [ -149.062500, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 58.813742 ], [ -151.875000, 58.813742 ], [ -151.875000, 60.239811 ], [ -153.281250, 60.239811 ], [ -153.281250, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.077876 ], [ -154.687500, 58.077876 ], [ -154.687500, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.559482 ], [ -157.500000, 56.559482 ], [ -157.500000, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.813742 ], [ -158.906250, 58.813742 ], [ -158.906250, 58.077876 ], [ -160.312500, 58.077876 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -164.531250, 59.534318 ], [ -164.531250, 60.239811 ], [ -165.937500, 60.239811 ], [ -165.937500, 62.267923 ], [ -164.531250, 62.267923 ], [ -164.531250, 62.915233 ], [ -161.718750, 62.915233 ], [ -161.718750, 63.548552 ], [ -160.312500, 63.548552 ], [ -160.312500, 64.774125 ], [ -163.125000, 64.774125 ], [ -163.125000, 64.168107 ], [ -165.937500, 64.168107 ], [ -165.937500, 64.774125 ], [ -167.343750, 64.774125 ], [ -167.343750, 65.366837 ], [ -168.750000, 65.366837 ], [ -168.750000, 65.946472 ], [ -164.531250, 65.946472 ], [ -164.531250, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -164.531250, 67.067433 ], [ -164.531250, 67.609221 ], [ -165.937500, 67.609221 ], [ -165.937500, 68.656555 ], [ -164.531250, 68.656555 ], [ -164.531250, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.657086 ], [ -161.718750, 69.657086 ], [ -161.718750, 70.140364 ], [ -160.312500, 70.140364 ], [ -160.312500, 70.612614 ], [ -157.500000, 70.612614 ], [ -157.500000, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.612614 ], [ -149.062500, 70.612614 ], [ -149.062500, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.534318 ] ] ], [ [ [ -137.812500, 58.813742 ], [ -136.406250, 58.813742 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.813742 ] ] ], [ [ [ -163.125000, 54.977614 ], [ -163.125000, 54.162434 ], [ -164.531250, 54.162434 ], [ -164.531250, 54.977614 ], [ -163.125000, 54.977614 ] ] ], [ [ [ -132.187500, 55.776573 ], [ -129.375000, 55.776573 ], [ -129.375000, 54.977614 ], [ -132.187500, 54.977614 ], [ -132.187500, 55.776573 ] ] ], [ [ [ -160.312500, 55.776573 ], [ -160.312500, 54.977614 ], [ -161.718750, 54.977614 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ] ] ], [ [ [ -133.593750, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -133.593750, 56.559482 ], [ -133.593750, 57.326521 ] ] ], [ [ [ -165.937500, 60.239811 ], [ -165.937500, 59.534318 ], [ -167.343750, 59.534318 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ] ] ], [ [ [ -168.750000, 63.548552 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.548552 ], [ -168.750000, 63.548552 ] ] ], [ [ [ -154.687500, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ] ] ], [ [ [ -153.281250, 58.077876 ], [ -151.875000, 58.077876 ], [ -151.875000, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 58.077876 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -137.812500, 59.534318 ], [ -137.812500, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.534318 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -156.093750, 21.943046 ], [ -156.093750, 20.632784 ], [ -157.500000, 20.632784 ], [ -157.500000, 21.943046 ], [ -156.093750, 21.943046 ] ] ], [ [ [ -95.625000, 49.837982 ], [ -95.625000, 48.922499 ], [ -88.593750, 48.922499 ], [ -88.593750, 47.989922 ], [ -85.781250, 47.989922 ], [ -85.781250, 47.040182 ], [ -84.375000, 47.040182 ], [ -84.375000, 46.073231 ], [ -82.968750, 46.073231 ], [ -82.968750, 43.068888 ], [ -84.375000, 43.068888 ], [ -84.375000, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 43.068888 ], [ -80.156250, 43.068888 ], [ -80.156250, 44.087585 ], [ -77.343750, 44.087585 ], [ -77.343750, 45.089036 ], [ -71.718750, 45.089036 ], [ -71.718750, 46.073231 ], [ -70.312500, 46.073231 ], [ -70.312500, 47.989922 ], [ -68.906250, 47.989922 ], [ -68.906250, 46.073231 ], [ -67.500000, 46.073231 ], [ -67.500000, 45.089036 ], [ -68.906250, 45.089036 ], [ -68.906250, 44.087585 ], [ -71.718750, 44.087585 ], [ -71.718750, 42.032974 ], [ -73.125000, 42.032974 ], [ -73.125000, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 39.909736 ], [ -75.937500, 39.909736 ], [ -75.937500, 38.822591 ], [ -77.343750, 38.822591 ], [ -77.343750, 36.597889 ], [ -75.937500, 36.597889 ], [ -75.937500, 35.460670 ], [ -78.750000, 35.460670 ], [ -78.750000, 34.307144 ], [ -80.156250, 34.307144 ], [ -80.156250, 33.137551 ], [ -81.562500, 33.137551 ], [ -81.562500, 27.059126 ], [ -80.156250, 27.059126 ], [ -80.156250, 25.799891 ], [ -82.968750, 25.799891 ], [ -82.968750, 29.535230 ], [ -84.375000, 29.535230 ], [ -84.375000, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -92.812500, 29.535230 ], [ -92.812500, 30.751278 ], [ -94.218750, 30.751278 ], [ -94.218750, 29.535230 ], [ -97.031250, 29.535230 ], [ -97.031250, 28.304381 ], [ -98.437500, 28.304381 ], [ -98.437500, 27.059126 ], [ -99.843750, 27.059126 ], [ -99.843750, 28.304381 ], [ -101.250000, 28.304381 ], [ -101.250000, 29.535230 ], [ -105.468750, 29.535230 ], [ -105.468750, 30.751278 ], [ -106.875000, 30.751278 ], [ -106.875000, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 34.307144 ], [ -119.531250, 34.307144 ], [ -119.531250, 35.460670 ], [ -122.343750, 35.460670 ], [ -122.343750, 36.597889 ], [ -123.750000, 36.597889 ], [ -123.750000, 39.909736 ], [ -125.156250, 39.909736 ], [ -125.156250, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 49.837982 ], [ -95.625000, 49.837982 ] ] ], [ [ [ -140.625000, 60.239811 ], [ -146.250000, 60.239811 ], [ -146.250000, 60.930432 ], [ -149.062500, 60.930432 ], [ -149.062500, 60.239811 ], [ -150.468750, 60.239811 ], [ -150.468750, 59.534318 ], [ -151.875000, 59.534318 ], [ -151.875000, 60.930432 ], [ -153.281250, 60.930432 ], [ -153.281250, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 58.077876 ], [ -157.500000, 58.077876 ], [ -157.500000, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 58.813742 ], [ -163.125000, 58.813742 ], [ -163.125000, 60.239811 ], [ -165.937500, 60.239811 ], [ -167.343750, 60.239811 ], [ -167.343750, 60.930432 ], [ -165.937500, 60.930432 ], [ -165.937500, 63.548552 ], [ -161.718750, 63.548552 ], [ -161.718750, 64.774125 ], [ -167.343750, 64.774125 ], [ -167.343750, 65.366837 ], [ -168.750000, 65.366837 ], [ -168.750000, 65.946472 ], [ -167.343750, 65.946472 ], [ -167.343750, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -164.531250, 67.067433 ], [ -164.531250, 68.138852 ], [ -167.343750, 68.138852 ], [ -167.343750, 69.162558 ], [ -164.531250, 69.162558 ], [ -164.531250, 69.657086 ], [ -163.125000, 69.657086 ], [ -163.125000, 70.612614 ], [ -160.312500, 70.612614 ], [ -160.312500, 71.074056 ], [ -157.500000, 71.074056 ], [ -157.500000, 71.524909 ], [ -156.093750, 71.524909 ], [ -156.093750, 71.074056 ], [ -153.281250, 71.074056 ], [ -153.281250, 70.612614 ], [ -147.656250, 70.612614 ], [ -147.656250, 70.140364 ], [ -142.031250, 70.140364 ], [ -142.031250, 60.930432 ], [ -140.625000, 60.930432 ], [ -140.625000, 60.239811 ] ], [ [ -151.875000, 61.606396 ], [ -151.875000, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.606396 ], [ -151.875000, 61.606396 ] ] ], [ [ [ -133.593750, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -130.781250, 56.559482 ], [ -130.781250, 54.977614 ], [ -132.187500, 54.977614 ], [ -132.187500, 55.776573 ], [ -133.593750, 55.776573 ], [ -133.593750, 57.326521 ] ] ], [ [ [ -163.125000, 55.776573 ], [ -163.125000, 54.977614 ], [ -164.531250, 54.977614 ], [ -164.531250, 55.776573 ], [ -163.125000, 55.776573 ] ] ], [ [ [ -158.906250, 56.559482 ], [ -158.906250, 55.776573 ], [ -163.125000, 55.776573 ], [ -163.125000, 56.559482 ], [ -158.906250, 56.559482 ] ] ], [ [ [ -139.218750, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.534318 ] ] ], [ [ [ -171.562500, 64.168107 ], [ -171.562500, 63.548552 ], [ -172.968750, 63.548552 ], [ -172.968750, 64.168107 ], [ -171.562500, 64.168107 ] ] ], [ [ [ -154.687500, 58.077876 ], [ -153.281250, 58.077876 ], [ -153.281250, 57.326521 ], [ -154.687500, 57.326521 ], [ -154.687500, 58.077876 ] ] ], [ [ [ -135.000000, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -135.000000, 58.077876 ], [ -135.000000, 58.813742 ] ] ], [ [ [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 60.239811 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.468750, 31.952162 ], [ -105.468750, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 23.241346 ], [ -98.437500, 23.241346 ], [ -98.437500, 21.943046 ], [ -97.031250, 21.943046 ], [ -97.031250, 19.311143 ], [ -95.625000, 19.311143 ], [ -95.625000, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 16.636192 ], [ -95.625000, 16.636192 ], [ -95.625000, 15.284185 ], [ -98.437500, 15.284185 ], [ -98.437500, 16.636192 ], [ -101.250000, 16.636192 ], [ -101.250000, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 23.241346 ], [ -108.281250, 23.241346 ], [ -108.281250, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.751278 ], [ -108.281250, 30.751278 ], [ -108.281250, 31.952162 ], [ -105.468750, 31.952162 ] ] ], [ [ [ -87.187500, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 19.311143 ], [ -90.000000, 19.311143 ], [ -90.000000, 20.632784 ], [ -88.593750, 20.632784 ], [ -88.593750, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 17.978733 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 25.799891 ], [ -113.906250, 25.799891 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 24.527135 ] ] ], [ [ [ -115.312500, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.751278 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -109.687500, 24.527135 ], [ -109.687500, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 24.527135 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -115.312500, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 29.535230 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -109.687500, 24.527135 ], [ -109.687500, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 24.527135 ] ] ], [ [ [ -113.906250, 31.952162 ], [ -106.875000, 31.952162 ], [ -106.875000, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 27.059126 ], [ -98.437500, 27.059126 ], [ -98.437500, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.311143 ], [ -91.406250, 19.311143 ], [ -91.406250, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 20.632784 ], [ -88.593750, 20.632784 ], [ -88.593750, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 16.636192 ], [ -92.812500, 16.636192 ], [ -92.812500, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 16.636192 ], [ -99.843750, 16.636192 ], [ -99.843750, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 20.632784 ], [ -106.875000, 20.632784 ], [ -106.875000, 23.241346 ], [ -108.281250, 23.241346 ], [ -108.281250, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -111.093750, 27.059126 ], [ -111.093750, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 31.952162 ] ] ], [ [ [ -113.906250, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 29.535230 ], [ -116.718750, 29.535230 ], [ -116.718750, 31.952162 ], [ -118.125000, 31.952162 ], [ -118.125000, 33.137551 ], [ -113.906250, 33.137551 ], [ -113.906250, 31.952162 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 17.978733 ], [ -88.593750, 13.923404 ], [ -92.812500, 13.923404 ], [ -92.812500, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 17.978733 ], [ -88.593750, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.978733 ], [ -90.000000, 13.923404 ], [ -91.406250, 13.923404 ], [ -91.406250, 15.284185 ], [ -92.812500, 15.284185 ], [ -92.812500, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.978733 ], [ -90.000000, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.406250, 81.923186 ], [ -46.406250, 82.676285 ], [ -45.000000, 82.676285 ], [ -45.000000, 83.026219 ], [ -43.593750, 83.026219 ], [ -43.593750, 83.194896 ], [ -39.375000, 83.194896 ], [ -39.375000, 83.359511 ], [ -37.968750, 83.359511 ], [ -37.968750, 83.520162 ], [ -35.156250, 83.520162 ], [ -35.156250, 83.676943 ], [ -32.343750, 83.676943 ], [ -32.343750, 83.520162 ], [ -26.718750, 83.520162 ], [ -26.718750, 83.359511 ], [ -25.312500, 83.359511 ], [ -25.312500, 83.194896 ], [ -23.906250, 83.194896 ], [ -23.906250, 82.853382 ], [ -22.500000, 82.853382 ], [ -22.500000, 82.676285 ], [ -21.093750, 82.676285 ], [ -21.093750, 82.494824 ], [ -22.500000, 82.494824 ], [ -22.500000, 82.308893 ], [ -28.125000, 82.308893 ], [ -28.125000, 81.923186 ], [ -26.718750, 81.923186 ], [ -26.718750, 81.723188 ], [ -23.906250, 81.723188 ], [ -23.906250, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ], [ -21.093750, 81.518272 ], [ -18.281250, 81.518272 ], [ -18.281250, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.093214 ], [ -14.062500, 81.093214 ], [ -14.062500, 80.872827 ], [ -15.468750, 80.872827 ], [ -15.468750, 80.647035 ], [ -16.875000, 80.647035 ], [ -16.875000, 80.178713 ], [ -18.281250, 80.178713 ], [ -18.281250, 78.903929 ], [ -19.687500, 78.903929 ], [ -19.687500, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.840816 ], [ -19.687500, 76.840816 ], [ -19.687500, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.184995 ], [ -19.687500, 76.184995 ], [ -19.687500, 75.140778 ], [ -21.093750, 75.140778 ], [ -21.093750, 74.775843 ], [ -19.687500, 74.775843 ], [ -19.687500, 74.402163 ], [ -21.093750, 74.402163 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.395706 ], [ -25.312500, 72.395706 ], [ -25.312500, 71.965388 ], [ -23.906250, 71.965388 ], [ -23.906250, 71.524909 ], [ -22.500000, 71.524909 ], [ -22.500000, 71.074056 ], [ -21.093750, 71.074056 ], [ -21.093750, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.656555 ], [ -28.125000, 68.656555 ], [ -28.125000, 68.138852 ], [ -32.343750, 68.138852 ], [ -32.343750, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 65.946472 ], [ -37.968750, 65.946472 ], [ -37.968750, 65.366837 ], [ -39.375000, 65.366837 ], [ -39.375000, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 62.915233 ], [ -42.187500, 62.915233 ], [ -42.187500, 60.239811 ], [ -46.406250, 60.239811 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 62.267923 ], [ -50.625000, 62.267923 ], [ -50.625000, 62.915233 ], [ -52.031250, 62.915233 ], [ -52.031250, 65.366837 ], [ -53.437500, 65.366837 ], [ -53.437500, 68.138852 ], [ -52.031250, 68.138852 ], [ -52.031250, 68.656555 ], [ -50.625000, 68.656555 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.162558 ], [ -54.843750, 69.162558 ], [ -54.843750, 70.612614 ], [ -53.437500, 70.612614 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -56.250000, 71.965388 ], [ -54.843750, 71.965388 ], [ -54.843750, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 74.019543 ], [ -57.656250, 74.019543 ], [ -57.656250, 74.775843 ], [ -59.062500, 74.775843 ], [ -59.062500, 75.497157 ], [ -60.468750, 75.497157 ], [ -60.468750, 75.845169 ], [ -61.875000, 75.845169 ], [ -61.875000, 76.184995 ], [ -70.312500, 76.184995 ], [ -70.312500, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.767582 ], [ -73.125000, 77.767582 ], [ -73.125000, 78.349411 ], [ -71.718750, 78.349411 ], [ -71.718750, 78.630006 ], [ -68.906250, 78.630006 ], [ -68.906250, 78.903929 ], [ -67.500000, 78.903929 ], [ -67.500000, 79.171335 ], [ -66.093750, 79.171335 ], [ -66.093750, 79.432371 ], [ -64.687500, 79.432371 ], [ -64.687500, 79.687184 ], [ -66.093750, 79.687184 ], [ -66.093750, 79.935918 ], [ -67.500000, 79.935918 ], [ -67.500000, 80.415707 ], [ -66.093750, 80.415707 ], [ -66.093750, 80.872827 ], [ -64.687500, 80.872827 ], [ -64.687500, 81.093214 ], [ -63.281250, 81.093214 ], [ -63.281250, 81.308321 ], [ -61.875000, 81.308321 ], [ -61.875000, 81.518272 ], [ -63.281250, 81.518272 ], [ -63.281250, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.308893 ], [ -49.218750, 82.308893 ], [ -49.218750, 82.118384 ], [ -47.812500, 82.118384 ], [ -47.812500, 81.923186 ], [ -46.406250, 81.923186 ] ], [ [ -46.406250, 81.923186 ], [ -46.406250, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.923186 ], [ -46.406250, 81.923186 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -47.812500, 82.118384 ], [ -47.812500, 82.676285 ], [ -46.406250, 82.676285 ], [ -46.406250, 83.026219 ], [ -45.000000, 83.026219 ], [ -45.000000, 83.194896 ], [ -40.781250, 83.194896 ], [ -40.781250, 83.359511 ], [ -39.375000, 83.359511 ], [ -39.375000, 83.676943 ], [ -32.343750, 83.676943 ], [ -32.343750, 83.520162 ], [ -28.125000, 83.520162 ], [ -28.125000, 83.359511 ], [ -26.718750, 83.359511 ], [ -26.718750, 83.194896 ], [ -23.906250, 83.194896 ], [ -23.906250, 83.026219 ], [ -22.500000, 83.026219 ], [ -22.500000, 82.853382 ], [ -21.093750, 82.853382 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.676285 ], [ -22.500000, 82.494824 ], [ -23.906250, 82.494824 ], [ -23.906250, 82.308893 ], [ -28.125000, 82.308893 ], [ -28.125000, 82.118384 ], [ -26.718750, 82.118384 ], [ -26.718750, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.518272 ], [ -21.093750, 81.518272 ], [ -21.093750, 81.723188 ], [ -18.281250, 81.723188 ], [ -18.281250, 81.923186 ], [ -16.875000, 81.923186 ], [ -16.875000, 81.723188 ], [ -14.062500, 81.723188 ], [ -14.062500, 81.518272 ], [ -12.656250, 81.518272 ], [ -12.656250, 81.093214 ], [ -14.062500, 81.093214 ], [ -14.062500, 80.872827 ], [ -15.468750, 80.872827 ], [ -15.468750, 80.647035 ], [ -16.875000, 80.647035 ], [ -16.875000, 80.415707 ], [ -18.281250, 80.415707 ], [ -18.281250, 79.687184 ], [ -19.687500, 79.687184 ], [ -19.687500, 79.171335 ], [ -21.093750, 79.171335 ], [ -21.093750, 78.349411 ], [ -19.687500, 78.349411 ], [ -19.687500, 77.157163 ], [ -21.093750, 77.157163 ], [ -21.093750, 76.840816 ], [ -22.500000, 76.840816 ], [ -22.500000, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 75.845169 ], [ -19.687500, 75.845169 ], [ -19.687500, 75.497157 ], [ -21.093750, 75.497157 ], [ -21.093750, 74.775843 ], [ -19.687500, 74.775843 ], [ -19.687500, 74.402163 ], [ -22.500000, 74.402163 ], [ -22.500000, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.627789 ], [ -23.906250, 73.627789 ], [ -23.906250, 73.226700 ], [ -22.500000, 73.226700 ], [ -22.500000, 72.395706 ], [ -23.906250, 72.395706 ], [ -23.906250, 71.965388 ], [ -22.500000, 71.965388 ], [ -22.500000, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.657086 ], [ -25.312500, 69.657086 ], [ -25.312500, 69.162558 ], [ -26.718750, 69.162558 ], [ -26.718750, 68.656555 ], [ -28.125000, 68.656555 ], [ -28.125000, 68.138852 ], [ -33.750000, 68.138852 ], [ -33.750000, 67.609221 ], [ -35.156250, 67.609221 ], [ -35.156250, 66.513260 ], [ -36.562500, 66.513260 ], [ -36.562500, 65.946472 ], [ -40.781250, 65.946472 ], [ -40.781250, 63.548552 ], [ -42.187500, 63.548552 ], [ -42.187500, 62.915233 ], [ -43.593750, 62.915233 ], [ -43.593750, 60.239811 ], [ -46.406250, 60.239811 ], [ -46.406250, 60.930432 ], [ -50.625000, 60.930432 ], [ -50.625000, 63.548552 ], [ -52.031250, 63.548552 ], [ -52.031250, 64.168107 ], [ -53.437500, 64.168107 ], [ -53.437500, 65.946472 ], [ -54.843750, 65.946472 ], [ -54.843750, 66.513260 ], [ -53.437500, 66.513260 ], [ -53.437500, 67.067433 ], [ -54.843750, 67.067433 ], [ -54.843750, 68.138852 ], [ -53.437500, 68.138852 ], [ -53.437500, 68.656555 ], [ -52.031250, 68.656555 ], [ -52.031250, 69.657086 ], [ -54.843750, 69.657086 ], [ -54.843750, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -56.250000, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.816074 ], [ -56.250000, 72.816074 ], [ -56.250000, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.775843 ], [ -59.062500, 74.775843 ], [ -59.062500, 75.845169 ], [ -61.875000, 75.845169 ], [ -61.875000, 76.184995 ], [ -70.312500, 76.184995 ], [ -70.312500, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.767582 ], [ -74.531250, 77.767582 ], [ -74.531250, 78.630006 ], [ -73.125000, 78.630006 ], [ -73.125000, 78.903929 ], [ -70.312500, 78.903929 ], [ -70.312500, 79.171335 ], [ -67.500000, 79.171335 ], [ -67.500000, 79.432371 ], [ -66.093750, 79.432371 ], [ -66.093750, 79.935918 ], [ -68.906250, 79.935918 ], [ -68.906250, 80.415707 ], [ -67.500000, 80.415707 ], [ -67.500000, 80.647035 ], [ -66.093750, 80.647035 ], [ -66.093750, 81.093214 ], [ -64.687500, 81.093214 ], [ -64.687500, 81.308321 ], [ -63.281250, 81.308321 ], [ -63.281250, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.118384 ], [ -57.656250, 82.118384 ], [ -57.656250, 82.308893 ], [ -54.843750, 82.308893 ], [ -54.843750, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.308893 ], [ -49.218750, 82.308893 ], [ -49.218750, 82.118384 ], [ -47.812500, 82.118384 ] ], [ [ -29.531250, 82.308893 ], [ -32.343750, 82.308893 ], [ -32.343750, 82.118384 ], [ -29.531250, 82.118384 ], [ -29.531250, 82.308893 ] ], [ [ -22.500000, 81.518272 ], [ -23.906250, 81.518272 ], [ -23.906250, 81.308321 ], [ -22.500000, 81.308321 ], [ -22.500000, 81.518272 ] ], [ [ -53.437500, 71.074056 ], [ -53.437500, 70.612614 ], [ -52.031250, 70.612614 ], [ -52.031250, 71.074056 ], [ -53.437500, 71.074056 ] ], [ [ -47.812500, 82.118384 ], [ -47.812500, 81.923186 ], [ -46.406250, 81.923186 ], [ -46.406250, 82.118384 ], [ -47.812500, 82.118384 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 27.059126 ], [ -77.343750, 25.799891 ], [ -77.343750, 24.527135 ], [ -78.750000, 24.527135 ], [ -78.750000, 25.799891 ], [ -78.750000, 27.059126 ], [ -77.343750, 27.059126 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 17.978733 ], [ -88.593750, 16.636192 ], [ -90.000000, 16.636192 ], [ -90.000000, 17.978733 ], [ -88.593750, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.187500, 13.923404 ], [ -87.187500, 12.554564 ], [ -88.593750, 12.554564 ], [ -88.593750, 13.923404 ], [ -87.187500, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 15.284185 ], [ -88.593750, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 15.284185 ], [ -88.593750, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.284185 ], [ -84.375000, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 15.284185 ], [ -84.375000, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 16.636192 ], [ -84.375000, 15.284185 ], [ -85.781250, 15.284185 ], [ -85.781250, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 15.284185 ], [ -90.000000, 15.284185 ], [ -90.000000, 16.636192 ], [ -84.375000, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 15.284185 ], [ -82.968750, 12.554564 ], [ -84.375000, 12.554564 ], [ -84.375000, 11.178402 ], [ -87.187500, 11.178402 ], [ -87.187500, 13.923404 ], [ -84.375000, 13.923404 ], [ -84.375000, 15.284185 ], [ -82.968750, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.284185 ], [ -84.375000, 11.178402 ], [ -87.187500, 11.178402 ], [ -87.187500, 12.554564 ], [ -88.593750, 12.554564 ], [ -88.593750, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 15.284185 ], [ -84.375000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.750000, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.943046 ] ] ], [ [ [ -82.968750, 23.241346 ], [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 23.241346 ], [ -82.968750, 23.241346 ] ] ], [ [ [ -77.343750, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.311143 ], [ -77.343750, 19.311143 ], [ -77.343750, 20.632784 ] ] ], [ [ [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 23.241346 ], [ -80.156250, 23.241346 ], [ -80.156250, 21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.750000, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 23.241346 ], [ -78.750000, 23.241346 ], [ -78.750000, 21.943046 ] ] ], [ [ [ -84.375000, 23.241346 ], [ -84.375000, 21.943046 ], [ -85.781250, 21.943046 ], [ -85.781250, 23.241346 ], [ -84.375000, 23.241346 ] ] ], [ [ [ -78.750000, 21.943046 ], [ -75.937500, 21.943046 ], [ -75.937500, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.943046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 11.178402 ], [ -82.968750, 8.407168 ], [ -84.375000, 8.407168 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -82.968750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -84.375000, 11.178402 ], [ -84.375000, 9.795678 ] ] ], [ [ [ -84.375000, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -84.375000, 8.407168 ], [ -84.375000, 9.795678 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -81.562500, 9.795678 ], [ -81.562500, 8.407168 ] ] ], [ [ [ -78.750000, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 8.407168 ] ] ], [ [ [ -81.562500, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -81.562500, 7.013668 ], [ -81.562500, 8.407168 ] ] ], [ [ [ -78.750000, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.013668 ], [ -78.750000, 7.013668 ], [ -78.750000, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.156250, 9.795678 ], [ -80.156250, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 19.311143 ], [ -68.906250, 17.978733 ], [ -71.718750, 17.978733 ], [ -71.718750, 19.311143 ], [ -68.906250, 19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 19.311143 ], [ -77.343750, 17.978733 ], [ -78.750000, 17.978733 ], [ -78.750000, 19.311143 ], [ -77.343750, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125000, 11.178402 ], [ -73.125000, 8.407168 ], [ -71.718750, 8.407168 ], [ -71.718750, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 1.406109 ], [ -68.906250, 1.406109 ], [ -68.906250, -2.811371 ], [ -73.125000, -2.811371 ], [ -73.125000, -1.406109 ], [ -74.531250, -1.406109 ], [ -74.531250, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 1.406109 ], [ -78.750000, 1.406109 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 11.178402 ], [ -73.125000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 20.632784 ], [ -71.718750, 19.311143 ], [ -73.125000, 19.311143 ], [ -73.125000, 20.632784 ], [ -71.718750, 20.632784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.875000, 11.178402 ], [ -61.875000, 9.795678 ], [ -60.468750, 9.795678 ], [ -60.468750, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.281250, 2.811371 ], [ -63.281250, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 5.615986 ], [ -70.312500, 5.615986 ], [ -70.312500, 7.013668 ], [ -71.718750, 7.013668 ], [ -71.718750, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 11.178402 ], [ -66.093750, 11.178402 ], [ -66.093750, 9.795678 ], [ -64.687500, 9.795678 ], [ -64.687500, 11.178402 ], [ -61.875000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.312500, 20.632784 ], [ -70.312500, 19.311143 ], [ -71.718750, 19.311143 ], [ -71.718750, 20.632784 ], [ -70.312500, 20.632784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 11.178402 ], [ -60.468750, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 11.178402 ], [ -60.468750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.718750, -4.214943 ], [ -71.718750, -2.811371 ], [ -70.312500, -2.811371 ] ] ], [ [ [ -73.125000, 7.013668 ], [ -67.500000, 7.013668 ], [ -67.500000, 5.615986 ], [ -68.906250, 5.615986 ], [ -68.906250, 2.811371 ], [ -70.312500, 2.811371 ], [ -70.312500, -1.406109 ], [ -74.531250, -1.406109 ], [ -74.531250, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 1.406109 ], [ -80.156250, 1.406109 ], [ -80.156250, 2.811371 ], [ -78.750000, 2.811371 ], [ -78.750000, 4.214943 ], [ -77.343750, 4.214943 ], [ -77.343750, 7.013668 ], [ -78.750000, 7.013668 ], [ -78.750000, 9.795678 ], [ -75.937500, 9.795678 ], [ -75.937500, 11.178402 ], [ -74.531250, 11.178402 ], [ -74.531250, 12.554564 ], [ -73.125000, 12.554564 ], [ -73.125000, 7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 8.407168 ], [ -59.062500, 7.013668 ], [ -57.656250, 7.013668 ], [ -57.656250, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.811371 ], [ -60.468750, 2.811371 ], [ -60.468750, 8.407168 ], [ -59.062500, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 19.311143 ], [ -66.093750, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 19.311143 ], [ -66.093750, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 5.615986 ], [ -53.437500, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 5.615986 ], [ -53.437500, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 12.554564 ], [ -68.906250, 11.178402 ], [ -61.875000, 11.178402 ], [ -61.875000, 9.795678 ], [ -60.468750, 9.795678 ], [ -60.468750, 7.013668 ], [ -61.875000, 7.013668 ], [ -61.875000, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 2.811371 ], [ -68.906250, 2.811371 ], [ -68.906250, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 7.013668 ], [ -73.125000, 7.013668 ], [ -73.125000, 9.795678 ], [ -71.718750, 9.795678 ], [ -71.718750, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 12.554564 ], [ -68.906250, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 66.513260 ], [ -14.062500, 64.774125 ], [ -15.468750, 64.774125 ], [ -15.468750, 63.548552 ], [ -22.500000, 63.548552 ], [ -22.500000, 64.168107 ], [ -23.906250, 64.168107 ], [ -23.906250, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -22.500000, 65.946472 ], [ -15.468750, 65.946472 ], [ -15.468750, 66.513260 ], [ -14.062500, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 8.407168 ], [ -59.062500, 7.013668 ], [ -57.656250, 7.013668 ], [ -57.656250, 5.615986 ], [ -59.062500, 5.615986 ], [ -59.062500, 4.214943 ], [ -57.656250, 4.214943 ], [ -57.656250, 2.811371 ], [ -59.062500, 2.811371 ], [ -59.062500, 1.406109 ], [ -60.468750, 1.406109 ], [ -60.468750, 5.615986 ], [ -61.875000, 5.615986 ], [ -61.875000, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 8.407168 ], [ -59.062500, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.977614 ], [ -7.031250, 54.162434 ], [ -5.625000, 54.162434 ], [ -5.625000, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.977614 ], [ -7.031250, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 7.013668 ], [ -54.843750, 2.811371 ], [ -57.656250, 2.811371 ], [ -57.656250, 4.214943 ], [ -59.062500, 4.214943 ], [ -59.062500, 5.615986 ], [ -57.656250, 5.615986 ], [ -57.656250, 7.013668 ], [ -54.843750, 7.013668 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 58.813742 ], [ -2.812500, 58.077876 ], [ -4.218750, 58.077876 ], [ -4.218750, 57.326521 ], [ -1.406250, 57.326521 ], [ -1.406250, 56.559482 ], [ -2.812500, 56.559482 ], [ -2.812500, 55.776573 ], [ -1.406250, 55.776573 ], [ -1.406250, 54.162434 ], [ 0.000000, 54.162434 ], [ 0.000000, 52.482780 ], [ 1.406250, 52.482780 ], [ 1.406250, 50.736455 ], [ -2.812500, 50.736455 ], [ -2.812500, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -4.218750, 54.162434 ], [ -4.218750, 55.776573 ], [ -5.625000, 55.776573 ], [ -5.625000, 58.813742 ], [ -2.812500, 58.813742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.500000, 65.946472 ], [ -19.687500, 65.946472 ], [ -19.687500, 66.513260 ], [ -15.468750, 66.513260 ], [ -15.468750, 65.366837 ], [ -14.062500, 65.366837 ], [ -14.062500, 64.774125 ], [ -15.468750, 64.774125 ], [ -15.468750, 64.168107 ], [ -18.281250, 64.168107 ], [ -18.281250, 63.548552 ], [ -21.093750, 63.548552 ], [ -21.093750, 64.168107 ], [ -22.500000, 64.168107 ], [ -22.500000, 64.774125 ], [ -25.312500, 64.774125 ], [ -25.312500, 65.366837 ], [ -22.500000, 65.366837 ], [ -22.500000, 65.946472 ] ] ], [ [ [ -22.500000, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -22.500000, 65.946472 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 2.811371 ], [ -53.437500, 1.406109 ], [ -54.843750, 1.406109 ], [ -54.843750, 2.811371 ], [ -53.437500, 2.811371 ] ] ], [ [ [ -52.031250, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 4.214943 ], [ -52.031250, 4.214943 ], [ -52.031250, 2.811371 ] ] ], [ [ [ 9.843750, 43.068888 ], [ 9.843750, 40.979898 ], [ 8.437500, 40.979898 ], [ 8.437500, 43.068888 ], [ 9.843750, 43.068888 ] ] ], [ [ [ 4.218750, 50.736455 ], [ 4.218750, 49.837982 ], [ 5.625000, 49.837982 ], [ 5.625000, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.031250, 47.040182 ], [ 5.625000, 47.040182 ], [ 5.625000, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.032974 ], [ 0.000000, 42.032974 ], [ 0.000000, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 46.073231 ], [ -2.812500, 46.073231 ], [ -2.812500, 47.989922 ], [ -4.218750, 47.989922 ], [ -4.218750, 48.922499 ], [ 1.406250, 48.922499 ], [ 1.406250, 50.736455 ], [ 4.218750, 50.736455 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.162434 ], [ -7.031250, 52.482780 ], [ -9.843750, 52.482780 ], [ -9.843750, 54.162434 ], [ -7.031250, 54.162434 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -12.656250, 23.241346 ], [ -12.656250, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.241346 ], [ -12.656250, 23.241346 ] ] ], [ [ [ -12.656250, 24.527135 ], [ -11.250000, 24.527135 ], [ -11.250000, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 24.527135 ] ] ], [ [ [ -11.250000, 25.799891 ], [ -11.250000, 27.059126 ], [ -8.437500, 27.059126 ], [ -8.437500, 25.799891 ], [ -11.250000, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -4.218750, 58.813742 ], [ -4.218750, 58.077876 ], [ -2.812500, 58.077876 ], [ -2.812500, 55.776573 ], [ -1.406250, 55.776573 ], [ -1.406250, 54.162434 ], [ 0.000000, 54.162434 ], [ 0.000000, 53.330873 ], [ 1.406250, 53.330873 ], [ 1.406250, 52.482780 ], [ 0.000000, 52.482780 ], [ 0.000000, 51.618017 ], [ -1.406250, 51.618017 ], [ -1.406250, 50.736455 ], [ -5.625000, 50.736455 ], [ -5.625000, 54.162434 ], [ -4.218750, 54.162434 ], [ -4.218750, 54.977614 ], [ -5.625000, 54.977614 ], [ -5.625000, 55.776573 ], [ -7.031250, 55.776573 ], [ -7.031250, 58.077876 ], [ -5.625000, 58.077876 ], [ -5.625000, 58.813742 ], [ -4.218750, 58.813742 ] ] ], [ [ [ -7.031250, 55.776573 ], [ -7.031250, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 55.776573 ], [ -7.031250, 55.776573 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 42.032974 ], [ -7.031250, 36.597889 ], [ -8.437500, 36.597889 ], [ -8.437500, 37.718590 ], [ -9.843750, 37.718590 ], [ -9.843750, 39.909736 ], [ -8.437500, 39.909736 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.031250, 5.615986 ], [ -52.031250, 4.214943 ], [ -53.437500, 4.214943 ], [ -53.437500, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 5.615986 ], [ -52.031250, 5.615986 ] ] ], [ [ [ 2.812500, 51.618017 ], [ 2.812500, 50.736455 ], [ 4.218750, 50.736455 ], [ 4.218750, 49.837982 ], [ 7.031250, 49.837982 ], [ 7.031250, 47.989922 ], [ 5.625000, 47.989922 ], [ 5.625000, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 44.087585 ], [ 2.812500, 44.087585 ], [ 2.812500, 43.068888 ], [ -2.812500, 43.068888 ], [ -2.812500, 44.087585 ], [ -1.406250, 44.087585 ], [ -1.406250, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.989922 ], [ -5.625000, 47.989922 ], [ -5.625000, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 49.837982 ], [ 0.000000, 49.837982 ], [ 0.000000, 50.736455 ], [ 1.406250, 50.736455 ], [ 1.406250, 51.618017 ], [ 2.812500, 51.618017 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 43.068888 ], [ 0.000000, 42.032974 ], [ 2.812500, 42.032974 ], [ 2.812500, 40.979898 ], [ 1.406250, 40.979898 ], [ 1.406250, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 43.068888 ], [ 0.000000, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 23.241346 ], [ -14.062500, 21.943046 ], [ -15.468750, 21.943046 ], [ -15.468750, 23.241346 ], [ -14.062500, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.307144 ], [ -1.406250, 34.307144 ], [ -1.406250, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.304381 ], [ -8.437500, 28.304381 ], [ -8.437500, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 25.799891 ], [ -12.656250, 25.799891 ], [ -12.656250, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 23.241346 ], [ -15.468750, 23.241346 ], [ -15.468750, 25.799891 ], [ -14.062500, 25.799891 ], [ -14.062500, 27.059126 ], [ -12.656250, 27.059126 ], [ -12.656250, 28.304381 ], [ -9.843750, 28.304381 ], [ -9.843750, 33.137551 ], [ -7.031250, 33.137551 ], [ -7.031250, 34.307144 ], [ -5.625000, 34.307144 ], [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 43.068888 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ], [ -7.031250, 39.909736 ], [ -8.437500, 39.909736 ], [ -8.437500, 37.718590 ], [ -9.843750, 37.718590 ], [ -9.843750, 43.068888 ], [ -8.437500, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 13.923404 ], [ -11.250000, 13.923404 ], [ -11.250000, 12.554564 ], [ -15.468750, 12.554564 ], [ -15.468750, 13.923404 ], [ -18.281250, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 44.087585 ], [ -2.812500, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.032974 ], [ 0.000000, 42.032974 ], [ 0.000000, 39.909736 ], [ -1.406250, 39.909736 ], [ -1.406250, 37.718590 ], [ -5.625000, 37.718590 ], [ -5.625000, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 37.718590 ], [ -8.437500, 37.718590 ], [ -8.437500, 39.909736 ], [ -7.031250, 39.909736 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 44.087585 ], [ -2.812500, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 13.923404 ], [ -15.468750, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.923404 ], [ -15.468750, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -9.843750, 29.535230 ], [ -9.843750, 27.059126 ], [ -12.656250, 27.059126 ], [ -12.656250, 24.527135 ], [ -14.062500, 24.527135 ], [ -14.062500, 23.241346 ], [ -15.468750, 23.241346 ], [ -15.468750, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 24.527135 ], [ -15.468750, 24.527135 ], [ -15.468750, 27.059126 ], [ -14.062500, 27.059126 ], [ -14.062500, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 29.535230 ], [ -9.843750, 29.535230 ] ] ], [ [ [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 30.751278 ], [ -8.437500, 30.751278 ], [ -8.437500, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 34.307144 ], [ -7.031250, 34.307144 ], [ -7.031250, 36.597889 ], [ -5.625000, 36.597889 ], [ -5.625000, 35.460670 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 12.554564 ], [ -14.062500, 11.178402 ], [ -16.875000, 11.178402 ], [ -16.875000, 12.554564 ], [ -14.062500, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 12.554564 ], [ -14.062500, 12.554564 ], [ -14.062500, 13.923404 ], [ -18.281250, 13.923404 ], [ -18.281250, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 12.554564 ], [ -8.437500, 7.013668 ], [ -9.843750, 7.013668 ], [ -9.843750, 8.407168 ], [ -11.250000, 8.407168 ], [ -11.250000, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 8.407168 ], [ -14.062500, 8.407168 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ], [ -11.250000, 11.178402 ], [ -9.843750, 11.178402 ], [ -9.843750, 12.554564 ], [ -8.437500, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.923404 ], [ -14.062500, 12.554564 ], [ -15.468750, 12.554564 ], [ -15.468750, 11.178402 ], [ -16.875000, 11.178402 ], [ -16.875000, 13.923404 ], [ -14.062500, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 9.795678 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 9.795678 ], [ -11.250000, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 12.554564 ], [ -8.437500, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 11.178402 ], [ -12.656250, 11.178402 ], [ -12.656250, 9.795678 ], [ -15.468750, 9.795678 ], [ -15.468750, 12.554564 ], [ -8.437500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 25.799891 ], [ -7.031250, 21.943046 ], [ -5.625000, 21.943046 ], [ -5.625000, 15.284185 ], [ -14.062500, 15.284185 ], [ -14.062500, 16.636192 ], [ -15.468750, 16.636192 ], [ -15.468750, 17.978733 ], [ -16.875000, 17.978733 ], [ -16.875000, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 23.241346 ], [ -11.250000, 23.241346 ], [ -11.250000, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.799891 ], [ -7.031250, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 11.178402 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 8.407168 ], [ -14.062500, 8.407168 ], [ -14.062500, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 11.178402 ], [ -11.250000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.218750, 24.527135 ], [ -4.218750, 23.241346 ], [ -1.406250, 23.241346 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 13.923404 ], [ -4.218750, 13.923404 ], [ -4.218750, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 12.554564 ], [ -9.843750, 12.554564 ], [ -9.843750, 11.178402 ], [ -11.250000, 11.178402 ], [ -11.250000, 13.923404 ], [ -12.656250, 13.923404 ], [ -12.656250, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 21.943046 ], [ -7.031250, 21.943046 ], [ -7.031250, 24.527135 ], [ -4.218750, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 27.059126 ], [ -7.031250, 19.311143 ], [ -5.625000, 19.311143 ], [ -5.625000, 16.636192 ], [ -9.843750, 16.636192 ], [ -9.843750, 15.284185 ], [ -14.062500, 15.284185 ], [ -14.062500, 16.636192 ], [ -16.875000, 16.636192 ], [ -16.875000, 20.632784 ], [ -18.281250, 20.632784 ], [ -18.281250, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 27.059126 ], [ -7.031250, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 1.406250, 13.923404 ], [ 1.406250, 12.554564 ], [ 2.812500, 12.554564 ], [ 2.812500, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 11.178402 ], [ -4.218750, 11.178402 ], [ -4.218750, 13.923404 ], [ -1.406250, 13.923404 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 25.799891 ], [ -5.625000, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 20.632784 ], [ 2.812500, 20.632784 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 0.000000, 16.636192 ], [ 0.000000, 15.284185 ], [ -2.812500, 15.284185 ], [ -2.812500, 13.923404 ], [ -5.625000, 13.923404 ], [ -5.625000, 11.178402 ], [ -8.437500, 11.178402 ], [ -8.437500, 12.554564 ], [ -12.656250, 12.554564 ], [ -12.656250, 15.284185 ], [ -9.843750, 15.284185 ], [ -9.843750, 16.636192 ], [ -5.625000, 16.636192 ], [ -5.625000, 19.311143 ], [ -7.031250, 19.311143 ], [ -7.031250, 25.799891 ], [ -5.625000, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 5.615986 ], [ -7.031250, 5.615986 ], [ -7.031250, 4.214943 ], [ -9.843750, 4.214943 ], [ -9.843750, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 1.406250, 13.923404 ], [ 1.406250, 11.178402 ], [ -4.218750, 11.178402 ], [ -4.218750, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 9.795678 ], [ -2.812500, 5.615986 ], [ -5.625000, 5.615986 ], [ -5.625000, 4.214943 ], [ -7.031250, 4.214943 ], [ -7.031250, 5.615986 ], [ -8.437500, 5.615986 ], [ -8.437500, 9.795678 ], [ -2.812500, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 9.795678 ], [ -9.843750, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 9.795678 ], [ -9.843750, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 8.407168 ], [ 1.406250, 8.407168 ], [ 1.406250, 7.013668 ], [ 0.000000, 7.013668 ], [ 0.000000, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.214943 ], [ -2.812500, 4.214943 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -4.218750, 9.795678 ], [ -4.218750, 5.615986 ], [ -8.437500, 5.615986 ], [ -8.437500, 7.013668 ], [ -9.843750, 7.013668 ], [ -9.843750, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 11.178402 ], [ -5.625000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 1.406109 ], [ -77.343750, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -5.615986 ], [ -80.156250, -5.615986 ], [ -80.156250, 1.406109 ], [ -77.343750, 1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 5.615986 ], [ -4.218750, 5.615986 ], [ -4.218750, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.718750, -4.214943 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -74.531250, -7.013668 ], [ -74.531250, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -68.906250, -11.178402 ], [ -68.906250, -17.978733 ], [ -73.125000, -17.978733 ], [ -73.125000, -16.636192 ], [ -75.937500, -16.636192 ], [ -75.937500, -13.923404 ], [ -77.343750, -13.923404 ], [ -77.343750, -11.178402 ], [ -78.750000, -11.178402 ], [ -78.750000, -8.407168 ], [ -80.156250, -8.407168 ], [ -80.156250, -7.013668 ], [ -81.562500, -7.013668 ], [ -81.562500, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -5.615986 ], [ -78.750000, -5.615986 ], [ -78.750000, -4.214943 ], [ -77.343750, -4.214943 ], [ -77.343750, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.937500, 1.406109 ], [ -75.937500, -1.406109 ], [ -77.343750, -1.406109 ], [ -77.343750, -2.811371 ], [ -78.750000, -2.811371 ], [ -78.750000, -4.214943 ], [ -81.562500, -4.214943 ], [ -81.562500, -2.811371 ], [ -80.156250, -2.811371 ], [ -80.156250, -1.406109 ], [ -81.562500, -1.406109 ], [ -81.562500, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 1.406109 ], [ -75.937500, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -53.330873 ], [ -68.906250, -53.330873 ], [ -68.906250, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -55.776573 ], [ -70.312500, -55.776573 ], [ -70.312500, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -52.482780 ], [ -75.937500, -52.482780 ], [ -75.937500, -51.618017 ], [ -74.531250, -51.618017 ], [ -74.531250, -50.736455 ], [ -75.937500, -50.736455 ], [ -75.937500, -48.922499 ], [ -74.531250, -48.922499 ], [ -74.531250, -44.087585 ], [ -73.125000, -44.087585 ], [ -73.125000, -43.068888 ], [ -74.531250, -43.068888 ], [ -74.531250, -40.979898 ], [ -73.125000, -40.979898 ], [ -73.125000, -35.460670 ], [ -71.718750, -35.460670 ], [ -71.718750, -28.304381 ], [ -70.312500, -28.304381 ], [ -70.312500, -36.597889 ], [ -71.718750, -36.597889 ], [ -71.718750, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -50.736455 ], [ -71.718750, -50.736455 ], [ -71.718750, -52.482780 ], [ -70.312500, -52.482780 ], [ -70.312500, -53.330873 ] ] ], [ [ [ -68.906250, -23.241346 ], [ -67.500000, -23.241346 ], [ -67.500000, -24.527135 ], [ -68.906250, -24.527135 ], [ -68.906250, -28.304381 ], [ -70.312500, -28.304381 ], [ -70.312500, -17.978733 ], [ -68.906250, -17.978733 ], [ -68.906250, -23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -1.406109 ], [ -70.312500, -1.406109 ], [ -70.312500, -2.811371 ], [ -71.718750, -2.811371 ], [ -71.718750, -4.214943 ], [ -73.125000, -4.214943 ], [ -73.125000, -5.615986 ], [ -74.531250, -5.615986 ], [ -74.531250, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -68.906250, -11.178402 ], [ -68.906250, -12.554564 ], [ -70.312500, -12.554564 ], [ -70.312500, -17.978733 ], [ -71.718750, -17.978733 ], [ -71.718750, -16.636192 ], [ -74.531250, -16.636192 ], [ -74.531250, -15.284185 ], [ -75.937500, -15.284185 ], [ -75.937500, -13.923404 ], [ -77.343750, -13.923404 ], [ -77.343750, -11.178402 ], [ -78.750000, -11.178402 ], [ -78.750000, -8.407168 ], [ -80.156250, -8.407168 ], [ -80.156250, -7.013668 ], [ -81.562500, -7.013668 ], [ -81.562500, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -1.406109 ], [ -75.937500, -1.406109 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, -9.795678 ], [ -64.687500, -11.178402 ], [ -66.093750, -11.178402 ], [ -66.093750, -12.554564 ], [ -61.875000, -12.554564 ], [ -61.875000, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -16.636192 ], [ -57.656250, -16.636192 ], [ -57.656250, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -23.241346 ], [ -68.906250, -23.241346 ], [ -68.906250, -11.178402 ], [ -67.500000, -11.178402 ], [ -67.500000, -9.795678 ], [ -64.687500, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -74.531250, -53.330873 ], [ -75.937500, -53.330873 ], [ -75.937500, -52.482780 ], [ -75.937500, -47.040182 ], [ -74.531250, -47.040182 ], [ -74.531250, -46.073231 ], [ -75.937500, -46.073231 ], [ -75.937500, -45.089036 ], [ -74.531250, -45.089036 ], [ -74.531250, -43.068888 ], [ -73.125000, -43.068888 ], [ -71.718750, -43.068888 ], [ -71.718750, -46.073231 ], [ -73.125000, -46.073231 ], [ -73.125000, -48.922499 ], [ -74.531250, -48.922499 ], [ -74.531250, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -51.618017 ], [ -70.312500, -51.618017 ], [ -70.312500, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.162434 ], [ -67.500000, -54.162434 ], [ -67.500000, -54.977614 ], [ -73.125000, -54.977614 ], [ -73.125000, -54.162434 ], [ -74.531250, -54.162434 ], [ -74.531250, -53.330873 ] ], [ [ -70.312500, -52.482780 ], [ -71.718750, -52.482780 ], [ -71.718750, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.482780 ] ] ], [ [ [ -71.718750, -31.952162 ], [ -70.312500, -31.952162 ], [ -70.312500, -34.307144 ], [ -71.718750, -34.307144 ], [ -71.718750, -39.909736 ], [ -73.125000, -39.909736 ], [ -73.125000, -42.032974 ], [ -74.531250, -42.032974 ], [ -74.531250, -36.597889 ], [ -73.125000, -36.597889 ], [ -73.125000, -33.137551 ], [ -71.718750, -33.137551 ], [ -71.718750, -31.952162 ] ] ], [ [ [ -70.312500, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -21.943046 ], [ -67.500000, -21.943046 ], [ -67.500000, -23.241346 ], [ -68.906250, -23.241346 ], [ -68.906250, -27.059126 ], [ -70.312500, -27.059126 ], [ -70.312500, -30.751278 ], [ -71.718750, -30.751278 ], [ -71.718750, -21.943046 ], [ -70.312500, -21.943046 ], [ -70.312500, -19.311143 ] ] ], [ [ [ -70.312500, -19.311143 ], [ -71.718750, -19.311143 ], [ -71.718750, -17.978733 ], [ -70.312500, -17.978733 ], [ -70.312500, -19.311143 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.625000, 4.214943 ], [ -50.625000, 0.000000 ], [ -49.218750, 0.000000 ], [ -49.218750, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.811371 ], [ -39.375000, -2.811371 ], [ -39.375000, -4.214943 ], [ -36.562500, -4.214943 ], [ -36.562500, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -11.178402 ], [ -36.562500, -11.178402 ], [ -36.562500, -12.554564 ], [ -39.375000, -12.554564 ], [ -39.375000, -20.632784 ], [ -40.781250, -20.632784 ], [ -40.781250, -21.943046 ], [ -42.187500, -21.943046 ], [ -42.187500, -23.241346 ], [ -45.000000, -23.241346 ], [ -45.000000, -24.527135 ], [ -47.812500, -24.527135 ], [ -47.812500, -28.304381 ], [ -49.218750, -28.304381 ], [ -49.218750, -30.751278 ], [ -50.625000, -30.751278 ], [ -50.625000, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -34.307144 ], [ -53.437500, -34.307144 ], [ -53.437500, -31.952162 ], [ -56.250000, -31.952162 ], [ -56.250000, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -29.535230 ], [ -56.250000, -29.535230 ], [ -56.250000, -28.304381 ], [ -54.843750, -28.304381 ], [ -54.843750, -27.059126 ], [ -53.437500, -27.059126 ], [ -53.437500, -25.799891 ], [ -54.843750, -25.799891 ], [ -54.843750, -23.241346 ], [ -56.250000, -23.241346 ], [ -56.250000, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -16.636192 ], [ -60.468750, -16.636192 ], [ -60.468750, -13.923404 ], [ -61.875000, -13.923404 ], [ -61.875000, -12.554564 ], [ -66.093750, -12.554564 ], [ -66.093750, -11.178402 ], [ -64.687500, -11.178402 ], [ -64.687500, -9.795678 ], [ -67.500000, -9.795678 ], [ -67.500000, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -8.407168 ], [ -74.531250, -8.407168 ], [ -74.531250, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -71.718750, -5.615986 ], [ -71.718750, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -68.906250, -2.811371 ], [ -68.906250, 1.406109 ], [ -63.281250, 1.406109 ], [ -63.281250, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 2.811371 ], [ -59.062500, 2.811371 ], [ -59.062500, 1.406109 ], [ -56.250000, 1.406109 ], [ -56.250000, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 1.406109 ], [ -53.437500, 1.406109 ], [ -53.437500, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 4.214943 ], [ -50.625000, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, -9.795678 ], [ -66.093750, -11.178402 ], [ -64.687500, -11.178402 ], [ -64.687500, -12.554564 ], [ -61.875000, -12.554564 ], [ -61.875000, -15.284185 ], [ -59.062500, -15.284185 ], [ -59.062500, -19.311143 ], [ -63.281250, -19.311143 ], [ -63.281250, -21.943046 ], [ -68.906250, -21.943046 ], [ -68.906250, -19.311143 ], [ -70.312500, -19.311143 ], [ -70.312500, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -66.093750, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -19.311143 ], [ -57.656250, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ], [ -54.843750, -23.241346 ], [ -54.843750, -27.059126 ], [ -57.656250, -27.059126 ], [ -57.656250, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.241346 ], [ -63.281250, -23.241346 ], [ -63.281250, -21.943046 ], [ -61.875000, -21.943046 ], [ -61.875000, -19.311143 ], [ -57.656250, -19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 5.615986 ], [ -60.468750, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 4.214943 ], [ -52.031250, 4.214943 ], [ -52.031250, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ], [ -52.031250, 1.406109 ], [ -52.031250, 0.000000 ], [ -47.812500, 0.000000 ], [ -47.812500, -1.406109 ], [ -43.593750, -1.406109 ], [ -43.593750, -2.811371 ], [ -39.375000, -2.811371 ], [ -39.375000, -4.214943 ], [ -36.562500, -4.214943 ], [ -36.562500, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -8.407168 ], [ -36.562500, -8.407168 ], [ -36.562500, -9.795678 ], [ -37.968750, -9.795678 ], [ -37.968750, -12.554564 ], [ -39.375000, -12.554564 ], [ -39.375000, -17.978733 ], [ -40.781250, -17.978733 ], [ -40.781250, -20.632784 ], [ -42.187500, -20.632784 ], [ -42.187500, -21.943046 ], [ -43.593750, -21.943046 ], [ -43.593750, -23.241346 ], [ -47.812500, -23.241346 ], [ -47.812500, -25.799891 ], [ -49.218750, -25.799891 ], [ -49.218750, -28.304381 ], [ -50.625000, -28.304381 ], [ -50.625000, -29.535230 ], [ -52.031250, -29.535230 ], [ -52.031250, -31.952162 ], [ -54.843750, -31.952162 ], [ -54.843750, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -23.241346 ], [ -56.250000, -23.241346 ], [ -56.250000, -21.943046 ], [ -59.062500, -21.943046 ], [ -59.062500, -15.284185 ], [ -61.875000, -15.284185 ], [ -61.875000, -12.554564 ], [ -64.687500, -12.554564 ], [ -64.687500, -11.178402 ], [ -66.093750, -11.178402 ], [ -66.093750, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -8.407168 ], [ -74.531250, -8.407168 ], [ -74.531250, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, 2.811371 ], [ -67.500000, 2.811371 ], [ -67.500000, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 4.214943 ], [ -61.875000, 4.214943 ], [ -61.875000, 5.615986 ], [ -60.468750, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.093750, -54.162434 ], [ -66.093750, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -54.162434 ], [ -66.093750, -54.162434 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -23.241346 ], [ -60.468750, -23.241346 ], [ -60.468750, -24.527135 ], [ -57.656250, -24.527135 ], [ -57.656250, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -29.535230 ], [ -57.656250, -29.535230 ], [ -57.656250, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -35.460670 ], [ -57.656250, -35.460670 ], [ -57.656250, -36.597889 ], [ -56.250000, -36.597889 ], [ -56.250000, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -61.875000, -38.822591 ], [ -61.875000, -40.979898 ], [ -64.687500, -40.979898 ], [ -64.687500, -42.032974 ], [ -63.281250, -42.032974 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -45.089036 ], [ -67.500000, -45.089036 ], [ -67.500000, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -49.837982 ], [ -68.906250, -49.837982 ], [ -68.906250, -52.482780 ], [ -71.718750, -52.482780 ], [ -71.718750, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -48.922499 ], [ -71.718750, -48.922499 ], [ -71.718750, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.241346 ], [ -66.093750, -23.241346 ], [ -66.093750, -21.943046 ], [ -63.281250, -21.943046 ] ] ], [ [ [ -53.437500, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -53.437500, -25.799891 ], [ -53.437500, -27.059126 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ], [ -54.843750, -23.241346 ], [ -54.843750, -27.059126 ], [ -59.062500, -27.059126 ], [ -59.062500, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.241346 ], [ -63.281250, -23.241346 ], [ -63.281250, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.250000, -30.751278 ], [ -56.250000, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -35.460670 ], [ -56.250000, -35.460670 ], [ -56.250000, -34.307144 ], [ -57.656250, -34.307144 ], [ -57.656250, -30.751278 ], [ -56.250000, -30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.093750, -54.162434 ], [ -66.093750, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -54.162434 ], [ -66.093750, -54.162434 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -23.241346 ], [ -60.468750, -23.241346 ], [ -60.468750, -24.527135 ], [ -57.656250, -24.527135 ], [ -57.656250, -25.799891 ], [ -59.062500, -25.799891 ], [ -59.062500, -27.059126 ], [ -56.250000, -27.059126 ], [ -56.250000, -28.304381 ], [ -57.656250, -28.304381 ], [ -57.656250, -30.751278 ], [ -59.062500, -30.751278 ], [ -59.062500, -34.307144 ], [ -57.656250, -34.307144 ], [ -57.656250, -37.718590 ], [ -60.468750, -37.718590 ], [ -60.468750, -38.822591 ], [ -63.281250, -38.822591 ], [ -63.281250, -40.979898 ], [ -66.093750, -40.979898 ], [ -66.093750, -42.032974 ], [ -64.687500, -42.032974 ], [ -64.687500, -43.068888 ], [ -66.093750, -43.068888 ], [ -66.093750, -44.087585 ], [ -67.500000, -44.087585 ], [ -67.500000, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -47.989922 ], [ -67.500000, -47.989922 ], [ -67.500000, -48.922499 ], [ -68.906250, -48.922499 ], [ -68.906250, -49.837982 ], [ -70.312500, -49.837982 ], [ -70.312500, -50.736455 ], [ -68.906250, -50.736455 ], [ -68.906250, -51.618017 ], [ -73.125000, -51.618017 ], [ -73.125000, -50.736455 ], [ -74.531250, -50.736455 ], [ -74.531250, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -46.073231 ], [ -71.718750, -46.073231 ], [ -71.718750, -43.068888 ], [ -73.125000, -43.068888 ], [ -73.125000, -39.909736 ], [ -71.718750, -39.909736 ], [ -71.718750, -34.307144 ], [ -70.312500, -34.307144 ], [ -70.312500, -31.952162 ], [ -71.718750, -31.952162 ], [ -71.718750, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -23.241346 ], [ -67.500000, -23.241346 ], [ -67.500000, -21.943046 ], [ -63.281250, -21.943046 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.482780 ], [ -61.875000, -52.482780 ], [ -61.875000, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, -30.751278 ], [ -54.843750, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -30.751278 ], [ -54.843750, -30.751278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -59.062500, -79.935918 ], [ -59.062500, -80.415707 ], [ -60.468750, -80.415707 ], [ -60.468750, -81.093214 ], [ -61.875000, -81.093214 ], [ -61.875000, -80.872827 ], [ -66.093750, -80.872827 ], [ -66.093750, -80.178713 ], [ -64.687500, -80.178713 ], [ -64.687500, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -60.468750, -80.178713 ], [ -60.468750, -79.935918 ], [ -59.062500, -79.935918 ] ] ], [ [ [ -45.000000, -78.061989 ], [ -45.000000, -78.349411 ], [ -43.593750, -78.349411 ], [ -43.593750, -80.178713 ], [ -45.000000, -80.178713 ], [ -45.000000, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.872827 ], [ -47.812500, -80.872827 ], [ -47.812500, -81.093214 ], [ -53.437500, -81.093214 ], [ -53.437500, -80.872827 ], [ -54.843750, -80.872827 ], [ -54.843750, -80.415707 ], [ -53.437500, -80.415707 ], [ -53.437500, -80.178713 ], [ -52.031250, -80.178713 ], [ -52.031250, -79.935918 ], [ -50.625000, -79.935918 ], [ -50.625000, -79.171335 ], [ -49.218750, -79.171335 ], [ -49.218750, -78.061989 ], [ -45.000000, -78.061989 ] ] ], [ [ [ -168.750000, -83.979259 ], [ -168.750000, -84.405941 ], [ -167.343750, -84.405941 ], [ -167.343750, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.170970 ], [ -161.718750, -85.170970 ], [ -161.718750, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.402036 ], [ -156.093750, -85.402036 ], [ -156.093750, -85.170970 ], [ -151.875000, -85.170970 ], [ -151.875000, -85.287916 ], [ -150.468750, -85.287916 ], [ -150.468750, -85.513398 ], [ -149.062500, -85.513398 ], [ -149.062500, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -185.625000, -84.405941 ], [ -185.625000, -84.267172 ], [ -182.812500, -84.267172 ], [ -182.812500, -84.405941 ], [ -181.406250, -84.405941 ], [ -181.406250, -84.541361 ], [ -180.000000, -84.541361 ], [ -180.000000, -84.405941 ], [ -178.593750, -84.405941 ], [ -178.593750, -84.267172 ], [ -175.781250, -84.267172 ], [ -175.781250, -84.405941 ], [ -172.968750, -84.405941 ], [ -172.968750, -84.124973 ], [ -171.562500, -84.124973 ], [ -171.562500, -83.979259 ], [ -168.750000, -83.979259 ] ] ], [ [ [ -147.656250, -85.622069 ], [ -147.656250, -85.402036 ], [ -146.250000, -85.402036 ], [ -146.250000, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -143.437500, -85.170970 ], [ -143.437500, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.405941 ], [ -150.468750, -84.405941 ], [ -150.468750, -83.829945 ], [ -153.281250, -83.829945 ], [ -153.281250, -81.923186 ], [ -154.687500, -81.923186 ], [ -154.687500, -81.518272 ], [ -156.093750, -81.518272 ], [ -156.093750, -81.308321 ], [ -157.500000, -81.308321 ], [ -157.500000, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -149.062500, -81.308321 ], [ -149.062500, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.647035 ], [ -146.250000, -80.647035 ], [ -146.250000, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -151.875000, -79.432371 ], [ -151.875000, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -157.500000, -78.630006 ], [ -157.500000, -77.466028 ], [ -158.906250, -77.466028 ], [ -158.906250, -76.840816 ], [ -157.500000, -76.840816 ], [ -157.500000, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.157163 ], [ -149.062500, -77.157163 ], [ -149.062500, -76.840816 ], [ -147.656250, -76.840816 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.497157 ], [ -142.031250, -75.497157 ], [ -142.031250, -75.140778 ], [ -137.812500, -75.140778 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.402163 ], [ -115.312500, -74.402163 ], [ -115.312500, -74.019543 ], [ -113.906250, -74.019543 ], [ -113.906250, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.775843 ], [ -108.281250, -74.775843 ], [ -108.281250, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -101.250000, -74.775843 ], [ -101.250000, -74.019543 ], [ -102.656250, -74.019543 ], [ -102.656250, -73.226700 ], [ -104.062500, -73.226700 ], [ -104.062500, -72.816074 ], [ -98.437500, -72.816074 ], [ -98.437500, -73.627789 ], [ -94.218750, -73.627789 ], [ -94.218750, -73.226700 ], [ -90.000000, -73.226700 ], [ -90.000000, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -74.019543 ], [ -80.156250, -74.019543 ], [ -80.156250, -73.627789 ], [ -77.343750, -73.627789 ], [ -77.343750, -74.019543 ], [ -74.531250, -74.019543 ], [ -74.531250, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -72.816074 ], [ -67.500000, -72.816074 ], [ -67.500000, -71.074056 ], [ -68.906250, -71.074056 ], [ -68.906250, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -70.312500, -69.162558 ], [ -70.312500, -69.657086 ], [ -68.906250, -69.657086 ], [ -68.906250, -69.162558 ], [ -67.500000, -69.162558 ], [ -67.500000, -67.067433 ], [ -66.093750, -67.067433 ], [ -66.093750, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -65.946472 ], [ -61.875000, -65.946472 ], [ -61.875000, -66.513260 ], [ -63.281250, -66.513260 ], [ -63.281250, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.609221 ], [ -66.093750, -67.609221 ], [ -66.093750, -68.138852 ], [ -64.687500, -68.138852 ], [ -64.687500, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -70.140364 ], [ -61.875000, -70.140364 ], [ -61.875000, -72.395706 ], [ -60.468750, -72.395706 ], [ -60.468750, -74.019543 ], [ -61.875000, -74.019543 ], [ -61.875000, -74.402163 ], [ -63.281250, -74.402163 ], [ -63.281250, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -66.093750, -75.497157 ], [ -66.093750, -75.845169 ], [ -68.906250, -75.845169 ], [ -68.906250, -76.184995 ], [ -70.312500, -76.184995 ], [ -70.312500, -76.516819 ], [ -74.531250, -76.516819 ], [ -74.531250, -76.840816 ], [ -77.343750, -76.840816 ], [ -77.343750, -77.157163 ], [ -75.937500, -77.157163 ], [ -75.937500, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.125000, -77.767582 ], [ -73.125000, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.349411 ], [ -77.343750, -78.349411 ], [ -77.343750, -79.687184 ], [ -75.937500, -79.687184 ], [ -75.937500, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.872827 ], [ -70.312500, -80.872827 ], [ -70.312500, -81.308321 ], [ -67.500000, -81.308321 ], [ -67.500000, -81.518272 ], [ -66.093750, -81.518272 ], [ -66.093750, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.923186 ], [ -61.875000, -81.923186 ], [ -61.875000, -82.308893 ], [ -59.062500, -82.308893 ], [ -59.062500, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -54.843750, -82.676285 ], [ -54.843750, -82.494824 ], [ -53.437500, -82.494824 ], [ -53.437500, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -81.923186 ], [ -49.218750, -81.923186 ], [ -49.218750, -81.723188 ], [ -47.812500, -81.723188 ], [ -47.812500, -81.923186 ], [ -45.000000, -81.923186 ], [ -45.000000, -82.118384 ], [ -42.187500, -82.118384 ], [ -42.187500, -81.518272 ], [ -40.781250, -81.518272 ], [ -40.781250, -81.308321 ], [ -36.562500, -81.308321 ], [ -36.562500, -81.093214 ], [ -33.750000, -81.093214 ], [ -33.750000, -80.872827 ], [ -29.531250, -80.872827 ], [ -29.531250, -80.647035 ], [ -28.125000, -80.647035 ], [ -28.125000, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.171335 ], [ -30.937500, -79.171335 ], [ -30.937500, -79.432371 ], [ -36.562500, -79.432371 ], [ -36.562500, -78.903929 ], [ -35.156250, -78.903929 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.767582 ], [ -30.937500, -77.767582 ], [ -30.937500, -77.466028 ], [ -29.531250, -77.466028 ], [ -29.531250, -76.516819 ], [ -25.312500, -76.516819 ], [ -25.312500, -76.184995 ], [ -21.093750, -76.184995 ], [ -21.093750, -75.845169 ], [ -18.281250, -75.845169 ], [ -18.281250, -75.497157 ], [ -16.875000, -75.497157 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.395706 ], [ -11.250000, -72.395706 ], [ -11.250000, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.074056 ], [ 0.000000, -71.074056 ], [ 0.000000, -71.524909 ], [ 1.406250, -71.524909 ], [ 1.406250, -71.074056 ], [ 5.625000, -71.074056 ], [ 5.625000, -70.612614 ], [ 7.031250, -70.612614 ], [ 7.031250, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 12.656250, -70.612614 ], [ 12.656250, -70.140364 ], [ 14.062500, -70.140364 ], [ 14.062500, -70.612614 ], [ 15.468750, -70.612614 ], [ 15.468750, -70.140364 ], [ 18.281250, -70.140364 ], [ 18.281250, -69.657086 ], [ 19.687500, -69.657086 ], [ 19.687500, -70.140364 ], [ 21.093750, -70.140364 ], [ 21.093750, -70.612614 ], [ 28.125000, -70.612614 ], [ 28.125000, -70.140364 ], [ 30.937500, -70.140364 ], [ 30.937500, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.162558 ], [ 33.750000, -69.162558 ], [ 33.750000, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.162558 ], [ 42.187500, -69.162558 ], [ 42.187500, -68.656555 ], [ 43.593750, -68.656555 ], [ 43.593750, -68.138852 ], [ 46.406250, -68.138852 ], [ 46.406250, -67.609221 ], [ 49.218750, -67.609221 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.513260 ], [ 57.656250, -66.513260 ], [ 57.656250, -67.067433 ], [ 59.062500, -67.067433 ], [ 59.062500, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 67.500000, -67.609221 ], [ 67.500000, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.656555 ], [ 70.312500, -68.656555 ], [ 70.312500, -69.657086 ], [ 68.906250, -69.657086 ], [ 68.906250, -70.140364 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -72.395706 ], [ 71.718750, -72.395706 ], [ 71.718750, -71.524909 ], [ 73.125000, -71.524909 ], [ 73.125000, -70.140364 ], [ 74.531250, -70.140364 ], [ 74.531250, -69.657086 ], [ 78.750000, -69.657086 ], [ 78.750000, -68.138852 ], [ 81.562500, -68.138852 ], [ 81.562500, -67.609221 ], [ 82.968750, -67.609221 ], [ 82.968750, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 95.625000, -67.067433 ], [ 95.625000, -67.609221 ], [ 97.031250, -67.609221 ], [ 97.031250, -67.067433 ], [ 101.250000, -67.067433 ], [ 101.250000, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 109.687500, -67.067433 ], [ 109.687500, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.513260 ], [ 116.718750, -66.513260 ], [ 116.718750, -67.067433 ], [ 122.343750, -67.067433 ], [ 122.343750, -66.513260 ], [ 135.000000, -66.513260 ], [ 135.000000, -65.946472 ], [ 136.406250, -65.946472 ], [ 136.406250, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -68.138852 ], [ 149.062500, -68.138852 ], [ 149.062500, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -69.162558 ], [ 157.500000, -69.162558 ], [ 157.500000, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.612614 ], [ 167.343750, -70.612614 ], [ 167.343750, -71.074056 ], [ 170.156250, -71.074056 ], [ 170.156250, -71.524909 ], [ 171.562500, -71.524909 ], [ 171.562500, -72.395706 ], [ 170.156250, -72.395706 ], [ 170.156250, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -75.140778 ], [ 164.531250, -75.140778 ], [ 164.531250, -75.845169 ], [ 163.125000, -75.845169 ], [ 163.125000, -77.466028 ], [ 164.531250, -77.466028 ], [ 164.531250, -78.349411 ], [ 165.937500, -78.349411 ], [ 165.937500, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.903929 ], [ 164.531250, -78.903929 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 160.312500, -79.432371 ], [ 160.312500, -81.093214 ], [ 161.718750, -81.093214 ], [ 161.718750, -81.923186 ], [ 163.125000, -81.923186 ], [ 163.125000, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -83.194896 ], [ 167.343750, -83.194896 ], [ 167.343750, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.979259 ], [ 172.968750, -83.979259 ], [ 172.968750, -84.405941 ], [ 174.375000, -84.405941 ], [ 174.375000, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 178.593750, -84.405941 ], [ 178.593750, -84.541361 ], [ 180.000000, -84.541361 ], [ 180.000000, -84.405941 ], [ 181.406250, -84.405941 ], [ 181.406250, -84.267172 ], [ 184.218750, -84.267172 ], [ 184.218750, -84.405941 ], [ 187.031250, -84.405941 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -147.656250, -85.622069 ] ] ], [ [ [ -161.718750, -78.349411 ], [ -161.718750, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.903929 ], [ -158.906250, -78.903929 ], [ -158.906250, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -163.125000, -79.432371 ], [ -163.125000, -78.349411 ], [ -161.718750, -78.349411 ] ] ], [ [ [ -118.125000, -73.627789 ], [ -118.125000, -74.019543 ], [ -122.343750, -74.019543 ], [ -122.343750, -73.627789 ], [ -118.125000, -73.627789 ] ] ], [ [ [ -125.156250, -73.627789 ], [ -125.156250, -74.019543 ], [ -126.562500, -74.019543 ], [ -126.562500, -73.627789 ], [ -125.156250, -73.627789 ] ] ], [ [ [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ], [ -102.656250, -72.395706 ], [ -102.656250, -71.965388 ], [ -97.031250, -71.965388 ] ] ], [ [ [ -61.875000, -64.774125 ], [ -61.875000, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ] ] ], [ [ [ -60.468750, -64.168107 ], [ -60.468750, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.168107 ], [ -60.468750, -64.168107 ] ] ], [ [ [ -57.656250, -64.168107 ], [ -59.062500, -64.168107 ], [ -59.062500, -63.548552 ], [ -57.656250, -63.548552 ], [ -57.656250, -64.168107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -50.736455 ], [ -59.062500, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -50.736455 ], [ -59.062500, -50.736455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ] ] ], [ [ [ 73.125000, 71.074056 ], [ 73.125000, 71.524909 ], [ 74.531250, 71.524909 ], [ 74.531250, 72.395706 ], [ 75.937500, 72.395706 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.395706 ], [ 80.156250, 72.395706 ], [ 80.156250, 73.627789 ], [ 87.187500, 73.627789 ], [ 87.187500, 74.019543 ], [ 85.781250, 74.019543 ], [ 85.781250, 74.775843 ], [ 87.187500, 74.775843 ], [ 87.187500, 75.140778 ], [ 90.000000, 75.140778 ], [ 90.000000, 75.497157 ], [ 92.812500, 75.497157 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.840816 ], [ 102.656250, 76.840816 ], [ 102.656250, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.157163 ], [ 104.062500, 77.157163 ], [ 104.062500, 76.840816 ], [ 106.875000, 76.840816 ], [ 106.875000, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.840816 ], [ 111.093750, 76.840816 ], [ 111.093750, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.140778 ], [ 112.500000, 75.140778 ], [ 112.500000, 74.775843 ], [ 111.093750, 74.775843 ], [ 111.093750, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.019543 ], [ 111.093750, 74.019543 ], [ 111.093750, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.226700 ], [ 120.937500, 73.226700 ], [ 120.937500, 72.816074 ], [ 123.750000, 72.816074 ], [ 123.750000, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.816074 ], [ 129.375000, 72.816074 ], [ 129.375000, 71.965388 ], [ 127.968750, 71.965388 ], [ 127.968750, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 70.612614 ], [ 130.781250, 70.612614 ], [ 130.781250, 71.074056 ], [ 132.187500, 71.074056 ], [ 132.187500, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 72.395706 ], [ 140.625000, 72.395706 ], [ 140.625000, 72.816074 ], [ 143.437500, 72.816074 ], [ 143.437500, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.965388 ], [ 150.468750, 71.965388 ], [ 150.468750, 71.074056 ], [ 151.875000, 71.074056 ], [ 151.875000, 70.612614 ], [ 156.093750, 70.612614 ], [ 156.093750, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 70.612614 ], [ 160.312500, 70.612614 ], [ 160.312500, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 68.656555 ], [ 170.156250, 68.656555 ], [ 170.156250, 69.657086 ], [ 175.781250, 69.657086 ], [ 175.781250, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 68.656555 ], [ 181.406250, 68.656555 ], [ 181.406250, 68.138852 ], [ 182.812500, 68.138852 ], [ 182.812500, 67.609221 ], [ 184.218750, 67.609221 ], [ 184.218750, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.168107 ], [ 185.625000, 64.168107 ], [ 185.625000, 64.774125 ], [ 184.218750, 64.774125 ], [ 184.218750, 65.366837 ], [ 181.406250, 65.366837 ], [ 181.406250, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 64.774125 ], [ 177.187500, 64.774125 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 180.000000, 62.915233 ], [ 180.000000, 62.267923 ], [ 177.187500, 62.267923 ], [ 177.187500, 61.606396 ], [ 174.375000, 61.606396 ], [ 174.375000, 60.930432 ], [ 171.562500, 60.930432 ], [ 171.562500, 60.239811 ], [ 170.156250, 60.239811 ], [ 170.156250, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 161.718750, 58.813742 ], [ 161.718750, 57.326521 ], [ 163.125000, 57.326521 ], [ 163.125000, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 158.906250, 53.330873 ], [ 158.906250, 50.736455 ], [ 156.093750, 50.736455 ], [ 156.093750, 57.326521 ], [ 157.500000, 57.326521 ], [ 157.500000, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.534318 ], [ 161.718750, 59.534318 ], [ 161.718750, 60.239811 ], [ 160.312500, 60.239811 ], [ 160.312500, 60.930432 ], [ 158.906250, 60.930432 ], [ 158.906250, 61.606396 ], [ 156.093750, 61.606396 ], [ 156.093750, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 58.813742 ], [ 151.875000, 58.813742 ], [ 151.875000, 59.534318 ], [ 150.468750, 59.534318 ], [ 150.468750, 58.813742 ], [ 146.250000, 58.813742 ], [ 146.250000, 59.534318 ], [ 144.843750, 59.534318 ], [ 144.843750, 58.813742 ], [ 142.031250, 58.813742 ], [ 142.031250, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 55.776573 ], [ 136.406250, 55.776573 ], [ 136.406250, 54.162434 ], [ 139.218750, 54.162434 ], [ 139.218750, 53.330873 ], [ 142.031250, 53.330873 ], [ 143.437500, 53.330873 ], [ 143.437500, 49.837982 ], [ 144.843750, 49.837982 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 47.989922 ], [ 142.031250, 47.989922 ], [ 142.031250, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 47.040182 ], [ 139.218750, 47.040182 ], [ 139.218750, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.089036 ], [ 136.406250, 45.089036 ], [ 136.406250, 44.087585 ], [ 135.000000, 44.087585 ], [ 135.000000, 43.068888 ], [ 132.187500, 43.068888 ], [ 132.187500, 42.032974 ], [ 130.781250, 42.032974 ], [ 130.781250, 45.089036 ], [ 133.593750, 45.089036 ], [ 133.593750, 47.040182 ], [ 135.000000, 47.040182 ], [ 135.000000, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.837982 ], [ 127.968750, 49.837982 ], [ 127.968750, 50.736455 ], [ 126.562500, 50.736455 ], [ 126.562500, 52.482780 ], [ 125.156250, 52.482780 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 51.618017 ], [ 119.531250, 51.618017 ], [ 119.531250, 49.837982 ], [ 112.500000, 49.837982 ], [ 112.500000, 48.922499 ], [ 108.281250, 48.922499 ], [ 108.281250, 49.837982 ], [ 102.656250, 49.837982 ], [ 102.656250, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.736455 ], [ 91.406250, 50.736455 ], [ 91.406250, 49.837982 ], [ 88.593750, 49.837982 ], [ 88.593750, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.837982 ], [ 84.375000, 49.837982 ], [ 84.375000, 50.736455 ], [ 78.750000, 50.736455 ], [ 78.750000, 52.482780 ], [ 77.343750, 52.482780 ], [ 77.343750, 53.330873 ], [ 75.937500, 53.330873 ], [ 73.125000, 53.330873 ], [ 73.125000, 54.162434 ], [ 70.312500, 54.162434 ], [ 70.312500, 54.977614 ], [ 66.093750, 54.977614 ], [ 66.093750, 54.162434 ], [ 61.875000, 54.162434 ], [ 61.875000, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 51.618017 ], [ 61.875000, 51.618017 ], [ 61.875000, 50.736455 ], [ 52.031250, 50.736455 ], [ 52.031250, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 49.837982 ], [ 46.406250, 49.837982 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 47.040182 ], [ 49.218750, 47.040182 ], [ 49.218750, 46.073231 ], [ 47.812500, 46.073231 ], [ 47.812500, 45.089036 ], [ 46.406250, 45.089036 ], [ 46.406250, 44.087585 ], [ 47.812500, 44.087585 ], [ 47.812500, 42.032974 ], [ 49.218750, 42.032974 ], [ 49.218750, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 43.068888 ], [ 39.375000, 43.068888 ], [ 39.375000, 44.087585 ], [ 37.968750, 44.087585 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 35.156250, 49.837982 ], [ 35.156250, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 58.077876 ], [ 26.718750, 58.077876 ], [ 26.718750, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 29.531250, 59.534318 ], [ 29.531250, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.930432 ], [ 29.531250, 60.930432 ], [ 29.531250, 61.606396 ], [ 30.937500, 61.606396 ], [ 30.937500, 62.915233 ], [ 29.531250, 62.915233 ], [ 29.531250, 63.548552 ], [ 30.937500, 63.548552 ], [ 30.937500, 64.168107 ], [ 29.531250, 64.168107 ], [ 29.531250, 67.609221 ], [ 28.125000, 67.609221 ], [ 28.125000, 69.162558 ], [ 30.937500, 69.162558 ], [ 30.937500, 69.657086 ], [ 33.750000, 69.657086 ], [ 33.750000, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.656555 ], [ 39.375000, 68.656555 ], [ 39.375000, 68.138852 ], [ 40.781250, 68.138852 ], [ 40.781250, 66.513260 ], [ 39.375000, 66.513260 ], [ 39.375000, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 64.774125 ], [ 39.375000, 64.774125 ], [ 39.375000, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 42.187500, 65.946472 ], [ 42.187500, 66.513260 ], [ 43.593750, 66.513260 ], [ 43.593750, 65.946472 ], [ 45.000000, 65.946472 ], [ 45.000000, 66.513260 ], [ 47.812500, 66.513260 ], [ 47.812500, 67.609221 ], [ 50.625000, 67.609221 ], [ 50.625000, 68.138852 ], [ 53.437500, 68.138852 ], [ 53.437500, 68.656555 ], [ 59.062500, 68.656555 ], [ 59.062500, 68.138852 ], [ 60.468750, 68.138852 ], [ 60.468750, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 70.140364 ], [ 66.093750, 70.140364 ], [ 66.093750, 71.074056 ], [ 67.500000, 71.074056 ], [ 67.500000, 71.524909 ], [ 68.906250, 71.524909 ], [ 68.906250, 72.816074 ], [ 73.125000, 72.816074 ], [ 73.125000, 71.965388 ], [ 71.718750, 71.965388 ], [ 71.718750, 71.074056 ], [ 73.125000, 71.074056 ] ], [ [ 73.125000, 69.162558 ], [ 73.125000, 67.067433 ], [ 71.718750, 67.067433 ], [ 71.718750, 65.946472 ], [ 73.125000, 65.946472 ], [ 73.125000, 66.513260 ], [ 74.531250, 66.513260 ], [ 74.531250, 69.162558 ], [ 73.125000, 69.162558 ] ], [ [ 73.125000, 71.074056 ], [ 73.125000, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 71.074056 ], [ 73.125000, 71.074056 ] ], [ [ 163.125000, 60.239811 ], [ 163.125000, 60.930432 ], [ 161.718750, 60.930432 ], [ 161.718750, 60.239811 ], [ 163.125000, 60.239811 ] ], [ [ 163.125000, 62.267923 ], [ 163.125000, 61.606396 ], [ 164.531250, 61.606396 ], [ 164.531250, 62.267923 ], [ 163.125000, 62.267923 ] ], [ [ 35.156250, 65.946472 ], [ 35.156250, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 65.946472 ], [ 35.156250, 65.946472 ] ], [ [ 67.500000, 68.656555 ], [ 67.500000, 68.138852 ], [ 68.906250, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.500000, 68.656555 ] ] ], [ [ [ 142.031250, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 47.040182 ] ] ], [ [ [ -184.218750, 69.657086 ], [ -184.218750, 69.162558 ], [ -180.000000, 69.162558 ], [ -180.000000, 68.656555 ], [ -178.593750, 68.656555 ], [ -178.593750, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.067433 ], [ -171.562500, 67.067433 ], [ -171.562500, 66.513260 ], [ -170.156250, 66.513260 ], [ -170.156250, 65.366837 ], [ -172.968750, 65.366837 ], [ -172.968750, 64.168107 ], [ -174.375000, 64.168107 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 64.774125 ], [ -182.812500, 64.774125 ], [ -182.812500, 64.168107 ], [ -181.406250, 64.168107 ], [ -181.406250, 62.915233 ], [ -180.000000, 62.915233 ], [ -180.000000, 62.267923 ], [ -182.812500, 62.267923 ], [ -182.812500, 61.606396 ], [ -187.031250, 61.606396 ], [ -187.031250, 69.657086 ], [ -184.218750, 69.657086 ] ] ], [ [ [ 67.500000, 76.840816 ], [ 67.500000, 76.516819 ], [ 68.906250, 76.516819 ], [ 68.906250, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 75.845169 ], [ 64.687500, 75.845169 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.140778 ], [ 61.875000, 75.140778 ], [ 61.875000, 74.775843 ], [ 60.468750, 74.775843 ], [ 60.468750, 74.402163 ], [ 59.062500, 74.402163 ], [ 59.062500, 73.627789 ], [ 57.656250, 73.627789 ], [ 57.656250, 72.816074 ], [ 56.250000, 72.816074 ], [ 56.250000, 72.395706 ], [ 54.843750, 72.395706 ], [ 54.843750, 71.965388 ], [ 56.250000, 71.965388 ], [ 56.250000, 71.074056 ], [ 57.656250, 71.074056 ], [ 57.656250, 70.612614 ], [ 53.437500, 70.612614 ], [ 53.437500, 71.074056 ], [ 52.031250, 71.074056 ], [ 52.031250, 72.816074 ], [ 53.437500, 72.816074 ], [ 53.437500, 73.226700 ], [ 54.843750, 73.226700 ], [ 54.843750, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 75.140778 ], [ 57.656250, 75.140778 ], [ 57.656250, 75.497157 ], [ 59.062500, 75.497157 ], [ 59.062500, 75.845169 ], [ 60.468750, 75.845169 ], [ 60.468750, 76.184995 ], [ 63.281250, 76.184995 ], [ 63.281250, 76.516819 ], [ 66.093750, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ] ] ], [ [ [ 99.843750, 78.630006 ], [ 97.031250, 78.630006 ], [ 97.031250, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 79.171335 ], [ 92.812500, 79.171335 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.812500, 80.415707 ], [ 92.812500, 80.872827 ], [ 94.218750, 80.872827 ], [ 94.218750, 81.093214 ], [ 97.031250, 81.093214 ], [ 97.031250, 80.647035 ], [ 98.437500, 80.647035 ], [ 98.437500, 80.178713 ], [ 99.843750, 80.178713 ], [ 99.843750, 78.630006 ] ] ], [ [ [ 142.031250, 76.184995 ], [ 142.031250, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 74.775843 ], [ 136.406250, 74.775843 ], [ 136.406250, 75.497157 ], [ 137.812500, 75.497157 ], [ 137.812500, 75.845169 ], [ 139.218750, 75.845169 ], [ 139.218750, 76.184995 ], [ 142.031250, 76.184995 ] ] ], [ [ [ 99.843750, 78.630006 ], [ 101.250000, 78.630006 ], [ 101.250000, 79.171335 ], [ 102.656250, 79.171335 ], [ 102.656250, 78.903929 ], [ 104.062500, 78.903929 ], [ 104.062500, 78.630006 ], [ 105.468750, 78.630006 ], [ 105.468750, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.630006 ] ] ], [ [ [ 47.812500, 80.872827 ], [ 47.812500, 80.647035 ], [ 50.625000, 80.647035 ], [ 50.625000, 80.415707 ], [ 49.218750, 80.415707 ], [ 49.218750, 79.935918 ], [ 46.406250, 79.935918 ], [ 46.406250, 80.872827 ], [ 47.812500, 80.872827 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 147.656250, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.775843 ], [ 146.250000, 74.775843 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ] ] ], [ [ [ 181.406250, 71.524909 ], [ 181.406250, 70.612614 ], [ 180.000000, 70.612614 ], [ 178.593750, 70.612614 ], [ 178.593750, 71.074056 ], [ 180.000000, 71.074056 ], [ 180.000000, 71.524909 ], [ 181.406250, 71.524909 ] ] ], [ [ [ -178.593750, 71.524909 ], [ -178.593750, 70.612614 ], [ -180.000000, 70.612614 ], [ -181.406250, 70.612614 ], [ -181.406250, 71.074056 ], [ -180.000000, 71.074056 ], [ -180.000000, 71.524909 ], [ -178.593750, 71.524909 ] ] ], [ [ [ 143.437500, 73.627789 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.627789 ], [ 143.437500, 73.627789 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.468750, -79.687184 ], [ -60.468750, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.647035 ], [ -66.093750, -80.647035 ], [ -66.093750, -80.415707 ], [ -67.500000, -80.415707 ], [ -67.500000, -80.178713 ], [ -61.875000, -80.178713 ], [ -61.875000, -79.687184 ], [ -60.468750, -79.687184 ] ] ], [ [ [ -46.406250, -77.767582 ], [ -46.406250, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.630006 ], [ -43.593750, -78.630006 ], [ -43.593750, -80.178713 ], [ -45.000000, -80.178713 ], [ -45.000000, -80.415707 ], [ -47.812500, -80.415707 ], [ -47.812500, -80.647035 ], [ -49.218750, -80.647035 ], [ -49.218750, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.647035 ], [ -54.843750, -80.647035 ], [ -54.843750, -80.178713 ], [ -52.031250, -80.178713 ], [ -52.031250, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -78.061989 ], [ -49.218750, -78.061989 ], [ -49.218750, -77.767582 ], [ -46.406250, -77.767582 ] ] ], [ [ [ -102.656250, -72.395706 ], [ -102.656250, -71.524909 ], [ -99.843750, -71.524909 ], [ -99.843750, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ], [ -101.250000, -72.395706 ], [ -101.250000, -72.816074 ], [ -98.437500, -72.816074 ], [ -98.437500, -73.226700 ], [ -91.406250, -73.226700 ], [ -91.406250, -72.816074 ], [ -87.187500, -72.816074 ], [ -87.187500, -73.226700 ], [ -84.375000, -73.226700 ], [ -84.375000, -73.627789 ], [ -81.562500, -73.627789 ], [ -81.562500, -73.226700 ], [ -78.750000, -73.226700 ], [ -78.750000, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.226700 ], [ -70.312500, -73.226700 ], [ -70.312500, -72.816074 ], [ -68.906250, -72.816074 ], [ -68.906250, -72.395706 ], [ -67.500000, -72.395706 ], [ -67.500000, -71.524909 ], [ -68.906250, -71.524909 ], [ -68.906250, -71.965388 ], [ -70.312500, -71.965388 ], [ -70.312500, -72.395706 ], [ -73.125000, -72.395706 ], [ -73.125000, -71.965388 ], [ -75.937500, -71.965388 ], [ -75.937500, -71.524909 ], [ -74.531250, -71.524909 ], [ -74.531250, -71.074056 ], [ -73.125000, -71.074056 ], [ -73.125000, -69.162558 ], [ -71.718750, -69.162558 ], [ -71.718750, -68.656555 ], [ -70.312500, -68.656555 ], [ -70.312500, -70.140364 ], [ -68.906250, -70.140364 ], [ -68.906250, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.513260 ], [ -66.093750, -66.513260 ], [ -66.093750, -65.366837 ], [ -64.687500, -65.366837 ], [ -64.687500, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -67.067433 ], [ -66.093750, -67.067433 ], [ -66.093750, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -74.402163 ], [ -64.687500, -74.402163 ], [ -64.687500, -75.497157 ], [ -67.500000, -75.497157 ], [ -67.500000, -75.845169 ], [ -68.906250, -75.845169 ], [ -68.906250, -76.184995 ], [ -70.312500, -76.184995 ], [ -70.312500, -76.516819 ], [ -77.343750, -76.516819 ], [ -77.343750, -77.157163 ], [ -75.937500, -77.157163 ], [ -75.937500, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -78.061989 ], [ -77.343750, -78.061989 ], [ -77.343750, -78.349411 ], [ -78.750000, -78.349411 ], [ -78.750000, -79.432371 ], [ -77.343750, -79.432371 ], [ -77.343750, -79.935918 ], [ -75.937500, -79.935918 ], [ -75.937500, -80.415707 ], [ -74.531250, -80.415707 ], [ -74.531250, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.872827 ], [ -70.312500, -80.872827 ], [ -70.312500, -81.093214 ], [ -68.906250, -81.093214 ], [ -68.906250, -81.308321 ], [ -66.093750, -81.308321 ], [ -66.093750, -81.518272 ], [ -64.687500, -81.518272 ], [ -64.687500, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.923186 ], [ -61.875000, -81.923186 ], [ -61.875000, -82.118384 ], [ -60.468750, -82.118384 ], [ -60.468750, -82.494824 ], [ -59.062500, -82.494824 ], [ -59.062500, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.676285 ], [ -56.250000, -82.676285 ], [ -56.250000, -82.308893 ], [ -54.843750, -82.308893 ], [ -54.843750, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -81.923186 ], [ -50.625000, -81.923186 ], [ -50.625000, -81.723188 ], [ -45.000000, -81.723188 ], [ -45.000000, -81.923186 ], [ -43.593750, -81.923186 ], [ -43.593750, -81.723188 ], [ -42.187500, -81.723188 ], [ -42.187500, -81.518272 ], [ -40.781250, -81.518272 ], [ -40.781250, -81.308321 ], [ -36.562500, -81.308321 ], [ -36.562500, -81.093214 ], [ -35.156250, -81.093214 ], [ -35.156250, -80.872827 ], [ -32.343750, -80.872827 ], [ -32.343750, -80.647035 ], [ -30.937500, -80.647035 ], [ -30.937500, -80.415707 ], [ -29.531250, -80.415707 ], [ -29.531250, -79.687184 ], [ -30.937500, -79.687184 ], [ -30.937500, -79.171335 ], [ -32.343750, -79.171335 ], [ -32.343750, -79.432371 ], [ -36.562500, -79.432371 ], [ -36.562500, -78.061989 ], [ -35.156250, -78.061989 ], [ -35.156250, -77.767582 ], [ -32.343750, -77.767582 ], [ -32.343750, -77.157163 ], [ -30.937500, -77.157163 ], [ -30.937500, -76.840816 ], [ -29.531250, -76.840816 ], [ -29.531250, -76.516819 ], [ -28.125000, -76.516819 ], [ -28.125000, -76.184995 ], [ -22.500000, -76.184995 ], [ -22.500000, -75.845169 ], [ -21.093750, -75.845169 ], [ -21.093750, -75.497157 ], [ -19.687500, -75.497157 ], [ -19.687500, -75.140778 ], [ -18.281250, -75.140778 ], [ -18.281250, -74.775843 ], [ -16.875000, -74.775843 ], [ -16.875000, -74.402163 ], [ -15.468750, -74.402163 ], [ -15.468750, -74.019543 ], [ -16.875000, -74.019543 ], [ -16.875000, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -72.816074 ], [ -14.062500, -72.816074 ], [ -14.062500, -72.395706 ], [ -12.656250, -72.395706 ], [ -12.656250, -71.965388 ], [ -11.250000, -71.965388 ], [ -11.250000, -71.074056 ], [ -9.843750, -71.074056 ], [ -9.843750, -71.524909 ], [ -8.437500, -71.524909 ], [ -8.437500, -71.074056 ], [ -1.406250, -71.074056 ], [ -1.406250, -71.524909 ], [ 0.000000, -71.524909 ], [ 0.000000, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.612614 ], [ 5.625000, -70.612614 ], [ 5.625000, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 11.250000, -70.612614 ], [ 11.250000, -70.140364 ], [ 12.656250, -70.140364 ], [ 12.656250, -69.657086 ], [ 14.062500, -69.657086 ], [ 14.062500, -70.140364 ], [ 15.468750, -70.140364 ], [ 15.468750, -69.657086 ], [ 21.093750, -69.657086 ], [ 21.093750, -70.612614 ], [ 22.500000, -70.612614 ], [ 22.500000, -70.140364 ], [ 29.531250, -70.140364 ], [ 29.531250, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -68.656555 ], [ 40.781250, -68.656555 ], [ 40.781250, -68.138852 ], [ 43.593750, -68.138852 ], [ 43.593750, -67.609221 ], [ 47.812500, -67.609221 ], [ 47.812500, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.366837 ], [ 54.843750, -65.366837 ], [ 54.843750, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.513260 ], [ 57.656250, -66.513260 ], [ 57.656250, -67.067433 ], [ 59.062500, -67.067433 ], [ 59.062500, -67.609221 ], [ 67.500000, -67.609221 ], [ 67.500000, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -69.657086 ], [ 67.500000, -69.657086 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.074056 ], [ 67.500000, -71.074056 ], [ 67.500000, -71.965388 ], [ 70.312500, -71.965388 ], [ 70.312500, -71.524909 ], [ 71.718750, -71.524909 ], [ 71.718750, -70.612614 ], [ 73.125000, -70.612614 ], [ 73.125000, -69.657086 ], [ 75.937500, -69.657086 ], [ 75.937500, -69.162558 ], [ 77.343750, -69.162558 ], [ 77.343750, -68.656555 ], [ 78.750000, -68.656555 ], [ 78.750000, -67.609221 ], [ 80.156250, -67.609221 ], [ 80.156250, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 99.843750, -67.067433 ], [ 99.843750, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.513260 ], [ 109.687500, -66.513260 ], [ 109.687500, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.513260 ], [ 116.718750, -66.513260 ], [ 116.718750, -67.067433 ], [ 120.937500, -67.067433 ], [ 120.937500, -66.513260 ], [ 130.781250, -66.513260 ], [ 130.781250, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -66.513260 ], [ 144.843750, -66.513260 ], [ 144.843750, -67.609221 ], [ 147.656250, -67.609221 ], [ 147.656250, -68.138852 ], [ 149.062500, -68.138852 ], [ 149.062500, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -69.162558 ], [ 158.906250, -69.162558 ], [ 158.906250, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.612614 ], [ 167.343750, -70.612614 ], [ 167.343750, -71.074056 ], [ 170.156250, -71.074056 ], [ 170.156250, -72.816074 ], [ 168.750000, -72.816074 ], [ 168.750000, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.019543 ], [ 165.937500, -74.019543 ], [ 165.937500, -74.402163 ], [ 164.531250, -74.402163 ], [ 164.531250, -75.140778 ], [ 163.125000, -75.140778 ], [ 163.125000, -78.061989 ], [ 165.937500, -78.061989 ], [ 165.937500, -78.903929 ], [ 161.718750, -78.903929 ], [ 161.718750, -79.432371 ], [ 160.312500, -79.432371 ], [ 160.312500, -80.647035 ], [ 158.906250, -80.647035 ], [ 158.906250, -81.093214 ], [ 160.312500, -81.093214 ], [ 160.312500, -81.723188 ], [ 161.718750, -81.723188 ], [ 161.718750, -82.118384 ], [ 163.125000, -82.118384 ], [ 163.125000, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -83.026219 ], [ 167.343750, -83.026219 ], [ 167.343750, -83.194896 ], [ 168.750000, -83.194896 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -84.267172 ], [ 172.968750, -84.267172 ], [ 172.968750, -84.405941 ], [ 174.375000, -84.405941 ], [ 174.375000, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.541361 ], [ 178.593750, -84.541361 ], [ 178.593750, -84.673513 ], [ 180.000000, -84.673513 ], [ 180.000000, -84.267172 ], [ 181.406250, -84.267172 ], [ 181.406250, -84.405941 ], [ 182.812500, -84.405941 ], [ 182.812500, -84.267172 ], [ 185.625000, -84.267172 ], [ 185.625000, -83.979259 ], [ 187.031250, -83.979259 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.405941 ], [ -185.625000, -84.405941 ], [ -185.625000, -84.267172 ], [ -182.812500, -84.267172 ], [ -182.812500, -84.541361 ], [ -181.406250, -84.541361 ], [ -181.406250, -84.673513 ], [ -180.000000, -84.673513 ], [ -180.000000, -84.267172 ], [ -178.593750, -84.267172 ], [ -178.593750, -84.405941 ], [ -177.187500, -84.405941 ], [ -177.187500, -84.267172 ], [ -174.375000, -84.267172 ], [ -174.375000, -83.979259 ], [ -170.156250, -83.979259 ], [ -170.156250, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.405941 ], [ -167.343750, -84.405941 ], [ -167.343750, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.170970 ], [ -160.312500, -85.170970 ], [ -160.312500, -85.287916 ], [ -157.500000, -85.287916 ], [ -157.500000, -85.170970 ], [ -153.281250, -85.170970 ], [ -153.281250, -85.287916 ], [ -151.875000, -85.287916 ], [ -151.875000, -85.402036 ], [ -150.468750, -85.402036 ], [ -150.468750, -85.513398 ], [ -147.656250, -85.513398 ], [ -147.656250, -85.402036 ], [ -146.250000, -85.402036 ], [ -146.250000, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.051129 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -146.250000, -84.541361 ], [ -146.250000, -84.405941 ], [ -150.468750, -84.405941 ], [ -150.468750, -84.124973 ], [ -151.875000, -84.124973 ], [ -151.875000, -83.829945 ], [ -154.687500, -83.829945 ], [ -154.687500, -83.026219 ], [ -153.281250, -83.026219 ], [ -153.281250, -81.923186 ], [ -154.687500, -81.923186 ], [ -154.687500, -81.518272 ], [ -156.093750, -81.518272 ], [ -156.093750, -81.308321 ], [ -157.500000, -81.308321 ], [ -157.500000, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -150.468750, -81.308321 ], [ -150.468750, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -150.468750, -79.432371 ], [ -150.468750, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -157.500000, -78.630006 ], [ -157.500000, -78.061989 ], [ -158.906250, -78.061989 ], [ -158.906250, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.157163 ], [ -149.062500, -77.157163 ], [ -149.062500, -76.840816 ], [ -147.656250, -76.840816 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.845169 ], [ -147.656250, -75.845169 ], [ -147.656250, -75.497157 ], [ -143.437500, -75.497157 ], [ -143.437500, -75.140778 ], [ -142.031250, -75.140778 ], [ -142.031250, -74.775843 ], [ -137.812500, -74.775843 ], [ -137.812500, -74.402163 ], [ -136.406250, -74.402163 ], [ -136.406250, -74.019543 ], [ -135.000000, -74.019543 ], [ -135.000000, -74.402163 ], [ -119.531250, -74.402163 ], [ -119.531250, -74.019543 ], [ -113.906250, -74.019543 ], [ -113.906250, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.775843 ], [ -109.687500, -74.775843 ], [ -109.687500, -75.140778 ], [ -106.875000, -75.140778 ], [ -106.875000, -74.775843 ], [ -102.656250, -74.775843 ], [ -102.656250, -75.140778 ], [ -101.250000, -75.140778 ], [ -101.250000, -74.019543 ], [ -104.062500, -74.019543 ], [ -104.062500, -72.395706 ], [ -102.656250, -72.395706 ] ] ], [ [ [ -161.718750, -78.349411 ], [ -161.718750, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -79.432371 ], [ -163.125000, -79.432371 ], [ -163.125000, -78.630006 ], [ -164.531250, -78.630006 ], [ -164.531250, -78.349411 ], [ -161.718750, -78.349411 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -126.562500, -73.627789 ], [ -127.968750, -73.627789 ], [ -127.968750, -73.226700 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -61.875000, -64.168107 ], [ -61.875000, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -64.168107 ], [ -61.875000, -64.168107 ] ] ], [ [ [ -59.062500, -63.548552 ], [ -59.062500, -64.168107 ], [ -61.875000, -64.168107 ], [ -61.875000, -63.548552 ], [ -59.062500, -63.548552 ] ] ], [ [ [ -57.656250, -63.548552 ], [ -59.062500, -63.548552 ], [ -59.062500, -62.915233 ], [ -57.656250, -62.915233 ], [ -57.656250, -63.548552 ] ] ], [ [ [ -122.343750, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -122.343750, -74.019543 ], [ -122.343750, -73.627789 ] ] ], [ [ [ -122.343750, -73.627789 ], [ -123.750000, -73.627789 ], [ -123.750000, -73.226700 ], [ -122.343750, -73.226700 ], [ -122.343750, -73.627789 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 67.609221 ], [ 15.468750, 65.366837 ], [ 14.062500, 65.366837 ], [ 14.062500, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 63.548552 ], [ 11.250000, 63.548552 ], [ 11.250000, 62.267923 ], [ 12.656250, 62.267923 ], [ 12.656250, 59.534318 ], [ 11.250000, 59.534318 ], [ 11.250000, 58.813742 ], [ 8.437500, 58.813742 ], [ 8.437500, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 62.915233 ], [ 8.437500, 62.915233 ], [ 8.437500, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 64.774125 ], [ 11.250000, 64.774125 ], [ 11.250000, 65.366837 ], [ 12.656250, 65.366837 ], [ 12.656250, 66.513260 ], [ 14.062500, 66.513260 ], [ 14.062500, 67.609221 ], [ 15.468750, 67.609221 ] ] ], [ [ [ 16.875000, 68.138852 ], [ 16.875000, 67.609221 ], [ 15.468750, 67.609221 ], [ 15.468750, 68.138852 ], [ 16.875000, 68.138852 ] ] ], [ [ [ 18.281250, 68.656555 ], [ 18.281250, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 68.656555 ], [ 18.281250, 68.656555 ] ] ], [ [ [ 29.531250, 69.657086 ], [ 26.718750, 69.657086 ], [ 26.718750, 69.162558 ], [ 25.312500, 69.162558 ], [ 25.312500, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 69.657086 ], [ 21.093750, 69.657086 ], [ 21.093750, 70.140364 ], [ 22.500000, 70.140364 ], [ 22.500000, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 71.074056 ], [ 28.125000, 71.074056 ], [ 28.125000, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.140364 ], [ 29.531250, 70.140364 ], [ 29.531250, 69.657086 ] ] ], [ [ [ 19.687500, 68.656555 ], [ 18.281250, 68.656555 ], [ 18.281250, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.656555 ] ] ], [ [ [ 16.875000, 79.935918 ], [ 16.875000, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.630006 ], [ 19.687500, 78.630006 ], [ 19.687500, 78.061989 ], [ 18.281250, 78.061989 ], [ 18.281250, 77.157163 ], [ 16.875000, 77.157163 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.767582 ], [ 12.656250, 77.767582 ], [ 12.656250, 78.349411 ], [ 11.250000, 78.349411 ], [ 11.250000, 79.171335 ], [ 9.843750, 79.171335 ], [ 9.843750, 79.687184 ], [ 15.468750, 79.687184 ], [ 15.468750, 79.935918 ], [ 16.875000, 79.935918 ] ] ], [ [ [ 21.093750, 80.647035 ], [ 21.093750, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 79.687184 ], [ 25.312500, 79.687184 ], [ 25.312500, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.935918 ], [ 18.281250, 79.935918 ], [ 18.281250, 80.178713 ], [ 16.875000, 80.178713 ], [ 16.875000, 80.415707 ], [ 19.687500, 80.415707 ], [ 19.687500, 80.647035 ], [ 21.093750, 80.647035 ] ] ], [ [ [ 22.500000, 78.349411 ], [ 22.500000, 78.061989 ], [ 23.906250, 78.061989 ], [ 23.906250, 77.767582 ], [ 25.312500, 77.767582 ], [ 25.312500, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 78.349411 ], [ 22.500000, 78.349411 ] ] ], [ [ [ 29.531250, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.657086 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.031250, 51.618017 ], [ 140.625000, 51.618017 ], [ 139.218750, 51.618017 ], [ 139.218750, 47.989922 ], [ 137.812500, 47.989922 ], [ 137.812500, 46.073231 ], [ 136.406250, 46.073231 ], [ 136.406250, 45.089036 ], [ 135.000000, 45.089036 ], [ 135.000000, 44.087585 ], [ 133.593750, 44.087585 ], [ 133.593750, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 46.073231 ], [ 133.593750, 46.073231 ], [ 133.593750, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 48.922499 ], [ 132.187500, 48.922499 ], [ 132.187500, 47.989922 ], [ 129.375000, 47.989922 ], [ 129.375000, 49.837982 ], [ 126.562500, 49.837982 ], [ 126.562500, 52.482780 ], [ 125.156250, 52.482780 ], [ 125.156250, 53.330873 ], [ 122.343750, 53.330873 ], [ 122.343750, 54.162434 ], [ 120.937500, 54.162434 ], [ 120.937500, 53.330873 ], [ 119.531250, 53.330873 ], [ 119.531250, 51.618017 ], [ 118.125000, 51.618017 ], [ 118.125000, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.736455 ], [ 101.250000, 50.736455 ], [ 101.250000, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 52.482780 ], [ 98.437500, 52.482780 ], [ 98.437500, 51.618017 ], [ 97.031250, 51.618017 ], [ 97.031250, 49.837982 ], [ 95.625000, 49.837982 ], [ 95.625000, 50.736455 ], [ 90.000000, 50.736455 ], [ 90.000000, 49.837982 ], [ 84.375000, 49.837982 ], [ 84.375000, 50.736455 ], [ 82.968750, 50.736455 ], [ 82.968750, 51.618017 ], [ 78.750000, 51.618017 ], [ 78.750000, 52.482780 ], [ 77.343750, 52.482780 ], [ 77.343750, 54.162434 ], [ 70.312500, 54.162434 ], [ 70.312500, 55.776573 ], [ 68.906250, 55.776573 ], [ 68.906250, 54.977614 ], [ 63.281250, 54.977614 ], [ 63.281250, 54.162434 ], [ 60.468750, 54.162434 ], [ 60.468750, 52.482780 ], [ 59.062500, 52.482780 ], [ 59.062500, 50.736455 ], [ 57.656250, 50.736455 ], [ 57.656250, 51.618017 ], [ 56.250000, 51.618017 ], [ 56.250000, 50.736455 ], [ 53.437500, 50.736455 ], [ 53.437500, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 52.482780 ], [ 50.625000, 52.482780 ], [ 50.625000, 51.618017 ], [ 49.218750, 51.618017 ], [ 49.218750, 50.736455 ], [ 46.406250, 50.736455 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 46.073231 ], [ 46.406250, 46.073231 ], [ 46.406250, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 44.087585 ], [ 37.968750, 44.087585 ], [ 37.968750, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 46.073231 ], [ 37.968750, 46.073231 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 49.837982 ], [ 37.968750, 49.837982 ], [ 37.968750, 50.736455 ], [ 35.156250, 50.736455 ], [ 35.156250, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 54.162434 ], [ 29.531250, 54.162434 ], [ 29.531250, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 56.559482 ], [ 26.718750, 56.559482 ], [ 26.718750, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 60.239811 ], [ 26.718750, 60.239811 ], [ 26.718750, 60.930432 ], [ 28.125000, 60.930432 ], [ 28.125000, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 63.548552 ], [ 29.531250, 63.548552 ], [ 29.531250, 66.513260 ], [ 28.125000, 66.513260 ], [ 28.125000, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 68.138852 ], [ 28.125000, 68.138852 ], [ 28.125000, 69.162558 ], [ 30.937500, 69.162558 ], [ 30.937500, 69.657086 ], [ 33.750000, 69.657086 ], [ 33.750000, 69.162558 ], [ 35.156250, 69.162558 ], [ 35.156250, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.138852 ], [ 39.375000, 68.138852 ], [ 39.375000, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 66.513260 ], [ 43.593750, 66.513260 ], [ 43.593750, 68.138852 ], [ 42.187500, 68.138852 ], [ 42.187500, 68.656555 ], [ 45.000000, 68.656555 ], [ 45.000000, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 67.067433 ], [ 47.812500, 67.067433 ], [ 47.812500, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 68.138852 ], [ 50.625000, 68.138852 ], [ 50.625000, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.138852 ], [ 54.843750, 68.138852 ], [ 54.843750, 68.656555 ], [ 60.468750, 68.656555 ], [ 60.468750, 69.162558 ], [ 59.062500, 69.162558 ], [ 59.062500, 69.657086 ], [ 64.687500, 69.657086 ], [ 64.687500, 69.162558 ], [ 66.093750, 69.162558 ], [ 66.093750, 68.138852 ], [ 68.906250, 68.138852 ], [ 68.906250, 68.656555 ], [ 67.500000, 68.656555 ], [ 67.500000, 69.657086 ], [ 66.093750, 69.657086 ], [ 66.093750, 71.524909 ], [ 67.500000, 71.524909 ], [ 67.500000, 72.395706 ], [ 68.906250, 72.395706 ], [ 68.906250, 72.816074 ], [ 71.718750, 72.816074 ], [ 71.718750, 71.524909 ], [ 73.125000, 71.524909 ], [ 73.125000, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.395706 ], [ 78.750000, 72.395706 ], [ 78.750000, 71.965388 ], [ 80.156250, 71.965388 ], [ 80.156250, 74.019543 ], [ 85.781250, 74.019543 ], [ 85.781250, 75.140778 ], [ 87.187500, 75.140778 ], [ 87.187500, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.845169 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.516819 ], [ 99.843750, 76.516819 ], [ 99.843750, 77.157163 ], [ 101.250000, 77.157163 ], [ 101.250000, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.157163 ], [ 106.875000, 77.157163 ], [ 106.875000, 76.840816 ], [ 109.687500, 76.840816 ], [ 109.687500, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.845169 ], [ 112.500000, 75.845169 ], [ 112.500000, 74.775843 ], [ 109.687500, 74.775843 ], [ 109.687500, 74.019543 ], [ 112.500000, 74.019543 ], [ 112.500000, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.226700 ], [ 122.343750, 73.226700 ], [ 122.343750, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 71.965388 ], [ 129.375000, 71.965388 ], [ 129.375000, 71.074056 ], [ 130.781250, 71.074056 ], [ 130.781250, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 71.965388 ], [ 137.812500, 71.965388 ], [ 137.812500, 72.816074 ], [ 139.218750, 72.816074 ], [ 139.218750, 73.226700 ], [ 139.218750, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 74.019543 ], [ 142.031250, 74.019543 ], [ 142.031250, 73.627789 ], [ 143.437500, 73.627789 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 72.816074 ], [ 146.250000, 72.816074 ], [ 146.250000, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 69.657086 ], [ 170.156250, 69.657086 ], [ 170.156250, 70.140364 ], [ 175.781250, 70.140364 ], [ 175.781250, 69.657086 ], [ 178.593750, 69.657086 ], [ 178.593750, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 68.656555 ], [ 181.406250, 68.656555 ], [ 181.406250, 68.138852 ], [ 182.812500, 68.138852 ], [ 182.812500, 67.609221 ], [ 184.218750, 67.609221 ], [ 184.218750, 67.067433 ], [ 187.031250, 67.067433 ], [ 187.031250, 64.774125 ], [ 182.812500, 64.774125 ], [ 182.812500, 65.366837 ], [ 181.406250, 65.366837 ], [ 181.406250, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.366837 ], [ 178.593750, 65.366837 ], [ 178.593750, 64.774125 ], [ 177.187500, 64.774125 ], [ 177.187500, 63.548552 ], [ 178.593750, 63.548552 ], [ 178.593750, 62.915233 ], [ 177.187500, 62.915233 ], [ 177.187500, 62.267923 ], [ 172.968750, 62.267923 ], [ 172.968750, 61.606396 ], [ 171.562500, 61.606396 ], [ 171.562500, 60.930432 ], [ 170.156250, 60.930432 ], [ 170.156250, 60.239811 ], [ 163.125000, 60.239811 ], [ 163.125000, 58.813742 ], [ 161.718750, 58.813742 ], [ 161.718750, 58.077876 ], [ 163.125000, 58.077876 ], [ 163.125000, 57.326521 ], [ 161.718750, 57.326521 ], [ 161.718750, 55.776573 ], [ 160.312500, 55.776573 ], [ 160.312500, 54.162434 ], [ 158.906250, 54.162434 ], [ 158.906250, 53.330873 ], [ 157.500000, 53.330873 ], [ 157.500000, 51.618017 ], [ 156.093750, 51.618017 ], [ 156.093750, 52.482780 ], [ 154.687500, 52.482780 ], [ 154.687500, 57.326521 ], [ 156.093750, 57.326521 ], [ 156.093750, 58.077876 ], [ 157.500000, 58.077876 ], [ 157.500000, 58.813742 ], [ 158.906250, 58.813742 ], [ 158.906250, 59.534318 ], [ 160.312500, 59.534318 ], [ 160.312500, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.930432 ], [ 163.125000, 60.930432 ], [ 163.125000, 62.267923 ], [ 161.718750, 62.267923 ], [ 161.718750, 61.606396 ], [ 160.312500, 61.606396 ], [ 160.312500, 60.930432 ], [ 158.906250, 60.930432 ], [ 158.906250, 61.606396 ], [ 156.093750, 61.606396 ], [ 156.093750, 60.930432 ], [ 154.687500, 60.930432 ], [ 154.687500, 60.239811 ], [ 153.281250, 60.239811 ], [ 153.281250, 59.534318 ], [ 151.875000, 59.534318 ], [ 151.875000, 58.813742 ], [ 150.468750, 58.813742 ], [ 150.468750, 59.534318 ], [ 142.031250, 59.534318 ], [ 142.031250, 58.813742 ], [ 140.625000, 58.813742 ], [ 140.625000, 58.077876 ], [ 139.218750, 58.077876 ], [ 139.218750, 57.326521 ], [ 137.812500, 57.326521 ], [ 137.812500, 56.559482 ], [ 136.406250, 56.559482 ], [ 136.406250, 54.162434 ], [ 137.812500, 54.162434 ], [ 137.812500, 54.977614 ], [ 139.218750, 54.977614 ], [ 139.218750, 54.162434 ], [ 140.625000, 54.162434 ], [ 140.625000, 53.330873 ], [ 142.031250, 53.330873 ], [ 142.031250, 51.618017 ] ], [ [ 32.343750, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 64.774125 ], [ 39.375000, 64.774125 ], [ 39.375000, 65.946472 ], [ 40.781250, 65.946472 ], [ 40.781250, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 67.067433 ], [ 32.343750, 67.067433 ], [ 32.343750, 66.513260 ] ], [ [ 71.718750, 71.074056 ], [ 71.718750, 68.656555 ], [ 73.125000, 68.656555 ], [ 74.531250, 68.656555 ], [ 74.531250, 69.162558 ], [ 73.125000, 69.162558 ], [ 73.125000, 71.074056 ], [ 71.718750, 71.074056 ] ], [ [ 73.125000, 67.609221 ], [ 71.718750, 67.609221 ], [ 71.718750, 67.067433 ], [ 73.125000, 67.067433 ], [ 73.125000, 67.609221 ] ], [ [ 73.125000, 68.138852 ], [ 73.125000, 67.609221 ], [ 74.531250, 67.609221 ], [ 74.531250, 68.138852 ], [ 73.125000, 68.138852 ] ] ], [ [ [ -184.218750, 70.140364 ], [ -184.218750, 69.657086 ], [ -181.406250, 69.657086 ], [ -181.406250, 69.162558 ], [ -180.000000, 69.162558 ], [ -180.000000, 68.656555 ], [ -178.593750, 68.656555 ], [ -178.593750, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.067433 ], [ -172.968750, 67.067433 ], [ -172.968750, 66.513260 ], [ -170.156250, 66.513260 ], [ -170.156250, 65.946472 ], [ -172.968750, 65.946472 ], [ -172.968750, 64.774125 ], [ -177.187500, 64.774125 ], [ -177.187500, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.366837 ], [ -181.406250, 65.366837 ], [ -181.406250, 64.774125 ], [ -182.812500, 64.774125 ], [ -182.812500, 63.548552 ], [ -181.406250, 63.548552 ], [ -181.406250, 62.915233 ], [ -182.812500, 62.915233 ], [ -182.812500, 62.267923 ], [ -187.031250, 62.267923 ], [ -187.031250, 70.140364 ], [ -184.218750, 70.140364 ] ] ], [ [ [ 142.031250, 48.922499 ], [ 142.031250, 46.073231 ], [ 140.625000, 46.073231 ], [ 140.625000, 48.922499 ], [ 142.031250, 48.922499 ] ] ], [ [ [ 67.500000, 76.840816 ], [ 67.500000, 76.184995 ], [ 64.687500, 76.184995 ], [ 64.687500, 75.845169 ], [ 63.281250, 75.845169 ], [ 63.281250, 75.497157 ], [ 60.468750, 75.497157 ], [ 60.468750, 75.140778 ], [ 59.062500, 75.140778 ], [ 59.062500, 74.402163 ], [ 57.656250, 74.402163 ], [ 57.656250, 74.019543 ], [ 56.250000, 74.019543 ], [ 56.250000, 72.816074 ], [ 54.843750, 72.816074 ], [ 54.843750, 71.524909 ], [ 56.250000, 71.524909 ], [ 56.250000, 71.074056 ], [ 52.031250, 71.074056 ], [ 52.031250, 71.524909 ], [ 50.625000, 71.524909 ], [ 50.625000, 72.395706 ], [ 52.031250, 72.395706 ], [ 52.031250, 73.226700 ], [ 53.437500, 73.226700 ], [ 53.437500, 74.402163 ], [ 54.843750, 74.402163 ], [ 54.843750, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.497157 ], [ 57.656250, 75.497157 ], [ 57.656250, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 76.184995 ], [ 60.468750, 76.184995 ], [ 60.468750, 76.516819 ], [ 66.093750, 76.516819 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ] ] ], [ [ [ 99.843750, 78.903929 ], [ 94.218750, 78.903929 ], [ 94.218750, 79.171335 ], [ 92.812500, 79.171335 ], [ 92.812500, 79.687184 ], [ 91.406250, 79.687184 ], [ 91.406250, 80.178713 ], [ 90.000000, 80.178713 ], [ 90.000000, 80.415707 ], [ 91.406250, 80.415707 ], [ 91.406250, 80.872827 ], [ 92.812500, 80.872827 ], [ 92.812500, 81.093214 ], [ 97.031250, 81.093214 ], [ 97.031250, 80.647035 ], [ 98.437500, 80.647035 ], [ 98.437500, 80.178713 ], [ 99.843750, 80.178713 ], [ 99.843750, 78.903929 ] ] ], [ [ [ 144.843750, 75.497157 ], [ 143.437500, 75.497157 ], [ 143.437500, 75.140778 ], [ 139.218750, 75.140778 ], [ 139.218750, 74.775843 ], [ 137.812500, 74.775843 ], [ 137.812500, 75.140778 ], [ 136.406250, 75.140778 ], [ 136.406250, 76.184995 ], [ 142.031250, 76.184995 ], [ 142.031250, 75.845169 ], [ 144.843750, 75.845169 ], [ 144.843750, 75.497157 ] ] ], [ [ [ 99.843750, 78.903929 ], [ 101.250000, 78.903929 ], [ 101.250000, 79.432371 ], [ 102.656250, 79.432371 ], [ 102.656250, 79.171335 ], [ 104.062500, 79.171335 ], [ 104.062500, 78.349411 ], [ 102.656250, 78.349411 ], [ 102.656250, 78.061989 ], [ 98.437500, 78.061989 ], [ 98.437500, 78.349411 ], [ 99.843750, 78.349411 ], [ 99.843750, 78.903929 ] ] ], [ [ [ 50.625000, 80.872827 ], [ 50.625000, 80.415707 ], [ 47.812500, 80.415707 ], [ 47.812500, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.872827 ], [ 50.625000, 80.872827 ] ] ], [ [ [ 181.406250, 71.524909 ], [ 181.406250, 71.074056 ], [ 180.000000, 71.074056 ], [ 178.593750, 71.074056 ], [ 178.593750, 71.524909 ], [ 180.000000, 71.524909 ], [ 181.406250, 71.524909 ] ] ], [ [ [ -178.593750, 71.524909 ], [ -178.593750, 71.074056 ], [ -180.000000, 71.074056 ], [ -181.406250, 71.074056 ], [ -181.406250, 71.524909 ], [ -180.000000, 71.524909 ], [ -178.593750, 71.524909 ] ] ], [ [ [ 142.031250, 51.618017 ], [ 143.437500, 51.618017 ], [ 143.437500, 49.837982 ], [ 142.031250, 49.837982 ], [ 142.031250, 51.618017 ] ] ], [ [ [ 147.656250, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 75.140778 ] ] ], [ [ [ 144.843750, 75.497157 ], [ 147.656250, 75.497157 ], [ 147.656250, 75.140778 ], [ 144.843750, 75.140778 ], [ 144.843750, 75.497157 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.250000, 55.776573 ], [ 9.843750, 55.776573 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 55.776573 ] ] ], [ [ [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.776573 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 68.138852 ], [ 15.468750, 67.067433 ], [ 14.062500, 67.067433 ], [ 14.062500, 65.946472 ], [ 12.656250, 65.946472 ], [ 12.656250, 64.168107 ], [ 11.250000, 64.168107 ], [ 11.250000, 59.534318 ], [ 9.843750, 59.534318 ], [ 9.843750, 58.813742 ], [ 7.031250, 58.813742 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 59.534318 ], [ 4.218750, 59.534318 ], [ 4.218750, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.915233 ], [ 8.437500, 62.915233 ], [ 8.437500, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 65.366837 ], [ 11.250000, 65.366837 ], [ 11.250000, 66.513260 ], [ 12.656250, 66.513260 ], [ 12.656250, 67.609221 ], [ 14.062500, 67.609221 ], [ 14.062500, 68.138852 ], [ 15.468750, 68.138852 ] ] ], [ [ [ 16.875000, 68.656555 ], [ 16.875000, 68.138852 ], [ 15.468750, 68.138852 ], [ 15.468750, 68.656555 ], [ 16.875000, 68.656555 ] ] ], [ [ [ 16.875000, 80.178713 ], [ 16.875000, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.171335 ], [ 21.093750, 79.171335 ], [ 21.093750, 78.903929 ], [ 19.687500, 78.903929 ], [ 19.687500, 78.630006 ], [ 18.281250, 78.630006 ], [ 18.281250, 77.767582 ], [ 16.875000, 77.767582 ], [ 16.875000, 76.840816 ], [ 14.062500, 76.840816 ], [ 14.062500, 77.157163 ], [ 12.656250, 77.157163 ], [ 12.656250, 77.466028 ], [ 14.062500, 77.466028 ], [ 14.062500, 77.767582 ], [ 12.656250, 77.767582 ], [ 12.656250, 78.061989 ], [ 11.250000, 78.061989 ], [ 11.250000, 78.630006 ], [ 9.843750, 78.630006 ], [ 9.843750, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.935918 ], [ 12.656250, 79.935918 ], [ 12.656250, 79.687184 ], [ 14.062500, 79.687184 ], [ 14.062500, 79.935918 ], [ 15.468750, 79.935918 ], [ 15.468750, 80.178713 ], [ 16.875000, 80.178713 ] ] ], [ [ [ 29.531250, 70.140364 ], [ 30.937500, 70.140364 ], [ 30.937500, 69.162558 ], [ 28.125000, 69.162558 ], [ 28.125000, 70.140364 ], [ 25.312500, 70.140364 ], [ 25.312500, 68.656555 ], [ 22.500000, 68.656555 ], [ 22.500000, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.656555 ], [ 16.875000, 68.656555 ], [ 16.875000, 69.657086 ], [ 18.281250, 69.657086 ], [ 18.281250, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 71.074056 ], [ 29.531250, 71.074056 ], [ 29.531250, 70.140364 ] ] ], [ [ [ 23.906250, 80.647035 ], [ 23.906250, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 79.935918 ], [ 25.312500, 79.935918 ], [ 25.312500, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.935918 ], [ 18.281250, 79.935918 ], [ 18.281250, 80.178713 ], [ 16.875000, 80.178713 ], [ 16.875000, 80.415707 ], [ 21.093750, 80.415707 ], [ 21.093750, 80.647035 ], [ 23.906250, 80.647035 ] ] ], [ [ [ 22.500000, 78.349411 ], [ 22.500000, 78.061989 ], [ 23.906250, 78.061989 ], [ 23.906250, 77.767582 ], [ 22.500000, 77.767582 ], [ 22.500000, 77.466028 ], [ 19.687500, 77.466028 ], [ 19.687500, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 78.061989 ], [ 19.687500, 78.061989 ], [ 19.687500, 78.349411 ], [ 22.500000, 78.349411 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 69.162558 ], [ 21.093750, 68.656555 ], [ 22.500000, 68.656555 ], [ 22.500000, 68.138852 ], [ 23.906250, 68.138852 ], [ 23.906250, 65.946472 ], [ 22.500000, 65.946472 ], [ 22.500000, 65.366837 ], [ 21.093750, 65.366837 ], [ 21.093750, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.267923 ], [ 16.875000, 62.267923 ], [ 16.875000, 60.930432 ], [ 18.281250, 60.930432 ], [ 18.281250, 58.813742 ], [ 16.875000, 58.813742 ], [ 16.875000, 56.559482 ], [ 15.468750, 56.559482 ], [ 15.468750, 55.776573 ], [ 14.062500, 55.776573 ], [ 14.062500, 54.977614 ], [ 12.656250, 54.977614 ], [ 12.656250, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 59.534318 ], [ 12.656250, 59.534318 ], [ 12.656250, 62.267923 ], [ 11.250000, 62.267923 ], [ 11.250000, 63.548552 ], [ 12.656250, 63.548552 ], [ 12.656250, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 65.366837 ], [ 15.468750, 65.366837 ], [ 15.468750, 67.609221 ], [ 16.875000, 67.609221 ], [ 16.875000, 68.138852 ], [ 18.281250, 68.138852 ], [ 18.281250, 68.656555 ], [ 19.687500, 68.656555 ], [ 19.687500, 69.162558 ], [ 21.093750, 69.162558 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 58.077876 ], [ 9.843750, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 54.977614 ], [ 9.843750, 54.977614 ], [ 7.031250, 54.977614 ], [ 7.031250, 57.326521 ], [ 8.437500, 57.326521 ], [ 8.437500, 58.077876 ], [ 9.843750, 58.077876 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 68.656555 ], [ 21.093750, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 65.946472 ], [ 21.093750, 65.946472 ], [ 21.093750, 64.168107 ], [ 19.687500, 64.168107 ], [ 19.687500, 63.548552 ], [ 18.281250, 63.548552 ], [ 18.281250, 62.915233 ], [ 16.875000, 62.915233 ], [ 16.875000, 60.239811 ], [ 18.281250, 60.239811 ], [ 18.281250, 59.534318 ], [ 16.875000, 59.534318 ], [ 16.875000, 58.813742 ], [ 15.468750, 58.813742 ], [ 15.468750, 56.559482 ], [ 14.062500, 56.559482 ], [ 14.062500, 55.776573 ], [ 11.250000, 55.776573 ], [ 11.250000, 58.813742 ], [ 9.843750, 58.813742 ], [ 9.843750, 59.534318 ], [ 11.250000, 59.534318 ], [ 11.250000, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 65.946472 ], [ 14.062500, 65.946472 ], [ 14.062500, 67.067433 ], [ 15.468750, 67.067433 ], [ 15.468750, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 68.656555 ], [ 21.093750, 68.656555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.618017 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 5.625000, 51.618017 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 48.922499 ], [ 14.062500, 48.922499 ], [ 14.062500, 47.989922 ], [ 8.437500, 47.989922 ], [ 8.437500, 48.922499 ], [ 5.625000, 48.922499 ], [ 5.625000, 51.618017 ], [ 7.031250, 51.618017 ], [ 7.031250, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 52.482780 ], [ 5.625000, 52.482780 ], [ 5.625000, 51.618017 ], [ 2.812500, 51.618017 ], [ 2.812500, 52.482780 ], [ 4.218750, 52.482780 ], [ 4.218750, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 47.989922 ], [ 9.843750, 46.073231 ], [ 5.625000, 46.073231 ], [ 5.625000, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.989922 ], [ 9.843750, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.618017 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 5.625000, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 50.736455 ], [ 16.875000, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 50.736455 ], [ 16.875000, 50.736455 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 51.618017 ], [ 12.656250, 51.618017 ], [ 12.656250, 50.736455 ], [ 11.250000, 50.736455 ], [ 11.250000, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.031250, 49.837982 ], [ 5.625000, 49.837982 ], [ 5.625000, 52.482780 ], [ 7.031250, 52.482780 ], [ 7.031250, 53.330873 ], [ 5.625000, 53.330873 ], [ 5.625000, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 54.162434 ], [ 23.906250, 52.482780 ], [ 22.500000, 52.482780 ], [ 22.500000, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 19.687500, 48.922499 ], [ 19.687500, 49.837982 ], [ 16.875000, 49.837982 ], [ 16.875000, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 54.162434 ], [ 23.906250, 54.162434 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 47.989922 ], [ 8.437500, 46.073231 ], [ 5.625000, 46.073231 ], [ 5.625000, 47.989922 ], [ 8.437500, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 48.922499 ], [ 16.875000, 47.040182 ], [ 15.468750, 47.040182 ], [ 15.468750, 46.073231 ], [ 12.656250, 46.073231 ], [ 12.656250, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.989922 ], [ 14.062500, 47.989922 ], [ 14.062500, 48.922499 ], [ 16.875000, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 51.618017 ], [ 15.468750, 50.736455 ], [ 18.281250, 50.736455 ], [ 18.281250, 49.837982 ], [ 16.875000, 49.837982 ], [ 16.875000, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 49.837982 ], [ 11.250000, 49.837982 ], [ 11.250000, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 51.618017 ], [ 15.468750, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 46.073231 ], [ 15.468750, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 46.073231 ], [ 15.468750, 46.073231 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 46.073231 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 54.977614 ], [ 22.500000, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 51.618017 ], [ 14.062500, 51.618017 ], [ 14.062500, 54.162434 ], [ 15.468750, 54.162434 ], [ 15.468750, 54.977614 ], [ 22.500000, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 12.656250, 36.597889 ], [ 12.656250, 37.718590 ], [ 15.468750, 37.718590 ] ] ], [ [ [ 12.656250, 47.040182 ], [ 12.656250, 44.087585 ], [ 14.062500, 44.087585 ], [ 14.062500, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 40.979898 ], [ 16.875000, 40.979898 ], [ 16.875000, 37.718590 ], [ 15.468750, 37.718590 ], [ 15.468750, 39.909736 ], [ 14.062500, 39.909736 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 42.032974 ], [ 9.843750, 42.032974 ], [ 9.843750, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 46.073231 ], [ 9.843750, 46.073231 ], [ 9.843750, 47.040182 ], [ 12.656250, 47.040182 ] ] ], [ [ [ 9.843750, 40.979898 ], [ 9.843750, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.843750, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 48.922499 ], [ 16.875000, 47.989922 ], [ 15.468750, 47.989922 ], [ 15.468750, 47.040182 ], [ 8.437500, 47.040182 ], [ 8.437500, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.922499 ], [ 16.875000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.068888 ], [ 15.468750, 43.068888 ], [ 15.468750, 44.087585 ], [ 16.875000, 44.087585 ], [ 16.875000, 43.068888 ] ] ], [ [ [ 18.281250, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 46.073231 ], [ 18.281250, 46.073231 ], [ 18.281250, 45.089036 ] ] ], [ [ [ 16.875000, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 42.032974 ], [ 16.875000, 42.032974 ], [ 16.875000, 43.068888 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 47.040182 ], [ 15.468750, 46.073231 ], [ 12.656250, 46.073231 ], [ 12.656250, 47.040182 ], [ 15.468750, 47.040182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 47.989922 ], [ 22.500000, 47.040182 ], [ 21.093750, 47.040182 ], [ 21.093750, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 47.989922 ], [ 22.500000, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.822591 ], [ 15.468750, 37.718590 ], [ 11.250000, 37.718590 ], [ 11.250000, 38.822591 ], [ 15.468750, 38.822591 ] ] ], [ [ [ 8.437500, 40.979898 ], [ 8.437500, 39.909736 ], [ 7.031250, 39.909736 ], [ 7.031250, 40.979898 ], [ 8.437500, 40.979898 ] ] ], [ [ [ 12.656250, 42.032974 ], [ 9.843750, 42.032974 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 47.040182 ], [ 12.656250, 47.040182 ], [ 12.656250, 46.073231 ], [ 11.250000, 46.073231 ], [ 11.250000, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 42.032974 ] ] ], [ [ [ 16.875000, 40.979898 ], [ 18.281250, 40.979898 ], [ 18.281250, 39.909736 ], [ 16.875000, 39.909736 ], [ 16.875000, 40.979898 ] ] ], [ [ [ 12.656250, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 40.979898 ], [ 15.468750, 39.909736 ], [ 14.062500, 39.909736 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 49.837982 ], [ 19.687500, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 49.837982 ], [ 19.687500, 49.837982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 46.073231 ], [ 15.468750, 44.087585 ], [ 14.062500, 44.087585 ], [ 14.062500, 45.089036 ], [ 12.656250, 45.089036 ], [ 12.656250, 46.073231 ], [ 15.468750, 46.073231 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 46.073231 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 18.281250, 46.073231 ], [ 18.281250, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 46.073231 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 45.089036 ], [ 19.687500, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 44.087585 ], [ 15.468750, 44.087585 ], [ 15.468750, 45.089036 ], [ 19.687500, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.922499 ], [ 22.500000, 47.989922 ], [ 21.093750, 47.989922 ], [ 21.093750, 47.040182 ], [ 18.281250, 47.040182 ], [ 18.281250, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 47.040182 ], [ 15.468750, 47.040182 ], [ 15.468750, 47.989922 ], [ 18.281250, 47.989922 ], [ 18.281250, 48.922499 ], [ 22.500000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 19.687500, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 43.068888 ], [ 19.687500, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 49.837982 ], [ 22.500000, 49.837982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 46.073231 ], [ 21.093750, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 45.089036 ], [ 18.281250, 45.089036 ], [ 18.281250, 46.073231 ], [ 21.093750, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.073231 ], [ 16.875000, 45.089036 ], [ 18.281250, 45.089036 ], [ 18.281250, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 44.087585 ], [ 15.468750, 44.087585 ], [ 15.468750, 46.073231 ], [ 16.875000, 46.073231 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.032974 ], [ 19.687500, 42.032974 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 44.087585 ], [ 19.687500, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 44.087585 ], [ 19.687500, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 42.032974 ], [ 21.093750, 39.909736 ], [ 19.687500, 39.909736 ], [ 19.687500, 42.032974 ], [ 21.093750, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 47.040182 ], [ 19.687500, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 45.089036 ], [ 22.500000, 45.089036 ], [ 22.500000, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 44.087585 ], [ 18.281250, 44.087585 ], [ 18.281250, 47.040182 ], [ 19.687500, 47.040182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.032974 ], [ 22.500000, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 42.032974 ], [ 22.500000, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.068888 ], [ 19.687500, 40.979898 ], [ 18.281250, 40.979898 ], [ 18.281250, 43.068888 ], [ 19.687500, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 69.657086 ], [ 29.531250, 69.162558 ], [ 28.125000, 69.162558 ], [ 28.125000, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 64.168107 ], [ 30.937500, 64.168107 ], [ 30.937500, 63.548552 ], [ 29.531250, 63.548552 ], [ 29.531250, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 60.930432 ], [ 28.125000, 60.930432 ], [ 28.125000, 60.239811 ], [ 23.906250, 60.239811 ], [ 23.906250, 59.534318 ], [ 22.500000, 59.534318 ], [ 22.500000, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 62.915233 ], [ 22.500000, 62.915233 ], [ 22.500000, 63.548552 ], [ 23.906250, 63.548552 ], [ 23.906250, 64.168107 ], [ 25.312500, 64.168107 ], [ 25.312500, 65.366837 ], [ 23.906250, 65.366837 ], [ 23.906250, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 69.162558 ], [ 26.718750, 69.162558 ], [ 26.718750, 69.657086 ], [ 29.531250, 69.657086 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 58.077876 ], [ 25.312500, 57.326521 ], [ 28.125000, 57.326521 ], [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.559482 ], [ 22.500000, 56.559482 ], [ 22.500000, 55.776573 ], [ 21.093750, 55.776573 ], [ 21.093750, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 25.312500, 58.077876 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 70.140364 ], [ 28.125000, 68.138852 ], [ 29.531250, 68.138852 ], [ 29.531250, 67.609221 ], [ 28.125000, 67.609221 ], [ 28.125000, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 63.548552 ], [ 30.937500, 63.548552 ], [ 30.937500, 62.267923 ], [ 29.531250, 62.267923 ], [ 29.531250, 61.606396 ], [ 28.125000, 61.606396 ], [ 28.125000, 60.930432 ], [ 25.312500, 60.930432 ], [ 25.312500, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 62.267923 ], [ 19.687500, 62.267923 ], [ 19.687500, 62.915233 ], [ 21.093750, 62.915233 ], [ 21.093750, 64.168107 ], [ 22.500000, 64.168107 ], [ 22.500000, 64.774125 ], [ 23.906250, 64.774125 ], [ 23.906250, 65.946472 ], [ 22.500000, 65.946472 ], [ 22.500000, 68.138852 ], [ 21.093750, 68.138852 ], [ 21.093750, 68.656555 ], [ 19.687500, 68.656555 ], [ 19.687500, 69.162558 ], [ 22.500000, 69.162558 ], [ 22.500000, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 70.140364 ], [ 28.125000, 70.140364 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 26.718750, 58.813742 ], [ 26.718750, 58.077876 ], [ 28.125000, 58.077876 ], [ 28.125000, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 58.077876 ], [ 26.718750, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.559482 ], [ 19.687500, 56.559482 ], [ 19.687500, 57.326521 ], [ 21.093750, 57.326521 ], [ 21.093750, 58.077876 ], [ 22.500000, 58.077876 ], [ 22.500000, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 26.718750, 58.077876 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.559482 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 25.312500, 54.977614 ], [ 25.312500, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.776573 ], [ 22.500000, 55.776573 ], [ 22.500000, 56.559482 ], [ 25.312500, 56.559482 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 26.718750, 58.813742 ], [ 26.718750, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 58.813742 ], [ 22.500000, 58.813742 ], [ 22.500000, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, 55.776573 ], [ 30.937500, 54.162434 ], [ 32.343750, 54.162434 ], [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 32.343750, 52.482780 ], [ 32.343750, 51.618017 ], [ 22.500000, 51.618017 ], [ 22.500000, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.937500, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.559482 ], [ 25.312500, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.776573 ], [ 19.687500, 55.776573 ], [ 19.687500, 56.559482 ], [ 25.312500, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 47.989922 ], [ 26.718750, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.087585 ], [ 21.093750, 44.087585 ], [ 21.093750, 47.040182 ], [ 22.500000, 47.040182 ], [ 22.500000, 47.989922 ], [ 26.718750, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 56.559482 ], [ 28.125000, 55.776573 ], [ 30.937500, 55.776573 ], [ 30.937500, 54.977614 ], [ 29.531250, 54.977614 ], [ 29.531250, 54.162434 ], [ 32.343750, 54.162434 ], [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 29.531250, 52.482780 ], [ 29.531250, 51.618017 ], [ 25.312500, 51.618017 ], [ 25.312500, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 51.618017 ], [ 22.500000, 51.618017 ], [ 22.500000, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 56.559482 ], [ 28.125000, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 44.087585 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 48.922499 ], [ 26.718750, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 46.073231 ], [ 29.531250, 46.073231 ], [ 29.531250, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 45.089036 ], [ 21.093750, 45.089036 ], [ 21.093750, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 47.040182 ], [ 21.093750, 47.040182 ], [ 21.093750, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 48.922499 ], [ 26.718750, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 47.989922 ], [ 29.531250, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 47.040182 ], [ 26.718750, 47.040182 ], [ 26.718750, 47.989922 ], [ 29.531250, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 44.087585 ], [ 26.718750, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 44.087585 ], [ 26.718750, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 51.618017 ], [ 35.156250, 51.618017 ], [ 35.156250, 49.837982 ], [ 39.375000, 49.837982 ], [ 39.375000, 47.989922 ], [ 37.968750, 47.989922 ], [ 37.968750, 47.040182 ], [ 35.156250, 47.040182 ], [ 35.156250, 44.087585 ], [ 33.750000, 44.087585 ], [ 33.750000, 46.073231 ], [ 32.343750, 46.073231 ], [ 32.343750, 47.040182 ], [ 30.937500, 47.040182 ], [ 30.937500, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 46.073231 ], [ 29.531250, 46.073231 ], [ 29.531250, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 49.837982 ], [ 23.906250, 49.837982 ], [ 23.906250, 51.618017 ], [ 32.343750, 51.618017 ], [ 32.343750, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 48.922499 ], [ 28.125000, 47.040182 ], [ 26.718750, 47.040182 ], [ 26.718750, 48.922499 ], [ 28.125000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 43.068888 ], [ 45.000000, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.187500, 40.979898 ], [ 42.187500, 42.032974 ], [ 40.781250, 42.032974 ], [ 40.781250, 43.068888 ], [ 45.000000, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 51.618017 ], [ 35.156250, 51.618017 ], [ 35.156250, 50.736455 ], [ 37.968750, 50.736455 ], [ 37.968750, 49.837982 ], [ 39.375000, 49.837982 ], [ 39.375000, 47.989922 ], [ 37.968750, 47.989922 ], [ 37.968750, 47.040182 ], [ 33.750000, 47.040182 ], [ 33.750000, 46.073231 ], [ 35.156250, 46.073231 ], [ 35.156250, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 47.040182 ], [ 29.531250, 47.040182 ], [ 29.531250, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 48.922499 ], [ 25.312500, 48.922499 ], [ 25.312500, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 52.482780 ], [ 25.312500, 52.482780 ], [ 25.312500, 51.618017 ], [ 29.531250, 51.618017 ], [ 29.531250, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 36.597889 ], [ 11.250000, 31.952162 ], [ 9.843750, 31.952162 ], [ 9.843750, 30.751278 ], [ 8.437500, 30.751278 ], [ 8.437500, 33.137551 ], [ 7.031250, 33.137551 ], [ 7.031250, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 36.597889 ], [ 11.250000, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 44.087585 ], [ 42.187500, 43.068888 ], [ 45.000000, 43.068888 ], [ 45.000000, 42.032974 ], [ 40.781250, 42.032974 ], [ 40.781250, 43.068888 ], [ 39.375000, 43.068888 ], [ 39.375000, 44.087585 ], [ 42.187500, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 36.597889 ], [ 8.437500, 34.307144 ], [ 7.031250, 34.307144 ], [ 7.031250, 33.137551 ], [ 8.437500, 33.137551 ], [ 8.437500, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 24.527135 ], [ 11.250000, 24.527135 ], [ 11.250000, 21.943046 ], [ 8.437500, 21.943046 ], [ 8.437500, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 19.311143 ], [ 1.406250, 19.311143 ], [ 1.406250, 20.632784 ], [ 0.000000, 20.632784 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 23.241346 ], [ -4.218750, 23.241346 ], [ -4.218750, 24.527135 ], [ -7.031250, 24.527135 ], [ -7.031250, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 28.304381 ], [ -7.031250, 28.304381 ], [ -7.031250, 29.535230 ], [ -4.218750, 29.535230 ], [ -4.218750, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 34.307144 ], [ -2.812500, 34.307144 ], [ -2.812500, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.597889 ], [ 8.437500, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 37.718590 ], [ 9.843750, 30.751278 ], [ 8.437500, 30.751278 ], [ 8.437500, 33.137551 ], [ 7.031250, 33.137551 ], [ 7.031250, 37.718590 ], [ 9.843750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 33.137551 ], [ 22.500000, 31.952162 ], [ 25.312500, 31.952162 ], [ 25.312500, 20.632784 ], [ 23.906250, 20.632784 ], [ 23.906250, 19.311143 ], [ 22.500000, 19.311143 ], [ 22.500000, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.943046 ], [ 16.875000, 21.943046 ], [ 16.875000, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 21.943046 ], [ 14.062500, 21.943046 ], [ 14.062500, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 31.952162 ], [ 11.250000, 31.952162 ], [ 11.250000, 33.137551 ], [ 14.062500, 33.137551 ], [ 14.062500, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 30.751278 ], [ 19.687500, 30.751278 ], [ 19.687500, 31.952162 ], [ 21.093750, 31.952162 ], [ 21.093750, 33.137551 ], [ 22.500000, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 37.718590 ], [ 7.031250, 33.137551 ], [ 8.437500, 33.137551 ], [ 8.437500, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 28.304381 ], [ 8.437500, 28.304381 ], [ 8.437500, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 24.527135 ], [ 11.250000, 24.527135 ], [ 11.250000, 23.241346 ], [ 9.843750, 23.241346 ], [ 9.843750, 21.943046 ], [ 8.437500, 21.943046 ], [ 8.437500, 20.632784 ], [ 5.625000, 20.632784 ], [ 5.625000, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 20.632784 ], [ 0.000000, 20.632784 ], [ 0.000000, 21.943046 ], [ -2.812500, 21.943046 ], [ -2.812500, 23.241346 ], [ -4.218750, 23.241346 ], [ -4.218750, 24.527135 ], [ -5.625000, 24.527135 ], [ -5.625000, 25.799891 ], [ -7.031250, 25.799891 ], [ -7.031250, 27.059126 ], [ -9.843750, 27.059126 ], [ -9.843750, 29.535230 ], [ -8.437500, 29.535230 ], [ -8.437500, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 37.718590 ], [ 7.031250, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 23.241346 ], [ 14.062500, 21.943046 ], [ 15.468750, 21.943046 ], [ 15.468750, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 12.554564 ], [ 11.250000, 12.554564 ], [ 11.250000, 13.923404 ], [ 9.843750, 13.923404 ], [ 9.843750, 12.554564 ], [ 7.031250, 12.554564 ], [ 7.031250, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 11.178402 ], [ 2.812500, 11.178402 ], [ 2.812500, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 15.284185 ], [ 4.218750, 15.284185 ], [ 4.218750, 19.311143 ], [ 7.031250, 19.311143 ], [ 7.031250, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.943046 ], [ 11.250000, 21.943046 ], [ 11.250000, 23.241346 ], [ 14.062500, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 33.137551 ], [ 23.906250, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.943046 ], [ 18.281250, 21.943046 ], [ 18.281250, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.799891 ], [ 8.437500, 25.799891 ], [ 8.437500, 28.304381 ], [ 9.843750, 28.304381 ], [ 9.843750, 29.535230 ], [ 8.437500, 29.535230 ], [ 8.437500, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 33.137551 ], [ 14.062500, 33.137551 ], [ 14.062500, 31.952162 ], [ 16.875000, 31.952162 ], [ 16.875000, 30.751278 ], [ 19.687500, 30.751278 ], [ 19.687500, 33.137551 ], [ 23.906250, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 1.406250, 7.013668 ], [ 1.406250, 5.615986 ], [ 0.000000, 5.615986 ], [ 0.000000, 7.013668 ], [ 1.406250, 7.013668 ] ] ], [ [ [ 1.406250, 8.407168 ], [ 0.000000, 8.407168 ], [ 0.000000, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 13.923404 ], [ 2.812500, 13.923404 ], [ 2.812500, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.625000, 19.311143 ], [ 5.625000, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.943046 ], [ 9.843750, 21.943046 ], [ 9.843750, 23.241346 ], [ 14.062500, 23.241346 ], [ 14.062500, 21.943046 ], [ 15.468750, 21.943046 ], [ 15.468750, 19.311143 ], [ 14.062500, 19.311143 ], [ 14.062500, 16.636192 ], [ 12.656250, 16.636192 ], [ 12.656250, 13.923404 ] ] ], [ [ [ 12.656250, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 12.554564 ], [ 12.656250, 12.554564 ], [ 12.656250, 13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.218750, 11.178402 ], [ 4.218750, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 5.615986 ], [ 1.406250, 5.615986 ], [ 1.406250, 11.178402 ], [ 4.218750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.406250, 11.178402 ], [ 1.406250, 7.013668 ], [ 0.000000, 7.013668 ], [ 0.000000, 11.178402 ], [ 1.406250, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 13.923404 ], [ 11.250000, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 9.795678 ], [ 12.656250, 9.795678 ], [ 12.656250, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 5.615986 ], [ 2.812500, 5.615986 ], [ 2.812500, 9.795678 ], [ 4.218750, 9.795678 ], [ 4.218750, 13.923404 ], [ 7.031250, 13.923404 ], [ 7.031250, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.923404 ], [ 11.250000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 2.812500, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 12.554564 ], [ 2.812500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 13.923404 ], [ 12.656250, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 11.178402 ], [ 12.656250, 11.178402 ], [ 12.656250, 8.407168 ], [ 11.250000, 8.407168 ], [ 11.250000, 7.013668 ], [ 8.437500, 7.013668 ], [ 8.437500, 5.615986 ], [ 4.218750, 5.615986 ], [ 4.218750, 7.013668 ], [ 1.406250, 7.013668 ], [ 1.406250, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 13.923404 ], [ 12.656250, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 23.241346 ], [ 16.875000, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 8.407168 ], [ 14.062500, 8.407168 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 15.284185 ], [ 15.468750, 15.284185 ], [ 15.468750, 23.241346 ], [ 16.875000, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 8.437500, 1.406109 ], [ 8.437500, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.062500, 9.795678 ], [ 14.062500, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 5.615986 ], [ 14.062500, 5.615986 ], [ 14.062500, 4.214943 ], [ 15.468750, 4.214943 ], [ 15.468750, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 2.811371 ], [ 9.843750, 2.811371 ], [ 9.843750, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.843750, 5.615986 ], [ 9.843750, 7.013668 ], [ 12.656250, 7.013668 ], [ 12.656250, 9.795678 ], [ 14.062500, 9.795678 ] ] ], [ [ [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 12.554564 ], [ 15.468750, 12.554564 ], [ 15.468750, 9.795678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 23.241346 ], [ 18.281250, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 13.923404 ], [ 21.093750, 13.923404 ], [ 21.093750, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 9.795678 ], [ 18.281250, 9.795678 ], [ 18.281250, 8.407168 ], [ 14.062500, 8.407168 ], [ 14.062500, 13.923404 ], [ 12.656250, 13.923404 ], [ 12.656250, 16.636192 ], [ 14.062500, 16.636192 ], [ 14.062500, 19.311143 ], [ 15.468750, 19.311143 ], [ 15.468750, 21.943046 ], [ 14.062500, 21.943046 ], [ 14.062500, 23.241346 ], [ 18.281250, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 11.178402 ], [ 22.500000, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 8.407168 ], [ 25.312500, 8.407168 ], [ 25.312500, 7.013668 ], [ 26.718750, 7.013668 ], [ 26.718750, 5.615986 ], [ 25.312500, 5.615986 ], [ 25.312500, 4.214943 ], [ 16.875000, 4.214943 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 4.214943 ], [ 14.062500, 4.214943 ], [ 14.062500, 5.615986 ], [ 15.468750, 5.615986 ], [ 15.468750, 7.013668 ], [ 18.281250, 7.013668 ], [ 18.281250, 8.407168 ], [ 21.093750, 8.407168 ], [ 21.093750, 11.178402 ], [ 22.500000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 11.178402 ], [ 14.062500, 4.214943 ], [ 15.468750, 4.214943 ], [ 15.468750, 2.811371 ], [ 8.437500, 2.811371 ], [ 8.437500, 7.013668 ], [ 11.250000, 7.013668 ], [ 11.250000, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 11.178402 ], [ 14.062500, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, 40.979898 ], [ 23.906250, 39.909736 ], [ 22.500000, 39.909736 ], [ 22.500000, 38.822591 ], [ 23.906250, 38.822591 ], [ 23.906250, 37.718590 ], [ 22.500000, 37.718590 ], [ 22.500000, 36.597889 ], [ 21.093750, 36.597889 ], [ 21.093750, 38.822591 ], [ 19.687500, 38.822591 ], [ 19.687500, 39.909736 ], [ 21.093750, 39.909736 ], [ 21.093750, 40.979898 ], [ 23.906250, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 11.178402 ], [ 22.500000, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 5.615986 ], [ 22.500000, 5.615986 ], [ 22.500000, 4.214943 ], [ 21.093750, 4.214943 ], [ 21.093750, 5.615986 ], [ 18.281250, 5.615986 ], [ 18.281250, 4.214943 ], [ 14.062500, 4.214943 ], [ 14.062500, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 11.178402 ], [ 22.500000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.460670 ], [ 33.750000, 34.307144 ], [ 32.343750, 34.307144 ], [ 32.343750, 35.460670 ], [ 33.750000, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 42.032974 ], [ 25.312500, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 38.822591 ], [ 23.906250, 38.822591 ], [ 23.906250, 37.718590 ], [ 22.500000, 37.718590 ], [ 22.500000, 36.597889 ], [ 21.093750, 36.597889 ], [ 21.093750, 38.822591 ], [ 19.687500, 38.822591 ], [ 19.687500, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 42.032974 ], [ 25.312500, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 31.952162 ], [ 32.343750, 30.751278 ], [ 33.750000, 30.751278 ], [ 33.750000, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 28.304381 ], [ 33.750000, 28.304381 ], [ 33.750000, 25.799891 ], [ 35.156250, 25.799891 ], [ 35.156250, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 31.952162 ], [ 26.718750, 31.952162 ], [ 26.718750, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.952162 ], [ 32.343750, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 28.304381 ], [ 32.343750, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 23.241346 ], [ 23.906250, 23.241346 ], [ 23.906250, 31.952162 ], [ 33.750000, 31.952162 ], [ 33.750000, 28.304381 ], [ 32.343750, 28.304381 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 30.751278 ], [ 30.937500, 30.751278 ], [ 30.937500, 29.535230 ], [ 32.343750, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 42.032974 ], [ 35.156250, 42.032974 ], [ 35.156250, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 36.597889 ], [ 43.593750, 36.597889 ], [ 43.593750, 37.718590 ], [ 42.187500, 37.718590 ], [ 42.187500, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.460670 ], [ 35.156250, 35.460670 ], [ 35.156250, 36.597889 ], [ 26.718750, 36.597889 ], [ 26.718750, 39.909736 ], [ 28.125000, 39.909736 ], [ 28.125000, 40.979898 ] ] ], [ [ [ 28.125000, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.718750, 40.979898 ], [ 28.125000, 40.979898 ], [ 28.125000, 42.032974 ], [ 36.562500, 42.032974 ], [ 36.562500, 40.979898 ], [ 39.375000, 40.979898 ], [ 39.375000, 42.032974 ], [ 42.187500, 42.032974 ], [ 42.187500, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 37.718590 ], [ 36.562500, 37.718590 ], [ 36.562500, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 37.718590 ], [ 29.531250, 37.718590 ], [ 29.531250, 36.597889 ], [ 28.125000, 36.597889 ], [ 28.125000, 37.718590 ], [ 25.312500, 37.718590 ], [ 25.312500, 38.822591 ], [ 26.718750, 38.822591 ], [ 26.718750, 40.979898 ] ] ], [ [ [ 26.718750, 40.979898 ], [ 25.312500, 40.979898 ], [ 25.312500, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.307144 ], [ 36.562500, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 37.718590 ], [ 40.781250, 34.307144 ], [ 37.968750, 34.307144 ], [ 37.968750, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 37.718590 ], [ 40.781250, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 36.597889 ], [ 40.781250, 33.137551 ], [ 39.375000, 33.137551 ], [ 39.375000, 31.952162 ], [ 35.156250, 31.952162 ], [ 35.156250, 33.137551 ], [ 36.562500, 33.137551 ], [ 36.562500, 36.597889 ], [ 40.781250, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.718590 ], [ 43.593750, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 30.751278 ], [ 46.406250, 30.751278 ], [ 46.406250, 29.535230 ], [ 42.187500, 29.535230 ], [ 42.187500, 30.751278 ], [ 40.781250, 30.751278 ], [ 40.781250, 31.952162 ], [ 37.968750, 31.952162 ], [ 37.968750, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 37.718590 ], [ 43.593750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.718590 ], [ 43.593750, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.307144 ], [ 45.000000, 34.307144 ], [ 45.000000, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 29.535230 ], [ 42.187500, 29.535230 ], [ 42.187500, 30.751278 ], [ 40.781250, 30.751278 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 33.137551 ], [ 40.781250, 33.137551 ], [ 40.781250, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.718590 ], [ 43.593750, 37.718590 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 33.137551 ], [ 35.156250, 30.751278 ], [ 33.750000, 30.751278 ], [ 33.750000, 33.137551 ], [ 35.156250, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 30.751278 ], [ 35.156250, 29.535230 ], [ 33.750000, 29.535230 ], [ 33.750000, 30.751278 ], [ 35.156250, 30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 33.137551 ], [ 37.968750, 31.952162 ], [ 36.562500, 31.952162 ], [ 36.562500, 29.535230 ], [ 33.750000, 29.535230 ], [ 33.750000, 30.751278 ], [ 35.156250, 30.751278 ], [ 35.156250, 33.137551 ], [ 37.968750, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 31.952162 ], [ 36.562500, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 31.952162 ], [ 36.562500, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 23.241346 ], [ 36.562500, 19.311143 ], [ 37.968750, 19.311143 ], [ 37.968750, 17.978733 ], [ 36.562500, 17.978733 ], [ 36.562500, 15.284185 ], [ 35.156250, 15.284185 ], [ 35.156250, 12.554564 ], [ 33.750000, 12.554564 ], [ 33.750000, 11.178402 ], [ 32.343750, 11.178402 ], [ 32.343750, 12.554564 ], [ 30.937500, 12.554564 ], [ 30.937500, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 11.178402 ], [ 23.906250, 11.178402 ], [ 23.906250, 9.795678 ], [ 22.500000, 9.795678 ], [ 22.500000, 12.554564 ], [ 21.093750, 12.554564 ], [ 21.093750, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 20.632784 ], [ 23.906250, 20.632784 ], [ 23.906250, 23.241346 ], [ 36.562500, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 21.943046 ], [ 36.562500, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 12.554564 ], [ 32.343750, 12.554564 ], [ 32.343750, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 9.795678 ], [ 22.500000, 9.795678 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 20.632784 ], [ 25.312500, 20.632784 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, 12.554564 ], [ 32.343750, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 4.214943 ], [ 29.531250, 4.214943 ], [ 29.531250, 5.615986 ], [ 25.312500, 5.615986 ], [ 25.312500, 7.013668 ], [ 23.906250, 7.013668 ], [ 23.906250, 8.407168 ], [ 22.500000, 8.407168 ], [ 22.500000, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 11.178402 ], [ 25.312500, 11.178402 ], [ 25.312500, 9.795678 ], [ 30.937500, 9.795678 ], [ 30.937500, 12.554564 ], [ 32.343750, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 12.554564 ], [ 33.750000, 7.013668 ], [ 35.156250, 7.013668 ], [ 35.156250, 4.214943 ], [ 30.937500, 4.214943 ], [ 30.937500, 2.811371 ], [ 29.531250, 2.811371 ], [ 29.531250, 4.214943 ], [ 26.718750, 4.214943 ], [ 26.718750, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 9.795678 ], [ 32.343750, 9.795678 ], [ 32.343750, 12.554564 ], [ 33.750000, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 4.214943 ], [ 33.750000, 0.000000 ], [ 29.531250, 0.000000 ], [ 29.531250, 4.214943 ], [ 33.750000, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 4.214943 ], [ 35.156250, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 4.214943 ], [ 35.156250, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.781250, 13.923404 ], [ 42.187500, 13.923404 ], [ 42.187500, 12.554564 ], [ 40.781250, 12.554564 ], [ 40.781250, 13.923404 ] ] ], [ [ [ 37.968750, 16.636192 ], [ 39.375000, 16.636192 ], [ 39.375000, 15.284185 ], [ 36.562500, 15.284185 ], [ 36.562500, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 16.636192 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 16.636192 ], [ 39.375000, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 39.375000, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 12.554564 ], [ 42.187500, 11.178402 ], [ 40.781250, 11.178402 ], [ 40.781250, 12.554564 ], [ 42.187500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 12.554564 ], [ 43.593750, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 5.615986 ], [ 36.562500, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, -1.406109 ], [ 39.375000, -1.406109 ], [ 39.375000, -4.214943 ], [ 36.562500, -4.214943 ], [ 36.562500, -2.811371 ], [ 35.156250, -2.811371 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 5.615986 ], [ 36.562500, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 4.214943 ], [ 42.187500, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 35.156250, -2.811371 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 35.156250, 0.000000 ], [ 35.156250, 4.214943 ], [ 37.968750, 4.214943 ], [ 37.968750, 2.811371 ], [ 39.375000, 2.811371 ], [ 39.375000, 4.214943 ], [ 42.187500, 4.214943 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 15.284185 ], [ 40.781250, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 8.407168 ], [ 46.406250, 8.407168 ], [ 46.406250, 7.013668 ], [ 45.000000, 7.013668 ], [ 45.000000, 5.615986 ], [ 40.781250, 5.615986 ], [ 40.781250, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 5.615986 ], [ 33.750000, 5.615986 ], [ 33.750000, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 15.284185 ], [ 40.781250, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 13.923404 ], [ 42.187500, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 5.615986 ], [ 43.593750, 5.615986 ], [ 43.593750, 4.214943 ], [ 39.375000, 4.214943 ], [ 39.375000, 2.811371 ], [ 37.968750, 2.811371 ], [ 37.968750, 4.214943 ], [ 35.156250, 4.214943 ], [ 35.156250, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 13.923404 ], [ 42.187500, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 55.776573 ], [ 70.312500, 54.162434 ], [ 77.343750, 54.162434 ], [ 77.343750, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 51.618017 ], [ 82.968750, 51.618017 ], [ 82.968750, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 49.837982 ], [ 87.187500, 49.837982 ], [ 87.187500, 48.922499 ], [ 84.375000, 48.922499 ], [ 84.375000, 47.040182 ], [ 81.562500, 47.040182 ], [ 81.562500, 45.089036 ], [ 78.750000, 45.089036 ], [ 78.750000, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 43.068888 ], [ 70.312500, 43.068888 ], [ 70.312500, 42.032974 ], [ 68.906250, 42.032974 ], [ 68.906250, 40.979898 ], [ 67.500000, 40.979898 ], [ 67.500000, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 44.087585 ], [ 60.468750, 44.087585 ], [ 60.468750, 45.089036 ], [ 54.843750, 45.089036 ], [ 54.843750, 42.032974 ], [ 53.437500, 42.032974 ], [ 53.437500, 43.068888 ], [ 50.625000, 43.068888 ], [ 50.625000, 44.087585 ], [ 49.218750, 44.087585 ], [ 49.218750, 45.089036 ], [ 50.625000, 45.089036 ], [ 50.625000, 46.073231 ], [ 52.031250, 46.073231 ], [ 52.031250, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 52.482780 ], [ 52.031250, 52.482780 ], [ 52.031250, 51.618017 ], [ 53.437500, 51.618017 ], [ 53.437500, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 51.618017 ], [ 57.656250, 51.618017 ], [ 57.656250, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 54.162434 ], [ 63.281250, 54.162434 ], [ 63.281250, 54.977614 ], [ 68.906250, 54.977614 ], [ 68.906250, 55.776573 ], [ 70.312500, 55.776573 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 54.977614 ], [ 70.312500, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.330873 ], [ 75.937500, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 49.837982 ], [ 87.187500, 49.837982 ], [ 87.187500, 47.989922 ], [ 85.781250, 47.989922 ], [ 85.781250, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 81.562500, 44.087585 ], [ 81.562500, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.032974 ], [ 78.750000, 42.032974 ], [ 78.750000, 43.068888 ], [ 73.125000, 43.068888 ], [ 73.125000, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 40.979898 ], [ 66.093750, 40.979898 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 44.087585 ], [ 63.281250, 44.087585 ], [ 63.281250, 43.068888 ], [ 60.468750, 43.068888 ], [ 60.468750, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 40.979898 ], [ 54.843750, 40.979898 ], [ 54.843750, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 50.625000, 43.068888 ], [ 50.625000, 45.089036 ], [ 53.437500, 45.089036 ], [ 53.437500, 47.040182 ], [ 50.625000, 47.040182 ], [ 50.625000, 46.073231 ], [ 49.218750, 46.073231 ], [ 49.218750, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 49.837982 ], [ 49.218750, 49.837982 ], [ 49.218750, 50.736455 ], [ 50.625000, 50.736455 ], [ 50.625000, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 52.482780 ], [ 61.875000, 52.482780 ], [ 61.875000, 54.162434 ], [ 66.093750, 54.162434 ], [ 66.093750, 54.977614 ], [ 70.312500, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.468750, 45.089036 ], [ 60.468750, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 67.500000, 42.032974 ], [ 67.500000, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 37.718590 ], [ 66.093750, 37.718590 ], [ 66.093750, 38.822591 ], [ 63.281250, 38.822591 ], [ 63.281250, 39.909736 ], [ 61.875000, 39.909736 ], [ 61.875000, 42.032974 ], [ 59.062500, 42.032974 ], [ 59.062500, 43.068888 ], [ 57.656250, 43.068888 ], [ 57.656250, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 45.089036 ], [ 60.468750, 45.089036 ] ] ], [ [ [ 71.718750, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 42.032974 ], [ 71.718750, 42.032974 ], [ 71.718750, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 39.909736 ], [ 70.312500, 39.909736 ], [ 70.312500, 40.979898 ] ] ], [ [ [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 37.718590 ], [ 64.687500, 37.718590 ], [ 64.687500, 38.822591 ], [ 61.875000, 38.822591 ], [ 61.875000, 40.979898 ], [ 60.468750, 40.979898 ], [ 60.468750, 42.032974 ], [ 56.250000, 42.032974 ], [ 56.250000, 45.089036 ], [ 60.468750, 45.089036 ], [ 60.468750, 43.068888 ], [ 63.281250, 43.068888 ], [ 63.281250, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 40.979898 ], [ 68.906250, 40.979898 ] ] ], [ [ [ 67.500000, 37.718590 ], [ 68.906250, 37.718590 ], [ 68.906250, 36.597889 ], [ 67.500000, 36.597889 ], [ 67.500000, 37.718590 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 43.068888 ], [ 78.750000, 42.032974 ], [ 75.937500, 42.032974 ], [ 75.937500, 40.979898 ], [ 74.531250, 40.979898 ], [ 74.531250, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.979898 ], [ 71.718750, 40.979898 ], [ 71.718750, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 43.068888 ], [ 78.750000, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 73.125000, 39.909736 ], [ 73.125000, 38.822591 ], [ 70.312500, 38.822591 ], [ 70.312500, 39.909736 ], [ 73.125000, 39.909736 ] ] ], [ [ [ 78.750000, 40.979898 ], [ 77.343750, 40.979898 ], [ 77.343750, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 42.032974 ], [ 73.125000, 42.032974 ], [ 73.125000, 43.068888 ], [ 78.750000, 43.068888 ], [ 78.750000, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 42.187500, 40.979898 ], [ 42.187500, 42.032974 ], [ 45.000000, 42.032974 ], [ 45.000000, 39.909736 ] ] ], [ [ [ 45.000000, 39.909736 ], [ 46.406250, 39.909736 ], [ 46.406250, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 40.979898 ], [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.000000, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 42.032974 ], [ 47.812500, 40.979898 ], [ 49.218750, 40.979898 ], [ 49.218750, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 42.032974 ], [ 47.812500, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 39.909736 ], [ 45.000000, 40.979898 ], [ 50.625000, 40.979898 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 37.718590 ], [ 47.812500, 37.718590 ], [ 47.812500, 38.822591 ], [ 46.406250, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.909736 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 39.909736 ], [ 47.812500, 37.718590 ], [ 54.843750, 37.718590 ], [ 54.843750, 38.822591 ], [ 56.250000, 38.822591 ], [ 56.250000, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.218750, 29.535230 ], [ 49.218750, 30.751278 ], [ 47.812500, 30.751278 ], [ 47.812500, 31.952162 ], [ 46.406250, 31.952162 ], [ 46.406250, 33.137551 ], [ 45.000000, 33.137551 ], [ 45.000000, 36.597889 ], [ 43.593750, 36.597889 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.909736 ], [ 47.812500, 39.909736 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 37.718590 ], [ 50.625000, 37.718590 ], [ 50.625000, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 34.307144 ], [ 60.468750, 34.307144 ], [ 60.468750, 31.952162 ], [ 61.875000, 31.952162 ], [ 61.875000, 28.304381 ], [ 63.281250, 28.304381 ], [ 63.281250, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 24.527135 ], [ 59.062500, 24.527135 ], [ 59.062500, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 31.952162 ], [ 46.406250, 31.952162 ], [ 46.406250, 33.137551 ], [ 45.000000, 33.137551 ], [ 45.000000, 34.307144 ], [ 46.406250, 34.307144 ], [ 46.406250, 35.460670 ], [ 45.000000, 35.460670 ], [ 45.000000, 38.822591 ] ] ], [ [ [ 45.000000, 38.822591 ], [ 43.593750, 38.822591 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.751278 ], [ 47.812500, 29.535230 ], [ 46.406250, 29.535230 ], [ 46.406250, 30.751278 ], [ 47.812500, 30.751278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.304381 ], [ 49.218750, 28.304381 ], [ 49.218750, 27.059126 ], [ 50.625000, 27.059126 ], [ 50.625000, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 21.943046 ], [ 56.250000, 21.943046 ], [ 56.250000, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.311143 ], [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 16.636192 ], [ 45.000000, 16.636192 ], [ 45.000000, 17.978733 ], [ 43.593750, 17.978733 ], [ 43.593750, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.978733 ], [ 40.781250, 17.978733 ], [ 40.781250, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 21.943046 ], [ 37.968750, 21.943046 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 29.535230 ], [ 37.968750, 29.535230 ], [ 37.968750, 30.751278 ], [ 36.562500, 30.751278 ], [ 36.562500, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.304381 ], [ 49.218750, 28.304381 ], [ 49.218750, 25.799891 ], [ 50.625000, 25.799891 ], [ 50.625000, 23.241346 ], [ 54.843750, 23.241346 ], [ 54.843750, 20.632784 ], [ 53.437500, 20.632784 ], [ 53.437500, 19.311143 ], [ 47.812500, 19.311143 ], [ 47.812500, 17.978733 ], [ 40.781250, 17.978733 ], [ 40.781250, 20.632784 ], [ 37.968750, 20.632784 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 28.304381 ], [ 33.750000, 28.304381 ], [ 33.750000, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 25.799891 ], [ 52.031250, 24.527135 ], [ 50.625000, 24.527135 ], [ 50.625000, 25.799891 ], [ 52.031250, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.843750, 25.799891 ], [ 54.843750, 23.241346 ], [ 50.625000, 23.241346 ], [ 50.625000, 24.527135 ], [ 53.437500, 24.527135 ], [ 53.437500, 25.799891 ], [ 54.843750, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, 24.527135 ], [ 54.843750, 21.943046 ], [ 52.031250, 21.943046 ], [ 52.031250, 24.527135 ], [ 54.843750, 24.527135 ] ] ], [ [ [ 56.250000, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 24.527135 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 53.437500, 42.032974 ], [ 57.656250, 42.032974 ], [ 57.656250, 43.068888 ], [ 59.062500, 43.068888 ], [ 59.062500, 42.032974 ], [ 61.875000, 42.032974 ], [ 61.875000, 39.909736 ], [ 63.281250, 39.909736 ], [ 63.281250, 38.822591 ], [ 66.093750, 38.822591 ], [ 66.093750, 37.718590 ], [ 64.687500, 37.718590 ], [ 64.687500, 36.597889 ], [ 61.875000, 36.597889 ], [ 61.875000, 35.460670 ], [ 60.468750, 35.460670 ], [ 60.468750, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.718590 ], [ 56.250000, 37.718590 ], [ 56.250000, 38.822591 ], [ 54.843750, 38.822591 ], [ 54.843750, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 39.909736 ], [ 52.031250, 39.909736 ], [ 52.031250, 40.979898 ], [ 53.437500, 40.979898 ], [ 53.437500, 42.032974 ] ] ], [ [ [ 53.437500, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 53.437500, 43.068888 ], [ 53.437500, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.468750, 42.032974 ], [ 60.468750, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 38.822591 ], [ 64.687500, 38.822591 ], [ 64.687500, 37.718590 ], [ 66.093750, 37.718590 ], [ 66.093750, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 35.460670 ], [ 60.468750, 35.460670 ], [ 60.468750, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 40.979898 ], [ 52.031250, 40.979898 ], [ 52.031250, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 40.979898 ], [ 56.250000, 40.979898 ], [ 56.250000, 42.032974 ], [ 60.468750, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 19.311143 ], [ 50.625000, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 15.284185 ], [ 47.812500, 15.284185 ], [ 47.812500, 13.923404 ], [ 42.187500, 13.923404 ], [ 42.187500, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 19.311143 ], [ 50.625000, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 53.437500, 17.978733 ], [ 53.437500, 16.636192 ], [ 52.031250, 16.636192 ], [ 52.031250, 15.284185 ], [ 49.218750, 15.284185 ], [ 49.218750, 13.923404 ], [ 45.000000, 13.923404 ], [ 45.000000, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 15.284185 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 43.593750, 16.636192 ], [ 43.593750, 17.978733 ], [ 45.000000, 17.978733 ], [ 45.000000, 16.636192 ], [ 47.812500, 16.636192 ], [ 47.812500, 17.978733 ], [ 53.437500, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 27.059126 ], [ 56.250000, 25.799891 ], [ 56.250000, 24.527135 ], [ 57.656250, 24.527135 ], [ 57.656250, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 21.943046 ], [ 57.656250, 21.943046 ], [ 57.656250, 19.311143 ], [ 56.250000, 19.311143 ], [ 56.250000, 17.978733 ], [ 50.625000, 17.978733 ], [ 50.625000, 19.311143 ], [ 53.437500, 19.311143 ], [ 53.437500, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 25.799891 ], [ 54.843750, 27.059126 ], [ 56.250000, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 24.527135 ], [ 56.250000, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 20.632784 ], [ 57.656250, 20.632784 ], [ 57.656250, 17.978733 ], [ 54.843750, 17.978733 ], [ 54.843750, 16.636192 ], [ 53.437500, 16.636192 ], [ 53.437500, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 19.311143 ], [ 54.843750, 19.311143 ], [ 54.843750, 20.632784 ], [ 56.250000, 20.632784 ], [ 56.250000, 21.943046 ], [ 54.843750, 21.943046 ], [ 54.843750, 24.527135 ], [ 56.250000, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 11.178402 ], [ 47.812500, 8.407168 ], [ 43.593750, 8.407168 ], [ 43.593750, 9.795678 ], [ 42.187500, 9.795678 ], [ 42.187500, 11.178402 ], [ 47.812500, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.593750, 9.795678 ], [ 45.000000, 9.795678 ], [ 45.000000, 11.178402 ], [ 49.218750, 11.178402 ], [ 49.218750, 8.407168 ], [ 43.593750, 8.407168 ], [ 43.593750, 9.795678 ] ] ], [ [ [ 43.593750, 9.795678 ], [ 42.187500, 9.795678 ], [ 42.187500, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 9.795678 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 12.554564 ], [ 50.625000, 9.795678 ], [ 49.218750, 9.795678 ], [ 49.218750, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 2.811371 ], [ 45.000000, 2.811371 ], [ 45.000000, 1.406109 ], [ 42.187500, 1.406109 ], [ 42.187500, 0.000000 ], [ 40.781250, 0.000000 ], [ 40.781250, 5.615986 ], [ 45.000000, 5.615986 ], [ 45.000000, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 12.554564 ], [ 50.625000, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 11.178402 ], [ 50.625000, 7.013668 ], [ 49.218750, 7.013668 ], [ 49.218750, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 42.187500, 2.811371 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 49.218750, 8.407168 ], [ 49.218750, 11.178402 ], [ 50.625000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.125000, 39.909736 ], [ 73.125000, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.822591 ], [ 68.906250, 38.822591 ], [ 68.906250, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 39.909736 ], [ 73.125000, 39.909736 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 40.979898 ], [ 70.312500, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.125000, 37.718590 ], [ 73.125000, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.979898 ], [ 70.312500, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 38.822591 ], [ 70.312500, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 36.597889 ], [ 70.312500, 36.597889 ], [ 70.312500, 33.137551 ], [ 68.906250, 33.137551 ], [ 68.906250, 31.952162 ], [ 66.093750, 31.952162 ], [ 66.093750, 29.535230 ], [ 60.468750, 29.535230 ], [ 60.468750, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 37.718590 ], [ 68.906250, 37.718590 ], [ 68.906250, 38.822591 ], [ 70.312500, 38.822591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.718750, 37.718590 ], [ 71.718750, 36.597889 ], [ 71.718750, 34.307144 ], [ 70.312500, 34.307144 ], [ 70.312500, 31.952162 ], [ 67.500000, 31.952162 ], [ 67.500000, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.875000, 29.535230 ], [ 61.875000, 31.952162 ], [ 60.468750, 31.952162 ], [ 60.468750, 34.307144 ], [ 61.875000, 34.307144 ], [ 61.875000, 35.460670 ], [ 64.687500, 35.460670 ], [ 64.687500, 36.597889 ], [ 66.093750, 36.597889 ], [ 66.093750, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 36.597889 ], [ 68.906250, 36.597889 ], [ 68.906250, 37.718590 ], [ 71.718750, 37.718590 ] ] ], [ [ [ 74.531250, 36.597889 ], [ 73.125000, 36.597889 ], [ 73.125000, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.531250, 37.718590 ], [ 74.531250, 36.597889 ], [ 77.343750, 36.597889 ], [ 77.343750, 35.460670 ], [ 73.125000, 35.460670 ], [ 73.125000, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 31.952162 ], [ 73.125000, 31.952162 ], [ 73.125000, 29.535230 ], [ 71.718750, 29.535230 ], [ 71.718750, 28.304381 ], [ 70.312500, 28.304381 ], [ 70.312500, 27.059126 ], [ 68.906250, 27.059126 ], [ 68.906250, 25.799891 ], [ 70.312500, 25.799891 ], [ 70.312500, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 28.304381 ], [ 60.468750, 28.304381 ], [ 60.468750, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 31.952162 ], [ 68.906250, 31.952162 ], [ 68.906250, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 74.531250, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.937500, 36.597889 ], [ 75.937500, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 34.307144 ], [ 73.125000, 34.307144 ], [ 73.125000, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 28.304381 ], [ 70.312500, 28.304381 ], [ 70.312500, 24.527135 ], [ 68.906250, 24.527135 ], [ 68.906250, 23.241346 ], [ 67.500000, 23.241346 ], [ 67.500000, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.799891 ], [ 63.281250, 25.799891 ], [ 63.281250, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 67.500000, 30.751278 ], [ 67.500000, 31.952162 ], [ 70.312500, 31.952162 ], [ 70.312500, 34.307144 ], [ 71.718750, 34.307144 ], [ 71.718750, 36.597889 ], [ 75.937500, 36.597889 ] ] ], [ [ [ 63.281250, 25.799891 ], [ 63.281250, 24.527135 ], [ 61.875000, 24.527135 ], [ 61.875000, 25.799891 ], [ 63.281250, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 84.375000, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 30.751278 ], [ 81.562500, 30.751278 ], [ 81.562500, 29.535230 ], [ 84.375000, 29.535230 ], [ 84.375000, 28.304381 ] ] ], [ [ [ 84.375000, 28.304381 ], [ 87.187500, 28.304381 ], [ 87.187500, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 28.304381 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 84.375000, 29.535230 ], [ 84.375000, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 25.799891 ], [ 85.781250, 25.799891 ], [ 85.781250, 27.059126 ], [ 81.562500, 27.059126 ], [ 81.562500, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 29.535230 ], [ 84.375000, 29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.750000, 35.460670 ], [ 78.750000, 33.137551 ], [ 77.343750, 33.137551 ], [ 77.343750, 31.952162 ], [ 78.750000, 31.952162 ], [ 78.750000, 30.751278 ], [ 80.156250, 30.751278 ], [ 80.156250, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 27.059126 ], [ 87.187500, 27.059126 ], [ 87.187500, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 21.943046 ], [ 85.781250, 21.943046 ], [ 85.781250, 20.632784 ], [ 84.375000, 20.632784 ], [ 84.375000, 19.311143 ], [ 82.968750, 19.311143 ], [ 82.968750, 17.978733 ], [ 81.562500, 17.978733 ], [ 81.562500, 16.636192 ], [ 80.156250, 16.636192 ], [ 80.156250, 15.284185 ], [ 78.750000, 15.284185 ], [ 78.750000, 13.923404 ], [ 80.156250, 13.923404 ], [ 80.156250, 12.554564 ], [ 78.750000, 12.554564 ], [ 78.750000, 9.795678 ], [ 77.343750, 9.795678 ], [ 77.343750, 8.407168 ], [ 75.937500, 8.407168 ], [ 75.937500, 11.178402 ], [ 74.531250, 11.178402 ], [ 74.531250, 15.284185 ], [ 73.125000, 15.284185 ], [ 73.125000, 16.636192 ], [ 71.718750, 16.636192 ], [ 71.718750, 21.943046 ], [ 68.906250, 21.943046 ], [ 68.906250, 23.241346 ], [ 67.500000, 23.241346 ], [ 67.500000, 24.527135 ], [ 70.312500, 24.527135 ], [ 70.312500, 25.799891 ], [ 68.906250, 25.799891 ], [ 68.906250, 27.059126 ], [ 70.312500, 27.059126 ], [ 70.312500, 28.304381 ], [ 71.718750, 28.304381 ], [ 71.718750, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 33.137551 ], [ 73.125000, 33.137551 ], [ 73.125000, 35.460670 ], [ 78.750000, 35.460670 ] ] ], [ [ [ 88.593750, 27.059126 ], [ 91.406250, 27.059126 ], [ 91.406250, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 29.535230 ], [ 95.625000, 29.535230 ], [ 95.625000, 27.059126 ], [ 94.218750, 27.059126 ], [ 94.218750, 24.527135 ], [ 92.812500, 24.527135 ], [ 92.812500, 23.241346 ], [ 90.000000, 23.241346 ], [ 90.000000, 24.527135 ], [ 91.406250, 24.527135 ], [ 91.406250, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 27.059126 ] ] ], [ [ [ 88.593750, 27.059126 ], [ 87.187500, 27.059126 ], [ 87.187500, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.750000, 34.307144 ], [ 78.750000, 30.751278 ], [ 81.562500, 30.751278 ], [ 81.562500, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 28.304381 ], [ 81.562500, 28.304381 ], [ 81.562500, 27.059126 ], [ 85.781250, 27.059126 ], [ 85.781250, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 21.943046 ], [ 87.187500, 21.943046 ], [ 87.187500, 19.311143 ], [ 84.375000, 19.311143 ], [ 84.375000, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 15.284185 ], [ 80.156250, 15.284185 ], [ 80.156250, 9.795678 ], [ 78.750000, 9.795678 ], [ 78.750000, 8.407168 ], [ 75.937500, 8.407168 ], [ 75.937500, 11.178402 ], [ 74.531250, 11.178402 ], [ 74.531250, 15.284185 ], [ 73.125000, 15.284185 ], [ 73.125000, 20.632784 ], [ 68.906250, 20.632784 ], [ 68.906250, 24.527135 ], [ 70.312500, 24.527135 ], [ 70.312500, 28.304381 ], [ 73.125000, 28.304381 ], [ 73.125000, 29.535230 ], [ 74.531250, 29.535230 ], [ 74.531250, 33.137551 ], [ 73.125000, 33.137551 ], [ 73.125000, 34.307144 ], [ 78.750000, 34.307144 ] ] ], [ [ [ 95.625000, 29.535230 ], [ 95.625000, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.059126 ], [ 95.625000, 27.059126 ], [ 95.625000, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 24.527135 ], [ 90.000000, 24.527135 ], [ 90.000000, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 27.059126 ], [ 91.406250, 27.059126 ], [ 91.406250, 28.304381 ], [ 94.218750, 28.304381 ], [ 94.218750, 29.535230 ], [ 95.625000, 29.535230 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.156250, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 7.013668 ], [ 78.750000, 7.013668 ], [ 78.750000, 9.795678 ], [ 80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 8.407168 ], [ 81.562500, 5.615986 ], [ 80.156250, 5.615986 ], [ 80.156250, 8.407168 ], [ 81.562500, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.843750, 52.482780 ], [ 99.843750, 51.618017 ], [ 101.250000, 51.618017 ], [ 101.250000, 50.736455 ], [ 106.875000, 50.736455 ], [ 106.875000, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 47.989922 ], [ 119.531250, 47.989922 ], [ 119.531250, 47.040182 ], [ 116.718750, 47.040182 ], [ 116.718750, 46.073231 ], [ 113.906250, 46.073231 ], [ 113.906250, 45.089036 ], [ 111.093750, 45.089036 ], [ 111.093750, 43.068888 ], [ 105.468750, 43.068888 ], [ 105.468750, 42.032974 ], [ 101.250000, 42.032974 ], [ 101.250000, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 44.087585 ], [ 94.218750, 44.087585 ], [ 94.218750, 45.089036 ], [ 91.406250, 45.089036 ], [ 91.406250, 46.073231 ], [ 90.000000, 46.073231 ], [ 90.000000, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.837982 ], [ 90.000000, 49.837982 ], [ 90.000000, 50.736455 ], [ 95.625000, 50.736455 ], [ 95.625000, 49.837982 ], [ 97.031250, 49.837982 ], [ 97.031250, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 52.482780 ], [ 99.843750, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.656250, 51.618017 ], [ 102.656250, 49.837982 ], [ 108.281250, 49.837982 ], [ 108.281250, 48.922499 ], [ 112.500000, 48.922499 ], [ 112.500000, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 47.989922 ], [ 119.531250, 47.989922 ], [ 119.531250, 47.040182 ], [ 116.718750, 47.040182 ], [ 116.718750, 46.073231 ], [ 115.312500, 46.073231 ], [ 115.312500, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 42.032974 ], [ 97.031250, 42.032974 ], [ 97.031250, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 44.087585 ], [ 92.812500, 44.087585 ], [ 92.812500, 45.089036 ], [ 90.000000, 45.089036 ], [ 90.000000, 46.073231 ], [ 91.406250, 46.073231 ], [ 91.406250, 47.040182 ], [ 90.000000, 47.040182 ], [ 90.000000, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 49.837982 ], [ 91.406250, 49.837982 ], [ 91.406250, 50.736455 ], [ 94.218750, 50.736455 ], [ 94.218750, 49.837982 ], [ 98.437500, 49.837982 ], [ 98.437500, 51.618017 ], [ 102.656250, 51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.059126 ], [ 90.000000, 27.059126 ], [ 90.000000, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.593750, 27.059126 ], [ 88.593750, 25.799891 ], [ 91.406250, 25.799891 ], [ 91.406250, 24.527135 ], [ 90.000000, 24.527135 ], [ 90.000000, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 23.241346 ], [ 87.187500, 23.241346 ], [ 87.187500, 27.059126 ], [ 88.593750, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 23.241346 ], [ 90.000000, 23.241346 ], [ 90.000000, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 25.799891 ], [ 90.000000, 25.799891 ], [ 90.000000, 24.527135 ], [ 91.406250, 24.527135 ], [ 91.406250, 23.241346 ] ] ], [ [ [ 91.406250, 23.241346 ], [ 92.812500, 23.241346 ], [ 92.812500, 20.632784 ], [ 91.406250, 20.632784 ], [ 91.406250, 23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.343750, 54.162434 ], [ 122.343750, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.482780 ], [ 126.562500, 52.482780 ], [ 126.562500, 49.837982 ], [ 129.375000, 49.837982 ], [ 129.375000, 47.989922 ], [ 132.187500, 47.989922 ], [ 132.187500, 48.922499 ], [ 135.000000, 48.922499 ], [ 135.000000, 47.989922 ], [ 133.593750, 47.989922 ], [ 133.593750, 46.073231 ], [ 130.781250, 46.073231 ], [ 130.781250, 43.068888 ], [ 129.375000, 43.068888 ], [ 129.375000, 42.032974 ], [ 125.156250, 42.032974 ], [ 125.156250, 40.979898 ], [ 123.750000, 40.979898 ], [ 123.750000, 39.909736 ], [ 120.937500, 39.909736 ], [ 120.937500, 40.979898 ], [ 119.531250, 40.979898 ], [ 119.531250, 39.909736 ], [ 116.718750, 39.909736 ], [ 116.718750, 38.822591 ], [ 118.125000, 38.822591 ], [ 118.125000, 37.718590 ], [ 120.937500, 37.718590 ], [ 120.937500, 36.597889 ], [ 119.531250, 36.597889 ], [ 119.531250, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 27.059126 ], [ 119.531250, 27.059126 ], [ 119.531250, 25.799891 ], [ 118.125000, 25.799891 ], [ 118.125000, 24.527135 ], [ 116.718750, 24.527135 ], [ 116.718750, 23.241346 ], [ 112.500000, 23.241346 ], [ 112.500000, 21.943046 ], [ 109.687500, 21.943046 ], [ 109.687500, 20.632784 ], [ 109.687500, 19.311143 ], [ 108.281250, 19.311143 ], [ 108.281250, 20.632784 ], [ 108.281250, 21.943046 ], [ 105.468750, 21.943046 ], [ 105.468750, 23.241346 ], [ 101.250000, 23.241346 ], [ 101.250000, 21.943046 ], [ 98.437500, 21.943046 ], [ 98.437500, 24.527135 ], [ 97.031250, 24.527135 ], [ 97.031250, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 28.304381 ], [ 95.625000, 28.304381 ], [ 95.625000, 29.535230 ], [ 92.812500, 29.535230 ], [ 92.812500, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 29.535230 ], [ 81.562500, 29.535230 ], [ 81.562500, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 31.952162 ], [ 77.343750, 31.952162 ], [ 77.343750, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 38.822591 ], [ 73.125000, 38.822591 ], [ 73.125000, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.979898 ], [ 75.937500, 40.979898 ], [ 75.937500, 42.032974 ], [ 78.750000, 42.032974 ], [ 78.750000, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 44.087585 ], [ 78.750000, 44.087585 ], [ 78.750000, 45.089036 ], [ 81.562500, 45.089036 ], [ 81.562500, 47.040182 ], [ 84.375000, 47.040182 ], [ 84.375000, 48.922499 ], [ 88.593750, 48.922499 ], [ 88.593750, 47.989922 ], [ 90.000000, 47.989922 ], [ 90.000000, 46.073231 ], [ 91.406250, 46.073231 ], [ 91.406250, 45.089036 ], [ 94.218750, 45.089036 ], [ 94.218750, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 43.068888 ], [ 101.250000, 43.068888 ], [ 101.250000, 42.032974 ], [ 105.468750, 42.032974 ], [ 105.468750, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 49.837982 ], [ 118.125000, 49.837982 ], [ 118.125000, 51.618017 ], [ 119.531250, 51.618017 ], [ 119.531250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 54.162434 ], [ 122.343750, 54.162434 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.687500, 19.311143 ], [ 109.687500, 17.978733 ], [ 108.281250, 17.978733 ], [ 108.281250, 19.311143 ], [ 109.687500, 19.311143 ] ] ], [ [ [ 125.156250, 52.482780 ], [ 126.562500, 52.482780 ], [ 126.562500, 50.736455 ], [ 127.968750, 50.736455 ], [ 127.968750, 49.837982 ], [ 129.375000, 49.837982 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 47.040182 ], [ 133.593750, 47.040182 ], [ 133.593750, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 40.979898 ], [ 125.156250, 40.979898 ], [ 125.156250, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 38.822591 ], [ 120.937500, 38.822591 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 38.822591 ], [ 118.125000, 38.822591 ], [ 118.125000, 37.718590 ], [ 119.531250, 37.718590 ], [ 119.531250, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 31.952162 ], [ 122.343750, 31.952162 ], [ 122.343750, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 25.799891 ], [ 119.531250, 25.799891 ], [ 119.531250, 24.527135 ], [ 118.125000, 24.527135 ], [ 118.125000, 23.241346 ], [ 115.312500, 23.241346 ], [ 115.312500, 21.943046 ], [ 111.093750, 21.943046 ], [ 111.093750, 20.632784 ], [ 111.093750, 19.311143 ], [ 109.687500, 19.311143 ], [ 109.687500, 20.632784 ], [ 109.687500, 21.943046 ], [ 106.875000, 21.943046 ], [ 106.875000, 23.241346 ], [ 102.656250, 23.241346 ], [ 102.656250, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 28.304381 ], [ 95.625000, 28.304381 ], [ 95.625000, 29.535230 ], [ 94.218750, 29.535230 ], [ 94.218750, 28.304381 ], [ 90.000000, 28.304381 ], [ 90.000000, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 29.535230 ], [ 81.562500, 29.535230 ], [ 81.562500, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 34.307144 ], [ 77.343750, 34.307144 ], [ 77.343750, 35.460670 ], [ 75.937500, 35.460670 ], [ 75.937500, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 38.822591 ], [ 73.125000, 38.822591 ], [ 73.125000, 39.909736 ], [ 77.343750, 39.909736 ], [ 77.343750, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 42.032974 ], [ 80.156250, 42.032974 ], [ 80.156250, 43.068888 ], [ 81.562500, 43.068888 ], [ 81.562500, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.968750, 45.089036 ], [ 82.968750, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 47.989922 ], [ 87.187500, 47.989922 ], [ 87.187500, 48.922499 ], [ 88.593750, 48.922499 ], [ 88.593750, 47.989922 ], [ 90.000000, 47.989922 ], [ 90.000000, 47.040182 ], [ 91.406250, 47.040182 ], [ 91.406250, 46.073231 ], [ 90.000000, 46.073231 ], [ 90.000000, 45.089036 ], [ 92.812500, 45.089036 ], [ 92.812500, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 43.068888 ], [ 97.031250, 43.068888 ], [ 97.031250, 42.032974 ], [ 111.093750, 42.032974 ], [ 111.093750, 43.068888 ], [ 112.500000, 43.068888 ], [ 112.500000, 45.089036 ], [ 115.312500, 45.089036 ], [ 115.312500, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.989922 ], [ 116.718750, 47.989922 ], [ 116.718750, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.482780 ] ] ], [ [ [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.437500, 28.304381 ], [ 98.437500, 25.799891 ], [ 97.031250, 25.799891 ], [ 97.031250, 24.527135 ], [ 98.437500, 24.527135 ], [ 98.437500, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 20.632784 ], [ 97.031250, 20.632784 ], [ 97.031250, 17.978733 ], [ 98.437500, 17.978733 ], [ 98.437500, 15.284185 ], [ 97.031250, 15.284185 ], [ 97.031250, 16.636192 ], [ 94.218750, 16.636192 ], [ 94.218750, 19.311143 ], [ 92.812500, 19.311143 ], [ 92.812500, 20.632784 ], [ 91.406250, 20.632784 ], [ 91.406250, 23.241346 ], [ 92.812500, 23.241346 ], [ 92.812500, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 27.059126 ], [ 95.625000, 27.059126 ], [ 95.625000, 28.304381 ], [ 98.437500, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 99.843750, 13.923404 ], [ 99.843750, 11.178402 ], [ 98.437500, 11.178402 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 21.943046 ], [ 101.250000, 21.943046 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 15.284185 ], [ 94.218750, 15.284185 ], [ 94.218750, 19.311143 ], [ 92.812500, 19.311143 ], [ 92.812500, 23.241346 ], [ 94.218750, 23.241346 ], [ 94.218750, 24.527135 ], [ 95.625000, 24.527135 ], [ 95.625000, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 98.437500, 28.304381 ], [ 98.437500, 23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 15.284185 ], [ 105.468750, 13.923404 ], [ 104.062500, 13.923404 ], [ 104.062500, 15.284185 ], [ 105.468750, 15.284185 ] ] ], [ [ [ 104.062500, 17.978733 ], [ 99.843750, 17.978733 ], [ 99.843750, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 21.943046 ], [ 104.062500, 21.943046 ], [ 104.062500, 17.978733 ] ] ], [ [ [ 105.468750, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.284185 ], [ 105.468750, 15.284185 ], [ 105.468750, 16.636192 ] ] ], [ [ [ 104.062500, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 16.636192 ], [ 104.062500, 16.636192 ], [ 104.062500, 17.978733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 16.636192 ], [ 104.062500, 16.636192 ], [ 104.062500, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 20.632784 ], [ 104.062500, 20.632784 ], [ 104.062500, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 16.636192 ] ] ], [ [ [ 105.468750, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 9.795678 ], [ 99.843750, 9.795678 ], [ 99.843750, 7.013668 ], [ 98.437500, 7.013668 ], [ 98.437500, 8.407168 ], [ 97.031250, 8.407168 ], [ 97.031250, 9.795678 ], [ 98.437500, 9.795678 ] ] ], [ [ [ 101.250000, 19.311143 ], [ 99.843750, 19.311143 ], [ 99.843750, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 15.284185 ], [ 102.656250, 15.284185 ], [ 102.656250, 13.923404 ], [ 99.843750, 13.923404 ], [ 99.843750, 11.178402 ], [ 98.437500, 11.178402 ], [ 98.437500, 13.923404 ], [ 97.031250, 13.923404 ], [ 97.031250, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 19.311143 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.843750, 7.013668 ], [ 98.437500, 7.013668 ], [ 98.437500, 11.178402 ], [ 99.843750, 11.178402 ], [ 99.843750, 7.013668 ] ] ], [ [ [ 101.250000, 20.632784 ], [ 101.250000, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.923404 ], [ 99.843750, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 19.311143 ], [ 99.843750, 19.311143 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ] ] ], [ [ [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ], [ 101.250000, 5.615986 ], [ 99.843750, 5.615986 ], [ 99.843750, 7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.875000, 15.284185 ], [ 108.281250, 15.284185 ], [ 108.281250, 11.178402 ], [ 106.875000, 11.178402 ], [ 106.875000, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 15.284185 ] ] ], [ [ [ 105.468750, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 21.943046 ], [ 101.250000, 21.943046 ], [ 101.250000, 23.241346 ], [ 105.468750, 23.241346 ], [ 105.468750, 17.978733 ] ] ], [ [ [ 105.468750, 17.978733 ], [ 106.875000, 17.978733 ], [ 106.875000, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 17.978733 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.281250, 13.923404 ], [ 109.687500, 13.923404 ], [ 109.687500, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 9.795678 ], [ 106.875000, 9.795678 ], [ 106.875000, 8.407168 ], [ 105.468750, 8.407168 ], [ 105.468750, 11.178402 ], [ 106.875000, 11.178402 ], [ 106.875000, 12.554564 ], [ 108.281250, 12.554564 ], [ 108.281250, 13.923404 ] ] ], [ [ [ 106.875000, 21.943046 ], [ 108.281250, 21.943046 ], [ 108.281250, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 19.311143 ], [ 105.468750, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 20.632784 ], [ 102.656250, 20.632784 ], [ 102.656250, 23.241346 ], [ 106.875000, 23.241346 ], [ 106.875000, 21.943046 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 108.281250, 16.636192 ], [ 108.281250, 13.923404 ], [ 106.875000, 13.923404 ], [ 106.875000, 16.636192 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 105.468750, 16.636192 ], [ 105.468750, 17.978733 ], [ 106.875000, 17.978733 ], [ 106.875000, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875000, 15.284185 ], [ 106.875000, 12.554564 ], [ 105.468750, 12.554564 ], [ 105.468750, 11.178402 ], [ 101.250000, 11.178402 ], [ 101.250000, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 15.284185 ], [ 104.062500, 15.284185 ], [ 104.062500, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.284185 ], [ 106.875000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.281250, 13.923404 ], [ 108.281250, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 108.281250, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.250000, 7.013668 ], [ 101.250000, 5.615986 ], [ 102.656250, 5.615986 ], [ 102.656250, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 101.250000, 1.406109 ], [ 101.250000, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ] ] ], [ [ [ 113.906250, 4.214943 ], [ 113.906250, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 2.811371 ], [ 111.093750, 2.811371 ], [ 111.093750, 4.214943 ], [ 113.906250, 4.214943 ] ] ], [ [ [ 111.093750, 2.811371 ], [ 111.093750, 1.406109 ], [ 108.281250, 1.406109 ], [ 108.281250, 2.811371 ], [ 111.093750, 2.811371 ] ] ], [ [ [ 118.125000, 7.013668 ], [ 118.125000, 4.214943 ], [ 116.718750, 4.214943 ], [ 116.718750, 5.615986 ], [ 115.312500, 5.615986 ], [ 115.312500, 7.013668 ], [ 118.125000, 7.013668 ] ] ], [ [ [ 115.312500, 4.214943 ], [ 113.906250, 4.214943 ], [ 113.906250, 5.615986 ], [ 115.312500, 5.615986 ], [ 115.312500, 4.214943 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.656250, 5.615986 ], [ 102.656250, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 101.250000, 1.406109 ], [ 101.250000, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 5.615986 ], [ 102.656250, 5.615986 ] ] ], [ [ [ 115.312500, 4.214943 ], [ 115.312500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.906250, 2.811371 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.718750, 5.615986 ], [ 116.718750, 7.013668 ], [ 118.125000, 7.013668 ], [ 118.125000, 4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 25.799891 ], [ 120.937500, 23.241346 ], [ 119.531250, 23.241346 ], [ 119.531250, 25.799891 ], [ 120.937500, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 119.531250, 21.943046 ], [ 119.531250, 23.241346 ], [ 120.937500, 23.241346 ] ] ], [ [ [ 122.343750, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 24.527135 ], [ 122.343750, 24.527135 ], [ 122.343750, 23.241346 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 42.032974 ], [ 129.375000, 40.979898 ], [ 127.968750, 40.979898 ], [ 127.968750, 39.909736 ], [ 126.562500, 39.909736 ], [ 126.562500, 38.822591 ], [ 123.750000, 38.822591 ], [ 123.750000, 40.979898 ], [ 125.156250, 40.979898 ], [ 125.156250, 42.032974 ], [ 129.375000, 42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 42.032974 ], [ 129.375000, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 40.979898 ], [ 127.968750, 40.979898 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.968750, 38.822591 ], [ 127.968750, 37.718590 ], [ 129.375000, 37.718590 ], [ 129.375000, 35.460670 ], [ 125.156250, 35.460670 ], [ 125.156250, 38.822591 ], [ 127.968750, 38.822591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.375000, 37.718590 ], [ 129.375000, 35.460670 ], [ 127.968750, 35.460670 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 37.718590 ], [ 129.375000, 37.718590 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.156250, 9.795678 ], [ 125.156250, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 8.407168 ], [ 123.750000, 9.795678 ], [ 125.156250, 9.795678 ] ] ], [ [ [ 122.343750, 8.407168 ], [ 122.343750, 7.013668 ], [ 120.937500, 7.013668 ], [ 120.937500, 8.407168 ], [ 122.343750, 8.407168 ] ] ], [ [ [ 118.125000, 9.795678 ], [ 118.125000, 8.407168 ], [ 116.718750, 8.407168 ], [ 116.718750, 9.795678 ], [ 118.125000, 9.795678 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 119.531250, 12.554564 ], [ 119.531250, 13.923404 ], [ 119.531250, 19.311143 ], [ 120.937500, 19.311143 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 16.636192 ], [ 120.937500, 16.636192 ], [ 120.937500, 15.284185 ], [ 122.343750, 15.284185 ], [ 122.343750, 13.923404 ] ] ], [ [ [ 120.937500, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 11.178402 ], [ 120.937500, 11.178402 ], [ 120.937500, 12.554564 ] ] ], [ [ [ 123.750000, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 12.554564 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 13.923404 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.750000, 11.178402 ], [ 123.750000, 8.407168 ], [ 125.156250, 8.407168 ], [ 125.156250, 9.795678 ], [ 126.562500, 9.795678 ], [ 126.562500, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 8.407168 ], [ 122.343750, 11.178402 ], [ 123.750000, 11.178402 ] ] ], [ [ [ 120.937500, 13.923404 ], [ 119.531250, 13.923404 ], [ 119.531250, 16.636192 ], [ 120.937500, 16.636192 ], [ 120.937500, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.284185 ], [ 120.937500, 15.284185 ], [ 120.937500, 13.923404 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 122.343750, 12.554564 ], [ 122.343750, 13.923404 ] ] ], [ [ [ 123.750000, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 34.307144 ], [ 130.781250, 31.952162 ], [ 129.375000, 31.952162 ], [ 129.375000, 34.307144 ], [ 130.781250, 34.307144 ] ] ], [ [ [ 143.437500, 45.089036 ], [ 143.437500, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.032974 ], [ 140.625000, 42.032974 ], [ 140.625000, 35.460670 ], [ 136.406250, 35.460670 ], [ 136.406250, 34.307144 ], [ 135.000000, 34.307144 ], [ 135.000000, 35.460670 ], [ 133.593750, 35.460670 ], [ 133.593750, 36.597889 ], [ 136.406250, 36.597889 ], [ 136.406250, 37.718590 ], [ 137.812500, 37.718590 ], [ 137.812500, 38.822591 ], [ 139.218750, 38.822591 ], [ 139.218750, 42.032974 ], [ 139.218750, 44.087585 ], [ 140.625000, 44.087585 ], [ 140.625000, 45.089036 ], [ 143.437500, 45.089036 ] ] ], [ [ [ 132.187500, 34.307144 ], [ 130.781250, 34.307144 ], [ 130.781250, 35.460670 ], [ 132.187500, 35.460670 ], [ 132.187500, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 31.952162 ], [ 129.375000, 31.952162 ], [ 129.375000, 33.137551 ], [ 130.781250, 33.137551 ] ] ], [ [ [ 133.593750, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 35.460670 ], [ 135.000000, 35.460670 ], [ 135.000000, 36.597889 ], [ 139.218750, 36.597889 ], [ 139.218750, 38.822591 ], [ 140.625000, 38.822591 ], [ 140.625000, 39.909736 ], [ 139.218750, 39.909736 ], [ 139.218750, 40.979898 ], [ 142.031250, 40.979898 ], [ 142.031250, 37.718590 ], [ 140.625000, 37.718590 ], [ 140.625000, 34.307144 ], [ 137.812500, 34.307144 ], [ 137.812500, 33.137551 ], [ 135.000000, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 34.307144 ] ] ], [ [ [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.032974 ], [ 139.218750, 42.032974 ], [ 139.218750, 43.068888 ], [ 142.031250, 43.068888 ], [ 142.031250, 44.087585 ], [ 144.843750, 44.087585 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -16.636192 ], [ 178.593750, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -16.636192 ], [ 178.593750, -16.636192 ] ] ], [ [ [ -181.406250, -16.636192 ], [ -181.406250, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -16.636192 ], [ -181.406250, -16.636192 ] ] ], [ [ [ 180.000000, -15.284185 ], [ 180.000000, -16.636192 ], [ 178.593750, -16.636192 ], [ 178.593750, -15.284185 ], [ 180.000000, -15.284185 ] ] ], [ [ [ -180.000000, -15.284185 ], [ -180.000000, -16.636192 ], [ -181.406250, -16.636192 ], [ -181.406250, -15.284185 ], [ -180.000000, -15.284185 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -4.214943 ], [ 9.843750, -4.214943 ], [ 9.843750, -2.811371 ], [ 8.437500, -2.811371 ], [ 8.437500, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -1.406109 ], [ 11.250000, -1.406109 ], [ 11.250000, -2.811371 ], [ 8.437500, -2.811371 ], [ 8.437500, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.062500, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -2.811371 ], [ 15.468750, -2.811371 ], [ 15.468750, -5.615986 ], [ 14.062500, -5.615986 ], [ 14.062500, -4.214943 ], [ 12.656250, -4.214943 ], [ 12.656250, -5.615986 ], [ 11.250000, -5.615986 ], [ 11.250000, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, 1.406109 ] ] ], [ [ [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.811371 ], [ 14.062500, 2.811371 ], [ 14.062500, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 4.214943 ], [ 18.281250, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 0.000000 ], [ 15.468750, 0.000000 ], [ 15.468750, -4.214943 ], [ 9.843750, -4.214943 ], [ 9.843750, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 0.000000 ], [ 12.656250, 0.000000 ], [ 12.656250, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 4.214943 ], [ 18.281250, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, -12.554564 ], [ 25.312500, -12.554564 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -8.407168 ], [ 21.093750, -8.407168 ], [ 21.093750, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -5.615986 ], [ 15.468750, -5.615986 ], [ 15.468750, -2.811371 ], [ 16.875000, -2.811371 ], [ 16.875000, -1.406109 ], [ 18.281250, -1.406109 ], [ 18.281250, 4.214943 ], [ 25.312500, 4.214943 ], [ 25.312500, 5.615986 ], [ 26.718750, 5.615986 ], [ 26.718750, 4.214943 ], [ 29.531250, 4.214943 ], [ 29.531250, 2.811371 ], [ 30.937500, 2.811371 ], [ 30.937500, 1.406109 ], [ 29.531250, 1.406109 ], [ 29.531250, -8.407168 ], [ 28.125000, -8.407168 ], [ 28.125000, -12.554564 ] ] ], [ [ [ 14.062500, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -5.615986 ] ] ], [ [ [ 28.125000, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -13.923404 ], [ 28.125000, -13.923404 ], [ 28.125000, -12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -9.795678 ], [ 21.093750, -9.795678 ], [ 21.093750, -7.013668 ], [ 15.468750, -7.013668 ], [ 15.468750, -5.615986 ], [ 11.250000, -5.615986 ], [ 11.250000, -4.214943 ], [ 15.468750, -4.214943 ], [ 15.468750, 0.000000 ], [ 16.875000, 0.000000 ], [ 16.875000, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 5.615986 ], [ 21.093750, 5.615986 ], [ 21.093750, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 5.615986 ], [ 29.531250, 5.615986 ], [ 29.531250, -1.406109 ], [ 28.125000, -1.406109 ], [ 28.125000, -5.615986 ], [ 29.531250, -5.615986 ], [ 29.531250, -8.407168 ], [ 28.125000, -8.407168 ], [ 28.125000, -11.178402 ] ] ], [ [ [ 28.125000, -11.178402 ], [ 29.531250, -11.178402 ], [ 29.531250, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -11.178402 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, -5.615986 ], [ 16.875000, -8.407168 ], [ 19.687500, -8.407168 ], [ 19.687500, -7.013668 ], [ 21.093750, -7.013668 ], [ 21.093750, -8.407168 ], [ 22.500000, -8.407168 ], [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -12.554564 ], [ 22.500000, -12.554564 ], [ 22.500000, -17.978733 ], [ 14.062500, -17.978733 ], [ 14.062500, -16.636192 ], [ 11.250000, -16.636192 ], [ 11.250000, -15.284185 ], [ 12.656250, -15.284185 ], [ 12.656250, -12.554564 ], [ 14.062500, -12.554564 ], [ 14.062500, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -5.615986 ], [ 16.875000, -5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, -5.615986 ], [ 15.468750, -7.013668 ], [ 21.093750, -7.013668 ], [ 21.093750, -9.795678 ], [ 23.906250, -9.795678 ], [ 23.906250, -12.554564 ], [ 21.093750, -12.554564 ], [ 21.093750, -16.636192 ], [ 11.250000, -16.636192 ], [ 11.250000, -12.554564 ], [ 12.656250, -12.554564 ], [ 12.656250, -5.615986 ], [ 15.468750, -5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, -16.636192 ], [ 14.062500, -17.978733 ], [ 21.093750, -17.978733 ], [ 21.093750, -21.943046 ], [ 19.687500, -21.943046 ], [ 19.687500, -29.535230 ], [ 18.281250, -29.535230 ], [ 18.281250, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -25.799891 ], [ 14.062500, -25.799891 ], [ 14.062500, -21.943046 ], [ 12.656250, -21.943046 ], [ 12.656250, -19.311143 ], [ 11.250000, -19.311143 ], [ 11.250000, -16.636192 ], [ 14.062500, -16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.906250, -16.636192 ], [ 23.906250, -17.978733 ], [ 19.687500, -17.978733 ], [ 19.687500, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -27.059126 ], [ 14.062500, -27.059126 ], [ 14.062500, -21.943046 ], [ 12.656250, -21.943046 ], [ 12.656250, -19.311143 ], [ 11.250000, -19.311143 ], [ 11.250000, -16.636192 ], [ 23.906250, -16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -1.406109 ], [ 29.531250, -2.811371 ], [ 28.125000, -2.811371 ], [ 28.125000, -1.406109 ], [ 29.531250, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -2.811371 ], [ 29.531250, -4.214943 ], [ 28.125000, -4.214943 ], [ 28.125000, -2.811371 ], [ 29.531250, -2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -12.554564 ], [ 28.125000, -8.407168 ], [ 32.343750, -8.407168 ], [ 32.343750, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -12.554564 ], [ 32.343750, -12.554564 ], [ 32.343750, -15.284185 ], [ 29.531250, -15.284185 ], [ 29.531250, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -12.554564 ], [ 23.906250, -12.554564 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -12.554564 ], [ 28.125000, -12.554564 ] ], [ [ 28.125000, -12.554564 ], [ 28.125000, -13.923404 ], [ 29.531250, -13.923404 ], [ 29.531250, -12.554564 ], [ 28.125000, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -11.178402 ], [ 28.125000, -8.407168 ], [ 32.343750, -8.407168 ], [ 32.343750, -13.923404 ], [ 29.531250, -13.923404 ], [ 29.531250, -15.284185 ], [ 28.125000, -15.284185 ], [ 28.125000, -16.636192 ], [ 21.093750, -16.636192 ], [ 21.093750, -12.554564 ], [ 23.906250, -12.554564 ], [ 23.906250, -11.178402 ], [ 28.125000, -11.178402 ] ], [ [ 28.125000, -11.178402 ], [ 28.125000, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -11.178402 ], [ 28.125000, -11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -15.284185 ], [ 30.937500, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.311143 ], [ 25.312500, -19.311143 ], [ 25.312500, -17.978733 ], [ 28.125000, -17.978733 ], [ 28.125000, -16.636192 ], [ 29.531250, -16.636192 ], [ 29.531250, -15.284185 ], [ 30.937500, -15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -15.284185 ], [ 30.937500, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -20.632784 ], [ 30.937500, -20.632784 ], [ 30.937500, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.311143 ], [ 25.312500, -19.311143 ], [ 25.312500, -17.978733 ], [ 23.906250, -17.978733 ], [ 23.906250, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -15.284185 ], [ 30.937500, -15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, -1.406109 ], [ 35.156250, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -4.214943 ], [ 39.375000, -4.214943 ], [ 39.375000, -9.795678 ], [ 40.781250, -9.795678 ], [ 40.781250, -11.178402 ], [ 33.750000, -11.178402 ], [ 33.750000, -9.795678 ], [ 32.343750, -9.795678 ], [ 32.343750, -8.407168 ], [ 29.531250, -8.407168 ], [ 29.531250, -4.214943 ], [ 30.937500, -4.214943 ], [ 30.937500, -1.406109 ], [ 35.156250, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 0.000000 ], [ 33.750000, -1.406109 ], [ 35.156250, -1.406109 ], [ 35.156250, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -5.615986 ], [ 39.375000, -5.615986 ], [ 39.375000, -7.013668 ], [ 37.968750, -7.013668 ], [ 37.968750, -8.407168 ], [ 39.375000, -8.407168 ], [ 39.375000, -11.178402 ], [ 33.750000, -11.178402 ], [ 33.750000, -8.407168 ], [ 29.531250, -8.407168 ], [ 29.531250, -5.615986 ], [ 28.125000, -5.615986 ], [ 28.125000, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, 0.000000 ], [ 33.750000, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -13.923404 ] ] ], [ [ [ 35.156250, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -12.554564 ] ] ], [ [ [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -8.407168 ], [ 33.750000, -12.554564 ], [ 35.156250, -12.554564 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -8.407168 ], [ 33.750000, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -13.923404 ], [ 33.750000, -12.554564 ], [ 35.156250, -12.554564 ], [ 35.156250, -11.178402 ], [ 40.781250, -11.178402 ], [ 40.781250, -16.636192 ], [ 37.968750, -16.636192 ], [ 37.968750, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -24.527135 ], [ 33.750000, -24.527135 ], [ 33.750000, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -16.636192 ], [ 30.937500, -16.636192 ], [ 30.937500, -15.284185 ], [ 32.343750, -15.284185 ], [ 32.343750, -13.923404 ], [ 33.750000, -13.923404 ] ], [ [ 33.750000, -13.923404 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -13.923404 ], [ 33.750000, -13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, -11.178402 ], [ 39.375000, -16.636192 ], [ 36.562500, -16.636192 ], [ 36.562500, -17.978733 ], [ 35.156250, -17.978733 ], [ 35.156250, -19.311143 ], [ 33.750000, -19.311143 ], [ 33.750000, -20.632784 ], [ 35.156250, -20.632784 ], [ 35.156250, -23.241346 ], [ 33.750000, -23.241346 ], [ 33.750000, -24.527135 ], [ 32.343750, -24.527135 ], [ 32.343750, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -16.636192 ], [ 30.937500, -16.636192 ], [ 30.937500, -15.284185 ], [ 29.531250, -15.284185 ], [ 29.531250, -13.923404 ], [ 33.750000, -13.923404 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.178402 ], [ 39.375000, -11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -20.632784 ], [ 28.125000, -20.632784 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -23.241346 ], [ 26.718750, -23.241346 ], [ 26.718750, -24.527135 ], [ 25.312500, -24.527135 ], [ 25.312500, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -27.059126 ], [ 21.093750, -27.059126 ], [ 21.093750, -25.799891 ], [ 19.687500, -25.799891 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -20.632784 ], [ 28.125000, -20.632784 ], [ 28.125000, -21.943046 ], [ 26.718750, -21.943046 ], [ 26.718750, -24.527135 ], [ 22.500000, -24.527135 ], [ 22.500000, -25.799891 ], [ 19.687500, -25.799891 ], [ 19.687500, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -30.751278 ], [ 29.531250, -33.137551 ], [ 25.312500, -33.137551 ], [ 25.312500, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -31.952162 ], [ 16.875000, -31.952162 ], [ 16.875000, -28.304381 ], [ 18.281250, -28.304381 ], [ 18.281250, -29.535230 ], [ 19.687500, -29.535230 ], [ 19.687500, -25.799891 ], [ 21.093750, -25.799891 ], [ 21.093750, -27.059126 ], [ 22.500000, -27.059126 ], [ 22.500000, -25.799891 ], [ 25.312500, -25.799891 ], [ 25.312500, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.241346 ], [ 29.531250, -23.241346 ], [ 29.531250, -21.943046 ], [ 30.937500, -21.943046 ], [ 30.937500, -23.241346 ], [ 32.343750, -23.241346 ], [ 32.343750, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -29.535230 ], [ 30.937500, -29.535230 ], [ 30.937500, -30.751278 ], [ 29.531250, -30.751278 ] ], [ [ 29.531250, -30.751278 ], [ 29.531250, -29.535230 ], [ 26.718750, -29.535230 ], [ 26.718750, -30.751278 ], [ 29.531250, -30.751278 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -21.943046 ], [ 30.937500, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -28.304381 ], [ 30.937500, -28.304381 ], [ 30.937500, -29.535230 ], [ 29.531250, -29.535230 ], [ 29.531250, -31.952162 ], [ 28.125000, -31.952162 ], [ 28.125000, -33.137551 ], [ 21.093750, -33.137551 ], [ 21.093750, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -33.137551 ], [ 16.875000, -33.137551 ], [ 16.875000, -29.535230 ], [ 15.468750, -29.535230 ], [ 15.468750, -28.304381 ], [ 19.687500, -28.304381 ], [ 19.687500, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -21.943046 ], [ 30.937500, -21.943046 ] ], [ [ 26.718750, -29.535230 ], [ 28.125000, -29.535230 ], [ 28.125000, -28.304381 ], [ 26.718750, -28.304381 ], [ 26.718750, -29.535230 ] ], [ [ 30.937500, -25.799891 ], [ 29.531250, -25.799891 ], [ 29.531250, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.343750, -25.799891 ], [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 32.343750, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 29.531250, -27.059126 ], [ 29.531250, -25.799891 ], [ 30.937500, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, -29.535230 ], [ 29.531250, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -29.535230 ], [ 29.531250, -29.535230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -28.304381 ], [ 28.125000, -29.535230 ], [ 26.718750, -29.535230 ], [ 26.718750, -28.304381 ], [ 28.125000, -28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, -13.923404 ], [ 50.625000, -16.636192 ], [ 49.218750, -16.636192 ], [ 49.218750, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 46.406250, -24.527135 ], [ 46.406250, -25.799891 ], [ 43.593750, -25.799891 ], [ 43.593750, -20.632784 ], [ 45.000000, -20.632784 ], [ 45.000000, -19.311143 ], [ 43.593750, -19.311143 ], [ 43.593750, -17.978733 ], [ 45.000000, -17.978733 ], [ 45.000000, -16.636192 ], [ 46.406250, -16.636192 ], [ 46.406250, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 50.625000, -13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -11.178402 ], [ 49.218750, -17.978733 ], [ 47.812500, -17.978733 ], [ 47.812500, -23.241346 ], [ 46.406250, -23.241346 ], [ 46.406250, -24.527135 ], [ 43.593750, -24.527135 ], [ 43.593750, -23.241346 ], [ 42.187500, -23.241346 ], [ 42.187500, -20.632784 ], [ 43.593750, -20.632784 ], [ 43.593750, -15.284185 ], [ 46.406250, -15.284185 ], [ 46.406250, -13.923404 ], [ 47.812500, -13.923404 ], [ 47.812500, -11.178402 ], [ 49.218750, -11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -47.989922 ], [ 68.906250, -48.922499 ], [ 67.500000, -48.922499 ], [ 67.500000, -47.989922 ], [ 68.906250, -47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.031250, 4.214943 ], [ 99.843750, 4.214943 ], [ 99.843750, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -2.811371 ], [ 105.468750, -2.811371 ], [ 105.468750, -5.615986 ], [ 102.656250, -5.615986 ], [ 102.656250, -4.214943 ], [ 101.250000, -4.214943 ], [ 101.250000, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, 0.000000 ], [ 98.437500, 0.000000 ], [ 98.437500, 1.406109 ], [ 97.031250, 1.406109 ], [ 97.031250, 4.214943 ] ] ], [ [ [ 139.218750, -1.406109 ], [ 139.218750, -2.811371 ], [ 140.625000, -2.811371 ], [ 140.625000, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -5.615986 ], [ 136.406250, -5.615986 ], [ 136.406250, -4.214943 ], [ 132.187500, -4.214943 ], [ 132.187500, -1.406109 ], [ 133.593750, -1.406109 ], [ 133.593750, -2.811371 ], [ 137.812500, -2.811371 ], [ 137.812500, -1.406109 ], [ 139.218750, -1.406109 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 133.593750, -7.013668 ], [ 133.593750, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 118.125000, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -4.214943 ], [ 113.906250, -4.214943 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, 1.406109 ], [ 115.312500, 1.406109 ], [ 115.312500, 4.214943 ], [ 118.125000, 4.214943 ] ] ], [ [ [ 106.875000, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -8.407168 ], [ 106.875000, -8.407168 ], [ 106.875000, -7.013668 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -4.214943 ], [ 129.375000, -4.214943 ], [ 129.375000, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.937500, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 0.000000 ], [ 120.937500, 0.000000 ] ] ], [ [ [ 129.375000, 1.406109 ], [ 129.375000, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, 1.406109 ], [ 129.375000, 1.406109 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 106.875000, -5.615986 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 123.750000, -4.214943 ], [ 123.750000, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 97.031250, 5.615986 ], [ 97.031250, 4.214943 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.125000, -8.407168 ], [ 116.718750, -8.407168 ], [ 116.718750, -7.013668 ], [ 118.125000, -7.013668 ], [ 118.125000, -8.407168 ] ] ], [ [ [ 116.718750, 5.615986 ], [ 116.718750, -1.406109 ], [ 115.312500, -1.406109 ], [ 115.312500, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, -1.406109 ], [ 108.281250, -1.406109 ], [ 108.281250, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 112.500000, 2.811371 ], [ 112.500000, 1.406109 ], [ 113.906250, 1.406109 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.718750, 5.615986 ] ] ], [ [ [ 98.437500, 2.811371 ], [ 101.250000, 2.811371 ], [ 101.250000, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -1.406109 ], [ 105.468750, -1.406109 ], [ 105.468750, -5.615986 ], [ 102.656250, -5.615986 ], [ 102.656250, -4.214943 ], [ 101.250000, -4.214943 ], [ 101.250000, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, 0.000000 ], [ 98.437500, 0.000000 ], [ 98.437500, 2.811371 ] ] ], [ [ [ 133.593750, -2.811371 ], [ 135.000000, -2.811371 ], [ 135.000000, -1.406109 ], [ 140.625000, -1.406109 ], [ 140.625000, -8.407168 ], [ 139.218750, -8.407168 ], [ 139.218750, -7.013668 ], [ 137.812500, -7.013668 ], [ 137.812500, -4.214943 ], [ 133.593750, -4.214943 ], [ 133.593750, -2.811371 ] ] ], [ [ [ 120.937500, -4.214943 ], [ 122.343750, -4.214943 ], [ 122.343750, -5.615986 ], [ 120.937500, -5.615986 ], [ 120.937500, -4.214943 ] ] ], [ [ [ 119.531250, 0.000000 ], [ 119.531250, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, -5.615986 ], [ 118.125000, -5.615986 ], [ 118.125000, 0.000000 ], [ 119.531250, 0.000000 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 112.500000, -5.615986 ], [ 112.500000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 133.593750, -2.811371 ], [ 132.187500, -2.811371 ], [ 132.187500, -1.406109 ], [ 129.375000, -1.406109 ], [ 129.375000, 0.000000 ], [ 133.593750, 0.000000 ], [ 133.593750, -2.811371 ] ] ], [ [ [ 127.968750, 2.811371 ], [ 127.968750, 0.000000 ], [ 126.562500, 0.000000 ], [ 126.562500, 2.811371 ], [ 127.968750, 2.811371 ] ] ], [ [ [ 122.343750, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, 0.000000 ], [ 122.343750, 0.000000 ], [ 122.343750, -1.406109 ] ] ], [ [ [ 112.500000, -7.013668 ], [ 115.312500, -7.013668 ], [ 115.312500, -8.407168 ], [ 112.500000, -8.407168 ], [ 112.500000, -7.013668 ] ] ], [ [ [ 123.750000, 1.406109 ], [ 123.750000, 2.811371 ], [ 125.156250, 2.811371 ], [ 125.156250, 1.406109 ], [ 123.750000, 1.406109 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 94.218750, 4.214943 ], [ 94.218750, 5.615986 ], [ 97.031250, 5.615986 ], [ 97.031250, 4.214943 ] ] ], [ [ [ 118.125000, -8.407168 ], [ 119.531250, -8.407168 ], [ 119.531250, -9.795678 ], [ 118.125000, -9.795678 ], [ 118.125000, -8.407168 ] ] ], [ [ [ 97.031250, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 4.214943 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.562500, -8.407168 ], [ 126.562500, -9.795678 ], [ 125.156250, -9.795678 ], [ 125.156250, -8.407168 ], [ 126.562500, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -39.909736 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ], [ 147.656250, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -42.032974 ], [ 143.437500, -42.032974 ], [ 143.437500, -39.909736 ], [ 144.843750, -39.909736 ] ] ], [ [ [ 142.031250, -11.178402 ], [ 142.031250, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -17.978733 ], [ 146.250000, -17.978733 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -23.241346 ], [ 151.875000, -23.241346 ], [ 151.875000, -27.059126 ], [ 153.281250, -27.059126 ], [ 153.281250, -29.535230 ], [ 151.875000, -29.535230 ], [ 151.875000, -31.952162 ], [ 150.468750, -31.952162 ], [ 150.468750, -35.460670 ], [ 149.062500, -35.460670 ], [ 149.062500, -37.718590 ], [ 146.250000, -37.718590 ], [ 146.250000, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -37.718590 ], [ 139.218750, -37.718590 ], [ 139.218750, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -31.952162 ], [ 130.781250, -31.952162 ], [ 130.781250, -30.751278 ], [ 127.968750, -30.751278 ], [ 127.968750, -31.952162 ], [ 123.750000, -31.952162 ], [ 123.750000, -33.137551 ], [ 119.531250, -33.137551 ], [ 119.531250, -34.307144 ], [ 113.906250, -34.307144 ], [ 113.906250, -33.137551 ], [ 115.312500, -33.137551 ], [ 115.312500, -30.751278 ], [ 113.906250, -30.751278 ], [ 113.906250, -27.059126 ], [ 112.500000, -27.059126 ], [ 112.500000, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -24.527135 ], [ 112.500000, -24.527135 ], [ 112.500000, -21.943046 ], [ 113.906250, -21.943046 ], [ 113.906250, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -19.311143 ], [ 120.937500, -19.311143 ], [ 120.937500, -16.636192 ], [ 122.343750, -16.636192 ], [ 122.343750, -15.284185 ], [ 123.750000, -15.284185 ], [ 123.750000, -13.923404 ], [ 129.375000, -13.923404 ], [ 129.375000, -11.178402 ], [ 136.406250, -11.178402 ], [ 136.406250, -12.554564 ], [ 135.000000, -12.554564 ], [ 135.000000, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -16.636192 ], [ 140.625000, -16.636192 ], [ 140.625000, -11.178402 ], [ 142.031250, -11.178402 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 147.656250, -40.979898 ], [ 147.656250, -44.087585 ], [ 146.250000, -44.087585 ], [ 146.250000, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ] ] ], [ [ [ 143.437500, -11.178402 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -16.636192 ], [ 146.250000, -16.636192 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -24.527135 ], [ 151.875000, -24.527135 ], [ 151.875000, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -34.307144 ], [ 150.468750, -34.307144 ], [ 150.468750, -37.718590 ], [ 147.656250, -37.718590 ], [ 147.656250, -38.822591 ], [ 140.625000, -38.822591 ], [ 140.625000, -37.718590 ], [ 139.218750, -37.718590 ], [ 139.218750, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -35.460670 ], [ 135.000000, -35.460670 ], [ 135.000000, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -31.952162 ], [ 126.562500, -31.952162 ], [ 126.562500, -33.137551 ], [ 123.750000, -33.137551 ], [ 123.750000, -34.307144 ], [ 118.125000, -34.307144 ], [ 118.125000, -35.460670 ], [ 115.312500, -35.460670 ], [ 115.312500, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -20.632784 ], [ 120.937500, -20.632784 ], [ 120.937500, -19.311143 ], [ 122.343750, -19.311143 ], [ 122.343750, -16.636192 ], [ 123.750000, -16.636192 ], [ 123.750000, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -13.923404 ], [ 127.968750, -13.923404 ], [ 127.968750, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -13.923404 ], [ 130.781250, -13.923404 ], [ 130.781250, -12.554564 ], [ 132.187500, -12.554564 ], [ 132.187500, -11.178402 ], [ 133.593750, -11.178402 ], [ 133.593750, -12.554564 ], [ 136.406250, -12.554564 ], [ 136.406250, -16.636192 ], [ 139.218750, -16.636192 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -16.636192 ], [ 142.031250, -16.636192 ], [ 142.031250, -11.178402 ], [ 143.437500, -11.178402 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -2.811371 ], [ 143.437500, -4.214943 ], [ 144.843750, -4.214943 ], [ 144.843750, -5.615986 ], [ 146.250000, -5.615986 ], [ 146.250000, -7.013668 ], [ 147.656250, -7.013668 ], [ 147.656250, -8.407168 ], [ 149.062500, -8.407168 ], [ 149.062500, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 144.843750, -8.407168 ], [ 144.843750, -7.013668 ], [ 142.031250, -7.013668 ], [ 142.031250, -8.407168 ], [ 140.625000, -8.407168 ], [ 140.625000, -2.811371 ], [ 143.437500, -2.811371 ] ] ], [ [ [ 150.468750, -4.214943 ], [ 150.468750, -5.615986 ], [ 147.656250, -5.615986 ], [ 147.656250, -4.214943 ], [ 150.468750, -4.214943 ] ] ], [ [ [ 154.687500, -4.214943 ], [ 154.687500, -5.615986 ], [ 153.281250, -5.615986 ], [ 153.281250, -4.214943 ], [ 154.687500, -4.214943 ] ] ], [ [ [ 151.875000, -4.214943 ], [ 150.468750, -4.214943 ], [ 150.468750, -2.811371 ], [ 151.875000, -2.811371 ], [ 151.875000, -4.214943 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 143.437500, -2.811371 ], [ 143.437500, -4.214943 ], [ 146.250000, -4.214943 ], [ 146.250000, -5.615986 ], [ 147.656250, -5.615986 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.795678 ], [ 140.625000, -9.795678 ], [ 140.625000, -2.811371 ], [ 143.437500, -2.811371 ] ] ], [ [ [ 156.093750, -5.615986 ], [ 156.093750, -7.013668 ], [ 154.687500, -7.013668 ], [ 154.687500, -5.615986 ], [ 156.093750, -5.615986 ] ] ], [ [ [ 150.468750, -5.615986 ], [ 150.468750, -7.013668 ], [ 149.062500, -7.013668 ], [ 149.062500, -5.615986 ], [ 150.468750, -5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.312500, -8.407168 ], [ 160.312500, -9.795678 ], [ 158.906250, -9.795678 ], [ 158.906250, -8.407168 ], [ 160.312500, -8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 165.937500, -20.632784 ], [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -20.632784 ], [ 165.937500, -20.632784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.531250, -20.632784 ], [ 163.125000, -20.632784 ], [ 163.125000, -19.311143 ], [ 164.531250, -19.311143 ], [ 164.531250, -20.632784 ] ] ], [ [ [ 164.531250, -20.632784 ], [ 165.937500, -20.632784 ], [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -20.632784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 174.375000, -42.032974 ], [ 174.375000, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -47.040182 ], [ 167.343750, -47.040182 ], [ 167.343750, -45.089036 ], [ 168.750000, -45.089036 ], [ 168.750000, -44.087585 ], [ 170.156250, -44.087585 ], [ 170.156250, -43.068888 ], [ 171.562500, -43.068888 ], [ 171.562500, -40.979898 ], [ 174.375000, -40.979898 ], [ 174.375000, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -38.822591 ], [ 177.187500, -38.822591 ], [ 177.187500, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -42.032974 ], [ 174.375000, -42.032974 ] ] ], [ [ [ -185.625000, -42.032974 ], [ -185.625000, -43.068888 ], [ -187.031250, -43.068888 ], [ -187.031250, -40.979898 ], [ -185.625000, -40.979898 ], [ -185.625000, -37.718590 ], [ -181.406250, -37.718590 ], [ -181.406250, -38.822591 ], [ -182.812500, -38.822591 ], [ -182.812500, -40.979898 ], [ -184.218750, -40.979898 ], [ -184.218750, -42.032974 ], [ -185.625000, -42.032974 ] ] ], [ [ [ -185.625000, -36.597889 ], [ -187.031250, -36.597889 ], [ -187.031250, -35.460670 ], [ -185.625000, -35.460670 ], [ -185.625000, -36.597889 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 172.968750, -36.597889 ], [ 172.968750, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -39.909736 ], [ 172.968750, -43.068888 ], [ 171.562500, -43.068888 ], [ 171.562500, -44.087585 ], [ 170.156250, -44.087585 ], [ 170.156250, -46.073231 ], [ 165.937500, -46.073231 ], [ 165.937500, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.068888 ], [ 170.156250, -43.068888 ], [ 170.156250, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -39.909736 ], [ 172.968750, -39.909736 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 177.187500, -37.718590 ], [ 177.187500, -38.822591 ], [ 175.781250, -38.822591 ], [ 175.781250, -40.979898 ], [ 174.375000, -40.979898 ], [ 174.375000, -39.909736 ], [ 172.968750, -39.909736 ], [ 172.968750, -38.822591 ], [ 174.375000, -38.822591 ], [ 174.375000, -36.597889 ] ] ], [ [ [ -185.625000, -36.597889 ], [ -184.218750, -36.597889 ], [ -184.218750, -37.718590 ], [ -182.812500, -37.718590 ], [ -182.812500, -38.822591 ], [ -184.218750, -38.822591 ], [ -184.218750, -40.979898 ], [ -185.625000, -40.979898 ], [ -185.625000, -39.909736 ], [ -187.031250, -39.909736 ], [ -187.031250, -38.822591 ], [ -185.625000, -38.822591 ], [ -185.625000, -36.597889 ] ] ], [ [ [ -185.625000, -36.597889 ], [ -187.031250, -36.597889 ], [ -187.031250, -35.460670 ], [ -185.625000, -35.460670 ], [ -185.625000, -36.597889 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 172.968750, -36.597889 ], [ 172.968750, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, 3.513421 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -67.500000, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.015625, -4.214943 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ] ] ], [ [ [ -68.203125, 2.811371 ], [ -67.500000, 2.811371 ], [ -67.500000, 2.108899 ], [ -70.312500, 2.108899 ], [ -70.312500, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, 0.000000 ], [ -69.609375, 0.000000 ], [ -69.609375, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.108899 ], [ -73.125000, -2.108899 ], [ -73.125000, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.406109 ], [ -79.453125, 1.406109 ], [ -79.453125, 2.108899 ], [ -78.750000, 2.108899 ], [ -78.750000, 2.811371 ], [ -78.046875, 2.811371 ], [ -78.046875, 3.513421 ], [ -68.203125, 3.513421 ], [ -68.203125, 2.811371 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, 3.513421 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 3.513421 ], [ -64.687500, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.687500, 3.513421 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 2.108899 ], [ -64.687500, 2.108899 ], [ -64.687500, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 2.811371 ], [ -68.203125, 2.811371 ], [ -68.203125, 3.513421 ], [ -64.687500, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 3.513421 ], [ -56.953125, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, 3.513421 ], [ -57.656250, 2.108899 ], [ -59.062500, 2.108899 ], [ -59.062500, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 2.811371 ], [ -60.468750, 2.811371 ], [ -60.468750, 3.513421 ], [ -57.656250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 3.513421 ], [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -54.140625, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 3.513421 ], [ -54.843750, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 3.513421 ], [ -54.843750, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.031250, 3.513421 ], [ -52.031250, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 2.108899 ], [ -54.140625, 2.108899 ], [ -54.140625, 3.513421 ], [ -52.031250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.734375, 3.513421 ], [ -52.734375, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 2.108899 ], [ -54.843750, 2.108899 ], [ -54.843750, 3.513421 ], [ -52.734375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.703107 ], [ -77.343750, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -78.750000, -3.513421 ], [ -78.750000, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -3.513421 ], [ -79.453125, -3.513421 ], [ -79.453125, -2.811371 ], [ -80.859375, -2.811371 ], [ -80.859375, -0.703107 ], [ -80.156250, -0.703107 ], [ -80.156250, 0.703107 ], [ -77.343750, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.406109 ], [ -78.046875, 0.703107 ], [ -75.937500, 0.703107 ], [ -75.937500, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, -1.406109 ], [ -75.937500, -1.406109 ], [ -75.937500, -2.108899 ], [ -76.640625, -2.108899 ], [ -76.640625, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -78.750000, -3.513421 ], [ -78.750000, -4.915833 ], [ -80.156250, -4.915833 ], [ -80.156250, -4.214943 ], [ -80.859375, -4.214943 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.811371 ], [ -80.156250, -2.108899 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.406109 ], [ -81.562500, -1.406109 ], [ -81.562500, -0.703107 ], [ -80.859375, -0.703107 ], [ -80.859375, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 1.406109 ], [ -78.046875, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -0.703107 ], [ -73.828125, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -4.214943 ], [ -71.015625, -4.214943 ], [ -71.015625, -4.915833 ], [ -71.718750, -4.915833 ], [ -71.718750, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -11.178402 ], [ -69.609375, -11.178402 ], [ -69.609375, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -15.961329 ], [ -69.609375, -15.961329 ], [ -69.609375, -16.636192 ], [ -68.906250, -16.636192 ], [ -68.906250, -17.308688 ], [ -69.609375, -17.308688 ], [ -69.609375, -18.646245 ], [ -71.718750, -18.646245 ], [ -71.718750, -17.308688 ], [ -73.125000, -17.308688 ], [ -73.125000, -16.636192 ], [ -73.828125, -16.636192 ], [ -73.828125, -15.961329 ], [ -75.234375, -15.961329 ], [ -75.234375, -15.284185 ], [ -75.937500, -15.284185 ], [ -75.937500, -14.604847 ], [ -76.640625, -14.604847 ], [ -76.640625, -13.923404 ], [ -75.937500, -13.923404 ], [ -75.937500, -13.239945 ], [ -77.343750, -13.239945 ], [ -77.343750, -11.867351 ], [ -78.046875, -11.867351 ], [ -78.046875, -9.795678 ], [ -78.750000, -9.795678 ], [ -78.750000, -8.407168 ], [ -79.453125, -8.407168 ], [ -79.453125, -7.013668 ], [ -80.859375, -7.013668 ], [ -80.859375, -5.615986 ], [ -81.562500, -5.615986 ], [ -81.562500, -4.915833 ], [ -80.859375, -4.915833 ], [ -80.859375, -4.214943 ], [ -79.453125, -4.214943 ], [ -79.453125, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, -2.108899 ], [ -75.234375, -2.108899 ], [ -75.234375, -0.703107 ], [ -73.828125, -0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -0.703107 ], [ -73.828125, -0.703107 ], [ -73.828125, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.108899 ], [ -70.312500, -2.108899 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -4.214943 ], [ -72.421875, -4.214943 ], [ -72.421875, -4.915833 ], [ -73.125000, -4.915833 ], [ -73.125000, -5.615986 ], [ -73.828125, -5.615986 ], [ -73.828125, -7.013668 ], [ -74.531250, -7.013668 ], [ -74.531250, -7.710992 ], [ -73.828125, -7.710992 ], [ -73.828125, -8.407168 ], [ -73.125000, -8.407168 ], [ -73.125000, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -10.487812 ], [ -69.609375, -10.487812 ], [ -69.609375, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -13.239945 ], [ -69.609375, -13.239945 ], [ -69.609375, -17.978733 ], [ -71.718750, -17.978733 ], [ -71.718750, -17.308688 ], [ -72.421875, -17.308688 ], [ -72.421875, -16.636192 ], [ -73.828125, -16.636192 ], [ -73.828125, -15.961329 ], [ -74.531250, -15.961329 ], [ -74.531250, -15.284185 ], [ -75.937500, -15.284185 ], [ -75.937500, -14.604847 ], [ -76.640625, -14.604847 ], [ -76.640625, -12.554564 ], [ -77.343750, -12.554564 ], [ -77.343750, -11.867351 ], [ -78.046875, -11.867351 ], [ -78.046875, -10.487812 ], [ -78.750000, -10.487812 ], [ -78.750000, -9.102097 ], [ -79.453125, -9.102097 ], [ -79.453125, -7.710992 ], [ -80.156250, -7.710992 ], [ -80.156250, -7.013668 ], [ -80.859375, -7.013668 ], [ -80.859375, -6.315299 ], [ -81.562500, -6.315299 ], [ -81.562500, -3.513421 ], [ -80.859375, -3.513421 ], [ -80.859375, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -76.640625, -2.811371 ], [ -76.640625, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.703107 ], [ -75.937500, -0.703107 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.609375, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.977614 ], [ -66.796875, -54.977614 ], [ -66.796875, -55.379110 ], [ -67.500000, -55.379110 ], [ -67.500000, -55.776573 ], [ -68.906250, -55.776573 ], [ -68.906250, -55.379110 ], [ -71.015625, -55.379110 ], [ -71.015625, -54.977614 ], [ -72.421875, -54.977614 ], [ -72.421875, -54.572062 ], [ -73.125000, -54.572062 ], [ -73.125000, -54.162434 ], [ -73.828125, -54.162434 ], [ -73.828125, -53.330873 ], [ -74.531250, -53.330873 ], [ -74.531250, -52.908902 ], [ -74.531250, -52.482780 ], [ -75.234375, -52.482780 ], [ -75.234375, -49.382373 ], [ -75.937500, -49.382373 ], [ -75.937500, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.517201 ], [ -73.828125, -47.517201 ], [ -73.828125, -47.040182 ], [ -75.234375, -47.040182 ], [ -75.234375, -46.073231 ], [ -74.531250, -46.073231 ], [ -74.531250, -44.590467 ], [ -73.125000, -44.590467 ], [ -73.125000, -43.580391 ], [ -72.421875, -43.580391 ], [ -72.421875, -43.068888 ], [ -71.718750, -43.068888 ], [ -71.718750, -44.590467 ], [ -71.015625, -44.590467 ], [ -71.015625, -45.089036 ], [ -71.718750, -45.089036 ], [ -71.718750, -47.517201 ], [ -72.421875, -47.517201 ], [ -72.421875, -49.382373 ], [ -73.125000, -49.382373 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -52.052490 ], [ -69.609375, -52.052490 ], [ -69.609375, -52.482780 ] ], [ [ -72.421875, -53.748711 ], [ -72.421875, -54.162434 ], [ -70.312500, -54.162434 ], [ -70.312500, -52.908902 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.748711 ], [ -72.421875, -53.748711 ] ], [ [ -73.125000, -53.330873 ], [ -73.125000, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.330873 ], [ -73.125000, -53.330873 ] ] ], [ [ [ -68.906250, -17.978733 ], [ -68.906250, -19.311143 ], [ -68.203125, -19.311143 ], [ -68.203125, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -21.943046 ], [ -67.500000, -21.943046 ], [ -67.500000, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -23.885838 ], [ -67.500000, -23.885838 ], [ -67.500000, -24.527135 ], [ -68.203125, -24.527135 ], [ -68.203125, -26.431228 ], [ -68.906250, -26.431228 ], [ -68.906250, -27.059126 ], [ -68.203125, -27.059126 ], [ -68.203125, -27.683528 ], [ -68.906250, -27.683528 ], [ -68.906250, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.921631 ], [ -70.312500, -28.921631 ], [ -70.312500, -30.145127 ], [ -69.609375, -30.145127 ], [ -69.609375, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -33.137551 ], [ -69.609375, -33.137551 ], [ -69.609375, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -38.822591 ], [ -71.718750, -38.822591 ], [ -71.718750, -42.032974 ], [ -72.421875, -42.032974 ], [ -72.421875, -42.553080 ], [ -73.125000, -42.553080 ], [ -73.125000, -43.068888 ], [ -73.828125, -43.068888 ], [ -73.828125, -43.580391 ], [ -74.531250, -43.580391 ], [ -74.531250, -42.553080 ], [ -73.828125, -42.553080 ], [ -73.828125, -39.909736 ], [ -73.125000, -39.909736 ], [ -73.125000, -38.822591 ], [ -73.828125, -38.822591 ], [ -73.828125, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.597889 ], [ -72.421875, -36.597889 ], [ -72.421875, -34.885931 ], [ -71.718750, -34.885931 ], [ -71.718750, -28.304381 ], [ -71.015625, -28.304381 ], [ -71.015625, -25.165173 ], [ -70.312500, -25.165173 ], [ -70.312500, -18.646245 ], [ -69.609375, -18.646245 ], [ -69.609375, -17.978733 ], [ -68.906250, -17.978733 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.125000, -53.330873 ], [ -73.125000, -52.908902 ], [ -73.828125, -52.908902 ], [ -73.828125, -52.482780 ], [ -75.234375, -52.482780 ], [ -75.234375, -52.052490 ], [ -75.937500, -52.052490 ], [ -75.937500, -51.179343 ], [ -75.234375, -51.179343 ], [ -75.234375, -50.736455 ], [ -75.937500, -50.736455 ], [ -75.937500, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.040182 ], [ -74.531250, -47.040182 ], [ -74.531250, -46.558860 ], [ -75.937500, -46.558860 ], [ -75.937500, -46.073231 ], [ -75.234375, -46.073231 ], [ -75.234375, -45.089036 ], [ -74.531250, -45.089036 ], [ -74.531250, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.828125, -43.068888 ], [ -74.531250, -43.068888 ], [ -74.531250, -40.979898 ], [ -73.828125, -40.979898 ], [ -73.828125, -36.031332 ], [ -73.125000, -36.031332 ], [ -73.125000, -34.885931 ], [ -72.421875, -34.885931 ], [ -72.421875, -33.137551 ], [ -71.718750, -33.137551 ], [ -71.718750, -27.683528 ], [ -71.015625, -27.683528 ], [ -71.015625, -22.593726 ], [ -70.312500, -22.593726 ], [ -70.312500, -18.646245 ], [ -71.015625, -18.646245 ], [ -71.015625, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -22.593726 ], [ -67.500000, -22.593726 ], [ -67.500000, -23.885838 ], [ -68.906250, -23.885838 ], [ -68.906250, -27.059126 ], [ -69.609375, -27.059126 ], [ -69.609375, -27.683528 ], [ -70.312500, -27.683528 ], [ -70.312500, -30.751278 ], [ -71.015625, -30.751278 ], [ -71.015625, -31.952162 ], [ -70.312500, -31.952162 ], [ -70.312500, -34.307144 ], [ -71.015625, -34.307144 ], [ -71.015625, -36.031332 ], [ -71.718750, -36.031332 ], [ -71.718750, -37.718590 ], [ -71.015625, -37.718590 ], [ -71.015625, -38.822591 ], [ -71.718750, -38.822591 ], [ -71.718750, -39.909736 ], [ -72.421875, -39.909736 ], [ -72.421875, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -46.073231 ], [ -72.421875, -46.073231 ], [ -72.421875, -47.040182 ], [ -73.125000, -47.040182 ], [ -73.125000, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -48.458352 ], [ -73.125000, -48.458352 ], [ -73.125000, -48.922499 ], [ -73.828125, -48.922499 ], [ -73.828125, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -51.618017 ], [ -71.718750, -51.618017 ], [ -71.718750, -52.052490 ], [ -69.609375, -52.052490 ], [ -69.609375, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.572062 ], [ -67.500000, -54.572062 ], [ -67.500000, -55.379110 ], [ -70.312500, -55.379110 ], [ -70.312500, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.572062 ], [ -72.421875, -54.572062 ], [ -72.421875, -54.162434 ], [ -73.828125, -54.162434 ], [ -73.828125, -53.748711 ], [ -74.531250, -53.748711 ], [ -74.531250, -53.330873 ], [ -73.125000, -53.330873 ] ], [ [ -71.015625, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.908902 ], [ -69.609375, -52.908902 ], [ -69.609375, -52.482780 ], [ -71.015625, -52.482780 ], [ -71.015625, -53.330873 ] ], [ [ -73.828125, -42.032974 ], [ -73.828125, -43.068888 ], [ -73.125000, -43.068888 ], [ -73.125000, -42.032974 ], [ -73.828125, -42.032974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -13.239945 ], [ -61.171875, -13.239945 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -15.961329 ], [ -59.765625, -15.961329 ], [ -59.765625, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -17.308688 ], [ -57.656250, -17.308688 ], [ -57.656250, -19.973349 ], [ -59.062500, -19.973349 ], [ -59.062500, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -19.973349 ], [ -62.578125, -19.973349 ], [ -62.578125, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -22.593726 ], [ -67.500000, -22.593726 ], [ -67.500000, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -21.289374 ], [ -68.906250, -21.289374 ], [ -68.906250, -19.973349 ], [ -68.203125, -19.973349 ], [ -68.203125, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.308688 ], [ -68.906250, -17.308688 ], [ -68.906250, -16.636192 ], [ -69.609375, -16.636192 ], [ -69.609375, -15.961329 ], [ -68.906250, -15.961329 ], [ -68.906250, -11.867351 ], [ -69.609375, -11.867351 ], [ -69.609375, -11.178402 ], [ -68.203125, -11.178402 ], [ -68.203125, -10.487812 ], [ -66.796875, -10.487812 ], [ -66.796875, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, -9.795678 ], [ -66.093750, -10.487812 ], [ -65.390625, -10.487812 ], [ -65.390625, -11.178402 ], [ -66.093750, -11.178402 ], [ -66.093750, -11.867351 ], [ -64.687500, -11.867351 ], [ -64.687500, -12.554564 ], [ -62.578125, -12.554564 ], [ -62.578125, -13.239945 ], [ -61.171875, -13.239945 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -14.604847 ], [ -61.171875, -14.604847 ], [ -61.171875, -15.284185 ], [ -60.468750, -15.284185 ], [ -60.468750, -15.961329 ], [ -58.359375, -15.961329 ], [ -58.359375, -17.978733 ], [ -57.656250, -17.978733 ], [ -57.656250, -18.646245 ], [ -58.359375, -18.646245 ], [ -58.359375, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -19.973349 ], [ -62.578125, -19.973349 ], [ -62.578125, -21.289374 ], [ -63.281250, -21.289374 ], [ -63.281250, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -65.390625, -22.593726 ], [ -65.390625, -21.943046 ], [ -67.500000, -21.943046 ], [ -67.500000, -22.593726 ], [ -68.203125, -22.593726 ], [ -68.203125, -21.943046 ], [ -68.906250, -21.943046 ], [ -68.906250, -19.311143 ], [ -69.609375, -19.311143 ], [ -69.609375, -13.239945 ], [ -68.906250, -13.239945 ], [ -68.906250, -11.867351 ], [ -69.609375, -11.867351 ], [ -69.609375, -10.487812 ], [ -67.500000, -10.487812 ], [ -67.500000, -9.795678 ], [ -66.093750, -9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ], [ -49.921875, 1.406109 ], [ -49.921875, 0.000000 ], [ -48.515625, 0.000000 ], [ -48.515625, -1.406109 ], [ -47.812500, -1.406109 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.811371 ], [ -43.593750, -2.811371 ], [ -43.593750, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -4.214943 ], [ -37.968750, -4.214943 ], [ -37.968750, -4.915833 ], [ -35.859375, -4.915833 ], [ -35.859375, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -7.013668 ], [ -34.453125, -7.013668 ], [ -34.453125, -8.407168 ], [ -35.156250, -8.407168 ], [ -35.156250, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -11.178402 ], [ -37.265625, -11.178402 ], [ -37.265625, -11.867351 ], [ -37.968750, -11.867351 ], [ -37.968750, -12.554564 ], [ -38.671875, -12.554564 ], [ -38.671875, -16.636192 ], [ -39.375000, -16.636192 ], [ -39.375000, -18.646245 ], [ -40.078125, -18.646245 ], [ -40.078125, -19.973349 ], [ -40.781250, -19.973349 ], [ -40.781250, -22.593726 ], [ -41.484375, -22.593726 ], [ -41.484375, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.885838 ], [ -46.406250, -23.885838 ], [ -46.406250, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -25.165173 ], [ -47.812500, -25.165173 ], [ -47.812500, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -28.921631 ], [ -49.921875, -28.921631 ], [ -49.921875, -30.145127 ], [ -50.625000, -30.145127 ], [ -50.625000, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -32.546813 ], [ -52.734375, -32.546813 ], [ -52.734375, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -31.952162 ], [ -54.843750, -31.952162 ], [ -54.843750, -31.353637 ], [ -55.546875, -31.353637 ], [ -55.546875, -30.751278 ], [ -56.953125, -30.751278 ], [ -56.953125, -29.535230 ], [ -56.250000, -29.535230 ], [ -56.250000, -28.921631 ], [ -55.546875, -28.921631 ], [ -55.546875, -28.304381 ], [ -54.843750, -28.304381 ], [ -54.843750, -27.683528 ], [ -53.437500, -27.683528 ], [ -53.437500, -26.431228 ], [ -54.140625, -26.431228 ], [ -54.140625, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -22.593726 ], [ -57.656250, -22.593726 ], [ -57.656250, -20.632784 ], [ -58.359375, -20.632784 ], [ -58.359375, -19.973349 ], [ -57.656250, -19.973349 ], [ -57.656250, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.636192 ], [ -59.765625, -16.636192 ], [ -59.765625, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.239945 ], [ -63.281250, -13.239945 ], [ -63.281250, -12.554564 ], [ -65.390625, -12.554564 ], [ -65.390625, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.487812 ], [ -68.203125, -10.487812 ], [ -68.203125, -11.178402 ], [ -70.312500, -11.178402 ], [ -70.312500, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -9.102097 ], [ -73.828125, -9.102097 ], [ -73.828125, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -71.718750, -5.615986 ], [ -71.718750, -4.915833 ], [ -71.015625, -4.915833 ], [ -71.015625, -4.214943 ], [ -69.609375, -4.214943 ], [ -69.609375, -0.703107 ], [ -70.312500, -0.703107 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 3.513421 ], [ -59.765625, 3.513421 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 3.513421 ], [ -51.328125, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 0.703107 ], [ -51.328125, 0.703107 ], [ -51.328125, 0.000000 ], [ -49.218750, 0.000000 ], [ -49.218750, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -4.214943 ], [ -37.265625, -4.214943 ], [ -37.265625, -4.915833 ], [ -35.859375, -4.915833 ], [ -35.859375, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -9.102097 ], [ -35.859375, -9.102097 ], [ -35.859375, -9.795678 ], [ -36.562500, -9.795678 ], [ -36.562500, -10.487812 ], [ -37.265625, -10.487812 ], [ -37.265625, -11.178402 ], [ -37.968750, -11.178402 ], [ -37.968750, -12.554564 ], [ -38.671875, -12.554564 ], [ -38.671875, -13.239945 ], [ -39.375000, -13.239945 ], [ -39.375000, -17.978733 ], [ -40.078125, -17.978733 ], [ -40.078125, -19.973349 ], [ -40.781250, -19.973349 ], [ -40.781250, -21.289374 ], [ -41.484375, -21.289374 ], [ -41.484375, -21.943046 ], [ -42.187500, -21.943046 ], [ -42.187500, -22.593726 ], [ -43.593750, -22.593726 ], [ -43.593750, -23.241346 ], [ -45.703125, -23.241346 ], [ -45.703125, -23.885838 ], [ -47.109375, -23.885838 ], [ -47.109375, -24.527135 ], [ -47.812500, -24.527135 ], [ -47.812500, -25.165173 ], [ -48.515625, -25.165173 ], [ -48.515625, -26.431228 ], [ -49.218750, -26.431228 ], [ -49.218750, -27.059126 ], [ -48.515625, -27.059126 ], [ -48.515625, -27.683528 ], [ -49.218750, -27.683528 ], [ -49.218750, -28.921631 ], [ -49.921875, -28.921631 ], [ -49.921875, -29.535230 ], [ -50.625000, -29.535230 ], [ -50.625000, -30.751278 ], [ -51.328125, -30.751278 ], [ -51.328125, -31.353637 ], [ -52.031250, -31.353637 ], [ -52.031250, -31.952162 ], [ -52.734375, -31.952162 ], [ -52.734375, -33.724340 ], [ -54.140625, -33.724340 ], [ -54.140625, -33.137551 ], [ -53.437500, -33.137551 ], [ -53.437500, -32.546813 ], [ -54.140625, -32.546813 ], [ -54.140625, -31.952162 ], [ -54.843750, -31.952162 ], [ -54.843750, -31.353637 ], [ -56.250000, -31.353637 ], [ -56.250000, -30.751278 ], [ -56.953125, -30.751278 ], [ -56.953125, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.059126 ], [ -54.140625, -27.059126 ], [ -54.140625, -25.165173 ], [ -54.843750, -25.165173 ], [ -54.843750, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -23.241346 ], [ -56.250000, -23.241346 ], [ -56.250000, -21.943046 ], [ -58.359375, -21.943046 ], [ -58.359375, -18.646245 ], [ -57.656250, -18.646245 ], [ -57.656250, -17.978733 ], [ -58.359375, -17.978733 ], [ -58.359375, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -15.284185 ], [ -61.171875, -15.284185 ], [ -61.171875, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.239945 ], [ -62.578125, -13.239945 ], [ -62.578125, -12.554564 ], [ -64.687500, -12.554564 ], [ -64.687500, -11.867351 ], [ -66.093750, -11.867351 ], [ -66.093750, -11.178402 ], [ -65.390625, -11.178402 ], [ -65.390625, -10.487812 ], [ -66.093750, -10.487812 ], [ -66.093750, -9.795678 ], [ -67.500000, -9.795678 ], [ -67.500000, -10.487812 ], [ -71.015625, -10.487812 ], [ -71.015625, -9.795678 ], [ -73.125000, -9.795678 ], [ -73.125000, -8.407168 ], [ -73.828125, -8.407168 ], [ -73.828125, -7.710992 ], [ -74.531250, -7.710992 ], [ -74.531250, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, 0.000000 ], [ -70.312500, 0.000000 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -70.312500, 1.406109 ], [ -70.312500, 2.108899 ], [ -67.500000, 2.108899 ], [ -67.500000, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 2.108899 ], [ -63.984375, 2.108899 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 3.513421 ], [ -60.468750, 3.513421 ], [ -60.468750, 2.811371 ], [ -59.765625, 2.811371 ], [ -59.765625, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.108899 ], [ -56.250000, 2.108899 ], [ -56.250000, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 3.513421 ], [ -51.328125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -20.632784 ], [ -57.656250, -20.632784 ], [ -57.656250, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.885838 ], [ -54.140625, -23.885838 ], [ -54.140625, -25.799891 ], [ -54.843750, -25.799891 ], [ -54.843750, -27.059126 ], [ -55.546875, -27.059126 ], [ -55.546875, -27.683528 ], [ -58.359375, -27.683528 ], [ -58.359375, -26.431228 ], [ -57.656250, -26.431228 ], [ -57.656250, -25.165173 ], [ -59.062500, -25.165173 ], [ -59.062500, -24.527135 ], [ -59.765625, -24.527135 ], [ -59.765625, -23.885838 ], [ -61.875000, -23.885838 ], [ -61.875000, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -19.973349 ], [ -61.875000, -19.973349 ], [ -61.875000, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -19.311143 ], [ -58.359375, -21.943046 ], [ -56.250000, -21.943046 ], [ -56.250000, -23.241346 ], [ -55.546875, -23.241346 ], [ -55.546875, -23.885838 ], [ -54.843750, -23.885838 ], [ -54.843750, -27.059126 ], [ -58.359375, -27.059126 ], [ -58.359375, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.165173 ], [ -58.359375, -25.165173 ], [ -58.359375, -24.527135 ], [ -60.468750, -24.527135 ], [ -60.468750, -23.885838 ], [ -61.171875, -23.885838 ], [ -61.171875, -23.241346 ], [ -61.875000, -23.241346 ], [ -61.875000, -22.593726 ], [ -63.281250, -22.593726 ], [ -63.281250, -21.289374 ], [ -62.578125, -21.289374 ], [ -62.578125, -19.973349 ], [ -61.875000, -19.973349 ], [ -61.875000, -19.311143 ], [ -58.359375, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -52.908902 ], [ -68.203125, -53.330873 ], [ -67.500000, -53.330873 ], [ -67.500000, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.572062 ], [ -65.390625, -54.572062 ], [ -65.390625, -55.379110 ], [ -66.796875, -55.379110 ], [ -66.796875, -54.977614 ], [ -68.906250, -54.977614 ], [ -68.906250, -52.908902 ], [ -68.203125, -52.908902 ] ] ], [ [ [ -62.578125, -21.943046 ], [ -62.578125, -22.593726 ], [ -61.875000, -22.593726 ], [ -61.875000, -23.885838 ], [ -59.765625, -23.885838 ], [ -59.765625, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.683528 ], [ -55.546875, -27.683528 ], [ -55.546875, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -26.431228 ], [ -53.437500, -26.431228 ], [ -53.437500, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -31.353637 ], [ -58.359375, -31.353637 ], [ -58.359375, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.460670 ], [ -56.953125, -35.460670 ], [ -56.953125, -36.031332 ], [ -57.656250, -36.031332 ], [ -57.656250, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.718590 ], [ -57.656250, -37.718590 ], [ -57.656250, -38.822591 ], [ -62.578125, -38.822591 ], [ -62.578125, -39.368279 ], [ -61.875000, -39.368279 ], [ -61.875000, -39.909736 ], [ -62.578125, -39.909736 ], [ -62.578125, -40.446947 ], [ -61.875000, -40.446947 ], [ -61.875000, -40.979898 ], [ -65.390625, -40.979898 ], [ -65.390625, -41.508577 ], [ -64.687500, -41.508577 ], [ -64.687500, -42.553080 ], [ -63.281250, -42.553080 ], [ -63.281250, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.580391 ], [ -65.390625, -43.580391 ], [ -65.390625, -45.089036 ], [ -66.796875, -45.089036 ], [ -66.796875, -45.583290 ], [ -67.500000, -45.583290 ], [ -67.500000, -46.558860 ], [ -66.796875, -46.558860 ], [ -66.796875, -47.040182 ], [ -65.390625, -47.040182 ], [ -65.390625, -47.517201 ], [ -66.093750, -47.517201 ], [ -66.093750, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -50.289339 ], [ -68.906250, -50.289339 ], [ -68.906250, -52.052490 ], [ -68.203125, -52.052490 ], [ -68.203125, -52.482780 ], [ -69.609375, -52.482780 ], [ -69.609375, -52.052490 ], [ -72.421875, -52.052490 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -49.382373 ], [ -72.421875, -49.382373 ], [ -72.421875, -47.517201 ], [ -71.718750, -47.517201 ], [ -71.718750, -45.089036 ], [ -71.015625, -45.089036 ], [ -71.015625, -44.590467 ], [ -71.718750, -44.590467 ], [ -71.718750, -43.068888 ], [ -72.421875, -43.068888 ], [ -72.421875, -42.032974 ], [ -71.718750, -42.032974 ], [ -71.718750, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -36.597889 ], [ -70.312500, -36.597889 ], [ -70.312500, -34.885931 ], [ -69.609375, -34.885931 ], [ -69.609375, -33.137551 ], [ -70.312500, -33.137551 ], [ -70.312500, -30.751278 ], [ -69.609375, -30.751278 ], [ -69.609375, -30.145127 ], [ -70.312500, -30.145127 ], [ -70.312500, -28.921631 ], [ -69.609375, -28.921631 ], [ -69.609375, -28.304381 ], [ -68.906250, -28.304381 ], [ -68.906250, -27.683528 ], [ -68.203125, -27.683528 ], [ -68.203125, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -26.431228 ], [ -68.203125, -26.431228 ], [ -68.203125, -24.527135 ], [ -67.500000, -24.527135 ], [ -67.500000, -23.885838 ], [ -66.796875, -23.885838 ], [ -66.796875, -22.593726 ], [ -66.093750, -22.593726 ], [ -66.093750, -21.943046 ], [ -64.687500, -21.943046 ], [ -64.687500, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -62.578125, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -53.330873 ], [ -68.203125, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.572062 ], [ -65.390625, -54.572062 ], [ -65.390625, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -54.572062 ], [ -68.906250, -54.572062 ], [ -68.906250, -53.330873 ], [ -68.203125, -53.330873 ] ] ], [ [ [ -63.281250, -21.943046 ], [ -63.281250, -22.593726 ], [ -61.875000, -22.593726 ], [ -61.875000, -23.241346 ], [ -61.171875, -23.241346 ], [ -61.171875, -23.885838 ], [ -60.468750, -23.885838 ], [ -60.468750, -24.527135 ], [ -58.359375, -24.527135 ], [ -58.359375, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -25.799891 ], [ -58.359375, -25.799891 ], [ -58.359375, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -27.683528 ], [ -55.546875, -27.683528 ], [ -55.546875, -28.304381 ], [ -56.953125, -28.304381 ], [ -56.953125, -29.535230 ], [ -57.656250, -29.535230 ], [ -57.656250, -30.751278 ], [ -58.359375, -30.751278 ], [ -58.359375, -33.724340 ], [ -59.062500, -33.724340 ], [ -59.062500, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -36.031332 ], [ -56.953125, -36.031332 ], [ -56.953125, -37.160317 ], [ -57.656250, -37.160317 ], [ -57.656250, -37.718590 ], [ -58.359375, -37.718590 ], [ -58.359375, -38.272689 ], [ -60.468750, -38.272689 ], [ -60.468750, -38.822591 ], [ -62.578125, -38.822591 ], [ -62.578125, -40.979898 ], [ -65.390625, -40.979898 ], [ -65.390625, -42.032974 ], [ -63.984375, -42.032974 ], [ -63.984375, -42.553080 ], [ -64.687500, -42.553080 ], [ -64.687500, -43.068888 ], [ -65.390625, -43.068888 ], [ -65.390625, -44.590467 ], [ -66.796875, -44.590467 ], [ -66.796875, -45.089036 ], [ -67.500000, -45.089036 ], [ -67.500000, -45.583290 ], [ -68.203125, -45.583290 ], [ -68.203125, -46.558860 ], [ -66.796875, -46.558860 ], [ -66.796875, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -48.458352 ], [ -67.500000, -48.458352 ], [ -67.500000, -49.382373 ], [ -68.203125, -49.382373 ], [ -68.203125, -49.837982 ], [ -68.906250, -49.837982 ], [ -68.906250, -50.289339 ], [ -69.609375, -50.289339 ], [ -69.609375, -51.179343 ], [ -68.906250, -51.179343 ], [ -68.906250, -52.052490 ], [ -71.718750, -52.052490 ], [ -71.718750, -51.618017 ], [ -72.421875, -51.618017 ], [ -72.421875, -50.736455 ], [ -73.828125, -50.736455 ], [ -73.828125, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -47.989922 ], [ -73.125000, -47.989922 ], [ -73.125000, -47.040182 ], [ -72.421875, -47.040182 ], [ -72.421875, -46.073231 ], [ -71.718750, -46.073231 ], [ -71.718750, -43.580391 ], [ -72.421875, -43.580391 ], [ -72.421875, -39.909736 ], [ -71.718750, -39.909736 ], [ -71.718750, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -37.718590 ], [ -71.718750, -37.718590 ], [ -71.718750, -36.031332 ], [ -71.015625, -36.031332 ], [ -71.015625, -34.307144 ], [ -70.312500, -34.307144 ], [ -70.312500, -31.952162 ], [ -71.015625, -31.952162 ], [ -71.015625, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -27.683528 ], [ -69.609375, -27.683528 ], [ -69.609375, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -23.885838 ], [ -67.500000, -23.885838 ], [ -67.500000, -21.943046 ], [ -65.390625, -21.943046 ], [ -65.390625, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -63.281250, -21.943046 ] ] ], [ [ [ -54.140625, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -25.165173 ], [ -54.140625, -25.165173 ], [ -54.140625, -27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.751278 ], [ -55.546875, -30.751278 ], [ -55.546875, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.952162 ], [ -53.437500, -31.952162 ], [ -53.437500, -34.307144 ], [ -54.140625, -34.307144 ], [ -54.140625, -34.885931 ], [ -56.953125, -34.885931 ], [ -56.953125, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -31.353637 ], [ -57.656250, -31.353637 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -32.546813 ], [ -53.437500, -32.546813 ], [ -53.437500, -33.137551 ], [ -54.140625, -33.137551 ], [ -54.140625, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -34.307144 ], [ -54.140625, -34.307144 ], [ -54.140625, -34.885931 ], [ -56.250000, -34.885931 ], [ -56.250000, -34.307144 ], [ -59.062500, -34.307144 ], [ -59.062500, -33.724340 ], [ -58.359375, -33.724340 ], [ -58.359375, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -51.618017 ], [ -57.656250, -52.052490 ], [ -59.765625, -52.052490 ], [ -59.765625, -52.482780 ], [ -61.171875, -52.482780 ], [ -61.171875, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -51.618017 ], [ -57.656250, -51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -51.179343 ], [ -58.359375, -52.052490 ], [ -61.875000, -52.052490 ], [ -61.875000, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.179343 ], [ -58.359375, -51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.468750, -79.812302 ], [ -60.468750, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.760615 ], [ -60.468750, -80.760615 ], [ -60.468750, -80.983688 ], [ -61.875000, -80.983688 ], [ -61.875000, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.297927 ], [ -63.281250, -80.297927 ], [ -63.281250, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.178713 ], [ -61.171875, -80.178713 ], [ -61.171875, -79.812302 ], [ -60.468750, -79.812302 ] ] ], [ [ [ -169.453125, -83.979259 ], [ -169.453125, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.125000, -84.928321 ], [ -163.125000, -85.051129 ], [ -162.421875, -85.051129 ], [ -162.421875, -85.111416 ], [ -161.718750, -85.111416 ], [ -161.718750, -85.170970 ], [ -161.015625, -85.170970 ], [ -161.015625, -85.229801 ], [ -159.609375, -85.229801 ], [ -159.609375, -85.287916 ], [ -158.906250, -85.287916 ], [ -158.906250, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.267172 ], [ -182.812500, -84.267172 ], [ -182.812500, -84.336980 ], [ -182.109375, -84.336980 ], [ -182.109375, -84.474065 ], [ -181.406250, -84.474065 ], [ -181.406250, -84.541361 ], [ -180.703125, -84.541361 ], [ -180.703125, -84.673513 ], [ -180.000000, -84.673513 ], [ -180.000000, -84.474065 ], [ -179.296875, -84.474065 ], [ -179.296875, -84.196507 ], [ -178.593750, -84.196507 ], [ -178.593750, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.474065 ], [ -177.187500, -84.474065 ], [ -177.187500, -84.336980 ], [ -176.484375, -84.336980 ], [ -176.484375, -84.196507 ], [ -175.781250, -84.196507 ], [ -175.781250, -84.267172 ], [ -175.078125, -84.267172 ], [ -175.078125, -84.474065 ], [ -173.671875, -84.474065 ], [ -173.671875, -84.267172 ], [ -172.968750, -84.267172 ], [ -172.968750, -84.052561 ], [ -171.562500, -84.052561 ], [ -171.562500, -83.979259 ], [ -169.453125, -83.979259 ] ] ], [ [ [ -156.796875, -85.345325 ], [ -156.796875, -85.229801 ], [ -156.093750, -85.229801 ], [ -156.093750, -85.170970 ], [ -153.984375, -85.170970 ], [ -153.984375, -85.229801 ], [ -152.578125, -85.229801 ], [ -152.578125, -85.287916 ], [ -151.171875, -85.287916 ], [ -151.171875, -85.345325 ], [ -156.796875, -85.345325 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -153.281250, -81.201420 ], [ -153.281250, -81.093214 ], [ -151.171875, -81.093214 ], [ -151.171875, -81.308321 ], [ -149.765625, -81.308321 ], [ -149.765625, -81.201420 ], [ -149.062500, -81.201420 ], [ -149.062500, -81.093214 ], [ -148.359375, -81.093214 ], [ -148.359375, -80.872827 ], [ -147.656250, -80.872827 ], [ -147.656250, -80.760615 ], [ -146.953125, -80.760615 ], [ -146.953125, -80.532071 ], [ -146.250000, -80.532071 ], [ -146.250000, -80.178713 ], [ -146.953125, -80.178713 ], [ -146.953125, -79.935918 ], [ -147.656250, -79.935918 ], [ -147.656250, -79.812302 ], [ -148.359375, -79.812302 ], [ -148.359375, -79.687184 ], [ -149.062500, -79.687184 ], [ -149.062500, -79.432371 ], [ -149.765625, -79.432371 ], [ -149.765625, -79.302640 ], [ -153.281250, -79.302640 ], [ -153.281250, -79.171335 ], [ -154.687500, -79.171335 ], [ -154.687500, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -156.796875, -78.630006 ], [ -156.796875, -78.490552 ], [ -157.500000, -78.490552 ], [ -157.500000, -78.206563 ], [ -158.203125, -78.206563 ], [ -158.203125, -77.157163 ], [ -157.500000, -77.157163 ], [ -157.500000, -77.312520 ], [ -155.390625, -77.312520 ], [ -155.390625, -77.157163 ], [ -153.281250, -77.157163 ], [ -153.281250, -77.466028 ], [ -150.468750, -77.466028 ], [ -150.468750, -77.312520 ], [ -149.765625, -77.312520 ], [ -149.765625, -76.999935 ], [ -149.062500, -76.999935 ], [ -149.062500, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.320025 ], [ -144.140625, -75.320025 ], [ -144.140625, -75.497157 ], [ -142.734375, -75.497157 ], [ -142.734375, -75.320025 ], [ -141.328125, -75.320025 ], [ -141.328125, -75.140778 ], [ -138.515625, -75.140778 ], [ -138.515625, -74.959392 ], [ -137.812500, -74.959392 ], [ -137.812500, -74.775843 ], [ -136.406250, -74.775843 ], [ -136.406250, -74.590108 ], [ -135.703125, -74.590108 ], [ -135.703125, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.590108 ], [ -119.531250, -74.590108 ], [ -119.531250, -74.402163 ], [ -118.828125, -74.402163 ], [ -118.828125, -74.211983 ], [ -115.312500, -74.211983 ], [ -115.312500, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.824820 ], [ -113.203125, -73.824820 ], [ -113.203125, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.775843 ], [ -111.796875, -74.775843 ], [ -111.796875, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.959392 ], [ -108.984375, -74.959392 ], [ -108.984375, -75.140778 ], [ -104.765625, -75.140778 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -99.843750, -75.140778 ], [ -99.843750, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.656250, -74.211983 ], [ -102.656250, -74.019543 ], [ -103.359375, -74.019543 ], [ -103.359375, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -73.022592 ], [ -98.437500, -73.022592 ], [ -98.437500, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.627789 ], [ -94.921875, -73.627789 ], [ -94.921875, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.428424 ], [ -90.000000, -73.428424 ], [ -90.000000, -73.022592 ], [ -89.296875, -73.022592 ], [ -89.296875, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.226700 ], [ -85.078125, -73.226700 ], [ -85.078125, -73.428424 ], [ -83.671875, -73.428424 ], [ -83.671875, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.627789 ], [ -76.640625, -73.627789 ], [ -76.640625, -73.824820 ], [ -75.937500, -73.824820 ], [ -75.937500, -74.019543 ], [ -75.234375, -74.019543 ], [ -75.234375, -73.824820 ], [ -73.828125, -73.824820 ], [ -73.828125, -73.627789 ], [ -73.125000, -73.627789 ], [ -73.125000, -73.428424 ], [ -71.718750, -73.428424 ], [ -71.718750, -73.226700 ], [ -68.906250, -73.226700 ], [ -68.906250, -73.022592 ], [ -68.203125, -73.022592 ], [ -68.203125, -72.607120 ], [ -67.500000, -72.607120 ], [ -67.500000, -72.181804 ], [ -66.796875, -72.181804 ], [ -66.796875, -71.965388 ], [ -67.500000, -71.965388 ], [ -67.500000, -71.074056 ], [ -68.203125, -71.074056 ], [ -68.203125, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.395706 ], [ -69.609375, -72.395706 ], [ -69.609375, -72.607120 ], [ -72.421875, -72.607120 ], [ -72.421875, -72.395706 ], [ -71.718750, -72.395706 ], [ -71.718750, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -75.234375, -72.181804 ], [ -75.234375, -71.746432 ], [ -74.531250, -71.746432 ], [ -74.531250, -71.524909 ], [ -73.828125, -71.524909 ], [ -73.828125, -71.300793 ], [ -72.421875, -71.300793 ], [ -72.421875, -71.074056 ], [ -71.718750, -71.074056 ], [ -71.718750, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -68.911005 ], [ -70.312500, -68.911005 ], [ -70.312500, -69.162558 ], [ -69.609375, -69.162558 ], [ -69.609375, -69.900118 ], [ -68.906250, -69.900118 ], [ -68.906250, -70.844673 ], [ -68.203125, -70.844673 ], [ -68.203125, -68.911005 ], [ -67.500000, -68.911005 ], [ -67.500000, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.093750, -66.513260 ], [ -66.093750, -66.231457 ], [ -65.390625, -66.231457 ], [ -65.390625, -65.946472 ], [ -64.687500, -65.946472 ], [ -64.687500, -65.366837 ], [ -63.984375, -65.366837 ], [ -63.984375, -65.072130 ], [ -63.281250, -65.072130 ], [ -63.281250, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.231457 ], [ -61.875000, -66.231457 ], [ -61.875000, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -67.067433 ], [ -64.687500, -67.067433 ], [ -64.687500, -67.339861 ], [ -65.390625, -67.339861 ], [ -65.390625, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.411242 ], [ -62.578125, -69.411242 ], [ -62.578125, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.844673 ], [ -61.171875, -70.844673 ], [ -61.171875, -73.022592 ], [ -60.468750, -73.022592 ], [ -60.468750, -73.428424 ], [ -61.171875, -73.428424 ], [ -61.171875, -74.211983 ], [ -61.875000, -74.211983 ], [ -61.875000, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.984375, -74.775843 ], [ -63.984375, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -76.016094 ], [ -68.203125, -76.016094 ], [ -68.203125, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.516819 ], [ -70.312500, -76.516819 ], [ -70.312500, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.999935 ], [ -76.640625, -76.999935 ], [ -76.640625, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.061989 ], [ -76.640625, -78.061989 ], [ -76.640625, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.302640 ], [ -77.343750, -79.302640 ], [ -77.343750, -79.560546 ], [ -76.640625, -79.560546 ], [ -76.640625, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.308321 ], [ -68.203125, -81.308321 ], [ -68.203125, -81.413933 ], [ -66.796875, -81.413933 ], [ -66.796875, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.621352 ], [ -63.984375, -81.621352 ], [ -63.984375, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.823794 ], [ -62.578125, -81.823794 ], [ -62.578125, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.402423 ], [ -59.765625, -82.402423 ], [ -59.765625, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -83.026219 ], [ -58.359375, -83.026219 ], [ -58.359375, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.250000, -82.853382 ], [ -56.250000, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -82.308893 ], [ -53.437500, -82.308893 ], [ -53.437500, -82.214217 ], [ -52.734375, -82.214217 ], [ -52.734375, -82.118384 ], [ -51.328125, -82.118384 ], [ -51.328125, -82.021378 ], [ -50.625000, -82.021378 ], [ -50.625000, -81.823794 ], [ -49.921875, -81.823794 ], [ -49.921875, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -82.021378 ], [ -43.593750, -82.021378 ], [ -43.593750, -82.118384 ], [ -42.890625, -82.118384 ], [ -42.890625, -81.923186 ], [ -42.187500, -81.923186 ], [ -42.187500, -81.621352 ], [ -41.484375, -81.621352 ], [ -41.484375, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.201420 ], [ -36.562500, -81.201420 ], [ -36.562500, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.760615 ], [ -30.937500, -80.760615 ], [ -30.937500, -80.647035 ], [ -29.531250, -80.647035 ], [ -29.531250, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.302640 ], [ -32.343750, -79.302640 ], [ -32.343750, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.061989 ], [ -33.750000, -78.061989 ], [ -33.750000, -77.915669 ], [ -33.046875, -77.915669 ], [ -33.046875, -77.767582 ], [ -32.343750, -77.767582 ], [ -32.343750, -77.617709 ], [ -31.640625, -77.617709 ], [ -31.640625, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.312520 ], [ -30.234375, -77.312520 ], [ -30.234375, -77.157163 ], [ -29.531250, -77.157163 ], [ -29.531250, -76.840816 ], [ -28.828125, -76.840816 ], [ -28.828125, -76.679785 ], [ -27.421875, -76.679785 ], [ -27.421875, -76.516819 ], [ -26.015625, -76.516819 ], [ -26.015625, -76.351896 ], [ -23.906250, -76.351896 ], [ -23.906250, -76.184995 ], [ -21.796875, -76.184995 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.845169 ], [ -19.687500, -75.845169 ], [ -19.687500, -75.672197 ], [ -18.984375, -75.672197 ], [ -18.984375, -75.497157 ], [ -18.281250, -75.497157 ], [ -18.281250, -75.320025 ], [ -17.578125, -75.320025 ], [ -17.578125, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.775843 ], [ -15.468750, -74.775843 ], [ -15.468750, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.428424 ], [ -15.468750, -73.428424 ], [ -15.468750, -73.226700 ], [ -14.062500, -73.226700 ], [ -14.062500, -73.022592 ], [ -13.359375, -73.022592 ], [ -13.359375, -72.816074 ], [ -12.656250, -72.816074 ], [ -12.656250, -72.607120 ], [ -11.953125, -72.607120 ], [ -11.953125, -72.181804 ], [ -11.250000, -72.181804 ], [ -11.250000, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -8.437500, -71.524909 ], [ -8.437500, -71.746432 ], [ -7.734375, -71.746432 ], [ -7.734375, -71.524909 ], [ -7.031250, -71.524909 ], [ -7.031250, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.524909 ], [ -2.812500, -71.524909 ], [ -2.812500, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 3.515625, -71.074056 ], [ 3.515625, -85.345325 ], [ -145.546875, -85.345325 ], [ -145.546875, -85.287916 ], [ -144.843750, -85.287916 ], [ -144.843750, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -84.802474 ], [ -142.734375, -84.802474 ], [ -142.734375, -84.541361 ], [ -147.656250, -84.541361 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.196507 ], [ -150.468750, -84.196507 ], [ -150.468750, -84.052561 ], [ -151.171875, -84.052561 ], [ -151.171875, -83.905058 ], [ -151.875000, -83.905058 ], [ -151.875000, -83.829945 ], [ -152.578125, -83.829945 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -82.676285 ], [ -152.578125, -82.676285 ], [ -152.578125, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.621352 ], [ -155.390625, -81.621352 ], [ -155.390625, -81.413933 ], [ -156.093750, -81.413933 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -162.421875, -78.206563 ], [ -162.421875, -78.349411 ], [ -161.015625, -78.349411 ], [ -161.015625, -78.490552 ], [ -160.312500, -78.490552 ], [ -160.312500, -78.903929 ], [ -159.609375, -78.903929 ], [ -159.609375, -79.302640 ], [ -158.906250, -79.302640 ], [ -158.906250, -79.560546 ], [ -159.609375, -79.560546 ], [ -159.609375, -79.687184 ], [ -161.718750, -79.687184 ], [ -161.718750, -79.432371 ], [ -162.421875, -79.432371 ], [ -162.421875, -79.171335 ], [ -163.125000, -79.171335 ], [ -163.125000, -78.767792 ], [ -163.828125, -78.767792 ], [ -163.828125, -78.490552 ], [ -163.125000, -78.490552 ], [ -163.125000, -78.206563 ], [ -162.421875, -78.206563 ] ] ], [ [ [ -120.937500, -73.428424 ], [ -120.937500, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -121.640625, -74.019543 ], [ -121.640625, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.428424 ], [ -120.937500, -73.428424 ] ] ], [ [ [ -125.859375, -73.428424 ], [ -125.859375, -73.627789 ], [ -124.453125, -73.627789 ], [ -124.453125, -73.824820 ], [ -126.562500, -73.824820 ], [ -126.562500, -73.627789 ], [ -127.265625, -73.627789 ], [ -127.265625, -73.428424 ], [ -125.859375, -73.428424 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.181804 ], [ -102.656250, -72.181804 ], [ -102.656250, -71.965388 ], [ -101.953125, -71.965388 ], [ -101.953125, -71.746432 ], [ -100.546875, -71.746432 ], [ -100.546875, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.395706 ] ] ], [ [ [ -45.703125, -77.915669 ], [ -45.703125, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.206563 ], [ -44.296875, -78.206563 ], [ -44.296875, -78.490552 ], [ -43.593750, -78.490552 ], [ -43.593750, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.415707 ], [ -45.703125, -80.415707 ], [ -45.703125, -80.647035 ], [ -46.406250, -80.647035 ], [ -46.406250, -80.760615 ], [ -47.812500, -80.760615 ], [ -47.812500, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.983688 ], [ -53.437500, -80.983688 ], [ -53.437500, -80.760615 ], [ -54.140625, -80.760615 ], [ -54.140625, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.058050 ], [ -52.031250, -80.058050 ], [ -52.031250, -79.812302 ], [ -51.328125, -79.812302 ], [ -51.328125, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.349411 ], [ -48.515625, -78.349411 ], [ -48.515625, -78.061989 ], [ -47.109375, -78.061989 ], [ -47.109375, -77.915669 ], [ -45.703125, -77.915669 ] ] ], [ [ [ -57.656250, -63.233627 ], [ -57.656250, -63.548552 ], [ -56.953125, -63.548552 ], [ -56.953125, -63.860036 ], [ -57.656250, -63.860036 ], [ -57.656250, -64.168107 ], [ -58.359375, -64.168107 ], [ -58.359375, -64.472794 ], [ -59.765625, -64.472794 ], [ -59.765625, -64.168107 ], [ -59.765625, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.359375, -63.548552 ], [ -58.359375, -63.233627 ], [ -57.656250, -63.233627 ] ] ], [ [ [ -61.171875, -64.472794 ], [ -61.171875, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.472794 ], [ -61.171875, -64.472794 ] ] ], [ [ [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.168107 ], [ -60.468750, -64.168107 ], [ -60.468750, -64.472794 ] ] ], [ [ [ -156.093750, -81.201420 ], [ -156.796875, -81.201420 ], [ -156.796875, -81.093214 ], [ -156.093750, -81.093214 ], [ -156.093750, -81.201420 ] ] ], [ [ [ -97.031250, -72.395706 ], [ -96.328125, -72.395706 ], [ -96.328125, -72.607120 ], [ -97.031250, -72.607120 ], [ -97.031250, -72.395706 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.297927 ], [ -60.468750, -80.297927 ], [ -60.468750, -80.983688 ], [ -61.171875, -80.983688 ], [ -61.171875, -80.872827 ], [ -62.578125, -80.872827 ], [ -62.578125, -80.760615 ], [ -63.281250, -80.760615 ], [ -63.281250, -80.872827 ], [ -65.390625, -80.872827 ], [ -65.390625, -80.647035 ], [ -66.093750, -80.647035 ], [ -66.093750, -80.415707 ], [ -66.796875, -80.415707 ], [ -66.796875, -80.178713 ], [ -63.984375, -80.178713 ], [ -63.984375, -80.297927 ], [ -61.875000, -80.297927 ], [ -61.875000, -80.058050 ], [ -61.171875, -80.058050 ], [ -61.171875, -79.687184 ], [ -60.468750, -79.687184 ] ] ], [ [ [ -170.156250, -83.905058 ], [ -170.156250, -83.979259 ], [ -169.453125, -83.979259 ], [ -169.453125, -84.124973 ], [ -168.750000, -84.124973 ], [ -168.750000, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.990100 ], [ -163.125000, -84.990100 ], [ -163.125000, -85.111416 ], [ -162.421875, -85.111416 ], [ -162.421875, -85.170970 ], [ -161.718750, -85.170970 ], [ -161.718750, -85.229801 ], [ -160.312500, -85.229801 ], [ -160.312500, -85.287916 ], [ -159.609375, -85.287916 ], [ -159.609375, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.267172 ], [ -182.812500, -84.267172 ], [ -182.812500, -84.405941 ], [ -182.109375, -84.405941 ], [ -182.109375, -84.474065 ], [ -181.406250, -84.474065 ], [ -181.406250, -84.541361 ], [ -180.703125, -84.541361 ], [ -180.703125, -84.673513 ], [ -180.000000, -84.673513 ], [ -180.000000, -84.405941 ], [ -179.296875, -84.405941 ], [ -179.296875, -84.196507 ], [ -178.593750, -84.196507 ], [ -178.593750, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.405941 ], [ -177.187500, -84.405941 ], [ -177.187500, -84.267172 ], [ -176.484375, -84.267172 ], [ -176.484375, -84.196507 ], [ -175.781250, -84.196507 ], [ -175.781250, -84.405941 ], [ -174.375000, -84.405941 ], [ -174.375000, -84.196507 ], [ -173.671875, -84.196507 ], [ -173.671875, -84.052561 ], [ -172.265625, -84.052561 ], [ -172.265625, -83.979259 ], [ -170.859375, -83.979259 ], [ -170.859375, -83.905058 ], [ -170.156250, -83.905058 ] ] ], [ [ [ -157.500000, -85.345325 ], [ -157.500000, -85.287916 ], [ -156.796875, -85.287916 ], [ -156.796875, -85.170970 ], [ -156.093750, -85.170970 ], [ -156.093750, -85.111416 ], [ -153.984375, -85.111416 ], [ -153.984375, -85.170970 ], [ -153.281250, -85.170970 ], [ -153.281250, -85.229801 ], [ -151.875000, -85.229801 ], [ -151.875000, -85.287916 ], [ -151.171875, -85.287916 ], [ -151.171875, -85.345325 ], [ -157.500000, -85.345325 ] ] ], [ [ [ -146.250000, -85.345325 ], [ -146.250000, -85.287916 ], [ -145.546875, -85.287916 ], [ -145.546875, -85.229801 ], [ -144.843750, -85.229801 ], [ -144.843750, -85.111416 ], [ -144.140625, -85.111416 ], [ -144.140625, -85.051129 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.541361 ], [ -145.546875, -84.541361 ], [ -145.546875, -84.474065 ], [ -147.656250, -84.474065 ], [ -147.656250, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.336980 ], [ -150.468750, -84.336980 ], [ -150.468750, -84.052561 ], [ -151.171875, -84.052561 ], [ -151.171875, -83.829945 ], [ -152.578125, -83.829945 ], [ -152.578125, -83.753911 ], [ -153.984375, -83.753911 ], [ -153.984375, -83.026219 ], [ -153.281250, -83.026219 ], [ -153.281250, -82.021378 ], [ -153.984375, -82.021378 ], [ -153.984375, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.621352 ], [ -155.390625, -81.621352 ], [ -155.390625, -81.413933 ], [ -156.093750, -81.413933 ], [ -156.093750, -81.308321 ], [ -156.796875, -81.308321 ], [ -156.796875, -81.201420 ], [ -157.500000, -81.201420 ], [ -157.500000, -81.093214 ], [ -153.281250, -81.093214 ], [ -153.281250, -80.983688 ], [ -152.578125, -80.983688 ], [ -152.578125, -81.093214 ], [ -151.875000, -81.093214 ], [ -151.875000, -81.308321 ], [ -150.468750, -81.308321 ], [ -150.468750, -81.201420 ], [ -149.765625, -81.201420 ], [ -149.765625, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -80.983688 ], [ -148.359375, -80.983688 ], [ -148.359375, -80.760615 ], [ -147.656250, -80.760615 ], [ -147.656250, -80.532071 ], [ -146.953125, -80.532071 ], [ -146.953125, -79.812302 ], [ -147.656250, -79.812302 ], [ -147.656250, -79.687184 ], [ -148.359375, -79.687184 ], [ -148.359375, -79.560546 ], [ -149.062500, -79.560546 ], [ -149.062500, -79.432371 ], [ -149.765625, -79.432371 ], [ -149.765625, -79.302640 ], [ -151.171875, -79.302640 ], [ -151.171875, -79.171335 ], [ -153.281250, -79.171335 ], [ -153.281250, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.903929 ], [ -156.093750, -78.903929 ], [ -156.093750, -78.630006 ], [ -156.796875, -78.630006 ], [ -156.796875, -78.490552 ], [ -157.500000, -78.490552 ], [ -157.500000, -78.206563 ], [ -158.203125, -78.206563 ], [ -158.203125, -77.466028 ], [ -158.906250, -77.466028 ], [ -158.906250, -76.840816 ], [ -158.203125, -76.840816 ], [ -158.203125, -76.999935 ], [ -157.500000, -76.999935 ], [ -157.500000, -77.157163 ], [ -153.984375, -77.157163 ], [ -153.984375, -77.312520 ], [ -153.281250, -77.312520 ], [ -153.281250, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.157163 ], [ -149.765625, -77.157163 ], [ -149.765625, -76.999935 ], [ -149.062500, -76.999935 ], [ -149.062500, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.845169 ], [ -146.953125, -75.845169 ], [ -146.953125, -75.497157 ], [ -146.250000, -75.497157 ], [ -146.250000, -75.320025 ], [ -144.843750, -75.320025 ], [ -144.843750, -75.497157 ], [ -143.437500, -75.497157 ], [ -143.437500, -75.320025 ], [ -142.734375, -75.320025 ], [ -142.734375, -75.140778 ], [ -142.031250, -75.140778 ], [ -142.031250, -74.959392 ], [ -138.515625, -74.959392 ], [ -138.515625, -74.775843 ], [ -137.812500, -74.775843 ], [ -137.812500, -74.590108 ], [ -137.109375, -74.590108 ], [ -137.109375, -74.402163 ], [ -135.703125, -74.402163 ], [ -135.703125, -74.211983 ], [ -135.000000, -74.211983 ], [ -135.000000, -74.402163 ], [ -119.531250, -74.402163 ], [ -119.531250, -74.211983 ], [ -118.828125, -74.211983 ], [ -118.828125, -74.019543 ], [ -118.125000, -74.019543 ], [ -118.125000, -74.211983 ], [ -115.312500, -74.211983 ], [ -115.312500, -73.824820 ], [ -113.906250, -73.824820 ], [ -113.906250, -74.211983 ], [ -113.203125, -74.211983 ], [ -113.203125, -74.402163 ], [ -112.500000, -74.402163 ], [ -112.500000, -74.590108 ], [ -111.093750, -74.590108 ], [ -111.093750, -74.775843 ], [ -108.984375, -74.775843 ], [ -108.984375, -74.959392 ], [ -108.281250, -74.959392 ], [ -108.281250, -75.140778 ], [ -106.171875, -75.140778 ], [ -106.171875, -74.959392 ], [ -102.656250, -74.959392 ], [ -102.656250, -75.140778 ], [ -101.250000, -75.140778 ], [ -101.250000, -74.959392 ], [ -100.546875, -74.959392 ], [ -100.546875, -74.590108 ], [ -101.250000, -74.590108 ], [ -101.250000, -74.019543 ], [ -102.656250, -74.019543 ], [ -102.656250, -73.824820 ], [ -103.359375, -73.824820 ], [ -103.359375, -73.022592 ], [ -104.062500, -73.022592 ], [ -104.062500, -72.607120 ], [ -100.546875, -72.607120 ], [ -100.546875, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -73.022592 ], [ -98.437500, -73.022592 ], [ -98.437500, -73.226700 ], [ -97.734375, -73.226700 ], [ -97.734375, -73.428424 ], [ -94.218750, -73.428424 ], [ -94.218750, -73.226700 ], [ -90.703125, -73.226700 ], [ -90.703125, -73.022592 ], [ -90.000000, -73.022592 ], [ -90.000000, -72.607120 ], [ -88.593750, -72.607120 ], [ -88.593750, -73.022592 ], [ -86.484375, -73.022592 ], [ -86.484375, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.428424 ], [ -84.375000, -73.428424 ], [ -84.375000, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.226700 ], [ -80.156250, -73.226700 ], [ -80.156250, -73.428424 ], [ -77.343750, -73.428424 ], [ -77.343750, -73.824820 ], [ -74.531250, -73.824820 ], [ -74.531250, -73.627789 ], [ -73.828125, -73.627789 ], [ -73.828125, -73.428424 ], [ -73.125000, -73.428424 ], [ -73.125000, -73.226700 ], [ -70.312500, -73.226700 ], [ -70.312500, -73.022592 ], [ -69.609375, -73.022592 ], [ -69.609375, -72.816074 ], [ -68.203125, -72.816074 ], [ -68.203125, -72.607120 ], [ -67.500000, -72.607120 ], [ -67.500000, -71.300793 ], [ -68.203125, -71.300793 ], [ -68.203125, -70.612614 ], [ -68.906250, -70.612614 ], [ -68.906250, -72.181804 ], [ -70.312500, -72.181804 ], [ -70.312500, -72.395706 ], [ -72.421875, -72.395706 ], [ -72.421875, -72.181804 ], [ -75.234375, -72.181804 ], [ -75.234375, -71.300793 ], [ -74.531250, -71.300793 ], [ -74.531250, -71.074056 ], [ -72.421875, -71.074056 ], [ -72.421875, -69.162558 ], [ -71.718750, -69.162558 ], [ -71.718750, -68.911005 ], [ -70.312500, -68.911005 ], [ -70.312500, -69.411242 ], [ -69.609375, -69.411242 ], [ -69.609375, -70.140364 ], [ -68.906250, -70.140364 ], [ -68.906250, -69.162558 ], [ -68.203125, -69.162558 ], [ -68.203125, -68.399180 ], [ -67.500000, -68.399180 ], [ -67.500000, -67.875541 ], [ -68.203125, -67.875541 ], [ -68.203125, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.658275 ], [ -64.687500, -65.658275 ], [ -64.687500, -65.072130 ], [ -63.984375, -65.072130 ], [ -63.984375, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -64.472794 ], [ -61.875000, -64.472794 ], [ -61.875000, -64.774125 ], [ -62.578125, -64.774125 ], [ -62.578125, -65.366837 ], [ -63.281250, -65.366837 ], [ -63.281250, -65.946472 ], [ -62.578125, -65.946472 ], [ -62.578125, -66.231457 ], [ -63.984375, -66.231457 ], [ -63.984375, -66.513260 ], [ -64.687500, -66.513260 ], [ -64.687500, -67.067433 ], [ -65.390625, -67.067433 ], [ -65.390625, -67.339861 ], [ -66.093750, -67.339861 ], [ -66.093750, -68.138852 ], [ -65.390625, -68.138852 ], [ -65.390625, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.657086 ], [ -62.578125, -69.657086 ], [ -62.578125, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -72.181804 ], [ -61.171875, -72.181804 ], [ -61.171875, -73.824820 ], [ -61.875000, -73.824820 ], [ -61.875000, -74.211983 ], [ -62.578125, -74.211983 ], [ -62.578125, -74.402163 ], [ -63.984375, -74.402163 ], [ -63.984375, -74.959392 ], [ -64.687500, -74.959392 ], [ -64.687500, -75.320025 ], [ -65.390625, -75.320025 ], [ -65.390625, -75.497157 ], [ -66.093750, -75.497157 ], [ -66.093750, -75.672197 ], [ -67.500000, -75.672197 ], [ -67.500000, -75.845169 ], [ -68.906250, -75.845169 ], [ -68.906250, -76.016094 ], [ -69.609375, -76.016094 ], [ -69.609375, -76.184995 ], [ -70.312500, -76.184995 ], [ -70.312500, -76.351896 ], [ -71.015625, -76.351896 ], [ -71.015625, -76.516819 ], [ -74.531250, -76.516819 ], [ -74.531250, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -77.157163 ], [ -75.937500, -77.157163 ], [ -75.937500, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.617709 ], [ -73.828125, -77.617709 ], [ -73.828125, -77.915669 ], [ -74.531250, -77.915669 ], [ -74.531250, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.302640 ], [ -77.343750, -79.302640 ], [ -77.343750, -79.687184 ], [ -76.640625, -79.687184 ], [ -76.640625, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.415707 ], [ -73.828125, -80.415707 ], [ -73.828125, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.308321 ], [ -67.500000, -81.308321 ], [ -67.500000, -81.413933 ], [ -66.093750, -81.413933 ], [ -66.093750, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.621352 ], [ -63.984375, -81.621352 ], [ -63.984375, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.823794 ], [ -62.578125, -81.823794 ], [ -62.578125, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.308893 ], [ -59.765625, -82.308893 ], [ -59.765625, -82.586106 ], [ -59.062500, -82.586106 ], [ -59.062500, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.853382 ], [ -56.953125, -82.853382 ], [ -56.953125, -82.676285 ], [ -56.250000, -82.676285 ], [ -56.250000, -82.586106 ], [ -55.546875, -82.586106 ], [ -55.546875, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.308893 ], [ -54.140625, -82.308893 ], [ -54.140625, -82.214217 ], [ -53.437500, -82.214217 ], [ -53.437500, -82.118384 ], [ -52.734375, -82.118384 ], [ -52.734375, -82.021378 ], [ -52.031250, -82.021378 ], [ -52.031250, -81.923186 ], [ -51.328125, -81.923186 ], [ -51.328125, -81.823794 ], [ -49.921875, -81.823794 ], [ -49.921875, -81.723188 ], [ -48.515625, -81.723188 ], [ -48.515625, -81.621352 ], [ -47.812500, -81.621352 ], [ -47.812500, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.923186 ], [ -43.593750, -81.923186 ], [ -43.593750, -82.021378 ], [ -42.890625, -82.021378 ], [ -42.890625, -81.823794 ], [ -42.187500, -81.823794 ], [ -42.187500, -81.621352 ], [ -41.484375, -81.621352 ], [ -41.484375, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.308321 ], [ -37.968750, -81.308321 ], [ -37.968750, -81.201420 ], [ -36.562500, -81.201420 ], [ -36.562500, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.760615 ], [ -31.640625, -80.760615 ], [ -31.640625, -80.647035 ], [ -30.234375, -80.647035 ], [ -30.234375, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.178713 ], [ -29.531250, -80.178713 ], [ -29.531250, -79.812302 ], [ -30.234375, -79.812302 ], [ -30.234375, -79.171335 ], [ -31.640625, -79.171335 ], [ -31.640625, -79.302640 ], [ -33.046875, -79.302640 ], [ -33.046875, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -79.302640 ], [ -36.562500, -79.302640 ], [ -36.562500, -78.630006 ], [ -35.859375, -78.630006 ], [ -35.859375, -78.061989 ], [ -35.156250, -78.061989 ], [ -35.156250, -77.915669 ], [ -34.453125, -77.915669 ], [ -34.453125, -77.767582 ], [ -33.046875, -77.767582 ], [ -33.046875, -77.617709 ], [ -32.343750, -77.617709 ], [ -32.343750, -77.466028 ], [ -31.640625, -77.466028 ], [ -31.640625, -77.312520 ], [ -30.937500, -77.312520 ], [ -30.937500, -77.157163 ], [ -30.234375, -77.157163 ], [ -30.234375, -76.840816 ], [ -29.531250, -76.840816 ], [ -29.531250, -76.516819 ], [ -28.125000, -76.516819 ], [ -28.125000, -76.351896 ], [ -26.015625, -76.351896 ], [ -26.015625, -76.184995 ], [ -23.203125, -76.184995 ], [ -23.203125, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.845169 ], [ -20.390625, -75.845169 ], [ -20.390625, -75.672197 ], [ -19.687500, -75.672197 ], [ -19.687500, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.320025 ], [ -18.281250, -75.320025 ], [ -18.281250, -75.140778 ], [ -17.578125, -75.140778 ], [ -17.578125, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.590108 ], [ -16.171875, -74.590108 ], [ -16.171875, -74.211983 ], [ -15.468750, -74.211983 ], [ -15.468750, -74.019543 ], [ -16.875000, -74.019543 ], [ -16.875000, -73.627789 ], [ -16.171875, -73.627789 ], [ -16.171875, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -73.022592 ], [ -14.765625, -73.022592 ], [ -14.765625, -72.816074 ], [ -13.359375, -72.816074 ], [ -13.359375, -72.607120 ], [ -12.656250, -72.607120 ], [ -12.656250, -72.181804 ], [ -11.953125, -72.181804 ], [ -11.953125, -71.746432 ], [ -11.250000, -71.746432 ], [ -11.250000, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -7.734375, -71.524909 ], [ -7.734375, -71.074056 ], [ -7.031250, -71.074056 ], [ -7.031250, -70.844673 ], [ -6.328125, -70.844673 ], [ -6.328125, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.300793 ], [ -3.515625, -71.300793 ], [ -3.515625, -71.074056 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 1.406250, -71.300793 ], [ 1.406250, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.844673 ], [ 3.515625, -70.844673 ], [ 3.515625, -85.345325 ], [ -146.250000, -85.345325 ] ] ], [ [ [ -161.718750, -78.349411 ], [ -161.718750, -78.490552 ], [ -161.015625, -78.490552 ], [ -161.015625, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.903929 ], [ -159.609375, -78.903929 ], [ -159.609375, -79.432371 ], [ -160.312500, -79.432371 ], [ -160.312500, -79.560546 ], [ -162.421875, -79.560546 ], [ -162.421875, -79.302640 ], [ -163.125000, -79.302640 ], [ -163.125000, -78.630006 ], [ -163.828125, -78.630006 ], [ -163.828125, -78.349411 ], [ -161.718750, -78.349411 ] ] ], [ [ [ -121.640625, -73.428424 ], [ -121.640625, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -74.019543 ], [ -121.640625, -74.019543 ], [ -121.640625, -73.824820 ], [ -123.046875, -73.824820 ], [ -123.046875, -73.428424 ], [ -121.640625, -73.428424 ] ] ], [ [ [ -125.859375, -73.428424 ], [ -125.859375, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -73.824820 ], [ -126.562500, -73.824820 ], [ -126.562500, -73.627789 ], [ -127.968750, -73.627789 ], [ -127.968750, -73.428424 ], [ -125.859375, -73.428424 ] ] ], [ [ [ -99.140625, -71.746432 ], [ -99.140625, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -72.181804 ], [ -96.328125, -72.181804 ], [ -96.328125, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -71.965388 ], [ -102.656250, -71.965388 ], [ -102.656250, -71.746432 ], [ -99.140625, -71.746432 ] ] ], [ [ [ -45.703125, -77.915669 ], [ -45.703125, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.767792 ], [ -43.593750, -78.767792 ], [ -43.593750, -80.058050 ], [ -44.296875, -80.058050 ], [ -44.296875, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.415707 ], [ -46.406250, -80.415707 ], [ -46.406250, -80.532071 ], [ -47.109375, -80.532071 ], [ -47.109375, -80.647035 ], [ -47.812500, -80.647035 ], [ -47.812500, -80.760615 ], [ -48.515625, -80.760615 ], [ -48.515625, -80.872827 ], [ -49.921875, -80.872827 ], [ -49.921875, -80.983688 ], [ -52.734375, -80.983688 ], [ -52.734375, -80.872827 ], [ -54.140625, -80.872827 ], [ -54.140625, -80.647035 ], [ -54.843750, -80.647035 ], [ -54.843750, -80.415707 ], [ -54.140625, -80.415707 ], [ -54.140625, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.058050 ], [ -52.031250, -80.058050 ], [ -52.031250, -79.812302 ], [ -51.328125, -79.812302 ], [ -51.328125, -79.432371 ], [ -50.625000, -79.432371 ], [ -50.625000, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.206563 ], [ -49.218750, -78.206563 ], [ -49.218750, -77.915669 ], [ -45.703125, -77.915669 ] ] ], [ [ [ -57.656250, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -64.168107 ], [ -61.171875, -64.168107 ], [ -61.171875, -63.860036 ], [ -59.765625, -63.860036 ], [ -59.765625, -63.548552 ], [ -59.062500, -63.548552 ], [ -59.062500, -63.233627 ], [ -57.656250, -63.233627 ], [ -57.656250, -63.860036 ] ] ], [ [ [ -61.171875, -64.168107 ], [ -61.171875, -64.472794 ], [ -61.875000, -64.472794 ], [ -61.875000, -64.168107 ], [ -61.171875, -64.168107 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, -17.308688 ], [ -181.406250, -17.978733 ], [ -182.109375, -17.978733 ], [ -182.109375, -17.308688 ], [ -181.406250, -17.308688 ] ] ], [ [ [ -180.703125, -16.636192 ], [ -180.703125, -17.308688 ], [ -181.406250, -17.308688 ], [ -181.406250, -16.636192 ], [ -180.703125, -16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, -17.308688 ], [ -181.406250, -17.978733 ], [ -182.812500, -17.978733 ], [ -182.812500, -17.308688 ], [ -181.406250, -17.308688 ] ] ], [ [ [ -180.000000, -15.961329 ], [ -180.000000, -16.636192 ], [ -181.406250, -16.636192 ], [ -181.406250, -15.961329 ], [ -180.000000, -15.961329 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -181.406250, -37.718590 ], [ -181.406250, -39.368279 ], [ -182.812500, -39.368279 ], [ -182.812500, -40.446947 ], [ -183.515625, -40.446947 ], [ -183.515625, -37.718590 ], [ -181.406250, -37.718590 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -182.109375, -37.718590 ], [ -182.109375, -38.822591 ], [ -182.812500, -38.822591 ], [ -182.812500, -39.368279 ], [ -183.515625, -39.368279 ], [ -183.515625, -37.718590 ], [ -182.109375, -37.718590 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.781250, 65.658275 ], [ -86.484375, 65.658275 ], [ -86.484375, 65.072130 ], [ -87.187500, 65.072130 ], [ -87.187500, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.860036 ], [ -90.703125, 63.860036 ], [ -90.703125, 62.915233 ], [ -92.109375, 62.915233 ], [ -92.109375, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 61.606396 ], [ -93.515625, 61.606396 ], [ -93.515625, 60.930432 ], [ -94.218750, 60.930432 ], [ -94.218750, 60.586967 ], [ -94.921875, 60.586967 ], [ -94.921875, 58.813742 ], [ -93.515625, 58.813742 ], [ -93.515625, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.326521 ], [ -92.109375, 57.326521 ], [ -92.109375, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.170023 ], [ -87.187500, 56.170023 ], [ -87.187500, 55.776573 ], [ -85.781250, 55.776573 ], [ -85.781250, 55.379110 ], [ -83.671875, 55.379110 ], [ -83.671875, 54.977614 ], [ -82.265625, 54.977614 ], [ -82.265625, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 51.618017 ], [ -80.859375, 51.618017 ], [ -80.859375, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.453125, 53.330873 ], [ -79.453125, 54.162434 ], [ -80.156250, 54.162434 ], [ -80.156250, 54.572062 ], [ -78.750000, 54.572062 ], [ -78.750000, 54.977614 ], [ -78.046875, 54.977614 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -78.046875, 58.077876 ], [ -78.046875, 58.447733 ], [ -78.750000, 58.447733 ], [ -78.750000, 58.813742 ], [ -78.046875, 58.813742 ], [ -78.046875, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.046875, 60.239811 ], [ -78.046875, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.015625, 61.270233 ], [ -71.015625, 60.930432 ], [ -69.609375, 60.930432 ], [ -69.609375, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.447733 ], [ -67.500000, 58.447733 ], [ -67.500000, 58.077876 ], [ -66.796875, 58.077876 ], [ -66.796875, 58.447733 ], [ -66.093750, 58.447733 ], [ -66.093750, 59.175928 ], [ -65.390625, 59.175928 ], [ -65.390625, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.175928 ], [ -63.281250, 59.175928 ], [ -63.281250, 58.447733 ], [ -62.578125, 58.447733 ], [ -62.578125, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 56.944974 ], [ -61.171875, 56.944974 ], [ -61.171875, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.379110 ], [ -59.062500, 55.379110 ], [ -59.062500, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.330873 ], [ -55.546875, 53.330873 ], [ -55.546875, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -66.093750, 50.289339 ], [ -66.093750, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 48.922499 ], [ -63.984375, 48.922499 ], [ -63.984375, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.390625, 47.989922 ], [ -65.390625, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 45.583290 ], [ -61.875000, 45.583290 ], [ -61.875000, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 46.073231 ], [ -59.765625, 46.073231 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.590467 ], [ -63.281250, 44.590467 ], [ -63.281250, 44.087585 ], [ -63.984375, 44.087585 ], [ -63.984375, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.590467 ], [ -64.687500, 44.590467 ], [ -64.687500, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.558860 ], [ -70.312500, 46.558860 ], [ -70.312500, 45.089036 ], [ -74.531250, 45.089036 ], [ -74.531250, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.553080 ], [ -80.156250, 42.553080 ], [ -80.156250, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.508577 ], [ -82.968750, 41.508577 ], [ -82.968750, 42.553080 ], [ -82.265625, 42.553080 ], [ -82.265625, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 46.073231 ], [ -84.375000, 46.073231 ], [ -84.375000, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -86.484375, 47.040182 ], [ -86.484375, 47.517201 ], [ -87.187500, 47.517201 ], [ -87.187500, 47.989922 ], [ -92.812500, 47.989922 ], [ -92.812500, 48.458352 ], [ -94.921875, 48.458352 ], [ -94.921875, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 49.382373 ], [ -125.156250, 49.382373 ], [ -125.156250, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.382373 ], [ -127.265625, 49.382373 ], [ -127.265625, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 50.289339 ], [ -128.671875, 50.289339 ], [ -128.671875, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.748711 ], [ -130.781250, 53.748711 ], [ -130.781250, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.776573 ], [ -130.781250, 55.776573 ], [ -130.781250, 56.170023 ], [ -131.484375, 56.170023 ], [ -131.484375, 56.559482 ], [ -132.187500, 56.559482 ], [ -132.187500, 57.326521 ], [ -132.890625, 57.326521 ], [ -132.890625, 58.077876 ], [ -133.593750, 58.077876 ], [ -133.593750, 58.447733 ], [ -134.296875, 58.447733 ], [ -134.296875, 58.813742 ], [ -135.000000, 58.813742 ], [ -135.000000, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.813742 ], [ -137.812500, 58.813742 ], [ -137.812500, 59.175928 ], [ -138.515625, 59.175928 ], [ -138.515625, 59.534318 ], [ -139.218750, 59.534318 ], [ -139.218750, 59.888937 ], [ -139.921875, 59.888937 ], [ -139.921875, 60.239811 ], [ -141.328125, 60.239811 ], [ -141.328125, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 69.411242 ], [ -139.218750, 69.411242 ], [ -139.218750, 69.162558 ], [ -138.515625, 69.162558 ], [ -138.515625, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.411242 ], [ -132.187500, 69.411242 ], [ -132.187500, 69.657086 ], [ -131.484375, 69.657086 ], [ -131.484375, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.140364 ], [ -127.968750, 70.140364 ], [ -127.968750, 70.377854 ], [ -127.265625, 70.377854 ], [ -127.265625, 70.140364 ], [ -126.562500, 70.140364 ], [ -126.562500, 69.657086 ], [ -125.859375, 69.657086 ], [ -125.859375, 69.411242 ], [ -125.156250, 69.411242 ], [ -125.156250, 69.900118 ], [ -124.453125, 69.900118 ], [ -124.453125, 69.411242 ], [ -123.046875, 69.411242 ], [ -123.046875, 69.657086 ], [ -122.343750, 69.657086 ], [ -122.343750, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.411242 ], [ -120.234375, 69.411242 ], [ -120.234375, 69.162558 ], [ -118.828125, 69.162558 ], [ -118.828125, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 67.609221 ], [ -111.796875, 67.609221 ], [ -111.796875, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -108.984375, 67.609221 ], [ -108.984375, 67.339861 ], [ -108.281250, 67.339861 ], [ -108.281250, 67.609221 ], [ -107.578125, 67.609221 ], [ -107.578125, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.399180 ], [ -108.281250, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.399180 ], [ -104.765625, 68.399180 ], [ -104.765625, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 67.875541 ], [ -101.953125, 67.875541 ], [ -101.953125, 67.609221 ], [ -99.843750, 67.609221 ], [ -99.843750, 67.875541 ], [ -98.437500, 67.875541 ], [ -98.437500, 68.399180 ], [ -97.031250, 68.399180 ], [ -97.031250, 68.138852 ], [ -96.328125, 68.138852 ], [ -96.328125, 67.609221 ], [ -95.625000, 67.609221 ], [ -95.625000, 68.138852 ], [ -94.921875, 68.138852 ], [ -94.921875, 68.656555 ], [ -94.218750, 68.656555 ], [ -94.218750, 69.162558 ], [ -94.921875, 69.162558 ], [ -94.921875, 69.411242 ], [ -95.625000, 69.411242 ], [ -95.625000, 69.900118 ], [ -96.328125, 69.900118 ], [ -96.328125, 71.300793 ], [ -95.625000, 71.300793 ], [ -95.625000, 71.746432 ], [ -94.218750, 71.746432 ], [ -94.218750, 71.524909 ], [ -93.515625, 71.524909 ], [ -93.515625, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.377854 ], [ -91.406250, 70.377854 ], [ -91.406250, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.411242 ], [ -90.703125, 69.411242 ], [ -90.703125, 68.399180 ], [ -90.000000, 68.399180 ], [ -90.000000, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.656555 ], [ -87.890625, 68.656555 ], [ -87.890625, 68.138852 ], [ -88.593750, 68.138852 ], [ -88.593750, 67.609221 ], [ -87.890625, 67.609221 ], [ -87.890625, 67.067433 ], [ -87.187500, 67.067433 ], [ -87.187500, 67.339861 ], [ -86.484375, 67.339861 ], [ -86.484375, 68.399180 ], [ -85.781250, 68.399180 ], [ -85.781250, 69.900118 ], [ -85.781250, 70.140364 ], [ -87.187500, 70.140364 ], [ -87.187500, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 72.607120 ], [ -89.296875, 72.607120 ], [ -89.296875, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.627789 ], [ -86.484375, 73.627789 ], [ -86.484375, 73.824820 ], [ -85.781250, 73.824820 ], [ -85.781250, 73.428424 ], [ -86.484375, 73.428424 ], [ -86.484375, 72.816074 ], [ -85.781250, 72.816074 ], [ -85.781250, 73.022592 ], [ -85.078125, 73.022592 ], [ -85.078125, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.627789 ], [ -82.265625, 73.627789 ], [ -82.265625, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 71.965388 ], [ -80.156250, 71.965388 ], [ -80.156250, 72.181804 ], [ -78.750000, 72.181804 ], [ -78.750000, 72.607120 ], [ -77.343750, 72.607120 ], [ -77.343750, 72.395706 ], [ -76.640625, 72.395706 ], [ -76.640625, 72.181804 ], [ -75.937500, 72.181804 ], [ -75.937500, 71.965388 ], [ -75.234375, 71.965388 ], [ -75.234375, 71.746432 ], [ -74.531250, 71.746432 ], [ -74.531250, 71.524909 ], [ -73.828125, 71.524909 ], [ -73.828125, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.377854 ], [ -68.203125, 70.377854 ], [ -68.203125, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.411242 ], [ -66.796875, 69.411242 ], [ -66.796875, 68.911005 ], [ -68.203125, 68.911005 ], [ -68.203125, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.138852 ], [ -66.093750, 68.138852 ], [ -66.093750, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.609221 ], [ -63.984375, 67.609221 ], [ -63.984375, 67.067433 ], [ -63.281250, 67.067433 ], [ -63.281250, 66.791909 ], [ -61.875000, 66.791909 ], [ -61.875000, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -63.281250, 65.658275 ], [ -63.281250, 65.072130 ], [ -65.390625, 65.072130 ], [ -65.390625, 65.658275 ], [ -66.093750, 65.658275 ], [ -66.093750, 66.231457 ], [ -68.203125, 66.231457 ], [ -68.203125, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.774125 ], [ -65.390625, 64.774125 ], [ -65.390625, 63.860036 ], [ -64.687500, 63.860036 ], [ -64.687500, 62.593341 ], [ -66.093750, 62.593341 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.233627 ], [ -68.203125, 63.233627 ], [ -68.203125, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.093750, 62.267923 ], [ -66.093750, 61.938950 ], [ -68.203125, 61.938950 ], [ -68.203125, 62.267923 ], [ -69.609375, 62.267923 ], [ -69.609375, 62.593341 ], [ -71.015625, 62.593341 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.421875, 63.233627 ], [ -72.421875, 63.860036 ], [ -73.125000, 63.860036 ], [ -73.125000, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.472794 ], [ -75.937500, 64.472794 ], [ -75.937500, 64.168107 ], [ -78.750000, 64.168107 ], [ -78.750000, 64.774125 ], [ -78.046875, 64.774125 ], [ -78.046875, 65.366837 ], [ -73.828125, 65.366837 ], [ -73.828125, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 65.946472 ], [ -73.828125, 65.946472 ], [ -73.828125, 66.513260 ], [ -73.125000, 66.513260 ], [ -73.125000, 67.067433 ], [ -72.421875, 67.067433 ], [ -72.421875, 67.339861 ], [ -73.125000, 67.339861 ], [ -73.125000, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.656555 ], [ -75.937500, 68.656555 ], [ -75.937500, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -77.343750, 69.411242 ], [ -77.343750, 69.657086 ], [ -78.046875, 69.657086 ], [ -78.046875, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.657086 ], [ -82.968750, 69.657086 ], [ -82.968750, 69.411242 ], [ -82.265625, 69.411242 ], [ -82.265625, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.399180 ], [ -82.265625, 68.399180 ], [ -82.265625, 67.875541 ], [ -81.562500, 67.875541 ], [ -81.562500, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.513260 ], [ -83.671875, 66.513260 ], [ -83.671875, 66.231457 ], [ -85.781250, 66.231457 ], [ -85.781250, 65.658275 ] ], [ [ -67.500000, 48.922499 ], [ -68.203125, 48.922499 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.922499 ] ], [ [ -84.375000, 69.900118 ], [ -84.375000, 69.657086 ], [ -83.671875, 69.657086 ], [ -83.671875, 69.900118 ], [ -84.375000, 69.900118 ] ] ], [ [ [ -79.453125, 62.267923 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 62.267923 ], [ -79.453125, 62.267923 ] ] ], [ [ [ -55.546875, 51.179343 ], [ -55.546875, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.289339 ], [ -56.953125, 50.289339 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.437500, 49.382373 ], [ -53.437500, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -55.546875, 47.040182 ], [ -55.546875, 47.517201 ], [ -59.765625, 47.517201 ], [ -59.765625, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 48.458352 ], [ -58.359375, 48.458352 ], [ -58.359375, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 51.179343 ], [ -55.546875, 51.179343 ] ] ], [ [ [ -81.562500, 62.915233 ], [ -81.562500, 62.267923 ], [ -83.671875, 62.267923 ], [ -83.671875, 62.593341 ], [ -82.968750, 62.593341 ], [ -82.968750, 62.915233 ], [ -81.562500, 62.915233 ] ] ], [ [ [ -62.578125, 49.837982 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 48.922499 ], [ -63.281250, 48.922499 ], [ -63.281250, 49.382373 ], [ -64.687500, 49.382373 ], [ -64.687500, 49.837982 ], [ -62.578125, 49.837982 ] ] ], [ [ [ -132.187500, 52.482780 ], [ -132.890625, 52.482780 ], [ -132.890625, 54.162434 ], [ -131.484375, 54.162434 ], [ -131.484375, 53.330873 ], [ -132.187500, 53.330873 ], [ -132.187500, 52.482780 ] ] ], [ [ [ -97.031250, 69.900118 ], [ -97.031250, 69.657086 ], [ -96.328125, 69.657086 ], [ -96.328125, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 68.911005 ], [ -96.328125, 68.911005 ], [ -96.328125, 68.656555 ], [ -97.031250, 68.656555 ], [ -97.031250, 68.911005 ], [ -99.140625, 68.911005 ], [ -99.140625, 69.162558 ], [ -99.843750, 69.162558 ], [ -99.843750, 69.411242 ], [ -99.140625, 69.411242 ], [ -99.140625, 69.900118 ], [ -97.031250, 69.900118 ] ] ], [ [ [ -93.515625, 74.211983 ], [ -93.515625, 74.019543 ], [ -92.109375, 74.019543 ], [ -92.109375, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.627789 ], [ -91.406250, 73.627789 ], [ -91.406250, 73.226700 ], [ -92.109375, 73.226700 ], [ -92.109375, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 71.965388 ], [ -95.625000, 71.965388 ], [ -95.625000, 72.395706 ], [ -96.328125, 72.395706 ], [ -96.328125, 72.181804 ], [ -97.031250, 72.181804 ], [ -97.031250, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.546875, 71.746432 ], [ -100.546875, 71.965388 ], [ -101.250000, 71.965388 ], [ -101.250000, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.816074 ], [ -101.953125, 72.816074 ], [ -101.953125, 72.607120 ], [ -100.546875, 72.607120 ], [ -100.546875, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.627789 ], [ -97.734375, 73.627789 ], [ -97.734375, 73.824820 ], [ -97.031250, 73.824820 ], [ -97.031250, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 72.816074 ], [ -97.031250, 72.816074 ], [ -97.031250, 72.607120 ], [ -96.328125, 72.607120 ], [ -96.328125, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -94.921875, 73.824820 ], [ -94.921875, 74.019543 ], [ -94.218750, 74.019543 ], [ -94.218750, 74.211983 ], [ -93.515625, 74.211983 ] ] ], [ [ [ -85.781250, 77.617709 ], [ -85.781250, 77.915669 ], [ -86.484375, 77.915669 ], [ -86.484375, 78.206563 ], [ -87.890625, 78.206563 ], [ -87.890625, 78.490552 ], [ -87.187500, 78.490552 ], [ -87.187500, 78.767792 ], [ -86.484375, 78.767792 ], [ -86.484375, 78.903929 ], [ -85.078125, 78.903929 ], [ -85.078125, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 80.297927 ], [ -86.484375, 80.297927 ], [ -86.484375, 80.178713 ], [ -84.375000, 80.178713 ], [ -84.375000, 80.058050 ], [ -82.968750, 80.058050 ], [ -82.968750, 80.178713 ], [ -82.265625, 80.178713 ], [ -82.265625, 80.297927 ], [ -81.562500, 80.297927 ], [ -81.562500, 80.415707 ], [ -83.671875, 80.415707 ], [ -83.671875, 80.532071 ], [ -88.593750, 80.532071 ], [ -88.593750, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 81.093214 ], [ -90.000000, 81.093214 ], [ -90.000000, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.406250, 81.413933 ], [ -91.406250, 81.923186 ], [ -90.703125, 81.923186 ], [ -90.703125, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.118384 ], [ -87.890625, 82.118384 ], [ -87.890625, 82.214217 ], [ -87.187500, 82.214217 ], [ -87.187500, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.308893 ], [ -82.968750, 82.308893 ], [ -82.968750, 82.586106 ], [ -82.265625, 82.586106 ], [ -82.265625, 82.853382 ], [ -81.562500, 82.853382 ], [ -81.562500, 82.940327 ], [ -80.859375, 82.940327 ], [ -80.859375, 83.026219 ], [ -79.453125, 83.026219 ], [ -79.453125, 83.111071 ], [ -77.343750, 83.111071 ], [ -77.343750, 83.194896 ], [ -75.937500, 83.194896 ], [ -75.937500, 83.026219 ], [ -74.531250, 83.026219 ], [ -74.531250, 83.111071 ], [ -73.125000, 83.111071 ], [ -73.125000, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.111071 ], [ -67.500000, 83.111071 ], [ -67.500000, 83.026219 ], [ -65.390625, 83.026219 ], [ -65.390625, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.586106 ], [ -61.875000, 82.586106 ], [ -61.875000, 82.308893 ], [ -62.578125, 82.308893 ], [ -62.578125, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 81.923186 ], [ -63.984375, 81.923186 ], [ -63.984375, 81.823794 ], [ -65.390625, 81.823794 ], [ -65.390625, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.621352 ], [ -67.500000, 81.621352 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.413933 ], [ -66.093750, 81.413933 ], [ -66.093750, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.760615 ], [ -68.906250, 80.760615 ], [ -68.906250, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.812302 ], [ -71.718750, 79.812302 ], [ -71.718750, 79.687184 ], [ -73.125000, 79.687184 ], [ -73.125000, 79.560546 ], [ -73.828125, 79.560546 ], [ -73.828125, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.171335 ], [ -75.234375, 79.171335 ], [ -75.234375, 79.038437 ], [ -75.937500, 79.038437 ], [ -75.937500, 78.767792 ], [ -75.234375, 78.767792 ], [ -75.234375, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.640625, 78.206563 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.312520 ], [ -78.750000, 77.312520 ], [ -78.750000, 77.157163 ], [ -79.453125, 77.157163 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.184995 ], [ -81.562500, 76.184995 ], [ -81.562500, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.516819 ], [ -83.671875, 76.516819 ], [ -83.671875, 76.351896 ], [ -89.296875, 76.351896 ], [ -89.296875, 76.999935 ], [ -87.890625, 76.999935 ], [ -87.890625, 77.466028 ], [ -88.593750, 77.466028 ], [ -88.593750, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.767582 ], [ -87.187500, 77.767582 ], [ -87.187500, 77.617709 ], [ -85.781250, 77.617709 ] ], [ [ -85.781250, 77.617709 ], [ -85.781250, 77.466028 ], [ -85.078125, 77.466028 ], [ -85.078125, 77.617709 ], [ -85.781250, 77.617709 ] ] ], [ [ [ -106.171875, 73.022592 ], [ -106.171875, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.627789 ], [ -105.468750, 73.627789 ], [ -105.468750, 73.428424 ], [ -104.765625, 73.428424 ], [ -104.765625, 73.022592 ], [ -105.468750, 73.022592 ], [ -105.468750, 72.816074 ], [ -105.468750, 72.181804 ], [ -104.765625, 72.181804 ], [ -104.765625, 70.844673 ], [ -103.359375, 70.844673 ], [ -103.359375, 70.612614 ], [ -102.656250, 70.612614 ], [ -102.656250, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.411242 ], [ -102.656250, 69.411242 ], [ -102.656250, 69.162558 ], [ -101.953125, 69.162558 ], [ -101.953125, 68.911005 ], [ -102.656250, 68.911005 ], [ -102.656250, 68.656555 ], [ -104.062500, 68.656555 ], [ -104.062500, 68.911005 ], [ -105.468750, 68.911005 ], [ -105.468750, 69.162558 ], [ -106.875000, 69.162558 ], [ -106.875000, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 69.162558 ], [ -116.718750, 69.162558 ], [ -116.718750, 69.657086 ], [ -117.421875, 69.657086 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.140364 ], [ -112.500000, 70.140364 ], [ -112.500000, 70.377854 ], [ -113.906250, 70.377854 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -117.421875, 70.844673 ], [ -117.421875, 71.074056 ], [ -116.015625, 71.074056 ], [ -116.015625, 71.300793 ], [ -118.828125, 71.300793 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.965388 ], [ -118.828125, 71.965388 ], [ -118.828125, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.421875, 72.607120 ], [ -117.421875, 72.816074 ], [ -116.015625, 72.816074 ], [ -116.015625, 73.022592 ], [ -113.906250, 73.022592 ], [ -113.906250, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.395706 ], [ -110.390625, 72.395706 ], [ -110.390625, 72.816074 ], [ -108.984375, 72.816074 ], [ -108.984375, 72.181804 ], [ -108.281250, 72.181804 ], [ -108.281250, 71.746432 ], [ -107.578125, 71.746432 ], [ -107.578125, 72.395706 ], [ -108.281250, 72.395706 ], [ -108.281250, 73.022592 ], [ -106.171875, 73.022592 ] ], [ [ -113.906250, 72.816074 ], [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.816074 ] ] ], [ [ [ -92.109375, 81.308321 ], [ -92.109375, 80.983688 ], [ -91.406250, 80.983688 ], [ -91.406250, 80.647035 ], [ -90.000000, 80.647035 ], [ -90.000000, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 79.935918 ], [ -87.187500, 79.935918 ], [ -87.187500, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.302640 ], [ -85.781250, 79.302640 ], [ -85.781250, 79.171335 ], [ -86.484375, 79.171335 ], [ -86.484375, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.890625, 78.903929 ], [ -87.890625, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.349411 ], [ -89.296875, 78.349411 ], [ -89.296875, 78.206563 ], [ -92.109375, 78.206563 ], [ -92.109375, 78.349411 ], [ -93.515625, 78.349411 ], [ -93.515625, 78.630006 ], [ -94.218750, 78.630006 ], [ -94.218750, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -92.812500, 79.302640 ], [ -92.812500, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -96.328125, 79.560546 ], [ -96.328125, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -96.328125, 80.415707 ], [ -96.328125, 80.760615 ], [ -95.625000, 80.760615 ], [ -95.625000, 80.872827 ], [ -94.218750, 80.872827 ], [ -94.218750, 81.093214 ], [ -94.921875, 81.093214 ], [ -94.921875, 81.201420 ], [ -92.812500, 81.201420 ], [ -92.812500, 81.308321 ], [ -92.109375, 81.308321 ] ] ], [ [ [ -94.921875, 77.157163 ], [ -94.921875, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -91.406250, 76.840816 ], [ -91.406250, 76.679785 ], [ -90.703125, 76.679785 ], [ -90.703125, 75.845169 ], [ -90.000000, 75.845169 ], [ -90.000000, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.497157 ], [ -85.078125, 75.497157 ], [ -85.078125, 75.672197 ], [ -83.671875, 75.672197 ], [ -83.671875, 75.845169 ], [ -82.265625, 75.845169 ], [ -82.265625, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.402163 ], [ -82.968750, 74.402163 ], [ -82.968750, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.590108 ], [ -91.406250, 74.590108 ], [ -91.406250, 74.775843 ], [ -92.109375, 74.775843 ], [ -92.109375, 74.959392 ], [ -92.812500, 74.959392 ], [ -92.812500, 75.845169 ], [ -93.515625, 75.845169 ], [ -93.515625, 76.184995 ], [ -94.218750, 76.184995 ], [ -94.218750, 76.351896 ], [ -95.625000, 76.351896 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 77.157163 ], [ -94.921875, 77.157163 ] ] ], [ [ [ -117.421875, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.181804 ], [ -120.234375, 72.181804 ], [ -120.234375, 71.074056 ], [ -121.640625, 71.074056 ], [ -121.640625, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.300793 ], [ -124.453125, 71.300793 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.181804 ], [ -125.156250, 72.181804 ], [ -125.156250, 73.022592 ], [ -124.453125, 73.022592 ], [ -124.453125, 73.428424 ], [ -123.750000, 73.428424 ], [ -123.750000, 73.627789 ], [ -124.453125, 73.627789 ], [ -124.453125, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.211983 ], [ -123.046875, 74.211983 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ], [ -121.640625, 74.211983 ], [ -117.421875, 74.211983 ], [ -117.421875, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.312500, 73.428424 ], [ -115.312500, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.816074 ] ] ], [ [ [ -75.234375, 68.138852 ], [ -75.234375, 67.067433 ], [ -76.640625, 67.067433 ], [ -76.640625, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.875541 ], [ -76.640625, 67.875541 ], [ -76.640625, 68.138852 ], [ -75.234375, 68.138852 ] ] ], [ [ [ -108.281250, 76.679785 ], [ -108.281250, 76.016094 ], [ -107.578125, 76.016094 ], [ -107.578125, 75.845169 ], [ -106.875000, 75.845169 ], [ -106.875000, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.672197 ], [ -105.468750, 75.672197 ], [ -105.468750, 75.140778 ], [ -106.171875, 75.140778 ], [ -106.171875, 74.959392 ], [ -107.578125, 74.959392 ], [ -107.578125, 74.775843 ], [ -109.687500, 74.775843 ], [ -109.687500, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.959392 ], [ -117.421875, 74.959392 ], [ -117.421875, 75.320025 ], [ -116.718750, 75.320025 ], [ -116.718750, 75.845169 ], [ -116.015625, 75.845169 ], [ -116.015625, 76.351896 ], [ -113.906250, 76.351896 ], [ -113.906250, 76.184995 ], [ -112.500000, 76.184995 ], [ -112.500000, 76.016094 ], [ -111.796875, 76.016094 ], [ -111.796875, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.672197 ], [ -109.687500, 75.672197 ], [ -109.687500, 76.016094 ], [ -110.390625, 76.016094 ], [ -110.390625, 76.516819 ], [ -109.687500, 76.516819 ], [ -109.687500, 76.679785 ], [ -108.281250, 76.679785 ] ], [ [ -113.203125, 75.140778 ], [ -113.203125, 74.959392 ], [ -111.796875, 74.959392 ], [ -111.796875, 75.140778 ], [ -113.203125, 75.140778 ] ] ], [ [ [ -79.453125, 73.824820 ], [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.022592 ], [ -76.640625, 73.022592 ], [ -76.640625, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.627789 ], [ -80.156250, 73.627789 ], [ -80.156250, 73.824820 ], [ -79.453125, 73.824820 ] ] ], [ [ [ -116.015625, 77.466028 ], [ -116.015625, 76.679785 ], [ -116.718750, 76.679785 ], [ -116.718750, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 76.016094 ], [ -120.234375, 76.016094 ], [ -120.234375, 75.845169 ], [ -122.343750, 75.845169 ], [ -122.343750, 76.016094 ], [ -123.046875, 76.016094 ], [ -123.046875, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -120.937500, 76.679785 ], [ -120.937500, 76.840816 ], [ -120.234375, 76.840816 ], [ -120.234375, 77.157163 ], [ -119.531250, 77.157163 ], [ -119.531250, 77.312520 ], [ -118.828125, 77.312520 ], [ -118.828125, 77.466028 ], [ -116.015625, 77.466028 ] ] ], [ [ [ -98.437500, 76.516819 ], [ -98.437500, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ], [ -98.437500, 75.320025 ], [ -98.437500, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.672197 ], [ -101.250000, 75.672197 ], [ -101.250000, 75.497157 ], [ -102.656250, 75.497157 ], [ -102.656250, 76.351896 ], [ -100.546875, 76.351896 ], [ -100.546875, 76.516819 ], [ -98.437500, 76.516819 ] ] ], [ [ [ -104.765625, 79.302640 ], [ -104.765625, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.767792 ], [ -100.546875, 78.767792 ], [ -100.546875, 78.490552 ], [ -99.843750, 78.490552 ], [ -99.843750, 77.915669 ], [ -101.250000, 77.915669 ], [ -101.250000, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.062500, 78.490552 ], [ -104.062500, 78.630006 ], [ -104.765625, 78.630006 ], [ -104.765625, 78.767792 ], [ -105.468750, 78.767792 ], [ -105.468750, 79.302640 ], [ -104.765625, 79.302640 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.775843 ], [ -94.218750, 74.775843 ], [ -94.218750, 74.590108 ], [ -96.328125, 74.590108 ], [ -96.328125, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.320025 ], [ -95.625000, 75.320025 ], [ -95.625000, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -97.031250, 78.767792 ], [ -97.031250, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.349411 ], [ -95.625000, 78.349411 ], [ -95.625000, 77.915669 ], [ -98.437500, 77.915669 ], [ -98.437500, 78.767792 ], [ -97.031250, 78.767792 ] ] ], [ [ [ -109.687500, 78.061989 ], [ -109.687500, 77.915669 ], [ -110.390625, 77.915669 ], [ -110.390625, 77.617709 ], [ -111.093750, 77.617709 ], [ -111.093750, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.915669 ], [ -112.500000, 77.915669 ], [ -112.500000, 78.061989 ], [ -109.687500, 78.061989 ] ] ], [ [ [ -111.093750, 78.767792 ], [ -111.093750, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.349411 ], [ -112.500000, 78.349411 ], [ -112.500000, 78.630006 ], [ -111.796875, 78.630006 ], [ -111.796875, 78.767792 ], [ -111.093750, 78.767792 ] ] ], [ [ [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -93.515625, 77.617709 ], [ -93.515625, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -94.218750, 77.767582 ] ] ], [ [ [ -61.875000, 46.073231 ], [ -63.984375, 46.073231 ], [ -63.984375, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.073231 ] ] ], [ [ [ -125.156250, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.458352 ], [ -125.156250, 48.458352 ], [ -125.156250, 48.922499 ] ] ], [ [ [ -132.187500, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.052490 ], [ -132.187500, 52.052490 ], [ -132.187500, 52.482780 ] ] ], [ [ [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 62.915233 ], [ -85.781250, 62.915233 ], [ -85.781250, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 65.072130 ], [ -85.781250, 65.072130 ], [ -85.781250, 65.658275 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.953125, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -66.796875, 50.289339 ], [ -66.796875, 49.837982 ], [ -67.500000, 49.837982 ], [ -67.500000, 49.382373 ], [ -68.906250, 49.382373 ], [ -68.906250, 48.922499 ], [ -69.609375, 48.922499 ], [ -69.609375, 47.989922 ], [ -70.312500, 47.989922 ], [ -70.312500, 47.517201 ], [ -71.015625, 47.517201 ], [ -71.015625, 47.040182 ], [ -70.312500, 47.040182 ], [ -70.312500, 45.583290 ], [ -71.718750, 45.583290 ], [ -71.718750, 45.089036 ], [ -75.937500, 45.089036 ], [ -75.937500, 44.590467 ], [ -76.640625, 44.590467 ], [ -76.640625, 44.087585 ], [ -78.750000, 44.087585 ], [ -78.750000, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 42.553080 ], [ -81.562500, 42.553080 ], [ -81.562500, 42.032974 ], [ -83.671875, 42.032974 ], [ -83.671875, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 43.068888 ], [ -82.265625, 43.068888 ], [ -82.265625, 44.087585 ], [ -82.968750, 44.087585 ], [ -82.968750, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.458352 ], [ -94.218750, 48.458352 ], [ -94.218750, 48.922499 ], [ -94.921875, 48.922499 ], [ -94.921875, 49.837982 ], [ -95.625000, 49.837982 ], [ -95.625000, 49.382373 ], [ -123.750000, 49.382373 ], [ -123.750000, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.458352 ], [ -125.859375, 48.458352 ], [ -125.859375, 48.922499 ], [ -126.562500, 48.922499 ], [ -126.562500, 49.382373 ], [ -127.265625, 49.382373 ], [ -127.265625, 49.837982 ], [ -128.671875, 49.837982 ], [ -128.671875, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 51.618017 ], [ -128.671875, 51.618017 ], [ -128.671875, 52.052490 ], [ -127.968750, 52.052490 ], [ -127.968750, 52.482780 ], [ -129.375000, 52.482780 ], [ -129.375000, 53.748711 ], [ -130.078125, 53.748711 ], [ -130.078125, 54.162434 ], [ -130.781250, 54.162434 ], [ -130.781250, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 56.170023 ], [ -131.484375, 56.170023 ], [ -131.484375, 56.559482 ], [ -132.187500, 56.559482 ], [ -132.187500, 56.944974 ], [ -132.890625, 56.944974 ], [ -132.890625, 58.077876 ], [ -133.593750, 58.077876 ], [ -133.593750, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.534318 ], [ -137.109375, 59.534318 ], [ -137.109375, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 60.586967 ], [ -141.328125, 60.586967 ], [ -141.328125, 69.900118 ], [ -140.625000, 69.900118 ], [ -140.625000, 69.657086 ], [ -139.218750, 69.657086 ], [ -139.218750, 69.411242 ], [ -138.515625, 69.411242 ], [ -138.515625, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.411242 ], [ -135.000000, 69.411242 ], [ -135.000000, 69.657086 ], [ -132.890625, 69.657086 ], [ -132.890625, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 70.140364 ], [ -129.375000, 70.140364 ], [ -129.375000, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.377854 ], [ -127.968750, 70.377854 ], [ -127.968750, 70.140364 ], [ -127.265625, 70.140364 ], [ -127.265625, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 70.140364 ], [ -124.453125, 70.140364 ], [ -124.453125, 69.411242 ], [ -123.750000, 69.411242 ], [ -123.750000, 69.657086 ], [ -123.046875, 69.657086 ], [ -123.046875, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.411242 ], [ -119.531250, 69.411242 ], [ -119.531250, 69.162558 ], [ -118.125000, 69.162558 ], [ -118.125000, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.138852 ], [ -115.312500, 68.138852 ], [ -115.312500, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -108.984375, 67.609221 ], [ -108.984375, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.399180 ], [ -108.281250, 68.399180 ], [ -108.281250, 68.656555 ], [ -107.578125, 68.656555 ], [ -107.578125, 68.911005 ], [ -106.171875, 68.911005 ], [ -106.171875, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.399180 ], [ -104.765625, 68.399180 ], [ -104.765625, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 67.875541 ], [ -99.140625, 67.875541 ], [ -99.140625, 68.656555 ], [ -97.734375, 68.656555 ], [ -97.734375, 68.399180 ], [ -96.328125, 68.399180 ], [ -96.328125, 67.609221 ], [ -95.625000, 67.609221 ], [ -95.625000, 68.138852 ], [ -94.921875, 68.138852 ], [ -94.921875, 69.411242 ], [ -95.625000, 69.411242 ], [ -95.625000, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 71.300793 ], [ -96.328125, 71.300793 ], [ -96.328125, 71.746432 ], [ -95.625000, 71.746432 ], [ -95.625000, 71.965388 ], [ -94.218750, 71.965388 ], [ -94.218750, 71.746432 ], [ -93.515625, 71.746432 ], [ -93.515625, 71.074056 ], [ -92.812500, 71.074056 ], [ -92.812500, 70.612614 ], [ -92.109375, 70.612614 ], [ -92.109375, 70.140364 ], [ -92.812500, 70.140364 ], [ -92.812500, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.657086 ], [ -90.703125, 69.657086 ], [ -90.703125, 68.656555 ], [ -90.000000, 68.656555 ], [ -90.000000, 69.162558 ], [ -89.296875, 69.162558 ], [ -89.296875, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 67.609221 ], [ -87.890625, 67.609221 ], [ -87.890625, 67.339861 ], [ -87.187500, 67.339861 ], [ -87.187500, 67.875541 ], [ -86.484375, 67.875541 ], [ -86.484375, 68.399180 ], [ -85.781250, 68.399180 ], [ -85.781250, 69.900118 ], [ -83.671875, 69.900118 ], [ -83.671875, 70.140364 ], [ -86.484375, 70.140364 ], [ -86.484375, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.612614 ], [ -90.000000, 70.612614 ], [ -90.000000, 70.844673 ], [ -89.296875, 70.844673 ], [ -89.296875, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 71.746432 ], [ -90.703125, 71.746432 ], [ -90.703125, 72.816074 ], [ -90.000000, 72.816074 ], [ -90.000000, 73.226700 ], [ -89.296875, 73.226700 ], [ -89.296875, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.627789 ], [ -87.187500, 73.627789 ], [ -87.187500, 73.824820 ], [ -86.484375, 73.824820 ], [ -86.484375, 73.428424 ], [ -87.187500, 73.428424 ], [ -87.187500, 73.022592 ], [ -86.484375, 73.022592 ], [ -86.484375, 72.607120 ], [ -85.781250, 72.607120 ], [ -85.781250, 73.022592 ], [ -85.078125, 73.022592 ], [ -85.078125, 73.428424 ], [ -84.375000, 73.428424 ], [ -84.375000, 73.627789 ], [ -82.265625, 73.627789 ], [ -82.265625, 73.226700 ], [ -81.562500, 73.226700 ], [ -81.562500, 72.816074 ], [ -80.859375, 72.816074 ], [ -80.859375, 72.181804 ], [ -79.453125, 72.181804 ], [ -79.453125, 72.395706 ], [ -78.750000, 72.395706 ], [ -78.750000, 72.607120 ], [ -76.640625, 72.607120 ], [ -76.640625, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 72.181804 ], [ -75.234375, 72.181804 ], [ -75.234375, 71.965388 ], [ -74.531250, 71.965388 ], [ -74.531250, 71.524909 ], [ -73.125000, 71.524909 ], [ -73.125000, 71.746432 ], [ -72.421875, 71.746432 ], [ -72.421875, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.377854 ], [ -68.203125, 70.377854 ], [ -68.203125, 69.657086 ], [ -67.500000, 69.657086 ], [ -67.500000, 69.162558 ], [ -68.203125, 69.162558 ], [ -68.203125, 68.911005 ], [ -68.906250, 68.911005 ], [ -68.906250, 68.656555 ], [ -68.203125, 68.656555 ], [ -68.203125, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.138852 ], [ -66.796875, 68.138852 ], [ -66.796875, 67.875541 ], [ -65.390625, 67.875541 ], [ -65.390625, 67.609221 ], [ -64.687500, 67.609221 ], [ -64.687500, 67.067433 ], [ -61.875000, 67.067433 ], [ -61.875000, 66.513260 ], [ -62.578125, 66.513260 ], [ -62.578125, 65.946472 ], [ -63.281250, 65.946472 ], [ -63.281250, 65.366837 ], [ -63.984375, 65.366837 ], [ -63.984375, 65.072130 ], [ -64.687500, 65.072130 ], [ -64.687500, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.658275 ], [ -66.093750, 65.658275 ], [ -66.093750, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.513260 ], [ -68.203125, 66.513260 ], [ -68.203125, 65.658275 ], [ -67.500000, 65.658275 ], [ -67.500000, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 63.860036 ], [ -64.687500, 63.860036 ], [ -64.687500, 63.233627 ], [ -65.390625, 63.233627 ], [ -65.390625, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.233627 ], [ -67.500000, 63.233627 ], [ -67.500000, 63.548552 ], [ -68.203125, 63.548552 ], [ -68.203125, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 61.938950 ], [ -67.500000, 61.938950 ], [ -67.500000, 62.267923 ], [ -68.906250, 62.267923 ], [ -68.906250, 62.593341 ], [ -71.015625, 62.593341 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.421875, 63.233627 ], [ -72.421875, 63.860036 ], [ -73.125000, 63.860036 ], [ -73.125000, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.472794 ], [ -78.750000, 64.472794 ], [ -78.750000, 65.072130 ], [ -78.046875, 65.072130 ], [ -78.046875, 65.366837 ], [ -75.234375, 65.366837 ], [ -75.234375, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 66.513260 ], [ -73.828125, 66.513260 ], [ -73.828125, 67.067433 ], [ -73.125000, 67.067433 ], [ -73.125000, 67.875541 ], [ -73.828125, 67.875541 ], [ -73.828125, 68.138852 ], [ -74.531250, 68.138852 ], [ -74.531250, 68.399180 ], [ -75.234375, 68.399180 ], [ -75.234375, 68.656555 ], [ -76.640625, 68.656555 ], [ -76.640625, 69.411242 ], [ -77.343750, 69.411242 ], [ -77.343750, 69.900118 ], [ -78.750000, 69.900118 ], [ -78.750000, 70.140364 ], [ -80.156250, 70.140364 ], [ -80.156250, 69.900118 ], [ -82.968750, 69.900118 ], [ -82.968750, 69.657086 ], [ -82.265625, 69.657086 ], [ -82.265625, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.399180 ], [ -82.265625, 68.399180 ], [ -82.265625, 67.875541 ], [ -81.562500, 67.875541 ], [ -81.562500, 67.067433 ], [ -82.265625, 67.067433 ], [ -82.265625, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.513260 ], [ -86.484375, 66.513260 ], [ -86.484375, 65.658275 ], [ -87.187500, 65.658275 ], [ -87.187500, 65.072130 ], [ -87.890625, 65.072130 ], [ -87.890625, 64.472794 ], [ -88.593750, 64.472794 ], [ -88.593750, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 63.860036 ], [ -90.703125, 63.860036 ], [ -90.703125, 63.548552 ], [ -91.406250, 63.548552 ], [ -91.406250, 62.915233 ], [ -92.109375, 62.915233 ], [ -92.109375, 62.593341 ], [ -92.812500, 62.593341 ], [ -92.812500, 62.267923 ], [ -93.515625, 62.267923 ], [ -93.515625, 61.938950 ], [ -94.218750, 61.938950 ], [ -94.218750, 61.270233 ], [ -94.921875, 61.270233 ], [ -94.921875, 58.813742 ], [ -93.515625, 58.813742 ], [ -93.515625, 58.447733 ], [ -92.812500, 58.447733 ], [ -92.812500, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.559482 ], [ -88.593750, 56.559482 ], [ -88.593750, 56.170023 ], [ -87.890625, 56.170023 ], [ -87.890625, 55.776573 ], [ -86.484375, 55.776573 ], [ -86.484375, 55.379110 ], [ -82.968750, 55.379110 ], [ -82.968750, 53.748711 ], [ -82.265625, 53.748711 ], [ -82.265625, 52.908902 ], [ -81.562500, 52.908902 ], [ -81.562500, 52.052490 ], [ -80.859375, 52.052490 ], [ -80.859375, 51.618017 ], [ -79.453125, 51.618017 ], [ -79.453125, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.453125, 53.330873 ], [ -79.453125, 54.572062 ], [ -80.156250, 54.572062 ], [ -80.156250, 54.977614 ], [ -78.750000, 54.977614 ], [ -78.750000, 55.379110 ], [ -78.046875, 55.379110 ], [ -78.046875, 55.776573 ], [ -77.343750, 55.776573 ], [ -77.343750, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -78.046875, 58.077876 ], [ -78.046875, 58.447733 ], [ -78.750000, 58.447733 ], [ -78.750000, 58.813742 ], [ -78.046875, 58.813742 ], [ -78.046875, 59.534318 ], [ -77.343750, 59.534318 ], [ -77.343750, 60.239811 ], [ -78.046875, 60.239811 ], [ -78.046875, 61.606396 ], [ -78.750000, 61.606396 ], [ -78.750000, 62.593341 ], [ -75.937500, 62.593341 ], [ -75.937500, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -69.609375, 61.270233 ], [ -69.609375, 60.586967 ], [ -70.312500, 60.586967 ], [ -70.312500, 59.534318 ], [ -69.609375, 59.534318 ], [ -69.609375, 58.813742 ], [ -68.906250, 58.813742 ], [ -68.906250, 58.447733 ], [ -66.796875, 58.447733 ], [ -66.796875, 58.813742 ], [ -66.093750, 58.813742 ], [ -66.093750, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 60.239811 ], [ -64.687500, 60.239811 ], [ -64.687500, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.175928 ], [ -63.281250, 59.175928 ], [ -63.281250, 58.447733 ], [ -62.578125, 58.447733 ], [ -62.578125, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 56.170023 ], [ -61.171875, 56.170023 ], [ -61.171875, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 54.977614 ], [ -57.656250, 54.977614 ], [ -57.656250, 54.572062 ], [ -56.953125, 54.572062 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 52.052490 ], [ -56.953125, 52.052490 ], [ -56.953125, 51.618017 ] ], [ [ -125.156250, 49.837982 ], [ -125.156250, 50.289339 ], [ -125.859375, 50.289339 ], [ -125.859375, 49.837982 ], [ -125.156250, 49.837982 ] ] ], [ [ [ -79.453125, 62.267923 ], [ -79.453125, 61.938950 ], [ -80.859375, 61.938950 ], [ -80.859375, 62.267923 ], [ -79.453125, 62.267923 ] ] ], [ [ [ -82.265625, 62.915233 ], [ -82.265625, 62.593341 ], [ -82.968750, 62.593341 ], [ -82.968750, 62.267923 ], [ -84.375000, 62.267923 ], [ -84.375000, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.915233 ], [ -82.265625, 62.915233 ] ] ], [ [ [ -117.421875, 73.022592 ], [ -118.125000, 73.022592 ], [ -118.125000, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.395706 ], [ -120.234375, 72.395706 ], [ -120.234375, 71.965388 ], [ -120.937500, 71.965388 ], [ -120.937500, 71.300793 ], [ -122.343750, 71.300793 ], [ -122.343750, 71.074056 ], [ -123.750000, 71.074056 ], [ -123.750000, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.746432 ], [ -126.562500, 71.746432 ], [ -126.562500, 72.181804 ], [ -125.859375, 72.181804 ], [ -125.859375, 72.607120 ], [ -125.156250, 72.607120 ], [ -125.156250, 73.428424 ], [ -124.453125, 73.428424 ], [ -124.453125, 74.019543 ], [ -125.156250, 74.019543 ], [ -125.156250, 74.402163 ], [ -123.046875, 74.402163 ], [ -123.046875, 74.590108 ], [ -121.640625, 74.590108 ], [ -121.640625, 74.402163 ], [ -119.531250, 74.402163 ], [ -119.531250, 74.211983 ], [ -118.125000, 74.211983 ], [ -118.125000, 74.019543 ], [ -116.718750, 74.019543 ], [ -116.718750, 73.824820 ], [ -116.015625, 73.824820 ], [ -116.015625, 73.428424 ], [ -116.718750, 73.428424 ], [ -116.718750, 73.226700 ], [ -117.421875, 73.226700 ], [ -117.421875, 73.022592 ] ] ], [ [ [ -97.734375, 70.140364 ], [ -97.734375, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 69.657086 ], [ -96.328125, 69.657086 ], [ -96.328125, 68.911005 ], [ -97.734375, 68.911005 ], [ -97.734375, 69.162558 ], [ -99.843750, 69.162558 ], [ -99.843750, 69.657086 ], [ -99.140625, 69.657086 ], [ -99.140625, 70.140364 ], [ -97.734375, 70.140364 ] ] ], [ [ [ -85.781250, 77.767582 ], [ -85.781250, 78.061989 ], [ -86.484375, 78.061989 ], [ -86.484375, 78.206563 ], [ -87.187500, 78.206563 ], [ -87.187500, 78.349411 ], [ -88.593750, 78.349411 ], [ -88.593750, 78.490552 ], [ -89.296875, 78.490552 ], [ -89.296875, 78.349411 ], [ -93.515625, 78.349411 ], [ -93.515625, 78.490552 ], [ -94.218750, 78.490552 ], [ -94.218750, 79.302640 ], [ -93.515625, 79.302640 ], [ -93.515625, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -96.328125, 79.560546 ], [ -96.328125, 79.935918 ], [ -97.031250, 79.935918 ], [ -97.031250, 80.415707 ], [ -96.328125, 80.415707 ], [ -96.328125, 80.760615 ], [ -95.625000, 80.760615 ], [ -95.625000, 80.983688 ], [ -94.921875, 80.983688 ], [ -94.921875, 81.308321 ], [ -92.812500, 81.308321 ], [ -92.812500, 81.093214 ], [ -92.109375, 81.093214 ], [ -92.109375, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.647035 ], [ -90.703125, 80.647035 ], [ -90.703125, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.415707 ], [ -87.890625, 80.415707 ], [ -87.890625, 80.058050 ], [ -87.187500, 80.058050 ], [ -87.187500, 80.297927 ], [ -84.375000, 80.297927 ], [ -84.375000, 80.178713 ], [ -82.968750, 80.178713 ], [ -82.968750, 80.415707 ], [ -82.265625, 80.415707 ], [ -82.265625, 80.532071 ], [ -83.671875, 80.532071 ], [ -83.671875, 80.647035 ], [ -85.781250, 80.647035 ], [ -85.781250, 80.532071 ], [ -88.593750, 80.532071 ], [ -88.593750, 80.647035 ], [ -89.296875, 80.647035 ], [ -89.296875, 80.760615 ], [ -90.000000, 80.760615 ], [ -90.000000, 81.093214 ], [ -90.703125, 81.093214 ], [ -90.703125, 81.413933 ], [ -91.406250, 81.413933 ], [ -91.406250, 81.723188 ], [ -92.109375, 81.723188 ], [ -92.109375, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 82.021378 ], [ -90.703125, 82.021378 ], [ -90.703125, 82.118384 ], [ -88.593750, 82.118384 ], [ -88.593750, 82.214217 ], [ -87.187500, 82.214217 ], [ -87.187500, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.586106 ], [ -85.781250, 82.586106 ], [ -85.781250, 82.676285 ], [ -84.375000, 82.676285 ], [ -84.375000, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.676285 ], [ -82.968750, 82.676285 ], [ -82.968750, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 83.026219 ], [ -80.859375, 83.026219 ], [ -80.859375, 83.111071 ], [ -79.453125, 83.111071 ], [ -79.453125, 83.194896 ], [ -76.640625, 83.194896 ], [ -76.640625, 83.111071 ], [ -74.531250, 83.111071 ], [ -74.531250, 83.194896 ], [ -73.125000, 83.194896 ], [ -73.125000, 83.277705 ], [ -72.421875, 83.277705 ], [ -72.421875, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.111071 ], [ -66.093750, 83.111071 ], [ -66.093750, 83.026219 ], [ -64.687500, 83.026219 ], [ -64.687500, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.676285 ], [ -61.875000, 82.676285 ], [ -61.875000, 82.494824 ], [ -62.578125, 82.494824 ], [ -62.578125, 82.308893 ], [ -63.281250, 82.308893 ], [ -63.281250, 82.214217 ], [ -63.984375, 82.214217 ], [ -63.984375, 82.021378 ], [ -64.687500, 82.021378 ], [ -64.687500, 81.923186 ], [ -66.093750, 81.923186 ], [ -66.093750, 81.823794 ], [ -66.796875, 81.823794 ], [ -66.796875, 81.723188 ], [ -67.500000, 81.723188 ], [ -67.500000, 81.518272 ], [ -66.093750, 81.518272 ], [ -66.093750, 81.413933 ], [ -66.796875, 81.413933 ], [ -66.796875, 81.201420 ], [ -67.500000, 81.201420 ], [ -67.500000, 80.983688 ], [ -68.203125, 80.983688 ], [ -68.203125, 80.872827 ], [ -68.906250, 80.872827 ], [ -68.906250, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.415707 ], [ -70.312500, 80.415707 ], [ -70.312500, 80.178713 ], [ -71.015625, 80.178713 ], [ -71.015625, 79.935918 ], [ -71.718750, 79.935918 ], [ -71.718750, 79.812302 ], [ -72.421875, 79.812302 ], [ -72.421875, 79.687184 ], [ -73.828125, 79.687184 ], [ -73.828125, 79.560546 ], [ -74.531250, 79.560546 ], [ -74.531250, 79.432371 ], [ -77.343750, 79.432371 ], [ -77.343750, 79.302640 ], [ -75.937500, 79.302640 ], [ -75.937500, 79.171335 ], [ -76.640625, 79.171335 ], [ -76.640625, 78.767792 ], [ -75.937500, 78.767792 ], [ -75.937500, 78.349411 ], [ -76.640625, 78.349411 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.767582 ], [ -78.750000, 77.767582 ], [ -78.750000, 77.466028 ], [ -79.453125, 77.466028 ], [ -79.453125, 77.312520 ], [ -80.156250, 77.312520 ], [ -80.156250, 76.999935 ], [ -78.750000, 76.999935 ], [ -78.750000, 77.157163 ], [ -78.046875, 77.157163 ], [ -78.046875, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.184995 ], [ -82.265625, 76.184995 ], [ -82.265625, 76.351896 ], [ -83.671875, 76.351896 ], [ -83.671875, 76.516819 ], [ -84.375000, 76.516819 ], [ -84.375000, 76.351896 ], [ -87.890625, 76.351896 ], [ -87.890625, 76.516819 ], [ -90.000000, 76.516819 ], [ -90.000000, 76.999935 ], [ -89.296875, 76.999935 ], [ -89.296875, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.617709 ], [ -88.593750, 77.617709 ], [ -88.593750, 77.915669 ], [ -87.187500, 77.915669 ], [ -87.187500, 77.767582 ], [ -85.781250, 77.767582 ] ], [ [ -86.484375, 79.432371 ], [ -86.484375, 79.302640 ], [ -87.187500, 79.302640 ], [ -87.187500, 79.038437 ], [ -87.890625, 79.038437 ], [ -87.890625, 78.767792 ], [ -88.593750, 78.767792 ], [ -88.593750, 78.490552 ], [ -87.890625, 78.490552 ], [ -87.890625, 78.630006 ], [ -87.187500, 78.630006 ], [ -87.187500, 78.767792 ], [ -86.484375, 78.767792 ], [ -86.484375, 78.903929 ], [ -85.781250, 78.903929 ], [ -85.781250, 79.432371 ], [ -86.484375, 79.432371 ] ], [ [ -87.187500, 79.687184 ], [ -87.187500, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.687184 ], [ -87.187500, 79.687184 ] ], [ [ -85.781250, 77.767582 ], [ -85.781250, 77.617709 ], [ -85.078125, 77.617709 ], [ -85.078125, 77.767582 ], [ -85.781250, 77.767582 ] ] ], [ [ [ -63.281250, 49.837982 ], [ -63.281250, 49.382373 ], [ -63.984375, 49.382373 ], [ -63.984375, 49.837982 ], [ -63.281250, 49.837982 ] ] ], [ [ [ -96.328125, 77.312520 ], [ -96.328125, 77.157163 ], [ -94.921875, 77.157163 ], [ -94.921875, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -92.109375, 76.840816 ], [ -92.109375, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.016094 ], [ -90.000000, 76.016094 ], [ -90.000000, 75.845169 ], [ -89.296875, 75.845169 ], [ -89.296875, 75.672197 ], [ -87.890625, 75.672197 ], [ -87.890625, 75.497157 ], [ -85.781250, 75.497157 ], [ -85.781250, 75.672197 ], [ -85.078125, 75.672197 ], [ -85.078125, 75.845169 ], [ -81.562500, 75.845169 ], [ -81.562500, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.497157 ], [ -80.156250, 75.497157 ], [ -80.156250, 74.775843 ], [ -80.859375, 74.775843 ], [ -80.859375, 74.590108 ], [ -87.187500, 74.590108 ], [ -87.187500, 74.402163 ], [ -90.000000, 74.402163 ], [ -90.000000, 74.590108 ], [ -91.406250, 74.590108 ], [ -91.406250, 74.775843 ], [ -92.812500, 74.775843 ], [ -92.812500, 75.672197 ], [ -93.515625, 75.672197 ], [ -93.515625, 76.184995 ], [ -94.218750, 76.184995 ], [ -94.218750, 76.351896 ], [ -95.625000, 76.351896 ], [ -95.625000, 76.516819 ], [ -97.031250, 76.516819 ], [ -97.031250, 76.679785 ], [ -97.734375, 76.679785 ], [ -97.734375, 76.999935 ], [ -97.031250, 76.999935 ], [ -97.031250, 77.312520 ], [ -96.328125, 77.312520 ] ] ], [ [ [ -108.984375, 76.679785 ], [ -108.984375, 76.516819 ], [ -108.281250, 76.516819 ], [ -108.281250, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.320025 ], [ -106.875000, 75.320025 ], [ -106.875000, 75.140778 ], [ -108.281250, 75.140778 ], [ -108.281250, 74.959392 ], [ -110.390625, 74.959392 ], [ -110.390625, 74.775843 ], [ -111.796875, 74.775843 ], [ -111.796875, 74.590108 ], [ -112.500000, 74.590108 ], [ -112.500000, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.959392 ], [ -112.500000, 74.959392 ], [ -112.500000, 75.140778 ], [ -111.796875, 75.140778 ], [ -111.796875, 75.320025 ], [ -113.906250, 75.320025 ], [ -113.906250, 75.140778 ], [ -118.125000, 75.140778 ], [ -118.125000, 75.497157 ], [ -117.421875, 75.497157 ], [ -117.421875, 76.016094 ], [ -116.718750, 76.016094 ], [ -116.718750, 76.351896 ], [ -114.609375, 76.351896 ], [ -114.609375, 76.184995 ], [ -113.203125, 76.184995 ], [ -113.203125, 76.016094 ], [ -112.500000, 76.016094 ], [ -112.500000, 75.845169 ], [ -111.796875, 75.845169 ], [ -111.796875, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.497157 ], [ -109.687500, 75.497157 ], [ -109.687500, 75.672197 ], [ -110.390625, 75.672197 ], [ -110.390625, 76.184995 ], [ -111.093750, 76.184995 ], [ -111.093750, 76.516819 ], [ -110.390625, 76.516819 ], [ -110.390625, 76.679785 ], [ -108.984375, 76.679785 ] ] ], [ [ [ -132.187500, 52.908902 ], [ -132.890625, 52.908902 ], [ -132.890625, 53.330873 ], [ -133.593750, 53.330873 ], [ -133.593750, 54.162434 ], [ -132.187500, 54.162434 ], [ -132.187500, 52.908902 ] ] ], [ [ [ -97.734375, 73.824820 ], [ -97.734375, 73.226700 ], [ -98.437500, 73.226700 ], [ -98.437500, 72.816074 ], [ -97.734375, 72.816074 ], [ -97.734375, 72.607120 ], [ -97.031250, 72.607120 ], [ -97.031250, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.300793 ], [ -99.843750, 71.300793 ], [ -99.843750, 71.524909 ], [ -100.546875, 71.524909 ], [ -100.546875, 71.746432 ], [ -101.250000, 71.746432 ], [ -101.250000, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 73.022592 ], [ -101.953125, 73.022592 ], [ -101.953125, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 73.226700 ], [ -101.953125, 73.226700 ], [ -101.953125, 73.428424 ], [ -101.250000, 73.428424 ], [ -101.250000, 73.824820 ], [ -97.734375, 73.824820 ] ] ], [ [ [ -69.609375, 47.989922 ], [ -68.906250, 47.989922 ], [ -68.906250, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 48.922499 ], [ -66.796875, 48.922499 ], [ -66.796875, 49.382373 ], [ -65.390625, 49.382373 ], [ -65.390625, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 48.458352 ], [ -65.390625, 48.458352 ], [ -65.390625, 46.558860 ], [ -64.687500, 46.558860 ], [ -62.578125, 46.558860 ], [ -62.578125, 46.073231 ], [ -61.875000, 46.073231 ], [ -61.875000, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 45.583290 ], [ -61.875000, 45.583290 ], [ -61.875000, 45.089036 ], [ -63.281250, 45.089036 ], [ -63.281250, 44.590467 ], [ -64.687500, 44.590467 ], [ -64.687500, 44.087585 ], [ -65.390625, 44.087585 ], [ -65.390625, 43.580391 ], [ -66.796875, 43.580391 ], [ -66.796875, 44.590467 ], [ -66.093750, 44.590467 ], [ -66.093750, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 45.583290 ], [ -68.203125, 45.583290 ], [ -68.203125, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.989922 ] ] ], [ [ [ -116.718750, 77.617709 ], [ -116.718750, 76.840816 ], [ -117.421875, 76.840816 ], [ -117.421875, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.351896 ], [ -119.531250, 76.351896 ], [ -119.531250, 76.184995 ], [ -120.234375, 76.184995 ], [ -120.234375, 76.016094 ], [ -123.046875, 76.016094 ], [ -123.046875, 76.351896 ], [ -122.343750, 76.351896 ], [ -122.343750, 76.679785 ], [ -121.640625, 76.679785 ], [ -121.640625, 76.999935 ], [ -120.937500, 76.999935 ], [ -120.937500, 77.312520 ], [ -120.234375, 77.312520 ], [ -120.234375, 77.466028 ], [ -119.531250, 77.466028 ], [ -119.531250, 77.617709 ], [ -116.718750, 77.617709 ] ] ], [ [ [ -92.109375, 74.211983 ], [ -92.109375, 74.019543 ], [ -90.703125, 74.019543 ], [ -90.703125, 73.627789 ], [ -91.406250, 73.627789 ], [ -91.406250, 73.226700 ], [ -92.109375, 73.226700 ], [ -92.109375, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.607120 ], [ -94.218750, 72.607120 ], [ -94.218750, 72.181804 ], [ -95.625000, 72.181804 ], [ -95.625000, 72.607120 ], [ -96.328125, 72.607120 ], [ -96.328125, 73.824820 ], [ -95.625000, 73.824820 ], [ -95.625000, 74.019543 ], [ -94.921875, 74.019543 ], [ -94.921875, 74.211983 ], [ -92.109375, 74.211983 ] ] ], [ [ [ -98.437500, 76.679785 ], [ -98.437500, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.497157 ], [ -98.437500, 75.497157 ], [ -98.437500, 74.959392 ], [ -101.250000, 74.959392 ], [ -101.250000, 75.672197 ], [ -102.656250, 75.672197 ], [ -102.656250, 76.351896 ], [ -101.250000, 76.351896 ], [ -101.250000, 76.516819 ], [ -100.546875, 76.516819 ], [ -100.546875, 76.679785 ], [ -98.437500, 76.679785 ] ] ], [ [ [ -105.468750, 79.171335 ], [ -104.062500, 79.171335 ], [ -104.062500, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.061989 ], [ -99.843750, 78.061989 ], [ -99.843750, 77.915669 ], [ -101.250000, 77.915669 ], [ -101.250000, 78.061989 ], [ -102.656250, 78.061989 ], [ -102.656250, 78.206563 ], [ -103.359375, 78.206563 ], [ -103.359375, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -105.468750, 78.490552 ], [ -105.468750, 78.630006 ], [ -104.765625, 78.630006 ], [ -104.765625, 78.903929 ], [ -105.468750, 78.903929 ], [ -105.468750, 79.171335 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.937500, 68.138852 ], [ -75.234375, 68.138852 ], [ -75.234375, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 68.399180 ], [ -75.937500, 68.399180 ] ] ], [ [ [ -86.484375, 65.658275 ], [ -85.781250, 65.658275 ], [ -85.781250, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.472794 ], [ -82.265625, 64.472794 ], [ -82.265625, 64.168107 ], [ -80.859375, 64.168107 ], [ -80.859375, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.548552 ], [ -82.968750, 63.548552 ], [ -82.968750, 63.860036 ], [ -84.375000, 63.860036 ], [ -84.375000, 63.548552 ], [ -85.078125, 63.548552 ], [ -85.078125, 63.233627 ], [ -85.781250, 63.233627 ], [ -85.781250, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 65.658275 ] ] ], [ [ [ -97.734375, 78.903929 ], [ -97.734375, 78.767792 ], [ -97.031250, 78.767792 ], [ -97.031250, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.490552 ], [ -95.625000, 78.490552 ], [ -95.625000, 78.206563 ], [ -96.328125, 78.206563 ], [ -96.328125, 77.915669 ], [ -94.921875, 77.915669 ], [ -94.921875, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -97.031250, 77.767582 ], [ -97.031250, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 78.061989 ], [ -98.437500, 78.061989 ], [ -98.437500, 78.349411 ], [ -99.140625, 78.349411 ], [ -99.140625, 78.903929 ], [ -97.734375, 78.903929 ] ] ], [ [ [ -78.750000, 73.824820 ], [ -78.750000, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.022592 ], [ -78.750000, 73.022592 ], [ -78.750000, 72.816074 ], [ -80.859375, 72.816074 ], [ -80.859375, 73.226700 ], [ -81.562500, 73.226700 ], [ -81.562500, 73.627789 ], [ -80.859375, 73.627789 ], [ -80.859375, 73.824820 ], [ -78.750000, 73.824820 ] ] ], [ [ [ -110.390625, 78.061989 ], [ -110.390625, 77.617709 ], [ -111.796875, 77.617709 ], [ -111.796875, 77.466028 ], [ -113.203125, 77.466028 ], [ -113.203125, 77.617709 ], [ -113.906250, 77.617709 ], [ -113.906250, 77.915669 ], [ -113.203125, 77.915669 ], [ -113.203125, 78.061989 ], [ -110.390625, 78.061989 ] ] ], [ [ [ -94.218750, 75.497157 ], [ -94.218750, 74.775843 ], [ -97.031250, 74.775843 ], [ -97.031250, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.497157 ], [ -94.218750, 75.497157 ] ] ], [ [ [ -111.093750, 78.903929 ], [ -111.093750, 78.767792 ], [ -110.390625, 78.767792 ], [ -110.390625, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.490552 ], [ -113.203125, 78.490552 ], [ -113.203125, 78.630006 ], [ -112.500000, 78.630006 ], [ -112.500000, 78.767792 ], [ -111.796875, 78.767792 ], [ -111.796875, 78.903929 ], [ -111.093750, 78.903929 ] ] ], [ [ [ -132.187500, 52.908902 ], [ -131.484375, 52.908902 ], [ -131.484375, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.908902 ] ] ], [ [ [ -105.468750, 79.171335 ], [ -106.171875, 79.171335 ], [ -106.171875, 79.302640 ], [ -105.468750, 79.302640 ], [ -105.468750, 79.171335 ] ] ], [ [ [ -56.250000, 50.289339 ], [ -55.546875, 50.289339 ], [ -55.546875, 49.837982 ], [ -56.250000, 49.837982 ], [ -56.250000, 50.289339 ] ] ], [ [ [ -56.953125, 51.618017 ], [ -56.250000, 51.618017 ], [ -56.250000, 50.289339 ], [ -56.953125, 50.289339 ], [ -56.953125, 49.837982 ], [ -56.250000, 49.837982 ], [ -56.250000, 49.382373 ], [ -54.140625, 49.382373 ], [ -54.140625, 48.922499 ], [ -53.437500, 48.922499 ], [ -53.437500, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 47.517201 ], [ -53.437500, 47.517201 ], [ -53.437500, 47.040182 ], [ -54.843750, 47.040182 ], [ -54.843750, 47.517201 ], [ -56.250000, 47.517201 ], [ -56.250000, 47.989922 ], [ -59.062500, 47.989922 ], [ -59.062500, 48.458352 ], [ -59.765625, 48.458352 ], [ -59.765625, 48.922499 ], [ -59.062500, 48.922499 ], [ -59.062500, 49.382373 ], [ -58.359375, 49.382373 ], [ -58.359375, 50.289339 ], [ -57.656250, 50.289339 ], [ -57.656250, 51.179343 ], [ -56.953125, 51.179343 ], [ -56.953125, 51.618017 ] ], [ [ -54.843750, 47.989922 ], [ -54.843750, 47.517201 ], [ -54.140625, 47.517201 ], [ -54.140625, 47.989922 ], [ -54.843750, 47.989922 ] ] ], [ [ [ -117.421875, 73.022592 ], [ -116.015625, 73.022592 ], [ -116.015625, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.022592 ], [ -115.312500, 73.022592 ], [ -115.312500, 72.816074 ], [ -113.203125, 72.816074 ], [ -113.203125, 73.022592 ], [ -112.500000, 73.022592 ], [ -112.500000, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.607120 ], [ -111.093750, 72.607120 ], [ -111.093750, 72.816074 ], [ -109.687500, 72.816074 ], [ -109.687500, 72.395706 ], [ -108.984375, 72.395706 ], [ -108.984375, 71.965388 ], [ -108.281250, 71.965388 ], [ -108.281250, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 73.226700 ], [ -106.875000, 73.226700 ], [ -106.875000, 73.428424 ], [ -107.578125, 73.428424 ], [ -107.578125, 73.627789 ], [ -104.765625, 73.627789 ], [ -104.765625, 73.022592 ], [ -105.468750, 73.022592 ], [ -105.468750, 72.816074 ], [ -105.468750, 71.300793 ], [ -104.765625, 71.300793 ], [ -104.765625, 70.844673 ], [ -104.062500, 70.844673 ], [ -104.062500, 70.612614 ], [ -103.359375, 70.612614 ], [ -103.359375, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -103.359375, 69.657086 ], [ -103.359375, 69.411242 ], [ -102.656250, 69.411242 ], [ -102.656250, 68.911005 ], [ -105.468750, 68.911005 ], [ -105.468750, 69.162558 ], [ -108.281250, 69.162558 ], [ -108.281250, 68.911005 ], [ -110.390625, 68.911005 ], [ -110.390625, 68.656555 ], [ -113.906250, 68.656555 ], [ -113.906250, 69.162558 ], [ -115.312500, 69.162558 ], [ -115.312500, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.657086 ], [ -117.421875, 69.657086 ], [ -117.421875, 70.140364 ], [ -115.312500, 70.140364 ], [ -115.312500, 70.377854 ], [ -113.906250, 70.377854 ], [ -113.906250, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -118.828125, 70.844673 ], [ -118.828125, 71.074056 ], [ -118.125000, 71.074056 ], [ -118.125000, 71.300793 ], [ -118.828125, 71.300793 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.965388 ], [ -118.828125, 71.965388 ], [ -118.828125, 72.607120 ], [ -118.125000, 72.607120 ], [ -118.125000, 72.816074 ], [ -117.421875, 72.816074 ], [ -117.421875, 73.022592 ] ], [ [ -106.875000, 73.226700 ], [ -106.875000, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.226700 ], [ -106.875000, 73.226700 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 19.973349 ], [ -155.390625, 18.646245 ], [ -156.093750, 18.646245 ], [ -156.093750, 19.973349 ], [ -155.390625, 19.973349 ] ] ], [ [ [ -94.921875, 48.922499 ], [ -94.921875, 48.458352 ], [ -92.812500, 48.458352 ], [ -92.812500, 47.989922 ], [ -87.187500, 47.989922 ], [ -87.187500, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -84.375000, 46.558860 ], [ -84.375000, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.583290 ], [ -82.265625, 45.583290 ], [ -82.265625, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.508577 ], [ -81.562500, 41.508577 ], [ -81.562500, 42.032974 ], [ -80.156250, 42.032974 ], [ -80.156250, 42.553080 ], [ -78.750000, 42.553080 ], [ -78.750000, 43.068888 ], [ -79.453125, 43.068888 ], [ -79.453125, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 44.087585 ], [ -75.234375, 44.087585 ], [ -75.234375, 44.590467 ], [ -74.531250, 44.590467 ], [ -74.531250, 45.089036 ], [ -70.312500, 45.089036 ], [ -70.312500, 46.558860 ], [ -69.609375, 46.558860 ], [ -69.609375, 47.040182 ], [ -67.500000, 47.040182 ], [ -67.500000, 45.089036 ], [ -66.796875, 45.089036 ], [ -66.796875, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.068888 ], [ -71.015625, 43.068888 ], [ -71.015625, 42.032974 ], [ -69.609375, 42.032974 ], [ -69.609375, 41.508577 ], [ -72.421875, 41.508577 ], [ -72.421875, 40.979898 ], [ -71.718750, 40.979898 ], [ -71.718750, 40.446947 ], [ -73.828125, 40.446947 ], [ -73.828125, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 38.822591 ], [ -76.640625, 38.822591 ], [ -76.640625, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.307144 ], [ -77.343750, 34.307144 ], [ -77.343750, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.137551 ], [ -79.453125, 33.137551 ], [ -79.453125, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.353637 ], [ -81.562500, 31.353637 ], [ -81.562500, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 27.683528 ], [ -80.156250, 27.683528 ], [ -80.156250, 25.165173 ], [ -81.562500, 25.165173 ], [ -81.562500, 25.799891 ], [ -82.265625, 25.799891 ], [ -82.265625, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 30.145127 ], [ -84.375000, 30.145127 ], [ -84.375000, 29.535230 ], [ -85.781250, 29.535230 ], [ -85.781250, 30.145127 ], [ -89.296875, 30.145127 ], [ -89.296875, 28.921631 ], [ -91.406250, 28.921631 ], [ -91.406250, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 28.921631 ], [ -95.625000, 28.921631 ], [ -95.625000, 28.304381 ], [ -96.328125, 28.304381 ], [ -96.328125, 27.683528 ], [ -97.031250, 27.683528 ], [ -97.031250, 25.799891 ], [ -99.140625, 25.799891 ], [ -99.140625, 27.059126 ], [ -99.843750, 27.059126 ], [ -99.843750, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -101.250000, 28.921631 ], [ -101.250000, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -104.062500, 28.921631 ], [ -104.062500, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -112.500000, 31.353637 ], [ -112.500000, 31.952162 ], [ -114.609375, 31.952162 ], [ -114.609375, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 33.724340 ], [ -118.828125, 33.724340 ], [ -118.828125, 34.307144 ], [ -120.937500, 34.307144 ], [ -120.937500, 35.460670 ], [ -121.640625, 35.460670 ], [ -121.640625, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 38.272689 ], [ -123.750000, 38.272689 ], [ -123.750000, 39.909736 ], [ -124.453125, 39.909736 ], [ -124.453125, 44.087585 ], [ -123.750000, 44.087585 ], [ -123.750000, 47.040182 ], [ -124.453125, 47.040182 ], [ -124.453125, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.343750, 47.517201 ], [ -122.343750, 48.458352 ], [ -123.046875, 48.458352 ], [ -123.046875, 48.922499 ], [ -94.921875, 48.922499 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.326521 ], [ -156.093750, 57.326521 ], [ -156.093750, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 55.776573 ], [ -158.906250, 55.776573 ], [ -158.906250, 55.379110 ], [ -161.015625, 55.379110 ], [ -161.015625, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.977614 ], [ -163.125000, 54.977614 ], [ -163.125000, 55.379110 ], [ -161.718750, 55.379110 ], [ -161.718750, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.944974 ], [ -158.203125, 56.944974 ], [ -158.203125, 57.326521 ], [ -157.500000, 57.326521 ], [ -157.500000, 58.447733 ], [ -160.312500, 58.447733 ], [ -160.312500, 58.813742 ], [ -161.718750, 58.813742 ], [ -161.718750, 59.534318 ], [ -162.421875, 59.534318 ], [ -162.421875, 59.888937 ], [ -164.531250, 59.888937 ], [ -164.531250, 60.239811 ], [ -165.234375, 60.239811 ], [ -165.234375, 61.270233 ], [ -165.937500, 61.270233 ], [ -165.937500, 62.267923 ], [ -165.234375, 62.267923 ], [ -165.234375, 62.915233 ], [ -164.531250, 62.915233 ], [ -164.531250, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 62.915233 ], [ -163.125000, 62.915233 ], [ -163.125000, 63.233627 ], [ -162.421875, 63.233627 ], [ -162.421875, 63.548552 ], [ -161.015625, 63.548552 ], [ -161.015625, 64.168107 ], [ -161.718750, 64.168107 ], [ -161.718750, 64.472794 ], [ -166.640625, 64.472794 ], [ -166.640625, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -168.046875, 65.366837 ], [ -168.046875, 65.658275 ], [ -166.640625, 65.658275 ], [ -166.640625, 65.946472 ], [ -165.937500, 65.946472 ], [ -165.937500, 66.231457 ], [ -164.531250, 66.231457 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 65.946472 ], [ -162.421875, 65.946472 ], [ -162.421875, 66.231457 ], [ -161.718750, 66.231457 ], [ -161.718750, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 67.339861 ], [ -164.531250, 67.339861 ], [ -164.531250, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.138852 ], [ -166.640625, 68.138852 ], [ -166.640625, 68.656555 ], [ -165.937500, 68.656555 ], [ -165.937500, 68.911005 ], [ -163.828125, 68.911005 ], [ -163.828125, 69.162558 ], [ -163.125000, 69.162558 ], [ -163.125000, 69.900118 ], [ -162.421875, 69.900118 ], [ -162.421875, 70.140364 ], [ -161.718750, 70.140364 ], [ -161.718750, 70.377854 ], [ -160.312500, 70.377854 ], [ -160.312500, 70.612614 ], [ -158.906250, 70.612614 ], [ -158.906250, 70.844673 ], [ -157.500000, 70.844673 ], [ -157.500000, 71.074056 ], [ -155.390625, 71.074056 ], [ -155.390625, 70.844673 ], [ -154.687500, 70.844673 ], [ -154.687500, 70.612614 ], [ -153.984375, 70.612614 ], [ -153.984375, 70.844673 ], [ -151.875000, 70.844673 ], [ -151.875000, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.657086 ], [ -141.328125, 69.657086 ], [ -141.328125, 60.239811 ], [ -139.921875, 60.239811 ], [ -139.921875, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.813742 ], [ -137.109375, 58.813742 ], [ -137.109375, 59.175928 ], [ -136.406250, 59.175928 ], [ -136.406250, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.326521 ], [ -132.187500, 57.326521 ], [ -132.187500, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.704147 ], [ -134.296875, 57.704147 ], [ -134.296875, 58.077876 ], [ -137.812500, 58.077876 ], [ -137.812500, 58.447733 ], [ -138.515625, 58.447733 ], [ -138.515625, 58.813742 ], [ -139.218750, 58.813742 ], [ -139.218750, 59.175928 ], [ -139.921875, 59.175928 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 60.239811 ], [ -142.734375, 60.239811 ], [ -142.734375, 59.888937 ], [ -144.843750, 59.888937 ], [ -144.843750, 60.239811 ], [ -146.250000, 60.239811 ], [ -146.250000, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.534318 ], [ -153.281250, 59.534318 ], [ -153.281250, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 57.704147 ] ], [ [ -151.171875, 60.586967 ], [ -151.875000, 60.586967 ], [ -151.875000, 60.239811 ], [ -151.171875, 60.239811 ], [ -151.171875, 60.586967 ] ], [ [ -151.171875, 60.930432 ], [ -151.171875, 60.586967 ], [ -150.468750, 60.586967 ], [ -150.468750, 60.930432 ], [ -151.171875, 60.930432 ] ], [ [ -161.718750, 64.774125 ], [ -161.718750, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.774125 ], [ -161.718750, 64.774125 ] ] ], [ [ [ -153.984375, 57.704147 ], [ -153.281250, 57.704147 ], [ -153.281250, 58.077876 ], [ -152.578125, 58.077876 ], [ -152.578125, 57.704147 ], [ -151.875000, 57.704147 ], [ -151.875000, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 56.944974 ], [ -153.281250, 56.944974 ], [ -153.281250, 56.559482 ], [ -154.687500, 56.559482 ], [ -154.687500, 57.326521 ], [ -153.984375, 57.326521 ], [ -153.984375, 57.704147 ] ] ], [ [ [ -132.187500, 56.559482 ], [ -131.484375, 56.559482 ], [ -131.484375, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 55.776573 ], [ -130.078125, 55.776573 ], [ -130.078125, 54.977614 ], [ -130.781250, 54.977614 ], [ -130.781250, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 56.559482 ] ] ], [ [ [ -169.453125, 63.548552 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 62.915233 ], [ -170.156250, 62.915233 ], [ -170.156250, 63.233627 ], [ -171.562500, 63.233627 ], [ -171.562500, 63.548552 ], [ -169.453125, 63.548552 ] ] ], [ [ [ -165.937500, 60.239811 ], [ -165.937500, 59.888937 ], [ -167.343750, 59.888937 ], [ -167.343750, 60.239811 ], [ -165.937500, 60.239811 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -156.093750, 20.632784 ], [ -155.390625, 20.632784 ], [ -155.390625, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.632784 ] ] ], [ [ [ -123.046875, 47.989922 ], [ -123.046875, 49.382373 ], [ -95.625000, 49.382373 ], [ -95.625000, 49.837982 ], [ -94.921875, 49.837982 ], [ -94.921875, 48.922499 ], [ -94.218750, 48.922499 ], [ -94.218750, 48.458352 ], [ -88.593750, 48.458352 ], [ -88.593750, 47.989922 ], [ -86.484375, 47.989922 ], [ -86.484375, 47.517201 ], [ -85.781250, 47.517201 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -83.671875, 46.558860 ], [ -83.671875, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 44.087585 ], [ -82.265625, 44.087585 ], [ -82.265625, 43.068888 ], [ -82.968750, 43.068888 ], [ -82.968750, 42.553080 ], [ -83.671875, 42.553080 ], [ -83.671875, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 42.553080 ], [ -79.453125, 42.553080 ], [ -79.453125, 43.580391 ], [ -78.750000, 43.580391 ], [ -78.750000, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 44.590467 ], [ -75.937500, 44.590467 ], [ -75.937500, 45.089036 ], [ -71.718750, 45.089036 ], [ -71.718750, 45.583290 ], [ -70.312500, 45.583290 ], [ -70.312500, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 47.517201 ], [ -68.203125, 47.517201 ], [ -68.203125, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 44.590467 ], [ -68.203125, 44.590467 ], [ -68.203125, 44.087585 ], [ -70.312500, 44.087585 ], [ -70.312500, 43.580391 ], [ -71.015625, 43.580391 ], [ -71.015625, 42.032974 ], [ -70.312500, 42.032974 ], [ -70.312500, 41.508577 ], [ -73.125000, 41.508577 ], [ -73.125000, 40.979898 ], [ -74.531250, 40.979898 ], [ -74.531250, 39.368279 ], [ -75.937500, 39.368279 ], [ -75.937500, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 38.272689 ], [ -76.640625, 38.272689 ], [ -76.640625, 36.597889 ], [ -75.937500, 36.597889 ], [ -75.937500, 35.460670 ], [ -76.640625, 35.460670 ], [ -76.640625, 34.885931 ], [ -78.046875, 34.885931 ], [ -78.046875, 34.307144 ], [ -78.750000, 34.307144 ], [ -78.750000, 33.724340 ], [ -79.453125, 33.724340 ], [ -79.453125, 33.137551 ], [ -80.156250, 33.137551 ], [ -80.156250, 32.546813 ], [ -81.562500, 32.546813 ], [ -81.562500, 28.921631 ], [ -80.859375, 28.921631 ], [ -80.859375, 27.683528 ], [ -80.156250, 27.683528 ], [ -80.156250, 25.799891 ], [ -80.859375, 25.799891 ], [ -80.859375, 25.165173 ], [ -81.562500, 25.165173 ], [ -81.562500, 25.799891 ], [ -82.265625, 25.799891 ], [ -82.265625, 27.059126 ], [ -82.968750, 27.059126 ], [ -82.968750, 29.535230 ], [ -84.375000, 29.535230 ], [ -84.375000, 30.145127 ], [ -85.781250, 30.145127 ], [ -85.781250, 30.751278 ], [ -90.000000, 30.751278 ], [ -90.000000, 29.535230 ], [ -92.109375, 29.535230 ], [ -92.109375, 30.145127 ], [ -94.218750, 30.145127 ], [ -94.218750, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 28.921631 ], [ -97.031250, 28.921631 ], [ -97.031250, 28.304381 ], [ -97.734375, 28.304381 ], [ -97.734375, 26.431228 ], [ -99.843750, 26.431228 ], [ -99.843750, 27.683528 ], [ -100.546875, 27.683528 ], [ -100.546875, 28.921631 ], [ -101.250000, 28.921631 ], [ -101.250000, 29.535230 ], [ -101.953125, 29.535230 ], [ -101.953125, 30.145127 ], [ -102.656250, 30.145127 ], [ -102.656250, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.145127 ], [ -105.468750, 30.145127 ], [ -105.468750, 30.751278 ], [ -106.171875, 30.751278 ], [ -106.171875, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -112.500000, 31.353637 ], [ -112.500000, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 32.546813 ], [ -115.312500, 32.546813 ], [ -115.312500, 33.137551 ], [ -116.015625, 33.137551 ], [ -116.015625, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -118.125000, 33.137551 ], [ -118.125000, 33.724340 ], [ -118.828125, 33.724340 ], [ -118.828125, 34.307144 ], [ -119.531250, 34.307144 ], [ -119.531250, 34.885931 ], [ -120.937500, 34.885931 ], [ -120.937500, 35.460670 ], [ -121.640625, 35.460670 ], [ -121.640625, 36.031332 ], [ -122.343750, 36.031332 ], [ -122.343750, 37.160317 ], [ -123.046875, 37.160317 ], [ -123.046875, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -124.453125, 39.368279 ], [ -124.453125, 42.553080 ], [ -125.156250, 42.553080 ], [ -125.156250, 43.580391 ], [ -124.453125, 43.580391 ], [ -124.453125, 47.989922 ], [ -125.156250, 47.989922 ], [ -125.156250, 48.458352 ], [ -123.750000, 48.458352 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ] ], [ [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.343750, 47.517201 ], [ -122.343750, 47.989922 ], [ -123.046875, 47.989922 ] ] ], [ [ [ -159.609375, 22.593726 ], [ -159.609375, 21.943046 ], [ -160.312500, 21.943046 ], [ -160.312500, 22.593726 ], [ -159.609375, 22.593726 ] ] ], [ [ [ -132.890625, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.704147 ], [ -134.296875, 57.704147 ], [ -134.296875, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 59.175928 ], [ -139.218750, 59.175928 ], [ -139.218750, 59.534318 ], [ -139.921875, 59.534318 ], [ -139.921875, 59.888937 ], [ -142.734375, 59.888937 ], [ -142.734375, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.586967 ], [ -147.656250, 60.586967 ], [ -147.656250, 60.930432 ], [ -148.359375, 60.930432 ], [ -148.359375, 60.239811 ], [ -149.062500, 60.239811 ], [ -149.062500, 59.888937 ], [ -149.765625, 59.888937 ], [ -149.765625, 59.534318 ], [ -151.171875, 59.534318 ], [ -151.171875, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.930432 ], [ -152.578125, 60.930432 ], [ -152.578125, 59.888937 ], [ -153.984375, 59.888937 ], [ -153.984375, 59.534318 ], [ -154.687500, 59.534318 ], [ -154.687500, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.813742 ], [ -154.687500, 58.813742 ], [ -154.687500, 58.077876 ], [ -155.390625, 58.077876 ], [ -155.390625, 57.704147 ], [ -156.796875, 57.704147 ], [ -156.796875, 56.944974 ], [ -157.500000, 56.944974 ], [ -157.500000, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.170023 ], [ -158.906250, 56.170023 ], [ -158.906250, 55.776573 ], [ -160.312500, 55.776573 ], [ -160.312500, 55.379110 ], [ -162.421875, 55.379110 ], [ -162.421875, 54.977614 ], [ -163.828125, 54.977614 ], [ -163.828125, 54.572062 ], [ -165.234375, 54.572062 ], [ -165.234375, 54.977614 ], [ -164.531250, 54.977614 ], [ -164.531250, 55.379110 ], [ -163.125000, 55.379110 ], [ -163.125000, 55.776573 ], [ -162.421875, 55.776573 ], [ -162.421875, 56.170023 ], [ -160.312500, 56.170023 ], [ -160.312500, 56.559482 ], [ -159.609375, 56.559482 ], [ -159.609375, 56.944974 ], [ -158.906250, 56.944974 ], [ -158.906250, 57.326521 ], [ -158.203125, 57.326521 ], [ -158.203125, 58.813742 ], [ -158.906250, 58.813742 ], [ -158.906250, 58.447733 ], [ -159.609375, 58.447733 ], [ -159.609375, 58.813742 ], [ -162.421875, 58.813742 ], [ -162.421875, 59.888937 ], [ -164.531250, 59.888937 ], [ -164.531250, 60.239811 ], [ -165.234375, 60.239811 ], [ -165.234375, 60.586967 ], [ -165.937500, 60.586967 ], [ -165.937500, 61.270233 ], [ -166.640625, 61.270233 ], [ -166.640625, 61.938950 ], [ -165.937500, 61.938950 ], [ -165.937500, 62.593341 ], [ -165.234375, 62.593341 ], [ -165.234375, 63.233627 ], [ -162.421875, 63.233627 ], [ -162.421875, 63.548552 ], [ -161.015625, 63.548552 ], [ -161.015625, 64.472794 ], [ -161.718750, 64.472794 ], [ -161.718750, 64.774125 ], [ -163.125000, 64.774125 ], [ -163.125000, 64.472794 ], [ -166.640625, 64.472794 ], [ -166.640625, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -168.046875, 65.366837 ], [ -168.046875, 65.658275 ], [ -168.750000, 65.658275 ], [ -168.750000, 65.946472 ], [ -167.343750, 65.946472 ], [ -167.343750, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.791909 ], [ -163.828125, 66.791909 ], [ -163.828125, 66.231457 ], [ -162.421875, 66.231457 ], [ -162.421875, 66.513260 ], [ -163.125000, 66.513260 ], [ -163.125000, 67.067433 ], [ -163.828125, 67.067433 ], [ -163.828125, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.875541 ], [ -165.937500, 67.875541 ], [ -165.937500, 68.138852 ], [ -167.343750, 68.138852 ], [ -167.343750, 68.656555 ], [ -166.640625, 68.656555 ], [ -166.640625, 68.911005 ], [ -165.234375, 68.911005 ], [ -165.234375, 69.162558 ], [ -163.828125, 69.162558 ], [ -163.828125, 69.657086 ], [ -163.125000, 69.657086 ], [ -163.125000, 70.140364 ], [ -162.421875, 70.140364 ], [ -162.421875, 70.377854 ], [ -161.015625, 70.377854 ], [ -161.015625, 70.612614 ], [ -160.312500, 70.612614 ], [ -160.312500, 70.844673 ], [ -157.500000, 70.844673 ], [ -157.500000, 71.300793 ], [ -155.390625, 71.300793 ], [ -155.390625, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.844673 ], [ -152.578125, 70.844673 ], [ -152.578125, 70.612614 ], [ -149.062500, 70.612614 ], [ -149.062500, 70.377854 ], [ -147.656250, 70.377854 ], [ -147.656250, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 69.900118 ], [ -141.328125, 69.900118 ], [ -141.328125, 60.586967 ], [ -140.625000, 60.586967 ], [ -140.625000, 60.239811 ], [ -139.218750, 60.239811 ], [ -139.218750, 59.888937 ], [ -138.515625, 59.888937 ], [ -138.515625, 59.534318 ], [ -137.812500, 59.534318 ], [ -137.812500, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 59.175928 ], [ -134.296875, 59.175928 ], [ -134.296875, 58.813742 ], [ -133.593750, 58.813742 ], [ -133.593750, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 56.944974 ] ], [ [ -151.875000, 61.270233 ], [ -151.875000, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.270233 ], [ -151.875000, 61.270233 ] ], [ [ -161.718750, 65.072130 ], [ -161.718750, 64.774125 ], [ -161.015625, 64.774125 ], [ -161.015625, 65.072130 ], [ -161.718750, 65.072130 ] ] ], [ [ [ -132.890625, 56.944974 ], [ -132.187500, 56.944974 ], [ -132.187500, 56.559482 ], [ -131.484375, 56.559482 ], [ -131.484375, 56.170023 ], [ -130.078125, 56.170023 ], [ -130.078125, 54.977614 ], [ -131.484375, 54.977614 ], [ -131.484375, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 56.170023 ], [ -132.890625, 56.170023 ], [ -132.890625, 56.944974 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -152.578125, 57.326521 ], [ -153.281250, 57.326521 ], [ -153.281250, 56.944974 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.704147 ], [ -153.984375, 57.704147 ], [ -153.984375, 58.077876 ], [ -152.578125, 58.077876 ] ] ], [ [ [ -165.937500, 60.586967 ], [ -165.937500, 59.888937 ], [ -167.343750, 59.888937 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ], [ -166.640625, 60.586967 ], [ -165.937500, 60.586967 ] ] ], [ [ [ -170.859375, 63.548552 ], [ -168.750000, 63.548552 ], [ -168.750000, 63.233627 ], [ -170.859375, 63.233627 ], [ -170.859375, 63.548552 ] ] ], [ [ [ -170.859375, 63.548552 ], [ -172.265625, 63.548552 ], [ -172.265625, 63.860036 ], [ -170.859375, 63.860036 ], [ -170.859375, 63.548552 ] ] ], [ [ [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 21.289374 ], [ -156.093750, 21.289374 ], [ -156.093750, 20.632784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -114.609375, 32.546813 ], [ -114.609375, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.171875, 31.952162 ], [ -106.171875, 31.353637 ], [ -105.468750, 31.353637 ], [ -105.468750, 30.751278 ], [ -104.765625, 30.751278 ], [ -104.765625, 29.535230 ], [ -104.062500, 29.535230 ], [ -104.062500, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -99.843750, 28.304381 ], [ -99.843750, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.734375, 25.165173 ], [ -97.734375, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.328125, 19.973349 ], [ -96.328125, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 17.978733 ], [ -93.515625, 17.978733 ], [ -93.515625, 18.646245 ], [ -90.703125, 18.646245 ], [ -90.703125, 20.632784 ], [ -90.000000, 20.632784 ], [ -90.000000, 21.289374 ], [ -86.484375, 21.289374 ], [ -86.484375, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 19.973349 ], [ -87.890625, 19.973349 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 17.978733 ], [ -90.703125, 17.978733 ], [ -90.703125, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 15.961329 ], [ -91.406250, 15.961329 ], [ -91.406250, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 14.604847 ], [ -93.515625, 14.604847 ], [ -93.515625, 15.284185 ], [ -94.218750, 15.284185 ], [ -94.218750, 15.961329 ], [ -99.140625, 15.961329 ], [ -99.140625, 16.636192 ], [ -100.546875, 16.636192 ], [ -100.546875, 17.308688 ], [ -101.953125, 17.308688 ], [ -101.953125, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 18.646245 ], [ -104.765625, 18.646245 ], [ -104.765625, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 23.241346 ], [ -106.875000, 23.241346 ], [ -106.875000, 23.885838 ], [ -107.578125, 23.885838 ], [ -107.578125, 24.527135 ], [ -108.281250, 24.527135 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 26.431228 ], [ -110.390625, 26.431228 ], [ -110.390625, 27.683528 ], [ -111.796875, 27.683528 ], [ -111.796875, 28.304381 ], [ -112.500000, 28.304381 ], [ -112.500000, 30.145127 ], [ -113.203125, 30.145127 ], [ -113.203125, 31.353637 ], [ -114.609375, 31.353637 ], [ -114.609375, 29.535230 ], [ -116.015625, 29.535230 ], [ -116.015625, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.952162 ], [ -117.421875, 31.952162 ], [ -117.421875, 32.546813 ], [ -114.609375, 32.546813 ] ] ], [ [ [ -112.500000, 26.431228 ], [ -111.796875, 26.431228 ], [ -111.796875, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 22.593726 ], [ -110.390625, 22.593726 ], [ -110.390625, 23.241346 ], [ -111.093750, 23.241346 ], [ -111.093750, 23.885838 ], [ -111.796875, 23.885838 ], [ -111.796875, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 26.431228 ] ] ], [ [ [ -113.906250, 28.921631 ], [ -113.203125, 28.921631 ], [ -113.203125, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 26.431228 ], [ -113.906250, 26.431228 ], [ -113.906250, 27.059126 ], [ -115.312500, 27.059126 ], [ -115.312500, 27.683528 ], [ -113.906250, 27.683528 ], [ -113.906250, 28.921631 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.906250, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.171875, 31.952162 ], [ -106.171875, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 30.145127 ], [ -104.765625, 30.145127 ], [ -104.765625, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 30.145127 ], [ -101.953125, 30.145127 ], [ -101.953125, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 27.683528 ], [ -99.843750, 27.683528 ], [ -99.843750, 26.431228 ], [ -97.734375, 26.431228 ], [ -97.734375, 23.885838 ], [ -98.437500, 23.885838 ], [ -98.437500, 21.943046 ], [ -97.734375, 21.943046 ], [ -97.734375, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.328125, 19.973349 ], [ -96.328125, 18.646245 ], [ -92.109375, 18.646245 ], [ -92.109375, 19.311143 ], [ -90.703125, 19.311143 ], [ -90.703125, 21.289374 ], [ -88.593750, 21.289374 ], [ -88.593750, 21.943046 ], [ -87.187500, 21.943046 ], [ -87.187500, 20.632784 ], [ -87.890625, 20.632784 ], [ -87.890625, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 17.978733 ], [ -91.406250, 17.978733 ], [ -91.406250, 16.636192 ], [ -92.109375, 16.636192 ], [ -92.109375, 15.961329 ], [ -92.812500, 15.961329 ], [ -92.812500, 15.284185 ], [ -93.515625, 15.284185 ], [ -93.515625, 15.961329 ], [ -94.921875, 15.961329 ], [ -94.921875, 16.636192 ], [ -95.625000, 16.636192 ], [ -95.625000, 15.961329 ], [ -98.437500, 15.961329 ], [ -98.437500, 16.636192 ], [ -99.843750, 16.636192 ], [ -99.843750, 17.308688 ], [ -101.953125, 17.308688 ], [ -101.953125, 17.978733 ], [ -104.062500, 17.978733 ], [ -104.062500, 19.311143 ], [ -105.468750, 19.311143 ], [ -105.468750, 19.973349 ], [ -106.171875, 19.973349 ], [ -106.171875, 21.289374 ], [ -105.468750, 21.289374 ], [ -105.468750, 21.943046 ], [ -106.171875, 21.943046 ], [ -106.171875, 23.241346 ], [ -107.578125, 23.241346 ], [ -107.578125, 24.527135 ], [ -108.281250, 24.527135 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.683528 ], [ -111.093750, 27.683528 ], [ -111.093750, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.921631 ], [ -112.500000, 28.921631 ], [ -112.500000, 29.535230 ], [ -113.203125, 29.535230 ], [ -113.203125, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.952162 ] ] ], [ [ [ -113.906250, 31.952162 ], [ -115.312500, 31.952162 ], [ -115.312500, 30.145127 ], [ -114.609375, 30.145127 ], [ -114.609375, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.921631 ], [ -113.203125, 28.921631 ], [ -113.203125, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 27.059126 ], [ -111.796875, 27.059126 ], [ -111.796875, 25.799891 ], [ -111.093750, 25.799891 ], [ -111.093750, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 26.431228 ], [ -113.906250, 26.431228 ], [ -113.906250, 27.059126 ], [ -114.609375, 27.059126 ], [ -114.609375, 27.683528 ], [ -115.312500, 27.683528 ], [ -115.312500, 28.304381 ], [ -114.609375, 28.304381 ], [ -114.609375, 28.921631 ], [ -115.312500, 28.921631 ], [ -115.312500, 29.535230 ], [ -116.015625, 29.535230 ], [ -116.015625, 30.751278 ], [ -116.718750, 30.751278 ], [ -116.718750, 31.353637 ], [ -117.421875, 31.353637 ], [ -117.421875, 32.546813 ], [ -116.015625, 32.546813 ], [ -116.015625, 33.137551 ], [ -115.312500, 33.137551 ], [ -115.312500, 32.546813 ], [ -113.906250, 32.546813 ], [ -113.906250, 31.952162 ] ] ], [ [ [ -110.390625, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.241346 ], [ -110.390625, 23.241346 ], [ -110.390625, 23.885838 ] ] ], [ [ [ -111.093750, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 23.885838 ], [ -111.093750, 23.885838 ], [ -111.093750, 24.527135 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -87.890625, 15.961329 ], [ -87.890625, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 13.923404 ], [ -92.109375, 13.923404 ], [ -92.109375, 15.284185 ], [ -91.406250, 15.284185 ], [ -91.406250, 15.961329 ], [ -90.703125, 15.961329 ], [ -90.703125, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.308688 ], [ -90.703125, 17.308688 ], [ -90.703125, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 14.604847 ], [ -90.000000, 14.604847 ], [ -90.000000, 13.923404 ], [ -91.406250, 13.923404 ], [ -91.406250, 14.604847 ], [ -92.812500, 14.604847 ], [ -92.812500, 15.961329 ], [ -92.109375, 15.961329 ], [ -92.109375, 16.636192 ], [ -91.406250, 16.636192 ], [ -91.406250, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -23.203125, 72.181804 ], [ -23.203125, 71.965388 ], [ -22.500000, 71.965388 ], [ -22.500000, 71.524909 ], [ -21.796875, 71.524909 ], [ -21.796875, 70.377854 ], [ -23.906250, 70.377854 ], [ -23.906250, 70.612614 ], [ -24.609375, 70.612614 ], [ -24.609375, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 68.911005 ], [ -26.015625, 68.911005 ], [ -26.015625, 68.656555 ], [ -26.718750, 68.656555 ], [ -26.718750, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.750000, 67.339861 ], [ -33.750000, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.231457 ], [ -35.859375, 66.231457 ], [ -35.859375, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.781250, 65.072130 ], [ -40.781250, 63.860036 ], [ -41.484375, 63.860036 ], [ -41.484375, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.593341 ], [ -42.890625, 62.593341 ], [ -42.890625, 62.267923 ], [ -42.187500, 62.267923 ], [ -42.187500, 61.270233 ], [ -42.890625, 61.270233 ], [ -42.890625, 60.586967 ], [ -43.593750, 60.586967 ], [ -43.593750, 59.888937 ], [ -45.703125, 59.888937 ], [ -45.703125, 60.586967 ], [ -46.406250, 60.586967 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 61.606396 ], [ -49.921875, 61.606396 ], [ -49.921875, 62.593341 ], [ -50.625000, 62.593341 ], [ -50.625000, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.860036 ], [ -52.031250, 63.860036 ], [ -52.031250, 65.366837 ], [ -52.734375, 65.366837 ], [ -52.734375, 65.946472 ], [ -53.437500, 65.946472 ], [ -53.437500, 66.791909 ], [ -54.140625, 66.791909 ], [ -54.140625, 67.339861 ], [ -53.437500, 67.339861 ], [ -53.437500, 67.875541 ], [ -52.734375, 67.875541 ], [ -52.734375, 68.399180 ], [ -51.328125, 68.399180 ], [ -51.328125, 69.411242 ], [ -50.625000, 69.411242 ], [ -50.625000, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.162558 ], [ -54.140625, 69.162558 ], [ -54.140625, 69.411242 ], [ -54.843750, 69.411242 ], [ -54.843750, 70.612614 ], [ -54.140625, 70.612614 ], [ -54.140625, 70.844673 ], [ -52.734375, 70.844673 ], [ -52.734375, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.300793 ], [ -54.843750, 71.300793 ], [ -54.843750, 71.524909 ], [ -55.546875, 71.524909 ], [ -55.546875, 72.181804 ], [ -54.843750, 72.181804 ], [ -54.843750, 72.816074 ], [ -55.546875, 72.816074 ], [ -55.546875, 73.226700 ], [ -56.250000, 73.226700 ], [ -56.250000, 73.824820 ], [ -56.953125, 73.824820 ], [ -56.953125, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.184995 ], [ -66.796875, 76.184995 ], [ -66.796875, 76.016094 ], [ -68.906250, 76.016094 ], [ -68.906250, 76.184995 ], [ -69.609375, 76.184995 ], [ -69.609375, 76.351896 ], [ -70.312500, 76.351896 ], [ -70.312500, 76.679785 ], [ -71.015625, 76.679785 ], [ -71.015625, 76.840816 ], [ -71.718750, 76.840816 ], [ -71.718750, 76.999935 ], [ -70.312500, 76.999935 ], [ -70.312500, 77.157163 ], [ -68.906250, 77.157163 ], [ -68.906250, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.466028 ], [ -70.312500, 77.466028 ], [ -70.312500, 77.617709 ], [ -71.718750, 77.617709 ], [ -71.718750, 77.767582 ], [ -72.421875, 77.767582 ], [ -72.421875, 77.915669 ], [ -73.125000, 77.915669 ], [ -73.125000, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.767792 ], [ -69.609375, 78.767792 ], [ -69.609375, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 79.038437 ], [ -67.500000, 79.038437 ], [ -67.500000, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.302640 ], [ -65.390625, 79.302640 ], [ -65.390625, 79.812302 ], [ -66.796875, 79.812302 ], [ -66.796875, 79.935918 ], [ -68.203125, 79.935918 ], [ -68.203125, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.647035 ], [ -66.093750, 80.647035 ], [ -66.093750, 80.872827 ], [ -65.390625, 80.872827 ], [ -65.390625, 80.983688 ], [ -64.687500, 80.983688 ], [ -64.687500, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.201420 ], [ -62.578125, 81.201420 ], [ -62.578125, 81.723188 ], [ -61.875000, 81.723188 ], [ -61.875000, 81.823794 ], [ -61.171875, 81.823794 ], [ -61.171875, 81.923186 ], [ -60.468750, 81.923186 ], [ -60.468750, 82.021378 ], [ -59.062500, 82.021378 ], [ -59.062500, 82.118384 ], [ -57.656250, 82.118384 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.437500, 82.118384 ], [ -53.437500, 81.923186 ], [ -52.031250, 81.923186 ], [ -52.031250, 82.118384 ], [ -51.328125, 82.118384 ], [ -51.328125, 82.308893 ], [ -49.921875, 82.308893 ], [ -49.921875, 82.214217 ], [ -49.218750, 82.214217 ], [ -49.218750, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.021378 ], [ -46.406250, 82.021378 ], [ -46.406250, 82.118384 ], [ -47.109375, 82.118384 ], [ -47.109375, 82.586106 ], [ -46.406250, 82.586106 ], [ -46.406250, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.853382 ], [ -45.000000, 82.853382 ], [ -45.000000, 82.940327 ], [ -44.296875, 82.940327 ], [ -44.296875, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.277705 ], [ -39.375000, 83.277705 ], [ -39.375000, 83.440326 ], [ -38.671875, 83.440326 ], [ -38.671875, 83.520162 ], [ -37.265625, 83.520162 ], [ -37.265625, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.676943 ], [ -33.750000, 83.676943 ], [ -33.750000, 83.599031 ], [ -29.531250, 83.599031 ], [ -29.531250, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.586106 ], [ -21.796875, 82.586106 ], [ -21.796875, 82.402423 ], [ -22.500000, 82.402423 ], [ -22.500000, 82.308893 ], [ -28.828125, 82.308893 ], [ -28.828125, 82.214217 ], [ -31.640625, 82.214217 ], [ -31.640625, 82.021378 ], [ -29.531250, 82.021378 ], [ -29.531250, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.923186 ], [ -25.312500, 81.923186 ], [ -25.312500, 81.823794 ], [ -23.906250, 81.823794 ], [ -23.906250, 82.021378 ], [ -22.500000, 82.021378 ], [ -22.500000, 81.823794 ], [ -21.796875, 81.823794 ], [ -21.796875, 81.518272 ], [ -22.500000, 81.518272 ], [ -22.500000, 81.308321 ], [ -21.093750, 81.308321 ], [ -21.093750, 81.413933 ], [ -20.390625, 81.413933 ], [ -20.390625, 81.518272 ], [ -19.687500, 81.518272 ], [ -19.687500, 81.621352 ], [ -18.281250, 81.621352 ], [ -18.281250, 81.723188 ], [ -16.875000, 81.723188 ], [ -16.875000, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -11.953125, 81.518272 ], [ -11.953125, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.760615 ], [ -14.765625, 80.760615 ], [ -14.765625, 80.647035 ], [ -15.468750, 80.647035 ], [ -15.468750, 80.532071 ], [ -16.171875, 80.532071 ], [ -16.171875, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.178713 ], [ -17.578125, 80.178713 ], [ -17.578125, 79.935918 ], [ -18.281250, 79.935918 ], [ -18.281250, 79.560546 ], [ -18.984375, 79.560546 ], [ -18.984375, 79.038437 ], [ -19.687500, 79.038437 ], [ -19.687500, 77.466028 ], [ -18.984375, 77.466028 ], [ -18.984375, 77.157163 ], [ -18.281250, 77.157163 ], [ -18.281250, 76.999935 ], [ -19.687500, 76.999935 ], [ -19.687500, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.351896 ], [ -20.390625, 76.351896 ], [ -20.390625, 76.016094 ], [ -19.687500, 76.016094 ], [ -19.687500, 75.140778 ], [ -20.390625, 75.140778 ], [ -20.390625, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.211983 ], [ -21.796875, 74.211983 ], [ -21.796875, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -21.093750, 73.627789 ], [ -21.093750, 73.226700 ], [ -23.906250, 73.226700 ], [ -23.906250, 73.022592 ], [ -23.203125, 73.022592 ], [ -23.203125, 72.607120 ], [ -22.500000, 72.607120 ], [ -22.500000, 72.181804 ], [ -23.203125, 72.181804 ] ], [ [ -23.203125, 72.181804 ], [ -23.203125, 72.395706 ], [ -24.609375, 72.395706 ], [ -24.609375, 72.181804 ], [ -23.203125, 72.181804 ] ], [ [ -22.500000, 81.308321 ], [ -23.203125, 81.308321 ], [ -23.203125, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.308321 ] ], [ [ -52.734375, 70.844673 ], [ -52.734375, 70.612614 ], [ -52.031250, 70.612614 ], [ -52.031250, 70.844673 ], [ -52.734375, 70.844673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.406250, 81.923186 ], [ -46.406250, 82.118384 ], [ -47.109375, 82.118384 ], [ -47.109375, 82.676285 ], [ -46.406250, 82.676285 ], [ -46.406250, 82.853382 ], [ -45.703125, 82.853382 ], [ -45.703125, 82.940327 ], [ -45.000000, 82.940327 ], [ -45.000000, 83.026219 ], [ -44.296875, 83.026219 ], [ -44.296875, 83.194896 ], [ -43.593750, 83.194896 ], [ -43.593750, 83.277705 ], [ -42.187500, 83.277705 ], [ -42.187500, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.277705 ], [ -39.375000, 83.277705 ], [ -39.375000, 83.440326 ], [ -38.671875, 83.440326 ], [ -38.671875, 83.599031 ], [ -36.562500, 83.599031 ], [ -36.562500, 83.676943 ], [ -33.750000, 83.676943 ], [ -33.750000, 83.599031 ], [ -29.531250, 83.599031 ], [ -29.531250, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.676285 ], [ -21.796875, 82.676285 ], [ -21.796875, 82.586106 ], [ -22.500000, 82.586106 ], [ -22.500000, 82.402423 ], [ -24.609375, 82.402423 ], [ -24.609375, 82.308893 ], [ -28.828125, 82.308893 ], [ -28.828125, 82.214217 ], [ -28.125000, 82.214217 ], [ -28.125000, 82.118384 ], [ -27.421875, 82.118384 ], [ -27.421875, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.923186 ], [ -26.015625, 81.923186 ], [ -26.015625, 81.823794 ], [ -24.609375, 81.823794 ], [ -24.609375, 81.923186 ], [ -23.906250, 81.923186 ], [ -23.906250, 82.021378 ], [ -23.203125, 82.021378 ], [ -23.203125, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.518272 ], [ -23.203125, 81.518272 ], [ -23.203125, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.413933 ], [ -21.796875, 81.413933 ], [ -21.796875, 81.518272 ], [ -21.093750, 81.518272 ], [ -21.093750, 81.621352 ], [ -19.687500, 81.621352 ], [ -19.687500, 81.723188 ], [ -18.281250, 81.723188 ], [ -18.281250, 81.823794 ], [ -16.875000, 81.823794 ], [ -16.875000, 81.923186 ], [ -16.171875, 81.923186 ], [ -16.171875, 81.823794 ], [ -14.765625, 81.823794 ], [ -14.765625, 81.723188 ], [ -13.359375, 81.723188 ], [ -13.359375, 81.518272 ], [ -12.656250, 81.518272 ], [ -12.656250, 81.201420 ], [ -13.359375, 81.201420 ], [ -13.359375, 81.093214 ], [ -14.062500, 81.093214 ], [ -14.062500, 80.983688 ], [ -14.765625, 80.983688 ], [ -14.765625, 80.872827 ], [ -15.468750, 80.872827 ], [ -15.468750, 80.760615 ], [ -16.171875, 80.760615 ], [ -16.171875, 80.647035 ], [ -16.875000, 80.647035 ], [ -16.875000, 80.415707 ], [ -17.578125, 80.415707 ], [ -17.578125, 80.297927 ], [ -18.984375, 80.297927 ], [ -18.984375, 80.178713 ], [ -18.281250, 80.178713 ], [ -18.281250, 79.812302 ], [ -18.984375, 79.812302 ], [ -18.984375, 79.171335 ], [ -19.687500, 79.171335 ], [ -19.687500, 78.903929 ], [ -20.390625, 78.903929 ], [ -20.390625, 78.206563 ], [ -19.687500, 78.206563 ], [ -19.687500, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 76.999935 ], [ -20.390625, 76.999935 ], [ -20.390625, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.516819 ], [ -21.093750, 76.516819 ], [ -21.093750, 76.184995 ], [ -20.390625, 76.184995 ], [ -20.390625, 75.672197 ], [ -19.687500, 75.672197 ], [ -19.687500, 75.320025 ], [ -21.093750, 75.320025 ], [ -21.093750, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.402163 ], [ -21.796875, 74.402163 ], [ -21.796875, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.428424 ], [ -23.906250, 73.428424 ], [ -23.906250, 73.226700 ], [ -23.203125, 73.226700 ], [ -23.203125, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.395706 ], [ -23.906250, 72.395706 ], [ -23.906250, 72.607120 ], [ -24.609375, 72.607120 ], [ -24.609375, 72.395706 ], [ -25.312500, 72.395706 ], [ -25.312500, 72.181804 ], [ -23.906250, 72.181804 ], [ -23.906250, 71.965388 ], [ -23.203125, 71.965388 ], [ -23.203125, 71.524909 ], [ -22.500000, 71.524909 ], [ -22.500000, 71.074056 ], [ -21.796875, 71.074056 ], [ -21.796875, 70.844673 ], [ -22.500000, 70.844673 ], [ -22.500000, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.844673 ], [ -24.609375, 70.844673 ], [ -24.609375, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.612614 ], [ -26.015625, 70.612614 ], [ -26.015625, 70.377854 ], [ -23.906250, 70.377854 ], [ -23.906250, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.657086 ], [ -24.609375, 69.657086 ], [ -24.609375, 69.411242 ], [ -25.312500, 69.411242 ], [ -25.312500, 69.162558 ], [ -26.015625, 69.162558 ], [ -26.015625, 68.911005 ], [ -27.421875, 68.911005 ], [ -27.421875, 68.656555 ], [ -28.125000, 68.656555 ], [ -28.125000, 68.399180 ], [ -29.531250, 68.399180 ], [ -29.531250, 68.138852 ], [ -32.343750, 68.138852 ], [ -32.343750, 67.875541 ], [ -33.046875, 67.875541 ], [ -33.046875, 67.609221 ], [ -33.750000, 67.609221 ], [ -33.750000, 67.067433 ], [ -34.453125, 67.067433 ], [ -34.453125, 66.513260 ], [ -35.859375, 66.513260 ], [ -35.859375, 66.231457 ], [ -36.562500, 66.231457 ], [ -36.562500, 65.946472 ], [ -38.671875, 65.946472 ], [ -38.671875, 65.658275 ], [ -40.078125, 65.658275 ], [ -40.078125, 65.366837 ], [ -40.781250, 65.366837 ], [ -40.781250, 63.860036 ], [ -41.484375, 63.860036 ], [ -41.484375, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.915233 ], [ -42.890625, 62.915233 ], [ -42.890625, 60.586967 ], [ -43.593750, 60.586967 ], [ -43.593750, 60.239811 ], [ -45.703125, 60.239811 ], [ -45.703125, 60.586967 ], [ -46.406250, 60.586967 ], [ -46.406250, 60.930432 ], [ -49.218750, 60.930432 ], [ -49.218750, 61.270233 ], [ -49.921875, 61.270233 ], [ -49.921875, 62.593341 ], [ -50.625000, 62.593341 ], [ -50.625000, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -52.031250, 63.548552 ], [ -52.031250, 64.168107 ], [ -52.734375, 64.168107 ], [ -52.734375, 65.366837 ], [ -53.437500, 65.366837 ], [ -53.437500, 65.946472 ], [ -54.140625, 65.946472 ], [ -54.140625, 66.513260 ], [ -53.437500, 66.513260 ], [ -53.437500, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.875541 ], [ -53.437500, 67.875541 ], [ -53.437500, 68.399180 ], [ -52.734375, 68.399180 ], [ -52.734375, 68.656555 ], [ -52.031250, 68.656555 ], [ -52.031250, 68.911005 ], [ -51.328125, 68.911005 ], [ -51.328125, 69.900118 ], [ -52.031250, 69.900118 ], [ -52.031250, 69.657086 ], [ -52.734375, 69.657086 ], [ -52.734375, 69.411242 ], [ -54.843750, 69.411242 ], [ -54.843750, 70.844673 ], [ -53.437500, 70.844673 ], [ -53.437500, 70.612614 ], [ -52.734375, 70.612614 ], [ -52.734375, 71.074056 ], [ -53.437500, 71.074056 ], [ -53.437500, 71.524909 ], [ -56.250000, 71.524909 ], [ -56.250000, 71.965388 ], [ -55.546875, 71.965388 ], [ -55.546875, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.816074 ], [ -55.546875, 72.816074 ], [ -55.546875, 73.428424 ], [ -56.250000, 73.428424 ], [ -56.250000, 74.019543 ], [ -56.953125, 74.019543 ], [ -56.953125, 74.402163 ], [ -57.656250, 74.402163 ], [ -57.656250, 74.775843 ], [ -58.359375, 74.775843 ], [ -58.359375, 74.959392 ], [ -59.062500, 74.959392 ], [ -59.062500, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.845169 ], [ -61.171875, 75.845169 ], [ -61.171875, 76.016094 ], [ -61.875000, 76.016094 ], [ -61.875000, 76.184995 ], [ -69.609375, 76.184995 ], [ -69.609375, 76.351896 ], [ -70.312500, 76.351896 ], [ -70.312500, 76.679785 ], [ -71.015625, 76.679785 ], [ -71.015625, 76.999935 ], [ -71.718750, 76.999935 ], [ -71.718750, 77.157163 ], [ -70.312500, 77.157163 ], [ -70.312500, 77.312520 ], [ -68.906250, 77.312520 ], [ -68.906250, 77.466028 ], [ -68.203125, 77.466028 ], [ -68.203125, 77.617709 ], [ -71.015625, 77.617709 ], [ -71.015625, 77.767582 ], [ -72.421875, 77.767582 ], [ -72.421875, 77.915669 ], [ -73.828125, 77.915669 ], [ -73.828125, 78.490552 ], [ -73.125000, 78.490552 ], [ -73.125000, 78.630006 ], [ -71.718750, 78.630006 ], [ -71.718750, 78.767792 ], [ -71.015625, 78.767792 ], [ -71.015625, 78.903929 ], [ -69.609375, 78.903929 ], [ -69.609375, 79.038437 ], [ -68.906250, 79.038437 ], [ -68.906250, 79.171335 ], [ -67.500000, 79.171335 ], [ -67.500000, 79.302640 ], [ -66.093750, 79.302640 ], [ -66.093750, 79.560546 ], [ -65.390625, 79.560546 ], [ -65.390625, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.935918 ], [ -67.500000, 79.935918 ], [ -67.500000, 80.058050 ], [ -68.203125, 80.058050 ], [ -68.203125, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.760615 ], [ -66.093750, 80.760615 ], [ -66.093750, 80.872827 ], [ -65.390625, 80.872827 ], [ -65.390625, 80.983688 ], [ -64.687500, 80.983688 ], [ -64.687500, 81.201420 ], [ -63.984375, 81.201420 ], [ -63.984375, 81.308321 ], [ -62.578125, 81.308321 ], [ -62.578125, 81.621352 ], [ -63.281250, 81.621352 ], [ -63.281250, 81.823794 ], [ -62.578125, 81.823794 ], [ -62.578125, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 82.021378 ], [ -60.468750, 82.021378 ], [ -60.468750, 82.118384 ], [ -58.359375, 82.118384 ], [ -58.359375, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.923186 ], [ -52.734375, 81.923186 ], [ -52.734375, 82.118384 ], [ -52.031250, 82.118384 ], [ -52.031250, 82.214217 ], [ -51.328125, 82.214217 ], [ -51.328125, 82.402423 ], [ -49.921875, 82.402423 ], [ -49.921875, 82.308893 ], [ -49.218750, 82.308893 ], [ -49.218750, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.021378 ], [ -47.109375, 82.021378 ], [ -47.109375, 81.923186 ], [ -46.406250, 81.923186 ] ], [ [ -28.828125, 82.214217 ], [ -32.343750, 82.214217 ], [ -32.343750, 82.118384 ], [ -31.640625, 82.118384 ], [ -31.640625, 82.021378 ], [ -30.234375, 82.021378 ], [ -30.234375, 82.118384 ], [ -28.828125, 82.118384 ], [ -28.828125, 82.214217 ] ], [ [ -25.312500, 71.074056 ], [ -25.312500, 71.300793 ], [ -26.015625, 71.300793 ], [ -26.015625, 71.074056 ], [ -25.312500, 71.074056 ] ], [ [ -46.406250, 81.923186 ], [ -46.406250, 81.823794 ], [ -45.703125, 81.823794 ], [ -45.703125, 81.923186 ], [ -46.406250, 81.923186 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.343750, 24.527135 ], [ -77.343750, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.527135 ], [ -77.343750, 24.527135 ] ] ], [ [ [ -78.046875, 27.059126 ], [ -78.046875, 26.431228 ], [ -78.750000, 26.431228 ], [ -78.750000, 27.059126 ], [ -78.046875, 27.059126 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 25.799891 ], [ -78.046875, 24.527135 ], [ -78.750000, 24.527135 ], [ -78.750000, 25.799891 ], [ -78.046875, 25.799891 ] ] ], [ [ [ -78.046875, 27.059126 ], [ -78.046875, 26.431228 ], [ -79.453125, 26.431228 ], [ -79.453125, 27.059126 ], [ -78.046875, 27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.593750, 17.978733 ], [ -88.593750, 17.308688 ], [ -87.890625, 17.308688 ], [ -87.890625, 16.636192 ], [ -88.593750, 16.636192 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.593750, 17.978733 ] ] ], [ [ [ -87.890625, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 17.978733 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 17.978733 ], [ -88.593750, 16.636192 ], [ -89.296875, 16.636192 ], [ -89.296875, 17.978733 ], [ -88.593750, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -90.000000, 13.239945 ], [ -90.000000, 13.923404 ], [ -87.890625, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.593750, 14.604847 ], [ -88.593750, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.604847 ], [ -88.593750, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.284185 ], [ -83.671875, 15.284185 ], [ -83.671875, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 13.923404 ], [ -86.484375, 13.923404 ], [ -86.484375, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -89.296875, 13.923404 ], [ -89.296875, 15.284185 ], [ -87.890625, 15.284185 ], [ -87.890625, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.284185 ], [ -85.078125, 15.284185 ], [ -85.078125, 14.604847 ], [ -85.781250, 14.604847 ], [ -85.781250, 13.923404 ], [ -87.187500, 13.923404 ], [ -87.187500, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 14.604847 ], [ -89.296875, 14.604847 ], [ -89.296875, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.968750, 15.284185 ], [ -82.968750, 13.923404 ], [ -83.671875, 13.923404 ], [ -83.671875, 10.487812 ], [ -84.375000, 10.487812 ], [ -84.375000, 11.178402 ], [ -86.484375, 11.178402 ], [ -86.484375, 11.867351 ], [ -87.187500, 11.867351 ], [ -87.187500, 12.554564 ], [ -87.890625, 12.554564 ], [ -87.890625, 13.239945 ], [ -86.484375, 13.239945 ], [ -86.484375, 13.923404 ], [ -85.078125, 13.923404 ], [ -85.078125, 14.604847 ], [ -83.671875, 14.604847 ], [ -83.671875, 15.284185 ], [ -82.968750, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.671875, 15.284185 ], [ -83.671875, 12.554564 ], [ -84.375000, 12.554564 ], [ -84.375000, 11.178402 ], [ -86.484375, 11.178402 ], [ -86.484375, 11.867351 ], [ -87.187500, 11.867351 ], [ -87.187500, 12.554564 ], [ -87.890625, 12.554564 ], [ -87.890625, 13.239945 ], [ -87.187500, 13.239945 ], [ -87.187500, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 15.284185 ], [ -83.671875, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.859375, 23.241346 ], [ -80.859375, 22.593726 ], [ -78.046875, 22.593726 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.289374 ], [ -75.937500, 21.289374 ], [ -75.937500, 20.632784 ], [ -75.234375, 20.632784 ], [ -75.234375, 19.973349 ], [ -77.343750, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.750000, 20.632784 ], [ -78.750000, 21.289374 ], [ -80.156250, 21.289374 ], [ -80.156250, 21.943046 ], [ -82.265625, 21.943046 ], [ -82.265625, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 23.241346 ], [ -80.859375, 23.241346 ] ] ], [ [ [ -82.968750, 22.593726 ], [ -82.968750, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 22.593726 ], [ -82.968750, 22.593726 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.156250, 23.241346 ], [ -80.156250, 22.593726 ], [ -78.046875, 22.593726 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.289374 ], [ -75.234375, 21.289374 ], [ -75.234375, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.973349 ], [ -77.343750, 19.973349 ], [ -77.343750, 20.632784 ], [ -78.046875, 20.632784 ], [ -78.046875, 21.289374 ], [ -78.750000, 21.289374 ], [ -78.750000, 21.943046 ], [ -80.859375, 21.943046 ], [ -80.859375, 22.593726 ], [ -82.265625, 22.593726 ], [ -82.265625, 23.241346 ], [ -80.156250, 23.241346 ] ] ], [ [ [ -84.375000, 22.593726 ], [ -84.375000, 21.943046 ], [ -85.078125, 21.943046 ], [ -85.078125, 22.593726 ], [ -84.375000, 22.593726 ] ] ], [ [ [ -82.968750, 22.593726 ], [ -84.375000, 22.593726 ], [ -84.375000, 23.241346 ], [ -82.968750, 23.241346 ], [ -82.968750, 22.593726 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 11.178402 ], [ -84.375000, 10.487812 ], [ -83.671875, 10.487812 ], [ -83.671875, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.375000, 9.102097 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -84.375000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.671875, 11.178402 ], [ -83.671875, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.375000, 9.102097 ], [ -84.375000, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -83.671875, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 7.013668 ], [ -80.859375, 7.013668 ], [ -80.859375, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.265625, 9.795678 ], [ -82.265625, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.407168 ] ] ], [ [ [ -78.046875, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.046875, 7.710992 ], [ -78.046875, 8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.750000, 9.102097 ], [ -80.156250, 9.102097 ], [ -80.156250, 8.407168 ], [ -80.859375, 8.407168 ], [ -80.859375, 7.710992 ], [ -82.265625, 7.710992 ], [ -82.265625, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.265625, 9.795678 ], [ -82.265625, 9.102097 ], [ -80.859375, 9.102097 ], [ -80.859375, 9.795678 ], [ -78.750000, 9.795678 ], [ -78.750000, 9.102097 ] ] ], [ [ [ -78.750000, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.750000, 7.710992 ], [ -78.750000, 9.102097 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.640625, 18.646245 ], [ -76.640625, 17.978733 ], [ -78.046875, 17.978733 ], [ -78.046875, 18.646245 ], [ -76.640625, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.640625, 18.646245 ], [ -76.640625, 17.978733 ], [ -78.750000, 17.978733 ], [ -78.750000, 18.646245 ], [ -76.640625, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.973349 ], [ -71.718750, 17.978733 ], [ -74.531250, 17.978733 ], [ -74.531250, 18.646245 ], [ -73.125000, 18.646245 ], [ -73.125000, 19.973349 ], [ -71.718750, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.973349 ], [ -71.718750, 18.646245 ], [ -72.421875, 18.646245 ], [ -72.421875, 19.311143 ], [ -73.125000, 19.311143 ], [ -73.125000, 19.973349 ], [ -71.718750, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, 18.646245 ], [ -69.609375, 18.646245 ], [ -69.609375, 17.978733 ], [ -71.015625, 17.978733 ], [ -71.015625, 17.308688 ], [ -71.718750, 17.308688 ], [ -71.718750, 19.973349 ], [ -71.015625, 19.973349 ], [ -71.015625, 19.311143 ], [ -68.906250, 19.311143 ], [ -68.906250, 18.646245 ] ] ], [ [ [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ], [ -68.203125, 17.978733 ], [ -68.906250, 17.978733 ], [ -68.906250, 18.646245 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.312500, 19.973349 ], [ -70.312500, 19.311143 ], [ -68.906250, 19.311143 ], [ -68.906250, 18.646245 ], [ -71.015625, 18.646245 ], [ -71.015625, 17.978733 ], [ -71.718750, 17.978733 ], [ -71.718750, 19.973349 ], [ -70.312500, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -72.421875, 11.178402 ], [ -72.421875, 10.487812 ], [ -73.125000, 10.487812 ], [ -73.125000, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -2.108899 ], [ -73.828125, -2.108899 ], [ -73.828125, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, 0.000000 ], [ -77.343750, 0.000000 ], [ -77.343750, 0.703107 ], [ -78.750000, 0.703107 ], [ -78.750000, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -75.937500, 8.407168 ], [ -75.937500, 9.795678 ], [ -75.234375, 9.795678 ], [ -75.234375, 11.178402 ], [ -72.421875, 11.178402 ] ] ], [ [ [ -71.718750, 11.178402 ], [ -72.421875, 11.178402 ], [ -72.421875, 11.867351 ], [ -71.718750, 11.867351 ], [ -71.718750, 11.178402 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, -2.811371 ], [ -70.312500, -3.513421 ], [ -71.015625, -3.513421 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ] ] ], [ [ [ -72.421875, 11.867351 ], [ -72.421875, 11.178402 ], [ -73.125000, 11.178402 ], [ -73.125000, 9.795678 ], [ -73.828125, 9.795678 ], [ -73.828125, 9.102097 ], [ -73.125000, 9.102097 ], [ -73.125000, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 5.615986 ], [ -68.203125, 5.615986 ], [ -68.203125, 4.214943 ], [ -67.500000, 4.214943 ], [ -67.500000, 3.513421 ], [ -68.203125, 3.513421 ], [ -68.203125, 2.811371 ], [ -67.500000, 2.811371 ], [ -67.500000, 2.108899 ], [ -70.312500, 2.108899 ], [ -70.312500, 1.406109 ], [ -69.609375, 1.406109 ], [ -69.609375, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, 0.000000 ], [ -69.609375, 0.000000 ], [ -69.609375, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.108899 ], [ -73.125000, -2.108899 ], [ -73.125000, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.406109 ], [ -79.453125, 1.406109 ], [ -79.453125, 2.108899 ], [ -78.750000, 2.108899 ], [ -78.750000, 2.811371 ], [ -78.046875, 2.811371 ], [ -78.046875, 3.513421 ], [ -77.343750, 3.513421 ], [ -77.343750, 4.915833 ], [ -78.046875, 4.915833 ], [ -78.046875, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.315299 ], [ -78.046875, 6.315299 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -78.046875, 8.407168 ], [ -78.046875, 9.102097 ], [ -76.640625, 9.102097 ], [ -76.640625, 9.795678 ], [ -75.937500, 9.795678 ], [ -75.937500, 11.178402 ], [ -74.531250, 11.178402 ], [ -74.531250, 11.867351 ], [ -72.421875, 11.867351 ] ] ], [ [ [ -71.718750, 11.867351 ], [ -72.421875, 11.867351 ], [ -72.421875, 12.554564 ], [ -71.718750, 12.554564 ], [ -71.718750, 11.867351 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 18.646245 ], [ -66.093750, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 11.178402 ], [ -71.718750, 11.867351 ], [ -71.015625, 11.867351 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ], [ -69.609375, 11.178402 ], [ -68.203125, 11.178402 ], [ -68.203125, 10.487812 ], [ -65.390625, 10.487812 ], [ -65.390625, 9.795678 ], [ -63.984375, 9.795678 ], [ -63.984375, 10.487812 ], [ -62.578125, 10.487812 ], [ -62.578125, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 9.102097 ], [ -61.171875, 9.102097 ], [ -61.171875, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.013668 ], [ -61.171875, 7.013668 ], [ -61.171875, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 4.214943 ], [ -62.578125, 4.214943 ], [ -62.578125, 3.513421 ], [ -63.984375, 3.513421 ], [ -63.984375, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 0.703107 ], [ -66.796875, 0.703107 ], [ -66.796875, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 6.315299 ], [ -70.312500, 6.315299 ], [ -70.312500, 7.013668 ], [ -72.421875, 7.013668 ], [ -72.421875, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 10.487812 ], [ -72.421875, 10.487812 ], [ -72.421875, 11.178402 ], [ -71.718750, 11.178402 ] ], [ [ -71.718750, 10.487812 ], [ -71.718750, 9.795678 ], [ -72.421875, 9.795678 ], [ -72.421875, 9.102097 ], [ -71.015625, 9.102097 ], [ -71.015625, 10.487812 ], [ -71.718750, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.906250, 11.867351 ], [ -68.906250, 11.178402 ], [ -66.796875, 11.178402 ], [ -66.796875, 10.487812 ], [ -64.687500, 10.487812 ], [ -64.687500, 11.178402 ], [ -62.578125, 11.178402 ], [ -62.578125, 10.487812 ], [ -61.875000, 10.487812 ], [ -61.875000, 9.795678 ], [ -61.171875, 9.795678 ], [ -61.171875, 9.102097 ], [ -60.468750, 9.102097 ], [ -60.468750, 8.407168 ], [ -61.171875, 8.407168 ], [ -61.171875, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.013668 ], [ -61.171875, 7.013668 ], [ -61.171875, 6.315299 ], [ -61.875000, 6.315299 ], [ -61.875000, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 2.811371 ], [ -63.984375, 2.811371 ], [ -63.984375, 2.108899 ], [ -64.687500, 2.108899 ], [ -64.687500, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 2.811371 ], [ -68.203125, 2.811371 ], [ -68.203125, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 4.214943 ], [ -68.203125, 4.214943 ], [ -68.203125, 5.615986 ], [ -67.500000, 5.615986 ], [ -67.500000, 6.315299 ], [ -70.312500, 6.315299 ], [ -70.312500, 7.013668 ], [ -72.421875, 7.013668 ], [ -72.421875, 8.407168 ], [ -73.125000, 8.407168 ], [ -73.125000, 9.102097 ], [ -73.828125, 9.102097 ], [ -73.828125, 9.795678 ], [ -73.125000, 9.795678 ], [ -73.125000, 11.178402 ], [ -71.718750, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -68.906250, 11.867351 ] ], [ [ -71.718750, 10.487812 ], [ -72.421875, 10.487812 ], [ -72.421875, 9.795678 ], [ -71.718750, 9.795678 ], [ -71.718750, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 10.487812 ], [ -61.171875, 9.795678 ], [ -61.875000, 9.795678 ], [ -61.875000, 10.487812 ], [ -61.171875, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 11.178402 ], [ -61.171875, 10.487812 ], [ -61.875000, 10.487812 ], [ -61.875000, 11.178402 ], [ -61.171875, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 7.710992 ], [ -59.062500, 7.013668 ], [ -58.359375, 7.013668 ], [ -58.359375, 6.315299 ], [ -56.953125, 6.315299 ], [ -56.953125, 5.615986 ], [ -57.656250, 5.615986 ], [ -57.656250, 4.214943 ], [ -58.359375, 4.214943 ], [ -58.359375, 3.513421 ], [ -56.953125, 3.513421 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 4.915833 ], [ -61.171875, 4.915833 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.710992 ], [ -59.062500, 7.710992 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.765625, 7.710992 ], [ -59.062500, 7.710992 ], [ -59.062500, 7.013668 ], [ -57.656250, 7.013668 ], [ -57.656250, 4.915833 ], [ -58.359375, 4.915833 ], [ -58.359375, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 2.108899 ], [ -59.062500, 2.108899 ], [ -59.062500, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 2.811371 ], [ -60.468750, 2.811371 ], [ -60.468750, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 5.615986 ], [ -61.875000, 5.615986 ], [ -61.875000, 6.315299 ], [ -61.171875, 6.315299 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.710992 ], [ -61.171875, 7.710992 ], [ -61.171875, 8.407168 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 5.615986 ], [ -54.140625, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 3.513421 ], [ -58.359375, 3.513421 ], [ -58.359375, 4.214943 ], [ -57.656250, 4.214943 ], [ -57.656250, 5.615986 ], [ -54.140625, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.140625, 6.315299 ], [ -54.140625, 5.615986 ], [ -54.843750, 5.615986 ], [ -54.843750, 4.214943 ], [ -54.140625, 4.214943 ], [ -54.140625, 3.513421 ], [ -54.843750, 3.513421 ], [ -54.843750, 2.811371 ], [ -56.250000, 2.811371 ], [ -56.250000, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 3.513421 ], [ -58.359375, 3.513421 ], [ -58.359375, 4.915833 ], [ -57.656250, 4.915833 ], [ -57.656250, 6.315299 ], [ -54.140625, 6.315299 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 66.513260 ], [ -14.765625, 65.658275 ], [ -14.062500, 65.658275 ], [ -14.062500, 65.072130 ], [ -13.359375, 65.072130 ], [ -13.359375, 64.774125 ], [ -14.062500, 64.774125 ], [ -14.062500, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.168107 ], [ -15.468750, 64.168107 ], [ -15.468750, 63.860036 ], [ -16.875000, 63.860036 ], [ -16.875000, 63.548552 ], [ -21.796875, 63.548552 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -21.796875, 64.168107 ], [ -21.796875, 64.472794 ], [ -23.203125, 64.472794 ], [ -23.203125, 64.774125 ], [ -22.500000, 64.774125 ], [ -22.500000, 65.366837 ], [ -23.906250, 65.366837 ], [ -23.906250, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.513260 ], [ -21.796875, 66.513260 ], [ -21.796875, 66.231457 ], [ -21.093750, 66.231457 ], [ -21.093750, 65.658275 ], [ -19.687500, 65.658275 ], [ -19.687500, 65.946472 ], [ -16.875000, 65.946472 ], [ -16.875000, 66.231457 ], [ -16.171875, 66.231457 ], [ -16.171875, 66.513260 ], [ -14.765625, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.765625, 66.513260 ], [ -14.765625, 65.658275 ], [ -14.062500, 65.658275 ], [ -14.062500, 65.072130 ], [ -14.765625, 65.072130 ], [ -14.765625, 64.472794 ], [ -15.468750, 64.472794 ], [ -15.468750, 64.168107 ], [ -16.875000, 64.168107 ], [ -16.875000, 63.860036 ], [ -18.281250, 63.860036 ], [ -18.281250, 63.548552 ], [ -20.390625, 63.548552 ], [ -20.390625, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -21.796875, 64.168107 ], [ -21.796875, 64.472794 ], [ -23.203125, 64.472794 ], [ -23.203125, 64.774125 ], [ -24.609375, 64.774125 ], [ -24.609375, 65.072130 ], [ -23.203125, 65.072130 ], [ -23.203125, 65.366837 ], [ -22.500000, 65.366837 ], [ -22.500000, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.946472 ], [ -23.906250, 65.946472 ], [ -23.906250, 66.513260 ], [ -22.500000, 66.513260 ], [ -22.500000, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 65.946472 ], [ -20.390625, 65.946472 ], [ -20.390625, 66.231457 ], [ -17.578125, 66.231457 ], [ -17.578125, 66.513260 ], [ -14.765625, 66.513260 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031250, 54.572062 ], [ -7.031250, 53.748711 ], [ -6.328125, 53.748711 ], [ -6.328125, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 51.618017 ], [ -9.843750, 51.618017 ], [ -9.843750, 52.052490 ], [ -9.140625, 52.052490 ], [ -9.140625, 53.330873 ], [ -9.843750, 53.330873 ], [ -9.843750, 53.748711 ], [ -9.140625, 53.748711 ], [ -9.140625, 54.162434 ], [ -8.437500, 54.162434 ], [ -8.437500, 54.572062 ], [ -7.031250, 54.572062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 54.977614 ], [ -7.734375, 54.162434 ], [ -6.328125, 54.162434 ], [ -6.328125, 52.908902 ], [ -7.031250, 52.908902 ], [ -7.031250, 52.482780 ], [ -7.734375, 52.482780 ], [ -7.734375, 52.052490 ], [ -10.546875, 52.052490 ], [ -10.546875, 52.482780 ], [ -9.843750, 52.482780 ], [ -9.843750, 54.162434 ], [ -9.140625, 54.162434 ], [ -9.140625, 54.572062 ], [ -8.437500, 54.572062 ], [ -8.437500, 54.977614 ], [ -7.734375, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.447733 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -4.218750, 50.289339 ], [ -4.218750, 49.837982 ], [ -5.625000, 49.837982 ], [ -5.625000, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.736455 ], [ -4.218750, 50.736455 ], [ -4.218750, 51.179343 ], [ -3.515625, 51.179343 ], [ -3.515625, 51.618017 ], [ -4.921875, 51.618017 ], [ -4.921875, 52.052490 ], [ -4.218750, 52.052490 ], [ -4.218750, 52.482780 ], [ -4.921875, 52.482780 ], [ -4.921875, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 54.572062 ], [ -4.921875, 54.572062 ], [ -4.921875, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 56.559482 ], [ -6.328125, 56.559482 ], [ -6.328125, 57.326521 ], [ -5.625000, 57.326521 ], [ -5.625000, 58.077876 ], [ -4.921875, 58.077876 ], [ -4.921875, 58.447733 ], [ -3.515625, 58.447733 ] ] ], [ [ [ -7.031250, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.162434 ], [ -6.328125, 54.162434 ], [ -6.328125, 53.748711 ], [ -7.031250, 53.748711 ], [ -7.031250, 54.572062 ] ] ], [ [ [ -7.031250, 54.572062 ], [ -7.734375, 54.572062 ], [ -7.734375, 54.977614 ], [ -7.031250, 54.977614 ], [ -7.031250, 54.572062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.813742 ], [ -3.515625, 58.077876 ], [ -4.218750, 58.077876 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 57.326521 ], [ -2.812500, 57.326521 ], [ -2.812500, 56.559482 ], [ -3.515625, 56.559482 ], [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ -2.109375, 55.379110 ], [ -1.406250, 55.379110 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 52.052490 ], [ 0.703125, 52.052490 ], [ 0.703125, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ -1.406250, 51.179343 ], [ -1.406250, 50.736455 ], [ -3.515625, 50.736455 ], [ -3.515625, 50.289339 ], [ -5.625000, 50.289339 ], [ -5.625000, 51.179343 ], [ -4.921875, 51.179343 ], [ -4.921875, 51.618017 ], [ -5.625000, 51.618017 ], [ -5.625000, 52.052490 ], [ -4.921875, 52.052490 ], [ -4.921875, 53.748711 ], [ -3.515625, 53.748711 ], [ -3.515625, 54.572062 ], [ -4.218750, 54.572062 ], [ -4.218750, 54.977614 ], [ -5.625000, 54.977614 ], [ -5.625000, 55.379110 ], [ -4.921875, 55.379110 ], [ -4.921875, 55.776573 ], [ -6.328125, 55.776573 ], [ -6.328125, 58.447733 ], [ -5.625000, 58.447733 ], [ -5.625000, 58.813742 ], [ -3.515625, 58.813742 ] ] ], [ [ [ -7.031250, 55.379110 ], [ -7.031250, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 55.379110 ], [ -7.031250, 55.379110 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -52.734375, 5.615986 ], [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 2.108899 ], [ -54.140625, 2.108899 ], [ -54.140625, 5.615986 ], [ -52.734375, 5.615986 ] ] ], [ [ [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -4.218750, 47.517201 ], [ -4.218750, 47.989922 ], [ -4.921875, 47.989922 ], [ -4.921875, 48.458352 ], [ -3.515625, 48.458352 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 5.615986 ], [ -53.437500, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 3.513421 ], [ -52.734375, 3.513421 ], [ -52.734375, 2.811371 ], [ -53.437500, 2.811371 ], [ -53.437500, 2.108899 ], [ -54.843750, 2.108899 ], [ -54.843750, 3.513421 ], [ -54.140625, 3.513421 ], [ -54.140625, 4.214943 ], [ -54.843750, 4.214943 ], [ -54.843750, 5.615986 ], [ -53.437500, 5.615986 ] ] ], [ [ [ 2.812500, 51.179343 ], [ 2.812500, 50.736455 ], [ 3.515625, 50.736455 ], [ 3.515625, 43.580391 ], [ 2.812500, 43.580391 ], [ 2.812500, 42.553080 ], [ 0.703125, 42.553080 ], [ 0.703125, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.073231 ], [ -2.109375, 46.073231 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 47.989922 ], [ -4.921875, 47.989922 ], [ -4.921875, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 50.736455 ], [ 1.406250, 50.736455 ], [ 1.406250, 51.179343 ], [ 2.812500, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.165173 ], [ -11.953125, 23.241346 ], [ -12.656250, 23.241346 ], [ -12.656250, 22.593726 ], [ -13.359375, 22.593726 ], [ -13.359375, 21.943046 ], [ -12.656250, 21.943046 ], [ -12.656250, 21.289374 ], [ -14.765625, 21.289374 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.885838 ], [ -12.656250, 23.885838 ], [ -12.656250, 25.165173 ], [ -11.953125, 25.165173 ] ] ], [ [ [ -8.437500, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 27.059126 ], [ -9.140625, 27.059126 ], [ -9.140625, 27.683528 ], [ -8.437500, 27.683528 ], [ -8.437500, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -16.875000, 21.943046 ], [ -16.875000, 21.289374 ], [ -17.578125, 21.289374 ], [ -17.578125, 21.943046 ], [ -16.875000, 21.943046 ] ] ], [ [ [ -13.359375, 23.885838 ], [ -13.359375, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 23.885838 ], [ -13.359375, 23.885838 ] ] ], [ [ [ -12.656250, 25.165173 ], [ -11.953125, 25.165173 ], [ -11.953125, 23.885838 ], [ -13.359375, 23.885838 ], [ -13.359375, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.165173 ] ] ], [ [ [ -11.953125, 26.431228 ], [ -11.953125, 27.059126 ], [ -9.843750, 27.059126 ], [ -9.843750, 27.683528 ], [ -9.140625, 27.683528 ], [ -9.140625, 26.431228 ], [ -11.953125, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 42.032974 ], [ -6.328125, 40.979898 ], [ -7.031250, 40.979898 ], [ -7.031250, 39.368279 ], [ -7.734375, 39.368279 ], [ -7.734375, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 36.597889 ], [ -9.140625, 36.597889 ], [ -9.140625, 37.160317 ], [ -8.437500, 37.160317 ], [ -8.437500, 37.718590 ], [ -9.140625, 37.718590 ], [ -9.140625, 38.272689 ], [ -9.843750, 38.272689 ], [ -9.843750, 38.822591 ], [ -9.140625, 38.822591 ], [ -9.140625, 40.446947 ], [ -8.437500, 40.446947 ], [ -8.437500, 40.979898 ], [ -9.140625, 40.979898 ], [ -9.140625, 42.032974 ], [ -6.328125, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 42.553080 ], [ -8.437500, 42.032974 ], [ -7.031250, 42.032974 ], [ -7.031250, 39.909736 ], [ -7.734375, 39.909736 ], [ -7.734375, 37.160317 ], [ -9.140625, 37.160317 ], [ -9.140625, 38.272689 ], [ -9.843750, 38.272689 ], [ -9.843750, 39.909736 ], [ -9.140625, 39.909736 ], [ -9.140625, 42.553080 ], [ -8.437500, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -4.921875, 36.597889 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 37.160317 ], [ -7.031250, 37.160317 ], [ -7.031250, 38.822591 ], [ -7.734375, 38.822591 ], [ -7.734375, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 40.979898 ], [ -6.328125, 40.979898 ], [ -6.328125, 42.032974 ], [ -9.140625, 42.032974 ], [ -9.140625, 43.068888 ], [ -7.734375, 43.068888 ], [ -7.734375, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ 0.703125, 43.068888 ], [ 0.703125, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 0.703125, 41.508577 ], [ 0.703125, 40.446947 ], [ 0.000000, 40.446947 ], [ 0.000000, 39.909736 ], [ -0.703125, 39.909736 ], [ -0.703125, 37.718590 ], [ -2.109375, 37.718590 ], [ -2.109375, 37.160317 ], [ -4.921875, 37.160317 ], [ -4.921875, 36.597889 ], [ -5.625000, 36.597889 ], [ -5.625000, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 36.597889 ], [ -7.031250, 36.597889 ], [ -7.031250, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 39.909736 ], [ -7.031250, 39.909736 ], [ -7.031250, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 42.553080 ], [ -9.140625, 42.553080 ], [ -9.140625, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 36.031332 ], [ -4.921875, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.353637 ], [ -3.515625, 31.353637 ], [ -3.515625, 30.751278 ], [ -4.921875, 30.751278 ], [ -4.921875, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 27.683528 ], [ -9.140625, 27.683528 ], [ -9.140625, 27.059126 ], [ -11.250000, 27.059126 ], [ -11.250000, 26.431228 ], [ -11.953125, 26.431228 ], [ -11.953125, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 23.885838 ], [ -14.062500, 23.885838 ], [ -14.062500, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -16.171875, 21.943046 ], [ -16.171875, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 24.527135 ], [ -14.765625, 24.527135 ], [ -14.765625, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 31.353637 ], [ -9.140625, 31.353637 ], [ -9.140625, 32.546813 ], [ -8.437500, 32.546813 ], [ -8.437500, 33.137551 ], [ -7.734375, 33.137551 ], [ -7.734375, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.307144 ], [ -6.328125, 34.307144 ], [ -6.328125, 35.460670 ], [ -5.625000, 35.460670 ], [ -5.625000, 36.031332 ], [ -4.921875, 36.031332 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.625000, 36.031332 ], [ -5.625000, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 32.546813 ], [ -2.812500, 32.546813 ], [ -2.812500, 31.952162 ], [ -4.218750, 31.952162 ], [ -4.218750, 30.751278 ], [ -4.921875, 30.751278 ], [ -4.921875, 30.145127 ], [ -7.734375, 30.145127 ], [ -7.734375, 29.535230 ], [ -8.437500, 29.535230 ], [ -8.437500, 28.921631 ], [ -9.140625, 28.921631 ], [ -9.140625, 27.683528 ], [ -9.843750, 27.683528 ], [ -9.843750, 27.059126 ], [ -11.953125, 27.059126 ], [ -11.953125, 26.431228 ], [ -12.656250, 26.431228 ], [ -12.656250, 24.527135 ], [ -13.359375, 24.527135 ], [ -13.359375, 23.885838 ], [ -14.062500, 23.885838 ], [ -14.062500, 23.241346 ], [ -14.765625, 23.241346 ], [ -14.765625, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 25.799891 ], [ -14.765625, 25.799891 ], [ -14.765625, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 33.137551 ], [ -9.140625, 33.137551 ], [ -9.140625, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 36.031332 ], [ -5.625000, 36.031332 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.604847 ], [ -11.953125, 14.604847 ], [ -11.953125, 13.239945 ], [ -11.250000, 13.239945 ], [ -11.250000, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -14.062500, 13.239945 ], [ -14.062500, 13.923404 ], [ -16.875000, 13.923404 ], [ -16.875000, 15.284185 ], [ -16.171875, 15.284185 ], [ -16.171875, 16.636192 ], [ -14.062500, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -14.062500, 16.636192 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 13.923404 ], [ -11.953125, 13.923404 ], [ -11.953125, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 13.239945 ], [ -16.171875, 13.239945 ], [ -16.171875, 13.923404 ], [ -17.578125, 13.923404 ], [ -17.578125, 14.604847 ], [ -18.281250, 14.604847 ], [ -18.281250, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 16.636192 ], [ -14.062500, 16.636192 ] ] ], [ [ [ -16.171875, 13.239945 ], [ -16.171875, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -16.171875, 13.239945 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.923404 ], [ -14.062500, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.923404 ], [ -14.062500, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 13.923404 ], [ -16.171875, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.923404 ], [ -16.171875, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 12.554564 ], [ -14.062500, 11.178402 ], [ -16.171875, 11.178402 ], [ -16.171875, 11.867351 ], [ -16.875000, 11.867351 ], [ -16.875000, 12.554564 ], [ -14.062500, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.239945 ], [ -14.062500, 11.867351 ], [ -14.765625, 11.867351 ], [ -14.765625, 11.178402 ], [ -16.171875, 11.178402 ], [ -16.171875, 11.867351 ], [ -16.875000, 11.867351 ], [ -16.875000, 12.554564 ], [ -16.171875, 12.554564 ], [ -16.171875, 13.239945 ], [ -14.062500, 13.239945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 12.554564 ], [ -11.250000, 11.867351 ], [ -8.437500, 11.867351 ], [ -8.437500, 10.487812 ], [ -7.734375, 10.487812 ], [ -7.734375, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.102097 ], [ -7.734375, 9.102097 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 7.013668 ], [ -9.140625, 7.013668 ], [ -9.140625, 7.710992 ], [ -9.843750, 7.710992 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 9.102097 ], [ -13.359375, 9.102097 ], [ -13.359375, 9.795678 ], [ -14.765625, 9.795678 ], [ -14.765625, 11.178402 ], [ -14.062500, 11.178402 ], [ -14.062500, 12.554564 ], [ -11.250000, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.359375, 13.239945 ], [ -13.359375, 12.554564 ], [ -11.250000, 12.554564 ], [ -11.250000, 11.867351 ], [ -10.546875, 11.867351 ], [ -10.546875, 12.554564 ], [ -9.140625, 12.554564 ], [ -9.140625, 11.867351 ], [ -8.437500, 11.867351 ], [ -8.437500, 7.710992 ], [ -9.843750, 7.710992 ], [ -9.843750, 9.102097 ], [ -11.250000, 9.102097 ], [ -11.250000, 10.487812 ], [ -12.656250, 10.487812 ], [ -12.656250, 9.795678 ], [ -13.359375, 9.795678 ], [ -13.359375, 9.102097 ], [ -14.062500, 9.102097 ], [ -14.062500, 9.795678 ], [ -14.765625, 9.795678 ], [ -14.765625, 11.867351 ], [ -14.062500, 11.867351 ], [ -14.062500, 13.239945 ], [ -13.359375, 13.239945 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.546875, 9.795678 ], [ -10.546875, 7.710992 ], [ -11.250000, 7.710992 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.359375, 7.710992 ], [ -13.359375, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.795678 ], [ -10.546875, 9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.487812 ], [ -11.250000, 9.102097 ], [ -10.546875, 9.102097 ], [ -10.546875, 8.407168 ], [ -11.250000, 8.407168 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.359375, 7.710992 ], [ -13.359375, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 10.487812 ], [ -11.250000, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.734375, 27.059126 ], [ -7.734375, 26.431228 ], [ -6.328125, 26.431228 ], [ -6.328125, 25.799891 ], [ -5.625000, 25.799891 ], [ -5.625000, 25.165173 ], [ -6.328125, 25.165173 ], [ -6.328125, 22.593726 ], [ -5.625000, 22.593726 ], [ -5.625000, 15.284185 ], [ -11.953125, 15.284185 ], [ -11.953125, 14.604847 ], [ -12.656250, 14.604847 ], [ -12.656250, 15.284185 ], [ -13.359375, 15.284185 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.636192 ], [ -16.171875, 16.636192 ], [ -16.171875, 19.973349 ], [ -16.875000, 19.973349 ], [ -16.875000, 21.289374 ], [ -12.656250, 21.289374 ], [ -12.656250, 21.943046 ], [ -13.359375, 21.943046 ], [ -13.359375, 22.593726 ], [ -12.656250, 22.593726 ], [ -12.656250, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.437500, 25.799891 ], [ -8.437500, 27.059126 ], [ -7.734375, 27.059126 ] ] ], [ [ [ -16.171875, 16.636192 ], [ -16.171875, 15.961329 ], [ -16.875000, 15.961329 ], [ -16.875000, 16.636192 ], [ -16.171875, 16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 27.059126 ], [ -7.734375, 26.431228 ], [ -7.031250, 26.431228 ], [ -7.031250, 25.799891 ], [ -5.625000, 25.799891 ], [ -5.625000, 25.165173 ], [ -7.031250, 25.165173 ], [ -7.031250, 23.241346 ], [ -6.328125, 23.241346 ], [ -6.328125, 18.646245 ], [ -5.625000, 18.646245 ], [ -5.625000, 15.961329 ], [ -9.843750, 15.961329 ], [ -9.843750, 15.284185 ], [ -13.359375, 15.284185 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.636192 ], [ -16.875000, 16.636192 ], [ -16.875000, 17.978733 ], [ -16.171875, 17.978733 ], [ -16.171875, 18.646245 ], [ -16.875000, 18.646245 ], [ -16.875000, 20.632784 ], [ -17.578125, 20.632784 ], [ -17.578125, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -13.359375, 21.943046 ], [ -13.359375, 23.885838 ], [ -11.953125, 23.885838 ], [ -11.953125, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 26.431228 ], [ -9.140625, 26.431228 ], [ -9.140625, 27.059126 ], [ -7.734375, 27.059126 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.165173 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.885838 ], [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 3.515625, 19.311143 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 9.795678 ], [ -7.734375, 9.795678 ], [ -7.734375, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 11.867351 ], [ -11.250000, 11.867351 ], [ -11.250000, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 15.284185 ], [ -5.625000, 15.284185 ], [ -5.625000, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 25.165173 ], [ -4.921875, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.165173 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 23.885838 ], [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 3.515625, 19.311143 ], [ 3.515625, 15.961329 ], [ 0.703125, 15.961329 ], [ 0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.812500, 14.604847 ], [ -2.812500, 13.923404 ], [ -4.218750, 13.923404 ], [ -4.218750, 13.239945 ], [ -4.921875, 13.239945 ], [ -4.921875, 11.867351 ], [ -5.625000, 11.867351 ], [ -5.625000, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 11.867351 ], [ -9.140625, 11.867351 ], [ -9.140625, 12.554564 ], [ -10.546875, 12.554564 ], [ -10.546875, 11.867351 ], [ -11.250000, 11.867351 ], [ -11.250000, 12.554564 ], [ -11.953125, 12.554564 ], [ -11.953125, 13.923404 ], [ -12.656250, 13.923404 ], [ -12.656250, 15.284185 ], [ -9.843750, 15.284185 ], [ -9.843750, 15.961329 ], [ -5.625000, 15.961329 ], [ -5.625000, 18.646245 ], [ -6.328125, 18.646245 ], [ -6.328125, 23.241346 ], [ -7.031250, 23.241346 ], [ -7.031250, 25.165173 ], [ -4.921875, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -4.921875, 11.178402 ], [ -4.921875, 11.867351 ], [ -4.218750, 11.867351 ], [ -4.218750, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 13.239945 ], [ 2.109375, 13.239945 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -3.515625, 11.178402 ], [ -3.515625, 10.487812 ], [ -4.218750, 10.487812 ], [ -4.218750, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 7.710992 ], [ -9.140625, 7.710992 ], [ -9.140625, 7.013668 ], [ -8.437500, 7.013668 ], [ -8.437500, 6.315299 ], [ -7.734375, 6.315299 ], [ -7.734375, 4.214943 ], [ -9.140625, 4.214943 ], [ -9.140625, 4.915833 ], [ -9.843750, 4.915833 ], [ -9.843750, 5.615986 ], [ -10.546875, 5.615986 ], [ -10.546875, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 9.102097 ], [ -9.843750, 7.710992 ], [ -9.140625, 7.710992 ], [ -9.140625, 6.315299 ], [ -7.734375, 6.315299 ], [ -7.734375, 4.915833 ], [ -10.546875, 4.915833 ], [ -10.546875, 5.615986 ], [ -11.250000, 5.615986 ], [ -11.250000, 6.315299 ], [ -11.953125, 6.315299 ], [ -11.953125, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.102097 ], [ -9.843750, 9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 10.487812 ], [ -4.921875, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -6.328125, 4.915833 ], [ -6.328125, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 9.102097 ], [ -8.437500, 9.102097 ], [ -8.437500, 9.795678 ], [ -5.625000, 9.795678 ], [ -5.625000, 10.487812 ], [ -4.921875, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.515625, 10.487812 ], [ -3.515625, 9.102097 ], [ -2.812500, 9.102097 ], [ -2.812500, 7.710992 ], [ -3.515625, 7.710992 ], [ -3.515625, 5.615986 ], [ -6.328125, 5.615986 ], [ -6.328125, 4.915833 ], [ -7.734375, 4.915833 ], [ -7.734375, 6.315299 ], [ -9.140625, 6.315299 ], [ -9.140625, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 10.487812 ], [ -4.921875, 10.487812 ], [ -4.921875, 9.795678 ], [ -4.218750, 9.795678 ], [ -4.218750, 10.487812 ], [ -3.515625, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 11.178402 ], [ -0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.000000, 7.710992 ], [ 0.000000, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.915833 ], [ -3.515625, 4.915833 ], [ -3.515625, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 9.102097 ], [ -3.515625, 9.102097 ], [ -3.515625, 11.178402 ], [ -0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.343750, 0.703107 ], [ -77.343750, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -79.453125, -3.513421 ], [ -79.453125, -2.811371 ], [ -80.859375, -2.811371 ], [ -80.859375, -0.703107 ], [ -80.156250, -0.703107 ], [ -80.156250, 0.703107 ], [ -77.343750, 0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.406109 ], [ -78.046875, 0.703107 ], [ -75.937500, 0.703107 ], [ -75.937500, -0.703107 ], [ -75.234375, -0.703107 ], [ -75.234375, -1.406109 ], [ -75.937500, -1.406109 ], [ -75.937500, -2.108899 ], [ -76.640625, -2.108899 ], [ -76.640625, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.513421 ], [ -80.859375, -3.513421 ], [ -80.859375, -2.811371 ], [ -80.156250, -2.811371 ], [ -80.156250, -2.108899 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.406109 ], [ -81.562500, -1.406109 ], [ -81.562500, -0.703107 ], [ -80.859375, -0.703107 ], [ -80.859375, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 1.406109 ], [ -78.046875, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828125, -0.703107 ], [ -73.828125, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -75.937500, -2.811371 ], [ -75.937500, -2.108899 ], [ -75.234375, -2.108899 ], [ -75.234375, -0.703107 ], [ -73.828125, -0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.531250, 0.000000 ], [ -74.531250, -0.703107 ], [ -73.828125, -0.703107 ], [ -73.828125, -1.406109 ], [ -73.125000, -1.406109 ], [ -73.125000, -2.108899 ], [ -70.312500, -2.108899 ], [ -70.312500, -2.811371 ], [ -71.015625, -2.811371 ], [ -71.015625, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -2.811371 ], [ -76.640625, -2.811371 ], [ -76.640625, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.703107 ], [ -75.937500, -0.703107 ], [ -75.937500, 0.000000 ], [ -74.531250, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 4.915833 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.811371 ], [ -52.031250, 2.811371 ], [ -52.031250, 3.513421 ], [ -51.328125, 3.513421 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 1.406109 ], [ -49.921875, 1.406109 ], [ -49.921875, 0.000000 ], [ -48.515625, 0.000000 ], [ -48.515625, -1.406109 ], [ -47.812500, -1.406109 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.811371 ], [ -43.593750, -2.811371 ], [ -43.593750, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -69.609375, -3.513421 ], [ -69.609375, -0.703107 ], [ -70.312500, -0.703107 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -63.984375, 4.214943 ], [ -63.984375, 3.513421 ], [ -62.578125, 3.513421 ], [ -62.578125, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 4.915833 ], [ -59.765625, 4.915833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.468750, 5.615986 ], [ -60.468750, 4.915833 ], [ -59.765625, 4.915833 ], [ -59.765625, 4.214943 ], [ -60.468750, 4.214943 ], [ -60.468750, 2.811371 ], [ -59.765625, 2.811371 ], [ -59.765625, 1.406109 ], [ -59.062500, 1.406109 ], [ -59.062500, 2.108899 ], [ -56.250000, 2.108899 ], [ -56.250000, 2.811371 ], [ -54.843750, 2.811371 ], [ -54.843750, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.811371 ], [ -52.734375, 2.811371 ], [ -52.734375, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 2.811371 ], [ -50.625000, 2.811371 ], [ -50.625000, 0.703107 ], [ -51.328125, 0.703107 ], [ -51.328125, 0.000000 ], [ -49.218750, 0.000000 ], [ -49.218750, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -2.108899 ], [ -42.890625, -2.108899 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, 0.000000 ], [ -70.312500, 0.000000 ], [ -70.312500, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 1.406109 ], [ -70.312500, 1.406109 ], [ -70.312500, 2.108899 ], [ -67.500000, 2.108899 ], [ -67.500000, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 2.108899 ], [ -63.984375, 2.108899 ], [ -63.984375, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 4.214943 ], [ -61.171875, 4.214943 ], [ -61.171875, 5.615986 ], [ -60.468750, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 65.946472 ], [ -180.000000, 65.658275 ], [ -179.296875, 65.658275 ], [ -179.296875, 65.072130 ], [ -180.000000, 65.072130 ], [ -180.000000, 64.774125 ], [ -180.703125, 64.774125 ], [ -180.703125, 64.472794 ], [ -182.812500, 64.472794 ], [ -182.812500, 64.168107 ], [ -181.406250, 64.168107 ], [ -181.406250, 62.915233 ], [ -180.703125, 62.915233 ], [ -180.703125, 62.267923 ], [ -182.109375, 62.267923 ], [ -182.109375, 62.593341 ], [ -182.812500, 62.593341 ], [ -182.812500, 62.267923 ], [ -183.515625, 62.267923 ], [ -183.515625, 69.657086 ], [ -182.812500, 69.657086 ], [ -182.812500, 69.411242 ], [ -181.406250, 69.411242 ], [ -181.406250, 69.162558 ], [ -180.703125, 69.162558 ], [ -180.703125, 68.911005 ], [ -180.000000, 68.911005 ], [ -180.000000, 68.656555 ], [ -179.296875, 68.656555 ], [ -179.296875, 68.399180 ], [ -178.593750, 68.399180 ], [ -178.593750, 68.138852 ], [ -177.890625, 68.138852 ], [ -177.890625, 67.875541 ], [ -177.187500, 67.875541 ], [ -177.187500, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.339861 ], [ -175.078125, 67.339861 ], [ -175.078125, 66.231457 ], [ -174.375000, 66.231457 ], [ -174.375000, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 65.946472 ], [ -170.156250, 65.946472 ], [ -170.156250, 65.658275 ], [ -170.859375, 65.658275 ], [ -170.859375, 65.366837 ], [ -172.265625, 65.366837 ], [ -172.265625, 64.168107 ], [ -173.671875, 64.168107 ], [ -173.671875, 64.472794 ], [ -174.375000, 64.472794 ], [ -174.375000, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 65.072130 ], [ -176.484375, 65.072130 ], [ -176.484375, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.946472 ], [ -180.000000, 65.946472 ] ] ], [ [ [ -179.296875, 71.524909 ], [ -179.296875, 71.300793 ], [ -177.890625, 71.300793 ], [ -177.890625, 70.844673 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.074056 ], [ -180.703125, 71.074056 ], [ -180.703125, 71.300793 ], [ -180.000000, 71.300793 ], [ -180.000000, 71.524909 ], [ -179.296875, 71.524909 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -182.109375, 69.657086 ], [ -182.109375, 69.411242 ], [ -181.406250, 69.411242 ], [ -181.406250, 69.162558 ], [ -180.000000, 69.162558 ], [ -180.000000, 68.911005 ], [ -179.296875, 68.911005 ], [ -179.296875, 68.656555 ], [ -178.593750, 68.656555 ], [ -178.593750, 68.399180 ], [ -177.890625, 68.399180 ], [ -177.890625, 68.138852 ], [ -177.187500, 68.138852 ], [ -177.187500, 67.875541 ], [ -176.484375, 67.875541 ], [ -176.484375, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.339861 ], [ -175.078125, 67.339861 ], [ -175.078125, 67.067433 ], [ -172.265625, 67.067433 ], [ -172.265625, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.156250, 66.231457 ], [ -170.156250, 65.946472 ], [ -170.859375, 65.946472 ], [ -170.859375, 65.658275 ], [ -172.968750, 65.658275 ], [ -172.968750, 64.472794 ], [ -175.078125, 64.472794 ], [ -175.078125, 64.774125 ], [ -176.484375, 64.774125 ], [ -176.484375, 65.366837 ], [ -177.890625, 65.366837 ], [ -177.890625, 65.658275 ], [ -179.296875, 65.658275 ], [ -179.296875, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.072130 ], [ -180.703125, 65.072130 ], [ -180.703125, 64.774125 ], [ -182.812500, 64.774125 ], [ -182.812500, 64.472794 ], [ -182.109375, 64.472794 ], [ -182.109375, 63.860036 ], [ -181.406250, 63.860036 ], [ -181.406250, 63.233627 ], [ -180.703125, 63.233627 ], [ -180.703125, 62.593341 ], [ -183.515625, 62.593341 ], [ -183.515625, 69.657086 ], [ -182.109375, 69.657086 ] ], [ [ -175.078125, 66.791909 ], [ -175.078125, 66.513260 ], [ -174.375000, 66.513260 ], [ -174.375000, 66.791909 ], [ -175.078125, 66.791909 ] ] ], [ [ [ -179.296875, 71.746432 ], [ -179.296875, 71.524909 ], [ -178.593750, 71.524909 ], [ -178.593750, 71.300793 ], [ -177.890625, 71.300793 ], [ -177.890625, 71.074056 ], [ -179.296875, 71.074056 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.300793 ], [ -180.000000, 71.300793 ], [ -180.000000, 71.746432 ], [ -179.296875, 71.746432 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.179343 ], [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 3.515625, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.618017 ], [ 3.515625, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 3.515625, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 36.597889 ], [ 3.515625, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 23.885838 ], [ -4.218750, 23.885838 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 25.165173 ], [ -5.625000, 25.165173 ], [ -5.625000, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 27.059126 ], [ -8.437500, 27.059126 ], [ -8.437500, 28.921631 ], [ -7.031250, 28.921631 ], [ -7.031250, 29.535230 ], [ -4.921875, 29.535230 ], [ -4.921875, 30.751278 ], [ -3.515625, 30.751278 ], [ -3.515625, 31.353637 ], [ -2.812500, 31.353637 ], [ -2.812500, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -1.406250, 34.885931 ], [ -1.406250, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.031332 ], [ 1.406250, 36.597889 ], [ 3.515625, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 37.160317 ], [ 3.515625, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 1.406250, 19.973349 ], [ 1.406250, 20.632784 ], [ 0.703125, 20.632784 ], [ 0.703125, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 23.885838 ], [ -4.218750, 23.885838 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 25.165173 ], [ -5.625000, 25.165173 ], [ -5.625000, 25.799891 ], [ -7.031250, 25.799891 ], [ -7.031250, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 27.059126 ], [ -9.140625, 27.059126 ], [ -9.140625, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 29.535230 ], [ -7.734375, 29.535230 ], [ -7.734375, 30.145127 ], [ -4.921875, 30.145127 ], [ -4.921875, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -2.812500, 34.885931 ], [ -2.812500, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 36.031332 ], [ 0.000000, 36.031332 ], [ 0.000000, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 37.160317 ], [ 3.515625, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.284185 ], [ 3.515625, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.703125, 12.554564 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 14.604847 ], [ 0.703125, 14.604847 ], [ 0.703125, 15.284185 ], [ 3.515625, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.961329 ], [ 3.515625, 11.867351 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 15.961329 ], [ 3.515625, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 5.615986 ], [ 0.703125, 5.615986 ], [ 0.703125, 10.487812 ] ] ], [ [ [ 0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 0.000000, 6.315299 ], [ 0.000000, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.000000, 8.407168 ], [ 0.000000, 10.487812 ], [ -0.703125, 10.487812 ], [ -0.703125, 11.178402 ], [ 0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.867351 ], [ 3.515625, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 3.515625, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 2.812500, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 9.102097 ], [ 2.109375, 9.102097 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 2.812500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.102097 ], [ 3.515625, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.515625, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 9.795678 ], [ 3.515625, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 9.795678 ], [ 3.515625, 9.795678 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.658275 ], [ 135.703125, -66.231457 ], [ 136.406250, -66.231457 ], [ 136.406250, -67.067433 ], [ 138.515625, -67.067433 ], [ 138.515625, -66.791909 ], [ 145.546875, -66.791909 ], [ 145.546875, -67.067433 ], [ 146.250000, -67.067433 ], [ 146.250000, -67.875541 ], [ 146.953125, -67.875541 ], [ 146.953125, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.656555 ], [ 151.171875, -68.656555 ], [ 151.171875, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.411242 ], [ 158.203125, -69.411242 ], [ 158.203125, -69.657086 ], [ 158.906250, -69.657086 ], [ 158.906250, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 161.015625, -70.140364 ], [ 161.015625, -70.377854 ], [ 161.718750, -70.377854 ], [ 161.718750, -70.844673 ], [ 167.343750, -70.844673 ], [ 167.343750, -71.074056 ], [ 168.750000, -71.074056 ], [ 168.750000, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -72.607120 ], [ 170.156250, -72.607120 ], [ 170.156250, -73.022592 ], [ 169.453125, -73.022592 ], [ 169.453125, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -74.019543 ], [ 167.343750, -74.019543 ], [ 167.343750, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.959392 ], [ 165.234375, -74.959392 ], [ 165.234375, -75.320025 ], [ 164.531250, -75.320025 ], [ 164.531250, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.516819 ], [ 163.125000, -76.516819 ], [ 163.125000, -76.840816 ], [ 163.828125, -76.840816 ], [ 163.828125, -77.617709 ], [ 164.531250, -77.617709 ], [ 164.531250, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.630006 ], [ 167.343750, -78.630006 ], [ 167.343750, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -79.038437 ], [ 164.531250, -79.038437 ], [ 164.531250, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.432371 ], [ 161.015625, -79.432371 ], [ 161.015625, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.609375, -80.760615 ], [ 159.609375, -81.093214 ], [ 160.312500, -81.093214 ], [ 160.312500, -81.308321 ], [ 161.015625, -81.308321 ], [ 161.015625, -81.518272 ], [ 161.718750, -81.518272 ], [ 161.718750, -81.923186 ], [ 162.421875, -81.923186 ], [ 162.421875, -82.118384 ], [ 163.125000, -82.118384 ], [ 163.125000, -82.308893 ], [ 163.828125, -82.308893 ], [ 163.828125, -82.494824 ], [ 164.531250, -82.494824 ], [ 164.531250, -82.676285 ], [ 165.234375, -82.676285 ], [ 165.234375, -82.765373 ], [ 165.937500, -82.765373 ], [ 165.937500, -82.940327 ], [ 166.640625, -82.940327 ], [ 166.640625, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.194896 ], [ 168.046875, -83.194896 ], [ 168.046875, -83.359511 ], [ 168.750000, -83.359511 ], [ 168.750000, -83.599031 ], [ 169.453125, -83.599031 ], [ 169.453125, -83.905058 ], [ 170.156250, -83.905058 ], [ 170.156250, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.267172 ], [ 172.968750, -84.267172 ], [ 172.968750, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.267172 ], [ 175.078125, -84.267172 ], [ 175.078125, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.593750, -84.474065 ], [ 178.593750, -84.541361 ], [ 179.296875, -84.541361 ], [ 179.296875, -84.673513 ], [ 180.000000, -84.673513 ], [ 180.000000, -84.474065 ], [ 180.703125, -84.474065 ], [ 180.703125, -84.196507 ], [ 181.406250, -84.196507 ], [ 181.406250, -84.336980 ], [ 182.109375, -84.336980 ], [ 182.109375, -84.474065 ], [ 182.812500, -84.474065 ], [ 182.812500, -84.336980 ], [ 183.515625, -84.336980 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.300793 ], [ -0.703125, -71.300793 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 2.109375, -71.300793 ], [ 2.109375, -71.074056 ], [ 4.218750, -71.074056 ], [ 4.218750, -70.844673 ], [ 4.921875, -70.844673 ], [ 4.921875, -70.612614 ], [ 6.328125, -70.612614 ], [ 6.328125, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -70.140364 ], [ 10.546875, -70.140364 ], [ 10.546875, -70.844673 ], [ 11.953125, -70.844673 ], [ 11.953125, -70.377854 ], [ 12.656250, -70.377854 ], [ 12.656250, -70.140364 ], [ 14.765625, -70.140364 ], [ 14.765625, -70.377854 ], [ 16.171875, -70.377854 ], [ 16.171875, -70.140364 ], [ 16.875000, -70.140364 ], [ 16.875000, -69.900118 ], [ 20.390625, -69.900118 ], [ 20.390625, -70.140364 ], [ 21.796875, -70.140364 ], [ 21.796875, -70.612614 ], [ 24.609375, -70.612614 ], [ 24.609375, -70.377854 ], [ 28.828125, -70.377854 ], [ 28.828125, -70.140364 ], [ 30.234375, -70.140364 ], [ 30.234375, -69.900118 ], [ 30.937500, -69.900118 ], [ 30.937500, -69.657086 ], [ 33.046875, -69.657086 ], [ 33.046875, -68.656555 ], [ 35.156250, -68.656555 ], [ 35.156250, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.411242 ], [ 37.968750, -69.411242 ], [ 37.968750, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.411242 ], [ 40.078125, -69.411242 ], [ 40.078125, -69.162558 ], [ 40.781250, -69.162558 ], [ 40.781250, -68.911005 ], [ 42.187500, -68.911005 ], [ 42.187500, -68.656555 ], [ 42.890625, -68.656555 ], [ 42.890625, -68.399180 ], [ 44.296875, -68.399180 ], [ 44.296875, -68.138852 ], [ 45.703125, -68.138852 ], [ 45.703125, -67.875541 ], [ 46.406250, -67.875541 ], [ 46.406250, -67.609221 ], [ 48.515625, -67.609221 ], [ 48.515625, -67.339861 ], [ 49.218750, -67.339861 ], [ 49.218750, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 52.031250, -66.513260 ], [ 52.031250, -66.231457 ], [ 52.734375, -66.231457 ], [ 52.734375, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -68.138852 ], [ 63.281250, -68.138852 ], [ 63.281250, -67.609221 ], [ 66.093750, -67.609221 ], [ 66.093750, -67.875541 ], [ 68.906250, -67.875541 ], [ 68.906250, -68.399180 ], [ 69.609375, -68.399180 ], [ 69.609375, -69.900118 ], [ 68.906250, -69.900118 ], [ 68.906250, -70.140364 ], [ 68.203125, -70.140364 ], [ 68.203125, -70.377854 ], [ 67.500000, -70.377854 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.300793 ], [ 68.203125, -71.300793 ], [ 68.203125, -71.965388 ], [ 68.906250, -71.965388 ], [ 68.906250, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -71.965388 ], [ 71.718750, -71.965388 ], [ 71.718750, -71.300793 ], [ 72.421875, -71.300793 ], [ 72.421875, -70.844673 ], [ 73.125000, -70.844673 ], [ 73.125000, -70.140364 ], [ 73.828125, -70.140364 ], [ 73.828125, -69.900118 ], [ 74.531250, -69.900118 ], [ 74.531250, -69.657086 ], [ 77.343750, -69.657086 ], [ 77.343750, -69.411242 ], [ 78.046875, -69.411242 ], [ 78.046875, -68.911005 ], [ 78.750000, -68.911005 ], [ 78.750000, -68.656555 ], [ 79.453125, -68.656555 ], [ 79.453125, -68.399180 ], [ 80.156250, -68.399180 ], [ 80.156250, -68.138852 ], [ 80.859375, -68.138852 ], [ 80.859375, -67.875541 ], [ 81.562500, -67.875541 ], [ 81.562500, -67.609221 ], [ 82.265625, -67.609221 ], [ 82.265625, -67.339861 ], [ 85.781250, -67.339861 ], [ 85.781250, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 90.000000, -67.067433 ], [ 90.000000, -67.339861 ], [ 91.406250, -67.339861 ], [ 91.406250, -67.067433 ], [ 92.812500, -67.067433 ], [ 92.812500, -67.339861 ], [ 94.218750, -67.339861 ], [ 94.218750, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.339861 ], [ 99.843750, -67.339861 ], [ 99.843750, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -67.067433 ], [ 108.984375, -67.067433 ], [ 108.984375, -66.791909 ], [ 111.093750, -66.791909 ], [ 111.093750, -66.513260 ], [ 111.796875, -66.513260 ], [ 111.796875, -66.231457 ], [ 113.906250, -66.231457 ], [ 113.906250, -65.946472 ], [ 114.609375, -65.946472 ], [ 114.609375, -66.791909 ], [ 117.421875, -66.791909 ], [ 117.421875, -67.067433 ], [ 118.828125, -67.067433 ], [ 118.828125, -67.339861 ], [ 120.937500, -67.339861 ], [ 120.937500, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.791909 ], [ 122.343750, -66.791909 ], [ 122.343750, -66.513260 ], [ 124.453125, -66.513260 ], [ 124.453125, -66.791909 ], [ 125.859375, -66.791909 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.791909 ], [ 129.375000, -66.791909 ], [ 129.375000, -66.513260 ], [ 133.593750, -66.513260 ], [ 133.593750, -66.231457 ], [ 135.000000, -66.231457 ], [ 135.000000, -65.658275 ], [ 135.703125, -65.658275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.658275 ], [ 135.703125, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -67.067433 ], [ 145.546875, -67.067433 ], [ 145.546875, -67.609221 ], [ 146.250000, -67.609221 ], [ 146.250000, -67.875541 ], [ 147.656250, -67.875541 ], [ 147.656250, -68.138852 ], [ 148.359375, -68.138852 ], [ 148.359375, -68.399180 ], [ 149.765625, -68.399180 ], [ 149.765625, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.162558 ], [ 156.796875, -69.162558 ], [ 156.796875, -69.411242 ], [ 158.906250, -69.411242 ], [ 158.906250, -69.657086 ], [ 159.609375, -69.657086 ], [ 159.609375, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.377854 ], [ 161.015625, -70.377854 ], [ 161.015625, -70.612614 ], [ 166.640625, -70.612614 ], [ 166.640625, -70.844673 ], [ 168.046875, -70.844673 ], [ 168.046875, -71.074056 ], [ 169.453125, -71.074056 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -72.181804 ], [ 170.156250, -72.181804 ], [ 170.156250, -72.607120 ], [ 169.453125, -72.607120 ], [ 169.453125, -73.428424 ], [ 168.750000, -73.428424 ], [ 168.750000, -73.627789 ], [ 167.343750, -73.627789 ], [ 167.343750, -74.211983 ], [ 165.937500, -74.211983 ], [ 165.937500, -74.402163 ], [ 165.234375, -74.402163 ], [ 165.234375, -74.959392 ], [ 164.531250, -74.959392 ], [ 164.531250, -75.320025 ], [ 163.828125, -75.320025 ], [ 163.828125, -75.672197 ], [ 163.125000, -75.672197 ], [ 163.125000, -77.157163 ], [ 163.828125, -77.157163 ], [ 163.828125, -77.915669 ], [ 164.531250, -77.915669 ], [ 164.531250, -78.206563 ], [ 165.937500, -78.206563 ], [ 165.937500, -78.490552 ], [ 166.640625, -78.490552 ], [ 166.640625, -78.767792 ], [ 165.234375, -78.767792 ], [ 165.234375, -78.903929 ], [ 164.531250, -78.903929 ], [ 164.531250, -79.038437 ], [ 161.718750, -79.038437 ], [ 161.718750, -79.302640 ], [ 161.015625, -79.302640 ], [ 161.015625, -79.560546 ], [ 160.312500, -79.560546 ], [ 160.312500, -80.760615 ], [ 159.609375, -80.760615 ], [ 159.609375, -80.983688 ], [ 160.312500, -80.983688 ], [ 160.312500, -81.201420 ], [ 161.015625, -81.201420 ], [ 161.015625, -81.723188 ], [ 161.718750, -81.723188 ], [ 161.718750, -81.923186 ], [ 162.421875, -81.923186 ], [ 162.421875, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.586106 ], [ 164.531250, -82.586106 ], [ 164.531250, -82.765373 ], [ 165.234375, -82.765373 ], [ 165.234375, -82.940327 ], [ 165.937500, -82.940327 ], [ 165.937500, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.194896 ], [ 168.046875, -83.194896 ], [ 168.046875, -83.277705 ], [ 168.750000, -83.277705 ], [ 168.750000, -83.829945 ], [ 170.156250, -83.829945 ], [ 170.156250, -83.905058 ], [ 171.562500, -83.905058 ], [ 171.562500, -83.979259 ], [ 172.265625, -83.979259 ], [ 172.265625, -84.267172 ], [ 172.968750, -84.267172 ], [ 172.968750, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.267172 ], [ 175.078125, -84.267172 ], [ 175.078125, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 177.187500, -84.267172 ], [ 177.187500, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.593750, -84.474065 ], [ 178.593750, -84.541361 ], [ 179.296875, -84.541361 ], [ 179.296875, -84.673513 ], [ 180.000000, -84.673513 ], [ 180.000000, -84.405941 ], [ 180.703125, -84.405941 ], [ 180.703125, -84.196507 ], [ 181.406250, -84.196507 ], [ 181.406250, -84.336980 ], [ 182.109375, -84.336980 ], [ 182.109375, -84.405941 ], [ 182.812500, -84.405941 ], [ 182.812500, -84.336980 ], [ 183.515625, -84.336980 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.074056 ], [ -0.703125, -71.074056 ], [ -0.703125, -71.524909 ], [ 0.703125, -71.524909 ], [ 0.703125, -71.300793 ], [ 1.406250, -71.300793 ], [ 1.406250, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.844673 ], [ 4.921875, -70.844673 ], [ 4.921875, -70.612614 ], [ 5.625000, -70.612614 ], [ 5.625000, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -69.900118 ], [ 8.437500, -69.900118 ], [ 8.437500, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.612614 ], [ 11.953125, -70.612614 ], [ 11.953125, -70.140364 ], [ 13.359375, -70.140364 ], [ 13.359375, -69.900118 ], [ 14.062500, -69.900118 ], [ 14.062500, -70.140364 ], [ 15.468750, -70.140364 ], [ 15.468750, -69.900118 ], [ 17.578125, -69.900118 ], [ 17.578125, -69.657086 ], [ 18.984375, -69.657086 ], [ 18.984375, -69.900118 ], [ 21.093750, -69.900118 ], [ 21.093750, -70.140364 ], [ 21.796875, -70.140364 ], [ 21.796875, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.377854 ], [ 27.421875, -70.377854 ], [ 27.421875, -70.140364 ], [ 29.531250, -70.140364 ], [ 29.531250, -69.900118 ], [ 30.937500, -69.900118 ], [ 30.937500, -69.657086 ], [ 31.640625, -69.657086 ], [ 31.640625, -69.411242 ], [ 32.343750, -69.411242 ], [ 32.343750, -68.911005 ], [ 33.046875, -68.911005 ], [ 33.046875, -68.656555 ], [ 34.453125, -68.656555 ], [ 34.453125, -68.911005 ], [ 35.156250, -68.911005 ], [ 35.156250, -69.162558 ], [ 36.562500, -69.162558 ], [ 36.562500, -69.411242 ], [ 37.265625, -69.411242 ], [ 37.265625, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -68.911005 ], [ 40.781250, -68.911005 ], [ 40.781250, -68.656555 ], [ 41.484375, -68.656555 ], [ 41.484375, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.138852 ], [ 44.296875, -68.138852 ], [ 44.296875, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.609221 ], [ 47.812500, -67.609221 ], [ 47.812500, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.658275 ], [ 54.843750, -65.658275 ], [ 54.843750, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.875541 ], [ 62.578125, -67.875541 ], [ 62.578125, -67.609221 ], [ 66.796875, -67.609221 ], [ 66.796875, -67.875541 ], [ 68.203125, -67.875541 ], [ 68.203125, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.656555 ], [ 69.609375, -68.656555 ], [ 69.609375, -69.411242 ], [ 68.906250, -69.411242 ], [ 68.906250, -69.900118 ], [ 68.203125, -69.900118 ], [ 68.203125, -70.140364 ], [ 67.500000, -70.140364 ], [ 67.500000, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.074056 ], [ 68.203125, -71.074056 ], [ 68.203125, -71.524909 ], [ 67.500000, -71.524909 ], [ 67.500000, -71.965388 ], [ 68.203125, -71.965388 ], [ 68.203125, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -71.524909 ], [ 71.718750, -71.524909 ], [ 71.718750, -71.074056 ], [ 72.421875, -71.074056 ], [ 72.421875, -70.377854 ], [ 73.125000, -70.377854 ], [ 73.125000, -69.900118 ], [ 73.828125, -69.900118 ], [ 73.828125, -69.657086 ], [ 75.937500, -69.657086 ], [ 75.937500, -69.411242 ], [ 77.343750, -69.411242 ], [ 77.343750, -69.162558 ], [ 78.046875, -69.162558 ], [ 78.046875, -68.399180 ], [ 78.750000, -68.399180 ], [ 78.750000, -68.138852 ], [ 79.453125, -68.138852 ], [ 79.453125, -67.875541 ], [ 80.859375, -67.875541 ], [ 80.859375, -67.339861 ], [ 82.265625, -67.339861 ], [ 82.265625, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.513260 ], [ 88.593750, -66.513260 ], [ 88.593750, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.067433 ], [ 99.843750, -67.067433 ], [ 99.843750, -66.791909 ], [ 100.546875, -66.791909 ], [ 100.546875, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -66.791909 ], [ 109.687500, -66.791909 ], [ 109.687500, -66.513260 ], [ 110.390625, -66.513260 ], [ 110.390625, -66.231457 ], [ 111.093750, -66.231457 ], [ 111.093750, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.513260 ], [ 116.015625, -66.513260 ], [ 116.015625, -66.791909 ], [ 116.718750, -66.791909 ], [ 116.718750, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.513260 ], [ 130.781250, -66.513260 ], [ 130.781250, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.658275 ], [ 135.703125, -65.658275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ] ] ], [ [ [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 3.513421 ], [ 15.468750, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 3.513421 ], [ 15.468750, 2.108899 ], [ 14.062500, 2.108899 ], [ 14.062500, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 3.513421 ], [ 15.468750, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 16.875000, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 3.513421 ], [ 16.171875, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 16.171875, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.453125, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -0.703107 ], [ 30.937500, -0.703107 ], [ 30.937500, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.453125, 0.703107 ], [ 33.750000, 0.703107 ], [ 33.750000, -0.703107 ], [ 30.234375, -0.703107 ], [ 30.234375, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 2.811371 ], [ 30.234375, 2.811371 ], [ 30.234375, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -4.214943 ], [ 39.375000, -4.214943 ], [ 39.375000, -4.915833 ], [ 38.671875, -4.915833 ], [ 38.671875, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 41.484375, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -2.108899 ], [ 40.078125, -2.108899 ], [ 40.078125, -3.513421 ], [ 39.375000, -3.513421 ], [ 39.375000, -4.214943 ], [ 37.265625, -4.214943 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 35.156250, -2.108899 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 3.513421 ], [ 41.484375, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 47.109375, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 3.513421 ], [ 46.406250, 2.811371 ], [ 45.703125, 2.811371 ], [ 45.703125, 2.108899 ], [ 45.000000, 2.108899 ], [ 45.000000, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, 0.703107 ], [ 42.890625, 0.703107 ], [ 42.890625, 0.000000 ], [ 42.187500, 0.000000 ], [ 42.187500, -0.703107 ], [ 41.484375, -0.703107 ], [ 41.484375, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 46.406250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 115.312500, 3.513421 ] ] ], [ [ [ 103.359375, 3.513421 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 103.359375, 3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.359375, 3.513421 ], [ 103.359375, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.406109 ], [ 101.953125, 1.406109 ], [ 101.953125, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 103.359375, 3.513421 ] ] ], [ [ [ 114.609375, 3.513421 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 2.108899 ], [ 111.796875, 2.108899 ], [ 111.796875, 1.406109 ], [ 108.984375, 1.406109 ], [ 108.984375, 2.108899 ], [ 111.093750, 2.108899 ], [ 111.093750, 2.811371 ], [ 111.796875, 2.811371 ], [ 111.796875, 3.513421 ], [ 114.609375, 3.513421 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.308688 ], [ 178.593750, -17.978733 ], [ 177.890625, -17.978733 ], [ 177.890625, -17.308688 ], [ 178.593750, -17.308688 ] ] ], [ [ [ 179.296875, -16.636192 ], [ 179.296875, -17.308688 ], [ 178.593750, -17.308688 ], [ 178.593750, -16.636192 ], [ 179.296875, -16.636192 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.308688 ], [ 178.593750, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.308688 ], [ 178.593750, -17.308688 ] ] ], [ [ [ 180.000000, -15.961329 ], [ 180.000000, -16.636192 ], [ 178.593750, -16.636192 ], [ 178.593750, -15.961329 ], [ 180.000000, -15.961329 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 11.953125, -3.513421 ], [ 11.953125, -4.214943 ], [ 10.546875, -4.214943 ], [ 10.546875, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 0.703107 ], [ 13.359375, 0.703107 ], [ 13.359375, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -2.108899 ], [ 11.250000, -2.108899 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, -1.406109 ], [ 8.437500, -1.406109 ], [ 8.437500, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 13.359375, -4.214943 ], [ 13.359375, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 11.953125, -4.214943 ], [ 11.953125, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 2.811371 ], [ 17.578125, 2.811371 ], [ 17.578125, -0.703107 ], [ 16.171875, -0.703107 ], [ 16.171875, -2.108899 ], [ 15.468750, -2.108899 ], [ 15.468750, -4.214943 ], [ 14.765625, -4.214943 ], [ 14.765625, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 11.953125, -4.214943 ], [ 11.953125, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 10.546875, -4.214943 ], [ 10.546875, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, 0.000000 ], [ 13.359375, 0.000000 ], [ 13.359375, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.811371 ], [ 14.062500, 2.811371 ], [ 14.062500, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.828125, -12.554564 ], [ 27.421875, -12.554564 ], [ 27.421875, -11.867351 ], [ 25.312500, -11.867351 ], [ 25.312500, -11.178402 ], [ 22.500000, -11.178402 ], [ 22.500000, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -7.710992 ], [ 18.281250, -7.710992 ], [ 18.281250, -8.407168 ], [ 16.875000, -8.407168 ], [ 16.875000, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.615986 ], [ 13.359375, -5.615986 ], [ 13.359375, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.615986 ], [ 12.656250, -5.615986 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 15.468750, -4.915833 ], [ 15.468750, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 29.531250, -3.513421 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.937500, -7.710992 ], [ 30.937500, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -9.102097 ], [ 28.125000, -9.102097 ], [ 28.125000, -9.795678 ], [ 28.828125, -9.795678 ], [ 28.828125, -11.178402 ], [ 28.125000, -11.178402 ], [ 28.125000, -11.867351 ], [ 28.828125, -11.867351 ], [ 28.828125, -12.554564 ] ] ], [ [ [ 28.828125, -12.554564 ], [ 29.531250, -12.554564 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, -11.867351 ], [ 25.312500, -11.867351 ], [ 25.312500, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -10.487812 ], [ 21.796875, -10.487812 ], [ 21.796875, -7.710992 ], [ 21.093750, -7.710992 ], [ 21.093750, -7.013668 ], [ 20.390625, -7.013668 ], [ 20.390625, -6.315299 ], [ 19.687500, -6.315299 ], [ 19.687500, -7.013668 ], [ 18.984375, -7.013668 ], [ 18.984375, -7.710992 ], [ 16.875000, -7.710992 ], [ 16.875000, -7.013668 ], [ 16.171875, -7.013668 ], [ 16.171875, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.214943 ], [ 15.468750, -4.214943 ], [ 15.468750, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -0.703107 ], [ 17.578125, -0.703107 ], [ 17.578125, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 2.811371 ], [ 30.937500, 2.811371 ], [ 30.937500, 2.108899 ], [ 30.234375, 2.108899 ], [ 30.234375, 1.406109 ], [ 29.531250, 1.406109 ], [ 29.531250, -1.406109 ], [ 28.828125, -1.406109 ], [ 28.828125, -6.315299 ], [ 29.531250, -6.315299 ], [ 29.531250, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -8.407168 ], [ 28.125000, -8.407168 ], [ 28.125000, -11.867351 ] ] ], [ [ [ 28.125000, -11.867351 ], [ 29.531250, -11.867351 ], [ 29.531250, -13.239945 ], [ 28.125000, -13.239945 ], [ 28.125000, -11.867351 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.615986 ], [ 16.171875, -6.315299 ], [ 16.875000, -6.315299 ], [ 16.875000, -8.407168 ], [ 18.281250, -8.407168 ], [ 18.281250, -7.710992 ], [ 19.687500, -7.710992 ], [ 19.687500, -7.013668 ], [ 21.796875, -7.013668 ], [ 21.796875, -9.795678 ], [ 22.500000, -9.795678 ], [ 22.500000, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -13.239945 ], [ 21.796875, -13.239945 ], [ 21.796875, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -17.978733 ], [ 18.281250, -17.978733 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.636192 ], [ 12.656250, -16.636192 ], [ 12.656250, -17.308688 ], [ 11.953125, -17.308688 ], [ 11.953125, -13.923404 ], [ 12.656250, -13.923404 ], [ 12.656250, -13.239945 ], [ 13.359375, -13.239945 ], [ 13.359375, -11.867351 ], [ 14.062500, -11.867351 ], [ 14.062500, -11.178402 ], [ 13.359375, -11.178402 ], [ 13.359375, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -9.102097 ], [ 13.359375, -9.102097 ], [ 13.359375, -8.407168 ], [ 12.656250, -8.407168 ], [ 12.656250, -7.013668 ], [ 11.953125, -7.013668 ], [ 11.953125, -6.315299 ], [ 13.359375, -6.315299 ], [ 13.359375, -5.615986 ], [ 16.171875, -5.615986 ] ] ], [ [ [ 12.656250, -4.915833 ], [ 12.656250, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -4.915833 ], [ 12.656250, -4.915833 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.953125, -5.615986 ], [ 16.171875, -5.615986 ], [ 16.171875, -7.013668 ], [ 16.875000, -7.013668 ], [ 16.875000, -7.710992 ], [ 18.984375, -7.710992 ], [ 18.984375, -7.013668 ], [ 19.687500, -7.013668 ], [ 19.687500, -6.315299 ], [ 20.390625, -6.315299 ], [ 20.390625, -7.013668 ], [ 21.093750, -7.013668 ], [ 21.093750, -7.710992 ], [ 21.796875, -7.710992 ], [ 21.796875, -10.487812 ], [ 23.906250, -10.487812 ], [ 23.906250, -12.554564 ], [ 21.796875, -12.554564 ], [ 21.796875, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.636192 ], [ 11.250000, -16.636192 ], [ 11.250000, -15.284185 ], [ 11.953125, -15.284185 ], [ 11.953125, -13.239945 ], [ 12.656250, -13.239945 ], [ 12.656250, -11.867351 ], [ 13.359375, -11.867351 ], [ 13.359375, -9.795678 ], [ 12.656250, -9.795678 ], [ 12.656250, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.615986 ] ] ], [ [ [ 12.656250, -4.915833 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.214943 ], [ 12.656250, -4.214943 ], [ 12.656250, -4.915833 ] ] ], [ [ [ 11.953125, -5.615986 ], [ 11.250000, -5.615986 ], [ 11.250000, -4.915833 ], [ 11.953125, -4.915833 ], [ 11.953125, -5.615986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.359375, -16.636192 ], [ 13.359375, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.978733 ], [ 21.093750, -17.978733 ], [ 21.093750, -21.943046 ], [ 19.687500, -21.943046 ], [ 19.687500, -28.921631 ], [ 16.875000, -28.921631 ], [ 16.875000, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -27.059126 ], [ 14.765625, -27.059126 ], [ 14.765625, -24.527135 ], [ 14.062500, -24.527135 ], [ 14.062500, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.632784 ], [ 12.656250, -20.632784 ], [ 12.656250, -18.646245 ], [ 11.953125, -18.646245 ], [ 11.953125, -17.308688 ], [ 12.656250, -17.308688 ], [ 12.656250, -16.636192 ], [ 13.359375, -16.636192 ] ] ], [ [ [ 25.312500, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.308688 ], [ 25.312500, -17.308688 ], [ 25.312500, -17.978733 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, -16.636192 ], [ 13.359375, -17.308688 ], [ 23.906250, -17.308688 ], [ 23.906250, -17.978733 ], [ 20.390625, -17.978733 ], [ 20.390625, -21.289374 ], [ 19.687500, -21.289374 ], [ 19.687500, -28.921631 ], [ 17.578125, -28.921631 ], [ 17.578125, -28.304381 ], [ 15.468750, -28.304381 ], [ 15.468750, -27.683528 ], [ 14.765625, -27.683528 ], [ 14.765625, -25.799891 ], [ 14.062500, -25.799891 ], [ 14.062500, -21.943046 ], [ 13.359375, -21.943046 ], [ 13.359375, -21.289374 ], [ 12.656250, -21.289374 ], [ 12.656250, -19.311143 ], [ 11.953125, -19.311143 ], [ 11.953125, -18.646245 ], [ 11.250000, -18.646245 ], [ 11.250000, -16.636192 ], [ 13.359375, -16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -1.406109 ], [ 30.234375, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -1.406109 ], [ 30.234375, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -2.108899 ], [ 30.234375, -3.513421 ], [ 29.531250, -3.513421 ], [ 29.531250, -4.214943 ], [ 28.828125, -4.214943 ], [ 28.828125, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -2.108899 ], [ 30.234375, -2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -12.554564 ], [ 28.828125, -11.867351 ], [ 28.125000, -11.867351 ], [ 28.125000, -11.178402 ], [ 28.828125, -11.178402 ], [ 28.828125, -9.795678 ], [ 28.125000, -9.795678 ], [ 28.125000, -9.102097 ], [ 28.828125, -9.102097 ], [ 28.828125, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -13.239945 ], [ 32.343750, -13.239945 ], [ 32.343750, -14.604847 ], [ 30.234375, -14.604847 ], [ 30.234375, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.636192 ], [ 21.796875, -16.636192 ], [ 21.796875, -13.239945 ], [ 23.906250, -13.239945 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.554564 ], [ 28.828125, -12.554564 ] ], [ [ 28.828125, -12.554564 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.554564 ], [ 28.828125, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -11.867351 ], [ 28.125000, -8.407168 ], [ 31.640625, -8.407168 ], [ 31.640625, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -12.554564 ], [ 32.343750, -12.554564 ], [ 32.343750, -13.923404 ], [ 31.640625, -13.923404 ], [ 31.640625, -14.604847 ], [ 29.531250, -14.604847 ], [ 29.531250, -15.284185 ], [ 28.828125, -15.284185 ], [ 28.828125, -15.961329 ], [ 28.125000, -15.961329 ], [ 28.125000, -16.636192 ], [ 27.421875, -16.636192 ], [ 27.421875, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.636192 ], [ 21.796875, -16.636192 ], [ 21.796875, -12.554564 ], [ 23.906250, -12.554564 ], [ 23.906250, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.867351 ], [ 28.125000, -11.867351 ] ], [ [ 28.125000, -11.867351 ], [ 28.125000, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -11.867351 ], [ 28.125000, -11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -15.961329 ], [ 31.640625, -16.636192 ], [ 33.046875, -16.636192 ], [ 33.046875, -18.646245 ], [ 32.343750, -18.646245 ], [ 32.343750, -19.973349 ], [ 33.046875, -19.973349 ], [ 33.046875, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -21.943046 ], [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 29.531250, -22.593726 ], [ 29.531250, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -21.289374 ], [ 27.421875, -21.289374 ], [ 27.421875, -20.632784 ], [ 26.718750, -20.632784 ], [ 26.718750, -19.973349 ], [ 26.015625, -19.973349 ], [ 26.015625, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 31.640625, -15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -15.284185 ], [ 30.937500, -15.961329 ], [ 31.640625, -15.961329 ], [ 31.640625, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -20.632784 ], [ 31.640625, -20.632784 ], [ 31.640625, -21.289374 ], [ 30.937500, -21.289374 ], [ 30.937500, -21.943046 ], [ 28.125000, -21.943046 ], [ 28.125000, -21.289374 ], [ 27.421875, -21.289374 ], [ 27.421875, -19.973349 ], [ 26.718750, -19.973349 ], [ 26.718750, -19.311143 ], [ 26.015625, -19.311143 ], [ 26.015625, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 24.609375, -17.978733 ], [ 24.609375, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -15.284185 ], [ 30.937500, -15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -4.915833 ], [ 39.375000, -4.915833 ], [ 39.375000, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -7.013668 ], [ 39.375000, -7.013668 ], [ 39.375000, -9.795678 ], [ 40.078125, -9.795678 ], [ 40.078125, -11.178402 ], [ 37.968750, -11.178402 ], [ 37.968750, -11.867351 ], [ 35.156250, -11.867351 ], [ 35.156250, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 33.750000, -10.487812 ], [ 33.750000, -9.102097 ], [ 30.937500, -9.102097 ], [ 30.937500, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.013668 ], [ 29.531250, -7.013668 ], [ 29.531250, -4.214943 ], [ 30.234375, -4.214943 ], [ 30.234375, -3.513421 ], [ 30.937500, -3.513421 ], [ 30.937500, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 35.156250, -1.406109 ], [ 35.156250, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.265625, -2.811371 ], [ 37.265625, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -6.315299 ], [ 39.375000, -6.315299 ], [ 39.375000, -7.013668 ], [ 38.671875, -7.013668 ], [ 38.671875, -9.102097 ], [ 39.375000, -9.102097 ], [ 39.375000, -9.795678 ], [ 40.078125, -9.795678 ], [ 40.078125, -10.487812 ], [ 39.375000, -10.487812 ], [ 39.375000, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 33.750000, -10.487812 ], [ 33.750000, -9.102097 ], [ 31.640625, -9.102097 ], [ 31.640625, -8.407168 ], [ 30.234375, -8.407168 ], [ 30.234375, -7.710992 ], [ 29.531250, -7.710992 ], [ 29.531250, -6.315299 ], [ 28.828125, -6.315299 ], [ 28.828125, -4.214943 ], [ 29.531250, -4.214943 ], [ 29.531250, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -9.102097 ], [ 33.750000, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -13.239945 ], [ 35.156250, -13.239945 ], [ 35.156250, -14.604847 ], [ 35.859375, -14.604847 ], [ 35.859375, -15.961329 ], [ 35.156250, -15.961329 ], [ 35.156250, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -14.604847 ], [ 33.046875, -14.604847 ], [ 33.046875, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -13.239945 ], [ 33.046875, -13.239945 ], [ 33.046875, -9.102097 ], [ 33.750000, -9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -9.102097 ], [ 33.750000, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -11.867351 ], [ 33.750000, -11.867351 ], [ 33.750000, -12.554564 ], [ 34.453125, -12.554564 ], [ 34.453125, -13.239945 ], [ 35.156250, -13.239945 ], [ 35.156250, -16.636192 ], [ 33.750000, -16.636192 ], [ 33.750000, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 33.750000, -14.604847 ], [ 33.750000, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -9.102097 ], [ 33.750000, -9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, -10.487812 ], [ 40.781250, -15.961329 ], [ 40.078125, -15.961329 ], [ 40.078125, -16.636192 ], [ 39.375000, -16.636192 ], [ 39.375000, -17.308688 ], [ 37.265625, -17.308688 ], [ 37.265625, -17.978733 ], [ 36.562500, -17.978733 ], [ 36.562500, -18.646245 ], [ 35.859375, -18.646245 ], [ 35.859375, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -19.973349 ], [ 34.453125, -19.973349 ], [ 34.453125, -21.289374 ], [ 35.156250, -21.289374 ], [ 35.156250, -21.943046 ], [ 35.859375, -21.943046 ], [ 35.859375, -23.241346 ], [ 35.156250, -23.241346 ], [ 35.156250, -24.527135 ], [ 34.453125, -24.527135 ], [ 34.453125, -25.165173 ], [ 33.046875, -25.165173 ], [ 33.046875, -25.799891 ], [ 32.343750, -25.799891 ], [ 32.343750, -26.431228 ], [ 31.640625, -26.431228 ], [ 31.640625, -23.241346 ], [ 30.937500, -23.241346 ], [ 30.937500, -21.943046 ], [ 32.343750, -21.943046 ], [ 32.343750, -20.632784 ], [ 33.046875, -20.632784 ], [ 33.046875, -19.973349 ], [ 32.343750, -19.973349 ], [ 32.343750, -18.646245 ], [ 33.046875, -18.646245 ], [ 33.046875, -16.636192 ], [ 31.640625, -16.636192 ], [ 31.640625, -15.961329 ], [ 30.234375, -15.961329 ], [ 30.234375, -14.604847 ], [ 32.343750, -14.604847 ], [ 32.343750, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -14.604847 ], [ 35.156250, -14.604847 ], [ 35.156250, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -11.178402 ], [ 35.156250, -11.178402 ], [ 35.156250, -11.867351 ], [ 37.968750, -11.867351 ], [ 37.968750, -11.178402 ], [ 40.078125, -11.178402 ], [ 40.078125, -10.487812 ], [ 40.781250, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, -10.487812 ], [ 40.078125, -16.636192 ], [ 37.968750, -16.636192 ], [ 37.968750, -17.308688 ], [ 37.265625, -17.308688 ], [ 37.265625, -17.978733 ], [ 36.562500, -17.978733 ], [ 36.562500, -18.646245 ], [ 35.859375, -18.646245 ], [ 35.859375, -19.311143 ], [ 34.453125, -19.311143 ], [ 34.453125, -20.632784 ], [ 35.156250, -20.632784 ], [ 35.156250, -23.885838 ], [ 34.453125, -23.885838 ], [ 34.453125, -24.527135 ], [ 33.750000, -24.527135 ], [ 33.750000, -25.165173 ], [ 32.343750, -25.165173 ], [ 32.343750, -26.431228 ], [ 31.640625, -26.431228 ], [ 31.640625, -22.593726 ], [ 30.937500, -22.593726 ], [ 30.937500, -21.289374 ], [ 31.640625, -21.289374 ], [ 31.640625, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -16.636192 ], [ 31.640625, -16.636192 ], [ 31.640625, -15.961329 ], [ 30.937500, -15.961329 ], [ 30.937500, -15.284185 ], [ 29.531250, -15.284185 ], [ 29.531250, -14.604847 ], [ 31.640625, -14.604847 ], [ 31.640625, -13.923404 ], [ 33.750000, -13.923404 ], [ 33.750000, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 33.750000, -15.284185 ], [ 33.750000, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -12.554564 ], [ 33.750000, -12.554564 ], [ 33.750000, -11.867351 ], [ 34.453125, -11.867351 ], [ 34.453125, -11.178402 ], [ 39.375000, -11.178402 ], [ 39.375000, -10.487812 ], [ 40.078125, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.978733 ], [ 25.312500, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.973349 ], [ 26.718750, -19.973349 ], [ 26.718750, -20.632784 ], [ 27.421875, -20.632784 ], [ 27.421875, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.593726 ], [ 28.125000, -22.593726 ], [ 28.125000, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -24.527135 ], [ 26.015625, -24.527135 ], [ 26.015625, -25.799891 ], [ 23.906250, -25.799891 ], [ 23.906250, -25.165173 ], [ 23.203125, -25.165173 ], [ 23.203125, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.431228 ], [ 21.796875, -26.431228 ], [ 21.796875, -27.059126 ], [ 20.390625, -27.059126 ], [ 20.390625, -26.431228 ], [ 21.093750, -26.431228 ], [ 21.093750, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 19.687500, -25.165173 ], [ 19.687500, -21.943046 ], [ 21.093750, -21.943046 ], [ 21.093750, -17.978733 ], [ 25.312500, -17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, -17.308688 ], [ 24.609375, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.311143 ], [ 26.718750, -19.311143 ], [ 26.718750, -19.973349 ], [ 27.421875, -19.973349 ], [ 27.421875, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.943046 ], [ 28.828125, -21.943046 ], [ 28.828125, -22.593726 ], [ 27.421875, -22.593726 ], [ 27.421875, -23.241346 ], [ 26.718750, -23.241346 ], [ 26.718750, -24.527135 ], [ 25.312500, -24.527135 ], [ 25.312500, -25.165173 ], [ 22.500000, -25.165173 ], [ 22.500000, -25.799891 ], [ 21.796875, -25.799891 ], [ 21.796875, -26.431228 ], [ 20.390625, -26.431228 ], [ 20.390625, -25.165173 ], [ 19.687500, -25.165173 ], [ 19.687500, -21.289374 ], [ 20.390625, -21.289374 ], [ 20.390625, -17.978733 ], [ 23.906250, -17.978733 ], [ 23.906250, -17.308688 ], [ 24.609375, -17.308688 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 30.937500, -22.593726 ], [ 30.937500, -23.241346 ], [ 31.640625, -23.241346 ], [ 31.640625, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -29.535230 ], [ 31.640625, -29.535230 ], [ 31.640625, -30.145127 ], [ 30.937500, -30.145127 ], [ 30.937500, -30.751278 ], [ 30.234375, -30.751278 ], [ 30.234375, -31.952162 ], [ 28.828125, -31.952162 ], [ 28.828125, -32.546813 ], [ 28.125000, -32.546813 ], [ 28.125000, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.724340 ], [ 22.500000, -33.724340 ], [ 22.500000, -34.307144 ], [ 20.390625, -34.307144 ], [ 20.390625, -34.885931 ], [ 18.984375, -34.885931 ], [ 18.984375, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -33.137551 ], [ 17.578125, -33.137551 ], [ 17.578125, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.353637 ], [ 17.578125, -31.353637 ], [ 17.578125, -30.751278 ], [ 16.875000, -30.751278 ], [ 16.875000, -29.535230 ], [ 16.171875, -29.535230 ], [ 16.171875, -28.304381 ], [ 16.875000, -28.304381 ], [ 16.875000, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 21.093750, -25.799891 ], [ 21.093750, -26.431228 ], [ 20.390625, -26.431228 ], [ 20.390625, -27.059126 ], [ 21.796875, -27.059126 ], [ 21.796875, -26.431228 ], [ 22.500000, -26.431228 ], [ 22.500000, -25.799891 ], [ 23.203125, -25.799891 ], [ 23.203125, -25.165173 ], [ 23.906250, -25.165173 ], [ 23.906250, -25.799891 ], [ 26.015625, -25.799891 ], [ 26.015625, -24.527135 ], [ 27.421875, -24.527135 ], [ 27.421875, -23.241346 ], [ 28.125000, -23.241346 ], [ 28.125000, -22.593726 ], [ 30.937500, -22.593726 ] ], [ [ 28.125000, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -30.145127 ], [ 26.718750, -30.145127 ], [ 26.718750, -30.751278 ], [ 28.125000, -30.751278 ], [ 28.125000, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.535230 ] ] ], [ [ [ 33.046875, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -26.431228 ], [ 33.046875, -26.431228 ], [ 33.046875, -27.059126 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 31.640625, -22.593726 ], [ 31.640625, -25.799891 ], [ 30.234375, -25.799891 ], [ 30.234375, -27.059126 ], [ 31.640625, -27.059126 ], [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 32.343750, -28.304381 ], [ 31.640625, -28.304381 ], [ 31.640625, -28.921631 ], [ 30.937500, -28.921631 ], [ 30.937500, -29.535230 ], [ 30.234375, -29.535230 ], [ 30.234375, -30.751278 ], [ 29.531250, -30.751278 ], [ 29.531250, -31.353637 ], [ 28.828125, -31.353637 ], [ 28.828125, -32.546813 ], [ 28.125000, -32.546813 ], [ 28.125000, -33.137551 ], [ 25.312500, -33.137551 ], [ 25.312500, -33.724340 ], [ 21.093750, -33.724340 ], [ 21.093750, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -33.724340 ], [ 17.578125, -33.724340 ], [ 17.578125, -30.751278 ], [ 16.875000, -30.751278 ], [ 16.875000, -28.921631 ], [ 16.171875, -28.921631 ], [ 16.171875, -28.304381 ], [ 17.578125, -28.304381 ], [ 17.578125, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -26.431228 ], [ 21.796875, -26.431228 ], [ 21.796875, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -25.165173 ], [ 25.312500, -25.165173 ], [ 25.312500, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -22.593726 ], [ 28.828125, -22.593726 ], [ 28.828125, -21.943046 ], [ 30.937500, -21.943046 ] ], [ [ 27.421875, -29.535230 ], [ 26.718750, -29.535230 ], [ 26.718750, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -28.304381 ], [ 27.421875, -28.304381 ], [ 27.421875, -29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ], [ 32.343750, -26.431228 ], [ 32.343750, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -25.799891 ], [ 31.640625, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, -25.799891 ], [ 31.640625, -27.059126 ], [ 30.234375, -27.059126 ], [ 30.234375, -25.799891 ], [ 31.640625, -25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.921631 ], [ 28.828125, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 26.718750, -30.751278 ], [ 26.718750, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -29.535230 ], [ 28.125000, -29.535230 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, -28.304381 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -30.145127 ], [ 26.718750, -30.145127 ], [ 26.718750, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -28.304381 ], [ 28.125000, -28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.921875, -12.554564 ], [ 49.921875, -15.284185 ], [ 50.625000, -15.284185 ], [ 50.625000, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -17.308688 ], [ 49.218750, -17.308688 ], [ 49.218750, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.406250, -25.165173 ], [ 46.406250, -25.799891 ], [ 45.000000, -25.799891 ], [ 45.000000, -25.165173 ], [ 43.593750, -25.165173 ], [ 43.593750, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -15.961329 ], [ 47.109375, -15.961329 ], [ 47.109375, -15.284185 ], [ 47.812500, -15.284185 ], [ 47.812500, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -12.554564 ], [ 49.921875, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -11.867351 ], [ 49.218750, -13.239945 ], [ 49.921875, -13.239945 ], [ 49.921875, -15.961329 ], [ 49.218750, -15.961329 ], [ 49.218750, -17.978733 ], [ 48.515625, -17.978733 ], [ 48.515625, -21.289374 ], [ 47.812500, -21.289374 ], [ 47.812500, -22.593726 ], [ 47.109375, -22.593726 ], [ 47.109375, -23.885838 ], [ 46.406250, -23.885838 ], [ 46.406250, -25.165173 ], [ 43.593750, -25.165173 ], [ 43.593750, -23.241346 ], [ 42.890625, -23.241346 ], [ 42.890625, -21.289374 ], [ 43.593750, -21.289374 ], [ 43.593750, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -19.311143 ], [ 43.593750, -19.311143 ], [ 43.593750, -17.308688 ], [ 44.296875, -17.308688 ], [ 44.296875, -15.961329 ], [ 45.703125, -15.961329 ], [ 45.703125, -15.284185 ], [ 46.406250, -15.284185 ], [ 46.406250, -14.604847 ], [ 47.109375, -14.604847 ], [ 47.109375, -13.923404 ], [ 47.812500, -13.923404 ], [ 47.812500, -13.239945 ], [ 48.515625, -13.239945 ], [ 48.515625, -11.867351 ], [ 49.218750, -11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, -48.922499 ], [ 70.312500, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.458352 ], [ 68.906250, -48.922499 ], [ 70.312500, -48.922499 ], [ 70.312500, -49.382373 ], [ 68.203125, -49.382373 ], [ 68.203125, -48.458352 ], [ 68.906250, -48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.937500, -9.795678 ], [ 120.937500, -10.487812 ], [ 118.828125, -10.487812 ], [ 118.828125, -9.795678 ], [ 120.937500, -9.795678 ] ] ], [ [ [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ], [ 124.453125, -9.795678 ], [ 124.453125, -10.487812 ], [ 123.750000, -10.487812 ], [ 123.750000, -9.102097 ], [ 125.156250, -9.102097 ] ] ], [ [ [ 118.828125, -8.407168 ], [ 118.828125, -9.102097 ], [ 117.421875, -9.102097 ], [ 117.421875, -8.407168 ], [ 118.828125, -8.407168 ] ] ], [ [ [ 122.343750, -8.407168 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.407168 ], [ 122.343750, -8.407168 ] ] ], [ [ [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -9.102097 ], [ 139.921875, -9.102097 ], [ 139.921875, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 137.812500, -6.315299 ], [ 137.812500, -5.615986 ], [ 137.109375, -5.615986 ], [ 137.109375, -4.915833 ], [ 135.703125, -4.915833 ], [ 135.703125, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ] ] ], [ [ [ 107.578125, -5.615986 ], [ 107.578125, -6.315299 ], [ 108.281250, -6.315299 ], [ 108.281250, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.407168 ], [ 109.687500, -8.407168 ], [ 109.687500, -7.710992 ], [ 106.875000, -7.710992 ], [ 106.875000, -7.013668 ], [ 105.468750, -7.013668 ], [ 105.468750, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.615986 ], [ 107.578125, -5.615986 ] ] ], [ [ [ 135.000000, -5.615986 ], [ 135.000000, -7.013668 ], [ 134.296875, -7.013668 ], [ 134.296875, -5.615986 ], [ 135.000000, -5.615986 ] ] ], [ [ [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 116.015625, -3.513421 ], [ 116.015625, -4.214943 ], [ 114.609375, -4.214943 ], [ 114.609375, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 117.421875, 3.513421 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -4.214943 ], [ 123.046875, -4.214943 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ] ] ], [ [ [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -4.915833 ], [ 105.468750, -4.915833 ], [ 105.468750, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -4.915833 ], [ 102.656250, -4.915833 ], [ 102.656250, -4.214943 ], [ 101.953125, -4.214943 ], [ 101.953125, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 99.843750, 3.513421 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.234375, -9.102097 ], [ 120.234375, -9.795678 ], [ 118.828125, -9.795678 ], [ 118.828125, -9.102097 ], [ 120.234375, -9.102097 ] ] ], [ [ [ 124.453125, -9.102097 ], [ 124.453125, -9.795678 ], [ 123.750000, -9.795678 ], [ 123.750000, -9.102097 ], [ 124.453125, -9.102097 ] ] ], [ [ [ 118.828125, -7.710992 ], [ 118.828125, -8.407168 ], [ 117.421875, -8.407168 ], [ 117.421875, -7.710992 ], [ 118.828125, -7.710992 ] ] ], [ [ [ 113.203125, -7.710992 ], [ 115.312500, -7.710992 ], [ 115.312500, -8.407168 ], [ 113.203125, -8.407168 ], [ 113.203125, -7.710992 ] ] ], [ [ [ 116.718750, 3.513421 ], [ 116.718750, 2.811371 ], [ 117.421875, 2.811371 ], [ 117.421875, -1.406109 ], [ 116.015625, -1.406109 ], [ 116.015625, -3.513421 ], [ 113.906250, -3.513421 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 0.000000 ], [ 108.281250, 0.000000 ], [ 108.281250, 0.703107 ], [ 108.984375, 0.703107 ], [ 108.984375, 1.406109 ], [ 111.796875, 1.406109 ], [ 111.796875, 2.108899 ], [ 112.500000, 2.108899 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 3.513421 ], [ 116.718750, 3.513421 ] ] ], [ [ [ 132.187500, 0.000000 ], [ 132.187500, -0.703107 ], [ 133.593750, -0.703107 ], [ 133.593750, -1.406109 ], [ 134.296875, -1.406109 ], [ 134.296875, -2.811371 ], [ 135.703125, -2.811371 ], [ 135.703125, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 140.625000, -2.108899 ], [ 140.625000, -8.407168 ], [ 139.921875, -8.407168 ], [ 139.921875, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -8.407168 ], [ 137.109375, -8.407168 ], [ 137.109375, -7.710992 ], [ 137.812500, -7.710992 ], [ 137.812500, -7.013668 ], [ 138.515625, -7.013668 ], [ 138.515625, -6.315299 ], [ 137.812500, -6.315299 ], [ 137.812500, -4.915833 ], [ 136.406250, -4.915833 ], [ 136.406250, -4.214943 ], [ 133.593750, -4.214943 ], [ 133.593750, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 132.890625, -2.811371 ], [ 132.890625, -2.108899 ], [ 131.484375, -2.108899 ], [ 131.484375, -1.406109 ], [ 130.078125, -1.406109 ], [ 130.078125, -0.703107 ], [ 131.484375, -0.703107 ], [ 131.484375, 0.000000 ], [ 132.187500, 0.000000 ] ] ], [ [ [ 134.296875, -5.615986 ], [ 134.296875, -6.315299 ], [ 133.593750, -6.315299 ], [ 133.593750, -5.615986 ], [ 134.296875, -5.615986 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 103.359375, -5.615986 ], [ 103.359375, -4.915833 ], [ 101.953125, -4.915833 ], [ 101.953125, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 0.703107 ], [ 98.437500, 0.703107 ], [ 98.437500, 2.108899 ], [ 97.031250, 2.108899 ], [ 97.031250, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 2.811371 ], [ 99.843750, 2.811371 ], [ 99.843750, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 1.406109 ], [ 101.953125, 1.406109 ], [ 101.953125, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 104.062500, -0.703107 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 122.343750, -4.214943 ], [ 123.046875, -4.214943 ], [ 123.046875, -5.615986 ], [ 121.640625, -5.615986 ], [ 121.640625, -4.915833 ], [ 122.343750, -4.915833 ], [ 122.343750, -4.214943 ] ] ], [ [ [ 121.640625, -4.214943 ], [ 120.937500, -4.214943 ], [ 120.937500, -3.513421 ], [ 120.234375, -3.513421 ], [ 120.234375, -5.615986 ], [ 118.828125, -5.615986 ], [ 118.828125, -4.915833 ], [ 119.531250, -4.915833 ], [ 119.531250, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 118.125000, -2.811371 ], [ 118.125000, -2.108899 ], [ 118.828125, -2.108899 ], [ 118.828125, 0.000000 ], [ 119.531250, 0.000000 ], [ 119.531250, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.513421 ], [ 121.640625, -3.513421 ], [ 121.640625, -4.214943 ] ] ], [ [ [ 126.562500, -2.811371 ], [ 126.562500, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -2.811371 ], [ 126.562500, -2.811371 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.078125, -3.513421 ], [ 129.375000, -3.513421 ], [ 129.375000, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ 105.468750, -5.615986 ], [ 106.875000, -5.615986 ], [ 106.875000, -6.315299 ], [ 112.500000, -6.315299 ], [ 112.500000, -7.710992 ], [ 106.171875, -7.710992 ], [ 106.171875, -6.315299 ], [ 105.468750, -6.315299 ], [ 105.468750, -5.615986 ] ] ], [ [ [ 122.343750, -0.703107 ], [ 122.343750, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -0.703107 ], [ 122.343750, -0.703107 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 127.968750, 0.703107 ], [ 127.968750, -0.703107 ], [ 127.265625, -0.703107 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 123.046875, -0.703107 ], [ 122.343750, -0.703107 ], [ 122.343750, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, -0.703107 ] ] ], [ [ [ 120.234375, 0.703107 ], [ 120.234375, 1.406109 ], [ 124.453125, 1.406109 ], [ 124.453125, 0.703107 ], [ 120.234375, 0.703107 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 124.453125, 1.406109 ], [ 124.453125, 2.108899 ], [ 125.156250, 2.108899 ], [ 125.156250, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.562500, -8.407168 ], [ 126.562500, -9.102097 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.407168 ], [ 126.562500, -8.407168 ] ] ], [ [ [ 127.265625, -8.407168 ], [ 126.562500, -8.407168 ], [ 126.562500, -7.710992 ], [ 127.265625, -7.710992 ], [ 127.265625, -8.407168 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.359375, -40.979898 ], [ 148.359375, -43.068888 ], [ 147.656250, -43.068888 ], [ 147.656250, -43.580391 ], [ 146.250000, -43.580391 ], [ 146.250000, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -40.979898 ], [ 148.359375, -40.979898 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 135.000000, -11.867351 ], [ 135.000000, -12.554564 ], [ 135.703125, -12.554564 ], [ 135.703125, -11.867351 ], [ 136.406250, -11.867351 ], [ 136.406250, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -15.961329 ], [ 137.812500, -15.961329 ], [ 137.812500, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -17.308688 ], [ 139.218750, -17.308688 ], [ 139.218750, -17.978733 ], [ 140.625000, -17.978733 ], [ 140.625000, -17.308688 ], [ 141.328125, -17.308688 ], [ 141.328125, -15.961329 ], [ 142.031250, -15.961329 ], [ 142.031250, -15.284185 ], [ 141.328125, -15.284185 ], [ 141.328125, -13.239945 ], [ 142.031250, -13.239945 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.437500, -11.867351 ], [ 143.437500, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -15.284185 ], [ 145.546875, -15.284185 ], [ 145.546875, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.593726 ], [ 150.468750, -22.593726 ], [ 150.468750, -23.241346 ], [ 151.171875, -23.241346 ], [ 151.171875, -23.885838 ], [ 151.875000, -23.885838 ], [ 151.875000, -25.165173 ], [ 152.578125, -25.165173 ], [ 152.578125, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -31.353637 ], [ 152.578125, -31.353637 ], [ 152.578125, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.468750, -34.885931 ], [ 150.468750, -36.031332 ], [ 149.765625, -36.031332 ], [ 149.765625, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -38.272689 ], [ 147.656250, -38.272689 ], [ 147.656250, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.307144 ], [ 136.406250, -34.307144 ], [ 136.406250, -34.885931 ], [ 135.000000, -34.885931 ], [ 135.000000, -33.724340 ], [ 134.296875, -33.724340 ], [ 134.296875, -32.546813 ], [ 132.890625, -32.546813 ], [ 132.890625, -31.952162 ], [ 131.484375, -31.952162 ], [ 131.484375, -31.353637 ], [ 129.375000, -31.353637 ], [ 129.375000, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.546813 ], [ 125.156250, -32.546813 ], [ 125.156250, -33.137551 ], [ 124.453125, -33.137551 ], [ 124.453125, -33.724340 ], [ 120.234375, -33.724340 ], [ 120.234375, -34.307144 ], [ 118.828125, -34.307144 ], [ 118.828125, -34.885931 ], [ 115.312500, -34.885931 ], [ 115.312500, -33.724340 ], [ 116.015625, -33.724340 ], [ 116.015625, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -29.535230 ], [ 114.609375, -29.535230 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.203125, -27.059126 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -24.527135 ], [ 113.203125, -24.527135 ], [ 113.203125, -23.885838 ], [ 113.906250, -23.885838 ], [ 113.906250, -22.593726 ], [ 114.609375, -22.593726 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.289374 ], [ 116.718750, -21.289374 ], [ 116.718750, -20.632784 ], [ 118.828125, -20.632784 ], [ 118.828125, -19.973349 ], [ 121.640625, -19.973349 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.636192 ], [ 124.453125, -16.636192 ], [ 124.453125, -15.284185 ], [ 125.156250, -15.284185 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.604847 ], [ 128.671875, -14.604847 ], [ 128.671875, -15.284185 ], [ 129.375000, -15.284185 ], [ 129.375000, -14.604847 ], [ 130.078125, -14.604847 ], [ 130.078125, -13.239945 ], [ 130.781250, -13.239945 ], [ 130.781250, -12.554564 ], [ 132.890625, -12.554564 ], [ 132.890625, -11.867351 ] ] ], [ [ [ 132.890625, -11.867351 ], [ 131.484375, -11.867351 ], [ 131.484375, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.867351 ] ] ], [ [ [ 137.812500, -34.885931 ], [ 137.812500, -35.460670 ], [ 137.109375, -35.460670 ], [ 137.109375, -34.885931 ], [ 137.812500, -34.885931 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -40.446947 ], [ 144.843750, -40.979898 ], [ 147.656250, -40.979898 ], [ 147.656250, -41.508577 ], [ 148.359375, -41.508577 ], [ 148.359375, -42.032974 ], [ 147.656250, -42.032974 ], [ 147.656250, -43.068888 ], [ 146.250000, -43.068888 ], [ 146.250000, -43.580391 ], [ 145.546875, -43.580391 ], [ 145.546875, -43.068888 ], [ 144.843750, -43.068888 ], [ 144.843750, -41.508577 ], [ 144.140625, -41.508577 ], [ 144.140625, -40.446947 ], [ 144.843750, -40.446947 ] ] ], [ [ [ 142.734375, -10.487812 ], [ 142.734375, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -13.923404 ], [ 144.843750, -13.923404 ], [ 144.843750, -16.636192 ], [ 145.546875, -16.636192 ], [ 145.546875, -18.646245 ], [ 146.250000, -18.646245 ], [ 146.250000, -19.311143 ], [ 147.656250, -19.311143 ], [ 147.656250, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.632784 ], [ 149.062500, -20.632784 ], [ 149.062500, -21.943046 ], [ 150.468750, -21.943046 ], [ 150.468750, -23.885838 ], [ 151.875000, -23.885838 ], [ 151.875000, -24.527135 ], [ 152.578125, -24.527135 ], [ 152.578125, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -29.535230 ], [ 152.578125, -29.535230 ], [ 152.578125, -31.952162 ], [ 151.875000, -31.952162 ], [ 151.875000, -32.546813 ], [ 151.171875, -32.546813 ], [ 151.171875, -34.307144 ], [ 150.468750, -34.307144 ], [ 150.468750, -35.460670 ], [ 149.765625, -35.460670 ], [ 149.765625, -37.718590 ], [ 146.953125, -37.718590 ], [ 146.953125, -38.272689 ], [ 146.250000, -38.272689 ], [ 146.250000, -38.822591 ], [ 144.843750, -38.822591 ], [ 144.843750, -37.718590 ], [ 144.140625, -37.718590 ], [ 144.140625, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -37.160317 ], [ 139.218750, -37.160317 ], [ 139.218750, -36.031332 ], [ 138.515625, -36.031332 ], [ 138.515625, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -34.885931 ], [ 137.109375, -34.885931 ], [ 137.109375, -33.724340 ], [ 135.703125, -33.724340 ], [ 135.703125, -34.885931 ], [ 135.000000, -34.885931 ], [ 135.000000, -33.724340 ], [ 134.296875, -33.724340 ], [ 134.296875, -33.137551 ], [ 133.593750, -33.137551 ], [ 133.593750, -32.546813 ], [ 132.890625, -32.546813 ], [ 132.890625, -31.952162 ], [ 130.781250, -31.952162 ], [ 130.781250, -31.353637 ], [ 127.968750, -31.353637 ], [ 127.968750, -31.952162 ], [ 125.859375, -31.952162 ], [ 125.859375, -32.546813 ], [ 123.750000, -32.546813 ], [ 123.750000, -33.724340 ], [ 119.531250, -33.724340 ], [ 119.531250, -34.307144 ], [ 118.125000, -34.307144 ], [ 118.125000, -34.885931 ], [ 115.312500, -34.885931 ], [ 115.312500, -34.307144 ], [ 114.609375, -34.307144 ], [ 114.609375, -33.137551 ], [ 115.312500, -33.137551 ], [ 115.312500, -30.751278 ], [ 114.609375, -30.751278 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.203125, -27.059126 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -25.165173 ], [ 113.203125, -25.165173 ], [ 113.203125, -21.943046 ], [ 114.609375, -21.943046 ], [ 114.609375, -21.289374 ], [ 115.312500, -21.289374 ], [ 115.312500, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -19.973349 ], [ 120.234375, -19.973349 ], [ 120.234375, -19.311143 ], [ 120.937500, -19.311143 ], [ 120.937500, -18.646245 ], [ 121.640625, -18.646245 ], [ 121.640625, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -15.961329 ], [ 123.750000, -15.961329 ], [ 123.750000, -15.284185 ], [ 124.453125, -15.284185 ], [ 124.453125, -14.604847 ], [ 125.156250, -14.604847 ], [ 125.156250, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.604847 ], [ 129.375000, -14.604847 ], [ 129.375000, -13.239945 ], [ 130.078125, -13.239945 ], [ 130.078125, -11.867351 ], [ 132.187500, -11.867351 ], [ 132.187500, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.867351 ], [ 136.406250, -11.867351 ], [ 136.406250, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -14.604847 ], [ 135.000000, -14.604847 ], [ 135.000000, -15.284185 ], [ 136.406250, -15.284185 ], [ 136.406250, -15.961329 ], [ 137.109375, -15.961329 ], [ 137.109375, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -17.308688 ], [ 140.625000, -17.308688 ], [ 140.625000, -15.961329 ], [ 141.328125, -15.961329 ], [ 141.328125, -11.867351 ], [ 142.031250, -11.867351 ], [ 142.031250, -10.487812 ], [ 142.734375, -10.487812 ] ], [ [ 137.109375, -33.137551 ], [ 137.109375, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -33.137551 ], [ 137.109375, -33.137551 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -3.513421 ], [ 144.843750, -4.214943 ], [ 145.546875, -4.214943 ], [ 145.546875, -5.615986 ], [ 146.250000, -5.615986 ], [ 146.250000, -6.315299 ], [ 147.656250, -6.315299 ], [ 147.656250, -7.013668 ], [ 146.953125, -7.013668 ], [ 146.953125, -7.710992 ], [ 148.359375, -7.710992 ], [ 148.359375, -8.407168 ], [ 149.062500, -8.407168 ], [ 149.062500, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -10.487812 ], [ 147.656250, -10.487812 ], [ 147.656250, -9.795678 ], [ 146.250000, -9.795678 ], [ 146.250000, -8.407168 ], [ 144.843750, -8.407168 ], [ 144.843750, -7.710992 ], [ 144.140625, -7.710992 ], [ 144.140625, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.102097 ], [ 141.328125, -9.102097 ], [ 141.328125, -3.513421 ], [ 144.843750, -3.513421 ] ] ], [ [ [ 150.468750, -4.915833 ], [ 150.468750, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -6.315299 ], [ 148.359375, -6.315299 ], [ 148.359375, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -4.915833 ], [ 150.468750, -4.915833 ] ] ], [ [ [ 155.390625, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ] ] ], [ [ [ 152.578125, -4.915833 ], [ 152.578125, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -4.915833 ], [ 151.875000, -4.915833 ], [ 151.875000, -4.214943 ], [ 152.578125, -4.214943 ], [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.578125, -4.915833 ] ] ], [ [ [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ] ] ], [ [ [ 155.390625, -6.315299 ], [ 156.093750, -6.315299 ], [ 156.093750, -7.013668 ], [ 155.390625, -7.013668 ], [ 155.390625, -6.315299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.765625, -9.795678 ], [ 146.953125, -9.795678 ], [ 146.953125, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.546875, -8.407168 ], [ 145.546875, -7.710992 ], [ 142.734375, -7.710992 ], [ 142.734375, -9.102097 ], [ 140.625000, -9.102097 ], [ 140.625000, -2.108899 ], [ 141.328125, -2.108899 ], [ 141.328125, -2.811371 ], [ 142.734375, -2.811371 ], [ 142.734375, -3.513421 ], [ 144.140625, -3.513421 ], [ 144.140625, -4.214943 ], [ 145.546875, -4.214943 ], [ 145.546875, -5.615986 ], [ 146.953125, -5.615986 ], [ 146.953125, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -9.102097 ], [ 149.765625, -9.102097 ], [ 149.765625, -9.795678 ] ] ], [ [ [ 151.171875, -4.915833 ], [ 151.171875, -5.615986 ], [ 150.468750, -5.615986 ], [ 150.468750, -6.315299 ], [ 148.359375, -6.315299 ], [ 148.359375, -4.915833 ], [ 151.171875, -4.915833 ] ] ], [ [ [ 154.687500, -5.615986 ], [ 153.984375, -5.615986 ], [ 153.984375, -4.915833 ], [ 154.687500, -4.915833 ], [ 154.687500, -5.615986 ] ] ], [ [ [ 151.875000, -4.915833 ], [ 151.171875, -4.915833 ], [ 151.171875, -3.513421 ], [ 151.875000, -3.513421 ], [ 151.875000, -4.915833 ] ] ], [ [ [ 151.171875, -2.108899 ], [ 151.171875, -2.811371 ], [ 150.468750, -2.811371 ], [ 150.468750, -2.108899 ], [ 151.171875, -2.108899 ] ] ], [ [ [ 149.765625, -9.795678 ], [ 150.468750, -9.795678 ], [ 150.468750, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -9.795678 ] ] ], [ [ [ 154.687500, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 160.312500, -9.102097 ], [ 160.312500, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -9.102097 ], [ 160.312500, -9.102097 ], [ 160.312500, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ] ] ], [ [ [ 157.500000, -7.013668 ], [ 157.500000, -7.710992 ], [ 156.796875, -7.710992 ], [ 156.796875, -7.013668 ], [ 157.500000, -7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.718750, -9.795678 ], [ 161.718750, -10.487812 ], [ 161.015625, -10.487812 ], [ 161.015625, -9.795678 ], [ 161.718750, -9.795678 ] ] ], [ [ [ 160.312500, -9.102097 ], [ 160.312500, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -9.102097 ], [ 160.312500, -9.102097 ], [ 160.312500, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.343750, -14.604847 ], [ 167.343750, -15.961329 ], [ 166.640625, -15.961329 ], [ 166.640625, -14.604847 ], [ 167.343750, -14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.640625, -14.604847 ], [ 166.640625, -15.284185 ], [ 165.937500, -15.284185 ], [ 165.937500, -14.604847 ], [ 166.640625, -14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 165.937500, -21.943046 ], [ 164.531250, -21.943046 ], [ 164.531250, -21.289374 ], [ 163.828125, -21.289374 ], [ 163.828125, -19.973349 ], [ 164.531250, -19.973349 ], [ 164.531250, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.943046 ] ] ], [ [ [ 165.937500, -21.943046 ], [ 167.343750, -21.943046 ], [ 167.343750, -22.593726 ], [ 165.937500, -22.593726 ], [ 165.937500, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.531250, -20.632784 ], [ 163.828125, -20.632784 ], [ 163.828125, -19.973349 ], [ 164.531250, -19.973349 ], [ 164.531250, -20.632784 ] ] ], [ [ [ 165.234375, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.943046 ], [ 165.234375, -21.943046 ], [ 165.234375, -21.289374 ] ] ], [ [ [ 164.531250, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -21.289374 ], [ 164.531250, -21.289374 ], [ 164.531250, -20.632784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.979898 ], [ 172.968750, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -42.032974 ], [ 173.671875, -42.032974 ], [ 173.671875, -42.553080 ], [ 172.968750, -42.553080 ], [ 172.968750, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.590467 ], [ 170.859375, -44.590467 ], [ 170.859375, -46.558860 ], [ 168.046875, -46.558860 ], [ 168.046875, -46.073231 ], [ 166.640625, -46.073231 ], [ 166.640625, -45.583290 ], [ 167.343750, -45.583290 ], [ 167.343750, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.087585 ], [ 169.453125, -44.087585 ], [ 169.453125, -43.580391 ], [ 170.859375, -43.580391 ], [ 170.859375, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -41.508577 ], [ 172.265625, -41.508577 ], [ 172.265625, -40.979898 ], [ 172.968750, -40.979898 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -39.368279 ], [ 177.187500, -39.368279 ], [ 177.187500, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -39.909736 ], [ 173.671875, -39.909736 ], [ 173.671875, -39.368279 ], [ 174.375000, -39.368279 ], [ 174.375000, -38.822591 ], [ 175.078125, -38.822591 ], [ 175.078125, -37.718590 ], [ 174.375000, -37.718590 ], [ 174.375000, -36.597889 ] ] ], [ [ [ 174.375000, -36.597889 ], [ 173.671875, -36.597889 ], [ 173.671875, -36.031332 ], [ 172.968750, -36.031332 ], [ 172.968750, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.446947 ], [ 172.968750, -40.979898 ], [ 173.671875, -40.979898 ], [ 173.671875, -42.553080 ], [ 172.968750, -42.553080 ], [ 172.968750, -43.068888 ], [ 172.265625, -43.068888 ], [ 172.265625, -44.087585 ], [ 170.859375, -44.087585 ], [ 170.859375, -45.089036 ], [ 170.156250, -45.089036 ], [ 170.156250, -46.073231 ], [ 169.453125, -46.073231 ], [ 169.453125, -46.558860 ], [ 167.343750, -46.558860 ], [ 167.343750, -46.073231 ], [ 165.937500, -46.073231 ], [ 165.937500, -45.583290 ], [ 166.640625, -45.583290 ], [ 166.640625, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.580391 ], [ 169.453125, -43.580391 ], [ 169.453125, -43.068888 ], [ 170.156250, -43.068888 ], [ 170.156250, -42.553080 ], [ 170.859375, -42.553080 ], [ 170.859375, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -40.446947 ], [ 172.968750, -40.446947 ] ] ], [ [ [ 173.671875, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 177.890625, -37.718590 ], [ 177.890625, -38.822591 ], [ 177.187500, -38.822591 ], [ 177.187500, -39.368279 ], [ 176.484375, -39.368279 ], [ 176.484375, -40.979898 ], [ 175.781250, -40.979898 ], [ 175.781250, -41.508577 ], [ 174.375000, -41.508577 ], [ 174.375000, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -40.446947 ], [ 174.375000, -40.446947 ], [ 174.375000, -39.909736 ], [ 173.671875, -39.909736 ], [ 173.671875, -38.822591 ], [ 174.375000, -38.822591 ], [ 174.375000, -37.160317 ], [ 173.671875, -37.160317 ], [ 173.671875, -35.460670 ] ] ], [ [ [ 172.968750, -34.885931 ], [ 172.265625, -34.885931 ], [ 172.265625, -34.307144 ], [ 172.968750, -34.307144 ], [ 172.968750, -34.885931 ] ] ], [ [ [ 172.968750, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.460670 ], [ 172.968750, -35.460670 ], [ 172.968750, -34.885931 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 57.704147 ], [ -2.109375, 56.170023 ], [ -2.812500, 56.170023 ], [ -2.812500, 55.776573 ], [ -2.109375, 55.776573 ], [ -2.109375, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 51.618017 ], [ 0.703125, 51.618017 ], [ 0.703125, 51.179343 ], [ 1.406250, 51.179343 ], [ 1.406250, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 53.330873 ], [ -2.812500, 53.330873 ], [ -2.812500, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 42.553080 ], [ 9.843750, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 42.553080 ], [ 9.843750, 42.553080 ] ] ], [ [ [ 2.812500, 50.736455 ], [ 2.812500, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.382373 ], [ 7.031250, 49.382373 ], [ 7.031250, 48.922499 ], [ 8.437500, 48.922499 ], [ 8.437500, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.517201 ], [ 7.031250, 47.517201 ], [ 7.031250, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.073231 ], [ 7.031250, 46.073231 ], [ 7.031250, 44.087585 ], [ 7.734375, 44.087585 ], [ 7.734375, 43.068888 ], [ 4.921875, 43.068888 ], [ 4.921875, 43.580391 ], [ 4.218750, 43.580391 ], [ 4.218750, 43.068888 ], [ 2.812500, 43.068888 ], [ 2.812500, 42.553080 ], [ -1.406250, 42.553080 ], [ -1.406250, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.458352 ], [ -1.406250, 48.458352 ], [ -1.406250, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ 0.000000, 49.382373 ], [ 0.000000, 49.837982 ], [ 1.406250, 49.837982 ], [ 1.406250, 50.736455 ], [ 2.812500, 50.736455 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 56.170023 ], [ -2.109375, 56.170023 ], [ -2.109375, 55.379110 ], [ -1.406250, 55.379110 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 52.052490 ], [ 0.703125, 52.052490 ], [ 0.703125, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ -1.406250, 51.179343 ], [ -1.406250, 50.736455 ], [ -3.515625, 50.736455 ], [ -3.515625, 56.170023 ] ] ], [ [ [ -2.109375, 57.326521 ], [ -2.812500, 57.326521 ], [ -2.812500, 56.559482 ], [ -3.515625, 56.559482 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 57.326521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 39.909736 ], [ 0.000000, 39.909736 ], [ 0.000000, 38.272689 ], [ -0.703125, 38.272689 ], [ -0.703125, 37.718590 ], [ -1.406250, 37.718590 ], [ -1.406250, 37.160317 ], [ -2.109375, 37.160317 ], [ -2.109375, 36.597889 ], [ -3.515625, 36.597889 ], [ -3.515625, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.140625, 43.068888 ], [ 9.140625, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 43.068888 ], [ 9.140625, 43.068888 ] ] ], [ [ [ 2.812500, 51.179343 ], [ 2.812500, 50.736455 ], [ 3.515625, 50.736455 ], [ 3.515625, 50.289339 ], [ 4.218750, 50.289339 ], [ 4.218750, 49.837982 ], [ 5.625000, 49.837982 ], [ 5.625000, 49.382373 ], [ 7.734375, 49.382373 ], [ 7.734375, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 47.517201 ], [ 6.328125, 47.517201 ], [ 6.328125, 47.040182 ], [ 5.625000, 47.040182 ], [ 5.625000, 46.558860 ], [ 6.328125, 46.558860 ], [ 6.328125, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 45.089036 ], [ 6.328125, 45.089036 ], [ 6.328125, 44.590467 ], [ 7.031250, 44.590467 ], [ 7.031250, 43.580391 ], [ 2.812500, 43.580391 ], [ 2.812500, 42.553080 ], [ 0.703125, 42.553080 ], [ 0.703125, 43.068888 ], [ -2.109375, 43.068888 ], [ -2.109375, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 46.073231 ], [ -2.109375, 46.073231 ], [ -2.109375, 47.040182 ], [ -2.812500, 47.040182 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 48.922499 ], [ -2.109375, 48.922499 ], [ -2.109375, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 50.736455 ], [ 1.406250, 50.736455 ], [ 1.406250, 51.179343 ], [ 2.812500, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 31.952162 ], [ -3.515625, 31.952162 ], [ -3.515625, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 43.580391 ], [ -2.109375, 43.068888 ], [ 0.703125, 43.068888 ], [ 0.703125, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.508577 ], [ 0.703125, 41.508577 ], [ 0.703125, 40.446947 ], [ 0.000000, 40.446947 ], [ 0.000000, 39.909736 ], [ -0.703125, 39.909736 ], [ -0.703125, 37.718590 ], [ -2.109375, 37.718590 ], [ -2.109375, 37.160317 ], [ -3.515625, 37.160317 ], [ -3.515625, 43.580391 ], [ -2.109375, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.632784 ], [ 2.109375, 20.632784 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.604847 ], [ -0.703125, 14.604847 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.239945 ], [ -3.515625, 13.239945 ], [ -3.515625, 23.241346 ], [ -2.109375, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 35.460670 ], [ -2.812500, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 33.724340 ], [ -1.406250, 33.724340 ], [ -1.406250, 32.546813 ], [ -2.812500, 32.546813 ], [ -2.812500, 31.952162 ], [ -3.515625, 31.952162 ], [ -3.515625, 35.460670 ], [ -2.812500, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -2.812500, 11.178402 ], [ -2.812500, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 13.239945 ], [ -2.812500, 13.239945 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 23.885838 ], [ -2.812500, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 3.515625, 16.636192 ], [ 3.515625, 15.961329 ], [ 0.703125, 15.961329 ], [ 0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.604847 ], [ -2.812500, 14.604847 ], [ -2.812500, 13.923404 ], [ -3.515625, 13.923404 ], [ -3.515625, 23.885838 ], [ -2.812500, 23.885838 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.515625, 4.915833 ], [ -3.515625, 5.615986 ] ] ], [ [ [ -2.812500, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 7.013668 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 15.284185 ], [ 0.000000, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 13.239945 ], [ 2.109375, 13.239945 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.178402 ], [ -3.515625, 11.178402 ], [ -3.515625, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 15.284185 ], [ 0.000000, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.515625, 5.615986 ], [ -3.515625, 7.013668 ], [ -2.812500, 7.013668 ], [ -2.812500, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.812500, 9.102097 ], [ -2.812500, 7.710992 ], [ -3.515625, 7.710992 ], [ -3.515625, 9.102097 ], [ -2.812500, 9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 65.946472 ], [ 180.000000, 65.658275 ], [ 180.703125, 65.658275 ], [ 180.703125, 65.072130 ], [ 180.000000, 65.072130 ], [ 180.000000, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.472794 ], [ 177.187500, 64.472794 ], [ 177.187500, 64.168107 ], [ 178.593750, 64.168107 ], [ 178.593750, 62.915233 ], [ 179.296875, 62.915233 ], [ 179.296875, 62.267923 ], [ 177.890625, 62.267923 ], [ 177.890625, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.586967 ], [ 171.562500, 60.586967 ], [ 171.562500, 60.239811 ], [ 170.859375, 60.239811 ], [ 170.859375, 59.888937 ], [ 169.453125, 59.888937 ], [ 169.453125, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 59.888937 ], [ 163.828125, 59.888937 ], [ 163.828125, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.813742 ], [ 162.421875, 58.813742 ], [ 162.421875, 58.077876 ], [ 161.718750, 58.077876 ], [ 161.718750, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.421875, 56.170023 ], [ 162.421875, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.421875, 54.977614 ], [ 162.421875, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.162434 ], [ 160.312500, 54.162434 ], [ 160.312500, 53.330873 ], [ 159.609375, 53.330873 ], [ 159.609375, 52.908902 ], [ 158.203125, 52.908902 ], [ 158.203125, 51.618017 ], [ 157.500000, 51.618017 ], [ 157.500000, 51.179343 ], [ 156.093750, 51.179343 ], [ 156.093750, 54.162434 ], [ 155.390625, 54.162434 ], [ 155.390625, 56.170023 ], [ 156.093750, 56.170023 ], [ 156.093750, 56.944974 ], [ 156.796875, 56.944974 ], [ 156.796875, 57.704147 ], [ 158.203125, 57.704147 ], [ 158.203125, 58.077876 ], [ 158.906250, 58.077876 ], [ 158.906250, 58.447733 ], [ 159.609375, 58.447733 ], [ 159.609375, 58.813742 ], [ 160.312500, 58.813742 ], [ 160.312500, 59.175928 ], [ 161.015625, 59.175928 ], [ 161.015625, 59.888937 ], [ 161.718750, 59.888937 ], [ 161.718750, 60.239811 ], [ 162.421875, 60.239811 ], [ 162.421875, 60.586967 ], [ 163.125000, 60.586967 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.938950 ], [ 164.531250, 61.938950 ], [ 164.531250, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 61.938950 ], [ 162.421875, 61.938950 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.586967 ], [ 160.312500, 60.586967 ], [ 160.312500, 61.270233 ], [ 159.609375, 61.270233 ], [ 159.609375, 61.606396 ], [ 158.203125, 61.606396 ], [ 158.203125, 61.270233 ], [ 156.796875, 61.270233 ], [ 156.796875, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 154.687500, 60.239811 ], [ 154.687500, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.534318 ], [ 149.765625, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 56.944974 ], [ 139.218750, 56.944974 ], [ 139.218750, 56.559482 ], [ 138.515625, 56.559482 ], [ 138.515625, 56.170023 ], [ 137.812500, 56.170023 ], [ 137.812500, 55.776573 ], [ 137.109375, 55.776573 ], [ 137.109375, 55.379110 ], [ 136.406250, 55.379110 ], [ 136.406250, 54.977614 ], [ 135.703125, 54.977614 ], [ 135.703125, 54.572062 ], [ 136.406250, 54.572062 ], [ 136.406250, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 52.908902 ], [ 141.328125, 52.908902 ], [ 141.328125, 52.482780 ], [ 142.031250, 52.482780 ], [ 142.031250, 53.330873 ], [ 142.734375, 53.330873 ], [ 143.437500, 53.330873 ], [ 143.437500, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.843750, 49.382373 ], [ 144.843750, 48.922499 ], [ 143.437500, 48.922499 ], [ 143.437500, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.437500, 47.517201 ], [ 143.437500, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.179343 ], [ 141.328125, 51.179343 ], [ 141.328125, 51.618017 ], [ 140.625000, 51.618017 ], [ 140.625000, 48.922499 ], [ 139.921875, 48.922499 ], [ 139.921875, 47.989922 ], [ 139.218750, 47.989922 ], [ 139.218750, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 45.583290 ], [ 137.812500, 45.583290 ], [ 137.812500, 45.089036 ], [ 137.109375, 45.089036 ], [ 137.109375, 44.590467 ], [ 136.406250, 44.590467 ], [ 136.406250, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 43.068888 ], [ 131.484375, 43.068888 ], [ 131.484375, 44.590467 ], [ 130.781250, 44.590467 ], [ 130.781250, 45.089036 ], [ 132.890625, 45.089036 ], [ 132.890625, 45.583290 ], [ 133.593750, 45.583290 ], [ 133.593750, 46.558860 ], [ 134.296875, 46.558860 ], [ 134.296875, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.922499 ], [ 129.375000, 48.922499 ], [ 129.375000, 49.382373 ], [ 127.968750, 49.382373 ], [ 127.968750, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 51.179343 ], [ 126.562500, 51.179343 ], [ 126.562500, 52.052490 ], [ 125.859375, 52.052490 ], [ 125.859375, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.482780 ], [ 120.937500, 52.482780 ], [ 120.937500, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 49.382373 ], [ 111.796875, 49.382373 ], [ 111.796875, 48.922499 ], [ 109.687500, 48.922499 ], [ 109.687500, 49.382373 ], [ 107.578125, 49.382373 ], [ 107.578125, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.289339 ], [ 101.953125, 50.289339 ], [ 101.953125, 51.179343 ], [ 100.546875, 51.179343 ], [ 100.546875, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.179343 ], [ 97.734375, 51.179343 ], [ 97.734375, 50.736455 ], [ 98.437500, 50.736455 ], [ 98.437500, 49.837982 ], [ 94.218750, 49.837982 ], [ 94.218750, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 49.382373 ], [ 86.484375, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.289339 ], [ 83.671875, 50.289339 ], [ 83.671875, 50.736455 ], [ 80.156250, 50.736455 ], [ 80.156250, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.640625, 53.748711 ], [ 76.640625, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.330873 ], [ 73.125000, 53.330873 ], [ 73.125000, 53.748711 ], [ 73.828125, 53.748711 ], [ 73.828125, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.977614 ], [ 69.609375, 54.977614 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 54.977614 ], [ 67.500000, 54.977614 ], [ 67.500000, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.330873 ], [ 61.875000, 53.330873 ], [ 61.875000, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.482780 ], [ 61.171875, 52.482780 ], [ 61.171875, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.179343 ], [ 61.875000, 51.179343 ], [ 61.875000, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.953125, 51.179343 ], [ 56.953125, 50.736455 ], [ 54.843750, 50.736455 ], [ 54.843750, 51.179343 ], [ 52.734375, 51.179343 ], [ 52.734375, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.382373 ], [ 46.406250, 49.382373 ], [ 46.406250, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 46.558860 ], [ 49.218750, 46.558860 ], [ 49.218750, 46.073231 ], [ 48.515625, 46.073231 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.406250, 44.590467 ], [ 46.406250, 44.087585 ], [ 47.109375, 44.087585 ], [ 47.109375, 43.580391 ], [ 47.812500, 43.580391 ], [ 47.812500, 42.553080 ], [ 48.515625, 42.553080 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 40.979898 ], [ 47.109375, 40.979898 ], [ 47.109375, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.553080 ], [ 42.187500, 42.553080 ], [ 42.187500, 43.068888 ], [ 40.781250, 43.068888 ], [ 40.781250, 43.580391 ], [ 38.671875, 43.580391 ], [ 38.671875, 44.087585 ], [ 37.265625, 44.087585 ], [ 37.265625, 44.590467 ], [ 36.562500, 44.590467 ], [ 36.562500, 45.089036 ], [ 37.265625, 45.089036 ], [ 37.265625, 45.583290 ], [ 37.968750, 45.583290 ], [ 37.968750, 46.558860 ], [ 39.375000, 46.558860 ], [ 39.375000, 47.040182 ], [ 37.968750, 47.040182 ], [ 37.968750, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.989922 ], [ 40.078125, 47.989922 ], [ 40.078125, 48.458352 ], [ 39.375000, 48.458352 ], [ 39.375000, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.382373 ], [ 38.671875, 49.382373 ], [ 38.671875, 49.837982 ], [ 37.265625, 49.837982 ], [ 37.265625, 50.289339 ], [ 35.156250, 50.289339 ], [ 35.156250, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 55.379110 ], [ 30.234375, 55.379110 ], [ 30.234375, 55.776573 ], [ 28.125000, 55.776573 ], [ 28.125000, 56.944974 ], [ 27.421875, 56.944974 ], [ 27.421875, 58.813742 ], [ 28.125000, 58.813742 ], [ 28.125000, 59.534318 ], [ 28.828125, 59.534318 ], [ 28.828125, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.586967 ], [ 28.828125, 60.586967 ], [ 28.828125, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.938950 ], [ 30.937500, 61.938950 ], [ 30.937500, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 64.472794 ], [ 29.531250, 64.472794 ], [ 29.531250, 65.366837 ], [ 30.234375, 65.366837 ], [ 30.234375, 66.231457 ], [ 29.531250, 66.231457 ], [ 29.531250, 66.791909 ], [ 28.828125, 66.791909 ], [ 28.828125, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.339861 ], [ 30.234375, 67.339861 ], [ 30.234375, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 67.875541 ], [ 28.828125, 67.875541 ], [ 28.828125, 68.138852 ], [ 28.125000, 68.138852 ], [ 28.125000, 68.656555 ], [ 28.828125, 68.656555 ], [ 28.828125, 69.162558 ], [ 30.234375, 69.162558 ], [ 30.234375, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.657086 ], [ 33.046875, 69.657086 ], [ 33.046875, 69.411242 ], [ 34.453125, 69.411242 ], [ 34.453125, 69.162558 ], [ 36.562500, 69.162558 ], [ 36.562500, 68.911005 ], [ 37.265625, 68.911005 ], [ 37.265625, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.138852 ], [ 39.375000, 68.138852 ], [ 39.375000, 67.875541 ], [ 40.078125, 67.875541 ], [ 40.078125, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 66.513260 ], [ 40.078125, 66.513260 ], [ 40.078125, 65.946472 ], [ 37.265625, 65.946472 ], [ 37.265625, 66.231457 ], [ 35.859375, 66.231457 ], [ 35.859375, 66.513260 ], [ 34.453125, 66.513260 ], [ 34.453125, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.513260 ], [ 33.046875, 66.513260 ], [ 33.046875, 66.231457 ], [ 34.453125, 66.231457 ], [ 34.453125, 65.946472 ], [ 35.156250, 65.946472 ], [ 35.156250, 64.168107 ], [ 36.562500, 64.168107 ], [ 36.562500, 63.860036 ], [ 37.265625, 63.860036 ], [ 37.265625, 64.472794 ], [ 36.562500, 64.472794 ], [ 36.562500, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.472794 ], [ 40.781250, 64.472794 ], [ 40.781250, 65.072130 ], [ 40.078125, 65.072130 ], [ 40.078125, 65.366837 ], [ 40.781250, 65.366837 ], [ 40.781250, 65.946472 ], [ 41.484375, 65.946472 ], [ 41.484375, 66.231457 ], [ 42.187500, 66.231457 ], [ 42.187500, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 65.946472 ], [ 44.296875, 65.946472 ], [ 44.296875, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 67.609221 ], [ 44.296875, 67.609221 ], [ 44.296875, 68.138852 ], [ 43.593750, 68.138852 ], [ 43.593750, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.875541 ], [ 47.109375, 67.875541 ], [ 47.109375, 67.609221 ], [ 45.703125, 67.609221 ], [ 45.703125, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 67.875541 ], [ 50.625000, 67.875541 ], [ 50.625000, 68.138852 ], [ 51.328125, 68.138852 ], [ 51.328125, 68.399180 ], [ 52.734375, 68.399180 ], [ 52.734375, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 54.140625, 68.399180 ], [ 53.437500, 68.399180 ], [ 53.437500, 68.138852 ], [ 55.546875, 68.138852 ], [ 55.546875, 68.399180 ], [ 58.359375, 68.399180 ], [ 58.359375, 68.656555 ], [ 59.765625, 68.656555 ], [ 59.765625, 68.399180 ], [ 60.468750, 68.399180 ], [ 60.468750, 68.656555 ], [ 61.171875, 68.656555 ], [ 61.171875, 68.911005 ], [ 60.468750, 68.911005 ], [ 60.468750, 69.162558 ], [ 59.765625, 69.162558 ], [ 59.765625, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 61.171875, 69.900118 ], [ 61.171875, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.411242 ], [ 63.984375, 69.411242 ], [ 63.984375, 69.162558 ], [ 64.687500, 69.162558 ], [ 64.687500, 68.911005 ], [ 65.390625, 68.911005 ], [ 65.390625, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.138852 ], [ 68.203125, 68.138852 ], [ 68.203125, 68.399180 ], [ 68.906250, 68.399180 ], [ 68.906250, 68.911005 ], [ 68.203125, 68.911005 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 69.657086 ], [ 67.500000, 69.657086 ], [ 67.500000, 70.140364 ], [ 66.796875, 70.140364 ], [ 66.796875, 71.300793 ], [ 67.500000, 71.300793 ], [ 67.500000, 71.746432 ], [ 68.203125, 71.746432 ], [ 68.203125, 72.395706 ], [ 68.906250, 72.395706 ], [ 68.906250, 72.816074 ], [ 69.609375, 72.816074 ], [ 69.609375, 73.022592 ], [ 70.312500, 73.022592 ], [ 70.312500, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.395706 ], [ 73.125000, 72.395706 ], [ 73.125000, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.074056 ], [ 72.421875, 71.074056 ], [ 72.421875, 70.612614 ], [ 73.125000, 70.612614 ], [ 73.125000, 69.657086 ], [ 72.421875, 69.657086 ], [ 72.421875, 68.656555 ], [ 73.125000, 68.656555 ], [ 73.125000, 68.399180 ], [ 73.828125, 68.399180 ], [ 73.828125, 67.875541 ], [ 73.125000, 67.875541 ], [ 73.125000, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.231457 ], [ 73.125000, 66.231457 ], [ 73.125000, 66.513260 ], [ 73.828125, 66.513260 ], [ 73.828125, 67.067433 ], [ 74.531250, 67.067433 ], [ 74.531250, 67.609221 ], [ 75.234375, 67.609221 ], [ 75.234375, 68.138852 ], [ 74.531250, 68.138852 ], [ 74.531250, 68.656555 ], [ 75.234375, 68.656555 ], [ 75.234375, 68.911005 ], [ 73.828125, 68.911005 ], [ 73.828125, 70.140364 ], [ 74.531250, 70.140364 ], [ 74.531250, 70.844673 ], [ 73.828125, 70.844673 ], [ 73.828125, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.524909 ], [ 73.828125, 71.524909 ], [ 73.828125, 71.746432 ], [ 74.531250, 71.746432 ], [ 74.531250, 71.965388 ], [ 75.234375, 71.965388 ], [ 75.234375, 72.395706 ], [ 74.531250, 72.395706 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.234375, 72.607120 ], [ 75.937500, 72.607120 ], [ 75.937500, 71.965388 ], [ 77.343750, 71.965388 ], [ 77.343750, 72.181804 ], [ 78.750000, 72.181804 ], [ 78.750000, 72.395706 ], [ 79.453125, 72.395706 ], [ 79.453125, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 73.627789 ], [ 82.265625, 73.627789 ], [ 82.265625, 73.824820 ], [ 85.781250, 73.824820 ], [ 85.781250, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.211983 ], [ 85.781250, 74.211983 ], [ 85.781250, 74.590108 ], [ 86.484375, 74.590108 ], [ 86.484375, 74.959392 ], [ 87.187500, 74.959392 ], [ 87.187500, 75.140778 ], [ 89.296875, 75.140778 ], [ 89.296875, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.672197 ], [ 92.109375, 75.672197 ], [ 92.109375, 75.845169 ], [ 93.515625, 75.845169 ], [ 93.515625, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.845169 ], [ 97.031250, 75.845169 ], [ 97.031250, 76.016094 ], [ 97.734375, 76.016094 ], [ 97.734375, 76.184995 ], [ 98.437500, 76.184995 ], [ 98.437500, 76.351896 ], [ 100.546875, 76.351896 ], [ 100.546875, 76.516819 ], [ 101.250000, 76.516819 ], [ 101.250000, 76.999935 ], [ 101.953125, 76.999935 ], [ 101.953125, 77.312520 ], [ 102.656250, 77.312520 ], [ 102.656250, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.312520 ], [ 106.171875, 77.312520 ], [ 106.171875, 77.157163 ], [ 105.468750, 77.157163 ], [ 105.468750, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.679785 ], [ 107.578125, 76.679785 ], [ 107.578125, 76.516819 ], [ 108.281250, 76.516819 ], [ 108.281250, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.775843 ], [ 111.796875, 74.775843 ], [ 111.796875, 74.590108 ], [ 111.093750, 74.590108 ], [ 111.093750, 74.402163 ], [ 110.390625, 74.402163 ], [ 110.390625, 74.211983 ], [ 109.687500, 74.211983 ], [ 109.687500, 74.019543 ], [ 110.390625, 74.019543 ], [ 110.390625, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.627789 ], [ 115.312500, 73.824820 ], [ 116.718750, 73.824820 ], [ 116.718750, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.750000, 73.824820 ], [ 123.750000, 73.627789 ], [ 127.265625, 73.627789 ], [ 127.265625, 73.428424 ], [ 127.968750, 73.428424 ], [ 127.968750, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.607120 ], [ 129.375000, 72.607120 ], [ 129.375000, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 71.074056 ], [ 130.781250, 71.074056 ], [ 130.781250, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.300793 ], [ 132.187500, 71.300793 ], [ 132.187500, 71.524909 ], [ 132.890625, 71.524909 ], [ 132.890625, 71.300793 ], [ 134.296875, 71.300793 ], [ 134.296875, 71.524909 ], [ 137.109375, 71.524909 ], [ 137.109375, 71.300793 ], [ 138.515625, 71.300793 ], [ 138.515625, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.965388 ], [ 139.218750, 71.965388 ], [ 139.218750, 72.395706 ], [ 139.921875, 72.395706 ], [ 139.921875, 72.607120 ], [ 140.625000, 72.607120 ], [ 140.625000, 72.816074 ], [ 142.031250, 72.816074 ], [ 142.031250, 72.607120 ], [ 144.843750, 72.607120 ], [ 144.843750, 72.395706 ], [ 147.656250, 72.395706 ], [ 147.656250, 72.181804 ], [ 149.765625, 72.181804 ], [ 149.765625, 71.746432 ], [ 150.468750, 71.746432 ], [ 150.468750, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.074056 ], [ 152.578125, 71.074056 ], [ 152.578125, 70.844673 ], [ 155.390625, 70.844673 ], [ 155.390625, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 69.411242 ], [ 162.421875, 69.411242 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.411242 ], [ 167.343750, 69.411242 ], [ 167.343750, 69.657086 ], [ 168.046875, 69.657086 ], [ 168.046875, 69.411242 ], [ 168.750000, 69.411242 ], [ 168.750000, 68.911005 ], [ 169.453125, 68.911005 ], [ 169.453125, 68.656555 ], [ 170.859375, 68.656555 ], [ 170.859375, 69.162558 ], [ 170.156250, 69.162558 ], [ 170.156250, 70.140364 ], [ 171.562500, 70.140364 ], [ 171.562500, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 68.656555 ], [ 180.703125, 68.656555 ], [ 180.703125, 68.399180 ], [ 181.406250, 68.399180 ], [ 181.406250, 68.138852 ], [ 182.109375, 68.138852 ], [ 182.109375, 67.875541 ], [ 183.515625, 67.875541 ], [ 183.515625, 65.366837 ], [ 181.406250, 65.366837 ], [ 181.406250, 65.946472 ], [ 180.000000, 65.946472 ] ], [ [ 75.937500, 71.746432 ], [ 75.234375, 71.746432 ], [ 75.234375, 71.074056 ], [ 76.640625, 71.074056 ], [ 76.640625, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.746432 ] ] ], [ [ [ 68.203125, 76.999935 ], [ 68.203125, 76.679785 ], [ 68.906250, 76.679785 ], [ 68.906250, 76.351896 ], [ 68.203125, 76.351896 ], [ 68.203125, 76.016094 ], [ 66.796875, 76.016094 ], [ 66.796875, 75.845169 ], [ 65.390625, 75.845169 ], [ 65.390625, 75.672197 ], [ 64.687500, 75.672197 ], [ 64.687500, 75.497157 ], [ 63.281250, 75.497157 ], [ 63.281250, 75.320025 ], [ 61.875000, 75.320025 ], [ 61.875000, 75.140778 ], [ 61.171875, 75.140778 ], [ 61.171875, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.402163 ], [ 58.359375, 74.402163 ], [ 58.359375, 74.019543 ], [ 57.656250, 74.019543 ], [ 57.656250, 73.627789 ], [ 56.953125, 73.627789 ], [ 56.953125, 73.022592 ], [ 56.250000, 73.022592 ], [ 56.250000, 72.607120 ], [ 55.546875, 72.607120 ], [ 55.546875, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.074056 ], [ 56.953125, 71.074056 ], [ 56.953125, 70.612614 ], [ 54.843750, 70.612614 ], [ 54.843750, 70.844673 ], [ 53.437500, 70.844673 ], [ 53.437500, 71.300793 ], [ 52.031250, 71.300793 ], [ 52.031250, 71.524909 ], [ 51.328125, 71.524909 ], [ 51.328125, 71.965388 ], [ 52.734375, 71.965388 ], [ 52.734375, 73.022592 ], [ 53.437500, 73.022592 ], [ 53.437500, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.627789 ], [ 53.437500, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.019543 ], [ 54.843750, 74.019543 ], [ 54.843750, 74.211983 ], [ 55.546875, 74.211983 ], [ 55.546875, 74.402163 ], [ 56.250000, 74.402163 ], [ 56.250000, 74.775843 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.320025 ], [ 56.953125, 75.320025 ], [ 56.953125, 75.497157 ], [ 57.656250, 75.497157 ], [ 57.656250, 75.672197 ], [ 58.359375, 75.672197 ], [ 58.359375, 75.845169 ], [ 59.765625, 75.845169 ], [ 59.765625, 76.016094 ], [ 61.171875, 76.016094 ], [ 61.171875, 76.184995 ], [ 62.578125, 76.184995 ], [ 62.578125, 76.351896 ], [ 63.984375, 76.351896 ], [ 63.984375, 76.516819 ], [ 65.390625, 76.516819 ], [ 65.390625, 76.679785 ], [ 66.093750, 76.679785 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.999935 ], [ 68.203125, 76.999935 ] ] ], [ [ [ 96.328125, 81.093214 ], [ 96.328125, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.297927 ], [ 99.140625, 80.297927 ], [ 99.140625, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 78.903929 ], [ 99.140625, 78.903929 ], [ 99.140625, 78.767792 ], [ 96.328125, 78.767792 ], [ 96.328125, 78.903929 ], [ 94.921875, 78.903929 ], [ 94.921875, 79.038437 ], [ 94.218750, 79.038437 ], [ 94.218750, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.812302 ], [ 92.812500, 79.812302 ], [ 92.812500, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.415707 ], [ 92.109375, 80.415707 ], [ 92.109375, 80.647035 ], [ 92.812500, 80.647035 ], [ 92.812500, 80.872827 ], [ 93.515625, 80.872827 ], [ 93.515625, 80.983688 ], [ 94.218750, 80.983688 ], [ 94.218750, 81.093214 ], [ 96.328125, 81.093214 ] ] ], [ [ [ 139.218750, 76.184995 ], [ 139.218750, 76.016094 ], [ 141.328125, 76.016094 ], [ 141.328125, 75.845169 ], [ 142.734375, 75.845169 ], [ 142.734375, 75.672197 ], [ 144.140625, 75.672197 ], [ 144.140625, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 75.140778 ], [ 144.140625, 75.140778 ], [ 144.140625, 74.775843 ], [ 140.625000, 74.775843 ], [ 140.625000, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.672197 ], [ 137.812500, 75.672197 ], [ 137.812500, 76.016094 ], [ 138.515625, 76.016094 ], [ 138.515625, 76.184995 ], [ 139.218750, 76.184995 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.468750, 78.767792 ], [ 105.468750, 78.490552 ], [ 104.765625, 78.490552 ], [ 104.765625, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.206563 ], [ 102.656250, 78.206563 ], [ 102.656250, 78.061989 ], [ 100.546875, 78.061989 ], [ 100.546875, 77.915669 ], [ 99.140625, 77.915669 ], [ 99.140625, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 78.490552 ], [ 100.546875, 78.490552 ], [ 100.546875, 78.903929 ], [ 101.250000, 78.903929 ], [ 101.250000, 79.171335 ], [ 101.953125, 79.171335 ], [ 101.953125, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 50.625000, 80.760615 ], [ 50.625000, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.415707 ], [ 49.921875, 80.415707 ], [ 49.921875, 80.297927 ], [ 49.218750, 80.297927 ], [ 49.218750, 80.178713 ], [ 48.515625, 80.178713 ], [ 48.515625, 80.058050 ], [ 47.109375, 80.058050 ], [ 47.109375, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.415707 ], [ 47.109375, 80.415707 ], [ 47.109375, 80.532071 ], [ 45.703125, 80.532071 ], [ 45.703125, 80.647035 ], [ 46.406250, 80.647035 ], [ 46.406250, 80.760615 ], [ 48.515625, 80.760615 ], [ 48.515625, 80.647035 ], [ 49.218750, 80.647035 ], [ 49.218750, 80.760615 ], [ 50.625000, 80.760615 ] ] ], [ [ [ 146.953125, 75.497157 ], [ 146.953125, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 146.953125, 74.775843 ], [ 146.953125, 74.959392 ], [ 146.250000, 74.959392 ], [ 146.250000, 75.497157 ], [ 146.953125, 75.497157 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 139.921875, 73.226700 ], [ 139.921875, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 180.703125, 71.524909 ], [ 180.703125, 71.300793 ], [ 182.109375, 71.300793 ], [ 182.109375, 70.844673 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 179.296875, 71.074056 ], [ 179.296875, 71.300793 ], [ 180.000000, 71.300793 ], [ 180.000000, 71.524909 ], [ 180.703125, 71.524909 ] ] ], [ [ [ 22.500000, 54.977614 ], [ 22.500000, 54.162434 ], [ 19.687500, 54.162434 ], [ 19.687500, 54.977614 ], [ 22.500000, 54.977614 ] ] ], [ [ [ 142.734375, 53.748711 ], [ 142.031250, 53.748711 ], [ 142.031250, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.748711 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 11.178402 ], [ -0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.000000, 7.710992 ], [ 0.000000, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 5.615986 ], [ -1.406250, 5.615986 ], [ -1.406250, 4.915833 ], [ -3.515625, 4.915833 ], [ -3.515625, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 9.102097 ], [ -3.515625, 9.102097 ], [ -3.515625, 11.178402 ], [ -0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.074056 ], [ 28.125000, 70.844673 ], [ 29.531250, 70.844673 ], [ 29.531250, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.377854 ], [ 31.640625, 70.377854 ], [ 31.640625, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 69.900118 ], [ 30.937500, 69.900118 ], [ 30.937500, 69.411242 ], [ 30.234375, 69.411242 ], [ 30.234375, 69.162558 ], [ 28.828125, 69.162558 ], [ 28.828125, 69.657086 ], [ 28.125000, 69.657086 ], [ 28.125000, 69.900118 ], [ 26.015625, 69.900118 ], [ 26.015625, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.656555 ], [ 23.906250, 68.656555 ], [ 23.906250, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.399180 ], [ 17.578125, 68.399180 ], [ 17.578125, 68.138852 ], [ 16.875000, 68.138852 ], [ 16.875000, 67.609221 ], [ 16.171875, 67.609221 ], [ 16.171875, 67.067433 ], [ 15.468750, 67.067433 ], [ 15.468750, 66.513260 ], [ 14.765625, 66.513260 ], [ 14.765625, 65.658275 ], [ 14.062500, 65.658275 ], [ 14.062500, 65.072130 ], [ 13.359375, 65.072130 ], [ 13.359375, 64.472794 ], [ 14.062500, 64.472794 ], [ 14.062500, 64.168107 ], [ 12.656250, 64.168107 ], [ 12.656250, 63.548552 ], [ 11.953125, 63.548552 ], [ 11.953125, 61.606396 ], [ 12.656250, 61.606396 ], [ 12.656250, 60.586967 ], [ 11.953125, 60.586967 ], [ 11.953125, 59.888937 ], [ 11.250000, 59.888937 ], [ 11.250000, 59.175928 ], [ 9.843750, 59.175928 ], [ 9.843750, 58.813742 ], [ 9.140625, 58.813742 ], [ 9.140625, 58.447733 ], [ 8.437500, 58.447733 ], [ 8.437500, 58.077876 ], [ 5.625000, 58.077876 ], [ 5.625000, 60.586967 ], [ 4.921875, 60.586967 ], [ 4.921875, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.593341 ], [ 6.328125, 62.593341 ], [ 6.328125, 62.915233 ], [ 7.734375, 62.915233 ], [ 7.734375, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.548552 ], [ 9.140625, 63.548552 ], [ 9.140625, 63.860036 ], [ 9.843750, 63.860036 ], [ 9.843750, 64.168107 ], [ 10.546875, 64.168107 ], [ 10.546875, 64.472794 ], [ 11.250000, 64.472794 ], [ 11.250000, 65.072130 ], [ 11.953125, 65.072130 ], [ 11.953125, 65.658275 ], [ 12.656250, 65.658275 ], [ 12.656250, 66.231457 ], [ 13.359375, 66.231457 ], [ 13.359375, 66.791909 ], [ 14.062500, 66.791909 ], [ 14.062500, 67.339861 ], [ 14.765625, 67.339861 ], [ 14.765625, 67.875541 ], [ 15.468750, 67.875541 ], [ 15.468750, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.656555 ], [ 16.875000, 68.656555 ], [ 16.875000, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.657086 ], [ 18.984375, 69.657086 ], [ 18.984375, 69.900118 ], [ 20.390625, 69.900118 ], [ 20.390625, 70.140364 ], [ 23.203125, 70.140364 ], [ 23.203125, 70.377854 ], [ 23.906250, 70.377854 ], [ 23.906250, 70.844673 ], [ 24.609375, 70.844673 ], [ 24.609375, 71.074056 ], [ 28.125000, 71.074056 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.935918 ], [ 17.578125, 79.935918 ], [ 17.578125, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.302640 ], [ 20.390625, 79.302640 ], [ 20.390625, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.903929 ], [ 21.796875, 78.903929 ], [ 21.796875, 78.767792 ], [ 20.390625, 78.767792 ], [ 20.390625, 78.630006 ], [ 18.984375, 78.630006 ], [ 18.984375, 78.206563 ], [ 18.281250, 78.206563 ], [ 18.281250, 77.617709 ], [ 17.578125, 77.617709 ], [ 17.578125, 77.157163 ], [ 16.875000, 77.157163 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.466028 ], [ 14.765625, 77.466028 ], [ 14.765625, 77.767582 ], [ 14.062500, 77.767582 ], [ 14.062500, 77.915669 ], [ 13.359375, 77.915669 ], [ 13.359375, 78.206563 ], [ 12.656250, 78.206563 ], [ 12.656250, 78.490552 ], [ 11.953125, 78.490552 ], [ 11.953125, 78.767792 ], [ 11.250000, 78.767792 ], [ 11.250000, 79.302640 ], [ 10.546875, 79.302640 ], [ 10.546875, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.812302 ], [ 12.656250, 79.812302 ], [ 12.656250, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.812302 ], [ 14.062500, 79.812302 ], [ 14.062500, 79.687184 ], [ 15.468750, 79.687184 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 24.609375, 80.532071 ], [ 24.609375, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 79.935918 ], [ 26.718750, 79.935918 ], [ 26.718750, 79.687184 ], [ 26.015625, 79.687184 ], [ 26.015625, 79.560546 ], [ 25.312500, 79.560546 ], [ 25.312500, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.560546 ], [ 20.390625, 79.560546 ], [ 20.390625, 79.687184 ], [ 19.687500, 79.687184 ], [ 19.687500, 79.812302 ], [ 18.281250, 79.812302 ], [ 18.281250, 80.058050 ], [ 17.578125, 80.058050 ], [ 17.578125, 80.297927 ], [ 18.281250, 80.297927 ], [ 18.281250, 80.415707 ], [ 19.687500, 80.415707 ], [ 19.687500, 80.532071 ], [ 21.093750, 80.532071 ], [ 21.093750, 80.415707 ], [ 22.500000, 80.415707 ], [ 22.500000, 80.532071 ], [ 24.609375, 80.532071 ] ] ], [ [ [ 23.203125, 78.349411 ], [ 23.203125, 77.915669 ], [ 24.609375, 77.915669 ], [ 24.609375, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 77.617709 ], [ 20.390625, 77.617709 ], [ 20.390625, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 78.206563 ], [ 21.796875, 78.206563 ], [ 21.796875, 78.349411 ], [ 23.203125, 78.349411 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.156250, 72.181804 ], [ 80.156250, 73.824820 ], [ 81.562500, 73.824820 ], [ 81.562500, 74.019543 ], [ 82.265625, 74.019543 ], [ 82.265625, 73.824820 ], [ 85.781250, 73.824820 ], [ 85.781250, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.211983 ], [ 85.781250, 74.211983 ], [ 85.781250, 74.775843 ], [ 86.484375, 74.775843 ], [ 86.484375, 75.140778 ], [ 87.890625, 75.140778 ], [ 87.890625, 75.320025 ], [ 88.593750, 75.320025 ], [ 88.593750, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.672197 ], [ 92.109375, 75.672197 ], [ 92.109375, 75.845169 ], [ 92.812500, 75.845169 ], [ 92.812500, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.016094 ], [ 97.031250, 76.016094 ], [ 97.031250, 76.184995 ], [ 97.734375, 76.184995 ], [ 97.734375, 76.351896 ], [ 98.437500, 76.351896 ], [ 98.437500, 76.516819 ], [ 100.546875, 76.516819 ], [ 100.546875, 76.999935 ], [ 101.250000, 76.999935 ], [ 101.250000, 77.157163 ], [ 101.953125, 77.157163 ], [ 101.953125, 77.312520 ], [ 102.656250, 77.312520 ], [ 102.656250, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.312520 ], [ 104.765625, 77.312520 ], [ 104.765625, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.679785 ], [ 107.578125, 76.679785 ], [ 107.578125, 76.840816 ], [ 110.390625, 76.840816 ], [ 110.390625, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.516819 ], [ 112.500000, 76.516819 ], [ 112.500000, 76.351896 ], [ 113.203125, 76.351896 ], [ 113.203125, 76.184995 ], [ 113.906250, 76.184995 ], [ 113.906250, 75.672197 ], [ 113.203125, 75.672197 ], [ 113.203125, 75.320025 ], [ 112.500000, 75.320025 ], [ 112.500000, 74.959392 ], [ 111.796875, 74.959392 ], [ 111.796875, 74.775843 ], [ 110.390625, 74.775843 ], [ 110.390625, 74.590108 ], [ 109.687500, 74.590108 ], [ 109.687500, 74.402163 ], [ 108.984375, 74.402163 ], [ 108.984375, 74.211983 ], [ 110.390625, 74.211983 ], [ 110.390625, 74.019543 ], [ 111.093750, 74.019543 ], [ 111.093750, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.627789 ], [ 113.203125, 73.627789 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 115.312500, 73.627789 ], [ 115.312500, 73.824820 ], [ 116.015625, 73.824820 ], [ 116.015625, 73.627789 ], [ 118.125000, 73.627789 ], [ 118.125000, 73.428424 ], [ 118.828125, 73.428424 ], [ 118.828125, 73.226700 ], [ 120.234375, 73.226700 ], [ 120.234375, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.750000, 73.824820 ], [ 123.750000, 73.627789 ], [ 126.562500, 73.627789 ], [ 126.562500, 73.428424 ], [ 127.265625, 73.428424 ], [ 127.265625, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 72.816074 ], [ 128.671875, 72.816074 ], [ 128.671875, 72.395706 ], [ 127.968750, 72.395706 ], [ 127.968750, 71.965388 ], [ 128.671875, 71.965388 ], [ 128.671875, 71.524909 ], [ 129.375000, 71.524909 ], [ 129.375000, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 70.844673 ], [ 130.781250, 70.844673 ], [ 130.781250, 71.074056 ], [ 131.484375, 71.074056 ], [ 131.484375, 71.524909 ], [ 132.187500, 71.524909 ], [ 132.187500, 71.746432 ], [ 132.890625, 71.746432 ], [ 132.890625, 71.524909 ], [ 135.000000, 71.524909 ], [ 135.000000, 71.746432 ], [ 135.703125, 71.746432 ], [ 135.703125, 71.524909 ], [ 139.218750, 71.524909 ], [ 139.218750, 71.965388 ], [ 138.515625, 71.965388 ], [ 138.515625, 72.607120 ], [ 139.218750, 72.607120 ], [ 139.218750, 72.816074 ], [ 139.921875, 72.816074 ], [ 139.921875, 73.022592 ], [ 141.328125, 73.022592 ], [ 141.328125, 72.816074 ], [ 144.140625, 72.816074 ], [ 144.140625, 72.607120 ], [ 146.953125, 72.607120 ], [ 146.953125, 72.395706 ], [ 149.062500, 72.395706 ], [ 149.062500, 71.965388 ], [ 149.765625, 71.965388 ], [ 149.765625, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.074056 ], [ 151.875000, 71.074056 ], [ 151.875000, 70.844673 ], [ 155.390625, 70.844673 ], [ 155.390625, 71.074056 ], [ 158.906250, 71.074056 ], [ 158.906250, 70.844673 ], [ 159.609375, 70.844673 ], [ 159.609375, 69.657086 ], [ 163.125000, 69.657086 ], [ 163.125000, 69.900118 ], [ 164.531250, 69.900118 ], [ 164.531250, 69.657086 ], [ 167.343750, 69.657086 ], [ 167.343750, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 68.911005 ], [ 170.156250, 68.911005 ], [ 170.156250, 69.411242 ], [ 169.453125, 69.411242 ], [ 169.453125, 69.900118 ], [ 170.156250, 69.900118 ], [ 170.156250, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.162558 ], [ 180.000000, 69.162558 ], [ 180.000000, 68.911005 ], [ 180.703125, 68.911005 ], [ 180.703125, 68.656555 ], [ 181.406250, 68.656555 ], [ 181.406250, 68.399180 ], [ 182.109375, 68.399180 ], [ 182.109375, 68.138852 ], [ 182.812500, 68.138852 ], [ 182.812500, 67.875541 ], [ 183.515625, 67.875541 ], [ 183.515625, 65.658275 ], [ 180.703125, 65.658275 ], [ 180.703125, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.072130 ], [ 179.296875, 65.072130 ], [ 179.296875, 64.774125 ], [ 177.187500, 64.774125 ], [ 177.187500, 64.472794 ], [ 177.890625, 64.472794 ], [ 177.890625, 63.860036 ], [ 178.593750, 63.860036 ], [ 178.593750, 63.233627 ], [ 179.296875, 63.233627 ], [ 179.296875, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.267923 ], [ 175.781250, 62.267923 ], [ 175.781250, 61.938950 ], [ 173.671875, 61.938950 ], [ 173.671875, 61.606396 ], [ 172.265625, 61.606396 ], [ 172.265625, 61.270233 ], [ 171.562500, 61.270233 ], [ 171.562500, 60.930432 ], [ 170.859375, 60.930432 ], [ 170.859375, 60.586967 ], [ 170.156250, 60.586967 ], [ 170.156250, 59.888937 ], [ 169.453125, 59.888937 ], [ 169.453125, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 59.888937 ], [ 163.125000, 59.888937 ], [ 163.125000, 59.175928 ], [ 162.421875, 59.175928 ], [ 162.421875, 58.447733 ], [ 161.718750, 58.447733 ], [ 161.718750, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.944974 ], [ 162.421875, 56.944974 ], [ 162.421875, 56.170023 ], [ 161.718750, 56.170023 ], [ 161.718750, 55.776573 ], [ 161.015625, 55.776573 ], [ 161.015625, 54.977614 ], [ 161.718750, 54.977614 ], [ 161.718750, 54.572062 ], [ 160.312500, 54.572062 ], [ 160.312500, 53.748711 ], [ 159.609375, 53.748711 ], [ 159.609375, 53.330873 ], [ 158.203125, 53.330873 ], [ 158.203125, 51.618017 ], [ 156.796875, 51.618017 ], [ 156.796875, 51.179343 ], [ 156.093750, 51.179343 ], [ 156.093750, 52.482780 ], [ 155.390625, 52.482780 ], [ 155.390625, 57.326521 ], [ 156.093750, 57.326521 ], [ 156.093750, 57.704147 ], [ 156.796875, 57.704147 ], [ 156.796875, 58.077876 ], [ 158.203125, 58.077876 ], [ 158.203125, 58.447733 ], [ 158.906250, 58.447733 ], [ 158.906250, 59.175928 ], [ 159.609375, 59.175928 ], [ 159.609375, 59.534318 ], [ 160.312500, 59.534318 ], [ 160.312500, 59.888937 ], [ 161.015625, 59.888937 ], [ 161.015625, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.586967 ], [ 162.421875, 60.586967 ], [ 162.421875, 60.930432 ], [ 163.125000, 60.930432 ], [ 163.125000, 61.938950 ], [ 163.828125, 61.938950 ], [ 163.828125, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 62.267923 ], [ 162.421875, 62.267923 ], [ 162.421875, 61.606396 ], [ 161.718750, 61.606396 ], [ 161.718750, 61.270233 ], [ 161.015625, 61.270233 ], [ 161.015625, 60.930432 ], [ 160.312500, 60.930432 ], [ 160.312500, 60.586967 ], [ 159.609375, 60.586967 ], [ 159.609375, 61.270233 ], [ 158.906250, 61.270233 ], [ 158.906250, 61.938950 ], [ 158.203125, 61.938950 ], [ 158.203125, 61.606396 ], [ 156.093750, 61.606396 ], [ 156.093750, 61.270233 ], [ 155.390625, 61.270233 ], [ 155.390625, 60.586967 ], [ 154.687500, 60.586967 ], [ 154.687500, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 59.175928 ], [ 152.578125, 59.175928 ], [ 152.578125, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.062500, 59.534318 ], [ 149.062500, 59.175928 ], [ 146.250000, 59.175928 ], [ 146.250000, 59.534318 ], [ 144.140625, 59.534318 ], [ 144.140625, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.447733 ], [ 140.625000, 58.447733 ], [ 140.625000, 58.077876 ], [ 139.921875, 58.077876 ], [ 139.921875, 57.704147 ], [ 139.218750, 57.704147 ], [ 139.218750, 57.326521 ], [ 138.515625, 57.326521 ], [ 138.515625, 56.944974 ], [ 137.812500, 56.944974 ], [ 137.812500, 56.559482 ], [ 137.109375, 56.559482 ], [ 137.109375, 56.170023 ], [ 136.406250, 56.170023 ], [ 136.406250, 55.379110 ], [ 135.703125, 55.379110 ], [ 135.703125, 54.977614 ], [ 136.406250, 54.977614 ], [ 136.406250, 54.572062 ], [ 137.109375, 54.572062 ], [ 137.109375, 54.162434 ], [ 138.515625, 54.162434 ], [ 138.515625, 54.572062 ], [ 139.218750, 54.572062 ], [ 139.218750, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 53.330873 ], [ 141.328125, 53.330873 ], [ 141.328125, 53.748711 ], [ 142.031250, 53.748711 ], [ 142.031250, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 51.618017 ], [ 143.437500, 51.618017 ], [ 143.437500, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 142.734375, 49.382373 ], [ 142.734375, 48.458352 ], [ 142.031250, 48.458352 ], [ 142.031250, 47.517201 ], [ 142.734375, 47.517201 ], [ 142.734375, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.558860 ], [ 141.328125, 46.558860 ], [ 141.328125, 49.382373 ], [ 142.031250, 49.382373 ], [ 142.031250, 51.618017 ], [ 141.328125, 51.618017 ], [ 141.328125, 52.052490 ], [ 140.625000, 52.052490 ], [ 140.625000, 51.618017 ], [ 139.921875, 51.618017 ], [ 139.921875, 47.989922 ], [ 139.218750, 47.989922 ], [ 139.218750, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.558860 ], [ 137.812500, 46.558860 ], [ 137.812500, 46.073231 ], [ 137.109375, 46.073231 ], [ 137.109375, 45.583290 ], [ 136.406250, 45.583290 ], [ 136.406250, 45.089036 ], [ 135.703125, 45.089036 ], [ 135.703125, 44.087585 ], [ 135.000000, 44.087585 ], [ 135.000000, 43.580391 ], [ 134.296875, 43.580391 ], [ 134.296875, 43.068888 ], [ 131.484375, 43.068888 ], [ 131.484375, 42.553080 ], [ 130.078125, 42.553080 ], [ 130.078125, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 45.089036 ], [ 131.484375, 45.089036 ], [ 131.484375, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 46.073231 ], [ 133.593750, 46.073231 ], [ 133.593750, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 48.458352 ], [ 132.890625, 48.458352 ], [ 132.890625, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.078125, 48.458352 ], [ 130.078125, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.837982 ], [ 127.265625, 49.837982 ], [ 127.265625, 51.179343 ], [ 126.562500, 51.179343 ], [ 126.562500, 52.482780 ], [ 125.859375, 52.482780 ], [ 125.859375, 52.908902 ], [ 124.453125, 52.908902 ], [ 124.453125, 53.330873 ], [ 123.046875, 53.330873 ], [ 123.046875, 53.748711 ], [ 121.640625, 53.748711 ], [ 121.640625, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.052490 ], [ 119.531250, 52.052490 ], [ 119.531250, 51.179343 ], [ 118.828125, 51.179343 ], [ 118.828125, 49.837982 ], [ 114.609375, 49.837982 ], [ 114.609375, 50.289339 ], [ 113.906250, 50.289339 ], [ 113.906250, 49.837982 ], [ 112.500000, 49.837982 ], [ 112.500000, 49.382373 ], [ 107.578125, 49.382373 ], [ 107.578125, 49.837982 ], [ 106.875000, 49.837982 ], [ 106.875000, 50.289339 ], [ 101.953125, 50.289339 ], [ 101.953125, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 52.052490 ], [ 98.437500, 52.052490 ], [ 98.437500, 51.618017 ], [ 97.734375, 51.618017 ], [ 97.734375, 50.289339 ], [ 97.031250, 50.289339 ], [ 97.031250, 49.837982 ], [ 95.625000, 49.837982 ], [ 95.625000, 50.289339 ], [ 93.515625, 50.289339 ], [ 93.515625, 50.736455 ], [ 90.703125, 50.736455 ], [ 90.703125, 50.289339 ], [ 89.296875, 50.289339 ], [ 89.296875, 49.837982 ], [ 88.593750, 49.837982 ], [ 88.593750, 49.382373 ], [ 86.484375, 49.382373 ], [ 86.484375, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 51.618017 ], [ 78.750000, 51.618017 ], [ 78.750000, 52.482780 ], [ 78.046875, 52.482780 ], [ 78.046875, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.640625, 53.748711 ], [ 76.640625, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.572062 ], [ 70.312500, 54.572062 ], [ 70.312500, 55.379110 ], [ 68.203125, 55.379110 ], [ 68.203125, 54.977614 ], [ 65.390625, 54.977614 ], [ 65.390625, 54.572062 ], [ 63.281250, 54.572062 ], [ 63.281250, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.748711 ], [ 60.468750, 53.748711 ], [ 60.468750, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.179343 ], [ 59.765625, 51.179343 ], [ 59.765625, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 51.179343 ], [ 56.250000, 51.179343 ], [ 56.250000, 50.736455 ], [ 54.140625, 50.736455 ], [ 54.140625, 51.179343 ], [ 53.437500, 51.179343 ], [ 53.437500, 51.618017 ], [ 52.031250, 51.618017 ], [ 52.031250, 52.052490 ], [ 50.625000, 52.052490 ], [ 50.625000, 51.618017 ], [ 49.921875, 51.618017 ], [ 49.921875, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 50.289339 ], [ 47.109375, 50.289339 ], [ 47.109375, 49.837982 ], [ 46.406250, 49.837982 ], [ 46.406250, 47.989922 ], [ 47.812500, 47.989922 ], [ 47.812500, 47.517201 ], [ 48.515625, 47.517201 ], [ 48.515625, 46.073231 ], [ 47.109375, 46.073231 ], [ 47.109375, 45.583290 ], [ 46.406250, 45.583290 ], [ 46.406250, 44.590467 ], [ 47.109375, 44.590467 ], [ 47.109375, 42.553080 ], [ 47.812500, 42.553080 ], [ 47.812500, 42.032974 ], [ 48.515625, 42.032974 ], [ 48.515625, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.583290 ], [ 37.265625, 45.583290 ], [ 37.265625, 46.073231 ], [ 37.968750, 46.073231 ], [ 37.968750, 46.558860 ], [ 37.265625, 46.558860 ], [ 37.265625, 47.040182 ], [ 38.671875, 47.040182 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.517201 ], [ 37.968750, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.382373 ], [ 39.375000, 49.382373 ], [ 39.375000, 49.837982 ], [ 37.968750, 49.837982 ], [ 37.968750, 50.289339 ], [ 35.156250, 50.289339 ], [ 35.156250, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 51.618017 ], [ 33.750000, 51.618017 ], [ 33.750000, 52.482780 ], [ 30.937500, 52.482780 ], [ 30.937500, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 54.572062 ], [ 30.234375, 54.572062 ], [ 30.234375, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.379110 ], [ 30.234375, 55.379110 ], [ 30.234375, 55.776573 ], [ 28.828125, 55.776573 ], [ 28.828125, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.559482 ], [ 27.421875, 56.559482 ], [ 27.421875, 57.326521 ], [ 26.718750, 57.326521 ], [ 26.718750, 57.704147 ], [ 27.421875, 57.704147 ], [ 27.421875, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.888937 ], [ 28.828125, 59.888937 ], [ 28.828125, 60.239811 ], [ 27.421875, 60.239811 ], [ 27.421875, 60.586967 ], [ 28.125000, 60.586967 ], [ 28.125000, 61.270233 ], [ 28.828125, 61.270233 ], [ 28.828125, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.915233 ], [ 30.234375, 62.915233 ], [ 30.234375, 63.548552 ], [ 29.531250, 63.548552 ], [ 29.531250, 64.168107 ], [ 30.234375, 64.168107 ], [ 30.234375, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 66.513260 ], [ 28.828125, 66.513260 ], [ 28.828125, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.875541 ], [ 28.828125, 67.875541 ], [ 28.828125, 68.138852 ], [ 28.125000, 68.138852 ], [ 28.125000, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.900118 ], [ 32.343750, 69.900118 ], [ 32.343750, 69.657086 ], [ 33.046875, 69.657086 ], [ 33.046875, 69.411242 ], [ 34.453125, 69.411242 ], [ 34.453125, 69.162558 ], [ 35.859375, 69.162558 ], [ 35.859375, 68.911005 ], [ 37.265625, 68.911005 ], [ 37.265625, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.399180 ], [ 39.375000, 68.399180 ], [ 39.375000, 68.138852 ], [ 40.078125, 68.138852 ], [ 40.078125, 67.875541 ], [ 40.781250, 67.875541 ], [ 40.781250, 66.513260 ], [ 39.375000, 66.513260 ], [ 39.375000, 66.231457 ], [ 36.562500, 66.231457 ], [ 36.562500, 66.513260 ], [ 34.453125, 66.513260 ], [ 34.453125, 66.791909 ], [ 33.046875, 66.791909 ], [ 33.046875, 66.513260 ], [ 33.750000, 66.513260 ], [ 33.750000, 65.946472 ], [ 34.453125, 65.946472 ], [ 34.453125, 64.168107 ], [ 35.859375, 64.168107 ], [ 35.859375, 63.860036 ], [ 36.562500, 63.860036 ], [ 36.562500, 64.472794 ], [ 35.859375, 64.472794 ], [ 35.859375, 65.072130 ], [ 37.968750, 65.072130 ], [ 37.968750, 64.774125 ], [ 40.078125, 64.774125 ], [ 40.078125, 65.072130 ], [ 39.375000, 65.072130 ], [ 39.375000, 65.658275 ], [ 40.078125, 65.658275 ], [ 40.078125, 65.946472 ], [ 40.781250, 65.946472 ], [ 40.781250, 66.231457 ], [ 41.484375, 66.231457 ], [ 41.484375, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.513260 ], [ 44.296875, 66.513260 ], [ 44.296875, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 68.399180 ], [ 45.703125, 68.399180 ], [ 45.703125, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.609221 ], [ 45.000000, 67.609221 ], [ 45.000000, 66.791909 ], [ 47.109375, 66.791909 ], [ 47.109375, 67.067433 ], [ 47.812500, 67.067433 ], [ 47.812500, 67.609221 ], [ 48.515625, 67.609221 ], [ 48.515625, 67.875541 ], [ 49.921875, 67.875541 ], [ 49.921875, 68.138852 ], [ 50.625000, 68.138852 ], [ 50.625000, 68.399180 ], [ 52.031250, 68.399180 ], [ 52.031250, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.138852 ], [ 54.140625, 68.138852 ], [ 54.140625, 68.399180 ], [ 54.843750, 68.399180 ], [ 54.843750, 68.656555 ], [ 59.062500, 68.656555 ], [ 59.062500, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.656555 ], [ 60.468750, 68.656555 ], [ 60.468750, 69.411242 ], [ 59.765625, 69.411242 ], [ 59.765625, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 61.171875, 69.900118 ], [ 61.171875, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.411242 ], [ 64.687500, 69.411242 ], [ 64.687500, 69.162558 ], [ 65.390625, 69.162558 ], [ 65.390625, 68.911005 ], [ 66.093750, 68.911005 ], [ 66.093750, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.138852 ], [ 68.203125, 68.138852 ], [ 68.203125, 68.399180 ], [ 68.906250, 68.399180 ], [ 68.906250, 68.656555 ], [ 68.203125, 68.656555 ], [ 68.203125, 68.911005 ], [ 67.500000, 68.911005 ], [ 67.500000, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 70.377854 ], [ 66.093750, 70.377854 ], [ 66.093750, 71.074056 ], [ 66.796875, 71.074056 ], [ 66.796875, 71.524909 ], [ 67.500000, 71.524909 ], [ 67.500000, 71.746432 ], [ 68.203125, 71.746432 ], [ 68.203125, 72.395706 ], [ 68.906250, 72.395706 ], [ 68.906250, 73.022592 ], [ 71.015625, 73.022592 ], [ 71.015625, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 71.965388 ], [ 71.718750, 71.965388 ], [ 71.718750, 71.300793 ], [ 72.421875, 71.300793 ], [ 72.421875, 71.524909 ], [ 73.125000, 71.524909 ], [ 73.125000, 71.746432 ], [ 73.828125, 71.746432 ], [ 73.828125, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.607120 ], [ 75.234375, 72.607120 ], [ 75.234375, 71.965388 ], [ 75.937500, 71.965388 ], [ 75.937500, 72.181804 ], [ 77.343750, 72.181804 ], [ 77.343750, 72.395706 ], [ 79.453125, 72.395706 ], [ 79.453125, 72.181804 ], [ 80.156250, 72.181804 ] ], [ [ 134.296875, 48.922499 ], [ 134.296875, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.922499 ], [ 134.296875, 48.922499 ] ], [ [ 72.421875, 71.300793 ], [ 72.421875, 68.911005 ], [ 73.125000, 68.911005 ], [ 73.125000, 67.609221 ], [ 72.421875, 67.609221 ], [ 72.421875, 67.067433 ], [ 71.718750, 67.067433 ], [ 71.718750, 66.513260 ], [ 71.015625, 66.513260 ], [ 71.015625, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.791909 ], [ 73.828125, 66.791909 ], [ 73.828125, 67.609221 ], [ 74.531250, 67.609221 ], [ 74.531250, 68.138852 ], [ 73.828125, 68.138852 ], [ 73.828125, 68.656555 ], [ 74.531250, 68.656555 ], [ 74.531250, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.828125, 69.411242 ], [ 73.125000, 69.411242 ], [ 73.125000, 70.140364 ], [ 73.828125, 70.140364 ], [ 73.828125, 70.844673 ], [ 73.125000, 70.844673 ], [ 73.125000, 71.300793 ], [ 72.421875, 71.300793 ] ], [ [ 75.234375, 71.524909 ], [ 75.234375, 71.300793 ], [ 75.937500, 71.300793 ], [ 75.937500, 71.524909 ], [ 75.234375, 71.524909 ] ], [ [ 80.156250, 72.181804 ], [ 80.156250, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 72.181804 ], [ 80.156250, 72.181804 ] ] ], [ [ [ 54.140625, 68.656555 ], [ 53.437500, 68.656555 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 54.140625, 68.656555 ] ] ], [ [ [ 68.203125, 76.840816 ], [ 68.203125, 76.516819 ], [ 67.500000, 76.516819 ], [ 67.500000, 76.184995 ], [ 66.093750, 76.184995 ], [ 66.093750, 76.016094 ], [ 64.687500, 76.016094 ], [ 64.687500, 75.845169 ], [ 63.984375, 75.845169 ], [ 63.984375, 75.672197 ], [ 63.281250, 75.672197 ], [ 63.281250, 75.497157 ], [ 61.875000, 75.497157 ], [ 61.875000, 75.320025 ], [ 61.171875, 75.320025 ], [ 61.171875, 75.140778 ], [ 60.468750, 75.140778 ], [ 60.468750, 74.959392 ], [ 59.765625, 74.959392 ], [ 59.765625, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.402163 ], [ 58.359375, 74.402163 ], [ 58.359375, 74.019543 ], [ 57.656250, 74.019543 ], [ 57.656250, 73.627789 ], [ 56.953125, 73.627789 ], [ 56.953125, 73.226700 ], [ 56.250000, 73.226700 ], [ 56.250000, 72.816074 ], [ 55.546875, 72.816074 ], [ 55.546875, 72.395706 ], [ 54.843750, 72.395706 ], [ 54.843750, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.524909 ], [ 56.250000, 71.524909 ], [ 56.250000, 71.074056 ], [ 56.953125, 71.074056 ], [ 56.953125, 70.844673 ], [ 53.437500, 70.844673 ], [ 53.437500, 71.074056 ], [ 52.734375, 71.074056 ], [ 52.734375, 71.300793 ], [ 51.328125, 71.300793 ], [ 51.328125, 72.181804 ], [ 52.031250, 72.181804 ], [ 52.031250, 72.816074 ], [ 52.734375, 72.816074 ], [ 52.734375, 73.226700 ], [ 53.437500, 73.226700 ], [ 53.437500, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.627789 ], [ 53.437500, 73.627789 ], [ 53.437500, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.590108 ], [ 55.546875, 74.590108 ], [ 55.546875, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.320025 ], [ 56.953125, 75.320025 ], [ 56.953125, 75.497157 ], [ 57.656250, 75.497157 ], [ 57.656250, 75.672197 ], [ 58.359375, 75.672197 ], [ 58.359375, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 76.016094 ], [ 60.468750, 76.016094 ], [ 60.468750, 76.184995 ], [ 61.171875, 76.184995 ], [ 61.171875, 76.351896 ], [ 63.281250, 76.351896 ], [ 63.281250, 76.516819 ], [ 64.687500, 76.516819 ], [ 64.687500, 76.679785 ], [ 66.093750, 76.679785 ], [ 66.093750, 76.840816 ], [ 68.203125, 76.840816 ] ] ], [ [ [ 96.328125, 81.201420 ], [ 96.328125, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.297927 ], [ 99.140625, 80.297927 ], [ 99.140625, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 78.903929 ], [ 99.140625, 78.903929 ], [ 99.140625, 78.767792 ], [ 97.031250, 78.767792 ], [ 97.031250, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 79.038437 ], [ 94.921875, 79.038437 ], [ 94.921875, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.302640 ], [ 92.812500, 79.302640 ], [ 92.812500, 79.812302 ], [ 92.109375, 79.812302 ], [ 92.109375, 80.178713 ], [ 91.406250, 80.178713 ], [ 91.406250, 80.297927 ], [ 90.703125, 80.297927 ], [ 90.703125, 80.415707 ], [ 91.406250, 80.415707 ], [ 91.406250, 80.647035 ], [ 92.109375, 80.647035 ], [ 92.109375, 80.760615 ], [ 92.812500, 80.760615 ], [ 92.812500, 80.983688 ], [ 93.515625, 80.983688 ], [ 93.515625, 81.093214 ], [ 94.218750, 81.093214 ], [ 94.218750, 81.201420 ], [ 96.328125, 81.201420 ] ] ], [ [ [ 141.328125, 76.184995 ], [ 141.328125, 76.016094 ], [ 142.734375, 76.016094 ], [ 142.734375, 75.845169 ], [ 144.140625, 75.845169 ], [ 144.140625, 75.672197 ], [ 144.843750, 75.672197 ], [ 144.843750, 75.320025 ], [ 144.140625, 75.320025 ], [ 144.140625, 74.959392 ], [ 139.921875, 74.959392 ], [ 139.921875, 74.775843 ], [ 137.812500, 74.775843 ], [ 137.812500, 74.959392 ], [ 137.109375, 74.959392 ], [ 137.109375, 75.140778 ], [ 136.406250, 75.140778 ], [ 136.406250, 75.672197 ], [ 137.109375, 75.672197 ], [ 137.109375, 76.016094 ], [ 138.515625, 76.016094 ], [ 138.515625, 76.184995 ], [ 141.328125, 76.184995 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.767792 ], [ 104.765625, 78.767792 ], [ 104.765625, 78.349411 ], [ 104.062500, 78.349411 ], [ 104.062500, 78.206563 ], [ 101.250000, 78.206563 ], [ 101.250000, 78.061989 ], [ 99.140625, 78.061989 ], [ 99.140625, 78.206563 ], [ 99.843750, 78.206563 ], [ 99.843750, 78.630006 ], [ 100.546875, 78.630006 ], [ 100.546875, 79.038437 ], [ 101.250000, 79.038437 ], [ 101.250000, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 50.625000, 80.872827 ], [ 50.625000, 80.760615 ], [ 51.328125, 80.760615 ], [ 51.328125, 80.647035 ], [ 50.625000, 80.647035 ], [ 50.625000, 80.532071 ], [ 49.921875, 80.532071 ], [ 49.921875, 80.415707 ], [ 48.515625, 80.415707 ], [ 48.515625, 80.058050 ], [ 47.109375, 80.058050 ], [ 47.109375, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.647035 ], [ 45.000000, 80.647035 ], [ 45.000000, 80.760615 ], [ 46.406250, 80.760615 ], [ 46.406250, 80.872827 ], [ 47.812500, 80.872827 ], [ 47.812500, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.872827 ], [ 50.625000, 80.872827 ] ] ], [ [ [ 147.656250, 75.497157 ], [ 147.656250, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.140778 ], [ 145.546875, 75.140778 ], [ 145.546875, 75.320025 ], [ 146.250000, 75.320025 ], [ 146.250000, 75.497157 ], [ 147.656250, 75.497157 ] ] ], [ [ [ 142.734375, 73.824820 ], [ 142.734375, 73.627789 ], [ 143.437500, 73.627789 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.428424 ], [ 139.921875, 73.428424 ], [ 139.921875, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.824820 ], [ 142.734375, 73.824820 ] ] ], [ [ [ 180.703125, 71.746432 ], [ 180.703125, 71.524909 ], [ 181.406250, 71.524909 ], [ 181.406250, 71.300793 ], [ 182.109375, 71.300793 ], [ 182.109375, 71.074056 ], [ 180.703125, 71.074056 ], [ 180.703125, 70.844673 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.300793 ], [ 180.000000, 71.300793 ], [ 180.000000, 71.746432 ], [ 180.703125, 71.746432 ] ] ], [ [ [ 21.796875, 55.379110 ], [ 21.796875, 54.977614 ], [ 22.500000, 54.977614 ], [ 22.500000, 54.572062 ], [ 19.687500, 54.572062 ], [ 19.687500, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.379110 ], [ 21.796875, 55.379110 ] ] ], [ [ [ 43.593750, 68.399180 ], [ 42.890625, 68.399180 ], [ 42.890625, 68.656555 ], [ 43.593750, 68.656555 ], [ 43.593750, 68.399180 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ], [ 11.953125, 55.379110 ], [ 11.953125, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.776573 ], [ 12.656250, 55.776573 ] ] ], [ [ [ 10.546875, 57.326521 ], [ 10.546875, 56.559482 ], [ 11.250000, 56.559482 ], [ 11.250000, 56.170023 ], [ 10.546875, 56.170023 ], [ 10.546875, 55.776573 ], [ 9.843750, 55.776573 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 56.944974 ], [ 9.140625, 56.944974 ], [ 9.140625, 57.326521 ], [ 10.546875, 57.326521 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.300793 ], [ 28.125000, 71.074056 ], [ 28.828125, 71.074056 ], [ 28.828125, 70.844673 ], [ 30.234375, 70.844673 ], [ 30.234375, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.377854 ], [ 29.531250, 70.377854 ], [ 29.531250, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.411242 ], [ 29.531250, 69.411242 ], [ 29.531250, 69.162558 ], [ 28.125000, 69.162558 ], [ 28.125000, 69.411242 ], [ 28.828125, 69.411242 ], [ 28.828125, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 70.140364 ], [ 26.718750, 70.140364 ], [ 26.718750, 69.900118 ], [ 26.015625, 69.900118 ], [ 26.015625, 69.411242 ], [ 25.312500, 69.411242 ], [ 25.312500, 68.911005 ], [ 24.609375, 68.911005 ], [ 24.609375, 68.656555 ], [ 23.203125, 68.656555 ], [ 23.203125, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.656555 ], [ 17.578125, 68.656555 ], [ 17.578125, 68.138852 ], [ 16.171875, 68.138852 ], [ 16.171875, 67.609221 ], [ 15.468750, 67.609221 ], [ 15.468750, 66.791909 ], [ 14.765625, 66.791909 ], [ 14.765625, 65.946472 ], [ 14.062500, 65.946472 ], [ 14.062500, 65.366837 ], [ 13.359375, 65.366837 ], [ 13.359375, 64.168107 ], [ 11.953125, 64.168107 ], [ 11.953125, 63.548552 ], [ 11.250000, 63.548552 ], [ 11.250000, 62.593341 ], [ 11.953125, 62.593341 ], [ 11.953125, 59.888937 ], [ 11.250000, 59.888937 ], [ 11.250000, 59.175928 ], [ 9.140625, 59.175928 ], [ 9.140625, 58.813742 ], [ 8.437500, 58.813742 ], [ 8.437500, 58.447733 ], [ 7.734375, 58.447733 ], [ 7.734375, 58.077876 ], [ 6.328125, 58.077876 ], [ 6.328125, 58.447733 ], [ 5.625000, 58.447733 ], [ 5.625000, 59.175928 ], [ 4.921875, 59.175928 ], [ 4.921875, 62.593341 ], [ 5.625000, 62.593341 ], [ 5.625000, 62.915233 ], [ 7.031250, 62.915233 ], [ 7.031250, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.860036 ], [ 9.140625, 63.860036 ], [ 9.140625, 64.472794 ], [ 9.843750, 64.472794 ], [ 9.843750, 64.774125 ], [ 10.546875, 64.774125 ], [ 10.546875, 65.366837 ], [ 11.250000, 65.366837 ], [ 11.250000, 65.658275 ], [ 11.953125, 65.658275 ], [ 11.953125, 66.231457 ], [ 12.656250, 66.231457 ], [ 12.656250, 66.791909 ], [ 13.359375, 66.791909 ], [ 13.359375, 67.339861 ], [ 14.062500, 67.339861 ], [ 14.062500, 67.875541 ], [ 14.765625, 67.875541 ], [ 14.765625, 68.138852 ], [ 15.468750, 68.138852 ], [ 15.468750, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.656555 ], [ 16.875000, 68.656555 ], [ 16.875000, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.657086 ], [ 18.984375, 69.657086 ], [ 18.984375, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.377854 ], [ 23.203125, 70.377854 ], [ 23.203125, 70.844673 ], [ 23.906250, 70.844673 ], [ 23.906250, 71.074056 ], [ 27.421875, 71.074056 ], [ 27.421875, 71.300793 ], [ 28.125000, 71.300793 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.935918 ], [ 17.578125, 79.935918 ], [ 17.578125, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.687500, 79.432371 ], [ 19.687500, 79.171335 ], [ 20.390625, 79.171335 ], [ 20.390625, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.903929 ], [ 20.390625, 78.903929 ], [ 20.390625, 78.767792 ], [ 19.687500, 78.767792 ], [ 19.687500, 78.630006 ], [ 18.984375, 78.630006 ], [ 18.984375, 78.206563 ], [ 18.281250, 78.206563 ], [ 18.281250, 77.767582 ], [ 17.578125, 77.767582 ], [ 17.578125, 77.312520 ], [ 16.875000, 77.312520 ], [ 16.875000, 76.840816 ], [ 14.765625, 76.840816 ], [ 14.765625, 77.157163 ], [ 14.062500, 77.157163 ], [ 14.062500, 77.312520 ], [ 13.359375, 77.312520 ], [ 13.359375, 77.617709 ], [ 14.062500, 77.617709 ], [ 14.062500, 77.767582 ], [ 13.359375, 77.767582 ], [ 13.359375, 77.915669 ], [ 12.656250, 77.915669 ], [ 12.656250, 78.206563 ], [ 11.953125, 78.206563 ], [ 11.953125, 78.490552 ], [ 11.250000, 78.490552 ], [ 11.250000, 78.767792 ], [ 10.546875, 78.767792 ], [ 10.546875, 79.302640 ], [ 9.843750, 79.302640 ], [ 9.843750, 79.687184 ], [ 10.546875, 79.687184 ], [ 10.546875, 79.812302 ], [ 11.953125, 79.812302 ], [ 11.953125, 79.935918 ], [ 12.656250, 79.935918 ], [ 12.656250, 79.812302 ], [ 13.359375, 79.812302 ], [ 13.359375, 79.687184 ], [ 14.765625, 79.687184 ], [ 14.765625, 79.812302 ], [ 15.468750, 79.812302 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.203125, 80.647035 ], [ 23.203125, 80.532071 ], [ 24.609375, 80.532071 ], [ 24.609375, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.058050 ], [ 26.718750, 80.058050 ], [ 26.718750, 79.935918 ], [ 26.015625, 79.935918 ], [ 26.015625, 79.687184 ], [ 25.312500, 79.687184 ], [ 25.312500, 79.560546 ], [ 24.609375, 79.560546 ], [ 24.609375, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.560546 ], [ 19.687500, 79.560546 ], [ 19.687500, 79.935918 ], [ 18.281250, 79.935918 ], [ 18.281250, 80.058050 ], [ 17.578125, 80.058050 ], [ 17.578125, 80.297927 ], [ 16.875000, 80.297927 ], [ 16.875000, 80.415707 ], [ 18.281250, 80.415707 ], [ 18.281250, 80.532071 ], [ 19.687500, 80.532071 ], [ 19.687500, 80.647035 ], [ 20.390625, 80.647035 ], [ 20.390625, 80.532071 ], [ 21.093750, 80.532071 ], [ 21.093750, 80.415707 ], [ 21.796875, 80.415707 ], [ 21.796875, 80.532071 ], [ 22.500000, 80.532071 ], [ 22.500000, 80.647035 ], [ 23.203125, 80.647035 ] ] ], [ [ [ 22.500000, 78.490552 ], [ 22.500000, 78.349411 ], [ 23.203125, 78.349411 ], [ 23.203125, 78.061989 ], [ 23.906250, 78.061989 ], [ 23.906250, 77.915669 ], [ 24.609375, 77.915669 ], [ 24.609375, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.617709 ], [ 22.500000, 77.617709 ], [ 22.500000, 77.466028 ], [ 21.093750, 77.466028 ], [ 21.093750, 77.617709 ], [ 20.390625, 77.617709 ], [ 20.390625, 77.915669 ], [ 21.093750, 77.915669 ], [ 21.093750, 78.206563 ], [ 20.390625, 78.206563 ], [ 20.390625, 78.349411 ], [ 21.796875, 78.349411 ], [ 21.796875, 78.490552 ], [ 22.500000, 78.490552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 67.875541 ], [ 23.203125, 67.875541 ], [ 23.203125, 67.067433 ], [ 23.906250, 67.067433 ], [ 23.906250, 65.658275 ], [ 22.500000, 65.658275 ], [ 22.500000, 65.366837 ], [ 21.796875, 65.366837 ], [ 21.796875, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.168107 ], [ 20.390625, 64.168107 ], [ 20.390625, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.593341 ], [ 17.578125, 62.593341 ], [ 17.578125, 61.938950 ], [ 16.875000, 61.938950 ], [ 16.875000, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.239811 ], [ 18.984375, 60.239811 ], [ 18.984375, 59.888937 ], [ 18.281250, 59.888937 ], [ 18.281250, 59.175928 ], [ 17.578125, 59.175928 ], [ 17.578125, 58.813742 ], [ 16.875000, 58.813742 ], [ 16.875000, 57.704147 ], [ 16.171875, 57.704147 ], [ 16.171875, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 55.776573 ], [ 14.062500, 55.776573 ], [ 14.062500, 55.379110 ], [ 12.656250, 55.379110 ], [ 12.656250, 56.559482 ], [ 11.953125, 56.559482 ], [ 11.953125, 58.077876 ], [ 11.250000, 58.077876 ], [ 11.250000, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 60.586967 ], [ 12.656250, 60.586967 ], [ 12.656250, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 63.548552 ], [ 12.656250, 63.548552 ], [ 12.656250, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 64.472794 ], [ 13.359375, 64.472794 ], [ 13.359375, 65.072130 ], [ 14.062500, 65.072130 ], [ 14.062500, 65.658275 ], [ 14.765625, 65.658275 ], [ 14.765625, 66.513260 ], [ 15.468750, 66.513260 ], [ 15.468750, 67.067433 ], [ 16.171875, 67.067433 ], [ 16.171875, 67.609221 ], [ 16.875000, 67.609221 ], [ 16.875000, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.399180 ], [ 19.687500, 68.399180 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.546875, 56.170023 ], [ 9.140625, 56.170023 ], [ 9.140625, 55.379110 ], [ 9.843750, 55.379110 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.379110 ], [ 7.734375, 55.379110 ], [ 7.734375, 56.944974 ], [ 8.437500, 56.944974 ], [ 8.437500, 57.326521 ], [ 9.140625, 57.326521 ], [ 9.140625, 57.704147 ], [ 10.546875, 57.704147 ], [ 10.546875, 56.944974 ], [ 9.843750, 56.944974 ], [ 9.843750, 56.559482 ], [ 10.546875, 56.559482 ], [ 10.546875, 56.170023 ] ] ], [ [ [ 10.546875, 56.170023 ], [ 11.953125, 56.170023 ], [ 11.953125, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ], [ 11.953125, 55.379110 ], [ 11.953125, 54.977614 ], [ 10.546875, 54.977614 ], [ 10.546875, 56.170023 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.330873 ], [ 7.031250, 52.052490 ], [ 6.328125, 52.052490 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.618017 ], [ 4.218750, 51.618017 ], [ 4.218750, 52.482780 ], [ 4.921875, 52.482780 ], [ 4.921875, 52.908902 ], [ 6.328125, 52.908902 ], [ 6.328125, 53.330873 ], [ 7.031250, 53.330873 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 69.162558 ], [ 20.390625, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.138852 ], [ 23.203125, 68.138852 ], [ 23.203125, 65.946472 ], [ 21.796875, 65.946472 ], [ 21.796875, 65.366837 ], [ 21.093750, 65.366837 ], [ 21.093750, 64.168107 ], [ 20.390625, 64.168107 ], [ 20.390625, 63.860036 ], [ 19.687500, 63.860036 ], [ 19.687500, 63.548552 ], [ 18.984375, 63.548552 ], [ 18.984375, 63.233627 ], [ 18.281250, 63.233627 ], [ 18.281250, 62.915233 ], [ 17.578125, 62.915233 ], [ 17.578125, 62.267923 ], [ 16.875000, 62.267923 ], [ 16.875000, 61.270233 ], [ 17.578125, 61.270233 ], [ 17.578125, 60.586967 ], [ 18.281250, 60.586967 ], [ 18.281250, 59.534318 ], [ 17.578125, 59.534318 ], [ 17.578125, 58.813742 ], [ 16.171875, 58.813742 ], [ 16.171875, 56.559482 ], [ 15.468750, 56.559482 ], [ 15.468750, 56.170023 ], [ 14.062500, 56.170023 ], [ 14.062500, 55.379110 ], [ 12.656250, 55.379110 ], [ 12.656250, 55.776573 ], [ 11.953125, 55.776573 ], [ 11.953125, 56.944974 ], [ 11.250000, 56.944974 ], [ 11.250000, 58.447733 ], [ 10.546875, 58.447733 ], [ 10.546875, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 62.593341 ], [ 11.250000, 62.593341 ], [ 11.250000, 63.548552 ], [ 11.953125, 63.548552 ], [ 11.953125, 64.168107 ], [ 13.359375, 64.168107 ], [ 13.359375, 65.366837 ], [ 14.062500, 65.366837 ], [ 14.062500, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 66.791909 ], [ 15.468750, 66.791909 ], [ 15.468750, 67.609221 ], [ 16.171875, 67.609221 ], [ 16.171875, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.656555 ], [ 19.687500, 68.656555 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 51.179343 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.625000, 50.289339 ], [ 5.625000, 49.382373 ], [ 4.921875, 49.382373 ], [ 4.921875, 49.837982 ], [ 3.515625, 49.837982 ], [ 3.515625, 50.289339 ], [ 2.812500, 50.289339 ], [ 2.812500, 51.179343 ], [ 5.625000, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 53.748711 ], [ 6.328125, 53.330873 ], [ 7.031250, 53.330873 ], [ 7.031250, 52.908902 ], [ 6.328125, 52.908902 ], [ 6.328125, 52.052490 ], [ 5.625000, 52.052490 ], [ 5.625000, 51.179343 ], [ 4.921875, 51.179343 ], [ 4.921875, 51.618017 ], [ 3.515625, 51.618017 ], [ 3.515625, 52.482780 ], [ 4.218750, 52.482780 ], [ 4.218750, 53.330873 ], [ 5.625000, 53.330873 ], [ 5.625000, 53.748711 ], [ 6.328125, 53.748711 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 50.289339 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.289339 ], [ 6.328125, 50.289339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.618017 ], [ 4.921875, 51.179343 ], [ 5.625000, 51.179343 ], [ 5.625000, 49.837982 ], [ 4.218750, 49.837982 ], [ 4.218750, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 51.618017 ], [ 4.921875, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.162434 ], [ 13.359375, 54.162434 ], [ 13.359375, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 52.482780 ], [ 14.765625, 52.482780 ], [ 14.765625, 51.179343 ], [ 14.062500, 51.179343 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.359375, 49.382373 ], [ 13.359375, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.989922 ], [ 13.359375, 47.989922 ], [ 13.359375, 47.517201 ], [ 7.734375, 47.517201 ], [ 7.734375, 48.458352 ], [ 8.437500, 48.458352 ], [ 8.437500, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 52.052490 ], [ 7.031250, 52.052490 ], [ 7.031250, 53.748711 ], [ 7.734375, 53.748711 ], [ 7.734375, 53.330873 ], [ 8.437500, 53.330873 ], [ 8.437500, 53.748711 ], [ 9.140625, 53.748711 ], [ 9.140625, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.572062 ], [ 10.546875, 54.572062 ], [ 10.546875, 54.162434 ], [ 14.062500, 54.162434 ], [ 14.062500, 51.618017 ], [ 14.765625, 51.618017 ], [ 14.765625, 51.179343 ], [ 13.359375, 51.179343 ], [ 13.359375, 50.736455 ], [ 12.656250, 50.736455 ], [ 12.656250, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.517201 ], [ 11.953125, 47.517201 ], [ 11.953125, 47.989922 ], [ 10.546875, 47.989922 ], [ 10.546875, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.989922 ], [ 7.031250, 47.989922 ], [ 7.031250, 48.922499 ], [ 7.734375, 48.922499 ], [ 7.734375, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 52.052490 ], [ 6.328125, 52.052490 ], [ 6.328125, 52.908902 ], [ 7.031250, 52.908902 ], [ 7.031250, 53.330873 ], [ 6.328125, 53.330873 ], [ 6.328125, 53.748711 ], [ 8.437500, 53.748711 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 47.517201 ], [ 9.843750, 47.040182 ], [ 10.546875, 47.040182 ], [ 10.546875, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 47.040182 ], [ 7.031250, 47.040182 ], [ 7.031250, 47.517201 ], [ 9.843750, 47.517201 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.140625, 47.989922 ], [ 9.140625, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.558860 ], [ 9.140625, 46.558860 ], [ 9.140625, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 46.558860 ], [ 5.625000, 46.558860 ], [ 5.625000, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 47.517201 ], [ 7.031250, 47.517201 ], [ 7.031250, 47.989922 ], [ 9.140625, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 51.179343 ], [ 14.765625, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 48.922499 ], [ 16.875000, 48.922499 ], [ 16.875000, 48.458352 ], [ 16.171875, 48.458352 ], [ 16.171875, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.458352 ], [ 13.359375, 48.458352 ], [ 13.359375, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 11.953125, 49.837982 ], [ 11.953125, 50.289339 ], [ 13.359375, 50.289339 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 51.179343 ], [ 14.765625, 51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 51.179343 ], [ 15.468750, 50.736455 ], [ 16.875000, 50.736455 ], [ 16.875000, 50.289339 ], [ 18.281250, 50.289339 ], [ 18.281250, 49.382373 ], [ 17.578125, 49.382373 ], [ 17.578125, 48.922499 ], [ 12.656250, 48.922499 ], [ 12.656250, 49.382373 ], [ 11.953125, 49.382373 ], [ 11.953125, 50.289339 ], [ 12.656250, 50.289339 ], [ 12.656250, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 51.179343 ], [ 15.468750, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 54.572062 ], [ 19.687500, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 52.908902 ], [ 23.906250, 52.908902 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 48.922499 ], [ 21.796875, 48.922499 ], [ 21.796875, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.837982 ], [ 17.578125, 49.837982 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 14.765625, 50.736455 ], [ 14.765625, 52.482780 ], [ 14.062500, 52.482780 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 54.162434 ], [ 16.171875, 54.162434 ], [ 16.171875, 54.572062 ], [ 19.687500, 54.572062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 54.977614 ], [ 18.281250, 54.572062 ], [ 23.203125, 54.572062 ], [ 23.203125, 52.908902 ], [ 22.500000, 52.908902 ], [ 22.500000, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.736455 ], [ 23.203125, 50.736455 ], [ 23.203125, 50.289339 ], [ 22.500000, 50.289339 ], [ 22.500000, 49.382373 ], [ 18.984375, 49.382373 ], [ 18.984375, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.289339 ], [ 16.875000, 50.289339 ], [ 16.875000, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 51.618017 ], [ 14.062500, 51.618017 ], [ 14.062500, 54.162434 ], [ 16.171875, 54.162434 ], [ 16.171875, 54.572062 ], [ 17.578125, 54.572062 ], [ 17.578125, 54.977614 ], [ 18.281250, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 48.922499 ], [ 16.171875, 48.458352 ], [ 16.875000, 48.458352 ], [ 16.875000, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.558860 ], [ 11.953125, 46.558860 ], [ 11.953125, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 47.517201 ], [ 13.359375, 47.517201 ], [ 13.359375, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.458352 ], [ 14.765625, 48.458352 ], [ 14.765625, 48.922499 ], [ 16.171875, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 48.922499 ], [ 16.875000, 47.989922 ], [ 16.171875, 47.989922 ], [ 16.171875, 47.040182 ], [ 14.765625, 47.040182 ], [ 14.765625, 46.558860 ], [ 11.953125, 46.558860 ], [ 11.953125, 47.040182 ], [ 9.140625, 47.040182 ], [ 9.140625, 47.989922 ], [ 9.843750, 47.989922 ], [ 9.843750, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.989922 ], [ 11.953125, 47.989922 ], [ 11.953125, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 48.458352 ], [ 13.359375, 48.458352 ], [ 13.359375, 48.922499 ], [ 16.875000, 48.922499 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.558860 ], [ 16.875000, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.073231 ], [ 14.062500, 46.073231 ], [ 14.062500, 46.558860 ], [ 16.875000, 46.558860 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 47.040182 ], [ 16.171875, 46.558860 ], [ 15.468750, 46.558860 ], [ 15.468750, 46.073231 ], [ 14.765625, 46.073231 ], [ 14.765625, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 46.558860 ], [ 14.765625, 46.558860 ], [ 14.765625, 47.040182 ], [ 16.171875, 47.040182 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 37.718590 ], [ 15.468750, 36.597889 ], [ 14.062500, 36.597889 ], [ 14.062500, 37.160317 ], [ 12.656250, 37.160317 ], [ 12.656250, 38.272689 ], [ 15.468750, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 37.718590 ], [ 15.468750, 37.718590 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 39.909736 ], [ 16.171875, 39.909736 ], [ 16.171875, 39.368279 ], [ 16.875000, 39.368279 ], [ 16.875000, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 38.822591 ], [ 15.468750, 38.822591 ], [ 15.468750, 39.909736 ], [ 14.765625, 39.909736 ], [ 14.765625, 40.446947 ], [ 14.062500, 40.446947 ], [ 14.062500, 40.979898 ], [ 12.656250, 40.979898 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 43.580391 ], [ 7.734375, 43.580391 ], [ 7.734375, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 45.583290 ], [ 8.437500, 45.583290 ], [ 8.437500, 46.073231 ], [ 10.546875, 46.073231 ], [ 10.546875, 46.558860 ], [ 11.250000, 46.558860 ], [ 11.250000, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.073231 ], [ 13.359375, 46.073231 ], [ 13.359375, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 44.590467 ], [ 11.953125, 44.590467 ], [ 11.953125, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.068888 ], [ 14.062500, 43.068888 ], [ 14.062500, 42.032974 ], [ 16.171875, 42.032974 ], [ 16.171875, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.446947 ] ] ], [ [ [ 9.140625, 40.979898 ], [ 9.140625, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.979898 ], [ 9.140625, 40.979898 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.446947 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.718590 ], [ 14.765625, 37.718590 ], [ 14.765625, 37.160317 ], [ 11.953125, 37.160317 ], [ 11.953125, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 17.578125, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.446947 ] ] ], [ [ [ 9.140625, 40.979898 ], [ 9.140625, 39.368279 ], [ 7.734375, 39.368279 ], [ 7.734375, 40.979898 ], [ 9.140625, 40.979898 ] ] ], [ [ [ 16.875000, 40.446947 ], [ 16.171875, 40.446947 ], [ 16.171875, 39.909736 ], [ 16.875000, 39.909736 ], [ 16.875000, 39.368279 ], [ 16.171875, 39.368279 ], [ 16.171875, 38.822591 ], [ 15.468750, 38.822591 ], [ 15.468750, 39.909736 ], [ 14.765625, 39.909736 ], [ 14.765625, 40.446947 ], [ 14.062500, 40.446947 ], [ 14.062500, 40.979898 ], [ 13.359375, 40.979898 ], [ 13.359375, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 42.032974 ], [ 10.546875, 42.032974 ], [ 10.546875, 42.553080 ], [ 9.843750, 42.553080 ], [ 9.843750, 44.087585 ], [ 8.437500, 44.087585 ], [ 8.437500, 44.590467 ], [ 7.734375, 44.590467 ], [ 7.734375, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 44.590467 ], [ 6.328125, 44.590467 ], [ 6.328125, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 45.583290 ], [ 6.328125, 45.583290 ], [ 6.328125, 46.073231 ], [ 9.140625, 46.073231 ], [ 9.140625, 46.558860 ], [ 9.843750, 46.558860 ], [ 9.843750, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 46.558860 ], [ 13.359375, 46.558860 ], [ 13.359375, 46.073231 ], [ 12.656250, 46.073231 ], [ 12.656250, 45.583290 ], [ 11.953125, 45.583290 ], [ 11.953125, 44.087585 ], [ 13.359375, 44.087585 ], [ 13.359375, 42.553080 ], [ 14.062500, 42.553080 ], [ 14.062500, 42.032974 ], [ 15.468750, 42.032974 ], [ 15.468750, 41.508577 ], [ 16.171875, 41.508577 ], [ 16.171875, 40.979898 ], [ 16.875000, 40.979898 ], [ 16.875000, 40.446947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, 43.580391 ], [ 15.468750, 43.580391 ], [ 15.468750, 44.087585 ], [ 14.765625, 44.087585 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.590467 ], [ 13.359375, 44.590467 ], [ 13.359375, 45.583290 ], [ 15.468750, 45.583290 ], [ 15.468750, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 43.580391 ] ] ], [ [ [ 16.171875, 43.580391 ], [ 17.578125, 43.580391 ], [ 17.578125, 43.068888 ], [ 16.171875, 43.068888 ], [ 16.171875, 43.580391 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 42.553080 ], [ 16.875000, 42.553080 ], [ 16.875000, 43.068888 ] ] ], [ [ [ 16.875000, 46.073231 ], [ 18.281250, 46.073231 ], [ 18.281250, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 45.583290 ], [ 16.171875, 45.583290 ], [ 16.171875, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 44.590467 ], [ 16.171875, 44.590467 ], [ 16.171875, 44.087585 ], [ 16.875000, 44.087585 ], [ 16.875000, 43.580391 ], [ 15.468750, 43.580391 ], [ 15.468750, 44.087585 ], [ 14.765625, 44.087585 ], [ 14.765625, 45.089036 ], [ 13.359375, 45.089036 ], [ 13.359375, 45.583290 ], [ 14.765625, 45.583290 ], [ 14.765625, 46.073231 ], [ 15.468750, 46.073231 ], [ 15.468750, 46.558860 ], [ 16.875000, 46.558860 ], [ 16.875000, 46.073231 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 48.458352 ], [ 21.796875, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 46.073231 ], [ 18.984375, 46.073231 ], [ 18.984375, 45.583290 ], [ 17.578125, 45.583290 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 47.040182 ], [ 16.875000, 47.040182 ], [ 16.875000, 47.989922 ], [ 20.390625, 47.989922 ], [ 20.390625, 48.458352 ], [ 21.796875, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 48.458352 ], [ 22.500000, 47.989922 ], [ 21.796875, 47.989922 ], [ 21.796875, 47.517201 ], [ 21.093750, 47.517201 ], [ 21.093750, 46.558860 ], [ 18.984375, 46.558860 ], [ 18.984375, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 47.989922 ], [ 18.281250, 47.989922 ], [ 18.281250, 48.458352 ], [ 22.500000, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 49.382373 ], [ 21.796875, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 18.281250, 48.922499 ], [ 18.281250, 49.382373 ], [ 21.796875, 49.382373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 49.837982 ], [ 18.984375, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 48.922499 ], [ 21.796875, 48.922499 ], [ 21.796875, 48.458352 ], [ 18.281250, 48.458352 ], [ 18.281250, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 17.578125, 48.922499 ], [ 17.578125, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.837982 ], [ 18.984375, 49.837982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 45.089036 ], [ 19.687500, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 43.580391 ], [ 16.171875, 43.580391 ], [ 16.171875, 45.089036 ], [ 19.687500, 45.089036 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 45.583290 ], [ 16.875000, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 43.580391 ], [ 18.281250, 43.580391 ], [ 18.281250, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 44.087585 ], [ 16.171875, 44.087585 ], [ 16.171875, 44.590467 ], [ 15.468750, 44.590467 ], [ 15.468750, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 45.583290 ], [ 16.875000, 45.583290 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.580391 ], [ 19.687500, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.553080 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 42.553080 ], [ 18.984375, 42.553080 ], [ 18.984375, 43.580391 ], [ 19.687500, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.580391 ], [ 19.687500, 42.553080 ], [ 18.984375, 42.553080 ], [ 18.984375, 42.032974 ], [ 18.281250, 42.032974 ], [ 18.281250, 43.580391 ], [ 19.687500, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 46.073231 ], [ 20.390625, 45.583290 ], [ 21.093750, 45.583290 ], [ 21.093750, 45.089036 ], [ 21.796875, 45.089036 ], [ 21.796875, 44.590467 ], [ 22.500000, 44.590467 ], [ 22.500000, 42.553080 ], [ 21.093750, 42.553080 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 44.087585 ], [ 18.984375, 44.087585 ], [ 18.984375, 44.590467 ], [ 19.687500, 44.590467 ], [ 19.687500, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 46.073231 ], [ 20.390625, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 46.558860 ], [ 19.687500, 46.073231 ], [ 20.390625, 46.073231 ], [ 20.390625, 45.583290 ], [ 21.093750, 45.583290 ], [ 21.093750, 44.590467 ], [ 22.500000, 44.590467 ], [ 22.500000, 43.068888 ], [ 21.796875, 43.068888 ], [ 21.796875, 42.553080 ], [ 21.093750, 42.553080 ], [ 21.093750, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 45.583290 ], [ 18.281250, 45.583290 ], [ 18.281250, 46.073231 ], [ 18.984375, 46.073231 ], [ 18.984375, 46.558860 ], [ 19.687500, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.553080 ], [ 19.687500, 42.553080 ], [ 19.687500, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 42.553080 ], [ 20.390625, 40.979898 ], [ 21.093750, 40.979898 ], [ 21.093750, 40.446947 ], [ 20.390625, 40.446947 ], [ 20.390625, 39.368279 ], [ 19.687500, 39.368279 ], [ 19.687500, 40.446947 ], [ 18.984375, 40.446947 ], [ 18.984375, 40.979898 ], [ 19.687500, 40.979898 ], [ 19.687500, 42.553080 ], [ 20.390625, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 42.553080 ], [ 20.390625, 39.909736 ], [ 19.687500, 39.909736 ], [ 19.687500, 40.446947 ], [ 18.984375, 40.446947 ], [ 18.984375, 42.553080 ], [ 20.390625, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.553080 ], [ 22.500000, 42.032974 ], [ 23.203125, 42.032974 ], [ 23.203125, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.032974 ], [ 21.796875, 42.032974 ], [ 21.796875, 42.553080 ], [ 22.500000, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 42.553080 ], [ 21.796875, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 41.508577 ], [ 21.796875, 41.508577 ], [ 21.796875, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.553080 ], [ 21.796875, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 69.900118 ], [ 28.125000, 69.657086 ], [ 28.828125, 69.657086 ], [ 28.828125, 68.656555 ], [ 28.125000, 68.656555 ], [ 28.125000, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.609221 ], [ 30.234375, 67.609221 ], [ 30.234375, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.067433 ], [ 28.828125, 67.067433 ], [ 28.828125, 66.791909 ], [ 29.531250, 66.791909 ], [ 29.531250, 66.231457 ], [ 30.234375, 66.231457 ], [ 30.234375, 65.366837 ], [ 29.531250, 65.366837 ], [ 29.531250, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 63.233627 ], [ 30.937500, 63.233627 ], [ 30.937500, 62.915233 ], [ 31.640625, 62.915233 ], [ 31.640625, 62.593341 ], [ 30.937500, 62.593341 ], [ 30.937500, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 61.270233 ], [ 28.828125, 61.270233 ], [ 28.828125, 60.586967 ], [ 26.015625, 60.586967 ], [ 26.015625, 60.239811 ], [ 25.312500, 60.239811 ], [ 25.312500, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 21.093750, 60.239811 ], [ 21.093750, 60.930432 ], [ 21.796875, 60.930432 ], [ 21.796875, 61.938950 ], [ 21.093750, 61.938950 ], [ 21.093750, 62.915233 ], [ 21.796875, 62.915233 ], [ 21.796875, 63.548552 ], [ 22.500000, 63.548552 ], [ 22.500000, 63.860036 ], [ 23.203125, 63.860036 ], [ 23.203125, 64.168107 ], [ 23.906250, 64.168107 ], [ 23.906250, 64.472794 ], [ 24.609375, 64.472794 ], [ 24.609375, 64.774125 ], [ 25.312500, 64.774125 ], [ 25.312500, 65.658275 ], [ 23.906250, 65.658275 ], [ 23.906250, 67.067433 ], [ 23.203125, 67.067433 ], [ 23.203125, 67.875541 ], [ 22.500000, 67.875541 ], [ 22.500000, 68.399180 ], [ 21.796875, 68.399180 ], [ 21.796875, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 68.911005 ], [ 20.390625, 68.911005 ], [ 20.390625, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 23.906250, 68.911005 ], [ 23.906250, 68.656555 ], [ 25.312500, 68.656555 ], [ 25.312500, 68.911005 ], [ 26.015625, 68.911005 ], [ 26.015625, 69.900118 ], [ 28.125000, 69.900118 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 70.140364 ], [ 28.125000, 69.900118 ], [ 28.828125, 69.900118 ], [ 28.828125, 69.411242 ], [ 28.125000, 69.411242 ], [ 28.125000, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.339861 ], [ 28.828125, 67.339861 ], [ 28.828125, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 64.774125 ], [ 30.234375, 64.774125 ], [ 30.234375, 64.168107 ], [ 29.531250, 64.168107 ], [ 29.531250, 63.548552 ], [ 30.234375, 63.548552 ], [ 30.234375, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 62.267923 ], [ 30.234375, 62.267923 ], [ 30.234375, 61.938950 ], [ 29.531250, 61.938950 ], [ 29.531250, 61.606396 ], [ 28.828125, 61.606396 ], [ 28.828125, 61.270233 ], [ 28.125000, 61.270233 ], [ 28.125000, 60.586967 ], [ 25.312500, 60.586967 ], [ 25.312500, 60.239811 ], [ 23.906250, 60.239811 ], [ 23.906250, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 21.796875, 60.239811 ], [ 21.796875, 60.586967 ], [ 21.093750, 60.586967 ], [ 21.093750, 62.267923 ], [ 20.390625, 62.267923 ], [ 20.390625, 62.915233 ], [ 21.093750, 62.915233 ], [ 21.093750, 63.548552 ], [ 21.796875, 63.548552 ], [ 21.796875, 63.860036 ], [ 22.500000, 63.860036 ], [ 22.500000, 64.168107 ], [ 23.203125, 64.168107 ], [ 23.203125, 64.472794 ], [ 23.906250, 64.472794 ], [ 23.906250, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.366837 ], [ 24.609375, 65.366837 ], [ 24.609375, 65.658275 ], [ 23.906250, 65.658275 ], [ 23.906250, 65.946472 ], [ 23.203125, 65.946472 ], [ 23.203125, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 68.399180 ], [ 21.796875, 68.399180 ], [ 21.796875, 68.656555 ], [ 21.093750, 68.656555 ], [ 21.093750, 68.911005 ], [ 20.390625, 68.911005 ], [ 20.390625, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.656555 ], [ 24.609375, 68.656555 ], [ 24.609375, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 69.411242 ], [ 26.015625, 69.411242 ], [ 26.015625, 69.900118 ], [ 26.718750, 69.900118 ], [ 26.718750, 70.140364 ], [ 28.125000, 70.140364 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 57.704147 ], [ 25.312500, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 56.944974 ], [ 28.125000, 56.944974 ], [ 28.125000, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.170023 ], [ 21.093750, 56.170023 ], [ 21.093750, 56.944974 ], [ 21.796875, 56.944974 ], [ 21.796875, 57.326521 ], [ 23.203125, 57.326521 ], [ 23.203125, 56.944974 ], [ 23.906250, 56.944974 ], [ 23.906250, 57.326521 ], [ 24.609375, 57.326521 ], [ 24.609375, 57.704147 ], [ 25.312500, 57.704147 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 58.077876 ], [ 25.312500, 57.704147 ], [ 26.718750, 57.704147 ], [ 26.718750, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 56.559482 ], [ 28.125000, 56.559482 ], [ 28.125000, 56.170023 ], [ 26.718750, 56.170023 ], [ 26.718750, 55.776573 ], [ 25.312500, 55.776573 ], [ 25.312500, 56.170023 ], [ 24.609375, 56.170023 ], [ 24.609375, 56.559482 ], [ 21.796875, 56.559482 ], [ 21.796875, 56.170023 ], [ 20.390625, 56.170023 ], [ 20.390625, 57.326521 ], [ 21.093750, 57.326521 ], [ 21.093750, 57.704147 ], [ 23.203125, 57.704147 ], [ 23.203125, 57.326521 ], [ 23.906250, 57.326521 ], [ 23.906250, 58.077876 ], [ 25.312500, 58.077876 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 57.326521 ], [ 25.312500, 57.326521 ], [ 25.312500, 57.704147 ], [ 24.609375, 57.704147 ], [ 24.609375, 58.077876 ], [ 23.203125, 58.077876 ], [ 23.203125, 59.175928 ], [ 24.609375, 59.175928 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 59.175928 ], [ 27.421875, 59.175928 ], [ 27.421875, 57.704147 ], [ 25.312500, 57.704147 ], [ 25.312500, 58.077876 ], [ 23.906250, 58.077876 ], [ 23.906250, 58.447733 ], [ 23.203125, 58.447733 ], [ 23.203125, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 56.170023 ], [ 25.312500, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.572062 ], [ 25.312500, 54.572062 ], [ 25.312500, 53.748711 ], [ 23.203125, 53.748711 ], [ 23.203125, 54.162434 ], [ 22.500000, 54.162434 ], [ 22.500000, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 56.170023 ], [ 25.312500, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 56.559482 ], [ 24.609375, 56.170023 ], [ 25.312500, 56.170023 ], [ 25.312500, 55.776573 ], [ 26.015625, 55.776573 ], [ 26.015625, 54.977614 ], [ 25.312500, 54.977614 ], [ 25.312500, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 54.572062 ], [ 22.500000, 54.572062 ], [ 22.500000, 54.977614 ], [ 21.796875, 54.977614 ], [ 21.796875, 55.379110 ], [ 21.093750, 55.379110 ], [ 21.093750, 55.776573 ], [ 20.390625, 55.776573 ], [ 20.390625, 56.170023 ], [ 21.796875, 56.170023 ], [ 21.796875, 56.559482 ], [ 24.609375, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 55.776573 ], [ 30.234375, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.572062 ], [ 31.640625, 54.572062 ], [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.330873 ], [ 31.640625, 53.330873 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.179343 ], [ 28.828125, 51.179343 ], [ 28.828125, 51.618017 ], [ 25.312500, 51.618017 ], [ 25.312500, 52.052490 ], [ 24.609375, 52.052490 ], [ 24.609375, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 52.908902 ], [ 23.203125, 52.908902 ], [ 23.203125, 53.748711 ], [ 25.312500, 53.748711 ], [ 25.312500, 54.572062 ], [ 26.015625, 54.572062 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.776573 ], [ 30.234375, 55.776573 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 56.170023 ], [ 28.828125, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.977614 ], [ 30.234375, 54.977614 ], [ 30.234375, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.162434 ], [ 31.640625, 54.162434 ], [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.330873 ], [ 30.937500, 53.330873 ], [ 30.937500, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.052490 ], [ 30.234375, 52.052490 ], [ 30.234375, 51.618017 ], [ 26.015625, 51.618017 ], [ 26.015625, 52.052490 ], [ 23.906250, 52.052490 ], [ 23.906250, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.482780 ], [ 22.500000, 52.482780 ], [ 22.500000, 52.908902 ], [ 23.203125, 52.908902 ], [ 23.203125, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 56.170023 ], [ 28.828125, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 47.989922 ], [ 27.421875, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 45.089036 ], [ 29.531250, 45.089036 ], [ 29.531250, 44.590467 ], [ 28.828125, 44.590467 ], [ 28.828125, 43.580391 ], [ 27.421875, 43.580391 ], [ 27.421875, 44.087585 ], [ 26.015625, 44.087585 ], [ 26.015625, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 44.590467 ], [ 21.796875, 44.590467 ], [ 21.796875, 45.089036 ], [ 21.093750, 45.089036 ], [ 21.093750, 45.583290 ], [ 20.390625, 45.583290 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.558860 ], [ 21.796875, 46.558860 ], [ 21.796875, 47.517201 ], [ 22.500000, 47.517201 ], [ 22.500000, 47.989922 ], [ 24.609375, 47.989922 ], [ 24.609375, 47.517201 ], [ 25.312500, 47.517201 ], [ 25.312500, 47.989922 ], [ 27.421875, 47.989922 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 48.458352 ], [ 26.718750, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 46.073231 ], [ 27.421875, 46.073231 ], [ 27.421875, 45.583290 ], [ 29.531250, 45.583290 ], [ 29.531250, 45.089036 ], [ 28.828125, 45.089036 ], [ 28.828125, 44.590467 ], [ 28.125000, 44.590467 ], [ 28.125000, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.590467 ], [ 21.093750, 44.590467 ], [ 21.093750, 45.583290 ], [ 20.390625, 45.583290 ], [ 20.390625, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.458352 ], [ 26.718750, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 44.087585 ], [ 27.421875, 43.580391 ], [ 28.828125, 43.580391 ], [ 28.828125, 43.068888 ], [ 28.125000, 43.068888 ], [ 28.125000, 42.553080 ], [ 27.421875, 42.553080 ], [ 27.421875, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 41.508577 ], [ 23.203125, 41.508577 ], [ 23.203125, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 44.087585 ], [ 27.421875, 44.087585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 44.087585 ], [ 28.125000, 43.580391 ], [ 27.421875, 43.580391 ], [ 27.421875, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 42.032974 ], [ 21.796875, 42.032974 ], [ 21.796875, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 44.087585 ], [ 28.125000, 44.087585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.421875, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 47.517201 ], [ 29.531250, 47.517201 ], [ 29.531250, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 47.040182 ], [ 27.421875, 47.040182 ], [ 27.421875, 47.989922 ] ] ], [ [ [ 27.421875, 47.989922 ], [ 26.718750, 47.989922 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 47.989922 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 46.073231 ], [ 28.125000, 45.583290 ], [ 27.421875, 45.583290 ], [ 27.421875, 46.073231 ], [ 28.125000, 46.073231 ] ] ], [ [ [ 28.125000, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 47.040182 ], [ 29.531250, 47.040182 ], [ 29.531250, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 46.073231 ], [ 28.125000, 46.073231 ], [ 28.125000, 47.040182 ], [ 27.421875, 47.040182 ], [ 27.421875, 47.517201 ], [ 26.718750, 47.517201 ], [ 26.718750, 48.458352 ], [ 28.125000, 48.458352 ], [ 28.125000, 47.989922 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 52.052490 ], [ 34.453125, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 49.837982 ], [ 38.671875, 49.837982 ], [ 38.671875, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 48.458352 ], [ 40.078125, 48.458352 ], [ 40.078125, 47.989922 ], [ 38.671875, 47.989922 ], [ 38.671875, 47.517201 ], [ 37.968750, 47.517201 ], [ 37.968750, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.558860 ], [ 35.859375, 46.558860 ], [ 35.859375, 46.073231 ], [ 35.156250, 46.073231 ], [ 35.156250, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.590467 ], [ 33.750000, 44.590467 ], [ 33.750000, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 45.583290 ], [ 33.750000, 45.583290 ], [ 33.750000, 46.073231 ], [ 31.640625, 46.073231 ], [ 31.640625, 46.558860 ], [ 30.937500, 46.558860 ], [ 30.937500, 46.073231 ], [ 30.234375, 46.073231 ], [ 30.234375, 45.583290 ], [ 29.531250, 45.583290 ], [ 29.531250, 45.089036 ], [ 28.125000, 45.089036 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.531250, 46.558860 ], [ 29.531250, 47.517201 ], [ 28.828125, 47.517201 ], [ 28.828125, 47.989922 ], [ 27.421875, 47.989922 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.517201 ], [ 24.609375, 47.517201 ], [ 24.609375, 47.989922 ], [ 21.796875, 47.989922 ], [ 21.796875, 48.458352 ], [ 22.500000, 48.458352 ], [ 22.500000, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.203125, 51.179343 ], [ 23.203125, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 52.052490 ], [ 25.312500, 52.052490 ], [ 25.312500, 51.618017 ], [ 28.828125, 51.618017 ], [ 28.828125, 51.179343 ], [ 30.937500, 51.179343 ], [ 30.937500, 52.052490 ], [ 34.453125, 52.052490 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.289339 ], [ 37.968750, 50.289339 ], [ 37.968750, 49.837982 ], [ 39.375000, 49.837982 ], [ 39.375000, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 47.989922 ], [ 37.968750, 47.989922 ], [ 37.968750, 47.040182 ], [ 35.156250, 47.040182 ], [ 35.156250, 46.558860 ], [ 34.453125, 46.558860 ], [ 34.453125, 45.583290 ], [ 35.859375, 45.583290 ], [ 35.859375, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.590467 ], [ 33.046875, 44.590467 ], [ 33.046875, 45.089036 ], [ 32.343750, 45.089036 ], [ 32.343750, 45.583290 ], [ 33.046875, 45.583290 ], [ 33.046875, 46.558860 ], [ 31.640625, 46.558860 ], [ 31.640625, 47.040182 ], [ 30.234375, 47.040182 ], [ 30.234375, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 46.073231 ], [ 28.828125, 46.073231 ], [ 28.828125, 46.558860 ], [ 29.531250, 46.558860 ], [ 29.531250, 47.040182 ], [ 28.828125, 47.040182 ], [ 28.828125, 47.989922 ], [ 28.125000, 47.989922 ], [ 28.125000, 48.458352 ], [ 26.015625, 48.458352 ], [ 26.015625, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 48.458352 ], [ 21.796875, 48.458352 ], [ 21.796875, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 50.736455 ], [ 23.906250, 50.736455 ], [ 23.906250, 51.179343 ], [ 23.203125, 51.179343 ], [ 23.203125, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 52.052490 ], [ 26.015625, 52.052490 ], [ 26.015625, 51.618017 ], [ 30.234375, 51.618017 ], [ 30.234375, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.781250, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 42.553080 ], [ 45.703125, 42.553080 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 40.979898 ], [ 42.890625, 40.979898 ], [ 42.890625, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.553080 ], [ 40.781250, 42.553080 ], [ 40.781250, 43.068888 ] ] ], [ [ [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.580391 ], [ 40.781250, 43.580391 ], [ 40.781250, 43.068888 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 43.580391 ], [ 42.187500, 43.068888 ], [ 43.593750, 43.068888 ], [ 43.593750, 42.553080 ], [ 45.703125, 42.553080 ], [ 45.703125, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 42.032974 ], [ 41.484375, 42.032974 ], [ 41.484375, 42.553080 ], [ 40.781250, 42.553080 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.580391 ], [ 42.187500, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.546875, 37.160317 ], [ 10.546875, 35.460670 ], [ 11.250000, 35.460670 ], [ 11.250000, 34.885931 ], [ 10.546875, 34.885931 ], [ 10.546875, 34.307144 ], [ 9.843750, 34.307144 ], [ 9.843750, 33.724340 ], [ 10.546875, 33.724340 ], [ 10.546875, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 30.145127 ], [ 9.140625, 30.145127 ], [ 9.140625, 31.952162 ], [ 8.437500, 31.952162 ], [ 8.437500, 32.546813 ], [ 7.734375, 32.546813 ], [ 7.734375, 34.307144 ], [ 8.437500, 34.307144 ], [ 8.437500, 37.160317 ], [ 10.546875, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 37.718590 ], [ 9.843750, 37.160317 ], [ 10.546875, 37.160317 ], [ 10.546875, 34.885931 ], [ 9.843750, 34.885931 ], [ 9.843750, 34.307144 ], [ 10.546875, 34.307144 ], [ 10.546875, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 32.546813 ], [ 10.546875, 32.546813 ], [ 10.546875, 31.952162 ], [ 9.843750, 31.952162 ], [ 9.843750, 30.751278 ], [ 9.140625, 30.751278 ], [ 9.140625, 31.353637 ], [ 8.437500, 31.353637 ], [ 8.437500, 32.546813 ], [ 7.734375, 32.546813 ], [ 7.734375, 33.137551 ], [ 7.031250, 33.137551 ], [ 7.031250, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 37.160317 ], [ 9.140625, 37.160317 ], [ 9.140625, 37.718590 ], [ 9.843750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 37.160317 ], [ 8.437500, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 32.546813 ], [ 8.437500, 32.546813 ], [ 8.437500, 31.952162 ], [ 9.140625, 31.952162 ], [ 9.140625, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 25.799891 ], [ 9.140625, 25.799891 ], [ 9.140625, 25.165173 ], [ 9.843750, 25.165173 ], [ 9.843750, 24.527135 ], [ 10.546875, 24.527135 ], [ 10.546875, 23.885838 ], [ 11.250000, 23.885838 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 20.632784 ], [ 7.734375, 20.632784 ], [ 7.734375, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -3.515625, 23.241346 ], [ -3.515625, 31.952162 ], [ -1.406250, 31.952162 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -1.406250, 34.885931 ], [ -1.406250, 35.460670 ], [ 0.000000, 35.460670 ], [ 0.000000, 36.031332 ], [ 1.406250, 36.031332 ], [ 1.406250, 36.597889 ], [ 6.328125, 36.597889 ], [ 6.328125, 37.160317 ], [ 8.437500, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.734375, 37.160317 ], [ 7.734375, 34.307144 ], [ 7.031250, 34.307144 ], [ 7.031250, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 32.546813 ], [ 8.437500, 32.546813 ], [ 8.437500, 31.353637 ], [ 9.140625, 31.353637 ], [ 9.140625, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 28.921631 ], [ 9.140625, 28.921631 ], [ 9.140625, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 24.527135 ], [ 11.250000, 24.527135 ], [ 11.250000, 23.885838 ], [ 11.953125, 23.885838 ], [ 11.953125, 23.241346 ], [ 10.546875, 23.241346 ], [ 10.546875, 22.593726 ], [ 9.140625, 22.593726 ], [ 9.140625, 21.943046 ], [ 8.437500, 21.943046 ], [ 8.437500, 21.289374 ], [ 7.734375, 21.289374 ], [ 7.734375, 20.632784 ], [ 6.328125, 20.632784 ], [ 6.328125, 19.973349 ], [ 5.625000, 19.973349 ], [ 5.625000, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 1.406250, 19.973349 ], [ 1.406250, 20.632784 ], [ 0.703125, 20.632784 ], [ 0.703125, 21.289374 ], [ 0.000000, 21.289374 ], [ 0.000000, 21.943046 ], [ -1.406250, 21.943046 ], [ -1.406250, 22.593726 ], [ -2.109375, 22.593726 ], [ -2.109375, 23.241346 ], [ -2.812500, 23.241346 ], [ -2.812500, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.724340 ], [ -2.109375, 33.724340 ], [ -2.109375, 34.885931 ], [ -2.812500, 34.885931 ], [ -2.812500, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 36.031332 ], [ 0.000000, 36.031332 ], [ 0.000000, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 37.160317 ], [ 7.734375, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 32.546813 ], [ 23.203125, 31.952162 ], [ 24.609375, 31.952162 ], [ 24.609375, 29.535230 ], [ 25.312500, 29.535230 ], [ 25.312500, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.311143 ], [ 22.500000, 19.311143 ], [ 22.500000, 19.973349 ], [ 21.093750, 19.973349 ], [ 21.093750, 20.632784 ], [ 19.687500, 20.632784 ], [ 19.687500, 21.289374 ], [ 18.984375, 21.289374 ], [ 18.984375, 21.943046 ], [ 17.578125, 21.943046 ], [ 17.578125, 22.593726 ], [ 13.359375, 22.593726 ], [ 13.359375, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 23.885838 ], [ 10.546875, 23.885838 ], [ 10.546875, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.165173 ], [ 9.140625, 25.165173 ], [ 9.140625, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 29.535230 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.145127 ], [ 9.843750, 30.145127 ], [ 9.843750, 31.353637 ], [ 10.546875, 31.353637 ], [ 10.546875, 31.952162 ], [ 11.250000, 31.952162 ], [ 11.250000, 32.546813 ], [ 15.468750, 32.546813 ], [ 15.468750, 31.353637 ], [ 16.875000, 31.353637 ], [ 16.875000, 30.751278 ], [ 18.281250, 30.751278 ], [ 18.281250, 30.145127 ], [ 19.687500, 30.145127 ], [ 19.687500, 30.751278 ], [ 20.390625, 30.751278 ], [ 20.390625, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 21.093750, 31.952162 ], [ 21.093750, 32.546813 ], [ 23.203125, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 33.137551 ], [ 22.500000, 32.546813 ], [ 23.906250, 32.546813 ], [ 23.906250, 31.952162 ], [ 24.609375, 31.952162 ], [ 24.609375, 20.632784 ], [ 23.203125, 20.632784 ], [ 23.203125, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 21.943046 ], [ 18.281250, 21.943046 ], [ 18.281250, 22.593726 ], [ 16.875000, 22.593726 ], [ 16.875000, 23.241346 ], [ 14.765625, 23.241346 ], [ 14.765625, 22.593726 ], [ 13.359375, 22.593726 ], [ 13.359375, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.885838 ], [ 11.250000, 23.885838 ], [ 11.250000, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.799891 ], [ 9.140625, 25.799891 ], [ 9.140625, 28.921631 ], [ 9.843750, 28.921631 ], [ 9.843750, 29.535230 ], [ 9.140625, 29.535230 ], [ 9.140625, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 32.546813 ], [ 11.250000, 32.546813 ], [ 11.250000, 33.137551 ], [ 13.359375, 33.137551 ], [ 13.359375, 32.546813 ], [ 14.765625, 32.546813 ], [ 14.765625, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.353637 ], [ 17.578125, 31.353637 ], [ 17.578125, 30.751278 ], [ 19.687500, 30.751278 ], [ 19.687500, 32.546813 ], [ 20.390625, 32.546813 ], [ 20.390625, 33.137551 ], [ 22.500000, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 23.241346 ], [ 13.359375, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.289374 ], [ 15.468750, 21.289374 ], [ 15.468750, 20.632784 ], [ 16.171875, 20.632784 ], [ 16.171875, 19.973349 ], [ 15.468750, 19.973349 ], [ 15.468750, 15.961329 ], [ 14.062500, 15.961329 ], [ 14.062500, 15.284185 ], [ 13.359375, 15.284185 ], [ 13.359375, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 13.239945 ], [ 14.765625, 13.239945 ], [ 14.765625, 12.554564 ], [ 13.359375, 12.554564 ], [ 13.359375, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 12.554564 ], [ 7.734375, 12.554564 ], [ 7.734375, 13.239945 ], [ 5.625000, 13.239945 ], [ 5.625000, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 0.703125, 12.554564 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 14.604847 ], [ 0.703125, 14.604847 ], [ 0.703125, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 15.961329 ], [ 4.218750, 15.961329 ], [ 4.218750, 19.311143 ], [ 6.328125, 19.311143 ], [ 6.328125, 19.973349 ], [ 7.734375, 19.973349 ], [ 7.734375, 20.632784 ], [ 8.437500, 20.632784 ], [ 8.437500, 21.289374 ], [ 9.140625, 21.289374 ], [ 9.140625, 21.943046 ], [ 10.546875, 21.943046 ], [ 10.546875, 22.593726 ], [ 11.953125, 22.593726 ], [ 11.953125, 23.241346 ], [ 13.359375, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, 23.241346 ], [ 13.359375, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.289374 ], [ 15.468750, 21.289374 ], [ 15.468750, 18.646245 ], [ 14.765625, 18.646245 ], [ 14.765625, 15.961329 ], [ 13.359375, 15.961329 ], [ 13.359375, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 12.554564 ], [ 13.359375, 12.554564 ], [ 13.359375, 13.239945 ], [ 11.250000, 13.239945 ], [ 11.250000, 13.923404 ], [ 9.843750, 13.923404 ], [ 9.843750, 13.239945 ], [ 6.328125, 13.239945 ], [ 6.328125, 13.923404 ], [ 3.515625, 13.923404 ], [ 3.515625, 11.867351 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.923404 ], [ 0.000000, 13.923404 ], [ 0.000000, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.625000, 19.311143 ], [ 5.625000, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 20.632784 ], [ 7.734375, 20.632784 ], [ 7.734375, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 23.241346 ], [ 13.359375, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 5.615986 ], [ 0.703125, 5.615986 ], [ 0.703125, 10.487812 ] ] ], [ [ [ 0.703125, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.406250, 10.487812 ], [ 1.406250, 6.315299 ], [ 0.000000, 6.315299 ], [ 0.000000, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.000000, 8.407168 ], [ 0.000000, 10.487812 ], [ -0.703125, 10.487812 ], [ -0.703125, 11.178402 ], [ 0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 11.867351 ], [ 3.515625, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 3.515625, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 2.812500, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 9.795678 ], [ 2.812500, 9.795678 ], [ 2.812500, 9.102097 ], [ 2.109375, 9.102097 ], [ 2.109375, 6.315299 ], [ 1.406250, 6.315299 ], [ 1.406250, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.406250, 11.178402 ], [ 1.406250, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 2.812500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 13.923404 ], [ 5.625000, 13.239945 ], [ 7.734375, 13.239945 ], [ 7.734375, 12.554564 ], [ 9.843750, 12.554564 ], [ 9.843750, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.407168 ], [ 11.953125, 8.407168 ], [ 11.953125, 6.315299 ], [ 10.546875, 6.315299 ], [ 10.546875, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 4.915833 ], [ 4.921875, 4.915833 ], [ 4.921875, 5.615986 ], [ 4.218750, 5.615986 ], [ 4.218750, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.515625, 9.102097 ], [ 3.515625, 12.554564 ], [ 4.218750, 12.554564 ], [ 4.218750, 13.923404 ], [ 5.625000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 13.923404 ], [ 11.250000, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 11.178402 ], [ 13.359375, 11.178402 ], [ 13.359375, 10.487812 ], [ 12.656250, 10.487812 ], [ 12.656250, 8.407168 ], [ 11.953125, 8.407168 ], [ 11.953125, 7.710992 ], [ 11.250000, 7.710992 ], [ 11.250000, 7.013668 ], [ 9.140625, 7.013668 ], [ 9.140625, 6.315299 ], [ 8.437500, 6.315299 ], [ 8.437500, 4.915833 ], [ 4.921875, 4.915833 ], [ 4.921875, 5.615986 ], [ 4.218750, 5.615986 ], [ 4.218750, 6.315299 ], [ 2.109375, 6.315299 ], [ 2.109375, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 13.923404 ], [ 6.328125, 13.923404 ], [ 6.328125, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 13.923404 ], [ 11.250000, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.843750, 1.406109 ], [ 9.843750, 0.703107 ], [ 9.140625, 0.703107 ], [ 9.140625, 1.406109 ], [ 9.843750, 1.406109 ] ] ], [ [ [ 11.250000, 1.406109 ], [ 9.843750, 1.406109 ], [ 9.843750, 2.108899 ], [ 11.250000, 2.108899 ], [ 11.250000, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.811371 ], [ 11.250000, 1.406109 ], [ 9.140625, 1.406109 ], [ 9.140625, 2.811371 ], [ 11.250000, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 22.593726 ], [ 17.578125, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 19.311143 ], [ 23.906250, 19.311143 ], [ 23.906250, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 13.239945 ], [ 21.796875, 13.239945 ], [ 21.796875, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 7.710992 ], [ 15.468750, 7.710992 ], [ 15.468750, 8.407168 ], [ 14.765625, 8.407168 ], [ 14.765625, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 15.468750, 9.795678 ], [ 15.468750, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.359375, 13.923404 ], [ 13.359375, 15.284185 ], [ 14.062500, 15.284185 ], [ 14.062500, 15.961329 ], [ 15.468750, 15.961329 ], [ 15.468750, 19.973349 ], [ 16.171875, 19.973349 ], [ 16.171875, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 22.593726 ], [ 17.578125, 22.593726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 23.241346 ], [ 16.875000, 22.593726 ], [ 18.281250, 22.593726 ], [ 18.281250, 21.943046 ], [ 19.687500, 21.943046 ], [ 19.687500, 21.289374 ], [ 21.093750, 21.289374 ], [ 21.093750, 20.632784 ], [ 22.500000, 20.632784 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 15.961329 ], [ 22.500000, 15.961329 ], [ 22.500000, 13.923404 ], [ 21.796875, 13.923404 ], [ 21.796875, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 11.178402 ], [ 21.093750, 11.178402 ], [ 21.093750, 10.487812 ], [ 20.390625, 10.487812 ], [ 20.390625, 9.102097 ], [ 18.281250, 9.102097 ], [ 18.281250, 8.407168 ], [ 17.578125, 8.407168 ], [ 17.578125, 7.710992 ], [ 14.765625, 7.710992 ], [ 14.765625, 9.102097 ], [ 13.359375, 9.102097 ], [ 13.359375, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 13.923404 ], [ 13.359375, 13.923404 ], [ 13.359375, 15.961329 ], [ 14.765625, 15.961329 ], [ 14.765625, 18.646245 ], [ 15.468750, 18.646245 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 23.241346 ], [ 16.875000, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.468750, 10.487812 ], [ 15.468750, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 8.407168 ], [ 15.468750, 8.407168 ], [ 15.468750, 7.013668 ], [ 14.765625, 7.013668 ], [ 14.765625, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 1.406109 ], [ 15.468750, 1.406109 ], [ 15.468750, 2.108899 ], [ 9.843750, 2.108899 ], [ 9.843750, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 9.140625, 5.615986 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.315299 ], [ 11.953125, 6.315299 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.359375, 9.102097 ], [ 13.359375, 10.487812 ], [ 14.062500, 10.487812 ], [ 14.062500, 11.178402 ], [ 14.765625, 11.178402 ] ] ], [ [ [ 14.765625, 11.867351 ], [ 14.062500, 11.867351 ], [ 14.062500, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 12.554564 ], [ 14.765625, 10.487812 ], [ 14.062500, 10.487812 ], [ 14.062500, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 6.315299 ], [ 14.062500, 6.315299 ], [ 14.062500, 4.214943 ], [ 14.765625, 4.214943 ], [ 14.765625, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 2.108899 ], [ 14.062500, 2.108899 ], [ 14.062500, 2.811371 ], [ 9.140625, 2.811371 ], [ 9.140625, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 7.013668 ], [ 11.250000, 7.013668 ], [ 11.250000, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 12.554564 ], [ 14.765625, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 11.178402 ], [ 23.203125, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 8.407168 ], [ 24.609375, 8.407168 ], [ 24.609375, 7.710992 ], [ 25.312500, 7.710992 ], [ 25.312500, 7.013668 ], [ 26.015625, 7.013668 ], [ 26.015625, 5.615986 ], [ 27.421875, 5.615986 ], [ 27.421875, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.915833 ], [ 18.984375, 4.915833 ], [ 18.984375, 4.214943 ], [ 18.281250, 4.214943 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 7.013668 ], [ 15.468750, 7.013668 ], [ 15.468750, 7.710992 ], [ 18.281250, 7.710992 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 21.093750, 9.102097 ], [ 21.093750, 9.795678 ], [ 21.796875, 9.795678 ], [ 21.796875, 10.487812 ], [ 22.500000, 10.487812 ], [ 22.500000, 11.178402 ], [ 23.203125, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 11.178402 ], [ 22.500000, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 8.407168 ], [ 24.609375, 8.407168 ], [ 24.609375, 7.013668 ], [ 26.015625, 7.013668 ], [ 26.015625, 5.615986 ], [ 24.609375, 5.615986 ], [ 24.609375, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.214943 ], [ 21.093750, 4.214943 ], [ 21.093750, 4.915833 ], [ 18.281250, 4.915833 ], [ 18.281250, 3.513421 ], [ 17.578125, 3.513421 ], [ 17.578125, 4.214943 ], [ 16.875000, 4.214943 ], [ 16.875000, 3.513421 ], [ 16.171875, 3.513421 ], [ 16.171875, 2.811371 ], [ 15.468750, 2.811371 ], [ 15.468750, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 4.214943 ], [ 14.062500, 4.214943 ], [ 14.062500, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 7.710992 ], [ 17.578125, 7.710992 ], [ 17.578125, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 9.102097 ], [ 20.390625, 9.102097 ], [ 20.390625, 10.487812 ], [ 21.093750, 10.487812 ], [ 21.093750, 11.178402 ], [ 22.500000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.015625, 35.460670 ], [ 26.015625, 34.885931 ], [ 23.203125, 34.885931 ], [ 23.203125, 35.460670 ], [ 26.015625, 35.460670 ] ] ], [ [ [ 24.609375, 41.508577 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 39.909736 ], [ 22.500000, 39.909736 ], [ 22.500000, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.160317 ], [ 22.500000, 37.160317 ], [ 22.500000, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 37.160317 ], [ 21.093750, 37.160317 ], [ 21.093750, 38.272689 ], [ 20.390625, 38.272689 ], [ 20.390625, 40.446947 ], [ 21.093750, 40.446947 ], [ 21.093750, 40.979898 ], [ 22.500000, 40.979898 ], [ 22.500000, 41.508577 ], [ 24.609375, 41.508577 ] ] ], [ [ [ 26.718750, 40.979898 ], [ 26.015625, 40.979898 ], [ 26.015625, 41.508577 ], [ 26.718750, 41.508577 ], [ 26.718750, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 41.508577 ], [ 26.015625, 40.979898 ], [ 23.203125, 40.979898 ], [ 23.203125, 40.446947 ], [ 22.500000, 40.446947 ], [ 22.500000, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 22.500000, 37.718590 ], [ 22.500000, 36.597889 ], [ 21.093750, 36.597889 ], [ 21.093750, 38.822591 ], [ 19.687500, 38.822591 ], [ 19.687500, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 41.508577 ], [ 26.015625, 41.508577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.460670 ], [ 33.750000, 34.885931 ], [ 33.046875, 34.885931 ], [ 33.046875, 35.460670 ], [ 33.750000, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.460670 ], [ 33.750000, 34.885931 ], [ 31.640625, 34.885931 ], [ 31.640625, 35.460670 ], [ 33.750000, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 34.885931 ], [ 33.750000, 34.307144 ], [ 32.343750, 34.307144 ], [ 32.343750, 34.885931 ], [ 33.750000, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 27.683528 ], [ 33.046875, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 25.799891 ], [ 34.453125, 25.799891 ], [ 34.453125, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 22.593726 ], [ 24.609375, 22.593726 ], [ 24.609375, 31.952162 ], [ 26.015625, 31.952162 ], [ 26.015625, 31.353637 ], [ 29.531250, 31.353637 ], [ 29.531250, 31.952162 ], [ 31.640625, 31.952162 ], [ 31.640625, 31.353637 ], [ 33.750000, 31.353637 ], [ 33.750000, 30.145127 ], [ 34.453125, 30.145127 ], [ 34.453125, 28.921631 ], [ 33.750000, 28.921631 ], [ 33.750000, 27.683528 ], [ 33.046875, 27.683528 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 29.535230 ], [ 32.343750, 29.535230 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 30.145127 ], [ 31.640625, 30.145127 ], [ 31.640625, 29.535230 ], [ 32.343750, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.640625, 31.353637 ], [ 31.640625, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 30.145127 ], [ 35.156250, 30.145127 ], [ 35.156250, 28.921631 ], [ 34.453125, 28.921631 ], [ 34.453125, 27.683528 ], [ 33.046875, 27.683528 ], [ 33.046875, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.453125, 26.431228 ], [ 34.453125, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 23.241346 ], [ 35.859375, 23.241346 ], [ 35.859375, 22.593726 ], [ 36.562500, 22.593726 ], [ 36.562500, 21.943046 ], [ 25.312500, 21.943046 ], [ 25.312500, 29.535230 ], [ 24.609375, 29.535230 ], [ 24.609375, 31.353637 ], [ 27.421875, 31.353637 ], [ 27.421875, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.353637 ], [ 31.640625, 31.353637 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.718750, 40.446947 ], [ 28.125000, 40.446947 ], [ 28.125000, 40.979898 ], [ 28.828125, 40.979898 ], [ 28.828125, 41.508577 ], [ 32.343750, 41.508577 ], [ 32.343750, 42.032974 ], [ 34.453125, 42.032974 ], [ 34.453125, 42.553080 ], [ 35.156250, 42.553080 ], [ 35.156250, 42.032974 ], [ 35.859375, 42.032974 ], [ 35.859375, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 40.979898 ], [ 39.375000, 40.979898 ], [ 39.375000, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.032974 ], [ 42.187500, 42.032974 ], [ 42.187500, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 40.446947 ], [ 44.296875, 40.446947 ], [ 44.296875, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 38.272689 ], [ 43.593750, 38.272689 ], [ 43.593750, 37.718590 ], [ 42.187500, 37.718590 ], [ 42.187500, 37.160317 ], [ 36.562500, 37.160317 ], [ 36.562500, 36.597889 ], [ 35.859375, 36.597889 ], [ 35.859375, 36.031332 ], [ 35.156250, 36.031332 ], [ 35.156250, 36.597889 ], [ 31.640625, 36.597889 ], [ 31.640625, 37.160317 ], [ 30.234375, 37.160317 ], [ 30.234375, 36.597889 ], [ 28.125000, 36.597889 ], [ 28.125000, 37.160317 ], [ 26.718750, 37.160317 ], [ 26.718750, 37.718590 ], [ 26.015625, 37.718590 ], [ 26.015625, 38.822591 ], [ 26.718750, 38.822591 ], [ 26.718750, 39.368279 ], [ 26.015625, 39.368279 ], [ 26.015625, 39.909736 ], [ 26.718750, 39.909736 ], [ 26.718750, 40.446947 ] ] ], [ [ [ 26.718750, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 42.032974 ], [ 27.421875, 42.032974 ], [ 27.421875, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 40.446947 ] ] ], [ [ [ 43.593750, 37.718590 ], [ 44.296875, 37.718590 ], [ 44.296875, 37.160317 ], [ 43.593750, 37.160317 ], [ 43.593750, 37.718590 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 40.446947 ], [ 29.531250, 40.446947 ], [ 29.531250, 40.979898 ], [ 32.343750, 40.979898 ], [ 32.343750, 41.508577 ], [ 33.750000, 41.508577 ], [ 33.750000, 42.032974 ], [ 35.156250, 42.032974 ], [ 35.156250, 41.508577 ], [ 37.265625, 41.508577 ], [ 37.265625, 40.979898 ], [ 41.484375, 40.979898 ], [ 41.484375, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 36.031332 ], [ 35.859375, 36.031332 ], [ 35.859375, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.031332 ], [ 31.640625, 36.031332 ], [ 31.640625, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 36.031332 ], [ 28.828125, 36.031332 ], [ 28.828125, 36.597889 ], [ 27.421875, 36.597889 ], [ 27.421875, 37.160317 ], [ 26.718750, 37.160317 ], [ 26.718750, 37.718590 ], [ 26.015625, 37.718590 ], [ 26.015625, 38.272689 ], [ 26.718750, 38.272689 ], [ 26.718750, 38.822591 ], [ 26.015625, 38.822591 ], [ 26.015625, 39.368279 ], [ 26.718750, 39.368279 ], [ 26.718750, 39.909736 ], [ 26.015625, 39.909736 ], [ 26.015625, 40.979898 ], [ 26.718750, 40.979898 ], [ 26.718750, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 42.032974 ], [ 28.125000, 42.032974 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 28.828125, 40.979898 ], [ 27.421875, 40.979898 ], [ 27.421875, 40.446947 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 33.724340 ], [ 35.156250, 33.137551 ], [ 34.453125, 33.137551 ], [ 34.453125, 33.724340 ], [ 35.156250, 33.724340 ] ] ], [ [ [ 35.859375, 33.724340 ], [ 35.156250, 33.724340 ], [ 35.156250, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 33.724340 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.307144 ], [ 36.562500, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 34.307144 ], [ 36.562500, 34.307144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.484375, 37.160317 ], [ 41.484375, 36.597889 ], [ 40.781250, 36.597889 ], [ 40.781250, 34.307144 ], [ 39.375000, 34.307144 ], [ 39.375000, 33.724340 ], [ 38.671875, 33.724340 ], [ 38.671875, 33.137551 ], [ 37.265625, 33.137551 ], [ 37.265625, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 37.160317 ], [ 41.484375, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.160317 ], [ 42.187500, 36.597889 ], [ 41.484375, 36.597889 ], [ 41.484375, 34.885931 ], [ 40.781250, 34.885931 ], [ 40.781250, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.137551 ], [ 37.968750, 33.137551 ], [ 37.968750, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.724340 ], [ 36.562500, 33.724340 ], [ 36.562500, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 36.031332 ], [ 36.562500, 36.031332 ], [ 36.562500, 36.597889 ], [ 40.781250, 36.597889 ], [ 40.781250, 37.160317 ], [ 42.187500, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.718590 ], [ 43.593750, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.031332 ], [ 45.703125, 36.031332 ], [ 45.703125, 34.885931 ], [ 45.000000, 34.885931 ], [ 45.000000, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 30.145127 ], [ 47.109375, 30.145127 ], [ 47.109375, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 30.145127 ], [ 42.187500, 30.145127 ], [ 42.187500, 30.751278 ], [ 41.484375, 30.751278 ], [ 41.484375, 31.353637 ], [ 40.078125, 31.353637 ], [ 40.078125, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 36.597889 ], [ 41.484375, 36.597889 ], [ 41.484375, 37.160317 ], [ 42.187500, 37.160317 ], [ 42.187500, 37.718590 ], [ 43.593750, 37.718590 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 37.160317 ], [ 45.000000, 36.597889 ], [ 45.703125, 36.597889 ], [ 45.703125, 35.460670 ], [ 46.406250, 35.460670 ], [ 46.406250, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 33.137551 ], [ 46.406250, 33.137551 ], [ 46.406250, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 30.145127 ], [ 47.109375, 30.145127 ], [ 47.109375, 29.535230 ], [ 46.406250, 29.535230 ], [ 46.406250, 28.921631 ], [ 44.296875, 28.921631 ], [ 44.296875, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 31.353637 ], [ 40.781250, 31.353637 ], [ 40.781250, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.546813 ], [ 38.671875, 32.546813 ], [ 38.671875, 33.137551 ], [ 39.375000, 33.137551 ], [ 39.375000, 33.724340 ], [ 40.781250, 33.724340 ], [ 40.781250, 34.885931 ], [ 41.484375, 34.885931 ], [ 41.484375, 36.597889 ], [ 42.187500, 36.597889 ], [ 42.187500, 37.160317 ], [ 45.000000, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.453125, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 30.145127 ], [ 33.750000, 30.145127 ], [ 33.750000, 31.353637 ], [ 34.453125, 31.353637 ] ] ], [ [ [ 35.156250, 31.952162 ], [ 34.453125, 31.952162 ], [ 34.453125, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 31.952162 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 31.952162 ], [ 35.156250, 30.145127 ], [ 34.453125, 30.145127 ], [ 34.453125, 31.952162 ], [ 35.156250, 31.952162 ] ] ], [ [ [ 35.859375, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 31.952162 ], [ 35.156250, 31.353637 ], [ 34.453125, 31.353637 ], [ 34.453125, 31.952162 ], [ 35.156250, 31.952162 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 32.546813 ], [ 35.859375, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 32.546813 ], [ 35.859375, 32.546813 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.546813 ], [ 37.968750, 32.546813 ], [ 37.968750, 31.952162 ], [ 36.562500, 31.952162 ], [ 36.562500, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 29.535230 ], [ 34.453125, 29.535230 ], [ 34.453125, 30.145127 ], [ 35.156250, 30.145127 ], [ 35.156250, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.546813 ], [ 39.375000, 32.546813 ], [ 39.375000, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 28.921631 ], [ 35.156250, 28.921631 ], [ 35.156250, 31.353637 ], [ 35.859375, 31.353637 ], [ 35.859375, 32.546813 ], [ 37.968750, 32.546813 ], [ 37.968750, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 22.593726 ], [ 36.562500, 19.311143 ], [ 37.265625, 19.311143 ], [ 37.265625, 18.646245 ], [ 37.968750, 18.646245 ], [ 37.968750, 17.978733 ], [ 37.265625, 17.978733 ], [ 37.265625, 17.308688 ], [ 36.562500, 17.308688 ], [ 36.562500, 15.961329 ], [ 35.859375, 15.961329 ], [ 35.859375, 12.554564 ], [ 35.156250, 12.554564 ], [ 35.156250, 11.867351 ], [ 34.453125, 11.867351 ], [ 34.453125, 11.178402 ], [ 33.750000, 11.178402 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.554564 ], [ 31.640625, 12.554564 ], [ 31.640625, 10.487812 ], [ 30.937500, 10.487812 ], [ 30.937500, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 10.487812 ], [ 24.609375, 10.487812 ], [ 24.609375, 9.795678 ], [ 23.906250, 9.795678 ], [ 23.906250, 9.102097 ], [ 23.203125, 9.102097 ], [ 23.203125, 10.487812 ], [ 22.500000, 10.487812 ], [ 22.500000, 12.554564 ], [ 21.796875, 12.554564 ], [ 21.796875, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 15.961329 ], [ 23.203125, 15.961329 ], [ 23.203125, 20.632784 ], [ 24.609375, 20.632784 ], [ 24.609375, 22.593726 ], [ 36.562500, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 21.943046 ], [ 36.562500, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 18.646245 ], [ 37.968750, 18.646245 ], [ 37.968750, 17.978733 ], [ 38.671875, 17.978733 ], [ 38.671875, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.636192 ], [ 36.562500, 16.636192 ], [ 36.562500, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.178402 ], [ 34.453125, 11.178402 ], [ 34.453125, 9.795678 ], [ 33.750000, 9.795678 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 11.867351 ], [ 32.343750, 11.867351 ], [ 32.343750, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 9.795678 ], [ 28.828125, 9.795678 ], [ 28.828125, 9.102097 ], [ 28.125000, 9.102097 ], [ 28.125000, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.487812 ], [ 25.312500, 10.487812 ], [ 25.312500, 9.795678 ], [ 24.609375, 9.795678 ], [ 24.609375, 8.407168 ], [ 23.203125, 8.407168 ], [ 23.203125, 9.102097 ], [ 23.906250, 9.102097 ], [ 23.906250, 9.795678 ], [ 23.203125, 9.795678 ], [ 23.203125, 11.178402 ], [ 22.500000, 11.178402 ], [ 22.500000, 12.554564 ], [ 21.796875, 12.554564 ], [ 21.796875, 13.239945 ], [ 22.500000, 13.239945 ], [ 22.500000, 15.284185 ], [ 23.906250, 15.284185 ], [ 23.906250, 19.973349 ], [ 25.312500, 19.973349 ], [ 25.312500, 21.943046 ], [ 36.562500, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.554564 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 8.407168 ], [ 32.343750, 8.407168 ], [ 32.343750, 7.710992 ], [ 33.750000, 7.710992 ], [ 33.750000, 7.013668 ], [ 34.453125, 7.013668 ], [ 34.453125, 6.315299 ], [ 35.156250, 6.315299 ], [ 35.156250, 4.915833 ], [ 33.750000, 4.915833 ], [ 33.750000, 4.214943 ], [ 30.937500, 4.214943 ], [ 30.937500, 3.513421 ], [ 29.531250, 3.513421 ], [ 29.531250, 4.915833 ], [ 26.718750, 4.915833 ], [ 26.718750, 5.615986 ], [ 26.015625, 5.615986 ], [ 26.015625, 7.013668 ], [ 24.609375, 7.013668 ], [ 24.609375, 8.407168 ], [ 23.203125, 8.407168 ], [ 23.203125, 9.102097 ], [ 23.906250, 9.102097 ], [ 23.906250, 9.795678 ], [ 24.609375, 9.795678 ], [ 24.609375, 10.487812 ], [ 25.312500, 10.487812 ], [ 25.312500, 9.795678 ], [ 30.937500, 9.795678 ], [ 30.937500, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 12.554564 ], [ 33.046875, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 11.867351 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 8.407168 ], [ 33.046875, 8.407168 ], [ 33.046875, 7.710992 ], [ 33.750000, 7.710992 ], [ 33.750000, 7.013668 ], [ 34.453125, 7.013668 ], [ 34.453125, 5.615986 ], [ 35.156250, 5.615986 ], [ 35.156250, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 4.214943 ], [ 27.421875, 4.214943 ], [ 27.421875, 5.615986 ], [ 26.015625, 5.615986 ], [ 26.015625, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 9.795678 ], [ 25.312500, 9.795678 ], [ 25.312500, 10.487812 ], [ 26.015625, 10.487812 ], [ 26.015625, 9.795678 ], [ 28.125000, 9.795678 ], [ 28.125000, 9.102097 ], [ 28.828125, 9.102097 ], [ 28.828125, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.487812 ], [ 32.343750, 10.487812 ], [ 32.343750, 11.867351 ], [ 33.046875, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 4.214943 ], [ 34.453125, 0.703107 ], [ 33.750000, 0.703107 ], [ 33.750000, -0.703107 ], [ 30.234375, -0.703107 ], [ 30.234375, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 2.811371 ], [ 30.234375, 2.811371 ], [ 30.234375, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 4.214943 ], [ 34.453125, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.513421 ], [ 34.453125, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -0.703107 ], [ 30.937500, -0.703107 ], [ 30.937500, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.937500, 1.406109 ], [ 30.937500, 3.513421 ], [ 34.453125, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.484375, 13.923404 ], [ 42.187500, 13.923404 ], [ 42.187500, 13.239945 ], [ 42.890625, 13.239945 ], [ 42.890625, 12.554564 ], [ 41.484375, 12.554564 ], [ 41.484375, 13.923404 ] ] ], [ [ [ 38.671875, 15.961329 ], [ 39.375000, 15.961329 ], [ 39.375000, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 14.604847 ], [ 35.859375, 14.604847 ], [ 35.859375, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 17.978733 ], [ 38.671875, 17.978733 ], [ 38.671875, 15.961329 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.484375, 13.239945 ], [ 42.890625, 13.239945 ], [ 42.890625, 12.554564 ], [ 41.484375, 12.554564 ], [ 41.484375, 13.239945 ] ] ], [ [ [ 40.078125, 14.604847 ], [ 37.265625, 14.604847 ], [ 37.265625, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 16.636192 ], [ 37.265625, 16.636192 ], [ 37.265625, 17.308688 ], [ 38.671875, 17.308688 ], [ 38.671875, 15.961329 ], [ 39.375000, 15.961329 ], [ 39.375000, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 14.604847 ] ] ], [ [ [ 40.078125, 14.604847 ], [ 41.484375, 14.604847 ], [ 41.484375, 13.923404 ], [ 40.078125, 13.923404 ], [ 40.078125, 14.604847 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.890625, 12.554564 ], [ 42.890625, 11.178402 ], [ 41.484375, 11.178402 ], [ 41.484375, 12.554564 ], [ 42.890625, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 12.554564 ], [ 43.593750, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.178402 ], [ 41.484375, 11.178402 ], [ 41.484375, 11.867351 ], [ 42.187500, 11.867351 ], [ 42.187500, 12.554564 ], [ 43.593750, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 4.915833 ], [ 36.562500, 4.214943 ], [ 38.671875, 4.214943 ], [ 38.671875, 3.513421 ], [ 39.375000, 3.513421 ], [ 39.375000, 4.214943 ], [ 41.484375, 4.214943 ], [ 41.484375, 3.513421 ], [ 40.781250, 3.513421 ], [ 40.781250, -2.108899 ], [ 40.078125, -2.108899 ], [ 40.078125, -3.513421 ], [ 37.265625, -3.513421 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 35.156250, -2.108899 ], [ 35.156250, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 4.915833 ], [ 36.562500, 4.915833 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 5.615986 ], [ 35.859375, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 3.513421 ], [ 40.781250, 3.513421 ], [ 40.781250, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 37.968750, -3.513421 ], [ 37.968750, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.108899 ], [ 34.453125, -2.108899 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.000000 ], [ 34.453125, 0.000000 ], [ 34.453125, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.453125, 2.108899 ], [ 34.453125, 3.513421 ], [ 33.750000, 3.513421 ], [ 33.750000, 4.214943 ], [ 34.453125, 4.214943 ], [ 34.453125, 4.915833 ], [ 35.156250, 4.915833 ], [ 35.156250, 5.615986 ], [ 35.859375, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 14.604847 ], [ 40.781250, 13.923404 ], [ 41.484375, 13.923404 ], [ 41.484375, 11.178402 ], [ 42.187500, 11.178402 ], [ 42.187500, 10.487812 ], [ 42.890625, 10.487812 ], [ 42.890625, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 9.102097 ], [ 45.000000, 9.102097 ], [ 45.000000, 8.407168 ], [ 47.109375, 8.407168 ], [ 47.109375, 7.710992 ], [ 46.406250, 7.710992 ], [ 46.406250, 7.013668 ], [ 45.703125, 7.013668 ], [ 45.703125, 6.315299 ], [ 45.000000, 6.315299 ], [ 45.000000, 5.615986 ], [ 43.593750, 5.615986 ], [ 43.593750, 4.915833 ], [ 41.484375, 4.915833 ], [ 41.484375, 4.214943 ], [ 39.375000, 4.214943 ], [ 39.375000, 3.513421 ], [ 38.671875, 3.513421 ], [ 38.671875, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 4.915833 ], [ 35.156250, 4.915833 ], [ 35.156250, 6.315299 ], [ 34.453125, 6.315299 ], [ 34.453125, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.710992 ], [ 32.343750, 7.710992 ], [ 32.343750, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 11.178402 ], [ 34.453125, 11.178402 ], [ 34.453125, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 14.604847 ], [ 40.781250, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 13.923404 ], [ 41.484375, 13.923404 ], [ 41.484375, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 11.867351 ], [ 41.484375, 11.867351 ], [ 41.484375, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 9.795678 ], [ 43.593750, 9.795678 ], [ 43.593750, 9.102097 ], [ 44.296875, 9.102097 ], [ 44.296875, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.513421 ], [ 36.562500, 3.513421 ], [ 36.562500, 4.214943 ], [ 35.859375, 4.214943 ], [ 35.859375, 5.615986 ], [ 34.453125, 5.615986 ], [ 34.453125, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 9.795678 ], [ 34.453125, 9.795678 ], [ 34.453125, 11.178402 ], [ 35.156250, 11.178402 ], [ 35.156250, 11.867351 ], [ 35.859375, 11.867351 ], [ 35.859375, 12.554564 ], [ 36.562500, 12.554564 ], [ 36.562500, 13.923404 ], [ 37.265625, 13.923404 ], [ 37.265625, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.312500, 55.379110 ], [ 70.312500, 54.572062 ], [ 71.015625, 54.572062 ], [ 71.015625, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 53.748711 ], [ 75.234375, 53.748711 ], [ 75.234375, 54.162434 ], [ 75.937500, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.179343 ], [ 83.671875, 51.179343 ], [ 83.671875, 50.736455 ], [ 84.375000, 50.736455 ], [ 84.375000, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.484375, 48.922499 ], [ 86.484375, 48.458352 ], [ 85.078125, 48.458352 ], [ 85.078125, 47.040182 ], [ 83.671875, 47.040182 ], [ 83.671875, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 46.558860 ], [ 82.265625, 46.558860 ], [ 82.265625, 45.583290 ], [ 80.859375, 45.583290 ], [ 80.859375, 45.089036 ], [ 79.453125, 45.089036 ], [ 79.453125, 44.590467 ], [ 80.156250, 44.590467 ], [ 80.156250, 43.580391 ], [ 80.859375, 43.580391 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 78.750000, 42.553080 ], [ 78.750000, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 43.580391 ], [ 73.125000, 43.580391 ], [ 73.125000, 42.553080 ], [ 71.718750, 42.553080 ], [ 71.718750, 43.068888 ], [ 71.015625, 43.068888 ], [ 71.015625, 42.553080 ], [ 70.312500, 42.553080 ], [ 70.312500, 42.032974 ], [ 69.609375, 42.032974 ], [ 69.609375, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 67.500000, 40.979898 ], [ 67.500000, 41.508577 ], [ 66.093750, 41.508577 ], [ 66.093750, 42.032974 ], [ 65.390625, 42.032974 ], [ 65.390625, 42.553080 ], [ 66.093750, 42.553080 ], [ 66.093750, 43.068888 ], [ 65.390625, 43.068888 ], [ 65.390625, 43.580391 ], [ 64.687500, 43.580391 ], [ 64.687500, 44.087585 ], [ 62.578125, 44.087585 ], [ 62.578125, 43.580391 ], [ 61.171875, 43.580391 ], [ 61.171875, 44.087585 ], [ 60.468750, 44.087585 ], [ 60.468750, 44.590467 ], [ 59.765625, 44.590467 ], [ 59.765625, 45.089036 ], [ 58.359375, 45.089036 ], [ 58.359375, 45.583290 ], [ 56.953125, 45.583290 ], [ 56.953125, 45.089036 ], [ 55.546875, 45.089036 ], [ 55.546875, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 54.140625, 42.032974 ], [ 54.140625, 42.553080 ], [ 52.734375, 42.553080 ], [ 52.734375, 42.032974 ], [ 52.031250, 42.032974 ], [ 52.031250, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.580391 ], [ 50.625000, 43.580391 ], [ 50.625000, 44.087585 ], [ 49.921875, 44.087585 ], [ 49.921875, 44.590467 ], [ 50.625000, 44.590467 ], [ 50.625000, 45.583290 ], [ 52.734375, 45.583290 ], [ 52.734375, 47.040182 ], [ 49.921875, 47.040182 ], [ 49.921875, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 50.289339 ], [ 48.515625, 50.289339 ], [ 48.515625, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 52.052490 ], [ 52.031250, 52.052490 ], [ 52.031250, 51.618017 ], [ 53.437500, 51.618017 ], [ 53.437500, 51.179343 ], [ 54.140625, 51.179343 ], [ 54.140625, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.618017 ], [ 59.765625, 51.618017 ], [ 59.765625, 52.052490 ], [ 60.468750, 52.052490 ], [ 60.468750, 52.908902 ], [ 61.171875, 52.908902 ], [ 61.171875, 53.330873 ], [ 60.468750, 53.330873 ], [ 60.468750, 53.748711 ], [ 61.171875, 53.748711 ], [ 61.171875, 54.162434 ], [ 63.281250, 54.162434 ], [ 63.281250, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.977614 ], [ 68.203125, 54.977614 ], [ 68.203125, 55.379110 ], [ 70.312500, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 55.379110 ], [ 69.609375, 54.977614 ], [ 71.015625, 54.977614 ], [ 71.015625, 54.162434 ], [ 73.828125, 54.162434 ], [ 73.828125, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 53.330873 ], [ 74.531250, 53.330873 ], [ 74.531250, 53.748711 ], [ 75.234375, 53.748711 ], [ 75.234375, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.908902 ], [ 78.750000, 52.908902 ], [ 78.750000, 52.052490 ], [ 79.453125, 52.052490 ], [ 79.453125, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.484375, 48.922499 ], [ 86.484375, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.040182 ], [ 83.671875, 47.040182 ], [ 83.671875, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 46.558860 ], [ 82.265625, 46.558860 ], [ 82.265625, 45.089036 ], [ 80.156250, 45.089036 ], [ 80.156250, 44.087585 ], [ 80.859375, 44.087585 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.446947 ], [ 68.203125, 40.446947 ], [ 68.203125, 40.979898 ], [ 66.796875, 40.979898 ], [ 66.796875, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 64.687500, 43.068888 ], [ 64.687500, 43.580391 ], [ 61.875000, 43.580391 ], [ 61.875000, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.590467 ], [ 59.765625, 44.590467 ], [ 59.765625, 45.089036 ], [ 58.359375, 45.089036 ], [ 58.359375, 45.583290 ], [ 57.656250, 45.583290 ], [ 57.656250, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.553080 ], [ 51.328125, 42.553080 ], [ 51.328125, 43.580391 ], [ 50.625000, 43.580391 ], [ 50.625000, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.089036 ], [ 52.734375, 45.089036 ], [ 52.734375, 45.583290 ], [ 53.437500, 45.583290 ], [ 53.437500, 46.558860 ], [ 52.734375, 46.558860 ], [ 52.734375, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.040182 ], [ 47.812500, 47.040182 ], [ 47.812500, 47.517201 ], [ 47.109375, 47.517201 ], [ 47.109375, 47.989922 ], [ 46.406250, 47.989922 ], [ 46.406250, 48.458352 ], [ 47.109375, 48.458352 ], [ 47.109375, 48.922499 ], [ 46.406250, 48.922499 ], [ 46.406250, 49.382373 ], [ 47.109375, 49.382373 ], [ 47.109375, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 51.179343 ], [ 50.625000, 51.179343 ], [ 50.625000, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.179343 ], [ 54.843750, 51.179343 ], [ 54.843750, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.736455 ], [ 61.875000, 50.736455 ], [ 61.875000, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.618017 ], [ 59.765625, 51.618017 ], [ 59.765625, 52.052490 ], [ 61.171875, 52.052490 ], [ 61.171875, 52.482780 ], [ 60.468750, 52.482780 ], [ 60.468750, 52.908902 ], [ 61.875000, 52.908902 ], [ 61.875000, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 54.162434 ], [ 65.390625, 54.162434 ], [ 65.390625, 54.572062 ], [ 67.500000, 54.572062 ], [ 67.500000, 54.977614 ], [ 68.906250, 54.977614 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.359375, 45.583290 ], [ 58.359375, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.590467 ], [ 60.468750, 44.590467 ], [ 60.468750, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 43.580391 ], [ 62.578125, 43.580391 ], [ 62.578125, 44.087585 ], [ 64.687500, 44.087585 ], [ 64.687500, 43.580391 ], [ 65.390625, 43.580391 ], [ 65.390625, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.553080 ], [ 65.390625, 42.553080 ], [ 65.390625, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 41.508577 ], [ 67.500000, 41.508577 ], [ 67.500000, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 39.909736 ], [ 67.500000, 39.909736 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 37.160317 ], [ 66.796875, 37.160317 ], [ 66.796875, 37.718590 ], [ 66.093750, 37.718590 ], [ 66.093750, 38.272689 ], [ 64.687500, 38.272689 ], [ 64.687500, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 39.368279 ], [ 62.578125, 39.368279 ], [ 62.578125, 39.909736 ], [ 61.875000, 39.909736 ], [ 61.875000, 41.508577 ], [ 59.765625, 41.508577 ], [ 59.765625, 42.553080 ], [ 57.656250, 42.553080 ], [ 57.656250, 42.032974 ], [ 56.250000, 42.032974 ], [ 56.250000, 41.508577 ], [ 55.546875, 41.508577 ], [ 55.546875, 45.089036 ], [ 56.953125, 45.089036 ], [ 56.953125, 45.583290 ], [ 58.359375, 45.583290 ] ] ], [ [ [ 70.312500, 42.032974 ], [ 70.312500, 41.508577 ], [ 71.718750, 41.508577 ], [ 71.718750, 40.979898 ], [ 72.421875, 40.979898 ], [ 72.421875, 40.446947 ], [ 70.312500, 40.446947 ], [ 70.312500, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 42.032974 ], [ 70.312500, 42.032974 ] ] ], [ [ [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.359375, 45.583290 ], [ 58.359375, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.590467 ], [ 61.171875, 44.590467 ], [ 61.171875, 44.087585 ], [ 61.875000, 44.087585 ], [ 61.875000, 43.580391 ], [ 64.687500, 43.580391 ], [ 64.687500, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 66.796875, 42.032974 ], [ 66.796875, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 37.718590 ], [ 67.500000, 37.718590 ], [ 67.500000, 37.160317 ], [ 66.796875, 37.160317 ], [ 66.796875, 37.718590 ], [ 65.390625, 37.718590 ], [ 65.390625, 38.272689 ], [ 63.984375, 38.272689 ], [ 63.984375, 38.822591 ], [ 63.281250, 38.822591 ], [ 63.281250, 39.368279 ], [ 62.578125, 39.368279 ], [ 62.578125, 40.446947 ], [ 61.875000, 40.446947 ], [ 61.875000, 40.979898 ], [ 59.765625, 40.979898 ], [ 59.765625, 42.032974 ], [ 56.953125, 42.032974 ], [ 56.953125, 41.508577 ], [ 56.250000, 41.508577 ], [ 56.250000, 45.089036 ], [ 57.656250, 45.089036 ], [ 57.656250, 45.583290 ], [ 58.359375, 45.583290 ] ] ], [ [ [ 71.015625, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 40.446947 ], [ 72.421875, 40.446947 ], [ 72.421875, 39.909736 ], [ 71.015625, 39.909736 ], [ 71.015625, 40.979898 ] ] ], [ [ [ 70.312500, 40.979898 ], [ 69.609375, 40.979898 ], [ 69.609375, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 40.979898 ] ] ], [ [ [ 71.015625, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.828125, 43.580391 ], [ 73.828125, 43.068888 ], [ 78.750000, 43.068888 ], [ 78.750000, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.032974 ], [ 78.046875, 42.032974 ], [ 78.046875, 41.508577 ], [ 76.640625, 41.508577 ], [ 76.640625, 40.979898 ], [ 75.937500, 40.979898 ], [ 75.937500, 40.446947 ], [ 74.531250, 40.446947 ], [ 74.531250, 39.909736 ], [ 73.125000, 39.909736 ], [ 73.125000, 39.368279 ], [ 70.312500, 39.368279 ], [ 70.312500, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.446947 ], [ 72.421875, 40.446947 ], [ 72.421875, 40.979898 ], [ 71.718750, 40.979898 ], [ 71.718750, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.553080 ], [ 73.125000, 42.553080 ], [ 73.125000, 43.580391 ], [ 73.828125, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.453125, 43.068888 ], [ 79.453125, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 41.508577 ], [ 78.750000, 41.508577 ], [ 78.750000, 40.979898 ], [ 76.640625, 40.979898 ], [ 76.640625, 40.446947 ], [ 74.531250, 40.446947 ], [ 74.531250, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.368279 ], [ 69.609375, 39.368279 ], [ 69.609375, 39.909736 ], [ 72.421875, 39.909736 ], [ 72.421875, 40.446947 ], [ 73.125000, 40.446947 ], [ 73.125000, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 41.508577 ], [ 71.015625, 41.508577 ], [ 71.015625, 42.553080 ], [ 71.718750, 42.553080 ], [ 71.718750, 43.068888 ], [ 72.421875, 43.068888 ], [ 72.421875, 42.553080 ], [ 73.828125, 42.553080 ], [ 73.828125, 43.068888 ], [ 79.453125, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.979898 ], [ 42.890625, 40.979898 ], [ 42.890625, 41.508577 ], [ 45.000000, 41.508577 ], [ 45.000000, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 39.909736 ] ] ], [ [ [ 45.703125, 39.909736 ], [ 46.406250, 39.909736 ], [ 46.406250, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 45.703125, 40.979898 ], [ 45.703125, 39.368279 ] ] ], [ [ [ 45.703125, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 39.368279 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 42.032974 ], [ 46.406250, 41.508577 ], [ 48.515625, 41.508577 ], [ 48.515625, 40.979898 ], [ 49.921875, 40.979898 ], [ 49.921875, 40.446947 ], [ 49.218750, 40.446947 ], [ 49.218750, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 38.272689 ], [ 47.812500, 38.272689 ], [ 47.812500, 39.909736 ], [ 47.109375, 39.909736 ], [ 47.109375, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.446947 ], [ 45.000000, 40.446947 ], [ 45.000000, 41.508577 ], [ 45.703125, 41.508577 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ] ] ], [ [ [ 45.703125, 39.909736 ], [ 45.703125, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 39.909736 ], [ 45.703125, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 47.812500, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 45.703125, 39.368279 ], [ 45.703125, 40.979898 ], [ 46.406250, 40.979898 ], [ 46.406250, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 40.979898 ], [ 47.812500, 40.979898 ], [ 47.812500, 41.508577 ], [ 49.218750, 41.508577 ], [ 49.218750, 40.979898 ], [ 49.921875, 40.979898 ], [ 49.921875, 40.446947 ], [ 50.625000, 40.446947 ], [ 50.625000, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 38.822591 ] ] ], [ [ [ 45.703125, 39.368279 ], [ 45.703125, 38.822591 ], [ 45.000000, 38.822591 ], [ 45.000000, 39.368279 ], [ 45.703125, 39.368279 ] ] ], [ [ [ 47.812500, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 38.272689 ], [ 47.812500, 38.272689 ], [ 47.812500, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 47.109375, 39.368279 ], [ 47.109375, 39.909736 ], [ 47.812500, 39.909736 ], [ 47.812500, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 37.718590 ], [ 49.921875, 37.718590 ], [ 49.921875, 37.160317 ], [ 53.437500, 37.160317 ], [ 53.437500, 37.718590 ], [ 54.843750, 37.718590 ], [ 54.843750, 38.272689 ], [ 56.953125, 38.272689 ], [ 56.953125, 37.718590 ], [ 59.062500, 37.718590 ], [ 59.062500, 37.160317 ], [ 59.765625, 37.160317 ], [ 59.765625, 36.597889 ], [ 60.468750, 36.597889 ], [ 60.468750, 36.031332 ], [ 61.171875, 36.031332 ], [ 61.171875, 35.460670 ], [ 60.468750, 35.460670 ], [ 60.468750, 31.952162 ], [ 61.171875, 31.952162 ], [ 61.171875, 30.145127 ], [ 60.468750, 30.145127 ], [ 60.468750, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 25.799891 ], [ 61.171875, 25.799891 ], [ 61.171875, 25.165173 ], [ 59.765625, 25.165173 ], [ 59.765625, 25.799891 ], [ 56.953125, 25.799891 ], [ 56.953125, 27.059126 ], [ 52.031250, 27.059126 ], [ 52.031250, 27.683528 ], [ 51.328125, 27.683528 ], [ 51.328125, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.921875, 29.535230 ], [ 49.921875, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 31.952162 ], [ 47.109375, 31.952162 ], [ 47.109375, 32.546813 ], [ 45.703125, 32.546813 ], [ 45.703125, 33.724340 ], [ 45.000000, 33.724340 ], [ 45.000000, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 36.031332 ], [ 45.000000, 36.031332 ], [ 45.000000, 36.597889 ], [ 44.296875, 36.597889 ], [ 44.296875, 37.718590 ], [ 43.593750, 37.718590 ], [ 43.593750, 38.272689 ], [ 44.296875, 38.272689 ], [ 44.296875, 39.368279 ] ] ], [ [ [ 44.296875, 39.368279 ], [ 43.593750, 39.368279 ], [ 43.593750, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.368279 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.368279 ], [ 45.000000, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 38.272689 ], [ 49.218750, 38.272689 ], [ 49.218750, 37.160317 ], [ 49.921875, 37.160317 ], [ 49.921875, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 37.160317 ], [ 55.546875, 37.160317 ], [ 55.546875, 37.718590 ], [ 56.953125, 37.718590 ], [ 56.953125, 38.272689 ], [ 57.656250, 38.272689 ], [ 57.656250, 37.718590 ], [ 58.359375, 37.718590 ], [ 58.359375, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.468750, 34.885931 ], [ 60.468750, 33.724340 ], [ 61.171875, 33.724340 ], [ 61.171875, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 61.171875, 32.546813 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 25.799891 ], [ 61.171875, 25.799891 ], [ 61.171875, 25.165173 ], [ 58.359375, 25.165173 ], [ 58.359375, 25.799891 ], [ 57.656250, 25.799891 ], [ 57.656250, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.546875, 27.059126 ], [ 55.546875, 26.431228 ], [ 53.437500, 26.431228 ], [ 53.437500, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.683528 ], [ 51.328125, 27.683528 ], [ 51.328125, 28.304381 ], [ 50.625000, 28.304381 ], [ 50.625000, 29.535230 ], [ 49.921875, 29.535230 ], [ 49.921875, 30.145127 ], [ 47.812500, 30.145127 ], [ 47.812500, 31.952162 ], [ 47.109375, 31.952162 ], [ 47.109375, 32.546813 ], [ 46.406250, 32.546813 ], [ 46.406250, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 34.885931 ], [ 46.406250, 34.885931 ], [ 46.406250, 35.460670 ], [ 45.703125, 35.460670 ], [ 45.703125, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 39.368279 ], [ 45.000000, 39.368279 ] ] ], [ [ [ 48.515625, 38.822591 ], [ 47.812500, 38.822591 ], [ 47.812500, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 38.822591 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 47.109375, 28.921631 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.304381 ], [ 47.109375, 28.304381 ], [ 47.109375, 28.921631 ], [ 46.406250, 28.921631 ], [ 46.406250, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 32.546813 ], [ 38.671875, 31.952162 ], [ 40.078125, 31.952162 ], [ 40.078125, 31.353637 ], [ 41.484375, 31.353637 ], [ 41.484375, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 28.921631 ], [ 47.812500, 28.921631 ], [ 47.812500, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 27.059126 ], [ 49.921875, 27.059126 ], [ 49.921875, 25.165173 ], [ 51.328125, 25.165173 ], [ 51.328125, 23.241346 ], [ 52.734375, 23.241346 ], [ 52.734375, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 21.289374 ], [ 54.843750, 21.289374 ], [ 54.843750, 20.632784 ], [ 54.140625, 20.632784 ], [ 54.140625, 19.973349 ], [ 52.734375, 19.973349 ], [ 52.734375, 19.311143 ], [ 50.625000, 19.311143 ], [ 50.625000, 18.646245 ], [ 47.812500, 18.646245 ], [ 47.812500, 17.978733 ], [ 47.109375, 17.978733 ], [ 47.109375, 17.308688 ], [ 45.000000, 17.308688 ], [ 45.000000, 17.978733 ], [ 42.890625, 17.978733 ], [ 42.890625, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.978733 ], [ 41.484375, 17.978733 ], [ 41.484375, 18.646245 ], [ 40.781250, 18.646245 ], [ 40.781250, 19.973349 ], [ 40.078125, 19.973349 ], [ 40.078125, 20.632784 ], [ 38.671875, 20.632784 ], [ 38.671875, 23.241346 ], [ 37.968750, 23.241346 ], [ 37.968750, 24.527135 ], [ 36.562500, 24.527135 ], [ 36.562500, 26.431228 ], [ 35.859375, 26.431228 ], [ 35.859375, 27.059126 ], [ 35.156250, 27.059126 ], [ 35.156250, 27.683528 ], [ 34.453125, 27.683528 ], [ 34.453125, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 30.145127 ], [ 37.265625, 30.145127 ], [ 37.265625, 31.353637 ], [ 36.562500, 31.353637 ], [ 36.562500, 31.952162 ], [ 37.968750, 31.952162 ], [ 37.968750, 32.546813 ], [ 38.671875, 32.546813 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 31.952162 ], [ 40.781250, 31.353637 ], [ 42.187500, 31.353637 ], [ 42.187500, 30.751278 ], [ 42.890625, 30.751278 ], [ 42.890625, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 28.921631 ], [ 47.109375, 28.921631 ], [ 47.109375, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 26.431228 ], [ 49.921875, 26.431228 ], [ 49.921875, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 23.241346 ], [ 52.734375, 23.241346 ], [ 52.734375, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 19.311143 ], [ 51.328125, 19.311143 ], [ 51.328125, 18.646245 ], [ 49.218750, 18.646245 ], [ 49.218750, 17.978733 ], [ 48.515625, 17.978733 ], [ 48.515625, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 16.636192 ], [ 46.406250, 16.636192 ], [ 46.406250, 17.308688 ], [ 42.890625, 17.308688 ], [ 42.890625, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.308688 ], [ 41.484375, 17.308688 ], [ 41.484375, 18.646245 ], [ 40.781250, 18.646245 ], [ 40.781250, 19.311143 ], [ 40.078125, 19.311143 ], [ 40.078125, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 23.241346 ], [ 38.671875, 23.241346 ], [ 38.671875, 23.885838 ], [ 37.265625, 23.885838 ], [ 37.265625, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 27.059126 ], [ 35.859375, 27.059126 ], [ 35.859375, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 28.921631 ], [ 36.562500, 28.921631 ], [ 36.562500, 30.145127 ], [ 37.968750, 30.145127 ], [ 37.968750, 30.751278 ], [ 37.265625, 30.751278 ], [ 37.265625, 31.353637 ], [ 38.671875, 31.353637 ], [ 38.671875, 31.952162 ], [ 40.781250, 31.952162 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 25.799891 ], [ 51.328125, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 25.799891 ], [ 51.328125, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 25.165173 ], [ 51.328125, 24.527135 ], [ 50.625000, 24.527135 ], [ 50.625000, 25.165173 ], [ 51.328125, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 55.546875, 25.165173 ], [ 55.546875, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 22.593726 ], [ 52.734375, 22.593726 ], [ 52.734375, 23.241346 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 54.140625, 24.527135 ], [ 54.140625, 25.165173 ], [ 54.843750, 25.165173 ], [ 54.843750, 25.799891 ], [ 56.250000, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.546875, 24.527135 ], [ 55.546875, 22.593726 ], [ 52.734375, 22.593726 ], [ 52.734375, 23.241346 ], [ 51.328125, 23.241346 ], [ 51.328125, 24.527135 ], [ 52.031250, 24.527135 ], [ 52.031250, 23.885838 ], [ 54.843750, 23.885838 ], [ 54.843750, 24.527135 ], [ 55.546875, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.765625, 42.553080 ], [ 59.765625, 41.508577 ], [ 61.875000, 41.508577 ], [ 61.875000, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.368279 ], [ 63.984375, 39.368279 ], [ 63.984375, 38.822591 ], [ 64.687500, 38.822591 ], [ 64.687500, 38.272689 ], [ 66.093750, 38.272689 ], [ 66.093750, 37.718590 ], [ 65.390625, 37.718590 ], [ 65.390625, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.597889 ], [ 63.984375, 36.597889 ], [ 63.984375, 36.031332 ], [ 62.578125, 36.031332 ], [ 62.578125, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.031332 ], [ 60.468750, 36.031332 ], [ 60.468750, 36.597889 ], [ 59.765625, 36.597889 ], [ 59.765625, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 37.718590 ], [ 56.953125, 37.718590 ], [ 56.953125, 38.272689 ], [ 54.843750, 38.272689 ], [ 54.843750, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 39.368279 ], [ 52.734375, 39.368279 ], [ 52.734375, 40.979898 ], [ 54.140625, 40.979898 ], [ 54.140625, 41.508577 ], [ 53.437500, 41.508577 ], [ 53.437500, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.553080 ], [ 54.140625, 42.553080 ], [ 54.140625, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.508577 ], [ 56.250000, 41.508577 ], [ 56.250000, 42.032974 ], [ 57.656250, 42.032974 ], [ 57.656250, 42.553080 ], [ 59.765625, 42.553080 ] ] ], [ [ [ 52.734375, 42.032974 ], [ 52.734375, 41.508577 ], [ 52.031250, 41.508577 ], [ 52.031250, 42.032974 ], [ 52.734375, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.765625, 42.032974 ], [ 59.765625, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 40.446947 ], [ 62.578125, 40.446947 ], [ 62.578125, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 37.718590 ], [ 66.796875, 37.718590 ], [ 66.796875, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.031332 ], [ 63.281250, 36.031332 ], [ 63.281250, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.597889 ], [ 59.062500, 36.597889 ], [ 59.062500, 37.160317 ], [ 58.359375, 37.160317 ], [ 58.359375, 37.718590 ], [ 57.656250, 37.718590 ], [ 57.656250, 38.272689 ], [ 56.953125, 38.272689 ], [ 56.953125, 37.718590 ], [ 55.546875, 37.718590 ], [ 55.546875, 37.160317 ], [ 53.437500, 37.160317 ], [ 53.437500, 38.272689 ], [ 54.140625, 38.272689 ], [ 54.140625, 38.822591 ], [ 53.437500, 38.822591 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 52.734375, 40.446947 ], [ 54.843750, 40.446947 ], [ 54.843750, 40.979898 ], [ 54.140625, 40.979898 ], [ 54.140625, 41.508577 ], [ 53.437500, 41.508577 ], [ 53.437500, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 42.032974 ], [ 59.765625, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 19.311143 ], [ 51.328125, 18.646245 ], [ 52.031250, 18.646245 ], [ 52.031250, 17.978733 ], [ 52.734375, 17.978733 ], [ 52.734375, 16.636192 ], [ 52.031250, 16.636192 ], [ 52.031250, 15.284185 ], [ 49.218750, 15.284185 ], [ 49.218750, 14.604847 ], [ 47.812500, 14.604847 ], [ 47.812500, 13.923404 ], [ 45.000000, 13.923404 ], [ 45.000000, 13.239945 ], [ 42.890625, 13.239945 ], [ 42.890625, 15.284185 ], [ 42.187500, 15.284185 ], [ 42.187500, 16.636192 ], [ 42.890625, 16.636192 ], [ 42.890625, 17.978733 ], [ 45.000000, 17.978733 ], [ 45.000000, 17.308688 ], [ 47.109375, 17.308688 ], [ 47.109375, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 18.646245 ], [ 50.625000, 18.646245 ], [ 50.625000, 19.311143 ], [ 51.328125, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 19.311143 ], [ 52.031250, 17.978733 ], [ 52.734375, 17.978733 ], [ 52.734375, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.284185 ], [ 51.328125, 15.284185 ], [ 51.328125, 14.604847 ], [ 49.921875, 14.604847 ], [ 49.921875, 13.923404 ], [ 47.109375, 13.923404 ], [ 47.109375, 13.239945 ], [ 45.000000, 13.239945 ], [ 45.000000, 12.554564 ], [ 42.890625, 12.554564 ], [ 42.890625, 13.239945 ], [ 43.593750, 13.239945 ], [ 43.593750, 13.923404 ], [ 42.890625, 13.923404 ], [ 42.890625, 17.308688 ], [ 46.406250, 17.308688 ], [ 46.406250, 16.636192 ], [ 47.812500, 16.636192 ], [ 47.812500, 17.308688 ], [ 48.515625, 17.308688 ], [ 48.515625, 17.978733 ], [ 49.218750, 17.978733 ], [ 49.218750, 18.646245 ], [ 51.328125, 18.646245 ], [ 51.328125, 19.311143 ], [ 52.031250, 19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 25.165173 ], [ 56.250000, 23.885838 ], [ 58.359375, 23.885838 ], [ 58.359375, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.943046 ], [ 59.062500, 21.943046 ], [ 59.062500, 21.289374 ], [ 58.359375, 21.289374 ], [ 58.359375, 20.632784 ], [ 57.656250, 20.632784 ], [ 57.656250, 19.311143 ], [ 56.953125, 19.311143 ], [ 56.953125, 18.646245 ], [ 56.250000, 18.646245 ], [ 56.250000, 17.978733 ], [ 54.843750, 17.978733 ], [ 54.843750, 17.308688 ], [ 52.734375, 17.308688 ], [ 52.734375, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 18.646245 ], [ 51.328125, 18.646245 ], [ 51.328125, 19.311143 ], [ 52.734375, 19.311143 ], [ 52.734375, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 21.289374 ], [ 55.546875, 21.289374 ], [ 55.546875, 22.593726 ], [ 54.843750, 22.593726 ], [ 54.843750, 24.527135 ], [ 55.546875, 24.527135 ], [ 55.546875, 25.165173 ], [ 56.250000, 25.165173 ] ] ], [ [ [ 56.250000, 26.431228 ], [ 56.250000, 25.799891 ], [ 55.546875, 25.799891 ], [ 55.546875, 26.431228 ], [ 56.250000, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.165173 ], [ 56.250000, 24.527135 ], [ 56.953125, 24.527135 ], [ 56.953125, 23.885838 ], [ 59.062500, 23.885838 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.289374 ], [ 59.062500, 21.289374 ], [ 59.062500, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 19.973349 ], [ 57.656250, 19.973349 ], [ 57.656250, 18.646245 ], [ 56.953125, 18.646245 ], [ 56.953125, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 16.636192 ], [ 52.734375, 16.636192 ], [ 52.734375, 17.978733 ], [ 52.031250, 17.978733 ], [ 52.031250, 19.311143 ], [ 54.140625, 19.311143 ], [ 54.140625, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 20.632784 ], [ 55.546875, 20.632784 ], [ 55.546875, 25.165173 ], [ 56.250000, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.515625, 11.867351 ], [ 48.515625, 9.102097 ], [ 47.812500, 9.102097 ], [ 47.812500, 8.407168 ], [ 45.000000, 8.407168 ], [ 45.000000, 9.102097 ], [ 43.593750, 9.102097 ], [ 43.593750, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 10.487812 ], [ 42.187500, 10.487812 ], [ 42.187500, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 45.000000, 10.487812 ], [ 45.000000, 11.178402 ], [ 47.812500, 11.178402 ], [ 47.812500, 11.867351 ], [ 48.515625, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, 11.178402 ], [ 49.218750, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 7.710992 ], [ 45.703125, 7.710992 ], [ 45.703125, 8.407168 ], [ 44.296875, 8.407168 ], [ 44.296875, 9.102097 ], [ 43.593750, 9.102097 ], [ 43.593750, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 47.812500, 10.487812 ], [ 47.812500, 11.178402 ], [ 49.218750, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 11.867351 ], [ 50.625000, 9.795678 ], [ 49.921875, 9.795678 ], [ 49.921875, 7.710992 ], [ 49.218750, 7.710992 ], [ 49.218750, 6.315299 ], [ 48.515625, 6.315299 ], [ 48.515625, 4.915833 ], [ 47.109375, 4.915833 ], [ 47.109375, 4.214943 ], [ 46.406250, 4.214943 ], [ 46.406250, 2.811371 ], [ 45.703125, 2.811371 ], [ 45.703125, 2.108899 ], [ 45.000000, 2.108899 ], [ 45.000000, 1.406109 ], [ 43.593750, 1.406109 ], [ 43.593750, 0.703107 ], [ 42.890625, 0.703107 ], [ 42.890625, 0.000000 ], [ 42.187500, 0.000000 ], [ 42.187500, -0.703107 ], [ 41.484375, -0.703107 ], [ 41.484375, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 5.615986 ], [ 45.000000, 5.615986 ], [ 45.000000, 6.315299 ], [ 45.703125, 6.315299 ], [ 45.703125, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 7.710992 ], [ 47.109375, 7.710992 ], [ 47.109375, 8.407168 ], [ 47.812500, 8.407168 ], [ 47.812500, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 11.867351 ], [ 50.625000, 11.867351 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 11.867351 ], [ 51.328125, 10.487812 ], [ 50.625000, 10.487812 ], [ 50.625000, 8.407168 ], [ 49.921875, 8.407168 ], [ 49.921875, 7.710992 ], [ 49.218750, 7.710992 ], [ 49.218750, 6.315299 ], [ 48.515625, 6.315299 ], [ 48.515625, 4.915833 ], [ 47.812500, 4.915833 ], [ 47.812500, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.406109 ], [ 45.000000, 1.406109 ], [ 45.000000, 0.703107 ], [ 44.296875, 0.703107 ], [ 44.296875, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -1.406109 ], [ 40.781250, -1.406109 ], [ 40.781250, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 42.187500, 3.513421 ], [ 42.187500, 4.214943 ], [ 43.593750, 4.214943 ], [ 43.593750, 4.915833 ], [ 45.703125, 4.915833 ], [ 45.703125, 5.615986 ], [ 46.406250, 5.615986 ], [ 46.406250, 6.315299 ], [ 47.109375, 6.315299 ], [ 47.109375, 7.013668 ], [ 47.812500, 7.013668 ], [ 47.812500, 8.407168 ], [ 48.515625, 8.407168 ], [ 48.515625, 9.102097 ], [ 49.218750, 9.102097 ], [ 49.218750, 11.178402 ], [ 49.921875, 11.178402 ], [ 49.921875, 11.867351 ], [ 51.328125, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.906250, 39.909736 ], [ 70.312500, 39.909736 ], [ 70.312500, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.822591 ], [ 74.531250, 38.822591 ], [ 74.531250, 37.718590 ], [ 73.125000, 37.718590 ], [ 73.125000, 37.160317 ], [ 71.015625, 37.160317 ], [ 71.015625, 38.272689 ], [ 69.609375, 38.272689 ], [ 69.609375, 37.718590 ], [ 68.906250, 37.718590 ], [ 68.906250, 37.160317 ], [ 67.500000, 37.160317 ], [ 67.500000, 37.718590 ], [ 68.203125, 37.718590 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.909736 ], [ 68.906250, 39.909736 ] ] ], [ [ [ 70.312500, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 40.979898 ], [ 70.312500, 40.979898 ], [ 70.312500, 40.446947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.015625, 40.979898 ], [ 71.015625, 39.909736 ], [ 69.609375, 39.909736 ], [ 69.609375, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.272689 ], [ 74.531250, 38.272689 ], [ 74.531250, 37.160317 ], [ 72.421875, 37.160317 ], [ 72.421875, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 37.718590 ], [ 71.015625, 37.718590 ], [ 71.015625, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 37.160317 ], [ 67.500000, 37.160317 ], [ 67.500000, 37.718590 ], [ 68.203125, 37.718590 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.368279 ], [ 68.906250, 39.368279 ], [ 68.906250, 40.446947 ], [ 69.609375, 40.446947 ], [ 69.609375, 40.979898 ], [ 71.015625, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.015625, 38.272689 ], [ 71.015625, 37.160317 ], [ 72.421875, 37.160317 ], [ 72.421875, 36.597889 ], [ 71.015625, 36.597889 ], [ 71.015625, 34.307144 ], [ 69.609375, 34.307144 ], [ 69.609375, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.546813 ], [ 68.906250, 32.546813 ], [ 68.906250, 31.952162 ], [ 67.500000, 31.952162 ], [ 67.500000, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 60.468750, 29.535230 ], [ 60.468750, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 31.952162 ], [ 60.468750, 31.952162 ], [ 60.468750, 35.460670 ], [ 62.578125, 35.460670 ], [ 62.578125, 36.031332 ], [ 63.984375, 36.031332 ], [ 63.984375, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 37.160317 ], [ 65.390625, 37.160317 ], [ 65.390625, 37.718590 ], [ 66.796875, 37.718590 ], [ 66.796875, 37.160317 ], [ 68.906250, 37.160317 ], [ 68.906250, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 38.272689 ], [ 71.015625, 38.272689 ] ] ], [ [ [ 74.531250, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 37.160317 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.015625, 38.272689 ], [ 71.015625, 37.718590 ], [ 71.718750, 37.718590 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.031332 ], [ 71.015625, 36.031332 ], [ 71.015625, 35.460670 ], [ 71.718750, 35.460670 ], [ 71.718750, 34.885931 ], [ 71.015625, 34.885931 ], [ 71.015625, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.145127 ], [ 61.875000, 30.145127 ], [ 61.875000, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.137551 ], [ 61.171875, 33.137551 ], [ 61.171875, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 34.885931 ], [ 61.171875, 34.885931 ], [ 61.171875, 35.460670 ], [ 63.281250, 35.460670 ], [ 63.281250, 36.031332 ], [ 64.687500, 36.031332 ], [ 64.687500, 37.160317 ], [ 69.609375, 37.160317 ], [ 69.609375, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.272689 ], [ 71.015625, 38.272689 ] ] ], [ [ [ 74.531250, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.597889 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.234375, 37.160317 ], [ 75.234375, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.031332 ], [ 77.343750, 36.031332 ], [ 77.343750, 35.460670 ], [ 76.640625, 35.460670 ], [ 76.640625, 34.885931 ], [ 73.125000, 34.885931 ], [ 73.125000, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 32.546813 ], [ 75.234375, 32.546813 ], [ 75.234375, 31.952162 ], [ 73.828125, 31.952162 ], [ 73.828125, 30.751278 ], [ 73.125000, 30.751278 ], [ 73.125000, 29.535230 ], [ 72.421875, 29.535230 ], [ 72.421875, 28.921631 ], [ 71.718750, 28.921631 ], [ 71.718750, 28.304381 ], [ 70.312500, 28.304381 ], [ 70.312500, 27.683528 ], [ 69.609375, 27.683528 ], [ 69.609375, 25.799891 ], [ 70.312500, 25.799891 ], [ 70.312500, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.527135 ], [ 68.203125, 24.527135 ], [ 68.203125, 23.885838 ], [ 66.796875, 23.885838 ], [ 66.796875, 25.165173 ], [ 66.093750, 25.165173 ], [ 66.093750, 25.799891 ], [ 62.578125, 25.799891 ], [ 62.578125, 25.165173 ], [ 61.171875, 25.165173 ], [ 61.171875, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.059126 ], [ 62.578125, 27.059126 ], [ 62.578125, 28.304381 ], [ 61.171875, 28.304381 ], [ 61.171875, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 66.796875, 30.751278 ], [ 66.796875, 31.353637 ], [ 67.500000, 31.353637 ], [ 67.500000, 31.952162 ], [ 68.906250, 31.952162 ], [ 68.906250, 32.546813 ], [ 69.609375, 32.546813 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 69.609375, 33.724340 ], [ 69.609375, 34.307144 ], [ 71.015625, 34.307144 ], [ 71.015625, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 37.160317 ], [ 75.234375, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.234375, 37.160317 ], [ 75.234375, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.031332 ], [ 76.640625, 36.031332 ], [ 76.640625, 35.460670 ], [ 78.046875, 35.460670 ], [ 78.046875, 34.885931 ], [ 76.640625, 34.885931 ], [ 76.640625, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 32.546813 ], [ 75.234375, 32.546813 ], [ 75.234375, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 30.145127 ], [ 73.125000, 30.145127 ], [ 73.125000, 28.304381 ], [ 72.421875, 28.304381 ], [ 72.421875, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.431228 ], [ 70.312500, 26.431228 ], [ 70.312500, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.527135 ], [ 68.906250, 24.527135 ], [ 68.906250, 23.885838 ], [ 66.796875, 23.885838 ], [ 66.796875, 24.527135 ], [ 66.093750, 24.527135 ], [ 66.093750, 25.165173 ], [ 61.171875, 25.165173 ], [ 61.171875, 25.799891 ], [ 61.875000, 25.799891 ], [ 61.875000, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.059126 ], [ 62.578125, 27.059126 ], [ 62.578125, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 28.921631 ], [ 61.171875, 28.921631 ], [ 61.171875, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 30.751278 ], [ 66.796875, 30.751278 ], [ 66.796875, 31.353637 ], [ 69.609375, 31.353637 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 71.015625, 33.724340 ], [ 71.015625, 34.885931 ], [ 71.718750, 34.885931 ], [ 71.718750, 35.460670 ], [ 71.015625, 35.460670 ], [ 71.015625, 36.031332 ], [ 71.718750, 36.031332 ], [ 71.718750, 36.597889 ], [ 74.531250, 36.597889 ], [ 74.531250, 37.160317 ], [ 75.234375, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 82.265625, 29.535230 ], [ 83.671875, 29.535230 ], [ 83.671875, 28.921631 ], [ 84.375000, 28.921631 ], [ 84.375000, 28.304381 ], [ 87.890625, 28.304381 ], [ 87.890625, 26.431228 ], [ 85.781250, 26.431228 ], [ 85.781250, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 27.683528 ], [ 81.562500, 27.683528 ], [ 81.562500, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 28.921631 ], [ 79.453125, 28.921631 ], [ 79.453125, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 30.145127 ], [ 82.265625, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 82.265625, 29.535230 ], [ 83.671875, 29.535230 ], [ 83.671875, 28.921631 ], [ 85.078125, 28.921631 ], [ 85.078125, 28.304381 ], [ 85.781250, 28.304381 ], [ 85.781250, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 26.431228 ], [ 84.375000, 26.431228 ], [ 84.375000, 27.059126 ], [ 82.265625, 27.059126 ], [ 82.265625, 27.683528 ], [ 80.859375, 27.683528 ], [ 80.859375, 28.304381 ], [ 80.156250, 28.304381 ], [ 80.156250, 29.535230 ], [ 80.859375, 29.535230 ], [ 80.859375, 30.145127 ], [ 82.265625, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.046875, 35.460670 ], [ 78.046875, 34.885931 ], [ 78.750000, 34.885931 ], [ 78.750000, 32.546813 ], [ 78.046875, 32.546813 ], [ 78.046875, 31.353637 ], [ 79.453125, 31.353637 ], [ 79.453125, 30.751278 ], [ 80.859375, 30.751278 ], [ 80.859375, 30.145127 ], [ 80.156250, 30.145127 ], [ 80.156250, 29.535230 ], [ 79.453125, 29.535230 ], [ 79.453125, 28.921631 ], [ 80.859375, 28.921631 ], [ 80.859375, 28.304381 ], [ 81.562500, 28.304381 ], [ 81.562500, 27.683528 ], [ 84.375000, 27.683528 ], [ 84.375000, 27.059126 ], [ 85.781250, 27.059126 ], [ 85.781250, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 25.799891 ], [ 88.593750, 25.799891 ], [ 88.593750, 25.165173 ], [ 87.890625, 25.165173 ], [ 87.890625, 24.527135 ], [ 88.593750, 24.527135 ], [ 88.593750, 23.885838 ], [ 87.890625, 23.885838 ], [ 87.890625, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 21.943046 ], [ 86.484375, 21.943046 ], [ 86.484375, 20.632784 ], [ 85.781250, 20.632784 ], [ 85.781250, 19.973349 ], [ 84.375000, 19.973349 ], [ 84.375000, 19.311143 ], [ 83.671875, 19.311143 ], [ 83.671875, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 17.308688 ], [ 81.562500, 17.308688 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 15.284185 ], [ 79.453125, 15.284185 ], [ 79.453125, 14.604847 ], [ 80.156250, 14.604847 ], [ 80.156250, 12.554564 ], [ 79.453125, 12.554564 ], [ 79.453125, 10.487812 ], [ 78.750000, 10.487812 ], [ 78.750000, 9.102097 ], [ 78.046875, 9.102097 ], [ 78.046875, 8.407168 ], [ 75.937500, 8.407168 ], [ 75.937500, 11.178402 ], [ 75.234375, 11.178402 ], [ 75.234375, 12.554564 ], [ 74.531250, 12.554564 ], [ 74.531250, 14.604847 ], [ 73.828125, 14.604847 ], [ 73.828125, 15.961329 ], [ 73.125000, 15.961329 ], [ 73.125000, 17.308688 ], [ 72.421875, 17.308688 ], [ 72.421875, 21.289374 ], [ 69.609375, 21.289374 ], [ 69.609375, 21.943046 ], [ 68.906250, 21.943046 ], [ 68.906250, 23.241346 ], [ 67.500000, 23.241346 ], [ 67.500000, 23.885838 ], [ 68.203125, 23.885838 ], [ 68.203125, 24.527135 ], [ 71.015625, 24.527135 ], [ 71.015625, 25.165173 ], [ 70.312500, 25.165173 ], [ 70.312500, 25.799891 ], [ 69.609375, 25.799891 ], [ 69.609375, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 28.304381 ], [ 71.718750, 28.304381 ], [ 71.718750, 28.921631 ], [ 72.421875, 28.921631 ], [ 72.421875, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 30.751278 ], [ 73.828125, 30.751278 ], [ 73.828125, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.546813 ], [ 73.828125, 32.546813 ], [ 73.828125, 34.307144 ], [ 73.125000, 34.307144 ], [ 73.125000, 34.885931 ], [ 76.640625, 34.885931 ], [ 76.640625, 35.460670 ], [ 78.046875, 35.460670 ] ] ], [ [ [ 95.625000, 29.535230 ], [ 95.625000, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.683528 ], [ 96.328125, 27.683528 ], [ 96.328125, 27.059126 ], [ 94.921875, 27.059126 ], [ 94.921875, 25.799891 ], [ 94.218750, 25.799891 ], [ 94.218750, 24.527135 ], [ 93.515625, 24.527135 ], [ 93.515625, 23.885838 ], [ 92.812500, 23.885838 ], [ 92.812500, 22.593726 ], [ 92.109375, 22.593726 ], [ 92.109375, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 25.165173 ], [ 89.296875, 25.165173 ], [ 89.296875, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 28.304381 ], [ 88.593750, 28.304381 ], [ 88.593750, 27.059126 ], [ 91.406250, 27.059126 ], [ 91.406250, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 28.921631 ], [ 94.218750, 28.921631 ], [ 94.218750, 29.535230 ], [ 95.625000, 29.535230 ] ] ], [ [ [ 91.406250, 23.885838 ], [ 91.406250, 23.241346 ], [ 90.703125, 23.241346 ], [ 90.703125, 23.885838 ], [ 91.406250, 23.885838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.750000, 34.885931 ], [ 78.750000, 33.137551 ], [ 79.453125, 33.137551 ], [ 79.453125, 32.546813 ], [ 78.750000, 32.546813 ], [ 78.750000, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 26.431228 ], [ 90.703125, 26.431228 ], [ 90.703125, 27.059126 ], [ 92.109375, 27.059126 ], [ 92.109375, 27.683528 ], [ 92.812500, 27.683528 ], [ 92.812500, 28.304381 ], [ 93.515625, 28.304381 ], [ 93.515625, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.059126 ], [ 96.328125, 27.059126 ], [ 96.328125, 26.431228 ], [ 94.921875, 26.431228 ], [ 94.921875, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 21.943046 ], [ 92.812500, 21.943046 ], [ 92.812500, 22.593726 ], [ 92.109375, 22.593726 ], [ 92.109375, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.885838 ], [ 92.109375, 23.885838 ], [ 92.109375, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 25.799891 ], [ 87.890625, 25.799891 ], [ 87.890625, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 21.943046 ], [ 87.890625, 21.943046 ], [ 87.890625, 21.289374 ], [ 87.187500, 21.289374 ], [ 87.187500, 19.973349 ], [ 86.484375, 19.973349 ], [ 86.484375, 19.311143 ], [ 85.078125, 19.311143 ], [ 85.078125, 18.646245 ], [ 84.375000, 18.646245 ], [ 84.375000, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 17.308688 ], [ 82.265625, 17.308688 ], [ 82.265625, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 10.487812 ], [ 79.453125, 10.487812 ], [ 79.453125, 9.795678 ], [ 78.750000, 9.795678 ], [ 78.750000, 9.102097 ], [ 78.046875, 9.102097 ], [ 78.046875, 7.710992 ], [ 77.343750, 7.710992 ], [ 77.343750, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 9.795678 ], [ 75.937500, 9.795678 ], [ 75.937500, 11.178402 ], [ 75.234375, 11.178402 ], [ 75.234375, 11.867351 ], [ 74.531250, 11.867351 ], [ 74.531250, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 16.636192 ], [ 73.125000, 16.636192 ], [ 73.125000, 20.632784 ], [ 69.609375, 20.632784 ], [ 69.609375, 21.289374 ], [ 68.906250, 21.289374 ], [ 68.906250, 21.943046 ], [ 69.609375, 21.943046 ], [ 69.609375, 22.593726 ], [ 68.906250, 22.593726 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.885838 ], [ 68.906250, 23.885838 ], [ 68.906250, 24.527135 ], [ 71.015625, 24.527135 ], [ 71.015625, 25.165173 ], [ 70.312500, 25.165173 ], [ 70.312500, 26.431228 ], [ 69.609375, 26.431228 ], [ 69.609375, 27.059126 ], [ 70.312500, 27.059126 ], [ 70.312500, 27.683528 ], [ 72.421875, 27.683528 ], [ 72.421875, 28.304381 ], [ 73.125000, 28.304381 ], [ 73.125000, 30.145127 ], [ 74.531250, 30.145127 ], [ 74.531250, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 33.137551 ], [ 73.828125, 33.137551 ], [ 73.828125, 34.307144 ], [ 76.640625, 34.307144 ], [ 76.640625, 34.885931 ], [ 78.750000, 34.885931 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.156250, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 6.315299 ], [ 79.453125, 6.315299 ], [ 79.453125, 9.795678 ], [ 80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.859375, 9.102097 ], [ 80.859375, 8.407168 ], [ 81.562500, 8.407168 ], [ 81.562500, 6.315299 ], [ 80.156250, 6.315299 ], [ 80.156250, 7.710992 ], [ 79.453125, 7.710992 ], [ 79.453125, 9.102097 ], [ 80.859375, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.843750, 52.052490 ], [ 99.843750, 51.618017 ], [ 101.953125, 51.618017 ], [ 101.953125, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.382373 ], [ 112.500000, 49.382373 ], [ 112.500000, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 49.837982 ], [ 116.015625, 49.837982 ], [ 116.015625, 48.922499 ], [ 115.312500, 48.922499 ], [ 115.312500, 47.989922 ], [ 118.828125, 47.989922 ], [ 118.828125, 47.517201 ], [ 119.531250, 47.517201 ], [ 119.531250, 47.040182 ], [ 117.421875, 47.040182 ], [ 117.421875, 46.558860 ], [ 116.718750, 46.558860 ], [ 116.718750, 46.073231 ], [ 115.312500, 46.073231 ], [ 115.312500, 45.583290 ], [ 113.906250, 45.583290 ], [ 113.906250, 45.089036 ], [ 111.093750, 45.089036 ], [ 111.093750, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.093750, 43.580391 ], [ 111.093750, 43.068888 ], [ 110.390625, 43.068888 ], [ 110.390625, 42.553080 ], [ 105.468750, 42.553080 ], [ 105.468750, 42.032974 ], [ 101.250000, 42.032974 ], [ 101.250000, 42.553080 ], [ 97.734375, 42.553080 ], [ 97.734375, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 44.087585 ], [ 94.921875, 44.087585 ], [ 94.921875, 44.590467 ], [ 92.812500, 44.590467 ], [ 92.812500, 45.089036 ], [ 92.109375, 45.089036 ], [ 92.109375, 45.583290 ], [ 90.000000, 45.583290 ], [ 90.000000, 46.558860 ], [ 90.703125, 46.558860 ], [ 90.703125, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.458352 ], [ 87.890625, 48.458352 ], [ 87.890625, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.736455 ], [ 93.515625, 50.736455 ], [ 93.515625, 50.289339 ], [ 95.625000, 50.289339 ], [ 95.625000, 49.837982 ], [ 97.031250, 49.837982 ], [ 97.031250, 50.289339 ], [ 97.734375, 50.289339 ], [ 97.734375, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 52.052490 ], [ 99.843750, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.546875, 51.618017 ], [ 100.546875, 51.179343 ], [ 101.953125, 51.179343 ], [ 101.953125, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 48.922499 ], [ 111.796875, 48.922499 ], [ 111.796875, 49.382373 ], [ 113.906250, 49.382373 ], [ 113.906250, 49.837982 ], [ 114.609375, 49.837982 ], [ 114.609375, 50.289339 ], [ 115.312500, 50.289339 ], [ 115.312500, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.382373 ], [ 116.015625, 49.382373 ], [ 116.015625, 48.458352 ], [ 115.312500, 48.458352 ], [ 115.312500, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 46.558860 ], [ 116.718750, 46.558860 ], [ 116.718750, 46.073231 ], [ 116.015625, 46.073231 ], [ 116.015625, 45.583290 ], [ 114.609375, 45.583290 ], [ 114.609375, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.590467 ], [ 112.500000, 44.590467 ], [ 112.500000, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.590467 ], [ 111.093750, 44.590467 ], [ 111.093750, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.093750, 43.580391 ], [ 111.093750, 43.068888 ], [ 110.390625, 43.068888 ], [ 110.390625, 42.553080 ], [ 107.578125, 42.553080 ], [ 107.578125, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 41.508577 ], [ 104.765625, 41.508577 ], [ 104.765625, 42.032974 ], [ 101.953125, 42.032974 ], [ 101.953125, 42.553080 ], [ 95.625000, 42.553080 ], [ 95.625000, 44.087585 ], [ 94.921875, 44.087585 ], [ 94.921875, 44.590467 ], [ 93.515625, 44.590467 ], [ 93.515625, 45.089036 ], [ 90.703125, 45.089036 ], [ 90.703125, 47.040182 ], [ 90.000000, 47.040182 ], [ 90.000000, 47.517201 ], [ 88.593750, 47.517201 ], [ 88.593750, 47.989922 ], [ 87.890625, 47.989922 ], [ 87.890625, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.837982 ], [ 90.703125, 49.837982 ], [ 90.703125, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 49.837982 ], [ 98.437500, 49.837982 ], [ 98.437500, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 51.179343 ], [ 98.437500, 51.179343 ], [ 98.437500, 51.618017 ], [ 100.546875, 51.618017 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 28.304381 ], [ 91.406250, 27.683528 ], [ 92.109375, 27.683528 ], [ 92.109375, 27.059126 ], [ 90.703125, 27.059126 ], [ 90.703125, 26.431228 ], [ 88.593750, 26.431228 ], [ 88.593750, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 28.304381 ], [ 91.406250, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 23.885838 ], [ 90.703125, 23.885838 ], [ 90.703125, 23.241346 ], [ 90.000000, 23.241346 ], [ 90.000000, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.593726 ], [ 88.593750, 22.593726 ], [ 88.593750, 23.241346 ], [ 87.890625, 23.241346 ], [ 87.890625, 23.885838 ], [ 88.593750, 23.885838 ], [ 88.593750, 24.527135 ], [ 87.890625, 24.527135 ], [ 87.890625, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.799891 ], [ 87.890625, 25.799891 ], [ 87.890625, 26.431228 ], [ 89.296875, 26.431228 ], [ 89.296875, 25.165173 ], [ 92.109375, 25.165173 ], [ 92.109375, 24.527135 ], [ 91.406250, 24.527135 ], [ 91.406250, 23.885838 ] ] ], [ [ [ 91.406250, 23.885838 ], [ 92.109375, 23.885838 ], [ 92.109375, 21.289374 ], [ 91.406250, 21.289374 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.885838 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 25.799891 ], [ 90.000000, 25.165173 ], [ 92.109375, 25.165173 ], [ 92.109375, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 23.241346 ], [ 92.109375, 23.241346 ], [ 92.109375, 22.593726 ], [ 92.812500, 22.593726 ], [ 92.812500, 21.289374 ], [ 92.109375, 21.289374 ], [ 92.109375, 21.943046 ], [ 91.406250, 21.943046 ], [ 91.406250, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.593750, 21.943046 ], [ 88.593750, 25.165173 ], [ 87.890625, 25.165173 ], [ 87.890625, 25.799891 ], [ 90.000000, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.046875, 53.748711 ], [ 123.046875, 53.330873 ], [ 124.453125, 53.330873 ], [ 124.453125, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.482780 ], [ 126.562500, 52.482780 ], [ 126.562500, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 49.837982 ], [ 129.375000, 49.837982 ], [ 129.375000, 49.382373 ], [ 130.078125, 49.382373 ], [ 130.078125, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 47.517201 ], [ 133.593750, 47.517201 ], [ 133.593750, 46.073231 ], [ 132.890625, 46.073231 ], [ 132.890625, 45.583290 ], [ 131.484375, 45.583290 ], [ 131.484375, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 43.068888 ], [ 130.078125, 43.068888 ], [ 130.078125, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 125.859375, 41.508577 ], [ 125.859375, 40.979898 ], [ 124.453125, 40.979898 ], [ 124.453125, 40.446947 ], [ 123.750000, 40.446947 ], [ 123.750000, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 39.368279 ], [ 120.937500, 39.368279 ], [ 120.937500, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.979898 ], [ 120.234375, 40.979898 ], [ 120.234375, 40.446947 ], [ 119.531250, 40.446947 ], [ 119.531250, 39.368279 ], [ 117.421875, 39.368279 ], [ 117.421875, 38.272689 ], [ 118.828125, 38.272689 ], [ 118.828125, 37.160317 ], [ 119.531250, 37.160317 ], [ 119.531250, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 37.160317 ], [ 120.937500, 37.160317 ], [ 120.937500, 36.597889 ], [ 120.234375, 36.597889 ], [ 120.234375, 36.031332 ], [ 119.531250, 36.031332 ], [ 119.531250, 35.460670 ], [ 118.828125, 35.460670 ], [ 118.828125, 34.885931 ], [ 119.531250, 34.885931 ], [ 119.531250, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.145127 ], [ 121.640625, 30.145127 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.683528 ], [ 120.234375, 27.683528 ], [ 120.234375, 26.431228 ], [ 119.531250, 26.431228 ], [ 119.531250, 25.165173 ], [ 118.125000, 25.165173 ], [ 118.125000, 24.527135 ], [ 117.421875, 24.527135 ], [ 117.421875, 23.885838 ], [ 116.718750, 23.885838 ], [ 116.718750, 23.241346 ], [ 114.609375, 23.241346 ], [ 114.609375, 22.593726 ], [ 113.203125, 22.593726 ], [ 113.203125, 21.943046 ], [ 110.390625, 21.943046 ], [ 110.390625, 20.632784 ], [ 110.390625, 19.311143 ], [ 109.687500, 19.311143 ], [ 109.687500, 18.646245 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 20.632784 ], [ 108.984375, 20.632784 ], [ 108.984375, 21.289374 ], [ 109.687500, 21.289374 ], [ 109.687500, 21.943046 ], [ 106.171875, 21.943046 ], [ 106.171875, 23.241346 ], [ 102.656250, 23.241346 ], [ 102.656250, 22.593726 ], [ 101.250000, 22.593726 ], [ 101.250000, 21.289374 ], [ 100.546875, 21.289374 ], [ 100.546875, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 24.527135 ], [ 97.031250, 24.527135 ], [ 97.031250, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 27.683528 ], [ 97.734375, 27.683528 ], [ 97.734375, 28.304381 ], [ 95.625000, 28.304381 ], [ 95.625000, 29.535230 ], [ 94.218750, 29.535230 ], [ 94.218750, 28.921631 ], [ 92.812500, 28.921631 ], [ 92.812500, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.304381 ], [ 84.375000, 28.304381 ], [ 84.375000, 28.921631 ], [ 83.671875, 28.921631 ], [ 83.671875, 29.535230 ], [ 82.265625, 29.535230 ], [ 82.265625, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 31.353637 ], [ 78.046875, 31.353637 ], [ 78.046875, 32.546813 ], [ 78.750000, 32.546813 ], [ 78.750000, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.597889 ], [ 75.234375, 36.597889 ], [ 75.234375, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 38.822591 ], [ 73.828125, 38.822591 ], [ 73.828125, 39.368279 ], [ 73.125000, 39.368279 ], [ 73.125000, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.446947 ], [ 75.937500, 40.446947 ], [ 75.937500, 40.979898 ], [ 76.640625, 40.979898 ], [ 76.640625, 41.508577 ], [ 78.046875, 41.508577 ], [ 78.046875, 42.032974 ], [ 79.453125, 42.032974 ], [ 79.453125, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.580391 ], [ 80.156250, 43.580391 ], [ 80.156250, 44.590467 ], [ 79.453125, 44.590467 ], [ 79.453125, 45.089036 ], [ 80.859375, 45.089036 ], [ 80.859375, 45.583290 ], [ 82.265625, 45.583290 ], [ 82.265625, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.517201 ], [ 83.671875, 47.517201 ], [ 83.671875, 47.040182 ], [ 85.078125, 47.040182 ], [ 85.078125, 48.458352 ], [ 86.484375, 48.458352 ], [ 86.484375, 48.922499 ], [ 87.890625, 48.922499 ], [ 87.890625, 48.458352 ], [ 88.593750, 48.458352 ], [ 88.593750, 47.989922 ], [ 90.000000, 47.989922 ], [ 90.000000, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 46.558860 ], [ 90.000000, 46.558860 ], [ 90.000000, 45.583290 ], [ 92.109375, 45.583290 ], [ 92.109375, 45.089036 ], [ 92.812500, 45.089036 ], [ 92.812500, 44.590467 ], [ 94.921875, 44.590467 ], [ 94.921875, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 43.068888 ], [ 97.734375, 43.068888 ], [ 97.734375, 42.553080 ], [ 101.250000, 42.553080 ], [ 101.250000, 42.032974 ], [ 105.468750, 42.032974 ], [ 105.468750, 42.553080 ], [ 110.390625, 42.553080 ], [ 110.390625, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.093750, 44.087585 ], [ 111.093750, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 52.052490 ], [ 120.234375, 52.052490 ], [ 120.234375, 52.908902 ], [ 120.937500, 52.908902 ], [ 120.937500, 53.330873 ], [ 121.640625, 53.330873 ], [ 121.640625, 53.748711 ], [ 123.046875, 53.748711 ] ] ], [ [ [ 135.000000, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 48.922499 ], [ 135.000000, 48.922499 ], [ 135.000000, 48.458352 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.687500, 19.973349 ], [ 109.687500, 21.289374 ], [ 106.875000, 21.289374 ], [ 106.875000, 22.593726 ], [ 101.953125, 22.593726 ], [ 101.953125, 21.289374 ], [ 99.843750, 21.289374 ], [ 99.843750, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.843750, 22.593726 ], [ 99.843750, 23.241346 ], [ 98.437500, 23.241346 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.437500, 25.165173 ], [ 98.437500, 27.683528 ], [ 97.734375, 27.683528 ], [ 97.734375, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.683528 ], [ 85.781250, 27.683528 ], [ 85.781250, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.921631 ], [ 83.671875, 28.921631 ], [ 83.671875, 29.535230 ], [ 82.265625, 29.535230 ], [ 82.265625, 30.145127 ], [ 79.453125, 30.145127 ], [ 79.453125, 30.751278 ], [ 78.750000, 30.751278 ], [ 78.750000, 32.546813 ], [ 79.453125, 32.546813 ], [ 79.453125, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.460670 ], [ 76.640625, 35.460670 ], [ 76.640625, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.597889 ], [ 75.234375, 36.597889 ], [ 75.234375, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 38.272689 ], [ 73.828125, 38.272689 ], [ 73.828125, 39.909736 ], [ 74.531250, 39.909736 ], [ 74.531250, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.979898 ], [ 78.750000, 40.979898 ], [ 78.750000, 41.508577 ], [ 80.156250, 41.508577 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 45.089036 ], [ 82.265625, 45.089036 ], [ 82.265625, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.517201 ], [ 83.671875, 47.517201 ], [ 83.671875, 47.040182 ], [ 85.781250, 47.040182 ], [ 85.781250, 48.458352 ], [ 86.484375, 48.458352 ], [ 86.484375, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.590467 ], [ 94.921875, 44.590467 ], [ 94.921875, 44.087585 ], [ 95.625000, 44.087585 ], [ 95.625000, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.032974 ], [ 104.765625, 42.032974 ], [ 104.765625, 41.508577 ], [ 106.171875, 41.508577 ], [ 106.171875, 42.032974 ], [ 107.578125, 42.032974 ], [ 107.578125, 42.553080 ], [ 110.390625, 42.553080 ], [ 110.390625, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.093750, 44.087585 ], [ 111.093750, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.590467 ], [ 113.906250, 44.590467 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.558860 ], [ 119.531250, 46.558860 ], [ 119.531250, 47.040182 ], [ 118.828125, 47.040182 ], [ 118.828125, 47.517201 ], [ 115.312500, 47.517201 ], [ 115.312500, 48.458352 ], [ 116.015625, 48.458352 ], [ 116.015625, 49.382373 ], [ 118.828125, 49.382373 ], [ 118.828125, 49.837982 ], [ 119.531250, 49.837982 ], [ 119.531250, 51.179343 ], [ 120.234375, 51.179343 ], [ 120.234375, 51.618017 ], [ 120.937500, 51.618017 ], [ 120.937500, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.908902 ], [ 120.937500, 52.908902 ], [ 120.937500, 53.330873 ], [ 125.156250, 53.330873 ], [ 125.156250, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 50.289339 ], [ 127.968750, 50.289339 ], [ 127.968750, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 48.922499 ], [ 130.781250, 48.922499 ], [ 130.781250, 47.989922 ], [ 134.296875, 47.989922 ], [ 134.296875, 46.558860 ], [ 133.593750, 46.558860 ], [ 133.593750, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 44.590467 ], [ 131.484375, 44.590467 ], [ 131.484375, 43.068888 ], [ 130.781250, 43.068888 ], [ 130.781250, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 125.859375, 41.508577 ], [ 125.859375, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 38.822591 ], [ 121.640625, 38.822591 ], [ 121.640625, 39.909736 ], [ 122.343750, 39.909736 ], [ 122.343750, 40.446947 ], [ 120.937500, 40.446947 ], [ 120.937500, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.368279 ], [ 118.125000, 39.368279 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.272689 ], [ 118.125000, 38.272689 ], [ 118.125000, 37.718590 ], [ 118.828125, 37.718590 ], [ 118.828125, 37.160317 ], [ 120.937500, 37.160317 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 34.885931 ], [ 118.828125, 34.885931 ], [ 118.828125, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.937500, 33.724340 ], [ 120.937500, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.145127 ], [ 121.640625, 30.145127 ], [ 121.640625, 29.535230 ], [ 122.343750, 29.535230 ], [ 122.343750, 28.921631 ], [ 121.640625, 28.921631 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.683528 ], [ 120.234375, 27.683528 ], [ 120.234375, 26.431228 ], [ 119.531250, 26.431228 ], [ 119.531250, 25.165173 ], [ 118.828125, 25.165173 ], [ 118.828125, 23.885838 ], [ 117.421875, 23.885838 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 21.943046 ], [ 113.203125, 21.943046 ], [ 113.203125, 21.289374 ], [ 111.093750, 21.289374 ], [ 111.093750, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 19.973349 ], [ 111.093750, 19.973349 ], [ 111.093750, 19.311143 ], [ 110.390625, 19.311143 ], [ 110.390625, 17.978733 ], [ 108.984375, 17.978733 ], [ 108.984375, 18.646245 ], [ 108.281250, 18.646245 ], [ 108.281250, 19.311143 ], [ 108.984375, 19.311143 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.734375, 14.604847 ], [ 98.437500, 14.604847 ], [ 98.437500, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 11.867351 ], [ 97.734375, 11.867351 ], [ 97.734375, 12.554564 ], [ 98.437500, 12.554564 ], [ 98.437500, 13.239945 ], [ 97.734375, 13.239945 ], [ 97.734375, 14.604847 ] ] ], [ [ [ 97.734375, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.799891 ], [ 97.734375, 25.799891 ], [ 97.734375, 25.165173 ], [ 97.031250, 25.165173 ], [ 97.031250, 24.527135 ], [ 98.437500, 24.527135 ], [ 98.437500, 23.241346 ], [ 99.140625, 23.241346 ], [ 99.140625, 21.943046 ], [ 100.546875, 21.943046 ], [ 100.546875, 21.289374 ], [ 99.843750, 21.289374 ], [ 99.843750, 20.632784 ], [ 99.140625, 20.632784 ], [ 99.140625, 19.973349 ], [ 97.734375, 19.973349 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.308688 ], [ 98.437500, 17.308688 ], [ 98.437500, 15.284185 ], [ 97.734375, 15.284185 ], [ 97.734375, 15.961329 ], [ 97.031250, 15.961329 ], [ 97.031250, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 15.961329 ], [ 93.515625, 15.961329 ], [ 93.515625, 16.636192 ], [ 94.218750, 16.636192 ], [ 94.218750, 19.311143 ], [ 93.515625, 19.311143 ], [ 93.515625, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.632784 ], [ 92.109375, 20.632784 ], [ 92.109375, 22.593726 ], [ 92.812500, 22.593726 ], [ 92.812500, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.527135 ], [ 94.218750, 24.527135 ], [ 94.218750, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 27.059126 ], [ 96.328125, 27.059126 ], [ 96.328125, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 27.683528 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.437500, 13.923404 ], [ 97.734375, 13.923404 ], [ 97.734375, 15.961329 ], [ 97.031250, 15.961329 ], [ 97.031250, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 18.646245 ], [ 93.515625, 18.646245 ], [ 93.515625, 19.973349 ], [ 92.109375, 19.973349 ], [ 92.109375, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.515625, 21.943046 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.527135 ], [ 94.921875, 24.527135 ], [ 94.921875, 26.431228 ], [ 96.328125, 26.431228 ], [ 96.328125, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 23.241346 ], [ 99.843750, 23.241346 ], [ 99.843750, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 19.973349 ], [ 98.437500, 19.973349 ], [ 98.437500, 19.311143 ], [ 97.734375, 19.311143 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 15.961329 ], [ 99.140625, 15.961329 ], [ 99.140625, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 13.923404 ] ] ], [ [ [ 98.437500, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 11.867351 ], [ 99.843750, 11.867351 ], [ 99.843750, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.437500, 10.487812 ], [ 98.437500, 13.923404 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.953125, 22.593726 ], [ 101.953125, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 104.062500, 21.289374 ], [ 104.062500, 20.632784 ], [ 104.765625, 20.632784 ], [ 104.765625, 19.973349 ], [ 104.062500, 19.973349 ], [ 104.062500, 19.311143 ], [ 104.765625, 19.311143 ], [ 104.765625, 18.646245 ], [ 105.468750, 18.646245 ], [ 105.468750, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 14.604847 ], [ 106.171875, 14.604847 ], [ 106.171875, 13.923404 ], [ 104.765625, 13.923404 ], [ 104.765625, 14.604847 ], [ 105.468750, 14.604847 ], [ 105.468750, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.062500, 17.308688 ], [ 104.062500, 17.978733 ], [ 103.359375, 17.978733 ], [ 103.359375, 18.646245 ], [ 102.656250, 18.646245 ], [ 102.656250, 17.978733 ], [ 100.546875, 17.978733 ], [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 22.593726 ], [ 101.953125, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.359375, 21.289374 ], [ 103.359375, 20.632784 ], [ 104.765625, 20.632784 ], [ 104.765625, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.875000, 16.636192 ], [ 106.875000, 15.961329 ], [ 107.578125, 15.961329 ], [ 107.578125, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.062500, 17.308688 ], [ 104.062500, 17.978733 ], [ 101.953125, 17.978733 ], [ 101.953125, 17.308688 ], [ 101.250000, 17.308688 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 99.843750, 19.973349 ], [ 99.843750, 20.632784 ], [ 101.250000, 20.632784 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.943046 ], [ 102.656250, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.843750, 7.013668 ], [ 99.140625, 7.013668 ], [ 99.140625, 7.710992 ], [ 98.437500, 7.710992 ], [ 98.437500, 8.407168 ], [ 97.734375, 8.407168 ], [ 97.734375, 9.795678 ], [ 98.437500, 9.795678 ], [ 98.437500, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 9.795678 ], [ 99.843750, 9.795678 ], [ 99.843750, 7.013668 ] ] ], [ [ [ 100.546875, 19.973349 ], [ 101.250000, 19.973349 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 17.978733 ], [ 102.656250, 17.978733 ], [ 102.656250, 18.646245 ], [ 103.359375, 18.646245 ], [ 103.359375, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.468750, 15.961329 ], [ 105.468750, 14.604847 ], [ 102.656250, 14.604847 ], [ 102.656250, 13.923404 ], [ 101.953125, 13.923404 ], [ 101.953125, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.239945 ], [ 100.546875, 13.239945 ], [ 100.546875, 13.923404 ], [ 99.843750, 13.923404 ], [ 99.843750, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 14.604847 ], [ 97.734375, 14.604847 ], [ 97.734375, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 20.632784 ], [ 100.546875, 20.632784 ], [ 100.546875, 19.973349 ] ] ], [ [ [ 99.843750, 7.013668 ], [ 101.250000, 7.013668 ], [ 101.250000, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.140625, 10.487812 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.407168 ], [ 100.546875, 8.407168 ], [ 100.546875, 7.013668 ], [ 101.953125, 7.013668 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 7.013668 ], [ 99.140625, 7.013668 ], [ 99.140625, 7.710992 ], [ 98.437500, 7.710992 ], [ 98.437500, 10.487812 ], [ 99.140625, 10.487812 ] ] ], [ [ [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 17.308688 ], [ 101.953125, 17.308688 ], [ 101.953125, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.468750, 15.961329 ], [ 105.468750, 14.604847 ], [ 104.062500, 14.604847 ], [ 104.062500, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 11.867351 ], [ 101.953125, 11.867351 ], [ 101.953125, 12.554564 ], [ 101.250000, 12.554564 ], [ 101.250000, 13.239945 ], [ 99.843750, 13.239945 ], [ 99.843750, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 15.284185 ], [ 99.140625, 15.284185 ], [ 99.140625, 15.961329 ], [ 98.437500, 15.961329 ], [ 98.437500, 16.636192 ], [ 97.734375, 16.636192 ], [ 97.734375, 17.978733 ], [ 97.031250, 17.978733 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.311143 ], [ 98.437500, 19.311143 ], [ 98.437500, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.468750, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.978733 ], [ 106.875000, 17.978733 ], [ 106.875000, 16.636192 ], [ 107.578125, 16.636192 ], [ 107.578125, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 14.604847 ], [ 108.984375, 14.604847 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.487812 ], [ 106.875000, 10.487812 ], [ 106.875000, 9.795678 ], [ 106.171875, 9.795678 ], [ 106.171875, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 11.178402 ], [ 105.468750, 11.178402 ], [ 105.468750, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 13.239945 ], [ 107.578125, 13.239945 ], [ 107.578125, 13.923404 ], [ 106.875000, 13.923404 ], [ 106.875000, 15.961329 ], [ 106.171875, 15.961329 ], [ 106.171875, 17.308688 ], [ 105.468750, 17.308688 ], [ 105.468750, 18.646245 ] ] ], [ [ [ 105.468750, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 19.973349 ], [ 104.765625, 19.973349 ], [ 104.765625, 20.632784 ], [ 104.062500, 20.632784 ], [ 104.062500, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 101.953125, 21.943046 ], [ 101.953125, 22.593726 ], [ 102.656250, 22.593726 ], [ 102.656250, 23.241346 ], [ 106.171875, 23.241346 ], [ 106.171875, 21.943046 ], [ 107.578125, 21.943046 ], [ 107.578125, 21.289374 ], [ 106.171875, 21.289374 ], [ 106.171875, 20.632784 ], [ 105.468750, 20.632784 ], [ 105.468750, 18.646245 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.171875, 17.308688 ], [ 105.468750, 17.308688 ], [ 105.468750, 17.978733 ], [ 104.765625, 17.978733 ], [ 104.765625, 18.646245 ], [ 104.062500, 18.646245 ], [ 104.062500, 19.311143 ], [ 104.765625, 19.311143 ], [ 104.765625, 20.632784 ], [ 103.359375, 20.632784 ], [ 103.359375, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 101.953125, 21.943046 ], [ 101.953125, 22.593726 ], [ 106.875000, 22.593726 ], [ 106.875000, 21.289374 ], [ 108.281250, 21.289374 ], [ 108.281250, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 19.973349 ], [ 106.171875, 19.973349 ], [ 106.171875, 19.311143 ], [ 105.468750, 19.311143 ], [ 105.468750, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.308688 ] ] ], [ [ [ 107.578125, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.284185 ], [ 108.984375, 15.284185 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.487812 ], [ 106.875000, 10.487812 ], [ 106.875000, 9.795678 ], [ 106.171875, 9.795678 ], [ 106.171875, 9.102097 ], [ 105.468750, 9.102097 ], [ 105.468750, 8.407168 ], [ 104.765625, 8.407168 ], [ 104.765625, 9.795678 ], [ 104.062500, 9.795678 ], [ 104.062500, 10.487812 ], [ 105.468750, 10.487812 ], [ 105.468750, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 12.554564 ], [ 107.578125, 12.554564 ], [ 107.578125, 15.961329 ] ] ], [ [ [ 106.875000, 16.636192 ], [ 107.578125, 16.636192 ], [ 107.578125, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.636192 ] ] ], [ [ [ 106.171875, 17.308688 ], [ 106.875000, 17.308688 ], [ 106.875000, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.875000, 14.604847 ], [ 106.875000, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 13.239945 ], [ 106.875000, 13.239945 ], [ 106.875000, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 11.178402 ], [ 104.765625, 11.178402 ], [ 104.765625, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 11.867351 ], [ 101.953125, 11.867351 ], [ 101.953125, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 14.604847 ], [ 104.765625, 14.604847 ], [ 104.765625, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.604847 ], [ 106.875000, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 14.604847 ], [ 105.468750, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 13.923404 ], [ 104.062500, 13.923404 ], [ 104.062500, 14.604847 ], [ 105.468750, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.953125, 6.315299 ], [ 101.953125, 5.615986 ], [ 102.656250, 5.615986 ], [ 102.656250, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 4.214943 ], [ 102.656250, 4.214943 ], [ 102.656250, 3.513421 ], [ 103.359375, 3.513421 ], [ 103.359375, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.406109 ], [ 101.953125, 1.406109 ], [ 101.953125, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 4.915833 ], [ 99.843750, 4.915833 ], [ 99.843750, 6.315299 ], [ 101.953125, 6.315299 ] ] ], [ [ [ 115.312500, 4.915833 ], [ 115.312500, 3.513421 ], [ 114.609375, 3.513421 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 2.108899 ], [ 111.796875, 2.108899 ], [ 111.796875, 1.406109 ], [ 108.984375, 1.406109 ], [ 108.984375, 2.108899 ], [ 111.093750, 2.108899 ], [ 111.093750, 2.811371 ], [ 111.796875, 2.811371 ], [ 111.796875, 3.513421 ], [ 113.203125, 3.513421 ], [ 113.203125, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.915833 ], [ 115.312500, 4.915833 ] ] ], [ [ [ 117.421875, 7.013668 ], [ 117.421875, 6.315299 ], [ 118.125000, 6.315299 ], [ 118.125000, 4.214943 ], [ 116.718750, 4.214943 ], [ 116.718750, 4.915833 ], [ 115.312500, 4.915833 ], [ 115.312500, 5.615986 ], [ 116.015625, 5.615986 ], [ 116.015625, 6.315299 ], [ 116.718750, 6.315299 ], [ 116.718750, 7.013668 ], [ 117.421875, 7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.421875, 7.013668 ], [ 117.421875, 5.615986 ], [ 119.531250, 5.615986 ], [ 119.531250, 4.915833 ], [ 118.125000, 4.915833 ], [ 118.125000, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 0.703107 ], [ 109.687500, 0.703107 ], [ 109.687500, 1.406109 ], [ 111.093750, 1.406109 ], [ 111.093750, 2.811371 ], [ 113.203125, 2.811371 ], [ 113.203125, 3.513421 ], [ 113.906250, 3.513421 ], [ 113.906250, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 116.015625, 5.615986 ], [ 116.015625, 6.315299 ], [ 116.718750, 6.315299 ], [ 116.718750, 7.013668 ], [ 117.421875, 7.013668 ] ] ], [ [ [ 102.656250, 6.315299 ], [ 102.656250, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.811371 ], [ 104.062500, 2.811371 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 6.315299 ], [ 102.656250, 6.315299 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 25.165173 ], [ 121.640625, 23.885838 ], [ 120.937500, 23.885838 ], [ 120.937500, 22.593726 ], [ 119.531250, 22.593726 ], [ 119.531250, 24.527135 ], [ 120.234375, 24.527135 ], [ 120.234375, 25.165173 ], [ 121.640625, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 24.527135 ], [ 121.640625, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 21.943046 ], [ 120.234375, 21.943046 ], [ 120.234375, 23.885838 ], [ 120.937500, 23.885838 ], [ 120.937500, 24.527135 ], [ 121.640625, 24.527135 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.375000, 42.032974 ], [ 129.375000, 40.979898 ], [ 128.671875, 40.979898 ], [ 128.671875, 40.446947 ], [ 127.968750, 40.446947 ], [ 127.968750, 39.909736 ], [ 127.265625, 39.909736 ], [ 127.265625, 38.272689 ], [ 124.453125, 38.272689 ], [ 124.453125, 39.368279 ], [ 125.156250, 39.368279 ], [ 125.156250, 39.909736 ], [ 123.750000, 39.909736 ], [ 123.750000, 40.446947 ], [ 124.453125, 40.446947 ], [ 124.453125, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 41.508577 ], [ 127.968750, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ] ] ], [ [ [ 130.078125, 42.032974 ], [ 129.375000, 42.032974 ], [ 129.375000, 42.553080 ], [ 130.078125, 42.553080 ], [ 130.078125, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.781250, 42.553080 ], [ 130.781250, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.508577 ], [ 129.375000, 41.508577 ], [ 129.375000, 40.446947 ], [ 128.671875, 40.446947 ], [ 128.671875, 39.909736 ], [ 127.265625, 39.909736 ], [ 127.265625, 38.822591 ], [ 128.671875, 38.822591 ], [ 128.671875, 38.272689 ], [ 127.265625, 38.272689 ], [ 127.265625, 37.718590 ], [ 124.453125, 37.718590 ], [ 124.453125, 38.272689 ], [ 125.156250, 38.272689 ], [ 125.156250, 39.368279 ], [ 124.453125, 39.368279 ], [ 124.453125, 39.909736 ], [ 125.156250, 39.909736 ], [ 125.156250, 40.446947 ], [ 125.859375, 40.446947 ], [ 125.859375, 41.508577 ], [ 127.968750, 41.508577 ], [ 127.968750, 42.032974 ], [ 129.375000, 42.032974 ], [ 129.375000, 42.553080 ], [ 130.781250, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.968750, 38.822591 ], [ 127.968750, 38.272689 ], [ 128.671875, 38.272689 ], [ 128.671875, 37.160317 ], [ 129.375000, 37.160317 ], [ 129.375000, 35.460670 ], [ 127.968750, 35.460670 ], [ 127.968750, 34.885931 ], [ 125.859375, 34.885931 ], [ 125.859375, 37.160317 ], [ 126.562500, 37.160317 ], [ 126.562500, 37.718590 ], [ 125.859375, 37.718590 ], [ 125.859375, 38.272689 ], [ 127.265625, 38.272689 ], [ 127.265625, 38.822591 ], [ 127.968750, 38.822591 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.671875, 38.272689 ], [ 128.671875, 37.718590 ], [ 129.375000, 37.718590 ], [ 129.375000, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 36.031332 ], [ 125.859375, 36.031332 ], [ 125.859375, 36.597889 ], [ 126.562500, 36.597889 ], [ 126.562500, 37.160317 ], [ 125.859375, 37.160317 ], [ 125.859375, 37.718590 ], [ 127.265625, 37.718590 ], [ 127.265625, 38.272689 ], [ 128.671875, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.859375, 9.795678 ], [ 125.859375, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 5.615986 ], [ 123.750000, 5.615986 ], [ 123.750000, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 7.013668 ], [ 121.640625, 7.013668 ], [ 121.640625, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 125.156250, 9.102097 ], [ 125.156250, 9.795678 ], [ 125.859375, 9.795678 ] ] ], [ [ [ 120.234375, 13.923404 ], [ 120.234375, 14.604847 ], [ 119.531250, 14.604847 ], [ 119.531250, 16.636192 ], [ 120.234375, 16.636192 ], [ 120.234375, 18.646245 ], [ 121.640625, 18.646245 ], [ 121.640625, 17.308688 ], [ 122.343750, 17.308688 ], [ 122.343750, 16.636192 ], [ 121.640625, 16.636192 ], [ 121.640625, 15.284185 ], [ 120.937500, 15.284185 ], [ 120.937500, 14.604847 ], [ 122.343750, 14.604847 ], [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 12.554564 ], [ 123.046875, 12.554564 ], [ 123.046875, 13.239945 ], [ 121.640625, 13.239945 ], [ 121.640625, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 12.554564 ], [ 120.234375, 12.554564 ], [ 120.234375, 13.923404 ] ] ], [ [ [ 123.046875, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 10.487812 ], [ 123.046875, 10.487812 ], [ 123.046875, 9.102097 ], [ 122.343750, 9.102097 ], [ 122.343750, 10.487812 ], [ 121.640625, 10.487812 ], [ 121.640625, 11.867351 ], [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ] ] ], [ [ [ 119.531250, 11.178402 ], [ 119.531250, 10.487812 ], [ 118.828125, 10.487812 ], [ 118.828125, 11.178402 ], [ 119.531250, 11.178402 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.156250, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.859375, 6.315299 ], [ 125.859375, 5.615986 ], [ 124.453125, 5.615986 ], [ 124.453125, 6.315299 ], [ 123.750000, 6.315299 ], [ 123.750000, 7.710992 ], [ 123.046875, 7.710992 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 126.562500, 9.102097 ], [ 126.562500, 6.315299 ], [ 125.859375, 6.315299 ] ], [ [ 125.859375, 6.315299 ], [ 125.859375, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 6.315299 ], [ 125.859375, 6.315299 ] ] ], [ [ [ 121.640625, 13.923404 ], [ 120.937500, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 17.978733 ], [ 120.937500, 17.978733 ], [ 120.937500, 18.646245 ], [ 121.640625, 18.646245 ], [ 121.640625, 17.978733 ], [ 122.343750, 17.978733 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 13.923404 ] ] ], [ [ [ 123.046875, 7.710992 ], [ 123.046875, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 7.710992 ], [ 123.046875, 7.710992 ] ] ], [ [ [ 118.828125, 9.795678 ], [ 118.828125, 8.407168 ], [ 117.421875, 8.407168 ], [ 117.421875, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.795678 ], [ 118.828125, 9.795678 ] ] ], [ [ [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 9.102097 ], [ 122.343750, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.046875, 9.795678 ], [ 123.046875, 10.487812 ], [ 121.640625, 10.487812 ], [ 121.640625, 11.867351 ], [ 123.046875, 11.867351 ] ] ], [ [ [ 125.156250, 11.178402 ], [ 125.156250, 9.795678 ], [ 124.453125, 9.795678 ], [ 124.453125, 11.178402 ], [ 125.156250, 11.178402 ] ] ], [ [ [ 119.531250, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 10.487812 ], [ 119.531250, 10.487812 ], [ 119.531250, 9.795678 ] ] ], [ [ [ 122.343750, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ], [ 124.453125, 13.239945 ], [ 124.453125, 12.554564 ], [ 123.046875, 12.554564 ], [ 123.046875, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.923404 ] ] ], [ [ [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 120.234375, 12.554564 ], [ 120.234375, 13.239945 ], [ 121.640625, 13.239945 ] ] ], [ [ [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.554564 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.609375, 4.915833 ], [ 114.609375, 4.214943 ], [ 113.906250, 4.214943 ], [ 113.906250, 4.915833 ], [ 114.609375, 4.915833 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 4.915833 ], [ 115.312500, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.915833 ], [ 115.312500, 4.915833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 33.724340 ], [ 131.484375, 33.724340 ], [ 131.484375, 32.546813 ], [ 130.781250, 32.546813 ], [ 130.781250, 31.353637 ], [ 130.078125, 31.353637 ], [ 130.078125, 32.546813 ], [ 129.375000, 32.546813 ], [ 129.375000, 33.724340 ], [ 130.781250, 33.724340 ] ] ], [ [ [ 132.890625, 33.724340 ], [ 132.890625, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 33.724340 ], [ 132.890625, 33.724340 ] ] ], [ [ [ 132.890625, 34.307144 ], [ 131.484375, 34.307144 ], [ 131.484375, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.460670 ], [ 133.593750, 35.460670 ], [ 133.593750, 36.031332 ], [ 135.703125, 36.031332 ], [ 135.703125, 37.160317 ], [ 137.812500, 37.160317 ], [ 137.812500, 37.718590 ], [ 138.515625, 37.718590 ], [ 138.515625, 38.272689 ], [ 139.218750, 38.272689 ], [ 139.218750, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.446947 ], [ 139.218750, 40.446947 ], [ 139.218750, 40.979898 ], [ 139.921875, 40.979898 ], [ 139.921875, 41.508577 ], [ 141.328125, 41.508577 ], [ 141.328125, 38.822591 ], [ 140.625000, 38.822591 ], [ 140.625000, 36.597889 ], [ 139.921875, 36.597889 ], [ 139.921875, 36.031332 ], [ 140.625000, 36.031332 ], [ 140.625000, 35.460670 ], [ 139.921875, 35.460670 ], [ 139.921875, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.885931 ], [ 132.890625, 34.885931 ], [ 132.890625, 34.307144 ] ] ], [ [ [ 142.031250, 45.089036 ], [ 142.031250, 44.590467 ], [ 143.437500, 44.590467 ], [ 143.437500, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 43.068888 ], [ 143.437500, 43.068888 ], [ 143.437500, 42.553080 ], [ 142.734375, 42.553080 ], [ 142.734375, 42.032974 ], [ 142.031250, 42.032974 ], [ 142.031250, 42.553080 ], [ 140.625000, 42.553080 ], [ 140.625000, 42.032974 ], [ 139.921875, 42.032974 ], [ 139.921875, 42.553080 ], [ 139.218750, 42.553080 ], [ 139.218750, 43.068888 ], [ 139.921875, 43.068888 ], [ 139.921875, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 142.031250, 45.089036 ] ] ], [ [ [ 132.890625, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 33.724340 ], [ 132.890625, 33.724340 ], [ 132.890625, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.000000, 33.724340 ], [ 135.000000, 33.137551 ], [ 133.593750, 33.137551 ], [ 133.593750, 32.546813 ], [ 132.187500, 32.546813 ], [ 132.187500, 31.952162 ], [ 131.484375, 31.952162 ], [ 131.484375, 30.751278 ], [ 130.078125, 30.751278 ], [ 130.078125, 31.952162 ], [ 130.781250, 31.952162 ], [ 130.781250, 32.546813 ], [ 129.375000, 32.546813 ], [ 129.375000, 33.137551 ], [ 130.078125, 33.137551 ], [ 130.078125, 33.724340 ], [ 130.781250, 33.724340 ], [ 130.781250, 34.307144 ], [ 132.187500, 34.307144 ], [ 132.187500, 34.885931 ], [ 132.890625, 34.885931 ], [ 132.890625, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 36.031332 ], [ 136.406250, 36.031332 ], [ 136.406250, 36.597889 ], [ 137.812500, 36.597889 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.446947 ], [ 140.625000, 40.446947 ], [ 140.625000, 40.979898 ], [ 141.328125, 40.979898 ], [ 141.328125, 40.446947 ], [ 142.031250, 40.446947 ], [ 142.031250, 38.822591 ], [ 141.328125, 38.822591 ], [ 141.328125, 38.272689 ], [ 140.625000, 38.272689 ], [ 140.625000, 35.460670 ], [ 139.921875, 35.460670 ], [ 139.921875, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 33.724340 ], [ 135.000000, 33.724340 ] ], [ [ 130.781250, 33.724340 ], [ 130.781250, 33.137551 ], [ 132.187500, 33.137551 ], [ 132.187500, 33.724340 ], [ 130.781250, 33.724340 ] ], [ [ 134.296875, 34.307144 ], [ 134.296875, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ], [ 143.437500, 44.590467 ], [ 143.437500, 44.087585 ], [ 145.546875, 44.087585 ], [ 145.546875, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.031250, 42.032974 ], [ 142.031250, 42.553080 ], [ 141.328125, 42.553080 ], [ 141.328125, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 43.068888 ], [ 140.625000, 43.068888 ], [ 140.625000, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 142.734375, 45.089036 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.811371 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 0.703107 ], [ 13.359375, 0.703107 ], [ 13.359375, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -2.108899 ], [ 11.250000, -2.108899 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, -1.406109 ], [ 8.437500, -1.406109 ], [ 8.437500, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.811371 ], [ 12.656250, 2.811371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.656250, 2.108899 ], [ 12.656250, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, -1.406109 ], [ 14.765625, -1.406109 ], [ 14.765625, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.811371 ], [ 13.359375, -2.811371 ], [ 13.359375, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -3.513421 ], [ 9.843750, -3.513421 ], [ 9.843750, -2.811371 ], [ 9.140625, -2.811371 ], [ 9.140625, 0.000000 ], [ 9.843750, 0.000000 ], [ 9.843750, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.108899 ], [ 12.656250, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 4.214943 ], [ 17.578125, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 2.811371 ], [ 17.578125, 2.811371 ], [ 17.578125, -0.703107 ], [ 16.171875, -0.703107 ], [ 16.171875, -2.108899 ], [ 15.468750, -2.108899 ], [ 15.468750, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, 0.000000 ], [ 13.359375, 0.000000 ], [ 13.359375, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.811371 ], [ 14.062500, 2.811371 ], [ 14.062500, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 4.214943 ], [ 17.578125, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 1.406109 ], [ 17.578125, 1.406109 ], [ 17.578125, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -2.811371 ], [ 12.656250, -2.811371 ], [ 12.656250, -2.108899 ], [ 13.359375, -2.108899 ], [ 13.359375, -2.811371 ], [ 14.062500, -2.811371 ], [ 14.062500, -2.108899 ], [ 14.765625, -2.108899 ], [ 14.765625, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, 1.406109 ], [ 12.656250, 1.406109 ], [ 12.656250, 2.108899 ], [ 15.468750, 2.108899 ], [ 15.468750, 1.406109 ], [ 16.171875, 1.406109 ], [ 16.171875, 2.811371 ], [ 16.875000, 2.811371 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 5.615986 ], [ 26.718750, 4.915833 ], [ 29.531250, 4.915833 ], [ 29.531250, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 2.811371 ], [ 30.937500, 2.811371 ], [ 30.937500, 2.108899 ], [ 30.234375, 2.108899 ], [ 30.234375, 1.406109 ], [ 29.531250, 1.406109 ], [ 29.531250, -1.406109 ], [ 28.828125, -1.406109 ], [ 28.828125, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -0.703107 ], [ 17.578125, -0.703107 ], [ 17.578125, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 4.915833 ], [ 21.093750, 4.915833 ], [ 21.093750, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 4.915833 ], [ 24.609375, 4.915833 ], [ 24.609375, 5.615986 ], [ 26.718750, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 4.915833 ], [ 27.421875, 4.214943 ], [ 30.234375, 4.214943 ], [ 30.234375, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.531250, 0.703107 ], [ 29.531250, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.513421 ], [ 16.171875, -3.513421 ], [ 16.171875, -1.406109 ], [ 17.578125, -1.406109 ], [ 17.578125, 1.406109 ], [ 18.281250, 1.406109 ], [ 18.281250, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.915833 ], [ 20.390625, 4.915833 ], [ 20.390625, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 4.915833 ], [ 27.421875, 4.915833 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -1.406109 ], [ 30.234375, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -1.406109 ], [ 30.234375, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.531250, -2.108899 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -2.108899 ], [ 30.234375, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -2.108899 ], [ 30.234375, -2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -2.811371 ], [ 30.937500, -3.513421 ], [ 28.828125, -3.513421 ], [ 28.828125, -2.811371 ], [ 30.937500, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 35.156250, -1.406109 ], [ 35.156250, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.265625, -2.811371 ], [ 37.265625, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -2.108899 ], [ 36.562500, -2.108899 ], [ 36.562500, -2.811371 ], [ 37.968750, -2.811371 ], [ 37.968750, -3.513421 ], [ 30.937500, -3.513421 ], [ 30.937500, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.562500, -2.811371 ], [ 126.562500, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -2.811371 ], [ 126.562500, -2.811371 ] ] ], [ [ [ 130.078125, -2.811371 ], [ 130.078125, -3.513421 ], [ 129.375000, -3.513421 ], [ 129.375000, -2.811371 ], [ 130.078125, -2.811371 ] ] ], [ [ [ 132.187500, 0.000000 ], [ 132.187500, -0.703107 ], [ 133.593750, -0.703107 ], [ 133.593750, -1.406109 ], [ 134.296875, -1.406109 ], [ 134.296875, -2.811371 ], [ 135.703125, -2.811371 ], [ 135.703125, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 140.625000, -2.108899 ], [ 140.625000, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 132.890625, -2.811371 ], [ 132.890625, -2.108899 ], [ 131.484375, -2.108899 ], [ 131.484375, -1.406109 ], [ 130.078125, -1.406109 ], [ 130.078125, -0.703107 ], [ 131.484375, -0.703107 ], [ 131.484375, 0.000000 ], [ 132.187500, 0.000000 ] ] ], [ [ [ 119.531250, 0.000000 ], [ 119.531250, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 118.125000, -2.811371 ], [ 118.125000, -2.108899 ], [ 118.828125, -2.108899 ], [ 118.828125, 0.000000 ], [ 119.531250, 0.000000 ] ] ], [ [ [ 116.718750, 4.915833 ], [ 116.718750, 4.214943 ], [ 117.421875, 4.214943 ], [ 117.421875, 3.513421 ], [ 116.718750, 3.513421 ], [ 116.718750, 2.811371 ], [ 117.421875, 2.811371 ], [ 117.421875, -1.406109 ], [ 116.015625, -1.406109 ], [ 116.015625, -3.513421 ], [ 113.906250, -3.513421 ], [ 113.906250, -2.811371 ], [ 109.687500, -2.811371 ], [ 109.687500, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 0.000000 ], [ 108.281250, 0.000000 ], [ 108.281250, 0.703107 ], [ 108.984375, 0.703107 ], [ 108.984375, 1.406109 ], [ 111.796875, 1.406109 ], [ 111.796875, 2.108899 ], [ 112.500000, 2.108899 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 3.513421 ], [ 115.312500, 3.513421 ], [ 115.312500, 4.915833 ], [ 116.718750, 4.915833 ] ] ], [ [ [ 97.031250, 5.615986 ], [ 97.031250, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.214943 ], [ 99.140625, 4.214943 ], [ 99.140625, 2.811371 ], [ 99.843750, 2.811371 ], [ 99.843750, 2.108899 ], [ 101.250000, 2.108899 ], [ 101.250000, 1.406109 ], [ 101.953125, 1.406109 ], [ 101.953125, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, -0.703107 ], [ 104.062500, -0.703107 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -3.513421 ], [ 101.953125, -3.513421 ], [ 101.953125, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 0.703107 ], [ 98.437500, 0.703107 ], [ 98.437500, 2.108899 ], [ 97.031250, 2.108899 ], [ 97.031250, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 4.915833 ], [ 94.921875, 4.915833 ], [ 94.921875, 5.615986 ], [ 97.031250, 5.615986 ] ] ], [ [ [ 122.343750, -0.703107 ], [ 122.343750, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -0.703107 ], [ 122.343750, -0.703107 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 127.968750, 0.703107 ], [ 127.968750, -0.703107 ], [ 127.265625, -0.703107 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 123.046875, -0.703107 ], [ 122.343750, -0.703107 ], [ 122.343750, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, -0.703107 ] ] ], [ [ [ 120.234375, 0.703107 ], [ 120.234375, 1.406109 ], [ 124.453125, 1.406109 ], [ 124.453125, 0.703107 ], [ 120.234375, 0.703107 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 124.453125, 1.406109 ], [ 124.453125, 2.108899 ], [ 125.156250, 2.108899 ], [ 125.156250, 1.406109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, -2.811371 ], [ 130.781250, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 130.781250, -2.811371 ] ] ], [ [ [ 134.296875, -0.703107 ], [ 134.296875, -3.513421 ], [ 132.187500, -3.513421 ], [ 132.187500, -2.811371 ], [ 133.593750, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -0.703107 ], [ 134.296875, -0.703107 ] ] ], [ [ [ 118.125000, 4.214943 ], [ 118.125000, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 118.125000, 2.811371 ], [ 118.125000, 1.406109 ], [ 118.828125, 1.406109 ], [ 118.828125, 0.703107 ], [ 118.125000, 0.703107 ], [ 118.125000, 0.000000 ], [ 117.421875, 0.000000 ], [ 117.421875, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -2.811371 ], [ 110.390625, -2.811371 ], [ 110.390625, -1.406109 ], [ 108.984375, -1.406109 ], [ 108.984375, 1.406109 ], [ 109.687500, 1.406109 ], [ 109.687500, 0.703107 ], [ 112.500000, 0.703107 ], [ 112.500000, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 2.108899 ], [ 115.312500, 2.108899 ], [ 115.312500, 3.513421 ], [ 116.015625, 3.513421 ], [ 116.015625, 4.214943 ], [ 118.125000, 4.214943 ] ] ], [ [ [ 120.234375, 0.000000 ], [ 120.234375, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.513421 ], [ 120.937500, -3.513421 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -3.513421 ], [ 118.828125, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.531250, -2.811371 ], [ 119.531250, 0.000000 ], [ 120.234375, 0.000000 ] ] ], [ [ [ 96.328125, 5.615986 ], [ 96.328125, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 3.513421 ], [ 99.843750, 3.513421 ], [ 99.843750, 2.811371 ], [ 100.546875, 2.811371 ], [ 100.546875, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 0.703107 ], [ 103.359375, 0.703107 ], [ 103.359375, 0.000000 ], [ 104.062500, 0.000000 ], [ 104.062500, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -1.406109 ], [ 104.062500, -1.406109 ], [ 104.062500, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.811371 ], [ 106.171875, -2.811371 ], [ 106.171875, -3.513421 ], [ 101.250000, -3.513421 ], [ 101.250000, -2.108899 ], [ 100.546875, -2.108899 ], [ 100.546875, -1.406109 ], [ 99.843750, -1.406109 ], [ 99.843750, -0.703107 ], [ 99.140625, -0.703107 ], [ 99.140625, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 5.615986 ], [ 96.328125, 5.615986 ] ] ], [ [ [ 135.703125, -3.513421 ], [ 135.703125, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.108899 ], [ 137.109375, -2.108899 ], [ 137.109375, -1.406109 ], [ 138.515625, -1.406109 ], [ 138.515625, -2.108899 ], [ 139.921875, -2.108899 ], [ 139.921875, -2.811371 ], [ 141.328125, -2.811371 ], [ 141.328125, -3.513421 ], [ 135.703125, -3.513421 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.000000 ], [ 127.265625, 0.000000 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ] ] ], [ [ [ 124.453125, 0.703107 ], [ 124.453125, 0.000000 ], [ 123.046875, 0.000000 ], [ 123.046875, 0.703107 ], [ 124.453125, 0.703107 ] ] ], [ [ [ 120.937500, 0.000000 ], [ 120.234375, 0.000000 ], [ 120.234375, 0.703107 ], [ 120.937500, 0.703107 ], [ 120.937500, 0.000000 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 151.875000, -2.811371 ], [ 151.875000, -3.513421 ], [ 151.171875, -3.513421 ], [ 151.171875, -2.811371 ], [ 151.875000, -2.811371 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, -2.108899 ], [ 141.328125, -2.811371 ], [ 142.734375, -2.811371 ], [ 142.734375, -3.513421 ], [ 140.625000, -3.513421 ], [ 140.625000, -2.108899 ], [ 141.328125, -2.108899 ] ] ], [ [ [ 151.171875, -2.108899 ], [ 151.171875, -2.811371 ], [ 150.468750, -2.811371 ], [ 150.468750, -2.108899 ], [ 151.171875, -2.108899 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -144.492188, -85.200475 ], [ -144.492188, -85.170970 ], [ -144.140625, -85.170970 ], [ -144.140625, -85.141284 ], [ -143.789062, -85.141284 ], [ -143.789062, -85.111416 ], [ -143.437500, -85.111416 ], [ -143.437500, -85.081364 ], [ -143.085938, -85.081364 ], [ -143.085938, -84.834225 ], [ -142.734375, -84.834225 ], [ -142.734375, -84.574702 ], [ -145.195312, -84.574702 ], [ -145.195312, -84.541361 ], [ -147.304688, -84.541361 ], [ -147.304688, -84.507816 ], [ -147.656250, -84.507816 ], [ -147.656250, -84.474065 ], [ -148.359375, -84.474065 ], [ -148.359375, -84.440107 ], [ -148.710938, -84.440107 ], [ -148.710938, -84.405941 ], [ -149.062500, -84.405941 ], [ -149.062500, -84.371566 ], [ -149.765625, -84.371566 ], [ -149.765625, -84.336980 ], [ -150.117188, -84.336980 ], [ -150.117188, -84.231947 ], [ -150.468750, -84.231947 ], [ -150.468750, -84.016022 ], [ -150.820312, -84.016022 ], [ -150.820312, -83.905058 ], [ -151.171875, -83.905058 ], [ -151.171875, -83.867616 ], [ -151.875000, -83.867616 ], [ -151.875000, -83.829945 ], [ -152.226562, -83.829945 ], [ -152.226562, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.753911 ], [ -153.281250, -83.753911 ], [ -153.281250, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.480366 ], [ -153.281250, -83.480366 ], [ -153.281250, -83.026219 ], [ -152.929688, -83.026219 ], [ -152.929688, -82.631333 ], [ -152.578125, -82.631333 ], [ -152.578125, -82.261699 ], [ -152.929688, -82.261699 ], [ -152.929688, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.632812, -81.972431 ], [ -153.632812, -81.923186 ], [ -153.984375, -81.923186 ], [ -153.984375, -81.873641 ], [ -154.335938, -81.873641 ], [ -154.335938, -81.823794 ], [ -154.687500, -81.823794 ], [ -154.687500, -81.723188 ], [ -155.039062, -81.723188 ], [ -155.039062, -81.518272 ], [ -155.390625, -81.518272 ], [ -155.390625, -81.413933 ], [ -155.742188, -81.413933 ], [ -155.742188, -81.308321 ], [ -156.093750, -81.308321 ], [ -156.093750, -81.255032 ], [ -156.445312, -81.255032 ], [ -156.445312, -81.147481 ], [ -156.796875, -81.147481 ], [ -156.796875, -81.093214 ], [ -155.742188, -81.093214 ], [ -155.742188, -81.147481 ], [ -153.632812, -81.147481 ], [ -153.632812, -81.093214 ], [ -152.929688, -81.093214 ], [ -152.929688, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.147481 ], [ -151.523438, -81.147481 ], [ -151.523438, -81.255032 ], [ -151.171875, -81.255032 ], [ -151.171875, -81.361287 ], [ -150.468750, -81.361287 ], [ -150.468750, -81.308321 ], [ -150.117188, -81.308321 ], [ -150.117188, -81.255032 ], [ -149.765625, -81.255032 ], [ -149.765625, -81.201420 ], [ -149.414062, -81.201420 ], [ -149.414062, -81.147481 ], [ -149.062500, -81.147481 ], [ -149.062500, -81.093214 ], [ -148.710938, -81.093214 ], [ -148.710938, -81.038617 ], [ -148.359375, -81.038617 ], [ -148.359375, -80.928426 ], [ -148.007812, -80.928426 ], [ -148.007812, -80.816891 ], [ -147.656250, -80.816891 ], [ -147.656250, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.647035 ], [ -146.953125, -80.647035 ], [ -146.953125, -80.532071 ], [ -146.601562, -80.532071 ], [ -146.601562, -80.415707 ], [ -146.250000, -80.415707 ], [ -146.250000, -80.178713 ], [ -146.601562, -80.178713 ], [ -146.601562, -79.935918 ], [ -146.953125, -79.935918 ], [ -146.953125, -79.874297 ], [ -147.304688, -79.874297 ], [ -147.304688, -79.749932 ], [ -147.656250, -79.749932 ], [ -147.656250, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.496652 ], [ -149.062500, -79.496652 ], [ -149.062500, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.367701 ], [ -150.820312, -79.367701 ], [ -150.820312, -79.302640 ], [ -152.226562, -79.302640 ], [ -152.226562, -79.237185 ], [ -152.929688, -79.237185 ], [ -152.929688, -79.171335 ], [ -153.984375, -79.171335 ], [ -153.984375, -79.105086 ], [ -155.039062, -79.105086 ], [ -155.039062, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.971386 ], [ -155.742188, -78.971386 ], [ -155.742188, -78.836065 ], [ -156.093750, -78.836065 ], [ -156.093750, -78.699106 ], [ -156.445312, -78.699106 ], [ -156.445312, -78.560488 ], [ -156.796875, -78.560488 ], [ -156.796875, -78.420193 ], [ -157.148438, -78.420193 ], [ -157.148438, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.206563 ], [ -157.851562, -78.206563 ], [ -157.851562, -78.134493 ], [ -158.203125, -78.134493 ], [ -158.203125, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.078784 ], [ -157.500000, -77.078784 ], [ -157.500000, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.093750, -77.312520 ], [ -156.093750, -77.235074 ], [ -154.687500, -77.235074 ], [ -154.687500, -77.157163 ], [ -153.984375, -77.157163 ], [ -153.984375, -77.078784 ], [ -153.632812, -77.078784 ], [ -153.632812, -77.235074 ], [ -153.281250, -77.235074 ], [ -153.281250, -77.389504 ], [ -152.929688, -77.389504 ], [ -152.929688, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.389504 ], [ -150.820312, -77.389504 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.235074 ], [ -150.117188, -77.235074 ], [ -150.117188, -77.157163 ], [ -149.765625, -77.157163 ], [ -149.765625, -77.078784 ], [ -149.062500, -77.078784 ], [ -149.062500, -76.999935 ], [ -148.710938, -76.999935 ], [ -148.710938, -76.920614 ], [ -148.359375, -76.920614 ], [ -148.359375, -76.760541 ], [ -148.007812, -76.760541 ], [ -148.007812, -76.679785 ], [ -147.656250, -76.679785 ], [ -147.656250, -76.598545 ], [ -146.601562, -76.598545 ], [ -146.601562, -76.516819 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.930885 ], [ -146.601562, -75.930885 ], [ -146.601562, -75.584937 ], [ -146.250000, -75.584937 ], [ -146.250000, -75.408854 ], [ -145.546875, -75.408854 ], [ -145.546875, -75.320025 ], [ -144.843750, -75.320025 ], [ -144.843750, -75.408854 ], [ -144.492188, -75.408854 ], [ -144.492188, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.320025 ], [ -142.382812, -75.320025 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.050354 ], [ -139.218750, -75.050354 ], [ -139.218750, -74.959392 ], [ -138.164062, -74.959392 ], [ -138.164062, -74.867889 ], [ -137.460938, -74.867889 ], [ -137.460938, -74.775843 ], [ -137.109375, -74.775843 ], [ -137.109375, -74.683250 ], [ -136.757812, -74.683250 ], [ -136.757812, -74.590108 ], [ -136.406250, -74.590108 ], [ -136.406250, -74.496413 ], [ -136.054688, -74.496413 ], [ -136.054688, -74.402163 ], [ -135.351562, -74.402163 ], [ -135.351562, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.402163 ], [ -132.539062, -74.402163 ], [ -132.539062, -74.307353 ], [ -132.187500, -74.307353 ], [ -132.187500, -74.402163 ], [ -131.484375, -74.402163 ], [ -131.484375, -74.496413 ], [ -129.023438, -74.496413 ], [ -129.023438, -74.402163 ], [ -128.320312, -74.402163 ], [ -128.320312, -74.307353 ], [ -127.968750, -74.307353 ], [ -127.968750, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.496413 ], [ -119.179688, -74.496413 ], [ -119.179688, -74.307353 ], [ -118.828125, -74.307353 ], [ -118.828125, -74.211983 ], [ -118.125000, -74.211983 ], [ -118.125000, -74.116047 ], [ -116.718750, -74.116047 ], [ -116.718750, -74.211983 ], [ -115.664062, -74.211983 ], [ -115.664062, -74.116047 ], [ -114.960938, -74.116047 ], [ -114.960938, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.922469 ], [ -114.257812, -73.922469 ], [ -114.257812, -73.824820 ], [ -113.554688, -73.824820 ], [ -113.554688, -74.019543 ], [ -113.203125, -74.019543 ], [ -113.203125, -74.211983 ], [ -112.851562, -74.211983 ], [ -112.851562, -74.496413 ], [ -112.500000, -74.496413 ], [ -112.500000, -74.683250 ], [ -111.796875, -74.683250 ], [ -111.796875, -74.590108 ], [ -111.445312, -74.590108 ], [ -111.445312, -74.496413 ], [ -110.742188, -74.496413 ], [ -110.742188, -74.590108 ], [ -110.390625, -74.590108 ], [ -110.390625, -74.775843 ], [ -109.687500, -74.775843 ], [ -109.687500, -74.867889 ], [ -108.632812, -74.867889 ], [ -108.632812, -74.959392 ], [ -108.281250, -74.959392 ], [ -108.281250, -75.050354 ], [ -107.929688, -75.050354 ], [ -107.929688, -75.140778 ], [ -105.468750, -75.140778 ], [ -105.468750, -75.050354 ], [ -104.765625, -75.050354 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.050354 ], [ -102.656250, -75.050354 ], [ -102.656250, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.230667 ], [ -101.250000, -75.230667 ], [ -101.250000, -75.320025 ], [ -100.546875, -75.320025 ], [ -100.546875, -75.140778 ], [ -100.195312, -75.140778 ], [ -100.195312, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.590108 ], [ -100.898438, -74.590108 ], [ -100.898438, -74.402163 ], [ -101.250000, -74.402163 ], [ -101.250000, -74.211983 ], [ -102.304688, -74.211983 ], [ -102.304688, -74.116047 ], [ -102.656250, -74.116047 ], [ -102.656250, -73.922469 ], [ -103.007812, -73.922469 ], [ -103.007812, -73.528399 ], [ -103.359375, -73.528399 ], [ -103.359375, -73.022592 ], [ -103.710938, -73.022592 ], [ -103.710938, -72.711903 ], [ -102.656250, -72.711903 ], [ -102.656250, -72.816074 ], [ -100.546875, -72.816074 ], [ -100.546875, -72.711903 ], [ -100.195312, -72.711903 ], [ -100.195312, -72.816074 ], [ -99.492188, -72.816074 ], [ -99.492188, -72.919635 ], [ -99.140625, -72.919635 ], [ -99.140625, -73.022592 ], [ -98.789062, -73.022592 ], [ -98.789062, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.528399 ], [ -97.382812, -73.528399 ], [ -97.382812, -73.627789 ], [ -95.273438, -73.627789 ], [ -95.273438, -73.528399 ], [ -94.218750, -73.528399 ], [ -94.218750, -73.428424 ], [ -93.515625, -73.428424 ], [ -93.515625, -73.327858 ], [ -93.164062, -73.327858 ], [ -93.164062, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.327858 ], [ -91.757812, -73.327858 ], [ -91.757812, -73.428424 ], [ -90.351562, -73.428424 ], [ -90.351562, -73.327858 ], [ -90.000000, -73.327858 ], [ -90.000000, -73.226700 ], [ -89.648438, -73.226700 ], [ -89.648438, -72.816074 ], [ -89.296875, -72.816074 ], [ -89.296875, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -85.200475 ], [ -144.492188, -85.200475 ] ] ], [ [ [ -169.804688, -83.905058 ], [ -169.804688, -83.942272 ], [ -169.453125, -83.942272 ], [ -169.453125, -84.088878 ], [ -169.101562, -84.088878 ], [ -169.101562, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.231947 ], [ -168.398438, -84.231947 ], [ -168.398438, -84.302183 ], [ -168.046875, -84.302183 ], [ -168.046875, -84.371566 ], [ -167.695312, -84.371566 ], [ -167.695312, -84.474065 ], [ -167.343750, -84.474065 ], [ -167.343750, -84.541361 ], [ -166.992188, -84.541361 ], [ -166.992188, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.706049 ], [ -165.585938, -84.706049 ], [ -165.585938, -84.738387 ], [ -165.234375, -84.738387 ], [ -165.234375, -84.770528 ], [ -164.882812, -84.770528 ], [ -164.882812, -84.802474 ], [ -164.531250, -84.802474 ], [ -164.531250, -84.834225 ], [ -164.179688, -84.834225 ], [ -164.179688, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.928321 ], [ -163.476562, -84.928321 ], [ -163.476562, -84.990100 ], [ -163.125000, -84.990100 ], [ -163.125000, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.081364 ], [ -162.421875, -85.081364 ], [ -162.421875, -85.141284 ], [ -162.070312, -85.141284 ], [ -162.070312, -85.170970 ], [ -161.367188, -85.170970 ], [ -161.367188, -85.200475 ], [ -180.000000, -85.200475 ], [ -181.757812, -85.200475 ], [ -181.757812, -84.507816 ], [ -181.406250, -84.507816 ], [ -181.406250, -84.574702 ], [ -181.054688, -84.574702 ], [ -181.054688, -84.607840 ], [ -180.703125, -84.607840 ], [ -180.703125, -84.640777 ], [ -180.351562, -84.640777 ], [ -180.351562, -84.706049 ], [ -180.000000, -84.706049 ], [ -180.000000, -84.640777 ], [ -179.648438, -84.640777 ], [ -179.648438, -84.440107 ], [ -179.296875, -84.440107 ], [ -179.296875, -84.231947 ], [ -178.945312, -84.231947 ], [ -178.945312, -84.160849 ], [ -178.593750, -84.160849 ], [ -178.593750, -84.231947 ], [ -178.242188, -84.231947 ], [ -178.242188, -84.302183 ], [ -177.890625, -84.302183 ], [ -177.890625, -84.371566 ], [ -177.539062, -84.371566 ], [ -177.539062, -84.440107 ], [ -177.187500, -84.440107 ], [ -177.187500, -84.371566 ], [ -176.835938, -84.371566 ], [ -176.835938, -84.267172 ], [ -176.484375, -84.267172 ], [ -176.484375, -84.160849 ], [ -176.132812, -84.160849 ], [ -176.132812, -84.124973 ], [ -175.781250, -84.124973 ], [ -175.781250, -84.196507 ], [ -175.429688, -84.196507 ], [ -175.429688, -84.302183 ], [ -175.078125, -84.302183 ], [ -175.078125, -84.405941 ], [ -174.726562, -84.405941 ], [ -174.726562, -84.507816 ], [ -174.023438, -84.507816 ], [ -174.023438, -84.405941 ], [ -173.671875, -84.405941 ], [ -173.671875, -84.302183 ], [ -173.320312, -84.302183 ], [ -173.320312, -84.196507 ], [ -172.968750, -84.196507 ], [ -172.968750, -84.052561 ], [ -172.617188, -84.052561 ], [ -172.617188, -84.016022 ], [ -171.914062, -84.016022 ], [ -171.914062, -83.979259 ], [ -171.210938, -83.979259 ], [ -171.210938, -83.942272 ], [ -170.507812, -83.942272 ], [ -170.507812, -83.905058 ], [ -169.804688, -83.905058 ] ] ], [ [ [ -155.742188, -85.200475 ], [ -155.742188, -85.170970 ], [ -155.390625, -85.170970 ], [ -155.390625, -85.141284 ], [ -154.335938, -85.141284 ], [ -154.335938, -85.170970 ], [ -153.632812, -85.170970 ], [ -153.632812, -85.200475 ], [ -155.742188, -85.200475 ] ] ], [ [ [ -162.773438, -78.206563 ], [ -162.773438, -78.278201 ], [ -162.070312, -78.278201 ], [ -162.070312, -78.349411 ], [ -161.367188, -78.349411 ], [ -161.367188, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.836065 ], [ -159.960938, -78.836065 ], [ -159.960938, -78.971386 ], [ -159.609375, -78.971386 ], [ -159.609375, -79.302640 ], [ -159.257812, -79.302640 ], [ -159.257812, -79.496652 ], [ -159.609375, -79.496652 ], [ -159.609375, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.718750, -79.560546 ], [ -161.718750, -79.432371 ], [ -162.070312, -79.432371 ], [ -162.070312, -79.367701 ], [ -162.421875, -79.367701 ], [ -162.421875, -79.237185 ], [ -162.773438, -79.237185 ], [ -162.773438, -79.038437 ], [ -163.125000, -79.038437 ], [ -163.125000, -78.836065 ], [ -163.476562, -78.836065 ], [ -163.476562, -78.699106 ], [ -163.828125, -78.699106 ], [ -163.828125, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.349411 ], [ -163.125000, -78.349411 ], [ -163.125000, -78.206563 ], [ -162.773438, -78.206563 ] ] ], [ [ [ -101.250000, -71.746432 ], [ -101.250000, -71.856229 ], [ -100.195312, -71.856229 ], [ -100.195312, -71.965388 ], [ -98.789062, -71.965388 ], [ -98.789062, -72.073911 ], [ -97.031250, -72.073911 ], [ -97.031250, -71.965388 ], [ -96.679688, -71.965388 ], [ -96.679688, -72.289067 ], [ -96.328125, -72.289067 ], [ -96.328125, -72.501722 ], [ -97.031250, -72.501722 ], [ -97.031250, -72.395706 ], [ -97.382812, -72.395706 ], [ -97.382812, -72.501722 ], [ -99.140625, -72.501722 ], [ -99.140625, -72.395706 ], [ -99.843750, -72.395706 ], [ -99.843750, -72.501722 ], [ -101.250000, -72.501722 ], [ -101.250000, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.073911 ], [ -102.304688, -72.073911 ], [ -102.304688, -71.856229 ], [ -101.601562, -71.856229 ], [ -101.601562, -71.746432 ], [ -101.250000, -71.746432 ] ] ], [ [ [ -121.640625, -73.428424 ], [ -121.640625, -73.528399 ], [ -120.937500, -73.528399 ], [ -120.937500, -73.627789 ], [ -119.179688, -73.627789 ], [ -119.179688, -73.528399 ], [ -118.828125, -73.528399 ], [ -118.828125, -73.726595 ], [ -119.179688, -73.726595 ], [ -119.179688, -73.922469 ], [ -119.531250, -73.922469 ], [ -119.531250, -74.019543 ], [ -119.882812, -74.019543 ], [ -119.882812, -74.116047 ], [ -121.289062, -74.116047 ], [ -121.289062, -74.019543 ], [ -121.992188, -74.019543 ], [ -121.992188, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.528399 ], [ -122.343750, -73.528399 ], [ -122.343750, -73.428424 ], [ -121.640625, -73.428424 ] ] ], [ [ [ -126.210938, -73.327858 ], [ -126.210938, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.528399 ], [ -125.507812, -73.528399 ], [ -125.507812, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -73.726595 ], [ -124.453125, -73.726595 ], [ -124.453125, -73.824820 ], [ -125.507812, -73.824820 ], [ -125.507812, -73.726595 ], [ -126.210938, -73.726595 ], [ -126.210938, -73.627789 ], [ -126.914062, -73.627789 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.428424 ], [ -126.914062, -73.428424 ], [ -126.914062, -73.327858 ], [ -126.210938, -73.327858 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -144.492188, -85.200475 ], [ -144.492188, -85.141284 ], [ -144.140625, -85.141284 ], [ -144.140625, -85.111416 ], [ -143.789062, -85.111416 ], [ -143.789062, -85.051129 ], [ -143.437500, -85.051129 ], [ -143.437500, -84.802474 ], [ -143.085938, -84.802474 ], [ -143.085938, -84.541361 ], [ -145.195312, -84.541361 ], [ -145.195312, -84.507816 ], [ -147.304688, -84.507816 ], [ -147.304688, -84.474065 ], [ -147.656250, -84.474065 ], [ -147.656250, -84.440107 ], [ -148.359375, -84.440107 ], [ -148.359375, -84.405941 ], [ -148.710938, -84.405941 ], [ -148.710938, -84.371566 ], [ -149.062500, -84.371566 ], [ -149.062500, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.302183 ], [ -150.117188, -84.302183 ], [ -150.117188, -84.231947 ], [ -150.468750, -84.231947 ], [ -150.468750, -84.088878 ], [ -150.820312, -84.088878 ], [ -150.820312, -83.942272 ], [ -151.171875, -83.942272 ], [ -151.171875, -83.867616 ], [ -151.523438, -83.867616 ], [ -151.523438, -83.829945 ], [ -152.226562, -83.829945 ], [ -152.226562, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.753911 ], [ -152.929688, -83.753911 ], [ -152.929688, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.026219 ], [ -153.281250, -83.026219 ], [ -153.281250, -82.631333 ], [ -152.929688, -82.631333 ], [ -152.929688, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.632812, -81.972431 ], [ -153.632812, -81.873641 ], [ -153.984375, -81.873641 ], [ -153.984375, -81.823794 ], [ -154.335938, -81.823794 ], [ -154.335938, -81.773644 ], [ -154.687500, -81.773644 ], [ -154.687500, -81.672424 ], [ -155.039062, -81.672424 ], [ -155.039062, -81.518272 ], [ -155.390625, -81.518272 ], [ -155.390625, -81.413933 ], [ -155.742188, -81.413933 ], [ -155.742188, -81.361287 ], [ -156.093750, -81.361287 ], [ -156.093750, -81.255032 ], [ -156.445312, -81.255032 ], [ -156.445312, -81.201420 ], [ -156.796875, -81.201420 ], [ -156.796875, -81.147481 ], [ -157.148438, -81.147481 ], [ -157.148438, -81.093214 ], [ -156.093750, -81.093214 ], [ -156.093750, -81.147481 ], [ -153.984375, -81.147481 ], [ -153.984375, -81.093214 ], [ -153.281250, -81.093214 ], [ -153.281250, -81.038617 ], [ -152.578125, -81.038617 ], [ -152.578125, -80.983688 ], [ -152.226562, -80.983688 ], [ -152.226562, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.147481 ], [ -151.523438, -81.147481 ], [ -151.523438, -81.201420 ], [ -151.171875, -81.201420 ], [ -151.171875, -81.308321 ], [ -150.468750, -81.308321 ], [ -150.468750, -81.255032 ], [ -150.117188, -81.255032 ], [ -150.117188, -81.201420 ], [ -149.765625, -81.201420 ], [ -149.765625, -81.147481 ], [ -149.414062, -81.147481 ], [ -149.414062, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -81.038617 ], [ -148.710938, -81.038617 ], [ -148.710938, -80.928426 ], [ -148.359375, -80.928426 ], [ -148.359375, -80.872827 ], [ -148.007812, -80.872827 ], [ -148.007812, -80.816891 ], [ -147.656250, -80.816891 ], [ -147.656250, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.589727 ], [ -146.953125, -80.589727 ], [ -146.953125, -80.415707 ], [ -146.601562, -80.415707 ], [ -146.601562, -80.118564 ], [ -146.953125, -80.118564 ], [ -146.953125, -79.874297 ], [ -147.304688, -79.874297 ], [ -147.304688, -79.812302 ], [ -147.656250, -79.812302 ], [ -147.656250, -79.749932 ], [ -148.007812, -79.749932 ], [ -148.007812, -79.687184 ], [ -148.359375, -79.687184 ], [ -148.359375, -79.624056 ], [ -148.710938, -79.624056 ], [ -148.710938, -79.560546 ], [ -149.062500, -79.560546 ], [ -149.062500, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.367701 ], [ -149.765625, -79.367701 ], [ -149.765625, -79.302640 ], [ -151.171875, -79.302640 ], [ -151.171875, -79.237185 ], [ -152.578125, -79.237185 ], [ -152.578125, -79.171335 ], [ -153.281250, -79.171335 ], [ -153.281250, -79.105086 ], [ -154.687500, -79.105086 ], [ -154.687500, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -78.971386 ], [ -155.742188, -78.971386 ], [ -155.742188, -78.767792 ], [ -156.093750, -78.767792 ], [ -156.093750, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.560488 ], [ -156.796875, -78.560488 ], [ -156.796875, -78.490552 ], [ -157.148438, -78.490552 ], [ -157.148438, -78.420193 ], [ -157.500000, -78.420193 ], [ -157.500000, -78.278201 ], [ -157.851562, -78.278201 ], [ -157.851562, -78.134493 ], [ -158.203125, -78.134493 ], [ -158.203125, -77.466028 ], [ -158.554688, -77.466028 ], [ -158.554688, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.078784 ], [ -157.500000, -77.078784 ], [ -157.500000, -77.235074 ], [ -156.093750, -77.235074 ], [ -156.093750, -77.157163 ], [ -154.687500, -77.157163 ], [ -154.687500, -77.078784 ], [ -153.632812, -77.078784 ], [ -153.632812, -77.235074 ], [ -153.281250, -77.235074 ], [ -153.281250, -77.389504 ], [ -152.929688, -77.389504 ], [ -152.929688, -77.466028 ], [ -151.875000, -77.466028 ], [ -151.875000, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.235074 ], [ -150.117188, -77.235074 ], [ -150.117188, -77.157163 ], [ -149.765625, -77.157163 ], [ -149.765625, -76.999935 ], [ -149.414062, -76.999935 ], [ -149.414062, -76.920614 ], [ -149.062500, -76.920614 ], [ -149.062500, -76.840816 ], [ -148.710938, -76.840816 ], [ -148.710938, -76.760541 ], [ -148.359375, -76.760541 ], [ -148.359375, -76.679785 ], [ -148.007812, -76.679785 ], [ -148.007812, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.516819 ], [ -146.601562, -76.516819 ], [ -146.601562, -76.434604 ], [ -146.250000, -76.434604 ], [ -146.250000, -75.930885 ], [ -146.601562, -75.930885 ], [ -146.601562, -75.497157 ], [ -146.250000, -75.497157 ], [ -146.250000, -75.320025 ], [ -145.898438, -75.320025 ], [ -145.898438, -75.230667 ], [ -144.843750, -75.230667 ], [ -144.843750, -75.408854 ], [ -144.492188, -75.408854 ], [ -144.492188, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.320025 ], [ -142.734375, -75.320025 ], [ -142.734375, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.050354 ], [ -139.218750, -75.050354 ], [ -139.218750, -74.959392 ], [ -138.515625, -74.959392 ], [ -138.515625, -74.867889 ], [ -138.164062, -74.867889 ], [ -138.164062, -74.775843 ], [ -137.812500, -74.775843 ], [ -137.812500, -74.683250 ], [ -137.460938, -74.683250 ], [ -137.460938, -74.590108 ], [ -136.757812, -74.590108 ], [ -136.757812, -74.496413 ], [ -136.406250, -74.496413 ], [ -136.406250, -74.402163 ], [ -135.703125, -74.402163 ], [ -135.703125, -74.307353 ], [ -134.648438, -74.307353 ], [ -134.648438, -74.402163 ], [ -133.242188, -74.402163 ], [ -133.242188, -74.307353 ], [ -131.835938, -74.307353 ], [ -131.835938, -74.402163 ], [ -128.671875, -74.402163 ], [ -128.671875, -74.307353 ], [ -127.968750, -74.307353 ], [ -127.968750, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.496413 ], [ -124.453125, -74.496413 ], [ -124.453125, -74.402163 ], [ -123.750000, -74.402163 ], [ -123.750000, -74.496413 ], [ -120.234375, -74.496413 ], [ -120.234375, -74.402163 ], [ -119.531250, -74.402163 ], [ -119.531250, -74.307353 ], [ -119.179688, -74.307353 ], [ -119.179688, -74.211983 ], [ -118.828125, -74.211983 ], [ -118.828125, -74.116047 ], [ -118.125000, -74.116047 ], [ -118.125000, -74.019543 ], [ -117.773438, -74.019543 ], [ -117.773438, -74.116047 ], [ -117.070312, -74.116047 ], [ -117.070312, -74.211983 ], [ -116.015625, -74.211983 ], [ -116.015625, -74.116047 ], [ -115.312500, -74.116047 ], [ -115.312500, -74.019543 ], [ -114.960938, -74.019543 ], [ -114.960938, -73.824820 ], [ -114.609375, -73.824820 ], [ -114.609375, -73.726595 ], [ -113.906250, -73.726595 ], [ -113.906250, -73.922469 ], [ -113.554688, -73.922469 ], [ -113.554688, -74.211983 ], [ -113.203125, -74.211983 ], [ -113.203125, -74.402163 ], [ -112.851562, -74.402163 ], [ -112.851562, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.683250 ], [ -112.148438, -74.683250 ], [ -112.148438, -74.590108 ], [ -111.796875, -74.590108 ], [ -111.796875, -74.496413 ], [ -111.093750, -74.496413 ], [ -111.093750, -74.590108 ], [ -110.742188, -74.590108 ], [ -110.742188, -74.775843 ], [ -110.039062, -74.775843 ], [ -110.039062, -74.867889 ], [ -108.984375, -74.867889 ], [ -108.984375, -74.959392 ], [ -108.632812, -74.959392 ], [ -108.632812, -75.050354 ], [ -107.929688, -75.050354 ], [ -107.929688, -75.140778 ], [ -106.523438, -75.140778 ], [ -106.523438, -75.050354 ], [ -105.820312, -75.050354 ], [ -105.820312, -74.959392 ], [ -105.117188, -74.959392 ], [ -105.117188, -74.867889 ], [ -104.765625, -74.867889 ], [ -104.765625, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.050354 ], [ -102.304688, -75.050354 ], [ -102.304688, -75.140778 ], [ -101.601562, -75.140778 ], [ -101.601562, -75.230667 ], [ -100.898438, -75.230667 ], [ -100.898438, -75.140778 ], [ -100.546875, -75.140778 ], [ -100.546875, -74.959392 ], [ -100.195312, -74.959392 ], [ -100.195312, -74.775843 ], [ -100.546875, -74.775843 ], [ -100.546875, -74.590108 ], [ -100.898438, -74.590108 ], [ -100.898438, -74.307353 ], [ -101.250000, -74.307353 ], [ -101.250000, -74.116047 ], [ -102.304688, -74.116047 ], [ -102.304688, -74.019543 ], [ -103.007812, -74.019543 ], [ -103.007812, -73.824820 ], [ -103.359375, -73.824820 ], [ -103.359375, -73.022592 ], [ -103.710938, -73.022592 ], [ -103.710938, -72.711903 ], [ -100.195312, -72.711903 ], [ -100.195312, -72.816074 ], [ -99.140625, -72.816074 ], [ -99.140625, -72.919635 ], [ -98.789062, -72.919635 ], [ -98.789062, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.428424 ], [ -97.734375, -73.428424 ], [ -97.734375, -73.528399 ], [ -95.625000, -73.528399 ], [ -95.625000, -73.428424 ], [ -94.570312, -73.428424 ], [ -94.570312, -73.327858 ], [ -93.867188, -73.327858 ], [ -93.867188, -73.226700 ], [ -92.812500, -73.226700 ], [ -92.812500, -73.124945 ], [ -92.460938, -73.124945 ], [ -92.460938, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.327858 ], [ -90.703125, -73.327858 ], [ -90.703125, -73.226700 ], [ -90.351562, -73.226700 ], [ -90.351562, -73.124945 ], [ -90.000000, -73.124945 ], [ -90.000000, -72.919635 ], [ -89.648438, -72.919635 ], [ -89.648438, -72.711903 ], [ -89.296875, -72.711903 ], [ -89.296875, -72.607120 ], [ -88.945312, -72.607120 ], [ -88.945312, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -85.200475 ], [ -144.492188, -85.200475 ] ] ], [ [ [ -169.804688, -83.905058 ], [ -169.804688, -83.979259 ], [ -169.453125, -83.979259 ], [ -169.453125, -84.052561 ], [ -169.101562, -84.052561 ], [ -169.101562, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.302183 ], [ -168.398438, -84.302183 ], [ -168.398438, -84.371566 ], [ -168.046875, -84.371566 ], [ -168.046875, -84.440107 ], [ -167.695312, -84.440107 ], [ -167.695312, -84.507816 ], [ -167.343750, -84.507816 ], [ -167.343750, -84.574702 ], [ -166.992188, -84.574702 ], [ -166.992188, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.673513 ], [ -165.585938, -84.673513 ], [ -165.585938, -84.706049 ], [ -165.234375, -84.706049 ], [ -165.234375, -84.738387 ], [ -164.882812, -84.738387 ], [ -164.882812, -84.770528 ], [ -164.531250, -84.770528 ], [ -164.531250, -84.802474 ], [ -164.179688, -84.802474 ], [ -164.179688, -84.834225 ], [ -163.828125, -84.834225 ], [ -163.828125, -84.897147 ], [ -163.476562, -84.897147 ], [ -163.476562, -84.959305 ], [ -163.125000, -84.959305 ], [ -163.125000, -84.990100 ], [ -162.773438, -84.990100 ], [ -162.773438, -85.051129 ], [ -162.421875, -85.051129 ], [ -162.421875, -85.111416 ], [ -162.070312, -85.111416 ], [ -162.070312, -85.141284 ], [ -161.718750, -85.141284 ], [ -161.718750, -85.170970 ], [ -161.367188, -85.170970 ], [ -161.367188, -85.200475 ], [ -180.000000, -85.200475 ], [ -181.757812, -85.200475 ], [ -181.757812, -84.474065 ], [ -181.406250, -84.474065 ], [ -181.406250, -84.541361 ], [ -181.054688, -84.541361 ], [ -181.054688, -84.574702 ], [ -180.703125, -84.574702 ], [ -180.703125, -84.640777 ], [ -180.351562, -84.640777 ], [ -180.351562, -84.706049 ], [ -180.000000, -84.706049 ], [ -180.000000, -84.574702 ], [ -179.648438, -84.574702 ], [ -179.648438, -84.302183 ], [ -179.296875, -84.302183 ], [ -179.296875, -84.160849 ], [ -178.945312, -84.160849 ], [ -178.945312, -84.231947 ], [ -178.593750, -84.231947 ], [ -178.593750, -84.302183 ], [ -178.242188, -84.302183 ], [ -178.242188, -84.371566 ], [ -177.890625, -84.371566 ], [ -177.890625, -84.440107 ], [ -177.187500, -84.440107 ], [ -177.187500, -84.371566 ], [ -176.835938, -84.371566 ], [ -176.835938, -84.267172 ], [ -176.484375, -84.267172 ], [ -176.484375, -84.160849 ], [ -175.781250, -84.160849 ], [ -175.781250, -84.267172 ], [ -175.429688, -84.267172 ], [ -175.429688, -84.371566 ], [ -175.078125, -84.371566 ], [ -175.078125, -84.474065 ], [ -174.375000, -84.474065 ], [ -174.375000, -84.371566 ], [ -174.023438, -84.371566 ], [ -174.023438, -84.267172 ], [ -173.671875, -84.267172 ], [ -173.671875, -84.160849 ], [ -173.320312, -84.160849 ], [ -173.320312, -84.088878 ], [ -172.968750, -84.088878 ], [ -172.968750, -84.052561 ], [ -172.617188, -84.052561 ], [ -172.617188, -84.016022 ], [ -171.914062, -84.016022 ], [ -171.914062, -83.979259 ], [ -171.210938, -83.979259 ], [ -171.210938, -83.942272 ], [ -170.859375, -83.942272 ], [ -170.859375, -83.905058 ], [ -169.804688, -83.905058 ] ] ], [ [ [ -156.093750, -85.200475 ], [ -156.093750, -85.141284 ], [ -155.742188, -85.141284 ], [ -155.742188, -85.111416 ], [ -154.687500, -85.111416 ], [ -154.687500, -85.141284 ], [ -154.335938, -85.141284 ], [ -154.335938, -85.170970 ], [ -153.632812, -85.170970 ], [ -153.632812, -85.200475 ], [ -156.093750, -85.200475 ] ] ], [ [ [ -162.773438, -78.206563 ], [ -162.773438, -78.278201 ], [ -162.070312, -78.278201 ], [ -162.070312, -78.349411 ], [ -161.367188, -78.349411 ], [ -161.367188, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.490552 ], [ -160.664062, -78.490552 ], [ -160.664062, -78.630006 ], [ -160.312500, -78.630006 ], [ -160.312500, -78.767792 ], [ -159.960938, -78.767792 ], [ -159.960938, -78.971386 ], [ -159.609375, -78.971386 ], [ -159.609375, -79.302640 ], [ -159.257812, -79.302640 ], [ -159.257812, -79.496652 ], [ -159.609375, -79.496652 ], [ -159.609375, -79.560546 ], [ -160.664062, -79.560546 ], [ -160.664062, -79.624056 ], [ -161.718750, -79.624056 ], [ -161.718750, -79.496652 ], [ -162.070312, -79.496652 ], [ -162.070312, -79.432371 ], [ -162.421875, -79.432371 ], [ -162.421875, -79.302640 ], [ -162.773438, -79.302640 ], [ -162.773438, -79.105086 ], [ -163.125000, -79.105086 ], [ -163.125000, -78.767792 ], [ -163.476562, -78.767792 ], [ -163.476562, -78.630006 ], [ -163.828125, -78.630006 ], [ -163.828125, -78.490552 ], [ -163.476562, -78.490552 ], [ -163.476562, -78.349411 ], [ -163.125000, -78.349411 ], [ -163.125000, -78.206563 ], [ -162.773438, -78.206563 ] ] ], [ [ [ -101.601562, -71.635993 ], [ -101.601562, -71.746432 ], [ -100.195312, -71.746432 ], [ -100.195312, -71.856229 ], [ -98.789062, -71.856229 ], [ -98.789062, -71.965388 ], [ -97.382812, -71.965388 ], [ -97.382812, -71.856229 ], [ -97.031250, -71.856229 ], [ -97.031250, -72.073911 ], [ -96.679688, -72.073911 ], [ -96.679688, -72.395706 ], [ -96.328125, -72.395706 ], [ -96.328125, -72.501722 ], [ -97.031250, -72.501722 ], [ -97.031250, -72.395706 ], [ -99.843750, -72.395706 ], [ -99.843750, -72.501722 ], [ -101.250000, -72.501722 ], [ -101.250000, -72.395706 ], [ -101.953125, -72.395706 ], [ -101.953125, -72.181804 ], [ -102.304688, -72.181804 ], [ -102.304688, -71.965388 ], [ -102.656250, -71.965388 ], [ -102.656250, -71.856229 ], [ -102.304688, -71.856229 ], [ -102.304688, -71.746432 ], [ -101.953125, -71.746432 ], [ -101.953125, -71.635993 ], [ -101.601562, -71.635993 ] ] ], [ [ [ -121.992188, -73.327858 ], [ -121.992188, -73.428424 ], [ -121.289062, -73.428424 ], [ -121.289062, -73.528399 ], [ -120.585938, -73.528399 ], [ -120.585938, -73.627789 ], [ -119.531250, -73.627789 ], [ -119.531250, -73.528399 ], [ -119.179688, -73.528399 ], [ -119.179688, -73.726595 ], [ -119.531250, -73.726595 ], [ -119.531250, -73.922469 ], [ -119.882812, -73.922469 ], [ -119.882812, -74.019543 ], [ -121.289062, -74.019543 ], [ -121.289062, -73.922469 ], [ -121.992188, -73.922469 ], [ -121.992188, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.327858 ], [ -121.992188, -73.327858 ] ] ], [ [ [ -126.210938, -73.327858 ], [ -126.210938, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.528399 ], [ -125.507812, -73.528399 ], [ -125.507812, -73.627789 ], [ -124.804688, -73.627789 ], [ -124.804688, -73.726595 ], [ -124.453125, -73.726595 ], [ -124.453125, -73.824820 ], [ -125.859375, -73.824820 ], [ -125.859375, -73.726595 ], [ -126.562500, -73.726595 ], [ -126.562500, -73.627789 ], [ -127.265625, -73.627789 ], [ -127.265625, -73.528399 ], [ -127.617188, -73.528399 ], [ -127.617188, -73.428424 ], [ -127.265625, -73.428424 ], [ -127.265625, -73.327858 ], [ -126.210938, -73.327858 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, -17.644022 ], [ -181.406250, -18.312811 ], [ -181.757812, -18.312811 ], [ -181.757812, -17.644022 ], [ -181.406250, -17.644022 ] ] ], [ [ [ -180.000000, -16.299051 ], [ -180.000000, -16.636192 ], [ -180.703125, -16.636192 ], [ -180.703125, -16.972741 ], [ -181.406250, -16.972741 ], [ -181.406250, -16.636192 ], [ -181.054688, -16.636192 ], [ -181.054688, -16.299051 ], [ -180.000000, -16.299051 ] ] ], [ [ [ -179.648438, -15.961329 ], [ -179.648438, -16.299051 ], [ -180.000000, -16.299051 ], [ -180.000000, -15.961329 ], [ -179.648438, -15.961329 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -181.406250, -37.718590 ], [ -181.406250, -38.272689 ], [ -181.757812, -38.272689 ], [ -181.757812, -37.718590 ], [ -181.406250, -37.718590 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, -17.308688 ], [ -181.406250, -17.644022 ], [ -181.757812, -17.644022 ], [ -181.757812, -17.308688 ], [ -181.406250, -17.308688 ] ] ], [ [ [ -180.000000, -16.299051 ], [ -180.000000, -16.636192 ], [ -180.703125, -16.636192 ], [ -180.703125, -16.972741 ], [ -181.406250, -16.972741 ], [ -181.406250, -16.636192 ], [ -181.054688, -16.636192 ], [ -181.054688, -16.299051 ], [ -180.000000, -16.299051 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.054688, 62.915233 ], [ -91.054688, 62.754726 ], [ -91.757812, 62.754726 ], [ -91.757812, 62.593341 ], [ -92.109375, 62.593341 ], [ -92.109375, 62.431074 ], [ -92.460938, 62.431074 ], [ -92.460938, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 61.773123 ], [ -93.515625, 61.773123 ], [ -93.515625, 61.438767 ], [ -93.867188, 61.438767 ], [ -93.867188, 61.100789 ], [ -94.218750, 61.100789 ], [ -94.218750, 60.413852 ], [ -94.570312, 60.413852 ], [ -94.570312, 58.995311 ], [ -94.218750, 58.995311 ], [ -94.218750, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.263287 ], [ -92.812500, 58.263287 ], [ -92.812500, 57.515823 ], [ -92.460938, 57.515823 ], [ -92.460938, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -92.460938, 48.224673 ], [ -92.460938, 48.458352 ], [ -93.164062, 48.458352 ], [ -93.164062, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.152970 ], [ -94.921875, 49.152970 ], [ -94.921875, 49.382373 ], [ -95.273438, 49.382373 ], [ -95.273438, 48.922499 ], [ -123.398438, 48.922499 ], [ -123.398438, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 49.382373 ], [ -124.101562, 49.382373 ], [ -124.101562, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.837982 ], [ -124.804688, 49.837982 ], [ -124.804688, 50.064192 ], [ -125.156250, 50.064192 ], [ -125.156250, 50.289339 ], [ -125.507812, 50.289339 ], [ -125.507812, 50.513427 ], [ -126.562500, 50.513427 ], [ -126.562500, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.399206 ], [ -127.968750, 51.399206 ], [ -127.968750, 52.268157 ], [ -128.320312, 52.268157 ], [ -128.320312, 52.482780 ], [ -129.023438, 52.482780 ], [ -129.023438, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.726562, 53.540307 ], [ -129.726562, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.977614 ], [ -130.078125, 54.977614 ], [ -130.078125, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.170023 ], [ -131.132812, 56.170023 ], [ -131.132812, 56.365250 ], [ -131.835938, 56.365250 ], [ -131.835938, 56.752723 ], [ -132.187500, 56.752723 ], [ -132.187500, 57.136239 ], [ -132.539062, 57.136239 ], [ -132.539062, 57.515823 ], [ -132.890625, 57.515823 ], [ -132.890625, 58.077876 ], [ -133.242188, 58.077876 ], [ -133.242188, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.631217 ], [ -134.296875, 58.631217 ], [ -134.296875, 58.813742 ], [ -134.648438, 58.813742 ], [ -134.648438, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.355596 ], [ -136.757812, 59.355596 ], [ -136.757812, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 58.995311 ], [ -137.812500, 58.995311 ], [ -137.812500, 59.175928 ], [ -138.164062, 59.175928 ], [ -138.164062, 59.355596 ], [ -138.515625, 59.355596 ], [ -138.515625, 59.712097 ], [ -138.867188, 59.712097 ], [ -138.867188, 60.064840 ], [ -139.570312, 60.064840 ], [ -139.570312, 60.239811 ], [ -140.976562, 60.239811 ], [ -140.976562, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -127.968750, 50.736455 ], [ -127.968750, 50.513427 ], [ -127.265625, 50.513427 ], [ -127.265625, 50.289339 ], [ -125.859375, 50.289339 ], [ -125.859375, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.610710 ], [ -125.156250, 49.610710 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 49.152970 ], [ -123.750000, 49.152970 ], [ -123.750000, 48.690960 ], [ -123.398438, 48.690960 ], [ -123.398438, 48.458352 ], [ -124.804688, 48.458352 ], [ -124.804688, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.837982 ], [ -127.617188, 49.837982 ], [ -127.617188, 50.064192 ], [ -127.968750, 50.064192 ], [ -127.968750, 50.289339 ], [ -128.320312, 50.289339 ], [ -128.320312, 50.736455 ], [ -127.968750, 50.736455 ] ] ], [ [ [ -131.835938, 53.540307 ], [ -132.187500, 53.540307 ], [ -132.187500, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ], [ -132.890625, 53.120405 ], [ -132.890625, 53.540307 ], [ -133.242188, 53.540307 ], [ -133.242188, 53.956086 ], [ -131.835938, 53.956086 ], [ -131.835938, 53.540307 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -131.835938, 52.696361 ], [ -131.835938, 52.482780 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -126.562500, 50.513427 ], [ -126.562500, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.179343 ], [ -127.968750, 51.179343 ], [ -127.968750, 51.618017 ], [ -128.320312, 51.618017 ], [ -128.320312, 52.052490 ], [ -127.968750, 52.052490 ], [ -127.968750, 52.482780 ], [ -128.671875, 52.482780 ], [ -128.671875, 52.696361 ], [ -129.375000, 52.696361 ], [ -129.375000, 53.748711 ], [ -129.726562, 53.748711 ], [ -129.726562, 53.956086 ], [ -130.429688, 53.956086 ], [ -130.429688, 54.162434 ], [ -130.781250, 54.162434 ], [ -130.781250, 54.977614 ], [ -130.429688, 54.977614 ], [ -130.429688, 55.178868 ], [ -130.078125, 55.178868 ], [ -130.078125, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.170023 ], [ -131.132812, 56.170023 ], [ -131.132812, 56.365250 ], [ -131.835938, 56.365250 ], [ -131.835938, 56.752723 ], [ -132.187500, 56.752723 ], [ -132.187500, 57.136239 ], [ -132.539062, 57.136239 ], [ -132.539062, 57.515823 ], [ -132.890625, 57.515823 ], [ -132.890625, 57.891497 ], [ -133.242188, 57.891497 ], [ -133.242188, 58.263287 ], [ -133.593750, 58.263287 ], [ -133.593750, 58.447733 ], [ -133.945312, 58.447733 ], [ -133.945312, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.351562, 59.355596 ], [ -135.351562, 59.712097 ], [ -136.406250, 59.712097 ], [ -136.406250, 59.534318 ], [ -136.757812, 59.534318 ], [ -136.757812, 59.355596 ], [ -137.109375, 59.355596 ], [ -137.109375, 58.995311 ], [ -137.812500, 58.995311 ], [ -137.812500, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.712097 ], [ -138.867188, 59.712097 ], [ -138.867188, 59.888937 ], [ -139.218750, 59.888937 ], [ -139.218750, 60.064840 ], [ -139.570312, 60.064840 ], [ -139.570312, 60.239811 ], [ -140.273438, 60.239811 ], [ -140.273438, 60.413852 ], [ -141.328125, 60.413852 ], [ -141.328125, 67.204032 ], [ -88.242188, 67.204032 ], [ -88.242188, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 64.014496 ], [ -90.351562, 64.014496 ], [ -90.351562, 63.704722 ], [ -90.703125, 63.704722 ], [ -90.703125, 63.391522 ], [ -91.054688, 63.391522 ], [ -91.054688, 63.074866 ], [ -91.406250, 63.074866 ], [ -91.406250, 62.915233 ], [ -92.109375, 62.915233 ], [ -92.109375, 62.754726 ], [ -92.460938, 62.754726 ], [ -92.460938, 62.431074 ], [ -92.812500, 62.431074 ], [ -92.812500, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 61.938950 ], [ -93.515625, 61.938950 ], [ -93.515625, 61.606396 ], [ -93.867188, 61.606396 ], [ -93.867188, 61.270233 ], [ -94.218750, 61.270233 ], [ -94.218750, 60.930432 ], [ -94.570312, 60.930432 ], [ -94.570312, 60.586967 ], [ -94.921875, 60.586967 ], [ -94.921875, 58.995311 ], [ -94.570312, 58.995311 ], [ -94.570312, 58.813742 ], [ -93.515625, 58.813742 ], [ -93.515625, 58.447733 ], [ -93.164062, 58.447733 ], [ -93.164062, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.515823 ], [ -92.460938, 57.515823 ], [ -92.460938, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -90.000000, 57.136239 ], [ -90.000000, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 48.458352 ], [ -88.593750, 48.458352 ], [ -88.593750, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.458352 ], [ -91.054688, 48.458352 ], [ -91.054688, 48.224673 ], [ -92.460938, 48.224673 ], [ -92.460938, 48.458352 ], [ -93.515625, 48.458352 ], [ -93.515625, 48.690960 ], [ -94.921875, 48.690960 ], [ -94.921875, 49.610710 ], [ -95.273438, 49.610710 ], [ -95.273438, 49.152970 ], [ -123.398438, 49.152970 ], [ -123.398438, 49.382373 ], [ -124.101562, 49.382373 ], [ -124.101562, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 49.382373 ], [ -124.453125, 49.382373 ], [ -124.453125, 49.152970 ], [ -124.101562, 49.152970 ], [ -124.101562, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.458352 ], [ -124.804688, 48.458352 ], [ -124.804688, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.610710 ], [ -127.265625, 49.610710 ], [ -127.265625, 49.837982 ], [ -127.968750, 49.837982 ], [ -127.968750, 50.064192 ], [ -128.320312, 50.064192 ], [ -128.320312, 50.289339 ], [ -128.671875, 50.289339 ], [ -128.671875, 50.958427 ], [ -128.320312, 50.958427 ], [ -128.320312, 50.736455 ], [ -127.617188, 50.736455 ], [ -127.617188, 50.513427 ], [ -126.562500, 50.513427 ] ], [ [ -125.156250, 49.837982 ], [ -125.156250, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.837982 ], [ -125.156250, 49.837982 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -132.539062, 52.696361 ], [ -132.539062, 52.908902 ], [ -132.890625, 52.908902 ], [ -132.890625, 53.330873 ], [ -133.242188, 53.330873 ], [ -133.242188, 54.162434 ], [ -131.835938, 54.162434 ], [ -131.835938, 53.540307 ], [ -132.187500, 53.540307 ], [ -132.187500, 52.908902 ], [ -131.835938, 52.908902 ], [ -131.835938, 52.482780 ] ] ], [ [ [ -131.835938, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 19.973349 ], [ -155.039062, 19.973349 ], [ -155.039062, 19.642588 ], [ -154.687500, 19.642588 ], [ -154.687500, 19.311143 ], [ -155.390625, 19.311143 ], [ -155.390625, 18.979026 ], [ -155.742188, 18.979026 ], [ -155.742188, 19.311143 ], [ -156.093750, 19.311143 ], [ -156.093750, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -156.093750, 20.961440 ], [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 20.961440 ] ] ], [ [ [ -94.921875, 49.382373 ], [ -94.921875, 49.152970 ], [ -94.570312, 49.152970 ], [ -94.570312, 48.690960 ], [ -93.164062, 48.690960 ], [ -93.164062, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 29.535230 ], [ -93.164062, 29.535230 ], [ -93.164062, 29.840644 ], [ -93.867188, 29.840644 ], [ -93.867188, 29.535230 ], [ -94.570312, 29.535230 ], [ -94.570312, 29.228890 ], [ -94.921875, 29.228890 ], [ -94.921875, 28.921631 ], [ -95.273438, 28.921631 ], [ -95.273438, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.371767 ], [ -97.382812, 27.371767 ], [ -97.382812, 25.799891 ], [ -98.085938, 25.799891 ], [ -98.085938, 26.115986 ], [ -98.789062, 26.115986 ], [ -98.789062, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 27.059126 ], [ -99.492188, 27.059126 ], [ -99.492188, 27.683528 ], [ -100.195312, 27.683528 ], [ -100.195312, 28.304381 ], [ -100.546875, 28.304381 ], [ -100.546875, 28.921631 ], [ -100.898438, 28.921631 ], [ -100.898438, 29.228890 ], [ -101.250000, 29.228890 ], [ -101.250000, 29.535230 ], [ -101.601562, 29.535230 ], [ -101.601562, 29.840644 ], [ -102.304688, 29.840644 ], [ -102.304688, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 28.921631 ], [ -103.710938, 28.921631 ], [ -103.710938, 29.228890 ], [ -104.414062, 29.228890 ], [ -104.414062, 29.840644 ], [ -104.765625, 29.840644 ], [ -104.765625, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.052934 ], [ -106.171875, 31.052934 ], [ -106.171875, 31.353637 ], [ -106.523438, 31.353637 ], [ -106.523438, 31.653381 ], [ -108.281250, 31.653381 ], [ -108.281250, 31.353637 ], [ -111.796875, 31.353637 ], [ -111.796875, 31.653381 ], [ -112.851562, 31.653381 ], [ -112.851562, 31.952162 ], [ -113.906250, 31.952162 ], [ -113.906250, 32.249974 ], [ -114.609375, 32.249974 ], [ -114.609375, 32.842674 ], [ -114.960938, 32.842674 ], [ -114.960938, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.842674 ], [ -117.421875, 32.842674 ], [ -117.421875, 33.431441 ], [ -117.773438, 33.431441 ], [ -117.773438, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.531250, 34.016242 ], [ -119.531250, 34.307144 ], [ -120.585938, 34.307144 ], [ -120.585938, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.289062, 35.460670 ], [ -121.289062, 35.746512 ], [ -121.640625, 35.746512 ], [ -121.640625, 36.031332 ], [ -121.992188, 36.031332 ], [ -121.992188, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.160317 ], [ -122.695312, 37.160317 ], [ -122.695312, 37.439974 ], [ -122.343750, 37.439974 ], [ -122.343750, 37.718590 ], [ -123.046875, 37.718590 ], [ -123.046875, 37.996163 ], [ -123.398438, 37.996163 ], [ -123.398438, 38.548165 ], [ -123.750000, 38.548165 ], [ -123.750000, 39.639538 ], [ -124.101562, 39.639538 ], [ -124.101562, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.713956 ], [ -124.101562, 40.713956 ], [ -124.101562, 42.293564 ], [ -124.453125, 42.293564 ], [ -124.453125, 43.325178 ], [ -124.101562, 43.325178 ], [ -124.101562, 45.089036 ], [ -123.750000, 45.089036 ], [ -123.750000, 46.073231 ], [ -124.101562, 46.073231 ], [ -124.101562, 47.279229 ], [ -124.453125, 47.279229 ], [ -124.453125, 47.989922 ], [ -124.804688, 47.989922 ], [ -124.804688, 48.224673 ], [ -123.750000, 48.224673 ], [ -123.750000, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.040182 ], [ -122.343750, 47.040182 ], [ -122.343750, 48.458352 ], [ -122.695312, 48.458352 ], [ -122.695312, 48.922499 ], [ -95.273438, 48.922499 ], [ -95.273438, 49.382373 ], [ -94.921875, 49.382373 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -159.257812, 22.268764 ], [ -159.257812, 21.943046 ], [ -159.609375, 21.943046 ], [ -159.609375, 22.268764 ], [ -159.257812, 22.268764 ] ] ], [ [ [ -140.976562, 67.204032 ], [ -140.976562, 60.239811 ], [ -139.570312, 60.239811 ], [ -139.570312, 60.064840 ], [ -138.867188, 60.064840 ], [ -138.867188, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.534318 ], [ -135.703125, 59.534318 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.000000, 59.534318 ], [ -135.000000, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.631217 ], [ -133.593750, 58.631217 ], [ -133.593750, 58.447733 ], [ -133.242188, 58.447733 ], [ -133.242188, 58.077876 ], [ -132.890625, 58.077876 ], [ -132.890625, 57.515823 ], [ -132.539062, 57.515823 ], [ -132.539062, 57.136239 ], [ -132.187500, 57.136239 ], [ -132.187500, 56.752723 ], [ -131.835938, 56.752723 ], [ -131.835938, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.170023 ], [ -130.429688, 56.170023 ], [ -130.429688, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 54.977614 ], [ -130.429688, 54.977614 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -131.132812, 54.977614 ], [ -131.132812, 55.178868 ], [ -131.484375, 55.178868 ], [ -131.484375, 55.379110 ], [ -131.835938, 55.379110 ], [ -131.835938, 55.973798 ], [ -132.187500, 55.973798 ], [ -132.187500, 56.365250 ], [ -132.539062, 56.365250 ], [ -132.539062, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.752723 ], [ -133.242188, 56.752723 ], [ -133.242188, 56.944974 ], [ -133.593750, 56.944974 ], [ -133.593750, 57.515823 ], [ -133.945312, 57.515823 ], [ -133.945312, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.263287 ], [ -137.460938, 58.263287 ], [ -137.460938, 58.447733 ], [ -138.164062, 58.447733 ], [ -138.164062, 58.631217 ], [ -138.515625, 58.631217 ], [ -138.515625, 58.813742 ], [ -138.867188, 58.813742 ], [ -138.867188, 58.995311 ], [ -139.218750, 58.995311 ], [ -139.218750, 59.175928 ], [ -139.570312, 59.175928 ], [ -139.570312, 59.355596 ], [ -139.921875, 59.355596 ], [ -139.921875, 59.534318 ], [ -140.625000, 59.534318 ], [ -140.625000, 59.712097 ], [ -141.679688, 59.712097 ], [ -141.679688, 59.888937 ], [ -142.382812, 59.888937 ], [ -142.382812, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.413852 ], [ -146.250000, 60.413852 ], [ -146.250000, 60.586967 ], [ -146.601562, 60.586967 ], [ -146.601562, 60.759160 ], [ -147.656250, 60.759160 ], [ -147.656250, 60.586967 ], [ -148.359375, 60.586967 ], [ -148.359375, 60.239811 ], [ -148.007812, 60.239811 ], [ -148.007812, 59.888937 ], [ -149.062500, 59.888937 ], [ -149.062500, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.534318 ], [ -150.117188, 59.534318 ], [ -150.117188, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.586967 ], [ -152.226562, 60.586967 ], [ -152.226562, 60.239811 ], [ -152.578125, 60.239811 ], [ -152.578125, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.813742 ], [ -153.281250, 58.813742 ], [ -153.281250, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.447733 ], [ -153.984375, 58.447733 ], [ -153.984375, 58.077876 ], [ -154.335938, 58.077876 ], [ -154.335938, 57.891497 ], [ -155.039062, 57.891497 ], [ -155.039062, 57.704147 ], [ -155.742188, 57.704147 ], [ -155.742188, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 56.944974 ], [ -156.796875, 56.944974 ], [ -156.796875, 56.752723 ], [ -157.500000, 56.752723 ], [ -157.500000, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.170023 ], [ -158.554688, 56.170023 ], [ -158.554688, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.379110 ], [ -161.367188, 55.379110 ], [ -161.367188, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 54.977614 ], [ -162.421875, 54.977614 ], [ -162.421875, 54.775346 ], [ -163.476562, 54.775346 ], [ -163.476562, 54.572062 ], [ -164.179688, 54.572062 ], [ -164.179688, 54.367759 ], [ -164.882812, 54.367759 ], [ -164.882812, 54.572062 ], [ -164.531250, 54.572062 ], [ -164.531250, 54.775346 ], [ -163.828125, 54.775346 ], [ -163.828125, 54.977614 ], [ -163.476562, 54.977614 ], [ -163.476562, 55.178868 ], [ -162.773438, 55.178868 ], [ -162.773438, 55.379110 ], [ -162.421875, 55.379110 ], [ -162.421875, 55.578345 ], [ -162.070312, 55.578345 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.973798 ], [ -160.312500, 55.973798 ], [ -160.312500, 56.170023 ], [ -159.960938, 56.170023 ], [ -159.960938, 56.365250 ], [ -159.609375, 56.365250 ], [ -159.609375, 56.559482 ], [ -158.906250, 56.559482 ], [ -158.906250, 56.752723 ], [ -158.554688, 56.752723 ], [ -158.554688, 57.136239 ], [ -158.203125, 57.136239 ], [ -158.203125, 57.326521 ], [ -157.851562, 57.326521 ], [ -157.851562, 57.891497 ], [ -157.500000, 57.891497 ], [ -157.500000, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.851562, 58.813742 ], [ -157.851562, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.631217 ], [ -162.070312, 58.631217 ], [ -162.070312, 59.534318 ], [ -161.718750, 59.534318 ], [ -161.718750, 59.712097 ], [ -162.070312, 59.712097 ], [ -162.070312, 59.888937 ], [ -163.125000, 59.888937 ], [ -163.125000, 59.712097 ], [ -164.179688, 59.712097 ], [ -164.179688, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.413852 ], [ -165.234375, 60.413852 ], [ -165.234375, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.270233 ], [ -166.289062, 61.270233 ], [ -166.289062, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.585938, 61.938950 ], [ -165.585938, 62.103883 ], [ -165.234375, 62.103883 ], [ -165.234375, 62.431074 ], [ -164.882812, 62.431074 ], [ -164.882812, 62.754726 ], [ -164.531250, 62.754726 ], [ -164.531250, 63.074866 ], [ -162.773438, 63.074866 ], [ -162.773438, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.391522 ], [ -161.015625, 63.391522 ], [ -161.015625, 63.548552 ], [ -160.664062, 63.548552 ], [ -160.664062, 63.860036 ], [ -161.015625, 63.860036 ], [ -161.015625, 64.320872 ], [ -161.367188, 64.320872 ], [ -161.367188, 64.472794 ], [ -161.015625, 64.472794 ], [ -161.015625, 64.623877 ], [ -160.664062, 64.623877 ], [ -160.664062, 64.774125 ], [ -161.718750, 64.774125 ], [ -161.718750, 64.623877 ], [ -162.421875, 64.623877 ], [ -162.421875, 64.472794 ], [ -162.773438, 64.472794 ], [ -162.773438, 64.320872 ], [ -163.125000, 64.320872 ], [ -163.125000, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.623877 ], [ -163.828125, 64.623877 ], [ -163.828125, 64.472794 ], [ -165.937500, 64.472794 ], [ -165.937500, 64.623877 ], [ -166.640625, 64.623877 ], [ -166.640625, 64.923542 ], [ -166.992188, 64.923542 ], [ -166.992188, 65.072130 ], [ -167.343750, 65.072130 ], [ -167.343750, 65.366837 ], [ -167.695312, 65.366837 ], [ -167.695312, 65.512963 ], [ -168.046875, 65.512963 ], [ -168.046875, 65.658275 ], [ -167.695312, 65.658275 ], [ -167.695312, 65.802776 ], [ -166.992188, 65.802776 ], [ -166.992188, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.204032 ], [ -140.976562, 67.204032 ] ], [ [ -151.171875, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.759160 ], [ -151.171875, 60.759160 ], [ -151.171875, 60.930432 ] ], [ [ -150.820312, 61.100789 ], [ -150.820312, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.100789 ], [ -150.820312, 61.100789 ] ] ], [ [ [ -152.578125, 57.891497 ], [ -152.578125, 57.704147 ], [ -152.226562, 57.704147 ], [ -152.226562, 57.326521 ], [ -152.578125, 57.326521 ], [ -152.578125, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 56.944974 ], [ -153.632812, 56.944974 ], [ -153.632812, 56.752723 ], [ -154.687500, 56.752723 ], [ -154.687500, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.704147 ], [ -153.632812, 57.704147 ], [ -153.632812, 57.891497 ], [ -152.578125, 57.891497 ] ] ], [ [ [ -171.210938, 63.704722 ], [ -171.210938, 63.548552 ], [ -170.156250, 63.548552 ], [ -170.156250, 63.391522 ], [ -169.453125, 63.391522 ], [ -169.453125, 63.233627 ], [ -168.750000, 63.233627 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.915233 ], [ -169.804688, 62.915233 ], [ -169.804688, 63.074866 ], [ -170.156250, 63.074866 ], [ -170.156250, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.548552 ], [ -171.562500, 63.548552 ], [ -171.562500, 63.704722 ], [ -171.210938, 63.704722 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.239811 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.712097 ], [ -166.992188, 59.712097 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.239811 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ] ] ], [ [ [ -156.796875, 20.961440 ], [ -157.148438, 20.961440 ], [ -157.148438, 21.289374 ], [ -156.796875, 21.289374 ], [ -156.796875, 20.961440 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 20.303418 ], [ -155.390625, 19.642588 ], [ -155.039062, 19.642588 ], [ -155.039062, 19.311143 ], [ -155.742188, 19.311143 ], [ -155.742188, 18.979026 ], [ -156.093750, 18.979026 ], [ -156.093750, 20.303418 ], [ -155.390625, 20.303418 ] ] ], [ [ [ -156.093750, 20.961440 ], [ -156.093750, 20.632784 ], [ -156.796875, 20.632784 ], [ -156.796875, 20.961440 ], [ -156.093750, 20.961440 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.609375, 21.943046 ], [ -159.960938, 21.943046 ], [ -159.960938, 22.268764 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.921875, 49.610710 ], [ -94.921875, 48.690960 ], [ -93.515625, 48.690960 ], [ -93.515625, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.224673 ], [ -91.054688, 48.224673 ], [ -91.054688, 48.458352 ], [ -90.703125, 48.458352 ], [ -90.703125, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 48.458352 ], [ -88.242188, 48.458352 ], [ -88.242188, 30.448674 ], [ -89.648438, 30.448674 ], [ -89.648438, 29.535230 ], [ -89.296875, 29.535230 ], [ -89.296875, 29.228890 ], [ -91.406250, 29.228890 ], [ -91.406250, 29.535230 ], [ -91.757812, 29.535230 ], [ -91.757812, 29.840644 ], [ -94.218750, 29.840644 ], [ -94.218750, 29.535230 ], [ -94.921875, 29.535230 ], [ -94.921875, 29.228890 ], [ -95.273438, 29.228890 ], [ -95.273438, 28.921631 ], [ -95.976562, 28.921631 ], [ -95.976562, 28.613459 ], [ -96.679688, 28.613459 ], [ -96.679688, 28.304381 ], [ -97.031250, 28.304381 ], [ -97.031250, 27.994401 ], [ -97.382812, 27.994401 ], [ -97.382812, 26.115986 ], [ -99.140625, 26.115986 ], [ -99.140625, 26.745610 ], [ -99.492188, 26.745610 ], [ -99.492188, 27.371767 ], [ -99.843750, 27.371767 ], [ -99.843750, 27.994401 ], [ -100.195312, 27.994401 ], [ -100.195312, 28.613459 ], [ -100.546875, 28.613459 ], [ -100.546875, 28.921631 ], [ -100.898438, 28.921631 ], [ -100.898438, 29.228890 ], [ -101.250000, 29.228890 ], [ -101.250000, 29.535230 ], [ -101.953125, 29.535230 ], [ -101.953125, 29.840644 ], [ -102.656250, 29.840644 ], [ -102.656250, 29.535230 ], [ -103.007812, 29.535230 ], [ -103.007812, 29.228890 ], [ -104.062500, 29.228890 ], [ -104.062500, 29.535230 ], [ -104.765625, 29.535230 ], [ -104.765625, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 31.052934 ], [ -105.820312, 31.052934 ], [ -105.820312, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.952162 ], [ -108.281250, 31.952162 ], [ -108.281250, 31.353637 ], [ -111.796875, 31.353637 ], [ -111.796875, 31.653381 ], [ -112.500000, 31.653381 ], [ -112.500000, 31.952162 ], [ -113.203125, 31.952162 ], [ -113.203125, 32.249974 ], [ -114.609375, 32.249974 ], [ -114.609375, 32.546813 ], [ -114.960938, 32.546813 ], [ -114.960938, 32.842674 ], [ -116.367188, 32.842674 ], [ -116.367188, 32.546813 ], [ -117.421875, 32.546813 ], [ -117.421875, 33.137551 ], [ -117.773438, 33.137551 ], [ -117.773438, 33.431441 ], [ -118.125000, 33.431441 ], [ -118.125000, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -118.828125, 34.016242 ], [ -118.828125, 34.307144 ], [ -119.531250, 34.307144 ], [ -119.531250, 34.597042 ], [ -120.937500, 34.597042 ], [ -120.937500, 35.173808 ], [ -121.289062, 35.173808 ], [ -121.289062, 35.746512 ], [ -121.640625, 35.746512 ], [ -121.640625, 36.031332 ], [ -121.992188, 36.031332 ], [ -121.992188, 36.597889 ], [ -122.343750, 36.597889 ], [ -122.343750, 37.160317 ], [ -122.695312, 37.160317 ], [ -122.695312, 37.996163 ], [ -123.046875, 37.996163 ], [ -123.046875, 38.272689 ], [ -123.398438, 38.272689 ], [ -123.398438, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -124.101562, 39.368279 ], [ -124.101562, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 42.293564 ], [ -124.804688, 42.293564 ], [ -124.804688, 43.325178 ], [ -124.453125, 43.325178 ], [ -124.453125, 44.339565 ], [ -124.101562, 44.339565 ], [ -124.101562, 47.279229 ], [ -124.453125, 47.279229 ], [ -124.453125, 47.989922 ], [ -124.804688, 47.989922 ], [ -124.804688, 48.458352 ], [ -124.453125, 48.458352 ], [ -124.453125, 48.224673 ], [ -123.398438, 48.224673 ], [ -123.398438, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.279229 ], [ -122.343750, 47.279229 ], [ -122.343750, 47.754098 ], [ -122.695312, 47.754098 ], [ -122.695312, 48.690960 ], [ -123.046875, 48.690960 ], [ -123.046875, 49.152970 ], [ -95.273438, 49.152970 ], [ -95.273438, 49.610710 ], [ -94.921875, 49.610710 ] ] ], [ [ [ -141.328125, 67.204032 ], [ -141.328125, 60.413852 ], [ -140.273438, 60.413852 ], [ -140.273438, 60.239811 ], [ -139.570312, 60.239811 ], [ -139.570312, 60.064840 ], [ -139.218750, 60.064840 ], [ -139.218750, 59.888937 ], [ -138.867188, 59.888937 ], [ -138.867188, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.534318 ], [ -138.164062, 59.534318 ], [ -138.164062, 59.355596 ], [ -137.812500, 59.355596 ], [ -137.812500, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.355596 ], [ -136.757812, 59.355596 ], [ -136.757812, 59.534318 ], [ -136.406250, 59.534318 ], [ -136.406250, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.995311 ], [ -134.296875, 58.995311 ], [ -134.296875, 58.813742 ], [ -133.945312, 58.813742 ], [ -133.945312, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.263287 ], [ -133.242188, 58.263287 ], [ -133.242188, 57.891497 ], [ -132.890625, 57.891497 ], [ -132.890625, 57.515823 ], [ -132.539062, 57.515823 ], [ -132.539062, 57.136239 ], [ -132.187500, 57.136239 ], [ -132.187500, 56.752723 ], [ -131.835938, 56.752723 ], [ -131.835938, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.170023 ], [ -130.429688, 56.170023 ], [ -130.429688, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 55.178868 ], [ -130.429688, 55.178868 ], [ -130.429688, 54.977614 ], [ -131.132812, 54.977614 ], [ -131.132812, 55.178868 ], [ -131.484375, 55.178868 ], [ -131.484375, 55.379110 ], [ -132.187500, 55.379110 ], [ -132.187500, 55.973798 ], [ -132.539062, 55.973798 ], [ -132.539062, 56.559482 ], [ -132.890625, 56.559482 ], [ -132.890625, 56.944974 ], [ -133.242188, 56.944974 ], [ -133.242188, 57.136239 ], [ -133.593750, 57.136239 ], [ -133.593750, 57.515823 ], [ -133.945312, 57.515823 ], [ -133.945312, 57.891497 ], [ -134.296875, 57.891497 ], [ -134.296875, 58.263287 ], [ -137.109375, 58.263287 ], [ -137.109375, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.631217 ], [ -138.164062, 58.631217 ], [ -138.164062, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 58.995311 ], [ -138.867188, 58.995311 ], [ -138.867188, 59.175928 ], [ -139.218750, 59.175928 ], [ -139.218750, 59.355596 ], [ -139.570312, 59.355596 ], [ -139.570312, 59.534318 ], [ -139.921875, 59.534318 ], [ -139.921875, 59.712097 ], [ -140.625000, 59.712097 ], [ -140.625000, 59.888937 ], [ -141.679688, 59.888937 ], [ -141.679688, 60.064840 ], [ -142.382812, 60.064840 ], [ -142.382812, 60.239811 ], [ -143.085938, 60.239811 ], [ -143.085938, 60.064840 ], [ -144.843750, 60.064840 ], [ -144.843750, 60.239811 ], [ -145.546875, 60.239811 ], [ -145.546875, 60.413852 ], [ -146.250000, 60.413852 ], [ -146.250000, 60.586967 ], [ -146.601562, 60.586967 ], [ -146.601562, 60.759160 ], [ -147.304688, 60.759160 ], [ -147.304688, 60.930432 ], [ -147.656250, 60.930432 ], [ -147.656250, 60.759160 ], [ -148.359375, 60.759160 ], [ -148.359375, 60.064840 ], [ -148.710938, 60.064840 ], [ -148.710938, 59.888937 ], [ -149.414062, 59.888937 ], [ -149.414062, 59.712097 ], [ -150.117188, 59.712097 ], [ -150.117188, 59.534318 ], [ -150.820312, 59.534318 ], [ -150.820312, 59.355596 ], [ -151.523438, 59.355596 ], [ -151.523438, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.759160 ], [ -151.171875, 60.759160 ], [ -151.171875, 60.930432 ], [ -150.468750, 60.930432 ], [ -150.468750, 61.270233 ], [ -151.171875, 61.270233 ], [ -151.171875, 61.100789 ], [ -151.523438, 61.100789 ], [ -151.523438, 60.930432 ], [ -151.875000, 60.930432 ], [ -151.875000, 60.759160 ], [ -152.226562, 60.759160 ], [ -152.226562, 60.413852 ], [ -152.578125, 60.413852 ], [ -152.578125, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.712097 ], [ -153.632812, 59.712097 ], [ -153.632812, 59.534318 ], [ -153.984375, 59.534318 ], [ -153.984375, 59.355596 ], [ -154.335938, 59.355596 ], [ -154.335938, 59.175928 ], [ -153.984375, 59.175928 ], [ -153.984375, 58.995311 ], [ -153.632812, 58.995311 ], [ -153.632812, 58.813742 ], [ -153.984375, 58.813742 ], [ -153.984375, 58.447733 ], [ -154.335938, 58.447733 ], [ -154.335938, 58.077876 ], [ -155.039062, 58.077876 ], [ -155.039062, 57.891497 ], [ -155.390625, 57.891497 ], [ -155.390625, 57.704147 ], [ -156.093750, 57.704147 ], [ -156.093750, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 57.326521 ], [ -156.796875, 57.326521 ], [ -156.796875, 56.944974 ], [ -157.148438, 56.944974 ], [ -157.148438, 56.752723 ], [ -157.851562, 56.752723 ], [ -157.851562, 56.559482 ], [ -158.203125, 56.559482 ], [ -158.203125, 56.365250 ], [ -158.554688, 56.365250 ], [ -158.554688, 55.973798 ], [ -158.906250, 55.973798 ], [ -158.906250, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.578345 ], [ -161.015625, 55.578345 ], [ -161.015625, 55.379110 ], [ -161.718750, 55.379110 ], [ -161.718750, 55.178868 ], [ -162.421875, 55.178868 ], [ -162.421875, 54.977614 ], [ -162.773438, 54.977614 ], [ -162.773438, 54.775346 ], [ -163.828125, 54.775346 ], [ -163.828125, 54.572062 ], [ -164.882812, 54.572062 ], [ -164.882812, 54.775346 ], [ -164.531250, 54.775346 ], [ -164.531250, 54.977614 ], [ -164.179688, 54.977614 ], [ -164.179688, 55.178868 ], [ -163.476562, 55.178868 ], [ -163.476562, 55.379110 ], [ -162.773438, 55.379110 ], [ -162.773438, 55.578345 ], [ -162.421875, 55.578345 ], [ -162.421875, 55.776573 ], [ -162.070312, 55.776573 ], [ -162.070312, 55.973798 ], [ -161.015625, 55.973798 ], [ -161.015625, 56.170023 ], [ -160.664062, 56.170023 ], [ -160.664062, 56.365250 ], [ -160.312500, 56.365250 ], [ -160.312500, 56.559482 ], [ -159.960938, 56.559482 ], [ -159.960938, 56.752723 ], [ -159.257812, 56.752723 ], [ -159.257812, 56.944974 ], [ -158.906250, 56.944974 ], [ -158.906250, 57.136239 ], [ -158.554688, 57.136239 ], [ -158.554688, 57.326521 ], [ -158.203125, 57.326521 ], [ -158.203125, 57.515823 ], [ -157.851562, 57.515823 ], [ -157.851562, 58.447733 ], [ -157.500000, 58.447733 ], [ -157.500000, 58.813742 ], [ -157.851562, 58.813742 ], [ -157.851562, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.609375, 58.447733 ], [ -159.609375, 58.813742 ], [ -160.664062, 58.813742 ], [ -160.664062, 58.995311 ], [ -161.015625, 58.995311 ], [ -161.015625, 58.813742 ], [ -162.070312, 58.813742 ], [ -162.070312, 59.712097 ], [ -162.421875, 59.712097 ], [ -162.421875, 59.888937 ], [ -162.773438, 59.888937 ], [ -162.773438, 60.064840 ], [ -163.125000, 60.064840 ], [ -163.125000, 59.888937 ], [ -164.179688, 59.888937 ], [ -164.179688, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.413852 ], [ -165.585938, 60.413852 ], [ -165.585938, 61.100789 ], [ -165.937500, 61.100789 ], [ -165.937500, 61.438767 ], [ -166.289062, 61.438767 ], [ -166.289062, 61.773123 ], [ -165.937500, 61.773123 ], [ -165.937500, 62.267923 ], [ -165.585938, 62.267923 ], [ -165.585938, 62.593341 ], [ -165.234375, 62.593341 ], [ -165.234375, 62.915233 ], [ -164.882812, 62.915233 ], [ -164.882812, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 63.074866 ], [ -162.773438, 63.074866 ], [ -162.773438, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.548552 ], [ -161.367188, 63.548552 ], [ -161.367188, 63.704722 ], [ -161.015625, 63.704722 ], [ -161.015625, 64.320872 ], [ -161.718750, 64.320872 ], [ -161.718750, 64.472794 ], [ -161.367188, 64.472794 ], [ -161.367188, 64.774125 ], [ -161.015625, 64.774125 ], [ -161.015625, 64.923542 ], [ -161.718750, 64.923542 ], [ -161.718750, 64.774125 ], [ -162.421875, 64.774125 ], [ -162.421875, 64.623877 ], [ -162.773438, 64.623877 ], [ -162.773438, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.623877 ], [ -164.179688, 64.623877 ], [ -164.179688, 64.472794 ], [ -165.937500, 64.472794 ], [ -165.937500, 64.623877 ], [ -166.640625, 64.623877 ], [ -166.640625, 64.923542 ], [ -166.992188, 64.923542 ], [ -166.992188, 65.219894 ], [ -167.343750, 65.219894 ], [ -167.343750, 65.366837 ], [ -167.695312, 65.366837 ], [ -167.695312, 65.512963 ], [ -168.046875, 65.512963 ], [ -168.046875, 65.658275 ], [ -168.398438, 65.658275 ], [ -168.398438, 65.802776 ], [ -167.695312, 65.802776 ], [ -167.695312, 65.946472 ], [ -166.992188, 65.946472 ], [ -166.992188, 66.089364 ], [ -166.640625, 66.089364 ], [ -166.640625, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.652977 ], [ -163.828125, 66.652977 ], [ -163.828125, 66.089364 ], [ -162.421875, 66.089364 ], [ -162.421875, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.652977 ], [ -162.773438, 66.652977 ], [ -162.773438, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.476562, 66.930060 ], [ -163.476562, 67.067433 ], [ -163.828125, 67.067433 ], [ -163.828125, 67.204032 ], [ -141.328125, 67.204032 ] ] ], [ [ [ -152.578125, 58.077876 ], [ -152.578125, 57.891497 ], [ -152.226562, 57.891497 ], [ -152.226562, 57.515823 ], [ -152.578125, 57.515823 ], [ -152.578125, 57.326521 ], [ -152.929688, 57.326521 ], [ -152.929688, 57.136239 ], [ -153.281250, 57.136239 ], [ -153.281250, 56.944974 ], [ -153.984375, 56.944974 ], [ -153.984375, 56.752723 ], [ -154.335938, 56.752723 ], [ -154.335938, 56.944974 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.704147 ], [ -153.984375, 57.704147 ], [ -153.984375, 57.891497 ], [ -153.281250, 57.891497 ], [ -153.281250, 58.077876 ], [ -152.578125, 58.077876 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -170.507812, 63.548552 ], [ -169.453125, 63.548552 ], [ -169.453125, 63.391522 ], [ -168.750000, 63.391522 ], [ -168.750000, 63.233627 ], [ -169.101562, 63.233627 ], [ -169.101562, 63.074866 ], [ -170.507812, 63.074866 ], [ -170.507812, 63.233627 ], [ -170.859375, 63.233627 ], [ -170.859375, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.704722 ], [ -170.507812, 63.704722 ] ] ], [ [ [ -165.937500, 60.413852 ], [ -165.937500, 60.239811 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.888937 ], [ -166.992188, 59.888937 ], [ -166.992188, 60.064840 ], [ -167.695312, 60.064840 ], [ -167.695312, 60.239811 ], [ -166.992188, 60.239811 ], [ -166.992188, 60.413852 ], [ -165.937500, 60.413852 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.609375, 32.842674 ], [ -114.609375, 32.249974 ], [ -113.906250, 32.249974 ], [ -113.906250, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.052934 ], [ -105.468750, 31.052934 ], [ -105.468750, 30.751278 ], [ -105.117188, 30.751278 ], [ -105.117188, 30.448674 ], [ -104.765625, 30.448674 ], [ -104.765625, 29.840644 ], [ -104.414062, 29.840644 ], [ -104.414062, 29.228890 ], [ -103.710938, 29.228890 ], [ -103.710938, 28.921631 ], [ -102.656250, 28.921631 ], [ -102.656250, 29.535230 ], [ -102.304688, 29.535230 ], [ -102.304688, 29.840644 ], [ -101.601562, 29.840644 ], [ -101.601562, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.304381 ], [ -100.195312, 28.304381 ], [ -100.195312, 27.683528 ], [ -99.492188, 27.683528 ], [ -99.492188, 27.059126 ], [ -99.140625, 27.059126 ], [ -99.140625, 26.431228 ], [ -98.789062, 26.431228 ], [ -98.789062, 26.115986 ], [ -98.085938, 26.115986 ], [ -98.085938, 25.799891 ], [ -97.031250, 25.799891 ], [ -97.031250, 25.165173 ], [ -97.382812, 25.165173 ], [ -97.382812, 24.527135 ], [ -97.734375, 24.527135 ], [ -97.734375, 21.616579 ], [ -97.382812, 21.616579 ], [ -97.382812, 20.961440 ], [ -97.031250, 20.961440 ], [ -97.031250, 20.303418 ], [ -96.679688, 20.303418 ], [ -96.679688, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 18.979026 ], [ -95.625000, 18.979026 ], [ -95.625000, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 18.312811 ], [ -94.570312, 18.312811 ], [ -94.570312, 17.978733 ], [ -93.867188, 17.978733 ], [ -93.867188, 18.312811 ], [ -92.812500, 18.312811 ], [ -92.812500, 18.646245 ], [ -91.406250, 18.646245 ], [ -91.406250, 18.979026 ], [ -90.703125, 18.979026 ], [ -90.703125, 20.303418 ], [ -90.351562, 20.303418 ], [ -90.351562, 20.961440 ], [ -89.648438, 20.961440 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -88.242188, 21.616579 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.644022 ], [ -90.000000, 17.644022 ], [ -90.000000, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.944785 ], [ -93.164062, 14.944785 ], [ -93.164062, 15.284185 ], [ -93.515625, 15.284185 ], [ -93.515625, 15.623037 ], [ -93.867188, 15.623037 ], [ -93.867188, 15.961329 ], [ -95.273438, 15.961329 ], [ -95.273438, 15.623037 ], [ -97.382812, 15.623037 ], [ -97.382812, 15.961329 ], [ -98.437500, 15.961329 ], [ -98.437500, 16.299051 ], [ -98.789062, 16.299051 ], [ -98.789062, 16.636192 ], [ -100.195312, 16.636192 ], [ -100.195312, 16.972741 ], [ -100.898438, 16.972741 ], [ -100.898438, 17.308688 ], [ -101.601562, 17.308688 ], [ -101.601562, 17.644022 ], [ -101.953125, 17.644022 ], [ -101.953125, 17.978733 ], [ -103.007812, 17.978733 ], [ -103.007812, 18.312811 ], [ -104.062500, 18.312811 ], [ -104.062500, 18.646245 ], [ -104.414062, 18.646245 ], [ -104.414062, 18.979026 ], [ -105.117188, 18.979026 ], [ -105.117188, 19.642588 ], [ -105.468750, 19.642588 ], [ -105.468750, 19.973349 ], [ -105.820312, 19.973349 ], [ -105.820312, 20.303418 ], [ -105.468750, 20.303418 ], [ -105.468750, 20.961440 ], [ -105.117188, 20.961440 ], [ -105.117188, 21.616579 ], [ -105.468750, 21.616579 ], [ -105.468750, 21.943046 ], [ -105.820312, 21.943046 ], [ -105.820312, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 22.917923 ], [ -106.523438, 22.917923 ], [ -106.523438, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.206890 ], [ -107.929688, 24.206890 ], [ -107.929688, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.165173 ], [ -108.984375, 25.165173 ], [ -108.984375, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 26.431228 ], [ -109.687500, 26.431228 ], [ -109.687500, 26.745610 ], [ -110.390625, 26.745610 ], [ -110.390625, 27.371767 ], [ -110.742188, 27.371767 ], [ -110.742188, 27.994401 ], [ -111.445312, 27.994401 ], [ -111.445312, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.613459 ], [ -112.148438, 28.613459 ], [ -112.148438, 29.228890 ], [ -112.500000, 29.228890 ], [ -112.500000, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.052934 ], [ -113.554688, 31.052934 ], [ -113.554688, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.653381 ], [ -114.609375, 31.653381 ], [ -114.609375, 31.353637 ], [ -114.960938, 31.353637 ], [ -114.960938, 31.052934 ], [ -114.609375, 31.052934 ], [ -114.609375, 29.840644 ], [ -114.257812, 29.840644 ], [ -114.257812, 29.535230 ], [ -113.906250, 29.535230 ], [ -113.906250, 28.921631 ], [ -113.554688, 28.921631 ], [ -113.554688, 28.613459 ], [ -113.203125, 28.613459 ], [ -113.203125, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.371767 ], [ -112.500000, 27.371767 ], [ -112.500000, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.745610 ], [ -111.445312, 26.745610 ], [ -111.445312, 25.482951 ], [ -111.093750, 25.482951 ], [ -111.093750, 24.846565 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.206890 ], [ -110.039062, 24.206890 ], [ -110.039062, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.563987 ], [ -109.335938, 23.563987 ], [ -109.335938, 22.917923 ], [ -110.039062, 22.917923 ], [ -110.039062, 23.241346 ], [ -110.390625, 23.241346 ], [ -110.390625, 23.563987 ], [ -111.093750, 23.563987 ], [ -111.093750, 23.885838 ], [ -111.445312, 23.885838 ], [ -111.445312, 24.206890 ], [ -111.796875, 24.206890 ], [ -111.796875, 24.527135 ], [ -112.148438, 24.527135 ], [ -112.148438, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.431228 ], [ -113.554688, 26.431228 ], [ -113.554688, 26.745610 ], [ -114.609375, 26.745610 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.683528 ], [ -114.257812, 27.683528 ], [ -114.257812, 28.613459 ], [ -114.609375, 28.613459 ], [ -114.609375, 28.921631 ], [ -114.960938, 28.921631 ], [ -114.960938, 29.228890 ], [ -115.664062, 29.228890 ], [ -115.664062, 29.840644 ], [ -116.015625, 29.840644 ], [ -116.015625, 30.448674 ], [ -116.367188, 30.448674 ], [ -116.367188, 31.052934 ], [ -116.718750, 31.052934 ], [ -116.718750, 31.952162 ], [ -117.070312, 31.952162 ], [ -117.070312, 32.546813 ], [ -114.960938, 32.546813 ], [ -114.960938, 32.842674 ], [ -114.609375, 32.842674 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.960938, 32.842674 ], [ -114.960938, 32.546813 ], [ -114.609375, 32.546813 ], [ -114.609375, 32.249974 ], [ -113.203125, 32.249974 ], [ -113.203125, 31.952162 ], [ -112.500000, 31.952162 ], [ -112.500000, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.952162 ], [ -106.523438, 31.952162 ], [ -106.523438, 31.653381 ], [ -106.171875, 31.653381 ], [ -106.171875, 31.353637 ], [ -105.820312, 31.353637 ], [ -105.820312, 31.052934 ], [ -105.468750, 31.052934 ], [ -105.468750, 30.751278 ], [ -105.117188, 30.751278 ], [ -105.117188, 30.448674 ], [ -104.765625, 30.448674 ], [ -104.765625, 29.535230 ], [ -104.062500, 29.535230 ], [ -104.062500, 29.228890 ], [ -103.007812, 29.228890 ], [ -103.007812, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 29.840644 ], [ -101.953125, 29.840644 ], [ -101.953125, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 28.921631 ], [ -100.546875, 28.921631 ], [ -100.546875, 28.613459 ], [ -100.195312, 28.613459 ], [ -100.195312, 27.994401 ], [ -99.843750, 27.994401 ], [ -99.843750, 27.371767 ], [ -99.492188, 27.371767 ], [ -99.492188, 26.745610 ], [ -99.140625, 26.745610 ], [ -99.140625, 26.115986 ], [ -97.382812, 26.115986 ], [ -97.382812, 25.482951 ], [ -97.734375, 25.482951 ], [ -97.734375, 23.885838 ], [ -98.085938, 23.885838 ], [ -98.085938, 22.268764 ], [ -97.734375, 22.268764 ], [ -97.734375, 21.289374 ], [ -97.382812, 21.289374 ], [ -97.382812, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 19.973349 ], [ -96.679688, 19.973349 ], [ -96.679688, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 19.311143 ], [ -95.976562, 19.311143 ], [ -95.976562, 18.979026 ], [ -95.625000, 18.979026 ], [ -95.625000, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 18.312811 ], [ -93.867188, 18.312811 ], [ -93.867188, 18.646245 ], [ -92.109375, 18.646245 ], [ -92.109375, 18.979026 ], [ -91.054688, 18.979026 ], [ -91.054688, 19.642588 ], [ -90.703125, 19.642588 ], [ -90.703125, 20.961440 ], [ -90.351562, 20.961440 ], [ -90.351562, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -88.242188, 21.616579 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.757812, 17.308688 ], [ -91.757812, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -91.757812, 16.299051 ], [ -91.757812, 15.961329 ], [ -92.109375, 15.961329 ], [ -92.109375, 14.944785 ], [ -92.460938, 14.944785 ], [ -92.460938, 14.604847 ], [ -92.812500, 14.604847 ], [ -92.812500, 14.944785 ], [ -93.164062, 14.944785 ], [ -93.164062, 15.284185 ], [ -93.515625, 15.284185 ], [ -93.515625, 15.623037 ], [ -94.218750, 15.623037 ], [ -94.218750, 15.961329 ], [ -94.921875, 15.961329 ], [ -94.921875, 16.299051 ], [ -95.625000, 16.299051 ], [ -95.625000, 15.961329 ], [ -98.085938, 15.961329 ], [ -98.085938, 16.299051 ], [ -98.789062, 16.299051 ], [ -98.789062, 16.636192 ], [ -99.843750, 16.636192 ], [ -99.843750, 16.972741 ], [ -100.546875, 16.972741 ], [ -100.546875, 17.308688 ], [ -101.250000, 17.308688 ], [ -101.250000, 17.644022 ], [ -101.953125, 17.644022 ], [ -101.953125, 17.978733 ], [ -103.359375, 17.978733 ], [ -103.359375, 18.312811 ], [ -103.710938, 18.312811 ], [ -103.710938, 18.646245 ], [ -104.062500, 18.646245 ], [ -104.062500, 18.979026 ], [ -104.414062, 18.979026 ], [ -104.414062, 19.311143 ], [ -105.117188, 19.311143 ], [ -105.117188, 19.642588 ], [ -105.820312, 19.642588 ], [ -105.820312, 20.961440 ], [ -105.468750, 20.961440 ], [ -105.468750, 21.616579 ], [ -105.820312, 21.616579 ], [ -105.820312, 22.593726 ], [ -106.171875, 22.593726 ], [ -106.171875, 22.917923 ], [ -106.523438, 22.917923 ], [ -106.523438, 23.241346 ], [ -106.875000, 23.241346 ], [ -106.875000, 23.563987 ], [ -107.226562, 23.563987 ], [ -107.226562, 23.885838 ], [ -107.578125, 23.885838 ], [ -107.578125, 24.527135 ], [ -107.929688, 24.527135 ], [ -107.929688, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.165173 ], [ -108.632812, 25.165173 ], [ -108.632812, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 25.799891 ], [ -109.687500, 25.799891 ], [ -109.687500, 26.431228 ], [ -109.335938, 26.431228 ], [ -109.335938, 26.745610 ], [ -110.039062, 26.745610 ], [ -110.039062, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.683528 ], [ -110.742188, 27.683528 ], [ -110.742188, 27.994401 ], [ -111.445312, 27.994401 ], [ -111.445312, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.613459 ], [ -112.148438, 28.613459 ], [ -112.148438, 28.921631 ], [ -112.500000, 28.921631 ], [ -112.500000, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.653381 ], [ -114.960938, 31.653381 ], [ -114.960938, 30.145127 ], [ -114.609375, 30.145127 ], [ -114.609375, 29.535230 ], [ -114.257812, 29.535230 ], [ -114.257812, 29.228890 ], [ -113.906250, 29.228890 ], [ -113.906250, 28.921631 ], [ -113.554688, 28.921631 ], [ -113.554688, 28.613459 ], [ -113.203125, 28.613459 ], [ -113.203125, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.745610 ], [ -111.796875, 26.745610 ], [ -111.796875, 26.115986 ], [ -111.445312, 26.115986 ], [ -111.445312, 25.482951 ], [ -111.093750, 25.482951 ], [ -111.093750, 25.165173 ], [ -110.742188, 25.165173 ], [ -110.742188, 24.527135 ], [ -110.390625, 24.527135 ], [ -110.390625, 24.206890 ], [ -110.039062, 24.206890 ], [ -110.039062, 23.563987 ], [ -109.687500, 23.563987 ], [ -109.687500, 22.917923 ], [ -110.039062, 22.917923 ], [ -110.039062, 23.241346 ], [ -110.390625, 23.241346 ], [ -110.390625, 23.563987 ], [ -110.742188, 23.563987 ], [ -110.742188, 23.885838 ], [ -111.093750, 23.885838 ], [ -111.093750, 24.206890 ], [ -111.796875, 24.206890 ], [ -111.796875, 24.527135 ], [ -112.500000, 24.527135 ], [ -112.500000, 25.165173 ], [ -112.148438, 25.165173 ], [ -112.148438, 25.799891 ], [ -112.500000, 25.799891 ], [ -112.500000, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.431228 ], [ -113.203125, 26.431228 ], [ -113.203125, 26.745610 ], [ -113.906250, 26.745610 ], [ -113.906250, 27.059126 ], [ -114.609375, 27.059126 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.683528 ], [ -115.312500, 27.683528 ], [ -115.312500, 27.994401 ], [ -114.257812, 27.994401 ], [ -114.257812, 28.613459 ], [ -114.609375, 28.613459 ], [ -114.609375, 29.228890 ], [ -114.960938, 29.228890 ], [ -114.960938, 29.535230 ], [ -115.664062, 29.535230 ], [ -115.664062, 30.145127 ], [ -116.015625, 30.145127 ], [ -116.015625, 30.751278 ], [ -116.367188, 30.751278 ], [ -116.367188, 31.052934 ], [ -116.718750, 31.052934 ], [ -116.718750, 31.353637 ], [ -117.070312, 31.353637 ], [ -117.070312, 31.952162 ], [ -117.421875, 31.952162 ], [ -117.421875, 32.546813 ], [ -116.367188, 32.546813 ], [ -116.367188, 32.842674 ], [ -114.960938, 32.842674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.978733 ], [ -90.000000, 17.644022 ], [ -89.296875, 17.644022 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.284185 ], [ -88.593750, 15.284185 ], [ -88.593750, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.581921 ], [ -90.703125, 13.581921 ], [ -90.703125, 13.923404 ], [ -91.757812, 13.923404 ], [ -91.757812, 14.264383 ], [ -92.109375, 14.264383 ], [ -92.109375, 15.623037 ], [ -91.757812, 15.623037 ], [ -91.757812, 15.961329 ], [ -90.351562, 15.961329 ], [ -90.351562, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -90.000000, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.961329 ], [ -88.242188, 15.623037 ], [ -88.945312, 15.623037 ], [ -88.945312, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 14.604847 ], [ -89.648438, 14.604847 ], [ -89.648438, 14.264383 ], [ -90.000000, 14.264383 ], [ -90.000000, 13.923404 ], [ -91.406250, 13.923404 ], [ -91.406250, 14.264383 ], [ -92.460938, 14.264383 ], [ -92.460938, 14.944785 ], [ -92.109375, 14.944785 ], [ -92.109375, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.757812, 16.972741 ], [ -91.757812, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.972741 ], [ -88.593750, 16.972741 ], [ -88.593750, 16.299051 ], [ -88.945312, 16.299051 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.604847 ], [ -89.296875, 14.264383 ], [ -88.593750, 14.264383 ], [ -88.593750, 13.923404 ], [ -88.242188, 13.923404 ], [ -88.242188, 13.239945 ], [ -88.945312, 13.239945 ], [ -88.945312, 13.581921 ], [ -90.351562, 13.581921 ], [ -90.351562, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.604847 ], [ -89.296875, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.284185 ], [ -88.242188, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 15.623037 ], [ -88.242188, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 15.284185 ], [ -88.945312, 15.284185 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.757812, 63.704722 ], [ -181.406250, 63.704722 ], [ -181.406250, 63.391522 ], [ -181.054688, 63.391522 ], [ -181.054688, 63.074866 ], [ -180.703125, 63.074866 ], [ -180.703125, 62.754726 ], [ -180.351562, 62.754726 ], [ -180.351562, 62.431074 ], [ -180.703125, 62.431074 ], [ -180.703125, 62.267923 ], [ -181.406250, 62.267923 ], [ -181.406250, 62.431074 ], [ -181.757812, 62.431074 ], [ -181.757812, 63.704722 ] ] ], [ [ [ -180.000000, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -169.804688, 65.946472 ], [ -169.804688, 65.802776 ], [ -170.156250, 65.802776 ], [ -170.156250, 65.658275 ], [ -170.507812, 65.658275 ], [ -170.507812, 65.512963 ], [ -171.562500, 65.512963 ], [ -171.562500, 65.366837 ], [ -172.617188, 65.366837 ], [ -172.617188, 64.320872 ], [ -174.375000, 64.320872 ], [ -174.375000, 64.472794 ], [ -174.726562, 64.472794 ], [ -174.726562, 64.623877 ], [ -175.429688, 64.623877 ], [ -175.429688, 64.774125 ], [ -176.132812, 64.774125 ], [ -176.132812, 65.366837 ], [ -176.835938, 65.366837 ], [ -176.835938, 65.512963 ], [ -177.539062, 65.512963 ], [ -177.539062, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 65.946472 ], [ -179.296875, 65.946472 ], [ -179.296875, 65.802776 ], [ -180.000000, 65.802776 ], [ -180.000000, 65.658275 ], [ -179.648438, 65.658275 ], [ -179.648438, 65.366837 ], [ -179.296875, 65.366837 ], [ -179.296875, 65.219894 ], [ -179.648438, 65.219894 ], [ -179.648438, 64.923542 ], [ -180.000000, 64.923542 ], [ -180.000000, 64.774125 ], [ -180.351562, 64.774125 ], [ -180.351562, 64.623877 ], [ -181.054688, 64.623877 ], [ -181.054688, 64.472794 ], [ -181.757812, 64.472794 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.757812, 63.704722 ], [ -181.406250, 63.704722 ], [ -181.406250, 63.233627 ], [ -181.054688, 63.233627 ], [ -181.054688, 63.074866 ], [ -180.703125, 63.074866 ], [ -180.703125, 62.431074 ], [ -181.757812, 62.431074 ], [ -181.757812, 63.704722 ] ] ], [ [ [ -180.000000, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -170.507812, 65.946472 ], [ -170.507812, 65.802776 ], [ -170.859375, 65.802776 ], [ -170.859375, 65.658275 ], [ -171.562500, 65.658275 ], [ -171.562500, 65.512963 ], [ -172.617188, 65.512963 ], [ -172.617188, 64.320872 ], [ -174.375000, 64.320872 ], [ -174.375000, 64.623877 ], [ -174.726562, 64.623877 ], [ -174.726562, 64.774125 ], [ -175.781250, 64.774125 ], [ -175.781250, 64.923542 ], [ -176.132812, 64.923542 ], [ -176.132812, 65.072130 ], [ -176.484375, 65.072130 ], [ -176.484375, 65.366837 ], [ -176.835938, 65.366837 ], [ -176.835938, 65.512963 ], [ -177.539062, 65.512963 ], [ -177.539062, 65.658275 ], [ -177.890625, 65.658275 ], [ -177.890625, 65.512963 ], [ -178.593750, 65.512963 ], [ -178.593750, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 66.089364 ], [ -179.648438, 66.089364 ], [ -179.648438, 65.946472 ], [ -180.000000, 65.946472 ], [ -180.000000, 65.658275 ], [ -179.648438, 65.658275 ], [ -179.648438, 65.219894 ], [ -180.000000, 65.219894 ], [ -180.000000, 65.072130 ], [ -180.351562, 65.072130 ], [ -180.351562, 64.923542 ], [ -180.703125, 64.923542 ], [ -180.703125, 64.774125 ], [ -181.054688, 64.774125 ], [ -181.054688, 64.623877 ], [ -181.757812, 64.623877 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.570312, 71.856229 ], [ -94.570312, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.524909 ], [ -93.164062, 71.524909 ], [ -93.164062, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 71.074056 ], [ -92.460938, 71.074056 ], [ -92.460938, 70.844673 ], [ -92.109375, 70.844673 ], [ -92.109375, 70.495574 ], [ -91.757812, 70.495574 ], [ -91.757812, 70.259452 ], [ -91.406250, 70.259452 ], [ -91.406250, 70.020587 ], [ -91.757812, 70.020587 ], [ -91.757812, 69.900118 ], [ -92.109375, 69.900118 ], [ -92.109375, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 65.802776 ], [ -140.976562, 65.802776 ], [ -140.976562, 69.657086 ], [ -140.625000, 69.657086 ], [ -140.625000, 69.534518 ], [ -139.921875, 69.534518 ], [ -139.921875, 69.411242 ], [ -139.218750, 69.411242 ], [ -139.218750, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.162558 ], [ -137.812500, 69.162558 ], [ -137.812500, 69.037142 ], [ -137.109375, 69.037142 ], [ -137.109375, 68.911005 ], [ -136.054688, 68.911005 ], [ -136.054688, 69.162558 ], [ -135.703125, 69.162558 ], [ -135.703125, 69.287257 ], [ -135.351562, 69.287257 ], [ -135.351562, 69.411242 ], [ -134.648438, 69.411242 ], [ -134.648438, 69.534518 ], [ -134.296875, 69.534518 ], [ -134.296875, 69.657086 ], [ -133.945312, 69.657086 ], [ -133.945312, 69.534518 ], [ -132.539062, 69.534518 ], [ -132.539062, 69.657086 ], [ -131.835938, 69.657086 ], [ -131.835938, 69.778952 ], [ -131.484375, 69.778952 ], [ -131.484375, 69.900118 ], [ -130.781250, 69.900118 ], [ -130.781250, 70.020587 ], [ -130.078125, 70.020587 ], [ -130.078125, 70.140364 ], [ -129.726562, 70.140364 ], [ -129.726562, 70.020587 ], [ -129.375000, 70.020587 ], [ -129.375000, 69.778952 ], [ -128.671875, 69.778952 ], [ -128.671875, 69.900118 ], [ -128.320312, 69.900118 ], [ -128.320312, 70.259452 ], [ -127.968750, 70.259452 ], [ -127.968750, 70.377854 ], [ -127.617188, 70.377854 ], [ -127.617188, 70.259452 ], [ -127.265625, 70.259452 ], [ -127.265625, 70.020587 ], [ -126.914062, 70.020587 ], [ -126.914062, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.534518 ], [ -125.507812, 69.534518 ], [ -125.507812, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 70.020587 ], [ -124.453125, 70.020587 ], [ -124.453125, 69.411242 ], [ -123.398438, 69.411242 ], [ -123.398438, 69.534518 ], [ -123.046875, 69.534518 ], [ -123.046875, 69.657086 ], [ -122.695312, 69.657086 ], [ -122.695312, 69.900118 ], [ -122.343750, 69.900118 ], [ -122.343750, 69.778952 ], [ -121.640625, 69.778952 ], [ -121.640625, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.534518 ], [ -120.234375, 69.534518 ], [ -120.234375, 69.411242 ], [ -119.882812, 69.411242 ], [ -119.882812, 69.287257 ], [ -119.179688, 69.287257 ], [ -119.179688, 69.162558 ], [ -118.476562, 69.162558 ], [ -118.476562, 69.037142 ], [ -117.773438, 69.037142 ], [ -117.773438, 68.911005 ], [ -117.070312, 68.911005 ], [ -117.070312, 68.784144 ], [ -115.664062, 68.784144 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 68.007571 ], [ -114.960938, 68.007571 ], [ -114.960938, 67.875541 ], [ -114.609375, 67.875541 ], [ -114.609375, 67.742759 ], [ -110.390625, 67.742759 ], [ -110.390625, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.609221 ], [ -109.335938, 67.609221 ], [ -109.335938, 67.339861 ], [ -108.632812, 67.339861 ], [ -108.632812, 67.609221 ], [ -108.281250, 67.609221 ], [ -108.281250, 67.742759 ], [ -107.929688, 67.742759 ], [ -107.929688, 67.875541 ], [ -108.281250, 67.875541 ], [ -108.281250, 68.007571 ], [ -108.632812, 68.007571 ], [ -108.632812, 68.138852 ], [ -108.984375, 68.138852 ], [ -108.984375, 68.269387 ], [ -108.632812, 68.269387 ], [ -108.632812, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.656555 ], [ -105.820312, 68.656555 ], [ -105.820312, 68.528235 ], [ -105.468750, 68.528235 ], [ -105.468750, 68.399180 ], [ -105.117188, 68.399180 ], [ -105.117188, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.007571 ], [ -103.710938, 68.007571 ], [ -103.710938, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 68.007571 ], [ -103.007812, 68.007571 ], [ -103.007812, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.742759 ], [ -101.953125, 67.742759 ], [ -101.953125, 67.609221 ], [ -100.546875, 67.609221 ], [ -100.546875, 67.742759 ], [ -98.437500, 67.742759 ], [ -98.437500, 68.399180 ], [ -97.734375, 68.399180 ], [ -97.734375, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.269387 ], [ -95.976562, 68.269387 ], [ -95.976562, 67.742759 ], [ -95.625000, 67.742759 ], [ -95.625000, 68.138852 ], [ -95.273438, 68.138852 ], [ -95.273438, 68.007571 ], [ -94.570312, 68.007571 ], [ -94.570312, 68.528235 ], [ -94.218750, 68.528235 ], [ -94.218750, 69.037142 ], [ -94.570312, 69.037142 ], [ -94.570312, 69.287257 ], [ -94.921875, 69.287257 ], [ -94.921875, 69.534518 ], [ -95.273438, 69.534518 ], [ -95.273438, 69.657086 ], [ -95.625000, 69.657086 ], [ -95.625000, 69.900118 ], [ -95.976562, 69.900118 ], [ -95.976562, 70.020587 ], [ -96.328125, 70.020587 ], [ -96.328125, 71.300793 ], [ -95.976562, 71.300793 ], [ -95.976562, 71.524909 ], [ -95.625000, 71.524909 ], [ -95.625000, 71.746432 ], [ -95.273438, 71.746432 ], [ -95.273438, 71.856229 ], [ -94.570312, 71.856229 ] ] ], [ [ [ -88.242188, 73.428424 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.612614 ], [ -89.648438, 70.612614 ], [ -89.648438, 70.728979 ], [ -89.296875, 70.728979 ], [ -89.296875, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.000000, 71.635993 ], [ -90.351562, 71.635993 ], [ -90.351562, 72.289067 ], [ -90.000000, 72.289067 ], [ -90.000000, 72.607120 ], [ -89.648438, 72.607120 ], [ -89.648438, 72.919635 ], [ -89.296875, 72.919635 ], [ -89.296875, 73.124945 ], [ -88.945312, 73.124945 ], [ -88.945312, 73.327858 ], [ -88.593750, 73.327858 ], [ -88.593750, 73.428424 ], [ -88.242188, 73.428424 ] ] ], [ [ [ -106.523438, 73.124945 ], [ -106.523438, 73.327858 ], [ -106.875000, 73.327858 ], [ -106.875000, 73.528399 ], [ -106.523438, 73.528399 ], [ -106.523438, 73.627789 ], [ -105.117188, 73.627789 ], [ -105.117188, 73.528399 ], [ -104.765625, 73.528399 ], [ -104.765625, 73.428424 ], [ -104.414062, 73.428424 ], [ -104.414062, 73.226700 ], [ -104.765625, 73.226700 ], [ -104.765625, 73.022592 ], [ -105.117188, 73.022592 ], [ -105.117188, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 72.711903 ], [ -105.468750, 72.395706 ], [ -105.117188, 72.395706 ], [ -105.117188, 71.965388 ], [ -104.765625, 71.965388 ], [ -104.765625, 71.300793 ], [ -104.414062, 71.300793 ], [ -104.414062, 70.844673 ], [ -104.062500, 70.844673 ], [ -104.062500, 70.728979 ], [ -103.359375, 70.728979 ], [ -103.359375, 70.612614 ], [ -103.007812, 70.612614 ], [ -103.007812, 70.495574 ], [ -102.656250, 70.495574 ], [ -102.656250, 70.377854 ], [ -102.304688, 70.377854 ], [ -102.304688, 70.259452 ], [ -101.601562, 70.259452 ], [ -101.601562, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 70.020587 ], [ -100.898438, 70.020587 ], [ -100.898438, 69.778952 ], [ -101.250000, 69.778952 ], [ -101.250000, 69.534518 ], [ -102.656250, 69.534518 ], [ -102.656250, 69.411242 ], [ -102.304688, 69.411242 ], [ -102.304688, 69.162558 ], [ -101.953125, 69.162558 ], [ -101.953125, 68.911005 ], [ -102.304688, 68.911005 ], [ -102.304688, 68.784144 ], [ -103.710938, 68.784144 ], [ -103.710938, 68.911005 ], [ -105.117188, 68.911005 ], [ -105.117188, 69.037142 ], [ -105.820312, 69.037142 ], [ -105.820312, 69.162558 ], [ -107.226562, 69.162558 ], [ -107.226562, 69.037142 ], [ -107.929688, 69.037142 ], [ -107.929688, 68.911005 ], [ -108.632812, 68.911005 ], [ -108.632812, 68.784144 ], [ -110.039062, 68.784144 ], [ -110.039062, 68.656555 ], [ -112.148438, 68.656555 ], [ -112.148438, 68.528235 ], [ -113.203125, 68.528235 ], [ -113.203125, 68.656555 ], [ -113.554688, 68.656555 ], [ -113.554688, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.609375, 69.037142 ], [ -114.609375, 69.162558 ], [ -116.367188, 69.162558 ], [ -116.367188, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.534518 ], [ -117.070312, 69.534518 ], [ -117.070312, 69.778952 ], [ -117.421875, 69.778952 ], [ -117.421875, 69.900118 ], [ -116.718750, 69.900118 ], [ -116.718750, 70.020587 ], [ -116.015625, 70.020587 ], [ -116.015625, 70.140364 ], [ -115.312500, 70.140364 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.140364 ], [ -113.203125, 70.140364 ], [ -113.203125, 70.259452 ], [ -112.500000, 70.259452 ], [ -112.500000, 70.377854 ], [ -113.203125, 70.377854 ], [ -113.203125, 70.495574 ], [ -113.906250, 70.495574 ], [ -113.906250, 70.612614 ], [ -114.960938, 70.612614 ], [ -114.960938, 70.495574 ], [ -117.773438, 70.495574 ], [ -117.773438, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.959697 ], [ -117.773438, 70.959697 ], [ -117.773438, 71.074056 ], [ -117.070312, 71.074056 ], [ -117.070312, 71.187754 ], [ -116.367188, 71.187754 ], [ -116.367188, 71.300793 ], [ -118.476562, 71.300793 ], [ -118.476562, 71.413177 ], [ -119.179688, 71.413177 ], [ -119.179688, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.635993 ], [ -119.179688, 71.635993 ], [ -119.179688, 71.856229 ], [ -118.828125, 71.856229 ], [ -118.828125, 72.073911 ], [ -118.476562, 72.073911 ], [ -118.476562, 72.395706 ], [ -118.125000, 72.395706 ], [ -118.125000, 72.607120 ], [ -117.773438, 72.607120 ], [ -117.773438, 72.711903 ], [ -117.421875, 72.711903 ], [ -117.421875, 72.816074 ], [ -117.070312, 72.816074 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 73.022592 ], [ -116.015625, 73.022592 ], [ -116.015625, 73.124945 ], [ -115.664062, 73.124945 ], [ -115.664062, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.124945 ], [ -114.257812, 73.124945 ], [ -114.257812, 72.816074 ], [ -114.609375, 72.816074 ], [ -114.609375, 72.607120 ], [ -113.906250, 72.607120 ], [ -113.906250, 72.711903 ], [ -113.203125, 72.711903 ], [ -113.203125, 72.816074 ], [ -112.148438, 72.816074 ], [ -112.148438, 72.711903 ], [ -111.796875, 72.711903 ], [ -111.796875, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -110.742188, 72.501722 ], [ -110.742188, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.816074 ], [ -109.687500, 72.816074 ], [ -109.687500, 72.711903 ], [ -109.335938, 72.711903 ], [ -109.335938, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 72.289067 ], [ -108.632812, 72.289067 ], [ -108.632812, 71.856229 ], [ -108.281250, 71.856229 ], [ -108.281250, 71.746432 ], [ -107.929688, 71.746432 ], [ -107.929688, 71.965388 ], [ -107.578125, 71.965388 ], [ -107.578125, 72.289067 ], [ -107.929688, 72.289067 ], [ -107.929688, 72.816074 ], [ -108.281250, 72.816074 ], [ -108.281250, 73.124945 ], [ -107.578125, 73.124945 ], [ -107.578125, 73.226700 ], [ -107.226562, 73.226700 ], [ -107.226562, 73.124945 ], [ -106.523438, 73.124945 ] ], [ [ -106.523438, 73.124945 ], [ -106.523438, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.124945 ], [ -106.523438, 73.124945 ] ] ], [ [ [ -97.382812, 70.020587 ], [ -97.382812, 69.900118 ], [ -97.031250, 69.900118 ], [ -97.031250, 69.778952 ], [ -96.679688, 69.778952 ], [ -96.679688, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.411242 ], [ -95.976562, 69.411242 ], [ -95.976562, 69.162558 ], [ -95.625000, 69.162558 ], [ -95.625000, 69.037142 ], [ -95.976562, 69.037142 ], [ -95.976562, 68.784144 ], [ -97.031250, 68.784144 ], [ -97.031250, 68.911005 ], [ -98.789062, 68.911005 ], [ -98.789062, 69.037142 ], [ -99.140625, 69.037142 ], [ -99.140625, 69.162558 ], [ -99.492188, 69.162558 ], [ -99.492188, 69.287257 ], [ -99.843750, 69.287257 ], [ -99.843750, 69.411242 ], [ -99.492188, 69.411242 ], [ -99.492188, 69.534518 ], [ -98.789062, 69.534518 ], [ -98.789062, 69.778952 ], [ -98.437500, 69.778952 ], [ -98.437500, 70.020587 ], [ -97.382812, 70.020587 ] ] ], [ [ [ -88.242188, 80.356995 ], [ -88.242188, 78.490552 ], [ -88.593750, 78.490552 ], [ -88.593750, 78.349411 ], [ -88.945312, 78.349411 ], [ -88.945312, 78.278201 ], [ -89.648438, 78.278201 ], [ -89.648438, 78.206563 ], [ -91.406250, 78.206563 ], [ -91.406250, 78.278201 ], [ -92.460938, 78.278201 ], [ -92.460938, 78.349411 ], [ -92.812500, 78.349411 ], [ -92.812500, 78.420193 ], [ -93.164062, 78.420193 ], [ -93.164062, 78.560488 ], [ -93.515625, 78.560488 ], [ -93.515625, 78.699106 ], [ -93.867188, 78.699106 ], [ -93.867188, 79.171335 ], [ -93.515625, 79.171335 ], [ -93.515625, 79.302640 ], [ -93.164062, 79.302640 ], [ -93.164062, 79.367701 ], [ -95.273438, 79.367701 ], [ -95.273438, 79.496652 ], [ -95.625000, 79.496652 ], [ -95.625000, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.812302 ], [ -96.328125, 79.812302 ], [ -96.328125, 80.058050 ], [ -96.679688, 80.058050 ], [ -96.679688, 80.238501 ], [ -96.328125, 80.238501 ], [ -96.328125, 80.474065 ], [ -95.976562, 80.474065 ], [ -95.976562, 80.647035 ], [ -95.625000, 80.647035 ], [ -95.625000, 80.816891 ], [ -95.273438, 80.816891 ], [ -95.273438, 80.928426 ], [ -94.570312, 80.928426 ], [ -94.570312, 80.983688 ], [ -94.218750, 80.983688 ], [ -94.218750, 81.093214 ], [ -94.570312, 81.093214 ], [ -94.570312, 81.201420 ], [ -93.164062, 81.201420 ], [ -93.164062, 81.255032 ], [ -92.460938, 81.255032 ], [ -92.460938, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.038617 ], [ -91.757812, 81.038617 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -89.648438, 80.589727 ], [ -89.648438, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.356995 ], [ -88.242188, 80.356995 ] ] ], [ [ [ -121.640625, 74.402163 ], [ -121.640625, 74.307353 ], [ -120.937500, 74.307353 ], [ -120.937500, 74.211983 ], [ -117.421875, 74.211983 ], [ -117.421875, 74.116047 ], [ -117.070312, 74.116047 ], [ -117.070312, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.428424 ], [ -115.664062, 73.428424 ], [ -115.664062, 73.327858 ], [ -116.367188, 73.327858 ], [ -116.367188, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.124945 ], [ -117.070312, 73.124945 ], [ -117.070312, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.919635 ], [ -117.773438, 72.919635 ], [ -117.773438, 72.816074 ], [ -118.125000, 72.816074 ], [ -118.125000, 72.711903 ], [ -118.476562, 72.711903 ], [ -118.476562, 72.607120 ], [ -118.828125, 72.607120 ], [ -118.828125, 72.501722 ], [ -119.179688, 72.501722 ], [ -119.179688, 72.395706 ], [ -119.531250, 72.395706 ], [ -119.531250, 72.181804 ], [ -119.882812, 72.181804 ], [ -119.882812, 72.073911 ], [ -120.234375, 72.073911 ], [ -120.234375, 71.856229 ], [ -120.585938, 71.856229 ], [ -120.585938, 71.300793 ], [ -121.289062, 71.300793 ], [ -121.289062, 71.187754 ], [ -121.640625, 71.187754 ], [ -121.640625, 71.074056 ], [ -121.992188, 71.074056 ], [ -121.992188, 70.959697 ], [ -122.695312, 70.959697 ], [ -122.695312, 70.844673 ], [ -123.046875, 70.844673 ], [ -123.046875, 70.959697 ], [ -123.398438, 70.959697 ], [ -123.398438, 71.187754 ], [ -123.750000, 71.187754 ], [ -123.750000, 71.300793 ], [ -124.101562, 71.300793 ], [ -124.101562, 71.413177 ], [ -124.453125, 71.413177 ], [ -124.453125, 71.524909 ], [ -125.156250, 71.524909 ], [ -125.156250, 71.635993 ], [ -125.507812, 71.635993 ], [ -125.507812, 71.746432 ], [ -125.859375, 71.746432 ], [ -125.859375, 72.073911 ], [ -125.507812, 72.073911 ], [ -125.507812, 72.395706 ], [ -125.156250, 72.395706 ], [ -125.156250, 72.816074 ], [ -124.804688, 72.816074 ], [ -124.804688, 73.124945 ], [ -124.453125, 73.124945 ], [ -124.453125, 73.528399 ], [ -124.101562, 73.528399 ], [ -124.101562, 73.824820 ], [ -124.453125, 73.824820 ], [ -124.453125, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.307353 ], [ -123.046875, 74.307353 ], [ -123.046875, 74.402163 ], [ -121.640625, 74.402163 ] ] ], [ [ [ -97.382812, 73.726595 ], [ -97.382812, 73.528399 ], [ -97.031250, 73.528399 ], [ -97.031250, 73.327858 ], [ -97.382812, 73.327858 ], [ -97.382812, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.919635 ], [ -97.734375, 72.919635 ], [ -97.734375, 72.816074 ], [ -97.382812, 72.816074 ], [ -97.382812, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 71.524909 ], [ -97.382812, 71.524909 ], [ -97.382812, 71.413177 ], [ -98.085938, 71.413177 ], [ -98.085938, 71.300793 ], [ -99.492188, 71.300793 ], [ -99.492188, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.073911 ], [ -101.601562, 72.073911 ], [ -101.601562, 72.181804 ], [ -101.953125, 72.181804 ], [ -101.953125, 72.289067 ], [ -102.304688, 72.289067 ], [ -102.304688, 72.395706 ], [ -102.656250, 72.395706 ], [ -102.656250, 72.607120 ], [ -102.304688, 72.607120 ], [ -102.304688, 72.816074 ], [ -101.601562, 72.816074 ], [ -101.601562, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.898438, 72.816074 ], [ -100.898438, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.226700 ], [ -101.601562, 73.226700 ], [ -101.601562, 73.327858 ], [ -101.250000, 73.327858 ], [ -101.250000, 73.428424 ], [ -100.898438, 73.428424 ], [ -100.898438, 73.627789 ], [ -100.546875, 73.627789 ], [ -100.546875, 73.726595 ], [ -99.492188, 73.726595 ], [ -99.492188, 73.627789 ], [ -98.085938, 73.627789 ], [ -98.085938, 73.726595 ], [ -97.382812, 73.726595 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -92.460938, 74.019543 ], [ -91.757812, 74.019543 ], [ -91.757812, 73.922469 ], [ -91.054688, 73.922469 ], [ -91.054688, 73.824820 ], [ -90.351562, 73.824820 ], [ -90.351562, 73.726595 ], [ -90.703125, 73.726595 ], [ -90.703125, 73.528399 ], [ -91.054688, 73.528399 ], [ -91.054688, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 72.919635 ], [ -92.460938, 72.919635 ], [ -92.460938, 72.816074 ], [ -93.164062, 72.816074 ], [ -93.164062, 72.607120 ], [ -93.515625, 72.607120 ], [ -93.515625, 72.395706 ], [ -93.867188, 72.395706 ], [ -93.867188, 72.181804 ], [ -94.218750, 72.181804 ], [ -94.218750, 72.073911 ], [ -95.273438, 72.073911 ], [ -95.273438, 72.289067 ], [ -95.625000, 72.289067 ], [ -95.625000, 72.711903 ], [ -95.976562, 72.711903 ], [ -95.976562, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.824820 ], [ -95.273438, 73.824820 ], [ -95.273438, 73.922469 ], [ -94.921875, 73.922469 ], [ -94.921875, 74.019543 ], [ -94.570312, 74.019543 ], [ -94.570312, 74.116047 ], [ -92.460938, 74.116047 ] ] ], [ [ [ -109.335938, 76.760541 ], [ -109.335938, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.434604 ], [ -108.281250, 76.434604 ], [ -108.281250, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.930885 ], [ -106.875000, 75.930885 ], [ -106.875000, 76.016094 ], [ -106.523438, 76.016094 ], [ -106.523438, 75.930885 ], [ -105.820312, 75.930885 ], [ -105.820312, 75.230667 ], [ -106.171875, 75.230667 ], [ -106.171875, 75.050354 ], [ -106.875000, 75.050354 ], [ -106.875000, 74.959392 ], [ -108.632812, 74.959392 ], [ -108.632812, 74.867889 ], [ -109.687500, 74.867889 ], [ -109.687500, 74.775843 ], [ -110.390625, 74.775843 ], [ -110.390625, 74.683250 ], [ -110.742188, 74.683250 ], [ -110.742188, 74.590108 ], [ -111.093750, 74.590108 ], [ -111.093750, 74.496413 ], [ -111.796875, 74.496413 ], [ -111.796875, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.683250 ], [ -113.554688, 74.683250 ], [ -113.554688, 74.775843 ], [ -113.203125, 74.775843 ], [ -113.203125, 74.867889 ], [ -112.500000, 74.867889 ], [ -112.500000, 74.959392 ], [ -112.148438, 74.959392 ], [ -112.148438, 75.050354 ], [ -111.796875, 75.050354 ], [ -111.796875, 75.140778 ], [ -113.906250, 75.140778 ], [ -113.906250, 75.050354 ], [ -117.070312, 75.050354 ], [ -117.070312, 75.140778 ], [ -117.773438, 75.140778 ], [ -117.773438, 75.320025 ], [ -117.421875, 75.320025 ], [ -117.421875, 75.584937 ], [ -117.070312, 75.584937 ], [ -117.070312, 75.758940 ], [ -116.718750, 75.758940 ], [ -116.718750, 76.016094 ], [ -116.367188, 76.016094 ], [ -116.367188, 76.184995 ], [ -116.015625, 76.184995 ], [ -116.015625, 76.351896 ], [ -115.664062, 76.351896 ], [ -115.664062, 76.434604 ], [ -114.609375, 76.434604 ], [ -114.609375, 76.351896 ], [ -114.257812, 76.351896 ], [ -114.257812, 76.268695 ], [ -113.554688, 76.268695 ], [ -113.554688, 76.184995 ], [ -112.851562, 76.184995 ], [ -112.851562, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.016094 ], [ -112.148438, 76.016094 ], [ -112.148438, 75.930885 ], [ -111.796875, 75.930885 ], [ -111.796875, 75.845169 ], [ -111.445312, 75.845169 ], [ -111.445312, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.584937 ], [ -110.039062, 75.584937 ], [ -110.039062, 75.497157 ], [ -108.984375, 75.497157 ], [ -108.984375, 75.584937 ], [ -109.335938, 75.584937 ], [ -109.335938, 75.845169 ], [ -109.687500, 75.845169 ], [ -109.687500, 76.016094 ], [ -110.039062, 76.016094 ], [ -110.039062, 76.268695 ], [ -110.390625, 76.268695 ], [ -110.390625, 76.516819 ], [ -110.039062, 76.516819 ], [ -110.039062, 76.679785 ], [ -109.687500, 76.679785 ], [ -109.687500, 76.760541 ], [ -109.335938, 76.760541 ] ] ], [ [ [ -95.976562, 77.157163 ], [ -95.976562, 77.078784 ], [ -94.570312, 77.078784 ], [ -94.570312, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.920614 ], [ -93.867188, 76.920614 ], [ -93.867188, 76.760541 ], [ -91.757812, 76.760541 ], [ -91.757812, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.584937 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.496413 ], [ -90.351562, 74.496413 ], [ -90.351562, 74.590108 ], [ -91.054688, 74.590108 ], [ -91.054688, 74.683250 ], [ -91.757812, 74.683250 ], [ -91.757812, 74.775843 ], [ -92.460938, 74.775843 ], [ -92.460938, 75.140778 ], [ -92.812500, 75.140778 ], [ -92.812500, 75.930885 ], [ -93.164062, 75.930885 ], [ -93.164062, 76.100796 ], [ -93.515625, 76.100796 ], [ -93.515625, 76.268695 ], [ -93.867188, 76.268695 ], [ -93.867188, 76.351896 ], [ -95.273438, 76.351896 ], [ -95.273438, 76.434604 ], [ -96.328125, 76.434604 ], [ -96.328125, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.920614 ], [ -96.679688, 76.920614 ], [ -96.679688, 77.157163 ], [ -95.976562, 77.157163 ] ] ], [ [ [ -94.570312, 75.584937 ], [ -94.570312, 75.497157 ], [ -94.218750, 75.497157 ], [ -94.218750, 75.320025 ], [ -93.867188, 75.320025 ], [ -93.867188, 75.140778 ], [ -93.515625, 75.140778 ], [ -93.515625, 74.867889 ], [ -93.867188, 74.867889 ], [ -93.867188, 74.683250 ], [ -94.218750, 74.683250 ], [ -94.218750, 74.590108 ], [ -95.273438, 74.590108 ], [ -95.273438, 74.683250 ], [ -95.976562, 74.683250 ], [ -95.976562, 74.775843 ], [ -96.328125, 74.775843 ], [ -96.328125, 74.867889 ], [ -96.679688, 74.867889 ], [ -96.679688, 75.140778 ], [ -96.328125, 75.140778 ], [ -96.328125, 75.408854 ], [ -95.976562, 75.408854 ], [ -95.976562, 75.497157 ], [ -95.273438, 75.497157 ], [ -95.273438, 75.584937 ], [ -94.570312, 75.584937 ] ] ], [ [ [ -99.492188, 76.679785 ], [ -99.492188, 76.598545 ], [ -98.437500, 76.598545 ], [ -98.437500, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.320025 ], [ -98.085938, 75.320025 ], [ -98.085938, 74.959392 ], [ -98.789062, 74.959392 ], [ -98.789062, 74.867889 ], [ -100.195312, 74.867889 ], [ -100.195312, 74.959392 ], [ -100.898438, 74.959392 ], [ -100.898438, 75.672197 ], [ -101.601562, 75.672197 ], [ -101.601562, 75.584937 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -102.304688, 76.351896 ], [ -102.304688, 76.268695 ], [ -101.250000, 76.268695 ], [ -101.250000, 76.351896 ], [ -100.898438, 76.351896 ], [ -100.898438, 76.434604 ], [ -100.546875, 76.434604 ], [ -100.546875, 76.516819 ], [ -100.195312, 76.516819 ], [ -100.195312, 76.598545 ], [ -99.843750, 76.598545 ], [ -99.843750, 76.679785 ], [ -99.492188, 76.679785 ] ] ], [ [ [ -116.367188, 77.542096 ], [ -116.367188, 76.760541 ], [ -116.718750, 76.760541 ], [ -116.718750, 76.598545 ], [ -117.070312, 76.598545 ], [ -117.070312, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.434604 ], [ -118.476562, 76.434604 ], [ -118.476562, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.268695 ], [ -119.179688, 76.268695 ], [ -119.179688, 76.100796 ], [ -119.531250, 76.100796 ], [ -119.531250, 76.016094 ], [ -120.585938, 76.016094 ], [ -120.585938, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 76.016094 ], [ -122.695312, 76.016094 ], [ -122.695312, 76.184995 ], [ -122.343750, 76.184995 ], [ -122.343750, 76.351896 ], [ -121.992188, 76.351896 ], [ -121.992188, 76.516819 ], [ -121.640625, 76.516819 ], [ -121.640625, 76.679785 ], [ -121.289062, 76.679785 ], [ -121.289062, 76.840816 ], [ -120.937500, 76.840816 ], [ -120.937500, 76.999935 ], [ -120.585938, 76.999935 ], [ -120.585938, 77.078784 ], [ -120.234375, 77.078784 ], [ -120.234375, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.312520 ], [ -119.531250, 77.312520 ], [ -119.531250, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.542096 ], [ -118.476562, 77.542096 ], [ -118.476562, 77.466028 ], [ -117.070312, 77.466028 ], [ -117.070312, 77.542096 ], [ -116.367188, 77.542096 ] ] ], [ [ [ -88.242188, 80.647035 ], [ -88.593750, 80.647035 ], [ -88.593750, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.928426 ], [ -89.648438, 80.928426 ], [ -89.648438, 81.038617 ], [ -90.000000, 81.038617 ], [ -90.000000, 81.147481 ], [ -90.351562, 81.147481 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.873641 ], [ -91.406250, 81.873641 ], [ -91.406250, 81.923186 ], [ -91.054688, 81.923186 ], [ -91.054688, 81.972431 ], [ -90.351562, 81.972431 ], [ -90.351562, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.070028 ], [ -89.296875, 82.070028 ], [ -89.296875, 82.118384 ], [ -88.242188, 82.118384 ], [ -88.242188, 80.647035 ] ] ], [ [ [ -105.117188, 79.302640 ], [ -105.117188, 79.237185 ], [ -104.062500, 79.237185 ], [ -104.062500, 79.171335 ], [ -103.359375, 79.171335 ], [ -103.359375, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.971386 ], [ -101.953125, 78.971386 ], [ -101.953125, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.836065 ], [ -101.250000, 78.836065 ], [ -101.250000, 78.767792 ], [ -100.898438, 78.767792 ], [ -100.898438, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.420193 ], [ -100.195312, 78.420193 ], [ -100.195312, 78.134493 ], [ -99.843750, 78.134493 ], [ -99.843750, 77.915669 ], [ -100.898438, 77.915669 ], [ -100.898438, 77.989049 ], [ -101.601562, 77.989049 ], [ -101.601562, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.134493 ], [ -102.304688, 78.134493 ], [ -102.304688, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.278201 ], [ -103.007812, 78.278201 ], [ -103.007812, 78.349411 ], [ -104.765625, 78.349411 ], [ -104.765625, 78.490552 ], [ -104.414062, 78.490552 ], [ -104.414062, 78.630006 ], [ -104.062500, 78.630006 ], [ -104.062500, 78.699106 ], [ -104.414062, 78.699106 ], [ -104.414062, 78.767792 ], [ -105.117188, 78.767792 ], [ -105.117188, 78.836065 ], [ -105.468750, 78.836065 ], [ -105.468750, 79.302640 ], [ -105.117188, 79.302640 ] ] ], [ [ [ -88.242188, 77.078784 ], [ -88.242188, 76.434604 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -89.296875, 76.920614 ], [ -89.296875, 76.999935 ], [ -88.593750, 76.999935 ], [ -88.593750, 77.078784 ], [ -88.242188, 77.078784 ] ] ], [ [ [ -111.093750, 78.134493 ], [ -111.093750, 78.061989 ], [ -110.390625, 78.061989 ], [ -110.390625, 77.989049 ], [ -109.687500, 77.989049 ], [ -109.687500, 77.841848 ], [ -110.039062, 77.841848 ], [ -110.039062, 77.617709 ], [ -110.742188, 77.617709 ], [ -110.742188, 77.542096 ], [ -111.093750, 77.542096 ], [ -111.093750, 77.466028 ], [ -111.796875, 77.466028 ], [ -111.796875, 77.389504 ], [ -112.500000, 77.389504 ], [ -112.500000, 77.466028 ], [ -112.851562, 77.466028 ], [ -112.851562, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.841848 ], [ -113.203125, 77.841848 ], [ -113.203125, 77.989049 ], [ -112.851562, 77.989049 ], [ -112.851562, 78.061989 ], [ -111.796875, 78.061989 ], [ -111.796875, 78.134493 ], [ -111.093750, 78.134493 ] ] ], [ [ [ -94.570312, 77.841848 ], [ -94.570312, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.617709 ], [ -93.867188, 77.617709 ], [ -93.867188, 77.466028 ], [ -95.625000, 77.466028 ], [ -95.625000, 77.542096 ], [ -96.328125, 77.542096 ], [ -96.328125, 77.841848 ], [ -94.570312, 77.841848 ] ] ], [ [ [ -98.437500, 78.903929 ], [ -98.437500, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.767792 ], [ -96.679688, 78.767792 ], [ -96.679688, 78.699106 ], [ -96.328125, 78.699106 ], [ -96.328125, 78.560488 ], [ -95.976562, 78.560488 ], [ -95.976562, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.206563 ], [ -95.976562, 78.206563 ], [ -95.976562, 77.989049 ], [ -96.328125, 77.989049 ], [ -96.328125, 77.915669 ], [ -97.031250, 77.915669 ], [ -97.031250, 77.841848 ], [ -97.734375, 77.841848 ], [ -97.734375, 77.989049 ], [ -98.085938, 77.989049 ], [ -98.085938, 78.278201 ], [ -98.437500, 78.278201 ], [ -98.437500, 78.699106 ], [ -98.789062, 78.699106 ], [ -98.789062, 78.903929 ], [ -98.437500, 78.903929 ] ] ], [ [ [ -111.093750, 78.836065 ], [ -111.093750, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.699106 ], [ -110.039062, 78.699106 ], [ -110.039062, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.420193 ], [ -112.500000, 78.420193 ], [ -112.500000, 78.560488 ], [ -112.148438, 78.560488 ], [ -112.148438, 78.699106 ], [ -111.796875, 78.699106 ], [ -111.796875, 78.767792 ], [ -111.445312, 78.767792 ], [ -111.445312, 78.836065 ], [ -111.093750, 78.836065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.921875, 71.965388 ], [ -94.921875, 71.856229 ], [ -94.218750, 71.856229 ], [ -94.218750, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.413177 ], [ -93.164062, 71.413177 ], [ -93.164062, 71.187754 ], [ -92.812500, 71.187754 ], [ -92.812500, 70.959697 ], [ -92.460938, 70.959697 ], [ -92.460938, 70.612614 ], [ -92.109375, 70.612614 ], [ -92.109375, 70.377854 ], [ -91.757812, 70.377854 ], [ -91.757812, 70.140364 ], [ -92.109375, 70.140364 ], [ -92.109375, 69.900118 ], [ -92.460938, 69.900118 ], [ -92.460938, 69.778952 ], [ -92.109375, 69.778952 ], [ -92.109375, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 68.007571 ], [ -88.593750, 68.007571 ], [ -88.593750, 67.875541 ], [ -88.242188, 67.875541 ], [ -88.242188, 65.802776 ], [ -141.328125, 65.802776 ], [ -141.328125, 69.778952 ], [ -140.976562, 69.778952 ], [ -140.976562, 69.657086 ], [ -139.921875, 69.657086 ], [ -139.921875, 69.534518 ], [ -139.218750, 69.534518 ], [ -139.218750, 69.411242 ], [ -138.867188, 69.411242 ], [ -138.867188, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.162558 ], [ -138.164062, 69.162558 ], [ -138.164062, 69.037142 ], [ -137.460938, 69.037142 ], [ -137.460938, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.162558 ], [ -136.054688, 69.162558 ], [ -136.054688, 69.287257 ], [ -135.703125, 69.287257 ], [ -135.703125, 69.411242 ], [ -135.351562, 69.411242 ], [ -135.351562, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.657086 ], [ -134.296875, 69.657086 ], [ -134.296875, 69.534518 ], [ -132.890625, 69.534518 ], [ -132.890625, 69.657086 ], [ -132.539062, 69.657086 ], [ -132.539062, 69.778952 ], [ -131.835938, 69.778952 ], [ -131.835938, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 70.020587 ], [ -130.781250, 70.020587 ], [ -130.781250, 70.140364 ], [ -129.726562, 70.140364 ], [ -129.726562, 69.900118 ], [ -129.375000, 69.900118 ], [ -129.375000, 69.778952 ], [ -129.023438, 69.778952 ], [ -129.023438, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 70.259452 ], [ -128.320312, 70.259452 ], [ -128.320312, 70.377854 ], [ -127.617188, 70.377854 ], [ -127.617188, 70.259452 ], [ -127.265625, 70.259452 ], [ -127.265625, 70.020587 ], [ -126.914062, 70.020587 ], [ -126.914062, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.534518 ], [ -125.507812, 69.534518 ], [ -125.507812, 69.778952 ], [ -125.156250, 69.778952 ], [ -125.156250, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 70.140364 ], [ -124.453125, 70.140364 ], [ -124.453125, 69.411242 ], [ -124.101562, 69.411242 ], [ -124.101562, 69.534518 ], [ -123.398438, 69.534518 ], [ -123.398438, 69.657086 ], [ -123.046875, 69.657086 ], [ -123.046875, 69.778952 ], [ -122.695312, 69.778952 ], [ -122.695312, 69.900118 ], [ -121.640625, 69.900118 ], [ -121.640625, 69.778952 ], [ -121.289062, 69.778952 ], [ -121.289062, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.534518 ], [ -120.585938, 69.534518 ], [ -120.585938, 69.411242 ], [ -119.882812, 69.411242 ], [ -119.882812, 69.287257 ], [ -119.179688, 69.287257 ], [ -119.179688, 69.162558 ], [ -118.476562, 69.162558 ], [ -118.476562, 69.037142 ], [ -117.421875, 69.037142 ], [ -117.421875, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.138852 ], [ -114.960938, 68.138852 ], [ -114.960938, 67.875541 ], [ -114.257812, 67.875541 ], [ -114.257812, 67.742759 ], [ -112.148438, 67.742759 ], [ -112.148438, 67.875541 ], [ -110.390625, 67.875541 ], [ -110.390625, 68.007571 ], [ -110.039062, 68.007571 ], [ -110.039062, 67.875541 ], [ -109.687500, 67.875541 ], [ -109.687500, 67.742759 ], [ -109.335938, 67.742759 ], [ -109.335938, 67.474922 ], [ -108.632812, 67.474922 ], [ -108.632812, 67.742759 ], [ -108.281250, 67.742759 ], [ -108.281250, 67.875541 ], [ -107.929688, 67.875541 ], [ -107.929688, 68.007571 ], [ -108.281250, 68.007571 ], [ -108.281250, 68.138852 ], [ -108.632812, 68.138852 ], [ -108.632812, 68.269387 ], [ -108.984375, 68.269387 ], [ -108.984375, 68.399180 ], [ -108.632812, 68.399180 ], [ -108.632812, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.656555 ], [ -107.578125, 68.656555 ], [ -107.578125, 68.784144 ], [ -106.523438, 68.784144 ], [ -106.523438, 68.911005 ], [ -106.171875, 68.911005 ], [ -106.171875, 68.784144 ], [ -105.820312, 68.784144 ], [ -105.820312, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.528235 ], [ -105.117188, 68.528235 ], [ -105.117188, 68.399180 ], [ -104.765625, 68.399180 ], [ -104.765625, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 68.007571 ], [ -102.656250, 68.007571 ], [ -102.656250, 67.875541 ], [ -101.953125, 67.875541 ], [ -101.953125, 67.742759 ], [ -100.546875, 67.742759 ], [ -100.546875, 67.875541 ], [ -98.789062, 67.875541 ], [ -98.789062, 68.528235 ], [ -98.085938, 68.528235 ], [ -98.085938, 68.656555 ], [ -97.734375, 68.656555 ], [ -97.734375, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.269387 ], [ -96.328125, 68.269387 ], [ -96.328125, 67.474922 ], [ -95.976562, 67.474922 ], [ -95.976562, 67.875541 ], [ -95.625000, 67.875541 ], [ -95.625000, 68.138852 ], [ -94.921875, 68.138852 ], [ -94.921875, 68.656555 ], [ -94.570312, 68.656555 ], [ -94.570312, 69.162558 ], [ -94.921875, 69.162558 ], [ -94.921875, 69.411242 ], [ -95.273438, 69.411242 ], [ -95.273438, 69.657086 ], [ -95.625000, 69.657086 ], [ -95.625000, 69.778952 ], [ -95.976562, 69.778952 ], [ -95.976562, 69.900118 ], [ -96.328125, 69.900118 ], [ -96.328125, 70.020587 ], [ -96.679688, 70.020587 ], [ -96.679688, 71.300793 ], [ -96.328125, 71.300793 ], [ -96.328125, 71.524909 ], [ -95.976562, 71.524909 ], [ -95.976562, 71.635993 ], [ -95.625000, 71.635993 ], [ -95.625000, 71.856229 ], [ -95.273438, 71.856229 ], [ -95.273438, 71.965388 ], [ -94.921875, 71.965388 ] ] ], [ [ [ -88.242188, 73.627789 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.728979 ], [ -89.648438, 70.728979 ], [ -89.648438, 70.844673 ], [ -89.296875, 70.844673 ], [ -89.296875, 71.074056 ], [ -88.945312, 71.074056 ], [ -88.945312, 71.187754 ], [ -88.593750, 71.187754 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 71.746432 ], [ -90.351562, 71.746432 ], [ -90.351562, 72.501722 ], [ -90.000000, 72.501722 ], [ -90.000000, 72.919635 ], [ -89.648438, 72.919635 ], [ -89.648438, 73.226700 ], [ -89.296875, 73.226700 ], [ -89.296875, 73.428424 ], [ -88.945312, 73.428424 ], [ -88.945312, 73.528399 ], [ -88.593750, 73.528399 ], [ -88.593750, 73.627789 ], [ -88.242188, 73.627789 ] ] ], [ [ [ -106.875000, 73.226700 ], [ -106.875000, 73.428424 ], [ -107.226562, 73.428424 ], [ -107.226562, 73.528399 ], [ -106.875000, 73.528399 ], [ -106.875000, 73.627789 ], [ -105.820312, 73.627789 ], [ -105.820312, 73.726595 ], [ -105.468750, 73.726595 ], [ -105.468750, 73.627789 ], [ -105.117188, 73.627789 ], [ -105.117188, 73.428424 ], [ -104.765625, 73.428424 ], [ -104.765625, 73.226700 ], [ -105.117188, 73.226700 ], [ -105.117188, 72.919635 ], [ -105.468750, 72.919635 ], [ -105.468750, 72.816074 ], [ -105.820312, 72.816074 ], [ -105.820312, 72.711903 ], [ -105.468750, 72.711903 ], [ -105.468750, 72.181804 ], [ -105.117188, 72.181804 ], [ -105.117188, 71.413177 ], [ -104.765625, 71.413177 ], [ -104.765625, 70.959697 ], [ -104.414062, 70.959697 ], [ -104.414062, 70.844673 ], [ -103.710938, 70.844673 ], [ -103.710938, 70.728979 ], [ -103.359375, 70.728979 ], [ -103.359375, 70.612614 ], [ -103.007812, 70.612614 ], [ -103.007812, 70.495574 ], [ -102.656250, 70.495574 ], [ -102.656250, 70.377854 ], [ -101.953125, 70.377854 ], [ -101.953125, 70.259452 ], [ -101.601562, 70.259452 ], [ -101.601562, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 69.657086 ], [ -101.953125, 69.657086 ], [ -101.953125, 69.534518 ], [ -103.007812, 69.534518 ], [ -103.007812, 69.411242 ], [ -102.656250, 69.411242 ], [ -102.656250, 69.162558 ], [ -102.304688, 69.162558 ], [ -102.304688, 68.911005 ], [ -102.656250, 68.911005 ], [ -102.656250, 68.784144 ], [ -103.710938, 68.784144 ], [ -103.710938, 68.911005 ], [ -104.765625, 68.911005 ], [ -104.765625, 69.037142 ], [ -105.468750, 69.037142 ], [ -105.468750, 69.162558 ], [ -106.171875, 69.162558 ], [ -106.171875, 69.287257 ], [ -106.523438, 69.287257 ], [ -106.523438, 69.162558 ], [ -107.226562, 69.162558 ], [ -107.226562, 69.037142 ], [ -107.929688, 69.037142 ], [ -107.929688, 68.911005 ], [ -108.632812, 68.911005 ], [ -108.632812, 68.784144 ], [ -110.390625, 68.784144 ], [ -110.390625, 68.656555 ], [ -113.554688, 68.656555 ], [ -113.554688, 68.784144 ], [ -113.906250, 68.784144 ], [ -113.906250, 69.037142 ], [ -114.609375, 69.037142 ], [ -114.609375, 69.162558 ], [ -115.312500, 69.162558 ], [ -115.312500, 69.287257 ], [ -116.367188, 69.287257 ], [ -116.367188, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.657086 ], [ -117.070312, 69.657086 ], [ -117.070312, 69.900118 ], [ -117.421875, 69.900118 ], [ -117.421875, 70.020587 ], [ -116.718750, 70.020587 ], [ -116.718750, 70.140364 ], [ -115.664062, 70.140364 ], [ -115.664062, 70.259452 ], [ -112.851562, 70.259452 ], [ -112.851562, 70.377854 ], [ -113.203125, 70.377854 ], [ -113.203125, 70.495574 ], [ -114.257812, 70.495574 ], [ -114.257812, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.728979 ], [ -118.476562, 70.728979 ], [ -118.476562, 70.959697 ], [ -118.125000, 70.959697 ], [ -118.125000, 71.074056 ], [ -117.421875, 71.074056 ], [ -117.421875, 71.187754 ], [ -117.070312, 71.187754 ], [ -117.070312, 71.300793 ], [ -118.125000, 71.300793 ], [ -118.125000, 71.413177 ], [ -118.828125, 71.413177 ], [ -118.828125, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.746432 ], [ -119.179688, 71.746432 ], [ -119.179688, 72.181804 ], [ -118.828125, 72.181804 ], [ -118.828125, 72.395706 ], [ -118.476562, 72.395706 ], [ -118.476562, 72.607120 ], [ -118.125000, 72.607120 ], [ -118.125000, 72.711903 ], [ -117.773438, 72.711903 ], [ -117.773438, 72.816074 ], [ -117.070312, 72.816074 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 73.022592 ], [ -116.367188, 73.022592 ], [ -116.367188, 73.124945 ], [ -115.664062, 73.124945 ], [ -115.664062, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.124945 ], [ -114.257812, 73.124945 ], [ -114.257812, 73.022592 ], [ -114.609375, 73.022592 ], [ -114.609375, 72.816074 ], [ -114.960938, 72.816074 ], [ -114.960938, 72.711903 ], [ -114.257812, 72.711903 ], [ -114.257812, 72.816074 ], [ -113.554688, 72.816074 ], [ -113.554688, 72.919635 ], [ -112.851562, 72.919635 ], [ -112.851562, 73.022592 ], [ -112.500000, 73.022592 ], [ -112.500000, 72.919635 ], [ -112.148438, 72.919635 ], [ -112.148438, 72.816074 ], [ -111.796875, 72.816074 ], [ -111.796875, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -110.742188, 72.501722 ], [ -110.742188, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.919635 ], [ -109.687500, 72.919635 ], [ -109.687500, 72.711903 ], [ -109.335938, 72.711903 ], [ -109.335938, 72.501722 ], [ -108.984375, 72.501722 ], [ -108.984375, 72.181804 ], [ -108.632812, 72.181804 ], [ -108.632812, 71.856229 ], [ -107.929688, 71.856229 ], [ -107.929688, 72.289067 ], [ -108.281250, 72.289067 ], [ -108.281250, 72.816074 ], [ -108.632812, 72.816074 ], [ -108.632812, 73.124945 ], [ -108.281250, 73.124945 ], [ -108.281250, 73.226700 ], [ -106.875000, 73.226700 ] ], [ [ -116.718750, 71.413177 ], [ -116.718750, 71.300793 ], [ -116.367188, 71.300793 ], [ -116.367188, 71.413177 ], [ -116.718750, 71.413177 ] ], [ [ -106.171875, 73.022592 ], [ -106.171875, 72.919635 ], [ -105.820312, 72.919635 ], [ -105.820312, 73.022592 ], [ -106.171875, 73.022592 ] ], [ [ -106.523438, 73.124945 ], [ -106.523438, 73.022592 ], [ -106.171875, 73.022592 ], [ -106.171875, 73.124945 ], [ -106.523438, 73.124945 ] ], [ [ -106.875000, 73.226700 ], [ -106.875000, 73.124945 ], [ -106.523438, 73.124945 ], [ -106.523438, 73.226700 ], [ -106.875000, 73.226700 ] ] ], [ [ [ -98.085938, 70.140364 ], [ -98.085938, 70.020587 ], [ -97.734375, 70.020587 ], [ -97.734375, 69.900118 ], [ -97.382812, 69.900118 ], [ -97.382812, 69.778952 ], [ -96.679688, 69.778952 ], [ -96.679688, 69.657086 ], [ -96.328125, 69.657086 ], [ -96.328125, 69.287257 ], [ -95.976562, 69.287257 ], [ -95.976562, 68.911005 ], [ -96.328125, 68.911005 ], [ -96.328125, 68.784144 ], [ -96.679688, 68.784144 ], [ -96.679688, 68.911005 ], [ -97.382812, 68.911005 ], [ -97.382812, 69.037142 ], [ -98.789062, 69.037142 ], [ -98.789062, 69.162558 ], [ -99.492188, 69.162558 ], [ -99.492188, 69.287257 ], [ -99.843750, 69.287257 ], [ -99.843750, 69.411242 ], [ -99.492188, 69.411242 ], [ -99.492188, 69.657086 ], [ -99.140625, 69.657086 ], [ -99.140625, 69.900118 ], [ -98.789062, 69.900118 ], [ -98.789062, 70.140364 ], [ -98.085938, 70.140364 ] ] ], [ [ [ -121.640625, 74.496413 ], [ -121.640625, 74.402163 ], [ -120.937500, 74.402163 ], [ -120.937500, 74.307353 ], [ -119.179688, 74.307353 ], [ -119.179688, 74.211983 ], [ -117.773438, 74.211983 ], [ -117.773438, 74.116047 ], [ -117.421875, 74.116047 ], [ -117.421875, 74.019543 ], [ -117.070312, 74.019543 ], [ -117.070312, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.726595 ], [ -116.015625, 73.726595 ], [ -116.015625, 73.528399 ], [ -115.664062, 73.528399 ], [ -115.664062, 73.428424 ], [ -116.015625, 73.428424 ], [ -116.015625, 73.327858 ], [ -116.718750, 73.327858 ], [ -116.718750, 73.226700 ], [ -117.070312, 73.226700 ], [ -117.070312, 73.124945 ], [ -117.421875, 73.124945 ], [ -117.421875, 73.022592 ], [ -117.773438, 73.022592 ], [ -117.773438, 72.919635 ], [ -118.476562, 72.919635 ], [ -118.476562, 72.816074 ], [ -118.828125, 72.816074 ], [ -118.828125, 72.711903 ], [ -119.179688, 72.711903 ], [ -119.179688, 72.607120 ], [ -119.531250, 72.607120 ], [ -119.531250, 72.395706 ], [ -119.882812, 72.395706 ], [ -119.882812, 72.181804 ], [ -120.234375, 72.181804 ], [ -120.234375, 71.965388 ], [ -120.585938, 71.965388 ], [ -120.585938, 71.300793 ], [ -121.289062, 71.300793 ], [ -121.289062, 71.187754 ], [ -121.992188, 71.187754 ], [ -121.992188, 71.074056 ], [ -122.695312, 71.074056 ], [ -122.695312, 70.959697 ], [ -123.398438, 70.959697 ], [ -123.398438, 71.187754 ], [ -123.750000, 71.187754 ], [ -123.750000, 71.413177 ], [ -124.101562, 71.413177 ], [ -124.101562, 71.524909 ], [ -124.804688, 71.524909 ], [ -124.804688, 71.635993 ], [ -125.156250, 71.635993 ], [ -125.156250, 71.746432 ], [ -125.507812, 71.746432 ], [ -125.507812, 71.856229 ], [ -126.210938, 71.856229 ], [ -126.210938, 72.073911 ], [ -125.859375, 72.073911 ], [ -125.859375, 72.289067 ], [ -125.507812, 72.289067 ], [ -125.507812, 72.501722 ], [ -125.156250, 72.501722 ], [ -125.156250, 72.816074 ], [ -124.804688, 72.816074 ], [ -124.804688, 73.124945 ], [ -124.453125, 73.124945 ], [ -124.453125, 73.528399 ], [ -124.101562, 73.528399 ], [ -124.101562, 73.824820 ], [ -124.453125, 73.824820 ], [ -124.453125, 74.019543 ], [ -124.804688, 74.019543 ], [ -124.804688, 74.211983 ], [ -125.156250, 74.211983 ], [ -125.156250, 74.307353 ], [ -124.101562, 74.307353 ], [ -124.101562, 74.402163 ], [ -122.343750, 74.402163 ], [ -122.343750, 74.496413 ], [ -121.640625, 74.496413 ] ] ], [ [ [ -88.242188, 80.415707 ], [ -88.242188, 78.560488 ], [ -88.593750, 78.560488 ], [ -88.593750, 78.490552 ], [ -88.945312, 78.490552 ], [ -88.945312, 78.349411 ], [ -90.000000, 78.349411 ], [ -90.000000, 78.278201 ], [ -92.460938, 78.278201 ], [ -92.460938, 78.349411 ], [ -93.164062, 78.349411 ], [ -93.164062, 78.420193 ], [ -93.515625, 78.420193 ], [ -93.515625, 78.560488 ], [ -93.867188, 78.560488 ], [ -93.867188, 78.699106 ], [ -94.218750, 78.699106 ], [ -94.218750, 79.171335 ], [ -93.867188, 79.171335 ], [ -93.867188, 79.302640 ], [ -93.515625, 79.302640 ], [ -93.515625, 79.367701 ], [ -93.164062, 79.367701 ], [ -93.164062, 79.432371 ], [ -95.625000, 79.432371 ], [ -95.625000, 79.560546 ], [ -95.976562, 79.560546 ], [ -95.976562, 79.687184 ], [ -96.328125, 79.687184 ], [ -96.328125, 79.812302 ], [ -96.679688, 79.812302 ], [ -96.679688, 80.058050 ], [ -97.031250, 80.058050 ], [ -97.031250, 80.297927 ], [ -96.679688, 80.297927 ], [ -96.679688, 80.532071 ], [ -96.328125, 80.532071 ], [ -96.328125, 80.703997 ], [ -95.976562, 80.703997 ], [ -95.976562, 80.816891 ], [ -95.625000, 80.816891 ], [ -95.625000, 80.928426 ], [ -94.921875, 80.928426 ], [ -94.921875, 80.983688 ], [ -94.570312, 80.983688 ], [ -94.570312, 81.093214 ], [ -94.921875, 81.093214 ], [ -94.921875, 81.255032 ], [ -93.515625, 81.255032 ], [ -93.515625, 81.308321 ], [ -92.460938, 81.308321 ], [ -92.460938, 81.201420 ], [ -92.109375, 81.201420 ], [ -92.109375, 81.038617 ], [ -91.757812, 81.038617 ], [ -91.757812, 80.816891 ], [ -91.406250, 80.816891 ], [ -91.406250, 80.703997 ], [ -91.054688, 80.703997 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.242188, 80.415707 ] ] ], [ [ [ -97.382812, 73.824820 ], [ -97.382812, 73.327858 ], [ -97.734375, 73.327858 ], [ -97.734375, 73.124945 ], [ -98.085938, 73.124945 ], [ -98.085938, 72.919635 ], [ -97.734375, 72.919635 ], [ -97.734375, 72.816074 ], [ -97.382812, 72.816074 ], [ -97.382812, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 72.181804 ], [ -97.031250, 72.181804 ], [ -97.031250, 71.635993 ], [ -97.382812, 71.635993 ], [ -97.382812, 71.524909 ], [ -97.734375, 71.524909 ], [ -97.734375, 71.413177 ], [ -98.085938, 71.413177 ], [ -98.085938, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.413177 ], [ -99.843750, 71.413177 ], [ -99.843750, 71.635993 ], [ -100.195312, 71.635993 ], [ -100.195312, 71.746432 ], [ -100.546875, 71.746432 ], [ -100.546875, 71.856229 ], [ -100.898438, 71.856229 ], [ -100.898438, 71.965388 ], [ -101.250000, 71.965388 ], [ -101.250000, 72.181804 ], [ -101.601562, 72.181804 ], [ -101.601562, 72.289067 ], [ -101.953125, 72.289067 ], [ -101.953125, 72.395706 ], [ -102.304688, 72.395706 ], [ -102.304688, 72.501722 ], [ -102.656250, 72.501722 ], [ -102.656250, 72.919635 ], [ -102.304688, 72.919635 ], [ -102.304688, 72.816074 ], [ -101.250000, 72.816074 ], [ -101.250000, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.898438, 72.816074 ], [ -100.898438, 73.022592 ], [ -101.250000, 73.022592 ], [ -101.250000, 73.226700 ], [ -101.601562, 73.226700 ], [ -101.601562, 73.428424 ], [ -101.250000, 73.428424 ], [ -101.250000, 73.627789 ], [ -100.898438, 73.627789 ], [ -100.898438, 73.824820 ], [ -99.843750, 73.824820 ], [ -99.843750, 73.726595 ], [ -98.085938, 73.726595 ], [ -98.085938, 73.824820 ], [ -97.382812, 73.824820 ] ] ], [ [ [ -93.867188, 74.211983 ], [ -93.867188, 74.116047 ], [ -92.109375, 74.116047 ], [ -92.109375, 74.019543 ], [ -91.406250, 74.019543 ], [ -91.406250, 73.922469 ], [ -90.703125, 73.922469 ], [ -90.703125, 73.726595 ], [ -91.054688, 73.726595 ], [ -91.054688, 73.528399 ], [ -91.406250, 73.528399 ], [ -91.406250, 73.327858 ], [ -91.757812, 73.327858 ], [ -91.757812, 73.124945 ], [ -92.109375, 73.124945 ], [ -92.109375, 72.919635 ], [ -92.812500, 72.919635 ], [ -92.812500, 72.816074 ], [ -93.515625, 72.816074 ], [ -93.515625, 72.607120 ], [ -93.867188, 72.607120 ], [ -93.867188, 72.395706 ], [ -94.218750, 72.395706 ], [ -94.218750, 72.181804 ], [ -94.570312, 72.181804 ], [ -94.570312, 72.073911 ], [ -95.625000, 72.073911 ], [ -95.625000, 72.289067 ], [ -95.976562, 72.289067 ], [ -95.976562, 72.711903 ], [ -96.328125, 72.711903 ], [ -96.328125, 73.627789 ], [ -95.976562, 73.627789 ], [ -95.976562, 73.824820 ], [ -95.625000, 73.824820 ], [ -95.625000, 73.922469 ], [ -95.273438, 73.922469 ], [ -95.273438, 74.019543 ], [ -94.921875, 74.019543 ], [ -94.921875, 74.116047 ], [ -94.570312, 74.116047 ], [ -94.570312, 74.211983 ], [ -93.867188, 74.211983 ] ] ], [ [ [ -108.984375, 76.760541 ], [ -108.984375, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.434604 ], [ -108.281250, 76.434604 ], [ -108.281250, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.930885 ], [ -107.226562, 75.930885 ], [ -107.226562, 76.016094 ], [ -106.171875, 76.016094 ], [ -106.171875, 75.758940 ], [ -105.820312, 75.758940 ], [ -105.820312, 75.320025 ], [ -106.171875, 75.320025 ], [ -106.171875, 75.140778 ], [ -106.523438, 75.140778 ], [ -106.523438, 75.050354 ], [ -107.226562, 75.050354 ], [ -107.226562, 74.959392 ], [ -108.984375, 74.959392 ], [ -108.984375, 74.867889 ], [ -110.039062, 74.867889 ], [ -110.039062, 74.775843 ], [ -110.742188, 74.775843 ], [ -110.742188, 74.683250 ], [ -111.445312, 74.683250 ], [ -111.445312, 74.590108 ], [ -112.148438, 74.590108 ], [ -112.148438, 74.496413 ], [ -112.851562, 74.496413 ], [ -112.851562, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.775843 ], [ -113.554688, 74.775843 ], [ -113.554688, 74.867889 ], [ -113.203125, 74.867889 ], [ -113.203125, 74.959392 ], [ -112.500000, 74.959392 ], [ -112.500000, 75.050354 ], [ -112.148438, 75.050354 ], [ -112.148438, 75.140778 ], [ -111.796875, 75.140778 ], [ -111.796875, 75.230667 ], [ -112.851562, 75.230667 ], [ -112.851562, 75.140778 ], [ -114.960938, 75.140778 ], [ -114.960938, 75.050354 ], [ -117.070312, 75.050354 ], [ -117.070312, 75.140778 ], [ -117.773438, 75.140778 ], [ -117.773438, 75.320025 ], [ -117.421875, 75.320025 ], [ -117.421875, 75.584937 ], [ -117.070312, 75.584937 ], [ -117.070312, 75.845169 ], [ -116.718750, 75.845169 ], [ -116.718750, 76.100796 ], [ -116.367188, 76.100796 ], [ -116.367188, 76.268695 ], [ -116.015625, 76.268695 ], [ -116.015625, 76.434604 ], [ -114.960938, 76.434604 ], [ -114.960938, 76.351896 ], [ -114.257812, 76.351896 ], [ -114.257812, 76.268695 ], [ -113.554688, 76.268695 ], [ -113.554688, 76.184995 ], [ -112.851562, 76.184995 ], [ -112.851562, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 75.930885 ], [ -112.148438, 75.930885 ], [ -112.148438, 75.845169 ], [ -111.796875, 75.845169 ], [ -111.796875, 75.758940 ], [ -111.445312, 75.758940 ], [ -111.445312, 75.584937 ], [ -110.390625, 75.584937 ], [ -110.390625, 75.497157 ], [ -109.335938, 75.497157 ], [ -109.335938, 75.584937 ], [ -109.687500, 75.584937 ], [ -109.687500, 75.845169 ], [ -110.039062, 75.845169 ], [ -110.039062, 76.016094 ], [ -110.390625, 76.016094 ], [ -110.390625, 76.268695 ], [ -110.742188, 76.268695 ], [ -110.742188, 76.434604 ], [ -110.390625, 76.434604 ], [ -110.390625, 76.598545 ], [ -110.039062, 76.598545 ], [ -110.039062, 76.760541 ], [ -108.984375, 76.760541 ] ] ], [ [ [ -96.328125, 77.235074 ], [ -96.328125, 77.157163 ], [ -94.921875, 77.157163 ], [ -94.921875, 77.078784 ], [ -94.570312, 77.078784 ], [ -94.570312, 76.999935 ], [ -94.218750, 76.999935 ], [ -94.218750, 76.840816 ], [ -91.757812, 76.840816 ], [ -91.757812, 76.760541 ], [ -91.406250, 76.760541 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.016094 ], [ -90.351562, 76.016094 ], [ -90.351562, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -88.945312, 75.672197 ], [ -88.945312, 75.584937 ], [ -88.242188, 75.584937 ], [ -88.242188, 74.402163 ], [ -88.945312, 74.402163 ], [ -88.945312, 74.496413 ], [ -89.648438, 74.496413 ], [ -89.648438, 74.590108 ], [ -90.703125, 74.590108 ], [ -90.703125, 74.683250 ], [ -91.406250, 74.683250 ], [ -91.406250, 74.775843 ], [ -92.109375, 74.775843 ], [ -92.109375, 74.867889 ], [ -92.460938, 74.867889 ], [ -92.460938, 75.140778 ], [ -92.812500, 75.140778 ], [ -92.812500, 75.672197 ], [ -93.164062, 75.672197 ], [ -93.164062, 75.930885 ], [ -93.515625, 75.930885 ], [ -93.515625, 76.100796 ], [ -93.867188, 76.100796 ], [ -93.867188, 76.268695 ], [ -94.218750, 76.268695 ], [ -94.218750, 76.351896 ], [ -94.921875, 76.351896 ], [ -94.921875, 76.434604 ], [ -95.625000, 76.434604 ], [ -95.625000, 76.516819 ], [ -96.328125, 76.516819 ], [ -96.328125, 76.598545 ], [ -97.031250, 76.598545 ], [ -97.031250, 76.679785 ], [ -97.382812, 76.679785 ], [ -97.382812, 76.999935 ], [ -97.031250, 76.999935 ], [ -97.031250, 77.235074 ], [ -96.328125, 77.235074 ] ] ], [ [ [ -116.367188, 77.617709 ], [ -116.367188, 76.840816 ], [ -116.718750, 76.840816 ], [ -116.718750, 76.760541 ], [ -117.070312, 76.760541 ], [ -117.070312, 76.598545 ], [ -117.421875, 76.598545 ], [ -117.421875, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.434604 ], [ -118.476562, 76.434604 ], [ -118.476562, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.268695 ], [ -119.531250, 76.268695 ], [ -119.531250, 76.184995 ], [ -119.882812, 76.184995 ], [ -119.882812, 76.100796 ], [ -120.234375, 76.100796 ], [ -120.234375, 76.016094 ], [ -120.937500, 76.016094 ], [ -120.937500, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 76.016094 ], [ -122.695312, 76.016094 ], [ -122.695312, 76.100796 ], [ -123.046875, 76.100796 ], [ -123.046875, 76.184995 ], [ -122.695312, 76.184995 ], [ -122.695312, 76.351896 ], [ -122.343750, 76.351896 ], [ -122.343750, 76.516819 ], [ -121.992188, 76.516819 ], [ -121.992188, 76.679785 ], [ -121.640625, 76.679785 ], [ -121.640625, 76.840816 ], [ -121.289062, 76.840816 ], [ -121.289062, 76.920614 ], [ -120.937500, 76.920614 ], [ -120.937500, 77.078784 ], [ -120.585938, 77.078784 ], [ -120.585938, 77.157163 ], [ -120.234375, 77.157163 ], [ -120.234375, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.389504 ], [ -119.531250, 77.389504 ], [ -119.531250, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.542096 ], [ -117.070312, 77.542096 ], [ -117.070312, 77.617709 ], [ -116.367188, 77.617709 ] ] ], [ [ [ -94.570312, 75.584937 ], [ -94.570312, 75.408854 ], [ -94.218750, 75.408854 ], [ -94.218750, 75.140778 ], [ -93.867188, 75.140778 ], [ -93.867188, 74.867889 ], [ -94.218750, 74.867889 ], [ -94.218750, 74.683250 ], [ -95.976562, 74.683250 ], [ -95.976562, 74.775843 ], [ -96.679688, 74.775843 ], [ -96.679688, 74.867889 ], [ -97.031250, 74.867889 ], [ -97.031250, 75.050354 ], [ -96.679688, 75.050354 ], [ -96.679688, 75.230667 ], [ -96.328125, 75.230667 ], [ -96.328125, 75.408854 ], [ -95.976562, 75.408854 ], [ -95.976562, 75.497157 ], [ -95.273438, 75.497157 ], [ -95.273438, 75.584937 ], [ -94.570312, 75.584937 ] ] ], [ [ [ -98.437500, 76.679785 ], [ -98.437500, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.351896 ], [ -97.734375, 76.351896 ], [ -97.734375, 75.584937 ], [ -98.085938, 75.584937 ], [ -98.085938, 75.230667 ], [ -98.437500, 75.230667 ], [ -98.437500, 75.050354 ], [ -98.789062, 75.050354 ], [ -98.789062, 74.959392 ], [ -100.195312, 74.959392 ], [ -100.195312, 75.050354 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.672197 ], [ -101.601562, 75.672197 ], [ -101.601562, 75.584937 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -101.250000, 76.351896 ], [ -101.250000, 76.434604 ], [ -100.898438, 76.434604 ], [ -100.898438, 76.516819 ], [ -100.546875, 76.516819 ], [ -100.546875, 76.598545 ], [ -100.195312, 76.598545 ], [ -100.195312, 76.679785 ], [ -99.843750, 76.679785 ], [ -99.843750, 76.598545 ], [ -98.789062, 76.598545 ], [ -98.789062, 76.679785 ], [ -98.437500, 76.679785 ] ] ], [ [ [ -88.242188, 80.647035 ], [ -88.593750, 80.647035 ], [ -88.593750, 80.703997 ], [ -88.945312, 80.703997 ], [ -88.945312, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 80.816891 ], [ -89.648438, 80.816891 ], [ -89.648438, 80.983688 ], [ -90.000000, 80.983688 ], [ -90.000000, 81.201420 ], [ -90.351562, 81.201420 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 81.972431 ], [ -91.054688, 81.972431 ], [ -91.054688, 82.021378 ], [ -90.703125, 82.021378 ], [ -90.703125, 82.070028 ], [ -90.351562, 82.070028 ], [ -90.351562, 82.118384 ], [ -88.593750, 82.118384 ], [ -88.593750, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 80.647035 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -105.468750, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.171335 ], [ -103.710938, 79.171335 ], [ -103.710938, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 78.971386 ], [ -101.953125, 78.971386 ], [ -101.953125, 78.903929 ], [ -101.250000, 78.903929 ], [ -101.250000, 78.836065 ], [ -100.898438, 78.836065 ], [ -100.898438, 78.699106 ], [ -100.546875, 78.699106 ], [ -100.546875, 78.420193 ], [ -100.195312, 78.420193 ], [ -100.195312, 78.134493 ], [ -99.843750, 78.134493 ], [ -99.843750, 77.915669 ], [ -100.546875, 77.915669 ], [ -100.546875, 77.989049 ], [ -101.250000, 77.989049 ], [ -101.250000, 78.061989 ], [ -101.953125, 78.061989 ], [ -101.953125, 78.134493 ], [ -102.304688, 78.134493 ], [ -102.304688, 78.206563 ], [ -102.656250, 78.206563 ], [ -102.656250, 78.278201 ], [ -103.007812, 78.278201 ], [ -103.007812, 78.349411 ], [ -104.414062, 78.349411 ], [ -104.414062, 78.420193 ], [ -105.117188, 78.420193 ], [ -105.117188, 78.560488 ], [ -104.765625, 78.560488 ], [ -104.765625, 78.630006 ], [ -104.414062, 78.630006 ], [ -104.414062, 78.699106 ], [ -104.765625, 78.699106 ], [ -104.765625, 78.836065 ], [ -105.117188, 78.836065 ], [ -105.117188, 78.903929 ], [ -105.468750, 78.903929 ], [ -105.468750, 79.105086 ], [ -105.820312, 79.105086 ], [ -105.820312, 79.302640 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -98.437500, 78.903929 ], [ -98.437500, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.767792 ], [ -97.031250, 78.767792 ], [ -97.031250, 78.699106 ], [ -96.679688, 78.699106 ], [ -96.679688, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.490552 ], [ -95.976562, 78.490552 ], [ -95.976562, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.206563 ], [ -95.976562, 78.206563 ], [ -95.976562, 77.989049 ], [ -96.679688, 77.989049 ], [ -96.679688, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 77.989049 ], [ -98.085938, 77.989049 ], [ -98.085938, 78.061989 ], [ -98.437500, 78.061989 ], [ -98.437500, 78.278201 ], [ -98.789062, 78.278201 ], [ -98.789062, 78.903929 ], [ -98.437500, 78.903929 ] ] ], [ [ [ -88.242188, 77.078784 ], [ -88.242188, 76.516819 ], [ -89.648438, 76.516819 ], [ -89.648438, 76.999935 ], [ -88.945312, 76.999935 ], [ -88.945312, 77.078784 ], [ -88.242188, 77.078784 ] ] ], [ [ [ -110.742188, 78.134493 ], [ -110.742188, 78.061989 ], [ -110.039062, 78.061989 ], [ -110.039062, 77.915669 ], [ -110.390625, 77.915669 ], [ -110.390625, 77.692870 ], [ -110.742188, 77.692870 ], [ -110.742188, 77.617709 ], [ -111.445312, 77.617709 ], [ -111.445312, 77.542096 ], [ -111.796875, 77.542096 ], [ -111.796875, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.542096 ], [ -112.851562, 77.542096 ], [ -112.851562, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.841848 ], [ -113.203125, 77.841848 ], [ -113.203125, 77.989049 ], [ -112.851562, 77.989049 ], [ -112.851562, 78.061989 ], [ -112.148438, 78.061989 ], [ -112.148438, 78.134493 ], [ -110.742188, 78.134493 ] ] ], [ [ [ -94.570312, 77.841848 ], [ -94.570312, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.692870 ], [ -93.867188, 77.692870 ], [ -93.867188, 77.542096 ], [ -95.625000, 77.542096 ], [ -95.625000, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.692870 ], [ -96.679688, 77.692870 ], [ -96.679688, 77.841848 ], [ -94.570312, 77.841848 ] ] ], [ [ [ -111.093750, 78.836065 ], [ -111.093750, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.699106 ], [ -110.039062, 78.699106 ], [ -110.039062, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.490552 ], [ -110.742188, 78.490552 ], [ -110.742188, 78.420193 ], [ -112.851562, 78.420193 ], [ -112.851562, 78.560488 ], [ -112.500000, 78.560488 ], [ -112.500000, 78.699106 ], [ -112.148438, 78.699106 ], [ -112.148438, 78.836065 ], [ -111.093750, 78.836065 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -155.742188, 71.300793 ], [ -155.742188, 71.187754 ], [ -155.039062, 71.187754 ], [ -155.039062, 71.074056 ], [ -154.687500, 71.074056 ], [ -154.687500, 70.844673 ], [ -154.335938, 70.844673 ], [ -154.335938, 70.728979 ], [ -153.984375, 70.728979 ], [ -153.984375, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.495574 ], [ -151.523438, 70.495574 ], [ -151.523438, 70.377854 ], [ -150.117188, 70.377854 ], [ -150.117188, 70.495574 ], [ -149.414062, 70.495574 ], [ -149.414062, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.259452 ], [ -146.953125, 70.259452 ], [ -146.953125, 70.140364 ], [ -145.546875, 70.140364 ], [ -145.546875, 70.020587 ], [ -143.789062, 70.020587 ], [ -143.789062, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 70.020587 ], [ -142.734375, 70.020587 ], [ -142.734375, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 69.657086 ], [ -140.976562, 69.657086 ], [ -140.976562, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.946472 ], [ -166.640625, 65.946472 ], [ -166.640625, 66.089364 ], [ -165.937500, 66.089364 ], [ -165.937500, 66.231457 ], [ -165.234375, 66.231457 ], [ -165.234375, 66.372755 ], [ -164.531250, 66.372755 ], [ -164.531250, 66.513260 ], [ -163.828125, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.828125, 66.930060 ], [ -163.828125, 67.204032 ], [ -164.179688, 67.204032 ], [ -164.179688, 67.474922 ], [ -164.531250, 67.474922 ], [ -164.531250, 67.609221 ], [ -164.882812, 67.609221 ], [ -164.882812, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.007571 ], [ -165.585938, 68.007571 ], [ -165.585938, 68.138852 ], [ -166.289062, 68.138852 ], [ -166.289062, 68.269387 ], [ -166.640625, 68.269387 ], [ -166.640625, 68.656555 ], [ -166.289062, 68.656555 ], [ -166.289062, 68.911005 ], [ -164.179688, 68.911005 ], [ -164.179688, 69.037142 ], [ -163.828125, 69.037142 ], [ -163.828125, 69.162558 ], [ -163.476562, 69.162558 ], [ -163.476562, 69.287257 ], [ -163.125000, 69.287257 ], [ -163.125000, 69.657086 ], [ -162.773438, 69.657086 ], [ -162.773438, 70.020587 ], [ -162.421875, 70.020587 ], [ -162.421875, 70.259452 ], [ -162.070312, 70.259452 ], [ -162.070312, 70.377854 ], [ -161.367188, 70.377854 ], [ -161.367188, 70.495574 ], [ -160.312500, 70.495574 ], [ -160.312500, 70.612614 ], [ -159.609375, 70.612614 ], [ -159.609375, 70.728979 ], [ -158.906250, 70.728979 ], [ -158.906250, 70.844673 ], [ -157.851562, 70.844673 ], [ -157.851562, 70.959697 ], [ -157.500000, 70.959697 ], [ -157.500000, 71.074056 ], [ -157.148438, 71.074056 ], [ -157.148438, 71.187754 ], [ -156.796875, 71.187754 ], [ -156.796875, 71.300793 ], [ -155.742188, 71.300793 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.093750, 71.300793 ], [ -156.093750, 71.187754 ], [ -155.390625, 71.187754 ], [ -155.390625, 71.074056 ], [ -155.039062, 71.074056 ], [ -155.039062, 70.844673 ], [ -154.687500, 70.844673 ], [ -154.687500, 70.728979 ], [ -154.335938, 70.728979 ], [ -154.335938, 70.844673 ], [ -153.984375, 70.844673 ], [ -153.984375, 70.959697 ], [ -153.281250, 70.959697 ], [ -153.281250, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.728979 ], [ -152.578125, 70.728979 ], [ -152.578125, 70.612614 ], [ -151.875000, 70.612614 ], [ -151.875000, 70.495574 ], [ -150.117188, 70.495574 ], [ -150.117188, 70.612614 ], [ -149.765625, 70.612614 ], [ -149.765625, 70.495574 ], [ -149.062500, 70.495574 ], [ -149.062500, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.259452 ], [ -146.953125, 70.259452 ], [ -146.953125, 70.140364 ], [ -145.898438, 70.140364 ], [ -145.898438, 70.020587 ], [ -144.492188, 70.020587 ], [ -144.492188, 70.140364 ], [ -143.437500, 70.140364 ], [ -143.437500, 70.020587 ], [ -142.734375, 70.020587 ], [ -142.734375, 69.900118 ], [ -142.031250, 69.900118 ], [ -142.031250, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.946472 ], [ -166.992188, 65.946472 ], [ -166.992188, 66.089364 ], [ -166.640625, 66.089364 ], [ -166.640625, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.652977 ], [ -163.828125, 66.652977 ], [ -163.828125, 66.089364 ], [ -162.421875, 66.089364 ], [ -162.421875, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.652977 ], [ -162.773438, 66.652977 ], [ -162.773438, 66.791909 ], [ -163.125000, 66.791909 ], [ -163.125000, 66.930060 ], [ -163.476562, 66.930060 ], [ -163.476562, 67.067433 ], [ -163.828125, 67.067433 ], [ -163.828125, 67.339861 ], [ -164.179688, 67.339861 ], [ -164.179688, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.742759 ], [ -164.882812, 67.742759 ], [ -164.882812, 67.875541 ], [ -165.234375, 67.875541 ], [ -165.234375, 68.007571 ], [ -165.585938, 68.007571 ], [ -165.585938, 68.138852 ], [ -166.289062, 68.138852 ], [ -166.289062, 68.269387 ], [ -166.992188, 68.269387 ], [ -166.992188, 68.528235 ], [ -166.640625, 68.528235 ], [ -166.640625, 68.784144 ], [ -166.289062, 68.784144 ], [ -166.289062, 68.911005 ], [ -165.234375, 68.911005 ], [ -165.234375, 69.037142 ], [ -164.179688, 69.037142 ], [ -164.179688, 69.162558 ], [ -163.828125, 69.162558 ], [ -163.828125, 69.287257 ], [ -163.476562, 69.287257 ], [ -163.476562, 69.657086 ], [ -163.125000, 69.657086 ], [ -163.125000, 69.900118 ], [ -162.773438, 69.900118 ], [ -162.773438, 70.140364 ], [ -162.421875, 70.140364 ], [ -162.421875, 70.259452 ], [ -162.070312, 70.259452 ], [ -162.070312, 70.377854 ], [ -161.367188, 70.377854 ], [ -161.367188, 70.495574 ], [ -160.664062, 70.495574 ], [ -160.664062, 70.612614 ], [ -160.312500, 70.612614 ], [ -160.312500, 70.728979 ], [ -159.609375, 70.728979 ], [ -159.609375, 70.844673 ], [ -159.257812, 70.844673 ], [ -159.257812, 70.959697 ], [ -158.906250, 70.959697 ], [ -158.906250, 70.844673 ], [ -157.851562, 70.844673 ], [ -157.851562, 70.959697 ], [ -157.500000, 70.959697 ], [ -157.500000, 71.187754 ], [ -157.148438, 71.187754 ], [ -157.148438, 71.300793 ], [ -156.093750, 71.300793 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.406250, 69.411242 ], [ -181.406250, 69.287257 ], [ -181.054688, 69.287257 ], [ -181.054688, 69.162558 ], [ -180.703125, 69.162558 ], [ -180.703125, 69.037142 ], [ -180.351562, 69.037142 ], [ -180.351562, 68.911005 ], [ -180.000000, 68.911005 ], [ -180.000000, 68.784144 ], [ -179.648438, 68.784144 ], [ -179.648438, 68.656555 ], [ -179.296875, 68.656555 ], [ -179.296875, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.399180 ], [ -178.242188, 68.399180 ], [ -178.242188, 68.269387 ], [ -177.890625, 68.269387 ], [ -177.890625, 68.138852 ], [ -177.539062, 68.138852 ], [ -177.539062, 68.007571 ], [ -177.187500, 68.007571 ], [ -177.187500, 67.875541 ], [ -176.835938, 67.875541 ], [ -176.835938, 67.742759 ], [ -176.484375, 67.742759 ], [ -176.484375, 67.609221 ], [ -176.132812, 67.609221 ], [ -176.132812, 67.474922 ], [ -175.781250, 67.474922 ], [ -175.781250, 67.339861 ], [ -175.429688, 67.339861 ], [ -175.429688, 67.204032 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -169.804688, 65.946472 ], [ -169.804688, 65.802776 ], [ -178.945312, 65.802776 ], [ -178.945312, 65.946472 ], [ -179.296875, 65.946472 ], [ -179.296875, 65.802776 ], [ -180.000000, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 69.411242 ], [ -181.406250, 69.411242 ] ] ], [ [ [ -178.945312, 71.524909 ], [ -178.945312, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.300793 ], [ -177.539062, 71.300793 ], [ -177.539062, 71.074056 ], [ -177.890625, 71.074056 ], [ -177.890625, 70.959697 ], [ -178.242188, 70.959697 ], [ -178.242188, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.351562, 70.844673 ], [ -180.351562, 70.728979 ], [ -181.054688, 70.728979 ], [ -181.054688, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.074056 ], [ -181.054688, 71.074056 ], [ -181.054688, 71.187754 ], [ -180.703125, 71.187754 ], [ -180.703125, 71.300793 ], [ -180.351562, 71.300793 ], [ -180.351562, 71.413177 ], [ -180.000000, 71.413177 ], [ -180.000000, 71.524909 ], [ -178.945312, 71.524909 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 65.946472 ], [ -180.000000, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 69.411242 ], [ -181.406250, 69.411242 ], [ -181.406250, 69.287257 ], [ -181.054688, 69.287257 ], [ -181.054688, 69.162558 ], [ -180.351562, 69.162558 ], [ -180.351562, 69.037142 ], [ -180.000000, 69.037142 ], [ -180.000000, 68.911005 ], [ -179.648438, 68.911005 ], [ -179.648438, 68.784144 ], [ -179.296875, 68.784144 ], [ -179.296875, 68.656555 ], [ -178.945312, 68.656555 ], [ -178.945312, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.399180 ], [ -178.242188, 68.399180 ], [ -178.242188, 68.269387 ], [ -177.890625, 68.269387 ], [ -177.890625, 68.138852 ], [ -177.539062, 68.138852 ], [ -177.539062, 68.007571 ], [ -177.187500, 68.007571 ], [ -177.187500, 67.875541 ], [ -176.835938, 67.875541 ], [ -176.835938, 67.742759 ], [ -176.132812, 67.742759 ], [ -176.132812, 67.609221 ], [ -175.781250, 67.609221 ], [ -175.781250, 67.474922 ], [ -175.429688, 67.474922 ], [ -175.429688, 67.339861 ], [ -175.078125, 67.339861 ], [ -175.078125, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.652977 ], [ -174.726562, 66.652977 ], [ -174.726562, 67.067433 ], [ -173.671875, 67.067433 ], [ -173.671875, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.210938, 66.652977 ], [ -171.210938, 66.513260 ], [ -170.859375, 66.513260 ], [ -170.859375, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 65.946472 ], [ -170.507812, 65.946472 ], [ -170.507812, 65.802776 ], [ -178.945312, 65.802776 ], [ -178.945312, 66.089364 ], [ -179.648438, 66.089364 ], [ -179.648438, 65.946472 ], [ -180.000000, 65.946472 ] ] ], [ [ [ -179.296875, 71.635993 ], [ -179.296875, 71.524909 ], [ -178.945312, 71.524909 ], [ -178.945312, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.300793 ], [ -177.890625, 71.300793 ], [ -177.890625, 71.074056 ], [ -178.593750, 71.074056 ], [ -178.593750, 70.959697 ], [ -179.296875, 70.959697 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -181.406250, 70.844673 ], [ -181.406250, 71.187754 ], [ -181.054688, 71.187754 ], [ -181.054688, 71.300793 ], [ -180.351562, 71.300793 ], [ -180.351562, 71.413177 ], [ -180.000000, 71.413177 ], [ -180.000000, 71.635993 ], [ -179.296875, 71.635993 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.578125, -65.802776 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.372755 ], [ -62.929688, -66.372755 ], [ -62.929688, -66.513260 ], [ -63.632812, -66.513260 ], [ -63.632812, -66.652977 ], [ -63.984375, -66.652977 ], [ -63.984375, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.204032 ], [ -65.039062, -67.204032 ], [ -65.039062, -67.474922 ], [ -65.390625, -67.474922 ], [ -65.390625, -67.875541 ], [ -65.742188, -67.875541 ], [ -65.742188, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.687500, -68.656555 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.287257 ], [ -63.281250, -69.287257 ], [ -63.281250, -69.534518 ], [ -62.929688, -69.534518 ], [ -62.929688, -69.900118 ], [ -62.578125, -69.900118 ], [ -62.578125, -70.259452 ], [ -62.226562, -70.259452 ], [ -62.226562, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.959697 ], [ -61.523438, -70.959697 ], [ -61.523438, -72.181804 ], [ -61.171875, -72.181804 ], [ -61.171875, -73.022592 ], [ -60.820312, -73.022592 ], [ -60.820312, -73.824820 ], [ -61.171875, -73.824820 ], [ -61.171875, -74.019543 ], [ -61.523438, -74.019543 ], [ -61.523438, -74.307353 ], [ -61.875000, -74.307353 ], [ -61.875000, -74.496413 ], [ -62.578125, -74.496413 ], [ -62.578125, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.775843 ], [ -63.632812, -74.775843 ], [ -63.632812, -75.050354 ], [ -63.984375, -75.050354 ], [ -63.984375, -75.230667 ], [ -64.335938, -75.230667 ], [ -64.335938, -75.320025 ], [ -64.687500, -75.320025 ], [ -64.687500, -75.408854 ], [ -65.039062, -75.408854 ], [ -65.039062, -75.584937 ], [ -65.390625, -75.584937 ], [ -65.390625, -75.672197 ], [ -66.093750, -75.672197 ], [ -66.093750, -75.758940 ], [ -67.148438, -75.758940 ], [ -67.148438, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -75.930885 ], [ -68.203125, -75.930885 ], [ -68.203125, -76.016094 ], [ -68.554688, -76.016094 ], [ -68.554688, -76.100796 ], [ -69.257812, -76.100796 ], [ -69.257812, -76.184995 ], [ -69.960938, -76.184995 ], [ -69.960938, -76.351896 ], [ -70.312500, -76.351896 ], [ -70.312500, -76.516819 ], [ -70.664062, -76.516819 ], [ -70.664062, -76.598545 ], [ -71.015625, -76.598545 ], [ -71.015625, -76.679785 ], [ -73.125000, -76.679785 ], [ -73.125000, -76.598545 ], [ -74.531250, -76.598545 ], [ -74.531250, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.157163 ], [ -76.289062, -77.157163 ], [ -76.289062, -77.235074 ], [ -75.585938, -77.235074 ], [ -75.585938, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.531250, -77.466028 ], [ -74.531250, -77.542096 ], [ -74.179688, -77.542096 ], [ -74.179688, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -77.989049 ], [ -74.179688, -77.989049 ], [ -74.179688, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.937500, -78.206563 ], [ -75.937500, -78.134493 ], [ -76.640625, -78.134493 ], [ -76.640625, -78.206563 ], [ -76.992188, -78.206563 ], [ -76.992188, -78.278201 ], [ -77.695312, -78.278201 ], [ -77.695312, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.237185 ], [ -77.695312, -79.237185 ], [ -77.695312, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.496652 ], [ -76.992188, -79.496652 ], [ -76.992188, -79.687184 ], [ -76.640625, -79.687184 ], [ -76.640625, -79.935918 ], [ -76.289062, -79.935918 ], [ -76.289062, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.118564 ], [ -75.585938, -80.118564 ], [ -75.585938, -80.238501 ], [ -75.234375, -80.238501 ], [ -75.234375, -80.297927 ], [ -74.531250, -80.297927 ], [ -74.531250, -80.356995 ], [ -73.828125, -80.356995 ], [ -73.828125, -80.415707 ], [ -73.125000, -80.415707 ], [ -73.125000, -80.474065 ], [ -72.773438, -80.474065 ], [ -72.773438, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.760615 ], [ -71.015625, -80.760615 ], [ -71.015625, -80.816891 ], [ -70.664062, -80.816891 ], [ -70.664062, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.983688 ], [ -69.960938, -80.983688 ], [ -69.960938, -81.038617 ], [ -69.609375, -81.038617 ], [ -69.609375, -81.093214 ], [ -69.257812, -81.093214 ], [ -69.257812, -81.147481 ], [ -68.906250, -81.147481 ], [ -68.906250, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.308321 ], [ -67.851562, -81.308321 ], [ -67.851562, -81.361287 ], [ -67.148438, -81.361287 ], [ -67.148438, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.518272 ], [ -65.390625, -81.518272 ], [ -65.390625, -81.569968 ], [ -65.039062, -81.569968 ], [ -65.039062, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.723188 ], [ -63.632812, -81.723188 ], [ -63.632812, -81.773644 ], [ -63.281250, -81.773644 ], [ -63.281250, -81.823794 ], [ -62.929688, -81.823794 ], [ -62.929688, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.523438, -82.021378 ], [ -61.523438, -82.070028 ], [ -61.171875, -82.070028 ], [ -61.171875, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.468750, -82.214217 ], [ -60.468750, -82.261699 ], [ -60.117188, -82.261699 ], [ -60.117188, -82.355800 ], [ -59.765625, -82.355800 ], [ -59.765625, -82.448764 ], [ -59.414062, -82.448764 ], [ -59.414062, -82.631333 ], [ -59.062500, -82.631333 ], [ -59.062500, -82.809511 ], [ -58.710938, -82.809511 ], [ -58.710938, -83.068774 ], [ -58.359375, -83.068774 ], [ -58.359375, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.026219 ], [ -57.304688, -83.026219 ], [ -57.304688, -82.940327 ], [ -56.953125, -82.940327 ], [ -56.953125, -82.853382 ], [ -56.601562, -82.853382 ], [ -56.601562, -82.809511 ], [ -56.250000, -82.809511 ], [ -56.250000, -82.720964 ], [ -55.898438, -82.720964 ], [ -55.898438, -82.676285 ], [ -55.546875, -82.676285 ], [ -55.546875, -82.631333 ], [ -55.195312, -82.631333 ], [ -55.195312, -82.586106 ], [ -54.843750, -82.586106 ], [ -54.843750, -82.494824 ], [ -54.492188, -82.494824 ], [ -54.492188, -82.402423 ], [ -54.140625, -82.402423 ], [ -54.140625, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.166446 ], [ -52.382812, -82.166446 ], [ -52.382812, -82.118384 ], [ -52.031250, -82.118384 ], [ -52.031250, -82.070028 ], [ -51.679688, -82.070028 ], [ -51.679688, -82.021378 ], [ -51.328125, -82.021378 ], [ -51.328125, -81.972431 ], [ -50.976562, -81.972431 ], [ -50.976562, -81.873641 ], [ -50.625000, -81.873641 ], [ -50.625000, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -81.972431 ], [ -43.593750, -81.972431 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -81.972431 ], [ -42.539062, -81.972431 ], [ -42.539062, -81.773644 ], [ -42.187500, -81.773644 ], [ -42.187500, -81.672424 ], [ -41.835938, -81.672424 ], [ -41.835938, -81.569968 ], [ -41.484375, -81.569968 ], [ -41.484375, -81.518272 ], [ -41.132812, -81.518272 ], [ -41.132812, -81.413933 ], [ -40.781250, -81.413933 ], [ -40.781250, -81.361287 ], [ -37.968750, -81.361287 ], [ -37.968750, -81.308321 ], [ -37.265625, -81.308321 ], [ -37.265625, -81.255032 ], [ -36.914062, -81.255032 ], [ -36.914062, -81.201420 ], [ -36.210938, -81.201420 ], [ -36.210938, -81.147481 ], [ -35.859375, -81.147481 ], [ -35.859375, -81.093214 ], [ -35.507812, -81.093214 ], [ -35.507812, -81.038617 ], [ -34.804688, -81.038617 ], [ -34.804688, -80.983688 ], [ -34.453125, -80.983688 ], [ -34.453125, -80.928426 ], [ -33.750000, -80.928426 ], [ -33.750000, -80.872827 ], [ -33.046875, -80.872827 ], [ -33.046875, -80.816891 ], [ -32.343750, -80.816891 ], [ -32.343750, -80.760615 ], [ -31.640625, -80.760615 ], [ -31.640625, -80.703997 ], [ -30.937500, -80.703997 ], [ -30.937500, -80.647035 ], [ -30.234375, -80.647035 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.474065 ], [ -28.828125, -80.474065 ], [ -28.828125, -80.415707 ], [ -28.476562, -80.415707 ], [ -28.476562, -80.297927 ], [ -28.828125, -80.297927 ], [ -28.828125, -80.118564 ], [ -29.179688, -80.118564 ], [ -29.179688, -79.812302 ], [ -29.531250, -79.812302 ], [ -29.531250, -79.237185 ], [ -30.234375, -79.237185 ], [ -30.234375, -79.302640 ], [ -31.992188, -79.302640 ], [ -31.992188, -79.367701 ], [ -33.046875, -79.367701 ], [ -33.046875, -79.432371 ], [ -35.507812, -79.432371 ], [ -35.507812, -79.302640 ], [ -35.859375, -79.302640 ], [ -35.859375, -78.349411 ], [ -35.507812, -78.349411 ], [ -35.507812, -78.206563 ], [ -35.156250, -78.206563 ], [ -35.156250, -78.134493 ], [ -34.804688, -78.134493 ], [ -34.804688, -78.061989 ], [ -34.101562, -78.061989 ], [ -34.101562, -77.989049 ], [ -33.750000, -77.989049 ], [ -33.750000, -77.915669 ], [ -33.398438, -77.915669 ], [ -33.398438, -77.841848 ], [ -33.046875, -77.841848 ], [ -33.046875, -77.767582 ], [ -32.695312, -77.767582 ], [ -32.695312, -77.692870 ], [ -32.343750, -77.692870 ], [ -32.343750, -77.617709 ], [ -31.992188, -77.617709 ], [ -31.992188, -77.542096 ], [ -31.289062, -77.542096 ], [ -31.289062, -77.466028 ], [ -30.937500, -77.466028 ], [ -30.937500, -77.389504 ], [ -30.585938, -77.389504 ], [ -30.585938, -77.235074 ], [ -30.234375, -77.235074 ], [ -30.234375, -77.157163 ], [ -29.882812, -77.157163 ], [ -29.882812, -77.078784 ], [ -29.531250, -77.078784 ], [ -29.531250, -76.920614 ], [ -29.179688, -76.920614 ], [ -29.179688, -76.760541 ], [ -28.828125, -76.760541 ], [ -28.828125, -76.679785 ], [ -28.125000, -76.679785 ], [ -28.125000, -76.598545 ], [ -27.421875, -76.598545 ], [ -27.421875, -76.516819 ], [ -26.718750, -76.516819 ], [ -26.718750, -76.434604 ], [ -26.015625, -76.434604 ], [ -26.015625, -76.351896 ], [ -25.312500, -76.351896 ], [ -25.312500, -76.268695 ], [ -23.203125, -76.268695 ], [ -23.203125, -76.184995 ], [ -22.500000, -76.184995 ], [ -22.500000, -76.100796 ], [ -21.796875, -76.100796 ], [ -21.796875, -76.016094 ], [ -21.093750, -76.016094 ], [ -21.093750, -75.930885 ], [ -20.742188, -75.930885 ], [ -20.742188, -75.845169 ], [ -20.390625, -75.845169 ], [ -20.390625, -75.758940 ], [ -20.039062, -75.758940 ], [ -20.039062, -75.672197 ], [ -19.687500, -75.672197 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.320025 ], [ -17.929688, -75.320025 ], [ -17.929688, -75.230667 ], [ -17.578125, -75.230667 ], [ -17.578125, -75.140778 ], [ -17.226562, -75.140778 ], [ -17.226562, -74.959392 ], [ -16.875000, -74.959392 ], [ -16.875000, -74.867889 ], [ -16.523438, -74.867889 ], [ -16.523438, -74.775843 ], [ -16.171875, -74.775843 ], [ -16.171875, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.116047 ], [ -15.820312, -74.116047 ], [ -15.820312, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.627789 ], [ -16.171875, -73.627789 ], [ -16.171875, -73.428424 ], [ -15.820312, -73.428424 ], [ -15.820312, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.816074 ], [ -13.359375, -72.816074 ], [ -13.359375, -72.711903 ], [ -13.007812, -72.711903 ], [ -13.007812, -72.607120 ], [ -12.656250, -72.607120 ], [ -12.656250, -72.501722 ], [ -12.304688, -72.501722 ], [ -12.304688, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.073911 ], [ -11.601562, -72.073911 ], [ -11.601562, -71.856229 ], [ -11.250000, -71.856229 ], [ -11.250000, -71.635993 ], [ -10.898438, -71.635993 ], [ -10.898438, -71.524909 ], [ -10.546875, -71.524909 ], [ -10.546875, -71.413177 ], [ -10.195312, -71.413177 ], [ -10.195312, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.413177 ], [ -8.789062, -71.413177 ], [ -8.789062, -71.635993 ], [ -8.085938, -71.635993 ], [ -8.085938, -71.746432 ], [ -7.382812, -71.746432 ], [ -7.382812, -71.187754 ], [ -7.031250, -71.187754 ], [ -7.031250, -70.959697 ], [ -6.679688, -70.959697 ], [ -6.679688, -71.074056 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.413177 ], [ -3.515625, -71.413177 ], [ -3.515625, -71.300793 ], [ -2.109375, -71.300793 ], [ -2.109375, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.406250, -71.300793 ], [ 1.406250, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.428424 ], [ -90.351562, -73.428424 ], [ -90.351562, -73.327858 ], [ -90.000000, -73.327858 ], [ -90.000000, -73.226700 ], [ -89.648438, -73.226700 ], [ -89.648438, -72.816074 ], [ -89.296875, -72.816074 ], [ -89.296875, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.124945 ], [ -87.890625, -73.124945 ], [ -87.890625, -73.226700 ], [ -86.484375, -73.226700 ], [ -86.484375, -73.124945 ], [ -86.132812, -73.124945 ], [ -86.132812, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.528399 ], [ -83.671875, -73.528399 ], [ -83.671875, -73.627789 ], [ -82.617188, -73.627789 ], [ -82.617188, -73.726595 ], [ -81.914062, -73.726595 ], [ -81.914062, -73.824820 ], [ -81.210938, -73.824820 ], [ -81.210938, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.428424 ], [ -80.507812, -73.428424 ], [ -80.507812, -73.226700 ], [ -79.804688, -73.226700 ], [ -79.804688, -73.428424 ], [ -79.453125, -73.428424 ], [ -79.453125, -73.528399 ], [ -78.398438, -73.528399 ], [ -78.398438, -73.428424 ], [ -78.046875, -73.428424 ], [ -78.046875, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.726595 ], [ -76.640625, -73.726595 ], [ -76.640625, -73.922469 ], [ -75.234375, -73.922469 ], [ -75.234375, -73.824820 ], [ -74.531250, -73.824820 ], [ -74.531250, -73.726595 ], [ -73.828125, -73.726595 ], [ -73.828125, -73.627789 ], [ -73.476562, -73.627789 ], [ -73.476562, -73.528399 ], [ -72.773438, -73.528399 ], [ -72.773438, -73.428424 ], [ -72.421875, -73.428424 ], [ -72.421875, -73.327858 ], [ -71.718750, -73.327858 ], [ -71.718750, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.124945 ], [ -69.257812, -73.124945 ], [ -69.257812, -73.022592 ], [ -68.554688, -73.022592 ], [ -68.554688, -72.919635 ], [ -67.851562, -72.919635 ], [ -67.851562, -72.711903 ], [ -67.500000, -72.711903 ], [ -67.500000, -72.289067 ], [ -67.148438, -72.289067 ], [ -67.148438, -71.524909 ], [ -67.500000, -71.524909 ], [ -67.500000, -71.074056 ], [ -67.851562, -71.074056 ], [ -67.851562, -70.728979 ], [ -68.203125, -70.728979 ], [ -68.203125, -70.377854 ], [ -68.554688, -70.377854 ], [ -68.554688, -71.187754 ], [ -68.203125, -71.187754 ], [ -68.203125, -71.635993 ], [ -68.554688, -71.635993 ], [ -68.554688, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.181804 ], [ -69.257812, -72.181804 ], [ -69.257812, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.395706 ], [ -70.664062, -72.395706 ], [ -70.664062, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.421875, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.073911 ], [ -72.421875, -72.073911 ], [ -72.421875, -72.181804 ], [ -73.125000, -72.181804 ], [ -73.125000, -72.289067 ], [ -73.828125, -72.289067 ], [ -73.828125, -72.395706 ], [ -74.531250, -72.395706 ], [ -74.531250, -72.181804 ], [ -74.882812, -72.181804 ], [ -74.882812, -71.635993 ], [ -74.531250, -71.635993 ], [ -74.531250, -71.524909 ], [ -74.179688, -71.524909 ], [ -74.179688, -71.413177 ], [ -73.828125, -71.413177 ], [ -73.828125, -71.300793 ], [ -73.125000, -71.300793 ], [ -73.125000, -71.187754 ], [ -72.070312, -71.187754 ], [ -72.070312, -70.959697 ], [ -71.718750, -70.959697 ], [ -71.718750, -69.411242 ], [ -71.367188, -69.411242 ], [ -71.367188, -69.162558 ], [ -71.015625, -69.162558 ], [ -71.015625, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.287257 ], [ -69.609375, -69.287257 ], [ -69.609375, -69.778952 ], [ -69.257812, -69.778952 ], [ -69.257812, -70.020587 ], [ -68.906250, -70.020587 ], [ -68.906250, -70.259452 ], [ -68.554688, -70.259452 ], [ -68.554688, -69.287257 ], [ -68.203125, -69.287257 ], [ -68.203125, -69.037142 ], [ -67.851562, -69.037142 ], [ -67.851562, -68.784144 ], [ -67.500000, -68.784144 ], [ -67.500000, -67.609221 ], [ -67.851562, -67.609221 ], [ -67.851562, -67.339861 ], [ -67.500000, -67.339861 ], [ -67.500000, -67.067433 ], [ -67.148438, -67.067433 ], [ -67.148438, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.372755 ], [ -66.093750, -66.372755 ], [ -66.093750, -66.231457 ], [ -65.742188, -66.231457 ], [ -65.742188, -66.089364 ], [ -65.390625, -66.089364 ], [ -65.390625, -65.946472 ], [ -65.039062, -65.946472 ], [ -65.039062, -65.802776 ], [ -62.578125, -65.802776 ] ] ], [ [ [ -46.054688, -77.915669 ], [ -46.054688, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.134493 ], [ -44.648438, -78.134493 ], [ -44.648438, -78.278201 ], [ -44.296875, -78.278201 ], [ -44.296875, -78.420193 ], [ -43.945312, -78.420193 ], [ -43.945312, -78.836065 ], [ -43.593750, -78.836065 ], [ -43.593750, -79.302640 ], [ -43.242188, -79.302640 ], [ -43.242188, -80.058050 ], [ -43.593750, -80.058050 ], [ -43.593750, -80.118564 ], [ -43.945312, -80.118564 ], [ -43.945312, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.474065 ], [ -45.703125, -80.474065 ], [ -45.703125, -80.532071 ], [ -46.054688, -80.532071 ], [ -46.054688, -80.589727 ], [ -46.406250, -80.589727 ], [ -46.406250, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.760615 ], [ -48.164062, -80.760615 ], [ -48.164062, -80.816891 ], [ -48.515625, -80.816891 ], [ -48.515625, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.928426 ], [ -49.570312, -80.928426 ], [ -49.570312, -80.983688 ], [ -50.273438, -80.983688 ], [ -50.273438, -81.038617 ], [ -52.031250, -81.038617 ], [ -52.031250, -80.983688 ], [ -53.085938, -80.983688 ], [ -53.085938, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.789062, -80.816891 ], [ -53.789062, -80.703997 ], [ -54.140625, -80.703997 ], [ -54.140625, -80.238501 ], [ -53.789062, -80.238501 ], [ -53.789062, -80.178713 ], [ -53.085938, -80.178713 ], [ -53.085938, -80.118564 ], [ -52.734375, -80.118564 ], [ -52.734375, -80.058050 ], [ -52.382812, -80.058050 ], [ -52.382812, -79.997168 ], [ -51.679688, -79.997168 ], [ -51.679688, -79.874297 ], [ -51.328125, -79.874297 ], [ -51.328125, -79.749932 ], [ -50.976562, -79.749932 ], [ -50.976562, -79.560546 ], [ -50.625000, -79.560546 ], [ -50.625000, -79.302640 ], [ -50.273438, -79.302640 ], [ -50.273438, -79.038437 ], [ -49.921875, -79.038437 ], [ -49.921875, -78.767792 ], [ -49.570312, -78.767792 ], [ -49.570312, -78.630006 ], [ -49.218750, -78.630006 ], [ -49.218750, -78.420193 ], [ -48.867188, -78.420193 ], [ -48.867188, -78.206563 ], [ -48.515625, -78.206563 ], [ -48.515625, -78.061989 ], [ -47.812500, -78.061989 ], [ -47.812500, -77.989049 ], [ -47.109375, -77.989049 ], [ -47.109375, -77.915669 ], [ -46.054688, -77.915669 ] ] ], [ [ [ -60.117188, -79.749932 ], [ -60.117188, -79.874297 ], [ -59.765625, -79.874297 ], [ -59.765625, -79.997168 ], [ -59.414062, -79.997168 ], [ -59.414062, -80.297927 ], [ -59.765625, -80.297927 ], [ -59.765625, -80.760615 ], [ -60.117188, -80.760615 ], [ -60.117188, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.928426 ], [ -61.875000, -80.928426 ], [ -61.875000, -80.872827 ], [ -62.929688, -80.872827 ], [ -62.929688, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.390625, -80.760615 ], [ -65.390625, -80.647035 ], [ -65.742188, -80.647035 ], [ -65.742188, -80.474065 ], [ -66.093750, -80.474065 ], [ -66.093750, -80.356995 ], [ -66.445312, -80.356995 ], [ -66.445312, -80.238501 ], [ -65.390625, -80.238501 ], [ -65.390625, -80.297927 ], [ -63.632812, -80.297927 ], [ -63.632812, -80.356995 ], [ -62.578125, -80.356995 ], [ -62.578125, -80.415707 ], [ -61.875000, -80.415707 ], [ -61.875000, -80.356995 ], [ -61.523438, -80.356995 ], [ -61.523438, -80.118564 ], [ -61.171875, -80.118564 ], [ -61.171875, -79.935918 ], [ -60.820312, -79.935918 ], [ -60.820312, -79.749932 ], [ -60.117188, -79.749932 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -62.929688, -65.802776 ], [ -62.929688, -65.946472 ], [ -62.578125, -65.946472 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.231457 ], [ -62.578125, -66.231457 ], [ -62.578125, -66.372755 ], [ -63.984375, -66.372755 ], [ -63.984375, -66.652977 ], [ -64.335938, -66.652977 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.067433 ], [ -65.039062, -67.067433 ], [ -65.039062, -67.204032 ], [ -65.390625, -67.204032 ], [ -65.390625, -67.474922 ], [ -65.742188, -67.474922 ], [ -65.742188, -68.138852 ], [ -65.390625, -68.138852 ], [ -65.390625, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.162558 ], [ -63.281250, -69.162558 ], [ -63.281250, -69.411242 ], [ -62.929688, -69.411242 ], [ -62.929688, -69.778952 ], [ -62.578125, -69.778952 ], [ -62.578125, -70.495574 ], [ -62.226562, -70.495574 ], [ -62.226562, -70.612614 ], [ -61.875000, -70.612614 ], [ -61.875000, -70.844673 ], [ -61.523438, -70.844673 ], [ -61.523438, -72.181804 ], [ -61.171875, -72.181804 ], [ -61.171875, -72.919635 ], [ -60.820312, -72.919635 ], [ -60.820312, -73.428424 ], [ -61.171875, -73.428424 ], [ -61.171875, -73.824820 ], [ -61.523438, -73.824820 ], [ -61.523438, -74.116047 ], [ -61.875000, -74.116047 ], [ -61.875000, -74.307353 ], [ -62.226562, -74.307353 ], [ -62.226562, -74.402163 ], [ -62.578125, -74.402163 ], [ -62.578125, -74.496413 ], [ -63.632812, -74.496413 ], [ -63.632812, -74.683250 ], [ -63.984375, -74.683250 ], [ -63.984375, -74.959392 ], [ -64.335938, -74.959392 ], [ -64.335938, -75.140778 ], [ -64.687500, -75.140778 ], [ -64.687500, -75.320025 ], [ -65.039062, -75.320025 ], [ -65.039062, -75.408854 ], [ -65.390625, -75.408854 ], [ -65.390625, -75.497157 ], [ -65.742188, -75.497157 ], [ -65.742188, -75.584937 ], [ -66.093750, -75.584937 ], [ -66.093750, -75.672197 ], [ -66.796875, -75.672197 ], [ -66.796875, -75.758940 ], [ -67.500000, -75.758940 ], [ -67.500000, -75.845169 ], [ -68.203125, -75.845169 ], [ -68.203125, -75.930885 ], [ -68.554688, -75.930885 ], [ -68.554688, -76.016094 ], [ -68.906250, -76.016094 ], [ -68.906250, -76.100796 ], [ -69.609375, -76.100796 ], [ -69.609375, -76.184995 ], [ -69.960938, -76.184995 ], [ -69.960938, -76.351896 ], [ -70.312500, -76.351896 ], [ -70.312500, -76.516819 ], [ -70.664062, -76.516819 ], [ -70.664062, -76.598545 ], [ -74.531250, -76.598545 ], [ -74.531250, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.157163 ], [ -76.289062, -77.157163 ], [ -76.289062, -77.235074 ], [ -75.585938, -77.235074 ], [ -75.585938, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.542096 ], [ -74.531250, -77.542096 ], [ -74.531250, -77.617709 ], [ -74.179688, -77.617709 ], [ -74.179688, -77.767582 ], [ -73.828125, -77.767582 ], [ -73.828125, -77.915669 ], [ -74.179688, -77.915669 ], [ -74.179688, -78.061989 ], [ -74.531250, -78.061989 ], [ -74.531250, -78.206563 ], [ -75.585938, -78.206563 ], [ -75.585938, -78.134493 ], [ -76.289062, -78.134493 ], [ -76.289062, -78.061989 ], [ -76.640625, -78.061989 ], [ -76.640625, -78.134493 ], [ -76.992188, -78.134493 ], [ -76.992188, -78.206563 ], [ -77.343750, -78.206563 ], [ -77.343750, -78.278201 ], [ -77.695312, -78.278201 ], [ -77.695312, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.237185 ], [ -77.695312, -79.237185 ], [ -77.695312, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.496652 ], [ -76.992188, -79.496652 ], [ -76.992188, -79.687184 ], [ -76.640625, -79.687184 ], [ -76.640625, -79.935918 ], [ -76.289062, -79.935918 ], [ -76.289062, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.178713 ], [ -75.585938, -80.178713 ], [ -75.585938, -80.297927 ], [ -74.882812, -80.297927 ], [ -74.882812, -80.356995 ], [ -74.179688, -80.356995 ], [ -74.179688, -80.415707 ], [ -73.476562, -80.415707 ], [ -73.476562, -80.474065 ], [ -73.125000, -80.474065 ], [ -73.125000, -80.532071 ], [ -72.421875, -80.532071 ], [ -72.421875, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.816891 ], [ -71.015625, -80.816891 ], [ -71.015625, -80.872827 ], [ -70.664062, -80.872827 ], [ -70.664062, -80.983688 ], [ -70.312500, -80.983688 ], [ -70.312500, -81.038617 ], [ -69.960938, -81.038617 ], [ -69.960938, -81.093214 ], [ -69.609375, -81.093214 ], [ -69.609375, -81.147481 ], [ -69.257812, -81.147481 ], [ -69.257812, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.308321 ], [ -67.851562, -81.308321 ], [ -67.851562, -81.361287 ], [ -67.148438, -81.361287 ], [ -67.148438, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.518272 ], [ -65.039062, -81.518272 ], [ -65.039062, -81.569968 ], [ -64.687500, -81.569968 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.672424 ], [ -63.632812, -81.672424 ], [ -63.632812, -81.723188 ], [ -63.281250, -81.723188 ], [ -63.281250, -81.773644 ], [ -62.929688, -81.773644 ], [ -62.929688, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -82.021378 ], [ -61.875000, -82.021378 ], [ -61.875000, -82.070028 ], [ -61.523438, -82.070028 ], [ -61.523438, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.261699 ], [ -60.468750, -82.261699 ], [ -60.468750, -82.308893 ], [ -60.117188, -82.308893 ], [ -60.117188, -82.355800 ], [ -59.765625, -82.355800 ], [ -59.765625, -82.448764 ], [ -59.414062, -82.448764 ], [ -59.414062, -82.586106 ], [ -59.062500, -82.586106 ], [ -59.062500, -82.765373 ], [ -58.710938, -82.765373 ], [ -58.710938, -83.026219 ], [ -58.359375, -83.026219 ], [ -58.359375, -83.153111 ], [ -58.007812, -83.153111 ], [ -58.007812, -83.026219 ], [ -57.656250, -83.026219 ], [ -57.656250, -82.940327 ], [ -57.304688, -82.940327 ], [ -57.304688, -82.853382 ], [ -56.953125, -82.853382 ], [ -56.953125, -82.765373 ], [ -56.601562, -82.765373 ], [ -56.601562, -82.720964 ], [ -56.250000, -82.720964 ], [ -56.250000, -82.676285 ], [ -55.898438, -82.676285 ], [ -55.898438, -82.586106 ], [ -55.546875, -82.586106 ], [ -55.546875, -82.540604 ], [ -55.195312, -82.540604 ], [ -55.195312, -82.448764 ], [ -54.843750, -82.448764 ], [ -54.843750, -82.402423 ], [ -54.492188, -82.402423 ], [ -54.492188, -82.355800 ], [ -54.140625, -82.355800 ], [ -54.140625, -82.261699 ], [ -53.789062, -82.261699 ], [ -53.789062, -82.214217 ], [ -53.437500, -82.214217 ], [ -53.437500, -82.166446 ], [ -53.085938, -82.166446 ], [ -53.085938, -82.118384 ], [ -52.382812, -82.118384 ], [ -52.382812, -82.070028 ], [ -52.031250, -82.070028 ], [ -52.031250, -82.021378 ], [ -51.679688, -82.021378 ], [ -51.679688, -81.972431 ], [ -51.328125, -81.972431 ], [ -51.328125, -81.923186 ], [ -50.976562, -81.923186 ], [ -50.976562, -81.873641 ], [ -50.625000, -81.873641 ], [ -50.625000, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.723188 ], [ -48.515625, -81.723188 ], [ -48.515625, -81.672424 ], [ -47.109375, -81.672424 ], [ -47.109375, -81.723188 ], [ -46.406250, -81.723188 ], [ -46.406250, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.823794 ], [ -45.000000, -81.823794 ], [ -45.000000, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.923186 ], [ -44.296875, -81.923186 ], [ -44.296875, -81.972431 ], [ -43.593750, -81.972431 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -81.972431 ], [ -42.539062, -81.972431 ], [ -42.539062, -81.773644 ], [ -42.187500, -81.773644 ], [ -42.187500, -81.621352 ], [ -41.835938, -81.621352 ], [ -41.835938, -81.518272 ], [ -41.484375, -81.518272 ], [ -41.484375, -81.466261 ], [ -41.132812, -81.466261 ], [ -41.132812, -81.361287 ], [ -40.781250, -81.361287 ], [ -40.781250, -81.308321 ], [ -37.968750, -81.308321 ], [ -37.968750, -81.255032 ], [ -37.617188, -81.255032 ], [ -37.617188, -81.201420 ], [ -36.914062, -81.201420 ], [ -36.914062, -81.147481 ], [ -36.562500, -81.147481 ], [ -36.562500, -81.093214 ], [ -36.210938, -81.093214 ], [ -36.210938, -81.038617 ], [ -35.507812, -81.038617 ], [ -35.507812, -80.983688 ], [ -35.156250, -80.983688 ], [ -35.156250, -80.928426 ], [ -34.453125, -80.928426 ], [ -34.453125, -80.872827 ], [ -33.750000, -80.872827 ], [ -33.750000, -80.816891 ], [ -32.695312, -80.816891 ], [ -32.695312, -80.760615 ], [ -31.640625, -80.760615 ], [ -31.640625, -80.703997 ], [ -30.937500, -80.703997 ], [ -30.937500, -80.647035 ], [ -30.234375, -80.647035 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.415707 ], [ -29.179688, -80.415707 ], [ -29.179688, -80.356995 ], [ -28.828125, -80.356995 ], [ -28.828125, -80.238501 ], [ -29.179688, -80.238501 ], [ -29.179688, -80.058050 ], [ -29.531250, -80.058050 ], [ -29.531250, -79.812302 ], [ -29.882812, -79.812302 ], [ -29.882812, -79.237185 ], [ -31.640625, -79.237185 ], [ -31.640625, -79.302640 ], [ -32.343750, -79.302640 ], [ -32.343750, -79.367701 ], [ -33.046875, -79.367701 ], [ -33.046875, -79.432371 ], [ -35.859375, -79.432371 ], [ -35.859375, -79.237185 ], [ -36.210938, -79.237185 ], [ -36.210938, -78.699106 ], [ -35.859375, -78.699106 ], [ -35.859375, -78.206563 ], [ -35.507812, -78.206563 ], [ -35.507812, -78.061989 ], [ -35.156250, -78.061989 ], [ -35.156250, -77.989049 ], [ -34.453125, -77.989049 ], [ -34.453125, -77.915669 ], [ -34.101562, -77.915669 ], [ -34.101562, -77.841848 ], [ -33.750000, -77.841848 ], [ -33.750000, -77.767582 ], [ -33.046875, -77.767582 ], [ -33.046875, -77.692870 ], [ -32.343750, -77.692870 ], [ -32.343750, -77.617709 ], [ -31.992188, -77.617709 ], [ -31.992188, -77.466028 ], [ -31.640625, -77.466028 ], [ -31.640625, -77.389504 ], [ -31.289062, -77.389504 ], [ -31.289062, -77.312520 ], [ -30.937500, -77.312520 ], [ -30.937500, -77.235074 ], [ -30.585938, -77.235074 ], [ -30.585938, -77.157163 ], [ -30.234375, -77.157163 ], [ -30.234375, -77.078784 ], [ -29.882812, -77.078784 ], [ -29.882812, -76.920614 ], [ -29.531250, -76.920614 ], [ -29.531250, -76.760541 ], [ -29.179688, -76.760541 ], [ -29.179688, -76.598545 ], [ -28.476562, -76.598545 ], [ -28.476562, -76.516819 ], [ -27.773438, -76.516819 ], [ -27.773438, -76.434604 ], [ -26.718750, -76.434604 ], [ -26.718750, -76.351896 ], [ -25.664062, -76.351896 ], [ -25.664062, -76.268695 ], [ -24.609375, -76.268695 ], [ -24.609375, -76.184995 ], [ -23.203125, -76.184995 ], [ -23.203125, -76.100796 ], [ -22.148438, -76.100796 ], [ -22.148438, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.930885 ], [ -21.445312, -75.930885 ], [ -21.445312, -75.845169 ], [ -20.742188, -75.845169 ], [ -20.742188, -75.758940 ], [ -20.039062, -75.758940 ], [ -20.039062, -75.672197 ], [ -19.687500, -75.672197 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.320025 ], [ -18.281250, -75.320025 ], [ -18.281250, -75.230667 ], [ -17.929688, -75.230667 ], [ -17.929688, -75.140778 ], [ -17.578125, -75.140778 ], [ -17.578125, -75.050354 ], [ -17.226562, -75.050354 ], [ -17.226562, -74.867889 ], [ -16.875000, -74.867889 ], [ -16.875000, -74.775843 ], [ -16.523438, -74.775843 ], [ -16.523438, -74.683250 ], [ -16.171875, -74.683250 ], [ -16.171875, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.019543 ], [ -15.820312, -74.019543 ], [ -15.820312, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.627789 ], [ -16.171875, -73.627789 ], [ -16.171875, -73.428424 ], [ -15.820312, -73.428424 ], [ -15.820312, -73.226700 ], [ -15.468750, -73.226700 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.816074 ], [ -13.359375, -72.816074 ], [ -13.359375, -72.711903 ], [ -13.007812, -72.711903 ], [ -13.007812, -72.607120 ], [ -12.656250, -72.607120 ], [ -12.656250, -72.501722 ], [ -12.304688, -72.501722 ], [ -12.304688, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.073911 ], [ -11.601562, -72.073911 ], [ -11.601562, -71.746432 ], [ -11.250000, -71.746432 ], [ -11.250000, -71.524909 ], [ -10.898438, -71.524909 ], [ -10.898438, -71.300793 ], [ -10.546875, -71.300793 ], [ -10.546875, -71.187754 ], [ -10.195312, -71.187754 ], [ -10.195312, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.524909 ], [ -8.789062, -71.524909 ], [ -8.789062, -71.635993 ], [ -7.734375, -71.635993 ], [ -7.734375, -71.524909 ], [ -7.382812, -71.524909 ], [ -7.382812, -71.074056 ], [ -7.031250, -71.074056 ], [ -7.031250, -70.844673 ], [ -6.679688, -70.844673 ], [ -6.679688, -70.959697 ], [ -5.976562, -70.959697 ], [ -5.976562, -71.187754 ], [ -5.625000, -71.187754 ], [ -5.625000, -71.300793 ], [ -5.273438, -71.300793 ], [ -5.273438, -71.413177 ], [ -3.867188, -71.413177 ], [ -3.867188, -71.300793 ], [ -3.164062, -71.300793 ], [ -3.164062, -71.187754 ], [ -2.460938, -71.187754 ], [ -2.460938, -71.074056 ], [ -1.757812, -71.074056 ], [ -1.757812, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.054688, -71.300793 ], [ 1.054688, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -85.200475 ], [ -91.757812, -85.200475 ], [ -91.757812, -73.327858 ], [ -90.703125, -73.327858 ], [ -90.703125, -73.226700 ], [ -90.351562, -73.226700 ], [ -90.351562, -73.124945 ], [ -90.000000, -73.124945 ], [ -90.000000, -72.919635 ], [ -89.648438, -72.919635 ], [ -89.648438, -72.711903 ], [ -89.296875, -72.711903 ], [ -89.296875, -72.607120 ], [ -88.945312, -72.607120 ], [ -88.945312, -72.816074 ], [ -88.593750, -72.816074 ], [ -88.593750, -73.022592 ], [ -87.890625, -73.022592 ], [ -87.890625, -73.124945 ], [ -86.484375, -73.124945 ], [ -86.484375, -73.022592 ], [ -86.132812, -73.022592 ], [ -86.132812, -73.124945 ], [ -85.781250, -73.124945 ], [ -85.781250, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.428424 ], [ -84.023438, -73.428424 ], [ -84.023438, -73.528399 ], [ -83.320312, -73.528399 ], [ -83.320312, -73.627789 ], [ -82.968750, -73.627789 ], [ -82.968750, -73.726595 ], [ -82.265625, -73.726595 ], [ -82.265625, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.726595 ], [ -81.210938, -73.726595 ], [ -81.210938, -73.528399 ], [ -80.859375, -73.528399 ], [ -80.859375, -73.327858 ], [ -80.507812, -73.327858 ], [ -80.507812, -73.226700 ], [ -80.156250, -73.226700 ], [ -80.156250, -73.327858 ], [ -79.804688, -73.327858 ], [ -79.804688, -73.428424 ], [ -78.398438, -73.428424 ], [ -78.398438, -73.327858 ], [ -78.046875, -73.327858 ], [ -78.046875, -73.428424 ], [ -77.695312, -73.428424 ], [ -77.695312, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.726595 ], [ -76.640625, -73.726595 ], [ -76.640625, -73.922469 ], [ -75.585938, -73.922469 ], [ -75.585938, -73.824820 ], [ -74.882812, -73.824820 ], [ -74.882812, -73.726595 ], [ -74.179688, -73.726595 ], [ -74.179688, -73.627789 ], [ -73.828125, -73.627789 ], [ -73.828125, -73.528399 ], [ -73.476562, -73.528399 ], [ -73.476562, -73.428424 ], [ -73.125000, -73.428424 ], [ -73.125000, -73.327858 ], [ -72.070312, -73.327858 ], [ -72.070312, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.124945 ], [ -69.960938, -73.124945 ], [ -69.960938, -73.022592 ], [ -69.257812, -73.022592 ], [ -69.257812, -72.919635 ], [ -68.906250, -72.919635 ], [ -68.906250, -72.816074 ], [ -68.203125, -72.816074 ], [ -68.203125, -72.711903 ], [ -67.851562, -72.711903 ], [ -67.851562, -72.501722 ], [ -67.500000, -72.501722 ], [ -67.500000, -72.181804 ], [ -67.148438, -72.181804 ], [ -67.148438, -71.856229 ], [ -67.500000, -71.856229 ], [ -67.500000, -71.413177 ], [ -67.851562, -71.413177 ], [ -67.851562, -71.074056 ], [ -68.203125, -71.074056 ], [ -68.203125, -70.612614 ], [ -68.554688, -70.612614 ], [ -68.554688, -69.162558 ], [ -68.203125, -69.162558 ], [ -68.203125, -68.784144 ], [ -67.851562, -68.784144 ], [ -67.851562, -68.399180 ], [ -67.500000, -68.399180 ], [ -67.500000, -67.875541 ], [ -67.851562, -67.875541 ], [ -67.851562, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.791909 ], [ -67.148438, -66.791909 ], [ -67.148438, -66.652977 ], [ -66.796875, -66.652977 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -66.089364 ], [ -65.742188, -66.089364 ], [ -65.742188, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.802776 ], [ -62.929688, -65.802776 ] ] ], [ [ [ -70.312500, -68.784144 ], [ -70.312500, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.411242 ], [ -69.609375, -69.411242 ], [ -69.609375, -69.778952 ], [ -69.257812, -69.778952 ], [ -69.257812, -70.259452 ], [ -68.906250, -70.259452 ], [ -68.906250, -70.728979 ], [ -68.554688, -70.728979 ], [ -68.554688, -71.965388 ], [ -68.906250, -71.965388 ], [ -68.906250, -72.181804 ], [ -69.609375, -72.181804 ], [ -69.609375, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.395706 ], [ -70.664062, -72.395706 ], [ -70.664062, -72.501722 ], [ -72.070312, -72.501722 ], [ -72.070312, -72.395706 ], [ -72.421875, -72.395706 ], [ -72.421875, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.073911 ], [ -72.421875, -72.073911 ], [ -72.421875, -72.181804 ], [ -73.476562, -72.181804 ], [ -73.476562, -72.289067 ], [ -74.882812, -72.289067 ], [ -74.882812, -72.073911 ], [ -75.234375, -72.073911 ], [ -75.234375, -71.635993 ], [ -74.882812, -71.635993 ], [ -74.882812, -71.413177 ], [ -74.531250, -71.413177 ], [ -74.531250, -71.300793 ], [ -74.179688, -71.300793 ], [ -74.179688, -71.187754 ], [ -73.476562, -71.187754 ], [ -73.476562, -71.074056 ], [ -73.125000, -71.074056 ], [ -73.125000, -71.187754 ], [ -72.421875, -71.187754 ], [ -72.421875, -70.959697 ], [ -72.070312, -70.959697 ], [ -72.070312, -69.287257 ], [ -71.718750, -69.287257 ], [ -71.718750, -69.037142 ], [ -71.367188, -69.037142 ], [ -71.367188, -68.911005 ], [ -70.664062, -68.911005 ], [ -70.664062, -68.784144 ], [ -70.312500, -68.784144 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -80.297927 ], [ -60.117188, -80.297927 ], [ -60.117188, -80.760615 ], [ -60.468750, -80.760615 ], [ -60.468750, -80.983688 ], [ -61.171875, -80.983688 ], [ -61.171875, -80.928426 ], [ -61.875000, -80.928426 ], [ -61.875000, -80.872827 ], [ -62.578125, -80.872827 ], [ -62.578125, -80.816891 ], [ -63.281250, -80.816891 ], [ -63.281250, -80.872827 ], [ -64.687500, -80.872827 ], [ -64.687500, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.703997 ], [ -65.390625, -80.703997 ], [ -65.390625, -80.589727 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.474065 ], [ -66.093750, -80.474065 ], [ -66.093750, -80.356995 ], [ -66.445312, -80.356995 ], [ -66.445312, -80.238501 ], [ -63.984375, -80.238501 ], [ -63.984375, -80.297927 ], [ -62.929688, -80.297927 ], [ -62.929688, -80.356995 ], [ -62.226562, -80.356995 ], [ -62.226562, -80.297927 ], [ -61.875000, -80.297927 ], [ -61.875000, -80.178713 ], [ -61.523438, -80.178713 ], [ -61.523438, -80.058050 ], [ -61.171875, -80.058050 ], [ -61.171875, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ], [ [ [ -46.406250, -77.841848 ], [ -46.406250, -77.915669 ], [ -45.703125, -77.915669 ], [ -45.703125, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.206563 ], [ -44.648438, -78.206563 ], [ -44.648438, -78.278201 ], [ -44.296875, -78.278201 ], [ -44.296875, -78.420193 ], [ -43.945312, -78.420193 ], [ -43.945312, -78.767792 ], [ -43.593750, -78.767792 ], [ -43.593750, -80.058050 ], [ -43.945312, -80.058050 ], [ -43.945312, -80.118564 ], [ -44.296875, -80.118564 ], [ -44.296875, -80.238501 ], [ -44.648438, -80.238501 ], [ -44.648438, -80.297927 ], [ -45.000000, -80.297927 ], [ -45.000000, -80.356995 ], [ -45.351562, -80.356995 ], [ -45.351562, -80.415707 ], [ -45.703125, -80.415707 ], [ -45.703125, -80.474065 ], [ -46.054688, -80.474065 ], [ -46.054688, -80.532071 ], [ -46.406250, -80.532071 ], [ -46.406250, -80.589727 ], [ -46.757812, -80.589727 ], [ -46.757812, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.703997 ], [ -47.812500, -80.703997 ], [ -47.812500, -80.760615 ], [ -48.164062, -80.760615 ], [ -48.164062, -80.816891 ], [ -48.515625, -80.816891 ], [ -48.515625, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.928426 ], [ -49.921875, -80.928426 ], [ -49.921875, -80.983688 ], [ -52.031250, -80.983688 ], [ -52.031250, -80.928426 ], [ -53.437500, -80.928426 ], [ -53.437500, -80.816891 ], [ -53.789062, -80.816891 ], [ -53.789062, -80.760615 ], [ -54.140625, -80.760615 ], [ -54.140625, -80.647035 ], [ -54.492188, -80.647035 ], [ -54.492188, -80.415707 ], [ -54.140625, -80.415707 ], [ -54.140625, -80.178713 ], [ -53.789062, -80.178713 ], [ -53.789062, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.058050 ], [ -52.734375, -80.058050 ], [ -52.734375, -79.997168 ], [ -52.031250, -79.997168 ], [ -52.031250, -79.874297 ], [ -51.679688, -79.874297 ], [ -51.679688, -79.687184 ], [ -51.328125, -79.687184 ], [ -51.328125, -79.496652 ], [ -50.976562, -79.496652 ], [ -50.976562, -79.302640 ], [ -50.625000, -79.302640 ], [ -50.625000, -79.105086 ], [ -50.273438, -79.105086 ], [ -50.273438, -78.903929 ], [ -49.921875, -78.903929 ], [ -49.921875, -78.630006 ], [ -49.570312, -78.630006 ], [ -49.570312, -78.349411 ], [ -49.218750, -78.349411 ], [ -49.218750, -78.134493 ], [ -48.867188, -78.134493 ], [ -48.867188, -77.989049 ], [ -47.812500, -77.989049 ], [ -47.812500, -77.915669 ], [ -47.109375, -77.915669 ], [ -47.109375, -77.841848 ], [ -46.406250, -77.841848 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.960938, -3.162456 ], [ -69.960938, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -3.162456 ], [ -69.960938, -3.162456 ] ] ], [ [ [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.960938, 0.703107 ], [ -69.960938, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -1.054628 ], [ -69.257812, -1.054628 ], [ -69.257812, -1.406109 ], [ -69.609375, -1.406109 ], [ -69.609375, -2.811371 ], [ -69.960938, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.460181 ], [ -73.476562, -2.460181 ], [ -73.476562, -1.757537 ], [ -73.828125, -1.757537 ], [ -73.828125, -1.406109 ], [ -74.179688, -1.406109 ], [ -74.179688, -1.054628 ], [ -74.531250, -1.054628 ], [ -74.531250, -0.703107 ], [ -74.882812, -0.703107 ], [ -74.882812, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -76.289062, 0.000000 ], [ -76.289062, 0.351560 ], [ -77.695312, 0.351560 ], [ -77.695312, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ] ] ], [ [ [ -67.148438, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.406109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.351560 ], [ -69.609375, -0.351560 ], [ -69.609375, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -4.214943 ], [ -70.312500, -4.214943 ], [ -70.312500, -3.864255 ], [ -70.664062, -3.864255 ], [ -70.664062, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -2.460181 ], [ -71.015625, -2.460181 ], [ -71.015625, -2.108899 ], [ -73.476562, -2.108899 ], [ -73.476562, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.351560 ], [ -77.343750, 0.351560 ], [ -77.343750, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -69.960938, 1.757537 ] ] ], [ [ [ -67.148438, 1.757537 ], [ -67.148438, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 1.757537 ], [ -67.148438, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.984375, 1.757537 ], [ -63.984375, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.757537 ], [ -63.984375, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.335938, 1.757537 ], [ -64.335938, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.757537 ], [ -64.335938, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, 1.757537 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 1.757537 ], [ -57.656250, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.710938, 1.757537 ], [ -58.710938, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 1.757537 ], [ -58.710938, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.054628 ], [ -78.046875, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -75.937500, -1.757537 ], [ -75.937500, -2.108899 ], [ -76.289062, -2.108899 ], [ -76.289062, -2.460181 ], [ -76.640625, -2.460181 ], [ -76.640625, -2.811371 ], [ -77.343750, -2.811371 ], [ -77.343750, -3.162456 ], [ -77.695312, -3.162456 ], [ -77.695312, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -80.507812, -4.565474 ], [ -80.507812, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -3.162456 ], [ -79.804688, -3.162456 ], [ -79.804688, -2.460181 ], [ -80.859375, -2.460181 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 0.703107 ], [ -79.453125, 0.703107 ], [ -79.453125, 1.054628 ], [ -78.046875, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 1.406109 ], [ -78.750000, 1.054628 ], [ -77.695312, 1.054628 ], [ -77.695312, 0.703107 ], [ -77.343750, 0.703107 ], [ -77.343750, 0.351560 ], [ -75.937500, 0.351560 ], [ -75.937500, 0.000000 ], [ -75.585938, 0.000000 ], [ -75.585938, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, -1.054628 ], [ -75.585938, -1.054628 ], [ -75.585938, -1.757537 ], [ -75.937500, -1.757537 ], [ -75.937500, -2.108899 ], [ -76.289062, -2.108899 ], [ -76.289062, -2.460181 ], [ -76.992188, -2.460181 ], [ -76.992188, -2.811371 ], [ -78.046875, -2.811371 ], [ -78.046875, -3.162456 ], [ -78.398438, -3.162456 ], [ -78.398438, -3.864255 ], [ -78.750000, -3.864255 ], [ -78.750000, -4.565474 ], [ -79.101562, -4.565474 ], [ -79.101562, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -79.804688, -4.565474 ], [ -79.804688, -4.214943 ], [ -80.507812, -4.214943 ], [ -80.507812, -3.162456 ], [ -80.156250, -3.162456 ], [ -80.156250, -2.811371 ], [ -79.804688, -2.811371 ], [ -79.804688, -2.460181 ], [ -81.210938, -2.460181 ], [ -81.210938, -2.108899 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.406109 ], [ -81.210938, -1.406109 ], [ -81.210938, -1.054628 ], [ -80.859375, -1.054628 ], [ -80.859375, -0.351560 ], [ -80.507812, -0.351560 ], [ -80.507812, 0.351560 ], [ -80.156250, 0.351560 ], [ -80.156250, 1.054628 ], [ -79.101562, 1.054628 ], [ -79.101562, 1.406109 ], [ -78.750000, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.351560 ], [ -74.882812, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -2.460181 ], [ -70.312500, -2.460181 ], [ -70.312500, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -4.214943 ], [ -70.664062, -4.214943 ], [ -70.664062, -4.565474 ], [ -71.718750, -4.565474 ], [ -71.718750, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.615986 ], [ -73.125000, -5.615986 ], [ -73.125000, -7.013668 ], [ -73.828125, -7.013668 ], [ -73.828125, -8.059230 ], [ -73.476562, -8.059230 ], [ -73.476562, -8.754795 ], [ -73.125000, -8.754795 ], [ -73.125000, -9.449062 ], [ -72.421875, -9.449062 ], [ -72.421875, -9.795678 ], [ -72.070312, -9.795678 ], [ -72.070312, -10.141932 ], [ -71.015625, -10.141932 ], [ -71.015625, -9.795678 ], [ -70.312500, -9.795678 ], [ -70.312500, -10.487812 ], [ -70.664062, -10.487812 ], [ -70.664062, -11.178402 ], [ -69.257812, -11.178402 ], [ -69.257812, -11.867351 ], [ -68.906250, -11.867351 ], [ -68.906250, -12.554564 ], [ -68.554688, -12.554564 ], [ -68.554688, -12.897489 ], [ -68.906250, -12.897489 ], [ -68.906250, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -16.299051 ], [ -68.906250, -16.299051 ], [ -68.906250, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.978733 ], [ -69.960938, -17.978733 ], [ -69.960938, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -17.978733 ], [ -71.367188, -17.978733 ], [ -71.367188, -17.308688 ], [ -72.070312, -17.308688 ], [ -72.070312, -16.972741 ], [ -72.773438, -16.972741 ], [ -72.773438, -16.636192 ], [ -73.476562, -16.636192 ], [ -73.476562, -16.299051 ], [ -73.828125, -16.299051 ], [ -73.828125, -15.961329 ], [ -74.531250, -15.961329 ], [ -74.531250, -15.623037 ], [ -75.234375, -15.623037 ], [ -75.234375, -15.284185 ], [ -75.585938, -15.284185 ], [ -75.585938, -14.944785 ], [ -75.937500, -14.944785 ], [ -75.937500, -14.264383 ], [ -76.289062, -14.264383 ], [ -76.289062, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.554564 ], [ -76.992188, -12.554564 ], [ -76.992188, -12.211180 ], [ -77.343750, -12.211180 ], [ -77.343750, -11.523088 ], [ -77.695312, -11.523088 ], [ -77.695312, -10.833306 ], [ -78.046875, -10.833306 ], [ -78.046875, -10.141932 ], [ -78.398438, -10.141932 ], [ -78.398438, -9.449062 ], [ -78.750000, -9.449062 ], [ -78.750000, -8.754795 ], [ -79.101562, -8.754795 ], [ -79.101562, -8.407168 ], [ -79.453125, -8.407168 ], [ -79.453125, -7.710992 ], [ -79.804688, -7.710992 ], [ -79.804688, -7.362467 ], [ -80.156250, -7.362467 ], [ -80.156250, -7.013668 ], [ -80.507812, -7.013668 ], [ -80.507812, -6.664608 ], [ -80.859375, -6.664608 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -5.965754 ], [ -80.859375, -5.965754 ], [ -80.859375, -5.615986 ], [ -81.210938, -5.615986 ], [ -81.210938, -4.915833 ], [ -81.562500, -4.915833 ], [ -81.562500, -4.214943 ], [ -81.210938, -4.214943 ], [ -81.210938, -3.864255 ], [ -80.507812, -3.864255 ], [ -80.507812, -3.513421 ], [ -80.156250, -3.513421 ], [ -80.156250, -4.214943 ], [ -80.507812, -4.214943 ], [ -80.507812, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -78.750000, -4.915833 ], [ -78.750000, -4.214943 ], [ -78.398438, -4.214943 ], [ -78.398438, -3.864255 ], [ -78.046875, -3.864255 ], [ -78.046875, -3.513421 ], [ -77.695312, -3.513421 ], [ -77.695312, -3.162456 ], [ -77.343750, -3.162456 ], [ -77.343750, -2.811371 ], [ -76.640625, -2.811371 ], [ -76.640625, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.351560 ], [ -74.882812, -0.351560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.703107 ], [ -74.179688, -0.703107 ], [ -74.179688, -1.054628 ], [ -73.828125, -1.054628 ], [ -73.828125, -1.406109 ], [ -73.476562, -1.406109 ], [ -73.476562, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.460181 ], [ -70.312500, -2.460181 ], [ -70.312500, -2.811371 ], [ -70.664062, -2.811371 ], [ -70.664062, -3.864255 ], [ -70.312500, -3.864255 ], [ -70.312500, -4.214943 ], [ -71.367188, -4.214943 ], [ -71.367188, -4.565474 ], [ -72.070312, -4.565474 ], [ -72.070312, -4.915833 ], [ -72.773438, -4.915833 ], [ -72.773438, -5.266008 ], [ -73.125000, -5.266008 ], [ -73.125000, -5.965754 ], [ -73.476562, -5.965754 ], [ -73.476562, -6.315299 ], [ -73.125000, -6.315299 ], [ -73.125000, -6.664608 ], [ -73.828125, -6.664608 ], [ -73.828125, -7.362467 ], [ -74.179688, -7.362467 ], [ -74.179688, -8.059230 ], [ -73.828125, -8.059230 ], [ -73.828125, -8.754795 ], [ -73.125000, -8.754795 ], [ -73.125000, -9.102097 ], [ -73.476562, -9.102097 ], [ -73.476562, -9.449062 ], [ -72.773438, -9.449062 ], [ -72.773438, -9.795678 ], [ -70.664062, -9.795678 ], [ -70.664062, -10.833306 ], [ -69.609375, -10.833306 ], [ -69.609375, -11.523088 ], [ -69.257812, -11.523088 ], [ -69.257812, -12.211180 ], [ -68.906250, -12.211180 ], [ -68.906250, -13.239945 ], [ -69.257812, -13.239945 ], [ -69.257812, -14.604847 ], [ -69.609375, -14.604847 ], [ -69.609375, -15.284185 ], [ -69.257812, -15.284185 ], [ -69.257812, -15.623037 ], [ -69.609375, -15.623037 ], [ -69.609375, -15.961329 ], [ -69.257812, -15.961329 ], [ -69.257812, -16.972741 ], [ -69.609375, -16.972741 ], [ -69.609375, -17.644022 ], [ -69.960938, -17.644022 ], [ -69.960938, -18.312811 ], [ -71.015625, -18.312811 ], [ -71.015625, -17.978733 ], [ -71.718750, -17.978733 ], [ -71.718750, -17.308688 ], [ -72.070312, -17.308688 ], [ -72.070312, -16.972741 ], [ -72.773438, -16.972741 ], [ -72.773438, -16.636192 ], [ -73.476562, -16.636192 ], [ -73.476562, -16.299051 ], [ -73.828125, -16.299051 ], [ -73.828125, -15.961329 ], [ -74.531250, -15.961329 ], [ -74.531250, -15.623037 ], [ -74.882812, -15.623037 ], [ -74.882812, -15.284185 ], [ -75.585938, -15.284185 ], [ -75.585938, -14.944785 ], [ -76.289062, -14.944785 ], [ -76.289062, -14.264383 ], [ -76.640625, -14.264383 ], [ -76.640625, -13.581921 ], [ -76.289062, -13.581921 ], [ -76.289062, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.897489 ], [ -76.992188, -12.897489 ], [ -76.992188, -12.554564 ], [ -77.343750, -12.554564 ], [ -77.343750, -11.867351 ], [ -77.695312, -11.867351 ], [ -77.695312, -11.178402 ], [ -78.046875, -11.178402 ], [ -78.046875, -10.487812 ], [ -78.398438, -10.487812 ], [ -78.398438, -9.795678 ], [ -78.750000, -9.795678 ], [ -78.750000, -8.754795 ], [ -79.101562, -8.754795 ], [ -79.101562, -8.059230 ], [ -79.453125, -8.059230 ], [ -79.453125, -7.362467 ], [ -79.804688, -7.362467 ], [ -79.804688, -7.013668 ], [ -80.156250, -7.013668 ], [ -80.156250, -6.664608 ], [ -80.859375, -6.664608 ], [ -80.859375, -6.315299 ], [ -81.562500, -6.315299 ], [ -81.562500, -5.965754 ], [ -81.210938, -5.965754 ], [ -81.210938, -5.266008 ], [ -81.562500, -5.266008 ], [ -81.562500, -4.214943 ], [ -81.210938, -4.214943 ], [ -81.210938, -3.864255 ], [ -80.859375, -3.864255 ], [ -80.859375, -3.513421 ], [ -80.507812, -3.513421 ], [ -80.507812, -4.214943 ], [ -79.804688, -4.214943 ], [ -79.804688, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -79.101562, -4.915833 ], [ -79.101562, -4.565474 ], [ -78.750000, -4.565474 ], [ -78.750000, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -3.162456 ], [ -78.046875, -3.162456 ], [ -78.046875, -2.811371 ], [ -76.992188, -2.811371 ], [ -76.992188, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.351560 ] ] ], [ [ [ -75.234375, -0.351560 ], [ -75.585938, -0.351560 ], [ -75.585938, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -0.351560 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.960938, -52.696361 ], [ -70.664062, -52.696361 ], [ -70.664062, -52.908902 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.956086 ], [ -71.718750, -53.956086 ], [ -71.718750, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.330873 ], [ -73.476562, -53.330873 ], [ -73.476562, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -52.696361 ], [ -74.531250, -52.696361 ], [ -74.531250, -52.482780 ], [ -74.882812, -52.482780 ], [ -74.882812, -52.052490 ], [ -75.234375, -52.052490 ], [ -75.234375, -51.399206 ], [ -74.882812, -51.399206 ], [ -74.882812, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.513427 ], [ -75.585938, -50.513427 ], [ -75.585938, -48.224673 ], [ -75.234375, -48.224673 ], [ -75.234375, -47.754098 ], [ -74.882812, -47.754098 ], [ -74.882812, -47.517201 ], [ -74.531250, -47.517201 ], [ -74.531250, -47.279229 ], [ -74.179688, -47.279229 ], [ -74.179688, -47.040182 ], [ -74.882812, -47.040182 ], [ -74.882812, -46.800059 ], [ -75.585938, -46.800059 ], [ -75.585938, -46.558860 ], [ -75.234375, -46.558860 ], [ -75.234375, -46.316584 ], [ -74.882812, -46.316584 ], [ -74.882812, -46.073231 ], [ -74.531250, -46.073231 ], [ -74.531250, -45.089036 ], [ -74.179688, -45.089036 ], [ -74.179688, -44.087585 ], [ -73.828125, -44.087585 ], [ -73.828125, -44.339565 ], [ -73.125000, -44.339565 ], [ -73.125000, -43.325178 ], [ -72.773438, -43.325178 ], [ -72.773438, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.828125, -42.811522 ], [ -73.828125, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -40.979898 ], [ -73.828125, -40.979898 ], [ -73.828125, -39.909736 ], [ -73.476562, -39.909736 ], [ -73.476562, -39.639538 ], [ -73.125000, -39.639538 ], [ -73.125000, -38.822591 ], [ -73.476562, -38.822591 ], [ -73.476562, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.879621 ], [ -72.773438, -36.879621 ], [ -72.773438, -36.031332 ], [ -72.421875, -36.031332 ], [ -72.421875, -35.173808 ], [ -72.070312, -35.173808 ], [ -72.070312, -34.597042 ], [ -71.718750, -34.597042 ], [ -71.718750, -33.431441 ], [ -71.367188, -33.431441 ], [ -71.367188, -31.952162 ], [ -71.718750, -31.952162 ], [ -71.718750, -30.751278 ], [ -71.367188, -30.751278 ], [ -71.367188, -28.304381 ], [ -71.015625, -28.304381 ], [ -71.015625, -26.745610 ], [ -70.664062, -26.745610 ], [ -70.664062, -24.846565 ], [ -70.312500, -24.846565 ], [ -70.312500, -22.593726 ], [ -69.960938, -22.593726 ], [ -69.960938, -20.632784 ], [ -70.312500, -20.632784 ], [ -70.312500, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.646245 ], [ -68.906250, -18.646245 ], [ -68.906250, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -20.632784 ], [ -68.554688, -20.632784 ], [ -68.554688, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -22.268764 ], [ -67.851562, -22.268764 ], [ -67.851562, -22.917923 ], [ -67.148438, -22.917923 ], [ -67.148438, -23.563987 ], [ -67.500000, -23.563987 ], [ -67.500000, -24.206890 ], [ -68.203125, -24.206890 ], [ -68.203125, -24.527135 ], [ -68.554688, -24.527135 ], [ -68.554688, -26.745610 ], [ -68.203125, -26.745610 ], [ -68.203125, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.921631 ], [ -69.960938, -28.921631 ], [ -69.960938, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -31.353637 ], [ -70.664062, -31.353637 ], [ -70.664062, -31.952162 ], [ -70.312500, -31.952162 ], [ -70.312500, -32.842674 ], [ -69.960938, -32.842674 ], [ -69.960938, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -36.315125 ], [ -70.664062, -36.315125 ], [ -70.664062, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -37.996163 ], [ -70.664062, -37.996163 ], [ -70.664062, -38.822591 ], [ -71.367188, -38.822591 ], [ -71.367188, -39.368279 ], [ -71.718750, -39.368279 ], [ -71.718750, -40.446947 ], [ -72.070312, -40.446947 ], [ -72.070312, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.367188, -43.834527 ], [ -71.367188, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.367188, -44.339565 ], [ -71.367188, -45.089036 ], [ -71.718750, -45.089036 ], [ -71.718750, -46.316584 ], [ -72.070312, -46.316584 ], [ -72.070312, -47.279229 ], [ -72.421875, -47.279229 ], [ -72.421875, -48.690960 ], [ -72.773438, -48.690960 ], [ -72.773438, -49.152970 ], [ -73.125000, -49.152970 ], [ -73.125000, -49.382373 ], [ -73.476562, -49.382373 ], [ -73.476562, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -51.835778 ], [ -72.070312, -51.835778 ], [ -72.070312, -52.052490 ], [ -69.257812, -52.052490 ], [ -69.257812, -52.268157 ], [ -69.609375, -52.268157 ], [ -69.609375, -52.482780 ], [ -69.960938, -52.482780 ], [ -69.960938, -52.696361 ] ] ], [ [ [ -73.828125, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -53.330873 ] ] ], [ [ [ -69.960938, -52.696361 ], [ -68.554688, -52.696361 ], [ -68.554688, -54.775346 ], [ -67.500000, -54.775346 ], [ -67.500000, -54.977614 ], [ -66.796875, -54.977614 ], [ -66.796875, -55.178868 ], [ -67.148438, -55.178868 ], [ -67.148438, -55.379110 ], [ -67.500000, -55.379110 ], [ -67.500000, -55.578345 ], [ -69.609375, -55.578345 ], [ -69.609375, -55.379110 ], [ -69.960938, -55.379110 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -54.977614 ], [ -71.718750, -54.977614 ], [ -71.718750, -54.775346 ], [ -72.421875, -54.775346 ], [ -72.421875, -54.572062 ], [ -72.773438, -54.572062 ], [ -72.773438, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.828125, -53.748711 ], [ -73.828125, -53.330873 ], [ -73.476562, -53.330873 ], [ -73.476562, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.748711 ], [ -72.421875, -53.748711 ], [ -72.421875, -53.956086 ], [ -71.718750, -53.956086 ], [ -71.718750, -54.162434 ], [ -71.015625, -54.162434 ], [ -71.015625, -53.956086 ], [ -70.664062, -53.956086 ], [ -70.664062, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.908902 ], [ -69.960938, -52.908902 ], [ -69.960938, -52.696361 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.609375, -52.482780 ], [ -70.312500, -52.482780 ], [ -70.312500, -52.696361 ], [ -71.015625, -52.696361 ], [ -71.015625, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.120405 ], [ -73.476562, -53.120405 ], [ -73.476562, -52.908902 ], [ -73.828125, -52.908902 ], [ -73.828125, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.482780 ], [ -74.882812, -52.482780 ], [ -74.882812, -52.268157 ], [ -75.234375, -52.268157 ], [ -75.234375, -51.835778 ], [ -75.585938, -51.835778 ], [ -75.585938, -51.399206 ], [ -75.234375, -51.399206 ], [ -75.234375, -50.736455 ], [ -75.585938, -50.736455 ], [ -75.585938, -49.382373 ], [ -75.937500, -49.382373 ], [ -75.937500, -48.224673 ], [ -75.585938, -48.224673 ], [ -75.585938, -47.754098 ], [ -75.234375, -47.754098 ], [ -75.234375, -47.517201 ], [ -74.882812, -47.517201 ], [ -74.882812, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.800059 ], [ -75.234375, -46.800059 ], [ -75.234375, -46.558860 ], [ -75.585938, -46.558860 ], [ -75.585938, -46.073231 ], [ -75.234375, -46.073231 ], [ -75.234375, -45.828799 ], [ -74.882812, -45.828799 ], [ -74.882812, -44.840291 ], [ -74.531250, -44.840291 ], [ -74.531250, -44.087585 ], [ -74.179688, -44.087585 ], [ -74.179688, -44.339565 ], [ -73.476562, -44.339565 ], [ -73.476562, -43.834527 ], [ -73.125000, -43.834527 ], [ -73.125000, -42.811522 ], [ -72.773438, -42.811522 ], [ -72.773438, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.828125, -42.811522 ], [ -73.828125, -43.325178 ], [ -74.531250, -43.325178 ], [ -74.531250, -42.553080 ], [ -74.179688, -42.553080 ], [ -74.179688, -40.979898 ], [ -73.828125, -40.979898 ], [ -73.828125, -39.639538 ], [ -73.476562, -39.639538 ], [ -73.476562, -38.822591 ], [ -73.828125, -38.822591 ], [ -73.828125, -36.879621 ], [ -73.476562, -36.879621 ], [ -73.476562, -36.597889 ], [ -73.125000, -36.597889 ], [ -73.125000, -36.031332 ], [ -72.773438, -36.031332 ], [ -72.773438, -35.173808 ], [ -72.421875, -35.173808 ], [ -72.421875, -34.307144 ], [ -72.070312, -34.307144 ], [ -72.070312, -33.137551 ], [ -71.718750, -33.137551 ], [ -71.718750, -28.304381 ], [ -71.367188, -28.304381 ], [ -71.367188, -27.683528 ], [ -71.015625, -27.683528 ], [ -71.015625, -24.527135 ], [ -70.664062, -24.527135 ], [ -70.664062, -22.593726 ], [ -70.312500, -22.593726 ], [ -70.312500, -18.979026 ], [ -70.664062, -18.979026 ], [ -70.664062, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -17.644022 ], [ -69.257812, -17.644022 ], [ -69.257812, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.973349 ], [ -68.906250, -19.973349 ], [ -68.906250, -20.961440 ], [ -68.554688, -20.961440 ], [ -68.554688, -21.616579 ], [ -68.203125, -21.616579 ], [ -68.203125, -22.268764 ], [ -67.851562, -22.268764 ], [ -67.851562, -22.593726 ], [ -67.148438, -22.593726 ], [ -67.148438, -23.563987 ], [ -67.500000, -23.563987 ], [ -67.500000, -23.885838 ], [ -67.851562, -23.885838 ], [ -67.851562, -24.206890 ], [ -68.554688, -24.206890 ], [ -68.554688, -26.431228 ], [ -68.906250, -26.431228 ], [ -68.906250, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -27.059126 ], [ -68.906250, -27.059126 ], [ -68.906250, -27.371767 ], [ -69.257812, -27.371767 ], [ -69.257812, -27.683528 ], [ -69.609375, -27.683528 ], [ -69.609375, -28.304381 ], [ -69.960938, -28.304381 ], [ -69.960938, -28.921631 ], [ -70.312500, -28.921631 ], [ -70.312500, -29.840644 ], [ -69.960938, -29.840644 ], [ -69.960938, -30.448674 ], [ -70.312500, -30.448674 ], [ -70.312500, -31.052934 ], [ -70.664062, -31.052934 ], [ -70.664062, -32.249974 ], [ -70.312500, -32.249974 ], [ -70.312500, -33.137551 ], [ -69.960938, -33.137551 ], [ -69.960938, -34.307144 ], [ -70.312500, -34.307144 ], [ -70.312500, -34.885931 ], [ -70.664062, -34.885931 ], [ -70.664062, -36.031332 ], [ -71.015625, -36.031332 ], [ -71.015625, -36.597889 ], [ -71.367188, -36.597889 ], [ -71.367188, -37.996163 ], [ -71.015625, -37.996163 ], [ -71.015625, -38.822591 ], [ -71.718750, -38.822591 ], [ -71.718750, -40.178873 ], [ -72.070312, -40.178873 ], [ -72.070312, -42.032974 ], [ -72.421875, -42.032974 ], [ -72.421875, -42.811522 ], [ -72.070312, -42.811522 ], [ -72.070312, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -72.070312, -43.834527 ], [ -72.070312, -44.339565 ], [ -71.367188, -44.339565 ], [ -71.367188, -44.840291 ], [ -71.718750, -44.840291 ], [ -71.718750, -46.073231 ], [ -72.070312, -46.073231 ], [ -72.070312, -47.040182 ], [ -72.421875, -47.040182 ], [ -72.421875, -47.517201 ], [ -72.773438, -47.517201 ], [ -72.773438, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -48.458352 ], [ -72.773438, -48.458352 ], [ -72.773438, -48.922499 ], [ -73.125000, -48.922499 ], [ -73.125000, -49.152970 ], [ -73.476562, -49.152970 ], [ -73.476562, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -51.618017 ], [ -72.070312, -51.618017 ], [ -72.070312, -51.835778 ], [ -71.015625, -51.835778 ], [ -71.015625, -52.052490 ], [ -69.609375, -52.052490 ], [ -69.609375, -52.482780 ] ] ], [ [ [ -69.609375, -52.482780 ], [ -68.906250, -52.482780 ], [ -68.906250, -54.775346 ], [ -67.148438, -54.775346 ], [ -67.148438, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -55.379110 ], [ -67.851562, -55.379110 ], [ -67.851562, -55.578345 ], [ -69.257812, -55.578345 ], [ -69.257812, -55.379110 ], [ -69.960938, -55.379110 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -54.977614 ], [ -71.367188, -54.977614 ], [ -71.367188, -54.775346 ], [ -72.070312, -54.775346 ], [ -72.070312, -54.572062 ], [ -72.421875, -54.572062 ], [ -72.421875, -54.367759 ], [ -72.773438, -54.367759 ], [ -72.773438, -54.162434 ], [ -73.476562, -54.162434 ], [ -73.476562, -53.956086 ], [ -73.828125, -53.956086 ], [ -73.828125, -53.540307 ], [ -74.179688, -53.540307 ], [ -74.179688, -53.330873 ], [ -74.531250, -53.330873 ], [ -74.531250, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.956086 ], [ -71.015625, -53.956086 ], [ -71.015625, -53.748711 ], [ -70.664062, -53.748711 ], [ -70.664062, -53.330873 ], [ -70.312500, -53.330873 ], [ -70.312500, -52.908902 ], [ -69.960938, -52.908902 ], [ -69.960938, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.482780 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.211180 ], [ -64.687500, -12.211180 ], [ -64.687500, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.897489 ], [ -62.929688, -12.897489 ], [ -62.929688, -13.239945 ], [ -62.226562, -13.239945 ], [ -62.226562, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -14.604847 ], [ -60.117188, -14.604847 ], [ -60.117188, -14.944785 ], [ -60.468750, -14.944785 ], [ -60.468750, -15.623037 ], [ -60.117188, -15.623037 ], [ -60.117188, -16.299051 ], [ -58.359375, -16.299051 ], [ -58.359375, -17.644022 ], [ -57.656250, -17.644022 ], [ -57.656250, -19.311143 ], [ -58.007812, -19.311143 ], [ -58.007812, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -19.642588 ], [ -59.062500, -19.642588 ], [ -59.062500, -19.311143 ], [ -60.820312, -19.311143 ], [ -60.820312, -19.642588 ], [ -61.875000, -19.642588 ], [ -61.875000, -20.303418 ], [ -62.226562, -20.303418 ], [ -62.226562, -21.616579 ], [ -62.578125, -21.616579 ], [ -62.578125, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.917923 ], [ -64.687500, -22.917923 ], [ -64.687500, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -22.268764 ], [ -66.796875, -22.268764 ], [ -66.796875, -22.593726 ], [ -67.148438, -22.593726 ], [ -67.148438, -22.917923 ], [ -67.851562, -22.917923 ], [ -67.851562, -22.268764 ], [ -68.203125, -22.268764 ], [ -68.203125, -21.289374 ], [ -68.554688, -21.289374 ], [ -68.554688, -20.632784 ], [ -68.906250, -20.632784 ], [ -68.906250, -19.973349 ], [ -68.554688, -19.973349 ], [ -68.554688, -19.311143 ], [ -68.906250, -19.311143 ], [ -68.906250, -18.646245 ], [ -69.257812, -18.646245 ], [ -69.257812, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.644022 ], [ -69.257812, -17.644022 ], [ -69.257812, -16.972741 ], [ -68.906250, -16.972741 ], [ -68.906250, -16.299051 ], [ -69.257812, -16.299051 ], [ -69.257812, -14.944785 ], [ -68.906250, -14.944785 ], [ -68.906250, -12.897489 ], [ -68.554688, -12.897489 ], [ -68.554688, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -11.867351 ], [ -69.257812, -11.867351 ], [ -69.257812, -11.178402 ], [ -68.203125, -11.178402 ], [ -68.203125, -10.833306 ], [ -67.851562, -10.833306 ], [ -67.851562, -10.487812 ], [ -67.148438, -10.487812 ], [ -67.148438, -10.141932 ], [ -66.796875, -10.141932 ], [ -66.796875, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.449062 ], [ -65.390625, -10.141932 ], [ -65.742188, -10.141932 ], [ -65.742188, -10.833306 ], [ -65.390625, -10.833306 ], [ -65.390625, -11.178402 ], [ -65.742188, -11.178402 ], [ -65.742188, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.211180 ], [ -63.984375, -12.211180 ], [ -63.984375, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.897489 ], [ -62.226562, -12.897489 ], [ -62.226562, -13.239945 ], [ -61.171875, -13.239945 ], [ -61.171875, -13.581921 ], [ -60.820312, -13.581921 ], [ -60.820312, -13.923404 ], [ -60.468750, -13.923404 ], [ -60.468750, -14.944785 ], [ -60.820312, -14.944785 ], [ -60.820312, -15.623037 ], [ -60.468750, -15.623037 ], [ -60.468750, -15.961329 ], [ -59.765625, -15.961329 ], [ -59.765625, -16.299051 ], [ -58.359375, -16.299051 ], [ -58.359375, -16.636192 ], [ -58.710938, -16.636192 ], [ -58.710938, -16.972741 ], [ -58.359375, -16.972741 ], [ -58.359375, -17.308688 ], [ -58.007812, -17.308688 ], [ -58.007812, -17.644022 ], [ -57.656250, -17.644022 ], [ -57.656250, -18.312811 ], [ -58.007812, -18.312811 ], [ -58.007812, -19.973349 ], [ -58.359375, -19.973349 ], [ -58.359375, -19.642588 ], [ -59.062500, -19.642588 ], [ -59.062500, -19.311143 ], [ -61.875000, -19.311143 ], [ -61.875000, -19.642588 ], [ -62.226562, -19.642588 ], [ -62.226562, -20.303418 ], [ -62.578125, -20.303418 ], [ -62.578125, -21.616579 ], [ -62.929688, -21.616579 ], [ -62.929688, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.268764 ], [ -64.335938, -22.268764 ], [ -64.335938, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -21.616579 ], [ -66.445312, -21.616579 ], [ -66.445312, -21.943046 ], [ -66.796875, -21.943046 ], [ -66.796875, -22.593726 ], [ -67.851562, -22.593726 ], [ -67.851562, -22.268764 ], [ -68.203125, -22.268764 ], [ -68.203125, -21.616579 ], [ -68.554688, -21.616579 ], [ -68.554688, -20.961440 ], [ -68.906250, -20.961440 ], [ -68.906250, -19.973349 ], [ -68.554688, -19.973349 ], [ -68.554688, -19.311143 ], [ -69.257812, -19.311143 ], [ -69.257812, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -15.961329 ], [ -69.609375, -15.961329 ], [ -69.609375, -15.623037 ], [ -69.257812, -15.623037 ], [ -69.257812, -15.284185 ], [ -69.609375, -15.284185 ], [ -69.609375, -14.604847 ], [ -69.257812, -14.604847 ], [ -69.257812, -13.239945 ], [ -68.906250, -13.239945 ], [ -68.906250, -12.211180 ], [ -69.257812, -12.211180 ], [ -69.257812, -11.523088 ], [ -69.609375, -11.523088 ], [ -69.609375, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -10.487812 ], [ -67.500000, -10.487812 ], [ -67.500000, -10.141932 ], [ -66.796875, -10.141932 ], [ -66.796875, -9.795678 ], [ -65.742188, -9.795678 ], [ -65.742188, -9.449062 ], [ -65.390625, -9.449062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -49.921875, 1.757537 ], [ -49.921875, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.625000, 0.351560 ], [ -50.625000, 0.000000 ], [ -49.570312, 0.000000 ], [ -49.570312, -0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -48.164062, -1.406109 ], [ -48.164062, -1.054628 ], [ -47.812500, -1.054628 ], [ -47.812500, -0.703107 ], [ -47.460938, -0.703107 ], [ -47.460938, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.296875, -2.108899 ], [ -44.296875, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.811371 ], [ -43.945312, -2.811371 ], [ -43.945312, -2.460181 ], [ -42.890625, -2.460181 ], [ -42.890625, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.162456 ], [ -39.726562, -3.162456 ], [ -39.726562, -3.513421 ], [ -39.023438, -3.513421 ], [ -39.023438, -3.864255 ], [ -38.671875, -3.864255 ], [ -38.671875, -4.214943 ], [ -38.320312, -4.214943 ], [ -38.320312, -4.565474 ], [ -37.617188, -4.565474 ], [ -37.617188, -4.915833 ], [ -37.265625, -4.915833 ], [ -37.265625, -5.266008 ], [ -35.507812, -5.266008 ], [ -35.507812, -5.615986 ], [ -35.156250, -5.615986 ], [ -35.156250, -6.315299 ], [ -34.804688, -6.315299 ], [ -34.804688, -8.407168 ], [ -35.156250, -8.407168 ], [ -35.156250, -9.449062 ], [ -35.507812, -9.449062 ], [ -35.507812, -10.141932 ], [ -35.859375, -10.141932 ], [ -35.859375, -10.487812 ], [ -36.210938, -10.487812 ], [ -36.210938, -10.833306 ], [ -36.562500, -10.833306 ], [ -36.562500, -11.178402 ], [ -36.914062, -11.178402 ], [ -36.914062, -11.523088 ], [ -37.265625, -11.523088 ], [ -37.265625, -12.211180 ], [ -37.617188, -12.211180 ], [ -37.617188, -12.554564 ], [ -37.968750, -12.554564 ], [ -37.968750, -12.897489 ], [ -38.671875, -12.897489 ], [ -38.671875, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -17.644022 ], [ -39.375000, -17.644022 ], [ -39.375000, -18.312811 ], [ -39.726562, -18.312811 ], [ -39.726562, -19.973349 ], [ -40.078125, -19.973349 ], [ -40.078125, -20.303418 ], [ -40.429688, -20.303418 ], [ -40.429688, -20.961440 ], [ -40.781250, -20.961440 ], [ -40.781250, -21.943046 ], [ -41.132812, -21.943046 ], [ -41.132812, -22.268764 ], [ -41.835938, -22.268764 ], [ -41.835938, -22.917923 ], [ -43.593750, -22.917923 ], [ -43.593750, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.885838 ], [ -45.703125, -23.885838 ], [ -45.703125, -24.206890 ], [ -46.406250, -24.206890 ], [ -46.406250, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -24.846565 ], [ -47.812500, -24.846565 ], [ -47.812500, -25.165173 ], [ -48.164062, -25.165173 ], [ -48.164062, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -28.613459 ], [ -48.867188, -28.613459 ], [ -48.867188, -28.921631 ], [ -49.218750, -28.921631 ], [ -49.218750, -29.228890 ], [ -49.570312, -29.228890 ], [ -49.570312, -29.535230 ], [ -49.921875, -29.535230 ], [ -49.921875, -30.145127 ], [ -50.273438, -30.145127 ], [ -50.273438, -30.751278 ], [ -50.625000, -30.751278 ], [ -50.625000, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.653381 ], [ -51.679688, -31.653381 ], [ -51.679688, -31.952162 ], [ -52.031250, -31.952162 ], [ -52.031250, -32.249974 ], [ -52.382812, -32.249974 ], [ -52.382812, -32.842674 ], [ -52.734375, -32.842674 ], [ -52.734375, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.789062, -33.431441 ], [ -53.789062, -33.137551 ], [ -53.085938, -33.137551 ], [ -53.085938, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.052934 ], [ -55.546875, -31.052934 ], [ -55.546875, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.448674 ], [ -56.953125, -30.448674 ], [ -56.953125, -30.145127 ], [ -57.304688, -30.145127 ], [ -57.304688, -29.840644 ], [ -56.953125, -29.840644 ], [ -56.953125, -29.535230 ], [ -56.601562, -29.535230 ], [ -56.601562, -29.228890 ], [ -56.250000, -29.228890 ], [ -56.250000, -28.921631 ], [ -55.898438, -28.921631 ], [ -55.898438, -28.613459 ], [ -55.546875, -28.613459 ], [ -55.546875, -28.304381 ], [ -55.195312, -28.304381 ], [ -55.195312, -27.994401 ], [ -54.843750, -27.994401 ], [ -54.843750, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.371767 ], [ -53.789062, -27.371767 ], [ -53.789062, -25.799891 ], [ -54.492188, -25.799891 ], [ -54.492188, -24.846565 ], [ -54.140625, -24.846565 ], [ -54.140625, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -22.593726 ], [ -55.898438, -22.593726 ], [ -55.898438, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -21.943046 ], [ -58.007812, -21.943046 ], [ -58.007812, -19.311143 ], [ -57.656250, -19.311143 ], [ -57.656250, -17.644022 ], [ -58.359375, -17.644022 ], [ -58.359375, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.117188, -15.623037 ], [ -60.468750, -15.623037 ], [ -60.468750, -14.944785 ], [ -60.117188, -14.944785 ], [ -60.117188, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.923404 ], [ -61.171875, -13.923404 ], [ -61.171875, -13.581921 ], [ -62.226562, -13.581921 ], [ -62.226562, -13.239945 ], [ -62.929688, -13.239945 ], [ -62.929688, -12.897489 ], [ -63.281250, -12.897489 ], [ -63.281250, -12.554564 ], [ -64.687500, -12.554564 ], [ -64.687500, -12.211180 ], [ -65.039062, -12.211180 ], [ -65.039062, -11.867351 ], [ -65.390625, -11.867351 ], [ -65.390625, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.141932 ], [ -67.148438, -10.141932 ], [ -67.148438, -10.487812 ], [ -67.851562, -10.487812 ], [ -67.851562, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -11.178402 ], [ -70.664062, -11.178402 ], [ -70.664062, -10.487812 ], [ -70.312500, -10.487812 ], [ -70.312500, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -10.141932 ], [ -72.070312, -10.141932 ], [ -72.070312, -9.795678 ], [ -72.421875, -9.795678 ], [ -72.421875, -9.449062 ], [ -73.125000, -9.449062 ], [ -73.125000, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.059230 ], [ -73.828125, -8.059230 ], [ -73.828125, -7.013668 ], [ -73.125000, -7.013668 ], [ -73.125000, -5.615986 ], [ -72.773438, -5.615986 ], [ -72.773438, -5.266008 ], [ -72.421875, -5.266008 ], [ -72.421875, -4.915833 ], [ -71.718750, -4.915833 ], [ -71.718750, -4.565474 ], [ -70.664062, -4.565474 ], [ -70.664062, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, -1.406109 ], [ -69.257812, -1.406109 ], [ -69.257812, -1.054628 ], [ -69.609375, -1.054628 ], [ -69.609375, -0.703107 ], [ -69.960938, -0.703107 ], [ -69.960938, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.054628 ], [ -66.445312, 1.054628 ], [ -66.445312, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.054628 ], [ -64.687500, 1.054628 ], [ -64.687500, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 1.757537 ], [ -49.921875, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.273438, 1.757537 ], [ -50.273438, 0.703107 ], [ -50.625000, 0.703107 ], [ -50.625000, 0.351560 ], [ -50.976562, 0.351560 ], [ -50.976562, 0.000000 ], [ -48.867188, 0.000000 ], [ -48.867188, -1.054628 ], [ -48.515625, -1.054628 ], [ -48.515625, -0.703107 ], [ -48.164062, -0.703107 ], [ -48.164062, -0.351560 ], [ -47.812500, -0.351560 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.054628 ], [ -45.703125, -1.054628 ], [ -45.703125, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.460181 ], [ -43.945312, -2.460181 ], [ -43.945312, -2.108899 ], [ -43.242188, -2.108899 ], [ -43.242188, -2.460181 ], [ -42.187500, -2.460181 ], [ -42.187500, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -3.162456 ], [ -39.375000, -3.162456 ], [ -39.375000, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -3.864255 ], [ -38.320312, -3.864255 ], [ -38.320312, -4.214943 ], [ -37.617188, -4.214943 ], [ -37.617188, -4.565474 ], [ -37.265625, -4.565474 ], [ -37.265625, -4.915833 ], [ -35.859375, -4.915833 ], [ -35.859375, -5.266008 ], [ -35.507812, -5.266008 ], [ -35.507812, -5.965754 ], [ -35.156250, -5.965754 ], [ -35.156250, -7.013668 ], [ -34.804688, -7.013668 ], [ -34.804688, -8.059230 ], [ -35.156250, -8.059230 ], [ -35.156250, -9.102097 ], [ -35.507812, -9.102097 ], [ -35.507812, -9.449062 ], [ -35.859375, -9.449062 ], [ -35.859375, -9.795678 ], [ -36.210938, -9.795678 ], [ -36.210938, -10.141932 ], [ -36.562500, -10.141932 ], [ -36.562500, -10.487812 ], [ -36.914062, -10.487812 ], [ -36.914062, -10.833306 ], [ -37.265625, -10.833306 ], [ -37.265625, -11.178402 ], [ -37.617188, -11.178402 ], [ -37.617188, -11.867351 ], [ -37.968750, -11.867351 ], [ -37.968750, -12.211180 ], [ -38.320312, -12.211180 ], [ -38.320312, -12.897489 ], [ -38.671875, -12.897489 ], [ -38.671875, -13.239945 ], [ -39.023438, -13.239945 ], [ -39.023438, -16.299051 ], [ -39.375000, -16.299051 ], [ -39.375000, -17.978733 ], [ -39.726562, -17.978733 ], [ -39.726562, -18.646245 ], [ -40.078125, -18.646245 ], [ -40.078125, -19.642588 ], [ -40.429688, -19.642588 ], [ -40.429688, -20.303418 ], [ -40.781250, -20.303418 ], [ -40.781250, -21.289374 ], [ -41.132812, -21.289374 ], [ -41.132812, -21.943046 ], [ -41.484375, -21.943046 ], [ -41.484375, -22.268764 ], [ -41.835938, -22.268764 ], [ -41.835938, -22.593726 ], [ -42.187500, -22.593726 ], [ -42.187500, -22.917923 ], [ -43.593750, -22.917923 ], [ -43.593750, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.563987 ], [ -45.703125, -23.563987 ], [ -45.703125, -23.885838 ], [ -46.757812, -23.885838 ], [ -46.757812, -24.206890 ], [ -47.109375, -24.206890 ], [ -47.109375, -24.527135 ], [ -47.460938, -24.527135 ], [ -47.460938, -24.846565 ], [ -47.812500, -24.846565 ], [ -47.812500, -25.165173 ], [ -48.164062, -25.165173 ], [ -48.164062, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -26.115986 ], [ -48.867188, -26.115986 ], [ -48.867188, -26.745610 ], [ -48.515625, -26.745610 ], [ -48.515625, -27.683528 ], [ -48.867188, -27.683528 ], [ -48.867188, -28.304381 ], [ -49.218750, -28.304381 ], [ -49.218750, -28.921631 ], [ -49.921875, -28.921631 ], [ -49.921875, -29.228890 ], [ -50.273438, -29.228890 ], [ -50.273438, -29.840644 ], [ -50.625000, -29.840644 ], [ -50.625000, -30.448674 ], [ -50.976562, -30.448674 ], [ -50.976562, -31.052934 ], [ -51.328125, -31.052934 ], [ -51.328125, -31.653381 ], [ -51.679688, -31.653381 ], [ -51.679688, -31.952162 ], [ -52.382812, -31.952162 ], [ -52.382812, -32.546813 ], [ -52.734375, -32.546813 ], [ -52.734375, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.789062, -33.431441 ], [ -53.789062, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.653381 ], [ -54.843750, -31.653381 ], [ -54.843750, -31.353637 ], [ -55.195312, -31.353637 ], [ -55.195312, -31.052934 ], [ -55.898438, -31.052934 ], [ -55.898438, -30.751278 ], [ -56.601562, -30.751278 ], [ -56.601562, -30.448674 ], [ -56.953125, -30.448674 ], [ -56.953125, -30.145127 ], [ -57.304688, -30.145127 ], [ -57.304688, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -28.921631 ], [ -56.601562, -28.921631 ], [ -56.601562, -28.613459 ], [ -56.250000, -28.613459 ], [ -56.250000, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.371767 ], [ -54.140625, -27.371767 ], [ -54.140625, -27.059126 ], [ -53.789062, -27.059126 ], [ -53.789062, -25.799891 ], [ -54.140625, -25.799891 ], [ -54.140625, -25.482951 ], [ -54.843750, -25.482951 ], [ -54.843750, -25.165173 ], [ -54.492188, -25.165173 ], [ -54.492188, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -23.241346 ], [ -55.898438, -23.241346 ], [ -55.898438, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -21.943046 ], [ -58.007812, -21.943046 ], [ -58.007812, -20.303418 ], [ -58.359375, -20.303418 ], [ -58.359375, -19.973349 ], [ -58.007812, -19.973349 ], [ -58.007812, -18.312811 ], [ -57.656250, -18.312811 ], [ -57.656250, -17.644022 ], [ -58.007812, -17.644022 ], [ -58.007812, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.972741 ], [ -58.710938, -16.972741 ], [ -58.710938, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -16.299051 ], [ -59.765625, -16.299051 ], [ -59.765625, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -15.623037 ], [ -60.820312, -15.623037 ], [ -60.820312, -14.944785 ], [ -60.468750, -14.944785 ], [ -60.468750, -13.923404 ], [ -60.820312, -13.923404 ], [ -60.820312, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.239945 ], [ -62.226562, -13.239945 ], [ -62.226562, -12.897489 ], [ -63.281250, -12.897489 ], [ -63.281250, -12.554564 ], [ -63.984375, -12.554564 ], [ -63.984375, -12.211180 ], [ -65.039062, -12.211180 ], [ -65.039062, -11.867351 ], [ -65.742188, -11.867351 ], [ -65.742188, -11.178402 ], [ -65.390625, -11.178402 ], [ -65.390625, -10.833306 ], [ -65.742188, -10.833306 ], [ -65.742188, -10.141932 ], [ -65.390625, -10.141932 ], [ -65.390625, -9.449062 ], [ -65.742188, -9.449062 ], [ -65.742188, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -10.141932 ], [ -67.500000, -10.141932 ], [ -67.500000, -10.487812 ], [ -68.203125, -10.487812 ], [ -68.203125, -10.833306 ], [ -70.664062, -10.833306 ], [ -70.664062, -9.795678 ], [ -72.773438, -9.795678 ], [ -72.773438, -9.449062 ], [ -73.476562, -9.449062 ], [ -73.476562, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -8.754795 ], [ -73.828125, -8.754795 ], [ -73.828125, -8.059230 ], [ -74.179688, -8.059230 ], [ -74.179688, -7.362467 ], [ -73.828125, -7.362467 ], [ -73.828125, -6.664608 ], [ -73.125000, -6.664608 ], [ -73.125000, -6.315299 ], [ -73.476562, -6.315299 ], [ -73.476562, -5.965754 ], [ -73.125000, -5.965754 ], [ -73.125000, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -4.915833 ], [ -72.070312, -4.915833 ], [ -72.070312, -4.565474 ], [ -71.367188, -4.565474 ], [ -71.367188, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -2.811371 ], [ -69.609375, -2.811371 ], [ -69.609375, -0.351560 ], [ -70.312500, -0.351560 ], [ -70.312500, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.500000, 1.757537 ], [ -67.500000, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 1.406109 ], [ -64.335938, 1.406109 ], [ -64.335938, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 1.406109 ], [ -58.710938, 1.406109 ], [ -58.710938, 1.757537 ], [ -50.273438, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -19.973349 ], [ -58.007812, -19.973349 ], [ -58.007812, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -22.268764 ], [ -55.898438, -22.268764 ], [ -55.898438, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.885838 ], [ -54.140625, -23.885838 ], [ -54.140625, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -26.431228 ], [ -54.843750, -26.431228 ], [ -54.843750, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -27.371767 ], [ -55.898438, -27.371767 ], [ -55.898438, -27.683528 ], [ -57.304688, -27.683528 ], [ -57.304688, -27.371767 ], [ -58.359375, -27.371767 ], [ -58.359375, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.165173 ], [ -58.359375, -25.165173 ], [ -58.359375, -24.846565 ], [ -59.062500, -24.846565 ], [ -59.062500, -24.527135 ], [ -59.765625, -24.527135 ], [ -59.765625, -24.206890 ], [ -60.117188, -24.206890 ], [ -60.117188, -23.885838 ], [ -61.171875, -23.885838 ], [ -61.171875, -23.563987 ], [ -61.523438, -23.563987 ], [ -61.523438, -23.241346 ], [ -61.875000, -23.241346 ], [ -61.875000, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -21.616579 ], [ -62.226562, -21.616579 ], [ -62.226562, -20.303418 ], [ -61.875000, -20.303418 ], [ -61.875000, -19.642588 ], [ -60.820312, -19.642588 ], [ -60.820312, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -20.303418 ], [ -58.007812, -20.303418 ], [ -58.007812, -21.943046 ], [ -57.656250, -21.943046 ], [ -57.656250, -22.268764 ], [ -55.898438, -22.268764 ], [ -55.898438, -23.241346 ], [ -55.546875, -23.241346 ], [ -55.546875, -23.885838 ], [ -54.492188, -23.885838 ], [ -54.492188, -25.165173 ], [ -54.843750, -25.165173 ], [ -54.843750, -26.745610 ], [ -55.195312, -26.745610 ], [ -55.195312, -27.059126 ], [ -55.546875, -27.059126 ], [ -55.546875, -27.371767 ], [ -58.359375, -27.371767 ], [ -58.359375, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.165173 ], [ -58.007812, -25.165173 ], [ -58.007812, -24.846565 ], [ -58.710938, -24.846565 ], [ -58.710938, -24.527135 ], [ -59.414062, -24.527135 ], [ -59.414062, -24.206890 ], [ -60.117188, -24.206890 ], [ -60.117188, -23.885838 ], [ -60.820312, -23.885838 ], [ -60.820312, -23.563987 ], [ -61.523438, -23.563987 ], [ -61.523438, -23.241346 ], [ -61.875000, -23.241346 ], [ -61.875000, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -21.616579 ], [ -62.578125, -21.616579 ], [ -62.578125, -20.303418 ], [ -62.226562, -20.303418 ], [ -62.226562, -19.642588 ], [ -61.875000, -19.642588 ], [ -61.875000, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.203125, -52.908902 ], [ -68.203125, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.162434 ], [ -66.796875, -54.162434 ], [ -66.796875, -54.367759 ], [ -66.445312, -54.367759 ], [ -66.445312, -54.572062 ], [ -65.742188, -54.572062 ], [ -65.742188, -54.775346 ], [ -65.039062, -54.775346 ], [ -65.039062, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -66.796875, -55.178868 ], [ -66.796875, -54.977614 ], [ -67.500000, -54.977614 ], [ -67.500000, -54.775346 ], [ -68.554688, -54.775346 ], [ -68.554688, -52.908902 ], [ -68.203125, -52.908902 ] ] ], [ [ [ -62.929688, -21.943046 ], [ -62.929688, -22.268764 ], [ -62.578125, -22.268764 ], [ -62.578125, -22.593726 ], [ -62.226562, -22.593726 ], [ -62.226562, -22.917923 ], [ -61.875000, -22.917923 ], [ -61.875000, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.885838 ], [ -60.117188, -23.885838 ], [ -60.117188, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -24.846565 ], [ -58.359375, -24.846565 ], [ -58.359375, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -25.799891 ], [ -58.007812, -25.799891 ], [ -58.007812, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.371767 ], [ -57.304688, -27.371767 ], [ -57.304688, -27.683528 ], [ -55.898438, -27.683528 ], [ -55.898438, -27.371767 ], [ -55.195312, -27.371767 ], [ -55.195312, -27.059126 ], [ -54.843750, -27.059126 ], [ -54.843750, -26.431228 ], [ -54.492188, -26.431228 ], [ -54.492188, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -27.371767 ], [ -54.492188, -27.371767 ], [ -54.492188, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.613459 ], [ -55.898438, -28.613459 ], [ -55.898438, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.228890 ], [ -56.601562, -29.228890 ], [ -56.601562, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.840644 ], [ -57.304688, -29.840644 ], [ -57.304688, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.751278 ], [ -58.007812, -30.751278 ], [ -58.007812, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -34.597042 ], [ -58.007812, -34.597042 ], [ -58.007812, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.173808 ], [ -57.304688, -35.173808 ], [ -57.304688, -36.315125 ], [ -56.601562, -36.315125 ], [ -56.601562, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.439974 ], [ -57.304688, -37.439974 ], [ -57.304688, -37.996163 ], [ -57.656250, -37.996163 ], [ -57.656250, -38.548165 ], [ -58.359375, -38.548165 ], [ -58.359375, -38.822591 ], [ -62.226562, -38.822591 ], [ -62.226562, -40.979898 ], [ -62.929688, -40.979898 ], [ -62.929688, -41.244772 ], [ -63.984375, -41.244772 ], [ -63.984375, -40.979898 ], [ -65.039062, -40.979898 ], [ -65.039062, -42.293564 ], [ -63.632812, -42.293564 ], [ -63.632812, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.580391 ], [ -65.039062, -43.580391 ], [ -65.039062, -44.087585 ], [ -65.390625, -44.087585 ], [ -65.390625, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.336702 ], [ -66.796875, -45.336702 ], [ -66.796875, -45.583290 ], [ -67.148438, -45.583290 ], [ -67.148438, -46.073231 ], [ -67.500000, -46.073231 ], [ -67.500000, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.800059 ], [ -66.796875, -46.800059 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.279229 ], [ -65.742188, -47.279229 ], [ -65.742188, -47.754098 ], [ -66.093750, -47.754098 ], [ -66.093750, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.610710 ], [ -67.851562, -49.610710 ], [ -67.851562, -50.064192 ], [ -68.203125, -50.064192 ], [ -68.203125, -50.289339 ], [ -68.554688, -50.289339 ], [ -68.554688, -50.513427 ], [ -68.906250, -50.513427 ], [ -68.906250, -50.736455 ], [ -69.257812, -50.736455 ], [ -69.257812, -51.399206 ], [ -68.906250, -51.399206 ], [ -68.906250, -52.052490 ], [ -68.554688, -52.052490 ], [ -68.554688, -52.268157 ], [ -69.257812, -52.268157 ], [ -69.257812, -52.052490 ], [ -72.070312, -52.052490 ], [ -72.070312, -51.835778 ], [ -72.421875, -51.835778 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.476562, -50.513427 ], [ -73.476562, -49.382373 ], [ -73.125000, -49.382373 ], [ -73.125000, -49.152970 ], [ -72.773438, -49.152970 ], [ -72.773438, -48.690960 ], [ -72.421875, -48.690960 ], [ -72.421875, -47.279229 ], [ -72.070312, -47.279229 ], [ -72.070312, -46.316584 ], [ -71.718750, -46.316584 ], [ -71.718750, -45.089036 ], [ -71.367188, -45.089036 ], [ -71.367188, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.367188, -44.087585 ], [ -71.367188, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -72.070312, -43.580391 ], [ -72.070312, -42.293564 ], [ -71.718750, -42.293564 ], [ -71.718750, -41.508577 ], [ -72.070312, -41.508577 ], [ -72.070312, -40.446947 ], [ -71.718750, -40.446947 ], [ -71.718750, -39.368279 ], [ -71.367188, -39.368279 ], [ -71.367188, -38.822591 ], [ -70.664062, -38.822591 ], [ -70.664062, -37.996163 ], [ -71.015625, -37.996163 ], [ -71.015625, -36.597889 ], [ -70.664062, -36.597889 ], [ -70.664062, -36.315125 ], [ -70.312500, -36.315125 ], [ -70.312500, -34.885931 ], [ -69.960938, -34.885931 ], [ -69.960938, -32.842674 ], [ -70.312500, -32.842674 ], [ -70.312500, -31.952162 ], [ -70.664062, -31.952162 ], [ -70.664062, -31.353637 ], [ -70.312500, -31.353637 ], [ -70.312500, -30.751278 ], [ -69.960938, -30.751278 ], [ -69.960938, -28.921631 ], [ -69.609375, -28.921631 ], [ -69.609375, -28.304381 ], [ -69.257812, -28.304381 ], [ -69.257812, -27.683528 ], [ -68.906250, -27.683528 ], [ -68.906250, -27.371767 ], [ -68.554688, -27.371767 ], [ -68.554688, -27.059126 ], [ -68.203125, -27.059126 ], [ -68.203125, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -24.527135 ], [ -68.203125, -24.527135 ], [ -68.203125, -24.206890 ], [ -67.500000, -24.206890 ], [ -67.500000, -23.563987 ], [ -67.148438, -23.563987 ], [ -67.148438, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -22.268764 ], [ -66.445312, -22.268764 ], [ -66.445312, -21.943046 ], [ -65.039062, -21.943046 ], [ -65.039062, -22.268764 ], [ -64.687500, -22.268764 ], [ -64.687500, -22.917923 ], [ -64.335938, -22.917923 ], [ -64.335938, -22.593726 ], [ -63.984375, -22.593726 ], [ -63.984375, -21.943046 ], [ -62.929688, -21.943046 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.554688, -52.696361 ], [ -68.554688, -53.120405 ], [ -68.203125, -53.120405 ], [ -68.203125, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.162434 ], [ -67.148438, -54.162434 ], [ -67.148438, -54.367759 ], [ -66.445312, -54.367759 ], [ -66.445312, -54.572062 ], [ -65.390625, -54.572062 ], [ -65.390625, -54.977614 ], [ -65.742188, -54.977614 ], [ -65.742188, -55.178868 ], [ -66.796875, -55.178868 ], [ -66.796875, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -54.775346 ], [ -68.906250, -54.775346 ], [ -68.906250, -52.696361 ], [ -68.554688, -52.696361 ] ] ], [ [ [ -66.093750, -21.616579 ], [ -66.093750, -21.943046 ], [ -65.039062, -21.943046 ], [ -65.039062, -22.268764 ], [ -64.687500, -22.268764 ], [ -64.687500, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.268764 ], [ -63.984375, -22.268764 ], [ -63.984375, -21.943046 ], [ -62.929688, -21.943046 ], [ -62.929688, -22.268764 ], [ -62.578125, -22.268764 ], [ -62.578125, -22.593726 ], [ -62.226562, -22.593726 ], [ -62.226562, -22.917923 ], [ -61.875000, -22.917923 ], [ -61.875000, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.563987 ], [ -60.820312, -23.563987 ], [ -60.820312, -23.885838 ], [ -60.117188, -23.885838 ], [ -60.117188, -24.206890 ], [ -59.414062, -24.206890 ], [ -59.414062, -24.527135 ], [ -58.710938, -24.527135 ], [ -58.710938, -24.846565 ], [ -58.007812, -24.846565 ], [ -58.007812, -25.165173 ], [ -57.656250, -25.165173 ], [ -57.656250, -25.799891 ], [ -58.007812, -25.799891 ], [ -58.007812, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -27.371767 ], [ -55.546875, -27.371767 ], [ -55.546875, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -26.745610 ], [ -54.843750, -26.745610 ], [ -54.843750, -25.482951 ], [ -54.140625, -25.482951 ], [ -54.140625, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -27.059126 ], [ -54.140625, -27.059126 ], [ -54.140625, -27.371767 ], [ -54.492188, -27.371767 ], [ -54.492188, -27.683528 ], [ -55.195312, -27.683528 ], [ -55.195312, -27.994401 ], [ -55.546875, -27.994401 ], [ -55.546875, -28.304381 ], [ -56.250000, -28.304381 ], [ -56.250000, -28.613459 ], [ -56.601562, -28.613459 ], [ -56.601562, -28.921631 ], [ -56.953125, -28.921631 ], [ -56.953125, -29.535230 ], [ -57.304688, -29.535230 ], [ -57.304688, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.448674 ], [ -58.007812, -30.448674 ], [ -58.007812, -31.353637 ], [ -58.359375, -31.353637 ], [ -58.359375, -33.431441 ], [ -58.710938, -33.431441 ], [ -58.710938, -34.597042 ], [ -58.359375, -34.597042 ], [ -58.359375, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.173808 ], [ -57.304688, -35.173808 ], [ -57.304688, -35.460670 ], [ -57.656250, -35.460670 ], [ -57.656250, -36.031332 ], [ -57.304688, -36.031332 ], [ -57.304688, -36.315125 ], [ -56.953125, -36.315125 ], [ -56.953125, -37.160317 ], [ -57.304688, -37.160317 ], [ -57.304688, -37.439974 ], [ -57.656250, -37.439974 ], [ -57.656250, -37.996163 ], [ -58.007812, -37.996163 ], [ -58.007812, -38.272689 ], [ -58.710938, -38.272689 ], [ -58.710938, -38.548165 ], [ -60.117188, -38.548165 ], [ -60.117188, -38.822591 ], [ -62.578125, -38.822591 ], [ -62.578125, -39.095963 ], [ -62.226562, -39.095963 ], [ -62.226562, -39.639538 ], [ -62.578125, -39.639538 ], [ -62.578125, -40.178873 ], [ -62.226562, -40.178873 ], [ -62.226562, -40.713956 ], [ -62.578125, -40.713956 ], [ -62.578125, -40.979898 ], [ -64.687500, -40.979898 ], [ -64.687500, -40.713956 ], [ -65.039062, -40.713956 ], [ -65.039062, -40.979898 ], [ -65.390625, -40.979898 ], [ -65.390625, -41.508577 ], [ -65.039062, -41.508577 ], [ -65.039062, -42.293564 ], [ -63.632812, -42.293564 ], [ -63.632812, -42.553080 ], [ -63.984375, -42.553080 ], [ -63.984375, -42.811522 ], [ -64.687500, -42.811522 ], [ -64.687500, -43.068888 ], [ -65.039062, -43.068888 ], [ -65.039062, -43.325178 ], [ -65.390625, -43.325178 ], [ -65.390625, -44.590467 ], [ -65.742188, -44.590467 ], [ -65.742188, -44.840291 ], [ -66.796875, -44.840291 ], [ -66.796875, -45.089036 ], [ -67.148438, -45.089036 ], [ -67.148438, -45.336702 ], [ -67.500000, -45.336702 ], [ -67.500000, -45.828799 ], [ -67.851562, -45.828799 ], [ -67.851562, -46.316584 ], [ -67.500000, -46.316584 ], [ -67.500000, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.800059 ], [ -66.445312, -46.800059 ], [ -66.445312, -47.040182 ], [ -65.742188, -47.040182 ], [ -65.742188, -47.517201 ], [ -66.093750, -47.517201 ], [ -66.093750, -48.224673 ], [ -66.445312, -48.224673 ], [ -66.445312, -48.458352 ], [ -67.148438, -48.458352 ], [ -67.148438, -48.690960 ], [ -67.500000, -48.690960 ], [ -67.500000, -49.382373 ], [ -67.851562, -49.382373 ], [ -67.851562, -49.837982 ], [ -68.203125, -49.837982 ], [ -68.203125, -50.064192 ], [ -68.906250, -50.064192 ], [ -68.906250, -50.289339 ], [ -69.257812, -50.289339 ], [ -69.257812, -51.179343 ], [ -68.906250, -51.179343 ], [ -68.906250, -51.835778 ], [ -68.554688, -51.835778 ], [ -68.554688, -52.268157 ], [ -69.609375, -52.268157 ], [ -69.609375, -52.052490 ], [ -71.015625, -52.052490 ], [ -71.015625, -51.835778 ], [ -72.070312, -51.835778 ], [ -72.070312, -51.618017 ], [ -72.421875, -51.618017 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.476562, -50.513427 ], [ -73.476562, -49.152970 ], [ -73.125000, -49.152970 ], [ -73.125000, -48.922499 ], [ -72.773438, -48.922499 ], [ -72.773438, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -47.989922 ], [ -72.773438, -47.989922 ], [ -72.773438, -47.517201 ], [ -72.421875, -47.517201 ], [ -72.421875, -47.040182 ], [ -72.070312, -47.040182 ], [ -72.070312, -46.073231 ], [ -71.718750, -46.073231 ], [ -71.718750, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.339565 ], [ -72.070312, -44.339565 ], [ -72.070312, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -72.070312, -43.580391 ], [ -72.070312, -42.811522 ], [ -72.421875, -42.811522 ], [ -72.421875, -42.032974 ], [ -72.070312, -42.032974 ], [ -72.070312, -40.178873 ], [ -71.718750, -40.178873 ], [ -71.718750, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -37.996163 ], [ -71.367188, -37.996163 ], [ -71.367188, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -36.031332 ], [ -70.664062, -36.031332 ], [ -70.664062, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -34.307144 ], [ -69.960938, -34.307144 ], [ -69.960938, -33.137551 ], [ -70.312500, -33.137551 ], [ -70.312500, -32.249974 ], [ -70.664062, -32.249974 ], [ -70.664062, -31.052934 ], [ -70.312500, -31.052934 ], [ -70.312500, -30.448674 ], [ -69.960938, -30.448674 ], [ -69.960938, -29.840644 ], [ -70.312500, -29.840644 ], [ -70.312500, -28.921631 ], [ -69.960938, -28.921631 ], [ -69.960938, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -26.745610 ], [ -68.906250, -26.745610 ], [ -68.906250, -26.431228 ], [ -68.554688, -26.431228 ], [ -68.554688, -24.206890 ], [ -67.851562, -24.206890 ], [ -67.851562, -23.885838 ], [ -67.500000, -23.885838 ], [ -67.500000, -23.563987 ], [ -67.148438, -23.563987 ], [ -67.148438, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -21.616579 ], [ -66.093750, -21.616579 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.448674 ], [ -56.250000, -30.448674 ], [ -56.250000, -30.751278 ], [ -55.546875, -30.751278 ], [ -55.546875, -31.052934 ], [ -54.843750, -31.052934 ], [ -54.843750, -31.353637 ], [ -54.492188, -31.353637 ], [ -54.492188, -31.653381 ], [ -54.140625, -31.653381 ], [ -54.140625, -31.952162 ], [ -53.789062, -31.952162 ], [ -53.789062, -32.249974 ], [ -53.437500, -32.249974 ], [ -53.437500, -32.842674 ], [ -53.085938, -32.842674 ], [ -53.085938, -33.137551 ], [ -53.789062, -33.137551 ], [ -53.789062, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.789062, -34.016242 ], [ -53.789062, -34.597042 ], [ -54.492188, -34.597042 ], [ -54.492188, -34.885931 ], [ -56.601562, -34.885931 ], [ -56.601562, -34.597042 ], [ -58.007812, -34.597042 ], [ -58.007812, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -33.137551 ], [ -58.007812, -33.137551 ], [ -58.007812, -30.751278 ], [ -57.656250, -30.751278 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.448674 ], [ -56.601562, -30.448674 ], [ -56.601562, -30.751278 ], [ -55.898438, -30.751278 ], [ -55.898438, -31.052934 ], [ -55.195312, -31.052934 ], [ -55.195312, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.653381 ], [ -54.140625, -31.653381 ], [ -54.140625, -31.952162 ], [ -53.789062, -31.952162 ], [ -53.789062, -32.249974 ], [ -53.437500, -32.249974 ], [ -53.437500, -32.842674 ], [ -53.789062, -32.842674 ], [ -53.789062, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.789062, -34.016242 ], [ -53.789062, -34.307144 ], [ -54.140625, -34.307144 ], [ -54.140625, -34.597042 ], [ -54.843750, -34.597042 ], [ -54.843750, -34.885931 ], [ -55.898438, -34.885931 ], [ -55.898438, -34.597042 ], [ -56.953125, -34.597042 ], [ -56.953125, -34.307144 ], [ -58.359375, -34.307144 ], [ -58.359375, -34.016242 ], [ -58.710938, -34.016242 ], [ -58.710938, -33.431441 ], [ -58.359375, -33.431441 ], [ -58.359375, -31.353637 ], [ -58.007812, -31.353637 ], [ -58.007812, -30.448674 ], [ -57.656250, -30.448674 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, -51.179343 ], [ -59.765625, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.618017 ], [ -57.656250, -51.618017 ], [ -57.656250, -51.835778 ], [ -58.007812, -51.835778 ], [ -58.007812, -52.052490 ], [ -58.710938, -52.052490 ], [ -58.710938, -52.268157 ], [ -59.414062, -52.268157 ], [ -59.414062, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -61.171875, -52.052490 ], [ -61.171875, -51.835778 ], [ -60.820312, -51.835778 ], [ -60.820312, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.399206 ], [ -60.117188, -51.399206 ], [ -60.117188, -51.179343 ], [ -59.765625, -51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -51.179343 ], [ -58.359375, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.618017 ], [ -58.359375, -51.618017 ], [ -58.359375, -51.835778 ], [ -58.710938, -51.835778 ], [ -58.710938, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -52.268157 ], [ -61.171875, -52.268157 ], [ -61.171875, -52.052490 ], [ -61.523438, -52.052490 ], [ -61.523438, -51.835778 ], [ -61.171875, -51.835778 ], [ -61.171875, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.399206 ], [ -59.062500, -51.399206 ], [ -59.062500, -51.179343 ], [ -58.359375, -51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -63.233627 ], [ -57.656250, -63.391522 ], [ -57.304688, -63.391522 ], [ -57.304688, -63.704722 ], [ -57.656250, -63.704722 ], [ -57.656250, -64.014496 ], [ -58.359375, -64.014496 ], [ -58.359375, -64.168107 ], [ -58.710938, -64.168107 ], [ -58.710938, -64.320872 ], [ -60.468750, -64.320872 ], [ -60.468750, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.623877 ], [ -61.523438, -64.623877 ], [ -61.523438, -64.774125 ], [ -61.875000, -64.774125 ], [ -61.875000, -64.923542 ], [ -62.226562, -64.923542 ], [ -62.226562, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.372755 ], [ -62.929688, -66.372755 ], [ -62.929688, -66.513260 ], [ -63.632812, -66.513260 ], [ -63.632812, -66.652977 ], [ -63.984375, -66.652977 ], [ -63.984375, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.204032 ], [ -67.500000, -67.204032 ], [ -67.500000, -67.067433 ], [ -67.148438, -67.067433 ], [ -67.148438, -66.791909 ], [ -66.796875, -66.791909 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.372755 ], [ -66.093750, -66.372755 ], [ -66.093750, -66.231457 ], [ -65.742188, -66.231457 ], [ -65.742188, -66.089364 ], [ -65.390625, -66.089364 ], [ -65.390625, -65.946472 ], [ -65.039062, -65.946472 ], [ -65.039062, -65.802776 ], [ -64.687500, -65.802776 ], [ -64.687500, -65.512963 ], [ -64.335938, -65.512963 ], [ -64.335938, -65.219894 ], [ -63.984375, -65.219894 ], [ -63.984375, -65.072130 ], [ -63.632812, -65.072130 ], [ -63.632812, -64.923542 ], [ -63.281250, -64.923542 ], [ -63.281250, -64.774125 ], [ -62.929688, -64.774125 ], [ -62.929688, -64.623877 ], [ -61.875000, -64.623877 ], [ -61.875000, -64.472794 ], [ -61.523438, -64.472794 ], [ -61.523438, -64.320872 ], [ -61.171875, -64.320872 ], [ -61.171875, -64.168107 ], [ -60.820312, -64.168107 ], [ -60.820312, -64.014496 ], [ -59.414062, -64.014496 ], [ -59.414062, -63.860036 ], [ -59.062500, -63.860036 ], [ -59.062500, -63.548552 ], [ -58.710938, -63.548552 ], [ -58.710938, -63.391522 ], [ -58.007812, -63.391522 ], [ -58.007812, -63.233627 ], [ -57.656250, -63.233627 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.820312, -64.168107 ], [ -60.820312, -64.320872 ], [ -61.171875, -64.320872 ], [ -61.171875, -64.472794 ], [ -61.523438, -64.472794 ], [ -61.523438, -64.623877 ], [ -61.875000, -64.623877 ], [ -61.875000, -64.774125 ], [ -62.226562, -64.774125 ], [ -62.226562, -64.923542 ], [ -62.578125, -64.923542 ], [ -62.578125, -65.219894 ], [ -62.929688, -65.219894 ], [ -62.929688, -65.946472 ], [ -62.578125, -65.946472 ], [ -62.578125, -66.089364 ], [ -62.226562, -66.089364 ], [ -62.226562, -66.231457 ], [ -62.578125, -66.231457 ], [ -62.578125, -66.372755 ], [ -63.984375, -66.372755 ], [ -63.984375, -66.652977 ], [ -64.335938, -66.652977 ], [ -64.335938, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.067433 ], [ -65.039062, -67.067433 ], [ -65.039062, -67.204032 ], [ -67.851562, -67.204032 ], [ -67.851562, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.791909 ], [ -67.148438, -66.791909 ], [ -67.148438, -66.652977 ], [ -66.796875, -66.652977 ], [ -66.796875, -66.513260 ], [ -66.445312, -66.513260 ], [ -66.445312, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -66.089364 ], [ -65.742188, -66.089364 ], [ -65.742188, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.802776 ], [ -65.039062, -65.802776 ], [ -65.039062, -65.658275 ], [ -64.687500, -65.658275 ], [ -64.687500, -65.366837 ], [ -64.335938, -65.366837 ], [ -64.335938, -65.072130 ], [ -63.984375, -65.072130 ], [ -63.984375, -64.923542 ], [ -63.632812, -64.923542 ], [ -63.632812, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -64.623877 ], [ -62.578125, -64.623877 ], [ -62.578125, -64.472794 ], [ -61.875000, -64.472794 ], [ -61.875000, -64.320872 ], [ -61.523438, -64.320872 ], [ -61.523438, -64.168107 ], [ -60.820312, -64.168107 ] ] ], [ [ [ -58.007812, -63.233627 ], [ -58.007812, -63.391522 ], [ -57.304688, -63.391522 ], [ -57.304688, -63.548552 ], [ -57.656250, -63.548552 ], [ -57.656250, -63.860036 ], [ -58.359375, -63.860036 ], [ -58.359375, -64.014496 ], [ -58.710938, -64.014496 ], [ -58.710938, -64.168107 ], [ -59.062500, -64.168107 ], [ -59.062500, -64.320872 ], [ -59.765625, -64.320872 ], [ -59.765625, -64.168107 ], [ -60.820312, -64.168107 ], [ -60.820312, -64.014496 ], [ -60.117188, -64.014496 ], [ -60.117188, -63.860036 ], [ -59.765625, -63.860036 ], [ -59.765625, -63.704722 ], [ -59.414062, -63.704722 ], [ -59.414062, -63.548552 ], [ -59.062500, -63.548552 ], [ -59.062500, -63.391522 ], [ -58.710938, -63.391522 ], [ -58.710938, -63.233627 ], [ -58.007812, -63.233627 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 62.915233 ], [ -91.757812, 67.204032 ], [ -81.210938, 67.204032 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.658275 ], [ -86.835938, 65.658275 ], [ -86.835938, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 64.623877 ], [ -87.539062, 64.623877 ], [ -87.539062, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.242188, 64.320872 ], [ -88.242188, 64.168107 ], [ -88.945312, 64.168107 ], [ -88.945312, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.548552 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.757812, 62.915233 ] ] ], [ [ [ -65.039062, 49.152970 ], [ -65.039062, 48.922499 ], [ -64.687500, 48.922499 ], [ -64.687500, 48.690960 ], [ -64.335938, 48.690960 ], [ -64.335938, 48.458352 ], [ -64.687500, 48.458352 ], [ -64.687500, 47.989922 ], [ -65.039062, 47.989922 ], [ -65.039062, 47.517201 ], [ -64.687500, 47.517201 ], [ -64.687500, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 45.828799 ], [ -61.171875, 45.828799 ], [ -61.171875, 46.316584 ], [ -60.820312, 46.316584 ], [ -60.820312, 46.800059 ], [ -60.468750, 46.800059 ], [ -60.468750, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.828799 ], [ -59.765625, 45.828799 ], [ -59.765625, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.336702 ], [ -61.171875, 45.336702 ], [ -61.171875, 45.089036 ], [ -61.875000, 45.089036 ], [ -61.875000, 44.840291 ], [ -62.578125, 44.840291 ], [ -62.578125, 44.590467 ], [ -63.632812, 44.590467 ], [ -63.632812, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.339565 ], [ -65.742188, 44.339565 ], [ -65.742188, 44.590467 ], [ -65.390625, 44.590467 ], [ -65.390625, 44.840291 ], [ -64.687500, 44.840291 ], [ -64.687500, 45.089036 ], [ -64.335938, 45.089036 ], [ -64.335938, 45.336702 ], [ -66.445312, 45.336702 ], [ -66.445312, 45.089036 ], [ -67.500000, 45.089036 ], [ -67.500000, 45.336702 ], [ -67.851562, 45.336702 ], [ -67.851562, 47.040182 ], [ -68.203125, 47.040182 ], [ -68.203125, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.517201 ], [ -69.257812, 47.517201 ], [ -69.257812, 47.754098 ], [ -68.906250, 47.754098 ], [ -68.906250, 47.989922 ], [ -68.554688, 47.989922 ], [ -68.554688, 48.224673 ], [ -68.203125, 48.224673 ], [ -68.203125, 48.458352 ], [ -67.500000, 48.458352 ], [ -67.500000, 48.690960 ], [ -67.148438, 48.690960 ], [ -67.148438, 48.922499 ], [ -66.445312, 48.922499 ], [ -66.445312, 49.152970 ], [ -65.039062, 49.152970 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 46.316584 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -55.546875, 51.179343 ], [ -55.898438, 51.179343 ], [ -55.898438, 50.736455 ], [ -56.250000, 50.736455 ], [ -56.250000, 50.513427 ], [ -56.601562, 50.513427 ], [ -56.601562, 50.064192 ], [ -56.953125, 50.064192 ], [ -56.953125, 49.837982 ], [ -55.546875, 49.837982 ], [ -55.546875, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.152970 ], [ -53.437500, 49.152970 ], [ -53.437500, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.458352 ], [ -53.085938, 48.458352 ], [ -53.085938, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.040182 ], [ -53.085938, 47.040182 ], [ -53.085938, 46.558860 ], [ -54.140625, 46.558860 ], [ -54.140625, 47.040182 ], [ -53.789062, 47.040182 ], [ -53.789062, 47.517201 ], [ -54.492188, 47.517201 ], [ -54.492188, 47.279229 ], [ -54.843750, 47.279229 ], [ -54.843750, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 47.279229 ], [ -55.898438, 47.279229 ], [ -55.898438, 47.517201 ], [ -59.414062, 47.517201 ], [ -59.414062, 47.989922 ], [ -58.710938, 47.989922 ], [ -58.710938, 48.224673 ], [ -59.062500, 48.224673 ], [ -59.062500, 48.458352 ], [ -58.710938, 48.458352 ], [ -58.710938, 48.922499 ], [ -58.359375, 48.922499 ], [ -58.359375, 49.382373 ], [ -58.007812, 49.382373 ], [ -58.007812, 49.837982 ], [ -57.656250, 49.837982 ], [ -57.656250, 50.289339 ], [ -57.304688, 50.289339 ], [ -57.304688, 50.736455 ], [ -56.953125, 50.736455 ], [ -56.953125, 50.958427 ], [ -56.601562, 50.958427 ], [ -56.601562, 51.179343 ], [ -56.250000, 51.179343 ], [ -56.250000, 51.399206 ], [ -55.898438, 51.399206 ], [ -55.898438, 51.618017 ], [ -55.546875, 51.618017 ] ] ], [ [ [ -55.195312, 47.040182 ], [ -55.195312, 46.800059 ], [ -55.546875, 46.800059 ], [ -55.546875, 47.040182 ], [ -55.195312, 47.040182 ] ] ], [ [ [ -61.875000, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.558860 ], [ -61.875000, 46.558860 ], [ -61.875000, 46.316584 ] ] ], [ [ [ -79.453125, 62.431074 ], [ -79.453125, 62.267923 ], [ -79.101562, 62.267923 ], [ -79.101562, 61.938950 ], [ -79.453125, 61.938950 ], [ -79.453125, 61.606396 ], [ -80.156250, 61.606396 ], [ -80.156250, 61.773123 ], [ -80.507812, 61.773123 ], [ -80.507812, 61.938950 ], [ -80.156250, 61.938950 ], [ -80.156250, 62.267923 ], [ -79.804688, 62.267923 ], [ -79.804688, 62.431074 ], [ -79.453125, 62.431074 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.103883 ], [ -83.671875, 62.103883 ], [ -83.671875, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.671875, 62.431074 ], [ -83.671875, 62.754726 ], [ -83.320312, 62.754726 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -63.632812, 49.837982 ], [ -63.632812, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -63.281250, 49.152970 ], [ -63.281250, 49.382373 ], [ -63.984375, 49.382373 ], [ -63.984375, 49.610710 ], [ -64.687500, 49.610710 ], [ -64.687500, 49.837982 ], [ -63.632812, 49.837982 ] ] ], [ [ [ -91.757812, 57.136239 ], [ -91.054688, 57.136239 ], [ -91.054688, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -89.648438, 57.136239 ], [ -89.648438, 56.944974 ], [ -88.945312, 56.944974 ], [ -88.945312, 56.752723 ], [ -88.242188, 56.752723 ], [ -88.242188, 56.559482 ], [ -87.890625, 56.559482 ], [ -87.890625, 56.365250 ], [ -87.539062, 56.365250 ], [ -87.539062, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.578345 ], [ -85.429688, 55.578345 ], [ -85.429688, 55.379110 ], [ -84.375000, 55.379110 ], [ -84.375000, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 52.908902 ], [ -81.914062, 52.908902 ], [ -81.914062, 52.268157 ], [ -81.562500, 52.268157 ], [ -81.562500, 51.835778 ], [ -81.210938, 51.835778 ], [ -81.210938, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.399206 ], [ -80.156250, 51.399206 ], [ -80.156250, 51.179343 ], [ -79.453125, 51.179343 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 53.330873 ], [ -79.101562, 53.330873 ], [ -79.101562, 54.162434 ], [ -79.453125, 54.162434 ], [ -79.453125, 54.367759 ], [ -79.804688, 54.367759 ], [ -79.804688, 54.572062 ], [ -79.453125, 54.572062 ], [ -79.453125, 54.775346 ], [ -78.750000, 54.775346 ], [ -78.750000, 54.977614 ], [ -78.398438, 54.977614 ], [ -78.398438, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.379110 ], [ -77.343750, 55.379110 ], [ -77.343750, 55.578345 ], [ -76.992188, 55.578345 ], [ -76.992188, 56.170023 ], [ -76.640625, 56.170023 ], [ -76.640625, 57.326521 ], [ -76.992188, 57.326521 ], [ -76.992188, 57.704147 ], [ -77.343750, 57.704147 ], [ -77.343750, 58.077876 ], [ -77.695312, 58.077876 ], [ -77.695312, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.995311 ], [ -78.046875, 58.995311 ], [ -78.046875, 59.355596 ], [ -77.695312, 59.355596 ], [ -77.695312, 59.712097 ], [ -77.343750, 59.712097 ], [ -77.343750, 60.239811 ], [ -77.695312, 60.239811 ], [ -77.695312, 61.438767 ], [ -78.046875, 61.438767 ], [ -78.046875, 62.267923 ], [ -77.695312, 62.267923 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.593341 ], [ -76.992188, 62.593341 ], [ -76.992188, 62.431074 ], [ -76.289062, 62.431074 ], [ -76.289062, 62.267923 ], [ -75.234375, 62.267923 ], [ -75.234375, 62.103883 ], [ -74.179688, 62.103883 ], [ -74.179688, 62.267923 ], [ -73.125000, 62.267923 ], [ -73.125000, 62.103883 ], [ -72.773438, 62.103883 ], [ -72.773438, 61.938950 ], [ -72.421875, 61.938950 ], [ -72.421875, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.367188, 61.270233 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.534318 ], [ -69.257812, 59.534318 ], [ -69.257812, 58.995311 ], [ -68.906250, 58.995311 ], [ -68.906250, 58.813742 ], [ -68.203125, 58.813742 ], [ -68.203125, 58.631217 ], [ -67.851562, 58.631217 ], [ -67.851562, 58.263287 ], [ -67.148438, 58.263287 ], [ -67.148438, 58.447733 ], [ -66.445312, 58.447733 ], [ -66.445312, 58.631217 ], [ -66.093750, 58.631217 ], [ -66.093750, 58.995311 ], [ -65.742188, 58.995311 ], [ -65.742188, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 60.239811 ], [ -64.335938, 60.239811 ], [ -64.335938, 59.888937 ], [ -63.984375, 59.888937 ], [ -63.984375, 59.534318 ], [ -63.632812, 59.534318 ], [ -63.632812, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.559482 ], [ -61.875000, 56.559482 ], [ -61.875000, 56.170023 ], [ -61.523438, 56.170023 ], [ -61.523438, 55.973798 ], [ -60.820312, 55.973798 ], [ -60.820312, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 55.178868 ], [ -59.062500, 55.178868 ], [ -59.062500, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.572062 ], [ -57.304688, 54.572062 ], [ -57.304688, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 52.696361 ], [ -55.546875, 52.696361 ], [ -55.546875, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.179343 ], [ -58.007812, 51.179343 ], [ -58.007812, 50.958427 ], [ -58.710938, 50.958427 ], [ -58.710938, 50.736455 ], [ -59.062500, 50.736455 ], [ -59.062500, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.289339 ], [ -60.820312, 50.289339 ], [ -60.820312, 50.064192 ], [ -63.281250, 50.064192 ], [ -63.281250, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.610710 ], [ -67.148438, 49.610710 ], [ -67.148438, 49.382373 ], [ -67.851562, 49.382373 ], [ -67.851562, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.609375, 48.224673 ], [ -69.609375, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 46.800059 ], [ -70.312500, 46.800059 ], [ -70.312500, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 46.316584 ], [ -70.312500, 46.316584 ], [ -70.312500, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.367188, 45.336702 ], [ -71.367188, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.834527 ], [ -76.992188, 43.834527 ], [ -76.992188, 43.580391 ], [ -79.101562, 43.580391 ], [ -79.101562, 43.068888 ], [ -78.750000, 43.068888 ], [ -78.750000, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.293564 ], [ -81.210938, 42.293564 ], [ -81.210938, 42.032974 ], [ -81.914062, 42.032974 ], [ -81.914062, 41.771312 ], [ -82.968750, 41.771312 ], [ -82.968750, 42.553080 ], [ -82.617188, 42.553080 ], [ -82.617188, 42.811522 ], [ -82.265625, 42.811522 ], [ -82.265625, 44.840291 ], [ -82.617188, 44.840291 ], [ -82.617188, 45.336702 ], [ -82.968750, 45.336702 ], [ -82.968750, 45.583290 ], [ -83.671875, 45.583290 ], [ -83.671875, 45.828799 ], [ -83.320312, 45.828799 ], [ -83.320312, 46.073231 ], [ -84.023438, 46.073231 ], [ -84.023438, 46.316584 ], [ -84.726562, 46.316584 ], [ -84.726562, 46.800059 ], [ -85.078125, 46.800059 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.279229 ], [ -86.484375, 47.279229 ], [ -86.484375, 47.517201 ], [ -86.835938, 47.517201 ], [ -86.835938, 47.754098 ], [ -87.539062, 47.754098 ], [ -87.539062, 47.989922 ], [ -88.242188, 47.989922 ], [ -88.242188, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 47.989922 ], [ -90.351562, 47.989922 ], [ -90.351562, 48.224673 ], [ -91.757812, 48.224673 ], [ -91.757812, 57.136239 ] ] ], [ [ [ -68.203125, 63.391522 ], [ -68.203125, 63.074866 ], [ -67.851562, 63.074866 ], [ -67.851562, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.267923 ], [ -66.445312, 62.267923 ], [ -66.445312, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -67.148438, 61.938950 ], [ -67.148438, 62.103883 ], [ -68.554688, 62.103883 ], [ -68.554688, 62.267923 ], [ -69.257812, 62.267923 ], [ -69.257812, 62.431074 ], [ -69.960938, 62.431074 ], [ -69.960938, 62.593341 ], [ -70.312500, 62.593341 ], [ -70.312500, 62.754726 ], [ -71.015625, 62.754726 ], [ -71.015625, 62.915233 ], [ -71.367188, 62.915233 ], [ -71.367188, 63.074866 ], [ -71.718750, 63.074866 ], [ -71.718750, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.548552 ], [ -71.718750, 63.548552 ], [ -71.718750, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.860036 ], [ -72.773438, 63.860036 ], [ -72.773438, 64.014496 ], [ -73.476562, 64.014496 ], [ -73.476562, 64.168107 ], [ -73.828125, 64.168107 ], [ -73.828125, 64.320872 ], [ -74.531250, 64.320872 ], [ -74.531250, 64.472794 ], [ -74.882812, 64.472794 ], [ -74.882812, 64.320872 ], [ -75.937500, 64.320872 ], [ -75.937500, 64.168107 ], [ -78.046875, 64.168107 ], [ -78.046875, 64.472794 ], [ -78.398438, 64.472794 ], [ -78.398438, 64.923542 ], [ -78.046875, 64.923542 ], [ -78.046875, 65.366837 ], [ -74.531250, 65.366837 ], [ -74.531250, 65.512963 ], [ -73.828125, 65.512963 ], [ -73.828125, 65.658275 ], [ -74.179688, 65.658275 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -63.984375, 67.204032 ], [ -63.984375, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.658275 ], [ -62.929688, 65.658275 ], [ -62.929688, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.632812, 65.366837 ], [ -63.632812, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.219894 ], [ -65.039062, 65.219894 ], [ -65.039062, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 65.946472 ], [ -66.445312, 65.946472 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.923542 ], [ -66.796875, 64.923542 ], [ -66.796875, 64.774125 ], [ -66.093750, 64.774125 ], [ -66.093750, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.548552 ], [ -64.687500, 63.548552 ], [ -64.687500, 63.074866 ], [ -65.039062, 63.074866 ], [ -65.039062, 62.754726 ], [ -66.093750, 62.754726 ], [ -66.093750, 62.915233 ], [ -66.796875, 62.915233 ], [ -66.796875, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.391522 ], [ -68.203125, 63.391522 ] ], [ [ -68.203125, 63.391522 ], [ -68.203125, 63.548552 ], [ -68.554688, 63.548552 ], [ -68.554688, 63.391522 ], [ -68.203125, 63.391522 ] ] ], [ [ [ -85.078125, 65.658275 ], [ -85.078125, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.774125 ], [ -82.617188, 64.774125 ], [ -82.617188, 64.623877 ], [ -81.914062, 64.623877 ], [ -81.914062, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.014496 ], [ -80.859375, 63.860036 ], [ -80.507812, 63.860036 ], [ -80.507812, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.548552 ], [ -80.507812, 63.548552 ], [ -80.507812, 63.391522 ], [ -81.562500, 63.391522 ], [ -81.562500, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.704722 ], [ -82.617188, 63.704722 ], [ -82.617188, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.671875, 63.860036 ], [ -83.671875, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.391522 ], [ -84.375000, 63.391522 ], [ -84.375000, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.074866 ], [ -85.429688, 63.074866 ], [ -85.429688, 63.391522 ], [ -85.781250, 63.391522 ], [ -85.781250, 63.704722 ], [ -86.132812, 63.704722 ], [ -86.132812, 63.548552 ], [ -86.835938, 63.548552 ], [ -86.835938, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 64.320872 ], [ -86.132812, 64.320872 ], [ -86.132812, 65.219894 ], [ -85.781250, 65.219894 ], [ -85.781250, 65.658275 ], [ -85.078125, 65.658275 ] ] ], [ [ [ -63.632812, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.984375, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.800059 ], [ -63.632812, 46.800059 ], [ -63.632812, 46.316584 ] ] ], [ [ [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.204032 ], [ -76.289062, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.906250, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.609375, 48.224673 ], [ -69.609375, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.279229 ], [ -71.015625, 47.279229 ], [ -71.015625, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 46.800059 ], [ -70.312500, 46.800059 ], [ -70.312500, 45.828799 ], [ -70.664062, 45.828799 ], [ -70.664062, 45.336702 ], [ -71.718750, 45.336702 ], [ -71.718750, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.840291 ], [ -75.585938, 44.840291 ], [ -75.585938, 44.590467 ], [ -76.289062, 44.590467 ], [ -76.289062, 44.339565 ], [ -76.640625, 44.339565 ], [ -76.640625, 43.834527 ], [ -78.750000, 43.834527 ], [ -78.750000, 43.580391 ], [ -79.453125, 43.580391 ], [ -79.453125, 43.325178 ], [ -79.101562, 43.325178 ], [ -79.101562, 42.811522 ], [ -79.804688, 42.811522 ], [ -79.804688, 42.553080 ], [ -80.859375, 42.553080 ], [ -80.859375, 42.293564 ], [ -81.562500, 42.293564 ], [ -81.562500, 42.032974 ], [ -82.265625, 42.032974 ], [ -82.265625, 41.771312 ], [ -83.320312, 41.771312 ], [ -83.320312, 42.293564 ], [ -82.968750, 42.293564 ], [ -82.968750, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 43.325178 ], [ -82.265625, 43.325178 ], [ -82.265625, 44.087585 ], [ -82.617188, 44.087585 ], [ -82.617188, 45.583290 ], [ -83.320312, 45.583290 ], [ -83.320312, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 46.316584 ], [ -84.375000, 46.316584 ], [ -84.375000, 46.558860 ], [ -85.078125, 46.558860 ], [ -85.078125, 47.040182 ], [ -85.781250, 47.040182 ], [ -85.781250, 47.279229 ], [ -86.132812, 47.279229 ], [ -86.132812, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.754098 ], [ -87.187500, 47.754098 ], [ -87.187500, 47.989922 ], [ -87.890625, 47.989922 ], [ -87.890625, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.458352 ], [ -91.054688, 48.458352 ], [ -91.054688, 48.224673 ], [ -91.757812, 48.224673 ], [ -91.757812, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.136239 ], [ -90.000000, 57.136239 ], [ -90.000000, 56.944974 ], [ -89.296875, 56.944974 ], [ -89.296875, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 56.365250 ], [ -87.890625, 56.365250 ], [ -87.890625, 56.170023 ], [ -87.539062, 56.170023 ], [ -87.539062, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.578345 ], [ -85.429688, 55.578345 ], [ -85.429688, 55.379110 ], [ -83.320312, 55.379110 ], [ -83.320312, 55.178868 ], [ -82.617188, 55.178868 ], [ -82.617188, 53.748711 ], [ -82.265625, 53.748711 ], [ -82.265625, 52.908902 ], [ -81.914062, 52.908902 ], [ -81.914062, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 52.052490 ], [ -81.210938, 52.052490 ], [ -81.210938, 51.835778 ], [ -80.859375, 51.835778 ], [ -80.859375, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.399206 ], [ -79.453125, 51.399206 ], [ -79.453125, 51.835778 ], [ -79.101562, 51.835778 ], [ -79.101562, 52.268157 ], [ -78.750000, 52.268157 ], [ -78.750000, 52.908902 ], [ -79.101562, 52.908902 ], [ -79.101562, 53.748711 ], [ -79.453125, 53.748711 ], [ -79.453125, 54.162434 ], [ -79.804688, 54.162434 ], [ -79.804688, 54.572062 ], [ -80.156250, 54.572062 ], [ -80.156250, 54.775346 ], [ -79.453125, 54.775346 ], [ -79.453125, 54.977614 ], [ -78.750000, 54.977614 ], [ -78.750000, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.578345 ], [ -77.695312, 55.578345 ], [ -77.695312, 55.776573 ], [ -77.343750, 55.776573 ], [ -77.343750, 55.973798 ], [ -76.992188, 55.973798 ], [ -76.992188, 56.365250 ], [ -76.640625, 56.365250 ], [ -76.640625, 57.515823 ], [ -76.992188, 57.515823 ], [ -76.992188, 57.891497 ], [ -77.343750, 57.891497 ], [ -77.343750, 58.077876 ], [ -77.695312, 58.077876 ], [ -77.695312, 58.263287 ], [ -78.046875, 58.263287 ], [ -78.046875, 58.447733 ], [ -78.398438, 58.447733 ], [ -78.398438, 58.631217 ], [ -78.750000, 58.631217 ], [ -78.750000, 58.813742 ], [ -78.398438, 58.813742 ], [ -78.398438, 59.175928 ], [ -78.046875, 59.175928 ], [ -78.046875, 59.355596 ], [ -77.695312, 59.355596 ], [ -77.695312, 59.712097 ], [ -77.343750, 59.712097 ], [ -77.343750, 60.064840 ], [ -77.695312, 60.064840 ], [ -77.695312, 60.413852 ], [ -78.046875, 60.413852 ], [ -78.046875, 61.606396 ], [ -78.398438, 61.606396 ], [ -78.398438, 62.431074 ], [ -77.695312, 62.431074 ], [ -77.695312, 62.593341 ], [ -76.992188, 62.593341 ], [ -76.992188, 62.431074 ], [ -75.585938, 62.431074 ], [ -75.585938, 62.267923 ], [ -74.531250, 62.267923 ], [ -74.531250, 62.431074 ], [ -73.828125, 62.431074 ], [ -73.828125, 62.267923 ], [ -73.476562, 62.267923 ], [ -73.476562, 62.103883 ], [ -73.125000, 62.103883 ], [ -73.125000, 61.938950 ], [ -72.773438, 61.938950 ], [ -72.773438, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.270233 ], [ -71.015625, 61.270233 ], [ -71.015625, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 60.586967 ], [ -69.960938, 60.586967 ], [ -69.960938, 59.534318 ], [ -69.609375, 59.534318 ], [ -69.609375, 58.995311 ], [ -69.257812, 58.995311 ], [ -69.257812, 58.813742 ], [ -68.554688, 58.813742 ], [ -68.554688, 58.631217 ], [ -68.203125, 58.631217 ], [ -68.203125, 58.263287 ], [ -67.500000, 58.263287 ], [ -67.500000, 58.447733 ], [ -66.796875, 58.447733 ], [ -66.796875, 58.631217 ], [ -66.445312, 58.631217 ], [ -66.445312, 58.995311 ], [ -66.093750, 58.995311 ], [ -66.093750, 59.355596 ], [ -65.742188, 59.355596 ], [ -65.742188, 59.712097 ], [ -65.390625, 59.712097 ], [ -65.390625, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 60.239811 ], [ -64.687500, 60.239811 ], [ -64.687500, 60.064840 ], [ -64.335938, 60.064840 ], [ -64.335938, 59.712097 ], [ -63.984375, 59.712097 ], [ -63.984375, 59.355596 ], [ -63.632812, 59.355596 ], [ -63.632812, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 58.077876 ], [ -62.226562, 58.077876 ], [ -62.226562, 57.704147 ], [ -61.875000, 57.704147 ], [ -61.875000, 57.326521 ], [ -61.523438, 57.326521 ], [ -61.523438, 56.752723 ], [ -61.875000, 56.752723 ], [ -61.875000, 56.170023 ], [ -61.523438, 56.170023 ], [ -61.523438, 55.973798 ], [ -60.820312, 55.973798 ], [ -60.820312, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.379110 ], [ -59.414062, 55.379110 ], [ -59.414062, 55.178868 ], [ -58.710938, 55.178868 ], [ -58.710938, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.572062 ], [ -57.304688, 54.572062 ], [ -57.304688, 54.162434 ], [ -56.953125, 54.162434 ], [ -56.953125, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 52.052490 ], [ -56.250000, 52.052490 ], [ -56.250000, 51.835778 ], [ -56.601562, 51.835778 ], [ -56.601562, 51.618017 ], [ -57.656250, 51.618017 ], [ -57.656250, 51.399206 ], [ -58.359375, 51.399206 ], [ -58.359375, 51.179343 ], [ -59.062500, 51.179343 ], [ -59.062500, 50.958427 ], [ -59.414062, 50.958427 ], [ -59.414062, 50.736455 ], [ -59.765625, 50.736455 ], [ -59.765625, 50.289339 ], [ -65.039062, 50.289339 ], [ -65.039062, 50.513427 ], [ -65.742188, 50.513427 ], [ -65.742188, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.837982 ], [ -67.148438, 49.837982 ], [ -67.148438, 49.610710 ], [ -67.500000, 49.610710 ], [ -67.500000, 49.382373 ], [ -68.203125, 49.382373 ], [ -68.203125, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 48.922499 ], [ -68.906250, 48.922499 ], [ -68.906250, 48.458352 ] ] ], [ [ [ -63.984375, 67.204032 ], [ -63.984375, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 66.089364 ], [ -62.578125, 66.089364 ], [ -62.578125, 65.802776 ], [ -62.929688, 65.802776 ], [ -62.929688, 65.658275 ], [ -63.281250, 65.658275 ], [ -63.281250, 65.366837 ], [ -63.632812, 65.366837 ], [ -63.632812, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.219894 ], [ -65.039062, 65.219894 ], [ -65.039062, 65.366837 ], [ -65.390625, 65.366837 ], [ -65.390625, 65.512963 ], [ -65.742188, 65.512963 ], [ -65.742188, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.372755 ], [ -66.796875, 66.372755 ], [ -66.796875, 66.513260 ], [ -67.148438, 66.513260 ], [ -67.148438, 66.372755 ], [ -68.203125, 66.372755 ], [ -68.203125, 65.658275 ], [ -67.851562, 65.658275 ], [ -67.851562, 65.512963 ], [ -67.500000, 65.512963 ], [ -67.500000, 65.219894 ], [ -67.148438, 65.219894 ], [ -67.148438, 65.072130 ], [ -66.796875, 65.072130 ], [ -66.796875, 64.923542 ], [ -66.093750, 64.923542 ], [ -66.093750, 64.774125 ], [ -65.742188, 64.774125 ], [ -65.742188, 64.623877 ], [ -65.390625, 64.623877 ], [ -65.390625, 64.168107 ], [ -65.039062, 64.168107 ], [ -65.039062, 63.704722 ], [ -64.687500, 63.704722 ], [ -64.687500, 63.074866 ], [ -65.039062, 63.074866 ], [ -65.039062, 62.754726 ], [ -65.742188, 62.754726 ], [ -65.742188, 62.915233 ], [ -66.445312, 62.915233 ], [ -66.445312, 63.074866 ], [ -66.796875, 63.074866 ], [ -66.796875, 63.233627 ], [ -67.500000, 63.233627 ], [ -67.500000, 63.391522 ], [ -67.851562, 63.391522 ], [ -67.851562, 63.548552 ], [ -68.203125, 63.548552 ], [ -68.203125, 63.704722 ], [ -68.554688, 63.704722 ], [ -68.554688, 63.391522 ], [ -68.203125, 63.391522 ], [ -68.203125, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.431074 ], [ -66.445312, 62.431074 ], [ -66.445312, 61.938950 ], [ -67.148438, 61.938950 ], [ -67.148438, 62.103883 ], [ -67.851562, 62.103883 ], [ -67.851562, 62.267923 ], [ -68.554688, 62.267923 ], [ -68.554688, 62.431074 ], [ -69.609375, 62.431074 ], [ -69.609375, 62.593341 ], [ -70.312500, 62.593341 ], [ -70.312500, 62.754726 ], [ -71.015625, 62.754726 ], [ -71.015625, 62.915233 ], [ -71.718750, 62.915233 ], [ -71.718750, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.391522 ], [ -72.421875, 63.391522 ], [ -72.421875, 63.548552 ], [ -72.070312, 63.548552 ], [ -72.070312, 63.704722 ], [ -72.421875, 63.704722 ], [ -72.421875, 63.860036 ], [ -72.773438, 63.860036 ], [ -72.773438, 64.014496 ], [ -73.125000, 64.014496 ], [ -73.125000, 64.168107 ], [ -73.476562, 64.168107 ], [ -73.476562, 64.320872 ], [ -73.828125, 64.320872 ], [ -73.828125, 64.472794 ], [ -74.531250, 64.472794 ], [ -74.531250, 64.623877 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.472794 ], [ -76.289062, 64.472794 ], [ -76.289062, 64.320872 ], [ -78.398438, 64.320872 ], [ -78.398438, 64.472794 ], [ -78.750000, 64.472794 ], [ -78.750000, 64.774125 ], [ -78.398438, 64.774125 ], [ -78.398438, 65.072130 ], [ -78.046875, 65.072130 ], [ -78.046875, 65.366837 ], [ -74.882812, 65.366837 ], [ -74.882812, 65.512963 ], [ -74.179688, 65.512963 ], [ -74.179688, 65.658275 ], [ -74.531250, 65.658275 ], [ -74.531250, 66.089364 ], [ -74.179688, 66.089364 ], [ -74.179688, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -63.984375, 67.204032 ] ] ], [ [ [ -81.562500, 67.067433 ], [ -81.914062, 67.067433 ], [ -81.914062, 66.930060 ], [ -82.265625, 66.930060 ], [ -82.265625, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.652977 ], [ -83.320312, 66.652977 ], [ -83.320312, 66.513260 ], [ -84.023438, 66.513260 ], [ -84.023438, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.372755 ], [ -86.132812, 66.372755 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.658275 ], [ -86.835938, 65.658275 ], [ -86.835938, 65.366837 ], [ -87.187500, 65.366837 ], [ -87.187500, 65.072130 ], [ -87.539062, 65.072130 ], [ -87.539062, 64.774125 ], [ -87.890625, 64.774125 ], [ -87.890625, 64.472794 ], [ -88.242188, 64.472794 ], [ -88.242188, 64.168107 ], [ -90.000000, 64.168107 ], [ -90.000000, 64.014496 ], [ -90.351562, 64.014496 ], [ -90.351562, 63.704722 ], [ -90.703125, 63.704722 ], [ -90.703125, 63.391522 ], [ -91.054688, 63.391522 ], [ -91.054688, 62.915233 ], [ -91.757812, 62.915233 ], [ -91.757812, 67.204032 ], [ -81.562500, 67.204032 ], [ -81.562500, 67.067433 ] ] ], [ [ [ -63.984375, 46.800059 ], [ -63.984375, 46.558860 ], [ -62.226562, 46.558860 ], [ -62.226562, 46.316584 ], [ -62.578125, 46.316584 ], [ -62.578125, 46.073231 ], [ -63.632812, 46.073231 ], [ -63.632812, 46.316584 ], [ -64.335938, 46.316584 ], [ -64.335938, 46.558860 ], [ -64.687500, 46.558860 ], [ -64.687500, 46.800059 ], [ -63.984375, 46.800059 ] ] ], [ [ [ -56.601562, 51.618017 ], [ -55.546875, 51.618017 ], [ -55.546875, 51.399206 ], [ -55.898438, 51.399206 ], [ -55.898438, 50.958427 ], [ -56.250000, 50.958427 ], [ -56.250000, 50.513427 ], [ -56.601562, 50.513427 ], [ -56.601562, 50.064192 ], [ -55.546875, 50.064192 ], [ -55.546875, 49.837982 ], [ -55.898438, 49.837982 ], [ -55.898438, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 48.690960 ], [ -53.085938, 48.690960 ], [ -53.085938, 47.989922 ], [ -52.734375, 47.989922 ], [ -52.734375, 47.279229 ], [ -53.085938, 47.279229 ], [ -53.085938, 46.800059 ], [ -54.492188, 46.800059 ], [ -54.492188, 47.279229 ], [ -54.140625, 47.279229 ], [ -54.140625, 47.754098 ], [ -54.492188, 47.754098 ], [ -54.492188, 47.517201 ], [ -54.843750, 47.517201 ], [ -54.843750, 47.279229 ], [ -55.195312, 47.279229 ], [ -55.195312, 47.040182 ], [ -55.898438, 47.040182 ], [ -55.898438, 47.279229 ], [ -55.546875, 47.279229 ], [ -55.546875, 47.517201 ], [ -56.250000, 47.517201 ], [ -56.250000, 47.754098 ], [ -59.765625, 47.754098 ], [ -59.765625, 47.989922 ], [ -59.414062, 47.989922 ], [ -59.414062, 48.224673 ], [ -59.062500, 48.224673 ], [ -59.062500, 48.458352 ], [ -59.414062, 48.458352 ], [ -59.414062, 48.690960 ], [ -59.062500, 48.690960 ], [ -59.062500, 48.922499 ], [ -58.710938, 48.922499 ], [ -58.710938, 49.382373 ], [ -58.359375, 49.382373 ], [ -58.359375, 49.837982 ], [ -58.007812, 49.837982 ], [ -58.007812, 50.289339 ], [ -57.656250, 50.289339 ], [ -57.656250, 50.736455 ], [ -57.304688, 50.736455 ], [ -57.304688, 51.179343 ], [ -56.953125, 51.179343 ], [ -56.953125, 51.399206 ], [ -56.601562, 51.399206 ], [ -56.601562, 51.618017 ] ], [ [ -56.601562, 50.064192 ], [ -56.953125, 50.064192 ], [ -56.953125, 49.837982 ], [ -56.601562, 49.837982 ], [ -56.601562, 50.064192 ] ] ], [ [ [ -85.429688, 65.658275 ], [ -85.429688, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.774125 ], [ -82.968750, 64.774125 ], [ -82.968750, 64.623877 ], [ -82.265625, 64.623877 ], [ -82.265625, 64.472794 ], [ -81.914062, 64.472794 ], [ -81.914062, 64.168107 ], [ -81.562500, 64.168107 ], [ -81.562500, 64.014496 ], [ -80.507812, 64.014496 ], [ -80.507812, 63.860036 ], [ -80.156250, 63.860036 ], [ -80.156250, 63.704722 ], [ -80.859375, 63.704722 ], [ -80.859375, 63.548552 ], [ -82.265625, 63.548552 ], [ -82.265625, 63.704722 ], [ -82.968750, 63.704722 ], [ -82.968750, 64.014496 ], [ -83.671875, 64.014496 ], [ -83.671875, 63.860036 ], [ -84.023438, 63.860036 ], [ -84.023438, 63.704722 ], [ -84.375000, 63.704722 ], [ -84.375000, 63.548552 ], [ -84.726562, 63.548552 ], [ -84.726562, 63.391522 ], [ -85.078125, 63.391522 ], [ -85.078125, 63.233627 ], [ -85.429688, 63.233627 ], [ -85.429688, 63.074866 ], [ -85.781250, 63.074866 ], [ -85.781250, 63.391522 ], [ -86.132812, 63.391522 ], [ -86.132812, 63.704722 ], [ -86.484375, 63.704722 ], [ -86.484375, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.860036 ], [ -86.835938, 63.860036 ], [ -86.835938, 64.014496 ], [ -86.484375, 64.014496 ], [ -86.484375, 65.366837 ], [ -86.132812, 65.366837 ], [ -86.132812, 65.658275 ], [ -85.429688, 65.658275 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.431074 ], [ -82.968750, 62.431074 ], [ -82.968750, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.754726 ], [ -83.320312, 62.754726 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -63.984375, 49.837982 ], [ -62.929688, 49.837982 ], [ -62.929688, 49.610710 ], [ -62.226562, 49.610710 ], [ -62.226562, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -62.929688, 49.152970 ], [ -62.929688, 49.382373 ], [ -63.632812, 49.382373 ], [ -63.632812, 49.610710 ], [ -63.984375, 49.610710 ], [ -63.984375, 49.837982 ] ] ], [ [ [ -79.804688, 62.431074 ], [ -79.804688, 62.267923 ], [ -79.453125, 62.267923 ], [ -79.453125, 61.938950 ], [ -79.804688, 61.938950 ], [ -79.804688, 61.773123 ], [ -80.156250, 61.773123 ], [ -80.156250, 61.938950 ], [ -80.507812, 61.938950 ], [ -80.507812, 62.267923 ], [ -80.156250, 62.267923 ], [ -80.156250, 62.431074 ], [ -79.804688, 62.431074 ] ] ], [ [ [ -63.984375, 49.837982 ], [ -64.687500, 49.837982 ], [ -64.687500, 50.064192 ], [ -63.984375, 50.064192 ], [ -63.984375, 49.837982 ] ] ], [ [ [ -68.906250, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 48.690960 ], [ -67.500000, 48.690960 ], [ -67.500000, 48.922499 ], [ -66.796875, 48.922499 ], [ -66.796875, 49.152970 ], [ -65.742188, 49.152970 ], [ -65.742188, 49.382373 ], [ -65.390625, 49.382373 ], [ -65.390625, 49.152970 ], [ -64.687500, 49.152970 ], [ -64.687500, 48.922499 ], [ -64.335938, 48.922499 ], [ -64.335938, 48.690960 ], [ -64.687500, 48.690960 ], [ -64.687500, 48.458352 ], [ -65.039062, 48.458352 ], [ -65.039062, 48.224673 ], [ -65.390625, 48.224673 ], [ -65.390625, 47.517201 ], [ -65.039062, 47.517201 ], [ -65.039062, 46.558860 ], [ -64.687500, 46.558860 ], [ -64.687500, 46.073231 ], [ -63.984375, 46.073231 ], [ -63.984375, 45.828799 ], [ -62.226562, 45.828799 ], [ -62.226562, 46.073231 ], [ -61.523438, 46.073231 ], [ -61.523438, 46.316584 ], [ -61.171875, 46.316584 ], [ -61.171875, 46.800059 ], [ -60.820312, 46.800059 ], [ -60.820312, 46.558860 ], [ -60.468750, 46.558860 ], [ -60.468750, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.828799 ], [ -60.468750, 45.828799 ], [ -60.468750, 45.583290 ], [ -60.820312, 45.583290 ], [ -60.820312, 45.336702 ], [ -61.523438, 45.336702 ], [ -61.523438, 45.089036 ], [ -62.578125, 45.089036 ], [ -62.578125, 44.840291 ], [ -63.281250, 44.840291 ], [ -63.281250, 44.590467 ], [ -63.984375, 44.590467 ], [ -63.984375, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 43.834527 ], [ -66.445312, 43.834527 ], [ -66.445312, 44.590467 ], [ -66.093750, 44.590467 ], [ -66.093750, 44.840291 ], [ -65.390625, 44.840291 ], [ -65.390625, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.583290 ], [ -67.851562, 45.583290 ], [ -67.851562, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.040182 ], [ -69.960938, 47.040182 ], [ -69.960938, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.754098 ], [ -69.257812, 47.754098 ], [ -69.257812, 48.224673 ], [ -68.906250, 48.224673 ], [ -68.906250, 48.458352 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, 39.095963 ], [ -75.234375, 38.548165 ], [ -74.882812, 38.548165 ], [ -74.882812, 37.996163 ], [ -75.234375, 37.996163 ], [ -75.234375, 37.718590 ], [ -75.585938, 37.718590 ], [ -75.585938, 37.996163 ], [ -76.289062, 37.996163 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.585938, 36.031332 ], [ -75.585938, 35.173808 ], [ -75.937500, 35.173808 ], [ -75.937500, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.597042 ], [ -77.343750, 34.597042 ], [ -77.343750, 34.307144 ], [ -77.695312, 34.307144 ], [ -77.695312, 34.016242 ], [ -78.046875, 34.016242 ], [ -78.046875, 33.724340 ], [ -78.398438, 33.724340 ], [ -78.398438, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.546813 ], [ -80.156250, 32.546813 ], [ -80.156250, 32.249974 ], [ -80.507812, 32.249974 ], [ -80.507812, 31.952162 ], [ -80.859375, 31.952162 ], [ -80.859375, 31.653381 ], [ -81.210938, 31.653381 ], [ -81.210938, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.448674 ], [ -81.210938, 30.448674 ], [ -81.210938, 29.535230 ], [ -80.859375, 29.535230 ], [ -80.859375, 28.921631 ], [ -80.507812, 28.921631 ], [ -80.507812, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 25.482951 ], [ -80.507812, 25.482951 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.482951 ], [ -81.562500, 25.482951 ], [ -81.562500, 25.799891 ], [ -81.914062, 25.799891 ], [ -81.914062, 26.431228 ], [ -82.265625, 26.431228 ], [ -82.265625, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.683528 ], [ -82.968750, 27.683528 ], [ -82.968750, 28.304381 ], [ -82.617188, 28.304381 ], [ -82.617188, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.228890 ], [ -83.320312, 29.228890 ], [ -83.320312, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.535230 ], [ -85.429688, 29.535230 ], [ -85.429688, 29.840644 ], [ -85.781250, 29.840644 ], [ -85.781250, 30.145127 ], [ -86.484375, 30.145127 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.145127 ], [ -88.242188, 30.145127 ], [ -88.242188, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.840644 ], [ -89.296875, 29.840644 ], [ -89.296875, 29.228890 ], [ -91.757812, 29.228890 ], [ -91.757812, 48.224673 ], [ -90.351562, 48.224673 ], [ -90.351562, 47.989922 ], [ -88.593750, 47.989922 ], [ -88.593750, 48.224673 ], [ -88.242188, 48.224673 ], [ -88.242188, 47.989922 ], [ -87.539062, 47.989922 ], [ -87.539062, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.316584 ], [ -84.023438, 46.316584 ], [ -84.023438, 46.073231 ], [ -83.320312, 46.073231 ], [ -83.320312, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 44.840291 ], [ -82.265625, 44.840291 ], [ -82.265625, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.293564 ], [ -79.804688, 42.293564 ], [ -79.804688, 42.553080 ], [ -79.101562, 42.553080 ], [ -79.101562, 42.811522 ], [ -78.750000, 42.811522 ], [ -78.750000, 43.068888 ], [ -79.101562, 43.068888 ], [ -79.101562, 43.580391 ], [ -76.992188, 43.580391 ], [ -76.992188, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 44.087585 ], [ -75.937500, 44.087585 ], [ -75.937500, 44.339565 ], [ -75.585938, 44.339565 ], [ -75.585938, 44.590467 ], [ -75.234375, 44.590467 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.312500, 45.583290 ], [ -70.312500, 46.316584 ], [ -69.960938, 46.316584 ], [ -69.960938, 46.800059 ], [ -69.609375, 46.800059 ], [ -69.609375, 47.279229 ], [ -68.203125, 47.279229 ], [ -68.203125, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.840291 ], [ -66.796875, 44.840291 ], [ -66.796875, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.339565 ], [ -68.203125, 44.339565 ], [ -68.203125, 44.087585 ], [ -68.906250, 44.087585 ], [ -68.906250, 43.834527 ], [ -69.609375, 43.834527 ], [ -69.609375, 43.580391 ], [ -69.960938, 43.580391 ], [ -69.960938, 43.325178 ], [ -70.312500, 43.325178 ], [ -70.312500, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 41.771312 ], [ -70.312500, 41.771312 ], [ -70.312500, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.508577 ], [ -71.015625, 41.508577 ], [ -71.015625, 41.244772 ], [ -72.070312, 41.244772 ], [ -72.070312, 40.979898 ], [ -72.421875, 40.979898 ], [ -72.421875, 40.713956 ], [ -73.828125, 40.713956 ], [ -73.828125, 39.909736 ], [ -74.179688, 39.909736 ], [ -74.179688, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 38.822591 ], [ -74.882812, 38.822591 ], [ -74.882812, 39.095963 ], [ -75.234375, 39.095963 ] ], [ [ -76.640625, 38.822591 ], [ -76.640625, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ], [ -76.640625, 38.822591 ] ], [ [ -72.773438, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.244772 ] ], [ [ -75.234375, 39.095963 ], [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 39.095963 ], [ -75.234375, 39.095963 ] ] ], [ [ [ -75.585938, 37.439974 ], [ -75.585938, 37.160317 ], [ -75.937500, 37.160317 ], [ -75.937500, 37.439974 ], [ -75.585938, 37.439974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.703125, 48.458352 ], [ -90.703125, 48.224673 ], [ -87.890625, 48.224673 ], [ -87.890625, 47.989922 ], [ -87.187500, 47.989922 ], [ -87.187500, 47.754098 ], [ -86.484375, 47.754098 ], [ -86.484375, 47.517201 ], [ -86.132812, 47.517201 ], [ -86.132812, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.558860 ], [ -84.375000, 46.558860 ], [ -84.375000, 46.316584 ], [ -83.671875, 46.316584 ], [ -83.671875, 45.828799 ], [ -83.320312, 45.828799 ], [ -83.320312, 45.583290 ], [ -82.617188, 45.583290 ], [ -82.617188, 44.087585 ], [ -82.265625, 44.087585 ], [ -82.265625, 43.325178 ], [ -82.617188, 43.325178 ], [ -82.617188, 42.811522 ], [ -82.968750, 42.811522 ], [ -82.968750, 42.293564 ], [ -83.320312, 42.293564 ], [ -83.320312, 41.771312 ], [ -82.265625, 41.771312 ], [ -82.265625, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 42.293564 ], [ -80.859375, 42.293564 ], [ -80.859375, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 43.325178 ], [ -79.453125, 43.325178 ], [ -79.453125, 43.580391 ], [ -78.750000, 43.580391 ], [ -78.750000, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 44.339565 ], [ -76.289062, 44.339565 ], [ -76.289062, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 45.089036 ], [ -71.718750, 45.089036 ], [ -71.718750, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.828799 ], [ -70.312500, 45.828799 ], [ -70.312500, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 47.279229 ], [ -67.851562, 47.279229 ], [ -67.851562, 45.583290 ], [ -67.500000, 45.583290 ], [ -67.500000, 45.336702 ], [ -67.148438, 45.336702 ], [ -67.148438, 44.590467 ], [ -67.851562, 44.590467 ], [ -67.851562, 44.339565 ], [ -68.554688, 44.339565 ], [ -68.554688, 44.087585 ], [ -69.609375, 44.087585 ], [ -69.609375, 43.834527 ], [ -70.312500, 43.834527 ], [ -70.312500, 43.580391 ], [ -70.664062, 43.580391 ], [ -70.664062, 43.068888 ], [ -71.015625, 43.068888 ], [ -71.015625, 42.293564 ], [ -70.664062, 42.293564 ], [ -70.664062, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.771312 ], [ -70.312500, 41.771312 ], [ -70.312500, 41.508577 ], [ -72.421875, 41.508577 ], [ -72.421875, 41.244772 ], [ -72.421875, 40.713956 ], [ -74.531250, 40.713956 ], [ -74.531250, 40.446947 ], [ -74.179688, 40.446947 ], [ -74.179688, 39.639538 ], [ -74.531250, 39.639538 ], [ -74.531250, 39.368279 ], [ -74.882812, 39.368279 ], [ -74.882812, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 38.272689 ], [ -75.585938, 38.272689 ], [ -75.585938, 37.718590 ], [ -75.937500, 37.718590 ], [ -75.937500, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ], [ -76.640625, 38.822591 ], [ -76.640625, 38.272689 ], [ -76.992188, 38.272689 ], [ -76.992188, 37.996163 ], [ -76.640625, 37.996163 ], [ -76.640625, 37.439974 ], [ -76.289062, 37.439974 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 35.460670 ], [ -76.289062, 35.460670 ], [ -76.289062, 34.885931 ], [ -76.992188, 34.885931 ], [ -76.992188, 34.597042 ], [ -77.695312, 34.597042 ], [ -77.695312, 34.307144 ], [ -78.046875, 34.307144 ], [ -78.046875, 34.016242 ], [ -78.750000, 34.016242 ], [ -78.750000, 33.724340 ], [ -79.101562, 33.724340 ], [ -79.101562, 33.431441 ], [ -79.453125, 33.431441 ], [ -79.453125, 33.137551 ], [ -79.804688, 33.137551 ], [ -79.804688, 32.842674 ], [ -80.156250, 32.842674 ], [ -80.156250, 32.546813 ], [ -80.507812, 32.546813 ], [ -80.507812, 32.249974 ], [ -81.210938, 32.249974 ], [ -81.210938, 31.952162 ], [ -81.562500, 31.952162 ], [ -81.562500, 29.535230 ], [ -81.210938, 29.535230 ], [ -81.210938, 28.921631 ], [ -80.859375, 28.921631 ], [ -80.859375, 27.994401 ], [ -80.507812, 27.994401 ], [ -80.507812, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 25.799891 ], [ -80.507812, 25.799891 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.482951 ], [ -81.562500, 25.482951 ], [ -81.562500, 25.799891 ], [ -81.914062, 25.799891 ], [ -81.914062, 26.431228 ], [ -82.265625, 26.431228 ], [ -82.265625, 26.745610 ], [ -82.617188, 26.745610 ], [ -82.617188, 27.371767 ], [ -82.968750, 27.371767 ], [ -82.968750, 29.228890 ], [ -83.320312, 29.228890 ], [ -83.320312, 29.535230 ], [ -83.671875, 29.535230 ], [ -83.671875, 29.840644 ], [ -84.023438, 29.840644 ], [ -84.023438, 30.145127 ], [ -84.726562, 30.145127 ], [ -84.726562, 29.840644 ], [ -85.429688, 29.840644 ], [ -85.429688, 30.145127 ], [ -85.781250, 30.145127 ], [ -85.781250, 30.448674 ], [ -89.648438, 30.448674 ], [ -89.648438, 29.535230 ], [ -89.296875, 29.535230 ], [ -89.296875, 29.228890 ], [ -91.406250, 29.228890 ], [ -91.406250, 29.535230 ], [ -91.757812, 29.535230 ], [ -91.757812, 48.224673 ], [ -91.054688, 48.224673 ], [ -91.054688, 48.458352 ], [ -90.703125, 48.458352 ] ], [ [ -72.773438, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.244772 ] ] ], [ [ [ -75.937500, 37.718590 ], [ -75.937500, 37.439974 ], [ -76.289062, 37.439974 ], [ -76.289062, 37.718590 ], [ -75.937500, 37.718590 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.187500, 21.616579 ], [ -87.187500, 21.289374 ], [ -86.835938, 21.289374 ], [ -86.835938, 20.632784 ], [ -87.187500, 20.632784 ], [ -87.187500, 20.303418 ], [ -87.539062, 20.303418 ], [ -87.539062, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 18.312811 ], [ -88.242188, 18.312811 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.644022 ], [ -90.000000, 17.644022 ], [ -90.000000, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 18.646245 ], [ -91.406250, 18.646245 ], [ -91.406250, 18.979026 ], [ -90.703125, 18.979026 ], [ -90.703125, 20.303418 ], [ -90.351562, 20.303418 ], [ -90.351562, 20.961440 ], [ -89.648438, 20.961440 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -87.187500, 21.616579 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.299051 ], [ -91.757812, 16.299051 ], [ -91.757812, 16.972741 ] ] ], [ [ [ -86.835938, 21.289374 ], [ -87.187500, 21.289374 ], [ -87.187500, 20.632784 ], [ -87.539062, 20.632784 ], [ -87.539062, 19.973349 ], [ -87.890625, 19.973349 ], [ -87.890625, 19.642588 ], [ -87.539062, 19.642588 ], [ -87.539062, 19.311143 ], [ -87.890625, 19.311143 ], [ -87.890625, 18.312811 ], [ -88.242188, 18.312811 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.312811 ], [ -88.945312, 18.312811 ], [ -88.945312, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.757812, 17.308688 ], [ -91.757812, 18.979026 ], [ -91.054688, 18.979026 ], [ -91.054688, 19.642588 ], [ -90.703125, 19.642588 ], [ -90.703125, 20.961440 ], [ -90.351562, 20.961440 ], [ -90.351562, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.616579 ], [ -86.835938, 21.616579 ], [ -86.835938, 21.289374 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.978733 ], [ -90.000000, 17.644022 ], [ -89.296875, 17.644022 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.284185 ], [ -88.593750, 15.284185 ], [ -88.593750, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.581921 ], [ -90.703125, 13.581921 ], [ -90.703125, 13.923404 ], [ -91.757812, 13.923404 ], [ -91.757812, 15.961329 ], [ -90.351562, 15.961329 ], [ -90.351562, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -90.000000, 17.978733 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 17.978733 ], [ -89.296875, 15.961329 ], [ -88.242188, 15.961329 ], [ -88.242188, 15.623037 ], [ -88.945312, 15.623037 ], [ -88.945312, 15.284185 ], [ -89.296875, 15.284185 ], [ -89.296875, 14.604847 ], [ -89.648438, 14.604847 ], [ -89.648438, 14.264383 ], [ -90.000000, 14.264383 ], [ -90.000000, 13.923404 ], [ -91.406250, 13.923404 ], [ -91.406250, 14.264383 ], [ -91.757812, 14.264383 ], [ -91.757812, 16.299051 ], [ -90.703125, 16.299051 ], [ -90.703125, 16.636192 ], [ -91.054688, 16.636192 ], [ -91.054688, 16.972741 ], [ -91.757812, 16.972741 ], [ -91.757812, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -89.296875, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.398438, 67.204032 ], [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -37.617188, 65.802776 ], [ -37.617188, 65.658275 ], [ -38.671875, 65.658275 ], [ -38.671875, 65.512963 ], [ -39.726562, 65.512963 ], [ -39.726562, 65.366837 ], [ -40.078125, 65.366837 ], [ -40.078125, 65.072130 ], [ -40.429688, 65.072130 ], [ -40.429688, 64.774125 ], [ -40.781250, 64.774125 ], [ -40.781250, 63.860036 ], [ -41.132812, 63.860036 ], [ -41.132812, 63.391522 ], [ -41.484375, 63.391522 ], [ -41.484375, 63.233627 ], [ -41.835938, 63.233627 ], [ -41.835938, 63.074866 ], [ -42.187500, 63.074866 ], [ -42.187500, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 61.438767 ], [ -42.890625, 61.438767 ], [ -42.890625, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.703125, 60.413852 ], [ -45.703125, 60.586967 ], [ -46.054688, 60.586967 ], [ -46.054688, 60.759160 ], [ -46.406250, 60.759160 ], [ -46.406250, 60.930432 ], [ -48.515625, 60.930432 ], [ -48.515625, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.270233 ], [ -49.218750, 61.270233 ], [ -49.218750, 61.606396 ], [ -49.570312, 61.606396 ], [ -49.570312, 62.103883 ], [ -49.921875, 62.103883 ], [ -49.921875, 62.431074 ], [ -50.273438, 62.431074 ], [ -50.273438, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 64.014496 ], [ -52.031250, 64.014496 ], [ -52.031250, 64.774125 ], [ -52.382812, 64.774125 ], [ -52.382812, 65.219894 ], [ -52.734375, 65.219894 ], [ -52.734375, 65.512963 ], [ -53.085938, 65.512963 ], [ -53.085938, 65.658275 ], [ -53.437500, 65.658275 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.204032 ], [ -33.398438, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.750000, 67.204032 ], [ -33.750000, 67.067433 ], [ -34.101562, 67.067433 ], [ -34.101562, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.652977 ], [ -34.804688, 66.652977 ], [ -34.804688, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.372755 ], [ -35.859375, 66.372755 ], [ -35.859375, 66.231457 ], [ -36.210938, 66.231457 ], [ -36.210938, 66.089364 ], [ -36.562500, 66.089364 ], [ -36.562500, 65.946472 ], [ -37.617188, 65.946472 ], [ -37.617188, 65.802776 ], [ -38.671875, 65.802776 ], [ -38.671875, 65.658275 ], [ -39.375000, 65.658275 ], [ -39.375000, 65.512963 ], [ -40.078125, 65.512963 ], [ -40.078125, 65.366837 ], [ -40.429688, 65.366837 ], [ -40.429688, 65.072130 ], [ -40.781250, 65.072130 ], [ -40.781250, 64.014496 ], [ -41.132812, 64.014496 ], [ -41.132812, 63.704722 ], [ -41.484375, 63.704722 ], [ -41.484375, 63.391522 ], [ -41.835938, 63.391522 ], [ -41.835938, 63.233627 ], [ -42.187500, 63.233627 ], [ -42.187500, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 61.438767 ], [ -42.890625, 61.438767 ], [ -42.890625, 60.759160 ], [ -43.242188, 60.759160 ], [ -43.242188, 60.413852 ], [ -43.593750, 60.413852 ], [ -43.593750, 60.239811 ], [ -43.945312, 60.239811 ], [ -43.945312, 60.064840 ], [ -45.351562, 60.064840 ], [ -45.351562, 60.239811 ], [ -45.703125, 60.239811 ], [ -45.703125, 60.586967 ], [ -46.054688, 60.586967 ], [ -46.054688, 60.759160 ], [ -46.406250, 60.759160 ], [ -46.406250, 60.930432 ], [ -48.867188, 60.930432 ], [ -48.867188, 61.100789 ], [ -49.218750, 61.100789 ], [ -49.218750, 61.270233 ], [ -49.570312, 61.270233 ], [ -49.570312, 61.938950 ], [ -49.921875, 61.938950 ], [ -49.921875, 62.431074 ], [ -50.273438, 62.431074 ], [ -50.273438, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.233627 ], [ -51.328125, 63.233627 ], [ -51.328125, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 63.860036 ], [ -52.031250, 63.860036 ], [ -52.031250, 64.168107 ], [ -52.382812, 64.168107 ], [ -52.382812, 65.219894 ], [ -52.734375, 65.219894 ], [ -52.734375, 65.512963 ], [ -53.085938, 65.512963 ], [ -53.085938, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 66.089364 ], [ -53.789062, 66.089364 ], [ -53.789062, 66.513260 ], [ -53.437500, 66.513260 ], [ -53.437500, 66.930060 ], [ -53.789062, 66.930060 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.204032 ], [ -33.750000, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 24.846565 ], [ -78.046875, 24.527135 ], [ -77.695312, 24.527135 ], [ -77.695312, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.206890 ], [ -78.398438, 24.206890 ], [ -78.398438, 24.846565 ], [ -78.046875, 24.846565 ] ] ], [ [ [ -76.992188, 26.745610 ], [ -76.992188, 26.115986 ], [ -77.343750, 26.115986 ], [ -77.343750, 26.745610 ], [ -76.992188, 26.745610 ] ] ], [ [ [ -77.695312, 26.745610 ], [ -77.695312, 26.431228 ], [ -79.101562, 26.431228 ], [ -79.101562, 26.745610 ], [ -77.695312, 26.745610 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 25.482951 ], [ -78.046875, 24.846565 ], [ -77.695312, 24.846565 ], [ -77.695312, 23.885838 ], [ -78.046875, 23.885838 ], [ -78.046875, 24.527135 ], [ -78.750000, 24.527135 ], [ -78.750000, 25.165173 ], [ -78.398438, 25.165173 ], [ -78.398438, 25.482951 ], [ -78.046875, 25.482951 ] ] ], [ [ [ -77.343750, 26.431228 ], [ -77.343750, 26.115986 ], [ -77.695312, 26.115986 ], [ -77.695312, 26.431228 ], [ -77.343750, 26.431228 ] ] ], [ [ [ -78.046875, 27.059126 ], [ -78.046875, 26.745610 ], [ -78.398438, 26.745610 ], [ -78.398438, 26.431228 ], [ -79.101562, 26.431228 ], [ -79.101562, 27.059126 ], [ -78.046875, 27.059126 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 16.299051 ], [ -88.593750, 16.299051 ], [ -88.593750, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.646245 ], [ -88.242188, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 17.644022 ], [ -88.242188, 17.644022 ], [ -88.242188, 16.972741 ], [ -88.593750, 16.972741 ], [ -88.593750, 16.299051 ], [ -88.945312, 16.299051 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 18.646245 ], [ -88.242188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.945312, 14.264383 ], [ -88.945312, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -89.296875, 13.239945 ], [ -89.296875, 13.581921 ], [ -90.000000, 13.581921 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.264383 ], [ -88.945312, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.604847 ], [ -89.296875, 14.264383 ], [ -88.593750, 14.264383 ], [ -88.593750, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -88.945312, 13.239945 ], [ -88.945312, 13.581921 ], [ -90.351562, 13.581921 ], [ -90.351562, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.604847 ], [ -89.296875, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.284185 ], [ -83.320312, 15.284185 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.604847 ], [ -84.726562, 14.604847 ], [ -84.726562, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 13.923404 ], [ -86.835938, 13.923404 ], [ -86.835938, 12.897489 ], [ -87.539062, 12.897489 ], [ -87.539062, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.923404 ], [ -88.945312, 13.923404 ], [ -88.945312, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.944785 ], [ -88.593750, 14.944785 ], [ -88.593750, 15.284185 ], [ -88.242188, 15.284185 ], [ -88.242188, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.961329 ], [ -87.539062, 15.961329 ], [ -87.539062, 15.623037 ], [ -86.132812, 15.623037 ], [ -86.132812, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 15.961329 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.284185 ], [ -83.671875, 15.284185 ], [ -83.671875, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 14.604847 ], [ -85.429688, 14.604847 ], [ -85.429688, 14.264383 ], [ -85.781250, 14.264383 ], [ -85.781250, 13.923404 ], [ -86.835938, 13.923404 ], [ -86.835938, 13.581921 ], [ -87.187500, 13.581921 ], [ -87.187500, 13.239945 ], [ -87.539062, 13.239945 ], [ -87.539062, 13.581921 ], [ -87.890625, 13.581921 ], [ -87.890625, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 15.284185 ], [ -88.945312, 15.284185 ], [ -88.945312, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.961329 ], [ -84.375000, 15.961329 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.944785 ], [ -83.320312, 13.581921 ], [ -83.671875, 13.581921 ], [ -83.671875, 12.554564 ], [ -83.320312, 12.554564 ], [ -83.320312, 12.211180 ], [ -83.671875, 12.211180 ], [ -83.671875, 11.523088 ], [ -84.023438, 11.523088 ], [ -84.023438, 11.178402 ], [ -83.671875, 11.178402 ], [ -83.671875, 10.833306 ], [ -85.429688, 10.833306 ], [ -85.429688, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.523088 ], [ -86.484375, 11.523088 ], [ -86.484375, 11.867351 ], [ -86.835938, 11.867351 ], [ -86.835938, 12.211180 ], [ -87.187500, 12.211180 ], [ -87.187500, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.897489 ], [ -86.835938, 12.897489 ], [ -86.835938, 13.923404 ], [ -85.078125, 13.923404 ], [ -85.078125, 14.944785 ], [ -84.726562, 14.944785 ], [ -84.726562, 14.604847 ], [ -83.671875, 14.604847 ], [ -83.671875, 14.944785 ], [ -83.320312, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 15.284185 ], [ -83.320312, 14.264383 ], [ -83.671875, 14.264383 ], [ -83.671875, 12.211180 ], [ -84.023438, 12.211180 ], [ -84.023438, 11.867351 ], [ -83.671875, 11.867351 ], [ -83.671875, 11.523088 ], [ -84.023438, 11.523088 ], [ -84.023438, 11.178402 ], [ -83.671875, 11.178402 ], [ -83.671875, 10.833306 ], [ -84.375000, 10.833306 ], [ -84.375000, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.523088 ], [ -86.835938, 11.523088 ], [ -86.835938, 12.211180 ], [ -87.187500, 12.211180 ], [ -87.187500, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.897489 ], [ -87.890625, 12.897489 ], [ -87.890625, 13.239945 ], [ -87.187500, 13.239945 ], [ -87.187500, 13.581921 ], [ -86.835938, 13.581921 ], [ -86.835938, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 14.264383 ], [ -85.429688, 14.264383 ], [ -85.429688, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 15.284185 ], [ -83.320312, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.507812, 23.241346 ], [ -80.507812, 22.917923 ], [ -79.804688, 22.917923 ], [ -79.804688, 22.593726 ], [ -79.453125, 22.593726 ], [ -79.453125, 22.268764 ], [ -78.750000, 22.268764 ], [ -78.750000, 22.593726 ], [ -78.398438, 22.593726 ], [ -78.398438, 22.268764 ], [ -78.046875, 22.268764 ], [ -78.046875, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.616579 ], [ -76.992188, 21.616579 ], [ -76.992188, 21.289374 ], [ -76.289062, 21.289374 ], [ -76.289062, 20.961440 ], [ -75.585938, 20.961440 ], [ -75.585938, 20.632784 ], [ -74.882812, 20.632784 ], [ -74.882812, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 19.973349 ], [ -76.992188, 19.973349 ], [ -76.992188, 20.303418 ], [ -77.343750, 20.303418 ], [ -77.343750, 20.632784 ], [ -78.398438, 20.632784 ], [ -78.398438, 21.289374 ], [ -78.750000, 21.289374 ], [ -78.750000, 21.616579 ], [ -80.156250, 21.616579 ], [ -80.156250, 21.943046 ], [ -81.562500, 21.943046 ], [ -81.562500, 22.268764 ], [ -81.914062, 22.268764 ], [ -81.914062, 22.593726 ], [ -82.617188, 22.593726 ], [ -82.617188, 22.268764 ], [ -84.023438, 22.268764 ], [ -84.023438, 21.943046 ], [ -84.375000, 21.943046 ], [ -84.375000, 22.593726 ], [ -83.671875, 22.593726 ], [ -83.671875, 22.917923 ], [ -82.265625, 22.917923 ], [ -82.265625, 23.241346 ], [ -80.507812, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.507812, 23.241346 ], [ -80.507812, 22.917923 ], [ -79.804688, 22.917923 ], [ -79.804688, 22.593726 ], [ -78.046875, 22.593726 ], [ -78.046875, 22.268764 ], [ -77.695312, 22.268764 ], [ -77.695312, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.616579 ], [ -76.992188, 21.616579 ], [ -76.992188, 21.289374 ], [ -75.937500, 21.289374 ], [ -75.937500, 20.961440 ], [ -75.234375, 20.961440 ], [ -75.234375, 20.632784 ], [ -74.531250, 20.632784 ], [ -74.531250, 19.973349 ], [ -77.695312, 19.973349 ], [ -77.695312, 20.303418 ], [ -77.343750, 20.303418 ], [ -77.343750, 20.632784 ], [ -77.695312, 20.632784 ], [ -77.695312, 20.961440 ], [ -78.750000, 20.961440 ], [ -78.750000, 21.616579 ], [ -80.156250, 21.616579 ], [ -80.156250, 21.943046 ], [ -80.859375, 21.943046 ], [ -80.859375, 22.268764 ], [ -82.265625, 22.268764 ], [ -82.265625, 22.593726 ], [ -81.914062, 22.593726 ], [ -81.914062, 22.917923 ], [ -82.968750, 22.917923 ], [ -82.968750, 22.593726 ], [ -83.320312, 22.593726 ], [ -83.320312, 22.268764 ], [ -84.023438, 22.268764 ], [ -84.023438, 21.943046 ], [ -84.726562, 21.943046 ], [ -84.726562, 22.268764 ], [ -84.375000, 22.268764 ], [ -84.375000, 22.593726 ], [ -84.023438, 22.593726 ], [ -84.023438, 22.917923 ], [ -83.320312, 22.917923 ], [ -83.320312, 23.241346 ], [ -80.507812, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.429688, 11.178402 ], [ -85.429688, 10.833306 ], [ -83.671875, 10.833306 ], [ -83.671875, 10.487812 ], [ -83.320312, 10.487812 ], [ -83.320312, 10.141932 ], [ -82.968750, 10.141932 ], [ -82.968750, 9.795678 ], [ -82.617188, 9.795678 ], [ -82.617188, 9.449062 ], [ -82.968750, 9.449062 ], [ -82.968750, 8.059230 ], [ -83.671875, 8.059230 ], [ -83.671875, 9.102097 ], [ -84.023438, 9.102097 ], [ -84.023438, 9.449062 ], [ -84.726562, 9.449062 ], [ -84.726562, 9.795678 ], [ -85.078125, 9.795678 ], [ -85.078125, 9.449062 ], [ -85.429688, 9.449062 ], [ -85.429688, 9.795678 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -85.429688, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.375000, 11.178402 ], [ -84.375000, 10.833306 ], [ -83.671875, 10.833306 ], [ -83.671875, 10.141932 ], [ -83.320312, 10.141932 ], [ -83.320312, 9.795678 ], [ -82.968750, 9.795678 ], [ -82.968750, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -84.023438, 9.102097 ], [ -84.023438, 9.449062 ], [ -84.375000, 9.449062 ], [ -84.375000, 9.795678 ], [ -84.726562, 9.795678 ], [ -84.726562, 10.141932 ], [ -85.078125, 10.141932 ], [ -85.078125, 9.795678 ], [ -85.429688, 9.795678 ], [ -85.429688, 10.141932 ], [ -86.132812, 10.141932 ], [ -86.132812, 10.487812 ], [ -85.781250, 10.487812 ], [ -85.781250, 10.833306 ], [ -86.132812, 10.833306 ], [ -86.132812, 11.178402 ], [ -84.375000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.398438, 9.449062 ], [ -78.398438, 9.102097 ], [ -77.695312, 9.102097 ], [ -77.695312, 8.754795 ], [ -77.343750, 8.754795 ], [ -77.343750, 7.710992 ], [ -77.695312, 7.710992 ], [ -77.695312, 7.362467 ], [ -78.046875, 7.362467 ], [ -78.046875, 7.710992 ], [ -78.398438, 7.710992 ], [ -78.398438, 8.059230 ], [ -78.046875, 8.059230 ], [ -78.046875, 8.407168 ], [ -78.750000, 8.407168 ], [ -78.750000, 8.754795 ], [ -79.101562, 8.754795 ], [ -79.101562, 9.102097 ], [ -79.453125, 9.102097 ], [ -79.453125, 8.754795 ], [ -79.804688, 8.754795 ], [ -79.804688, 8.407168 ], [ -80.507812, 8.407168 ], [ -80.507812, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.362467 ], [ -81.210938, 7.362467 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.059230 ], [ -82.265625, 8.059230 ], [ -82.265625, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.449062 ], [ -82.617188, 9.449062 ], [ -82.617188, 9.102097 ], [ -81.562500, 9.102097 ], [ -81.562500, 8.754795 ], [ -80.507812, 8.754795 ], [ -80.507812, 9.102097 ], [ -79.804688, 9.102097 ], [ -79.804688, 9.449062 ], [ -78.398438, 9.449062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.101562, 9.795678 ], [ -79.101562, 9.449062 ], [ -78.398438, 9.449062 ], [ -78.398438, 9.102097 ], [ -78.046875, 9.102097 ], [ -78.046875, 8.754795 ], [ -77.695312, 8.754795 ], [ -77.695312, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 7.710992 ], [ -78.046875, 7.710992 ], [ -78.046875, 7.362467 ], [ -78.398438, 7.362467 ], [ -78.398438, 7.710992 ], [ -78.750000, 7.710992 ], [ -78.750000, 8.059230 ], [ -78.398438, 8.059230 ], [ -78.398438, 8.407168 ], [ -78.750000, 8.407168 ], [ -78.750000, 8.754795 ], [ -79.453125, 8.754795 ], [ -79.453125, 9.102097 ], [ -79.804688, 9.102097 ], [ -79.804688, 8.407168 ], [ -80.507812, 8.407168 ], [ -80.507812, 8.059230 ], [ -80.156250, 8.059230 ], [ -80.156250, 7.710992 ], [ -80.507812, 7.710992 ], [ -80.507812, 7.362467 ], [ -81.210938, 7.362467 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 8.059230 ], [ -81.914062, 8.059230 ], [ -81.914062, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.795678 ], [ -82.617188, 9.795678 ], [ -82.617188, 9.449062 ], [ -82.265625, 9.449062 ], [ -82.265625, 9.102097 ], [ -80.859375, 9.102097 ], [ -80.859375, 9.449062 ], [ -79.804688, 9.449062 ], [ -79.804688, 9.795678 ], [ -79.101562, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.289062, 18.312811 ], [ -76.289062, 17.978733 ], [ -76.992188, 17.978733 ], [ -76.992188, 17.644022 ], [ -77.695312, 17.644022 ], [ -77.695312, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.312811 ], [ -76.289062, 18.312811 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.992188, 18.646245 ], [ -76.992188, 18.312811 ], [ -76.640625, 18.312811 ], [ -76.640625, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.646245 ], [ -76.992188, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.421875, 19.973349 ], [ -72.421875, 19.642588 ], [ -71.718750, 19.642588 ], [ -71.718750, 18.646245 ], [ -72.070312, 18.646245 ], [ -72.070312, 18.312811 ], [ -71.718750, 18.312811 ], [ -71.718750, 17.978733 ], [ -74.531250, 17.978733 ], [ -74.531250, 18.646245 ], [ -73.476562, 18.646245 ], [ -73.476562, 18.312811 ], [ -72.421875, 18.312811 ], [ -72.421875, 18.646245 ], [ -72.773438, 18.646245 ], [ -72.773438, 19.642588 ], [ -73.125000, 19.642588 ], [ -73.125000, 19.973349 ], [ -72.421875, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 19.973349 ], [ -71.718750, 18.312811 ], [ -74.531250, 18.312811 ], [ -74.531250, 18.979026 ], [ -74.179688, 18.979026 ], [ -74.179688, 18.646245 ], [ -72.421875, 18.646245 ], [ -72.421875, 18.979026 ], [ -73.125000, 18.979026 ], [ -73.125000, 19.642588 ], [ -73.476562, 19.642588 ], [ -73.476562, 19.973349 ], [ -71.718750, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.664062, 19.973349 ], [ -70.664062, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.906250, 18.979026 ], [ -68.906250, 18.646245 ], [ -68.203125, 18.646245 ], [ -68.203125, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 17.978733 ], [ -71.367188, 17.978733 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.312811 ], [ -72.070312, 18.312811 ], [ -72.070312, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 19.973349 ], [ -70.664062, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.015625, 19.973349 ], [ -71.015625, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.906250, 18.979026 ], [ -68.906250, 18.646245 ], [ -68.554688, 18.646245 ], [ -68.554688, 18.312811 ], [ -69.257812, 18.312811 ], [ -69.257812, 18.646245 ], [ -69.960938, 18.646245 ], [ -69.960938, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 17.978733 ], [ -71.367188, 17.978733 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 19.973349 ], [ -71.015625, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.148438, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.960938, 0.703107 ], [ -69.960938, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -1.054628 ], [ -69.257812, -1.054628 ], [ -69.257812, -1.406109 ], [ -69.609375, -1.406109 ], [ -69.609375, -1.757537 ], [ -73.828125, -1.757537 ], [ -73.828125, -1.406109 ], [ -74.179688, -1.406109 ], [ -74.179688, -1.054628 ], [ -74.531250, -1.054628 ], [ -74.531250, -0.703107 ], [ -74.882812, -0.703107 ], [ -74.882812, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -76.289062, 0.000000 ], [ -76.289062, 0.351560 ], [ -77.695312, 0.351560 ], [ -77.695312, 0.703107 ], [ -78.046875, 0.703107 ], [ -78.046875, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -78.750000, 1.757537 ], [ -78.750000, 2.108899 ], [ -78.398438, 2.108899 ], [ -78.398438, 2.460181 ], [ -78.046875, 2.460181 ], [ -78.046875, 2.811371 ], [ -77.343750, 2.811371 ], [ -77.343750, 3.513421 ], [ -76.992188, 3.513421 ], [ -76.992188, 3.864255 ], [ -77.343750, 3.864255 ], [ -77.343750, 4.915833 ], [ -77.695312, 4.915833 ], [ -77.695312, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.664608 ], [ -77.695312, 6.664608 ], [ -77.695312, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.362467 ], [ -77.695312, 7.362467 ], [ -77.695312, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.754795 ], [ -76.640625, 8.754795 ], [ -76.640625, 9.102097 ], [ -75.937500, 9.102097 ], [ -75.937500, 9.449062 ], [ -75.585938, 9.449062 ], [ -75.585938, 10.487812 ], [ -75.234375, 10.487812 ], [ -75.234375, 10.833306 ], [ -74.882812, 10.833306 ], [ -74.882812, 11.178402 ], [ -73.125000, 11.178402 ], [ -73.125000, 11.523088 ], [ -72.773438, 11.523088 ], [ -72.773438, 11.867351 ], [ -72.070312, 11.867351 ], [ -72.070312, 12.211180 ], [ -71.015625, 12.211180 ], [ -71.015625, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 10.833306 ], [ -72.773438, 10.833306 ], [ -72.773438, 10.141932 ], [ -73.125000, 10.141932 ], [ -73.125000, 9.449062 ], [ -73.476562, 9.449062 ], [ -73.476562, 9.102097 ], [ -72.773438, 9.102097 ], [ -72.773438, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.362467 ], [ -72.070312, 7.362467 ], [ -72.070312, 7.013668 ], [ -69.960938, 7.013668 ], [ -69.960938, 6.664608 ], [ -69.609375, 6.664608 ], [ -69.609375, 5.965754 ], [ -68.906250, 5.965754 ], [ -68.906250, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 5.965754 ], [ -67.500000, 5.965754 ], [ -67.500000, 5.266008 ], [ -67.851562, 5.266008 ], [ -67.851562, 4.214943 ], [ -67.500000, 4.214943 ], [ -67.500000, 3.162456 ], [ -67.148438, 3.162456 ], [ -67.148438, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.108899 ], [ -67.148438, 2.108899 ], [ -67.148438, 1.757537 ] ] ], [ [ [ -67.148438, 1.757537 ], [ -66.796875, 1.757537 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.500000, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -70.312500, 0.703107 ], [ -70.312500, -0.351560 ], [ -69.609375, -0.351560 ], [ -69.609375, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.351560 ], [ -77.343750, 0.351560 ], [ -77.343750, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 1.054628 ], [ -78.750000, 1.054628 ], [ -78.750000, 1.406109 ], [ -79.101562, 1.406109 ], [ -79.101562, 1.757537 ], [ -78.750000, 1.757537 ], [ -78.750000, 2.811371 ], [ -78.046875, 2.811371 ], [ -78.046875, 3.162456 ], [ -77.695312, 3.162456 ], [ -77.695312, 3.513421 ], [ -77.343750, 3.513421 ], [ -77.343750, 3.864255 ], [ -77.695312, 3.864255 ], [ -77.695312, 4.565474 ], [ -77.343750, 4.565474 ], [ -77.343750, 5.266008 ], [ -77.695312, 5.266008 ], [ -77.695312, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.315299 ], [ -77.695312, 6.315299 ], [ -77.695312, 7.013668 ], [ -78.046875, 7.013668 ], [ -78.046875, 7.710992 ], [ -77.343750, 7.710992 ], [ -77.343750, 8.407168 ], [ -77.695312, 8.407168 ], [ -77.695312, 8.754795 ], [ -76.640625, 8.754795 ], [ -76.640625, 9.102097 ], [ -76.289062, 9.102097 ], [ -76.289062, 9.449062 ], [ -75.937500, 9.449062 ], [ -75.937500, 10.141932 ], [ -75.585938, 10.141932 ], [ -75.585938, 10.833306 ], [ -75.234375, 10.833306 ], [ -75.234375, 11.178402 ], [ -74.531250, 11.178402 ], [ -74.531250, 11.523088 ], [ -72.773438, 11.523088 ], [ -72.773438, 11.867351 ], [ -72.421875, 11.867351 ], [ -72.421875, 12.211180 ], [ -72.070312, 12.211180 ], [ -72.070312, 12.554564 ], [ -71.718750, 12.554564 ], [ -71.718750, 12.211180 ], [ -71.367188, 12.211180 ], [ -71.367188, 11.867351 ], [ -72.070312, 11.867351 ], [ -72.070312, 11.523088 ], [ -72.421875, 11.523088 ], [ -72.421875, 10.833306 ], [ -72.773438, 10.833306 ], [ -72.773438, 10.487812 ], [ -73.125000, 10.487812 ], [ -73.125000, 9.449062 ], [ -73.476562, 9.449062 ], [ -73.476562, 9.102097 ], [ -73.125000, 9.102097 ], [ -73.125000, 8.754795 ], [ -72.773438, 8.754795 ], [ -72.773438, 8.059230 ], [ -72.421875, 8.059230 ], [ -72.421875, 7.710992 ], [ -72.773438, 7.710992 ], [ -72.773438, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 7.013668 ], [ -71.367188, 7.013668 ], [ -71.367188, 7.362467 ], [ -71.015625, 7.362467 ], [ -71.015625, 7.013668 ], [ -70.312500, 7.013668 ], [ -70.312500, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 6.315299 ], [ -67.500000, 6.315299 ], [ -67.500000, 5.965754 ], [ -67.851562, 5.965754 ], [ -67.851562, 3.864255 ], [ -67.500000, 3.864255 ], [ -67.500000, 3.162456 ], [ -67.851562, 3.162456 ], [ -67.851562, 2.811371 ], [ -67.500000, 2.811371 ], [ -67.500000, 1.757537 ] ] ], [ [ [ -67.500000, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.406109 ], [ -67.500000, 1.406109 ], [ -67.500000, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.445312, 18.646245 ], [ -66.445312, 18.312811 ], [ -65.742188, 18.312811 ], [ -65.742188, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.646245 ], [ -66.445312, 18.646245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, 18.646245 ], [ -66.093750, 18.312811 ], [ -65.742188, 18.312811 ], [ -65.742188, 17.978733 ], [ -67.500000, 17.978733 ], [ -67.500000, 18.646245 ], [ -66.093750, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.609375, 11.867351 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.487812 ], [ -66.093750, 10.487812 ], [ -66.093750, 10.141932 ], [ -64.335938, 10.141932 ], [ -64.335938, 10.487812 ], [ -63.281250, 10.487812 ], [ -63.281250, 10.833306 ], [ -61.875000, 10.833306 ], [ -61.875000, 10.487812 ], [ -62.578125, 10.487812 ], [ -62.578125, 10.141932 ], [ -62.226562, 10.141932 ], [ -62.226562, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.449062 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 6.664608 ], [ -61.171875, 6.664608 ], [ -61.171875, 5.965754 ], [ -61.523438, 5.965754 ], [ -61.523438, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 4.915833 ], [ -60.468750, 4.915833 ], [ -60.468750, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.214943 ], [ -62.226562, 4.214943 ], [ -62.226562, 3.864255 ], [ -64.335938, 3.864255 ], [ -64.335938, 2.460181 ], [ -63.281250, 2.460181 ], [ -63.281250, 1.757537 ], [ -63.984375, 1.757537 ], [ -63.984375, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 2.108899 ], [ -67.500000, 2.108899 ], [ -67.500000, 2.460181 ], [ -67.851562, 2.460181 ], [ -67.851562, 2.811371 ], [ -67.148438, 2.811371 ], [ -67.148438, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 5.266008 ], [ -67.500000, 5.266008 ], [ -67.500000, 5.965754 ], [ -67.851562, 5.965754 ], [ -67.851562, 6.315299 ], [ -68.906250, 6.315299 ], [ -68.906250, 5.965754 ], [ -69.609375, 5.965754 ], [ -69.609375, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 8.407168 ], [ -72.773438, 8.407168 ], [ -72.773438, 9.102097 ], [ -73.476562, 9.102097 ], [ -73.476562, 9.449062 ], [ -73.125000, 9.449062 ], [ -73.125000, 10.141932 ], [ -72.773438, 10.141932 ], [ -72.773438, 10.833306 ], [ -72.070312, 10.833306 ], [ -72.070312, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 10.141932 ], [ -72.070312, 10.141932 ], [ -72.070312, 9.449062 ], [ -71.718750, 9.449062 ], [ -71.718750, 9.102097 ], [ -71.367188, 9.102097 ], [ -71.367188, 9.449062 ], [ -71.015625, 9.449062 ], [ -71.015625, 9.795678 ], [ -71.367188, 9.795678 ], [ -71.367188, 10.833306 ], [ -71.015625, 10.833306 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.609375, 11.867351 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 10.833306 ], [ -66.445312, 10.833306 ], [ -66.445312, 10.487812 ], [ -65.742188, 10.487812 ], [ -65.742188, 10.141932 ], [ -64.335938, 10.141932 ], [ -64.335938, 10.833306 ], [ -62.226562, 10.833306 ], [ -62.226562, 10.487812 ], [ -62.929688, 10.487812 ], [ -62.929688, 10.141932 ], [ -61.875000, 10.141932 ], [ -61.875000, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.449062 ], [ -61.171875, 9.449062 ], [ -61.171875, 9.102097 ], [ -60.820312, 9.102097 ], [ -60.820312, 8.754795 ], [ -60.468750, 8.754795 ], [ -60.468750, 8.407168 ], [ -60.117188, 8.407168 ], [ -60.117188, 8.059230 ], [ -60.820312, 8.059230 ], [ -60.820312, 7.362467 ], [ -60.468750, 7.362467 ], [ -60.468750, 7.013668 ], [ -61.171875, 7.013668 ], [ -61.171875, 5.965754 ], [ -61.523438, 5.965754 ], [ -61.523438, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 4.565474 ], [ -61.523438, 4.565474 ], [ -61.523438, 4.214943 ], [ -62.929688, 4.214943 ], [ -62.929688, 3.864255 ], [ -63.984375, 3.864255 ], [ -63.984375, 4.214943 ], [ -65.039062, 4.214943 ], [ -65.039062, 3.864255 ], [ -64.687500, 3.864255 ], [ -64.687500, 2.811371 ], [ -64.335938, 2.811371 ], [ -64.335938, 2.460181 ], [ -63.632812, 2.460181 ], [ -63.632812, 2.108899 ], [ -64.335938, 2.108899 ], [ -64.335938, 1.406109 ], [ -65.390625, 1.406109 ], [ -65.390625, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.757537 ], [ -67.500000, 1.757537 ], [ -67.500000, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 3.864255 ], [ -67.851562, 3.864255 ], [ -67.851562, 5.965754 ], [ -67.500000, 5.965754 ], [ -67.500000, 6.315299 ], [ -69.960938, 6.315299 ], [ -69.960938, 6.664608 ], [ -70.312500, 6.664608 ], [ -70.312500, 7.013668 ], [ -71.015625, 7.013668 ], [ -71.015625, 7.362467 ], [ -71.367188, 7.362467 ], [ -71.367188, 7.013668 ], [ -72.421875, 7.013668 ], [ -72.421875, 7.362467 ], [ -72.773438, 7.362467 ], [ -72.773438, 7.710992 ], [ -72.421875, 7.710992 ], [ -72.421875, 8.059230 ], [ -72.773438, 8.059230 ], [ -72.773438, 8.754795 ], [ -73.125000, 8.754795 ], [ -73.125000, 9.102097 ], [ -73.476562, 9.102097 ], [ -73.476562, 9.449062 ], [ -73.125000, 9.449062 ], [ -73.125000, 10.487812 ], [ -72.773438, 10.487812 ], [ -72.773438, 10.833306 ], [ -72.421875, 10.833306 ], [ -72.421875, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 11.178402 ], [ -71.718750, 11.178402 ], [ -70.664062, 11.178402 ], [ -70.664062, 11.523088 ], [ -70.312500, 11.523088 ], [ -70.312500, 11.867351 ], [ -69.609375, 11.867351 ] ], [ [ -71.718750, 10.833306 ], [ -71.718750, 10.141932 ], [ -72.421875, 10.141932 ], [ -72.421875, 9.795678 ], [ -72.070312, 9.795678 ], [ -72.070312, 9.102097 ], [ -71.367188, 9.102097 ], [ -71.367188, 10.833306 ], [ -71.718750, 10.833306 ] ] ], [ [ [ -71.367188, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.523088 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.820312, 10.833306 ], [ -60.820312, 10.141932 ], [ -61.523438, 10.141932 ], [ -61.523438, 10.833306 ], [ -60.820312, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.171875, 10.833306 ], [ -61.171875, 10.141932 ], [ -61.875000, 10.141932 ], [ -61.875000, 10.833306 ], [ -61.171875, 10.833306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, 8.059230 ], [ -59.062500, 7.710992 ], [ -58.710938, 7.710992 ], [ -58.710938, 7.362467 ], [ -58.359375, 7.362467 ], [ -58.359375, 6.664608 ], [ -58.007812, 6.664608 ], [ -58.007812, 6.315299 ], [ -57.656250, 6.315299 ], [ -57.656250, 5.965754 ], [ -57.304688, 5.965754 ], [ -57.304688, 4.915833 ], [ -58.007812, 4.915833 ], [ -58.007812, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 3.162456 ], [ -57.304688, 3.162456 ], [ -57.304688, 2.460181 ], [ -56.953125, 2.460181 ], [ -56.953125, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 1.406109 ], [ -59.765625, 1.406109 ], [ -59.765625, 2.460181 ], [ -60.117188, 2.460181 ], [ -60.117188, 3.162456 ], [ -59.765625, 3.162456 ], [ -59.765625, 3.513421 ], [ -59.414062, 3.513421 ], [ -59.414062, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.565474 ], [ -60.117188, 4.565474 ], [ -60.117188, 5.266008 ], [ -61.171875, 5.266008 ], [ -61.171875, 5.615986 ], [ -61.523438, 5.615986 ], [ -61.523438, 5.965754 ], [ -61.171875, 5.965754 ], [ -61.171875, 6.664608 ], [ -60.468750, 6.664608 ], [ -60.468750, 7.710992 ], [ -60.117188, 7.710992 ], [ -60.117188, 8.059230 ], [ -59.062500, 8.059230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.765625, 8.407168 ], [ -59.765625, 8.059230 ], [ -59.414062, 8.059230 ], [ -59.414062, 7.710992 ], [ -59.062500, 7.710992 ], [ -59.062500, 7.362467 ], [ -58.710938, 7.362467 ], [ -58.710938, 7.013668 ], [ -58.359375, 7.013668 ], [ -58.359375, 6.664608 ], [ -57.656250, 6.664608 ], [ -57.656250, 6.315299 ], [ -57.304688, 6.315299 ], [ -57.304688, 4.915833 ], [ -58.007812, 4.915833 ], [ -58.007812, 4.565474 ], [ -58.359375, 4.565474 ], [ -58.359375, 3.864255 ], [ -58.007812, 3.864255 ], [ -58.007812, 3.513421 ], [ -57.304688, 3.513421 ], [ -57.304688, 2.460181 ], [ -56.953125, 2.460181 ], [ -56.953125, 2.108899 ], [ -57.656250, 2.108899 ], [ -57.656250, 1.757537 ], [ -58.710938, 1.757537 ], [ -58.710938, 1.406109 ], [ -59.414062, 1.406109 ], [ -59.414062, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 2.460181 ], [ -60.117188, 2.460181 ], [ -60.117188, 3.864255 ], [ -59.765625, 3.864255 ], [ -59.765625, 4.565474 ], [ -60.117188, 4.565474 ], [ -60.117188, 5.266008 ], [ -61.171875, 5.266008 ], [ -61.171875, 5.615986 ], [ -61.523438, 5.615986 ], [ -61.523438, 5.965754 ], [ -61.171875, 5.965754 ], [ -61.171875, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.362467 ], [ -60.820312, 7.362467 ], [ -60.820312, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 8.407168 ], [ -59.765625, 8.407168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 5.965754 ], [ -54.843750, 5.615986 ], [ -53.789062, 5.615986 ], [ -53.789062, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 3.864255 ], [ -54.140625, 3.864255 ], [ -54.140625, 2.460181 ], [ -55.898438, 2.460181 ], [ -55.898438, 1.757537 ], [ -56.953125, 1.757537 ], [ -56.953125, 2.460181 ], [ -57.304688, 2.460181 ], [ -57.304688, 3.162456 ], [ -57.656250, 3.162456 ], [ -57.656250, 3.513421 ], [ -58.007812, 3.513421 ], [ -58.007812, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 5.965754 ], [ -56.953125, 5.965754 ], [ -56.953125, 5.615986 ], [ -55.898438, 5.615986 ], [ -55.898438, 5.965754 ], [ -54.843750, 5.965754 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.843750, 6.315299 ], [ -54.843750, 5.965754 ], [ -54.140625, 5.965754 ], [ -54.140625, 5.266008 ], [ -54.492188, 5.266008 ], [ -54.492188, 3.864255 ], [ -54.140625, 3.864255 ], [ -54.140625, 3.513421 ], [ -54.492188, 3.513421 ], [ -54.492188, 2.460181 ], [ -56.250000, 2.460181 ], [ -56.250000, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 2.460181 ], [ -57.304688, 2.460181 ], [ -57.304688, 3.513421 ], [ -58.007812, 3.513421 ], [ -58.007812, 3.864255 ], [ -58.359375, 3.864255 ], [ -58.359375, 4.565474 ], [ -58.007812, 4.565474 ], [ -58.007812, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 6.315299 ], [ -56.953125, 6.315299 ], [ -56.953125, 5.965754 ], [ -55.195312, 5.965754 ], [ -55.195312, 6.315299 ], [ -54.843750, 6.315299 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.414062, 66.513260 ], [ -14.414062, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.366837 ], [ -14.062500, 65.366837 ], [ -14.062500, 65.072130 ], [ -13.710938, 65.072130 ], [ -13.710938, 64.923542 ], [ -14.062500, 64.923542 ], [ -14.062500, 64.623877 ], [ -14.414062, 64.623877 ], [ -14.414062, 64.320872 ], [ -15.117188, 64.320872 ], [ -15.117188, 64.168107 ], [ -15.820312, 64.168107 ], [ -15.820312, 64.014496 ], [ -16.523438, 64.014496 ], [ -16.523438, 63.860036 ], [ -17.226562, 63.860036 ], [ -17.226562, 63.704722 ], [ -17.929688, 63.704722 ], [ -17.929688, 63.548552 ], [ -19.687500, 63.548552 ], [ -19.687500, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.472794 ], [ -22.500000, 64.472794 ], [ -22.500000, 64.623877 ], [ -23.203125, 64.623877 ], [ -23.203125, 64.774125 ], [ -23.906250, 64.774125 ], [ -23.906250, 64.923542 ], [ -22.851562, 64.923542 ], [ -22.851562, 65.072130 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -22.851562, 65.366837 ], [ -22.851562, 65.512963 ], [ -23.906250, 65.512963 ], [ -23.906250, 65.658275 ], [ -24.257812, 65.658275 ], [ -24.257812, 65.802776 ], [ -23.906250, 65.802776 ], [ -23.906250, 66.089364 ], [ -23.554688, 66.089364 ], [ -23.554688, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.372755 ], [ -22.148438, 66.372755 ], [ -22.148438, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 66.089364 ], [ -21.445312, 66.089364 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -20.390625, 65.802776 ], [ -20.390625, 65.946472 ], [ -19.687500, 65.946472 ], [ -19.687500, 66.089364 ], [ -18.281250, 66.089364 ], [ -18.281250, 65.946472 ], [ -17.578125, 65.946472 ], [ -17.578125, 66.089364 ], [ -17.226562, 66.089364 ], [ -17.226562, 66.231457 ], [ -16.523438, 66.231457 ], [ -16.523438, 66.372755 ], [ -16.171875, 66.372755 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.820312, 66.652977 ], [ -15.820312, 66.513260 ], [ -14.765625, 66.513260 ], [ -14.765625, 65.802776 ], [ -14.414062, 65.802776 ], [ -14.414062, 65.512963 ], [ -14.062500, 65.512963 ], [ -14.062500, 65.219894 ], [ -13.710938, 65.219894 ], [ -13.710938, 65.072130 ], [ -14.062500, 65.072130 ], [ -14.062500, 64.923542 ], [ -14.414062, 64.923542 ], [ -14.414062, 64.623877 ], [ -14.765625, 64.623877 ], [ -14.765625, 64.472794 ], [ -15.117188, 64.472794 ], [ -15.117188, 64.320872 ], [ -15.820312, 64.320872 ], [ -15.820312, 64.168107 ], [ -16.171875, 64.168107 ], [ -16.171875, 64.014496 ], [ -16.875000, 64.014496 ], [ -16.875000, 63.860036 ], [ -17.578125, 63.860036 ], [ -17.578125, 63.704722 ], [ -18.281250, 63.704722 ], [ -18.281250, 63.548552 ], [ -19.687500, 63.548552 ], [ -19.687500, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.472794 ], [ -22.500000, 64.472794 ], [ -22.500000, 64.623877 ], [ -23.203125, 64.623877 ], [ -23.203125, 64.774125 ], [ -23.906250, 64.774125 ], [ -23.906250, 64.923542 ], [ -23.554688, 64.923542 ], [ -23.554688, 65.072130 ], [ -22.851562, 65.072130 ], [ -22.851562, 65.219894 ], [ -22.500000, 65.219894 ], [ -22.500000, 65.512963 ], [ -23.906250, 65.512963 ], [ -23.906250, 65.658275 ], [ -24.609375, 65.658275 ], [ -24.609375, 65.802776 ], [ -24.257812, 65.802776 ], [ -24.257812, 66.089364 ], [ -23.906250, 66.089364 ], [ -23.906250, 66.372755 ], [ -22.851562, 66.372755 ], [ -22.851562, 66.513260 ], [ -22.148438, 66.513260 ], [ -22.148438, 66.372755 ], [ -21.796875, 66.372755 ], [ -21.796875, 66.231457 ], [ -21.445312, 66.231457 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -20.390625, 65.802776 ], [ -20.390625, 65.946472 ], [ -20.039062, 65.946472 ], [ -20.039062, 66.089364 ], [ -19.687500, 66.089364 ], [ -19.687500, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.089364 ], [ -17.578125, 66.089364 ], [ -17.578125, 66.231457 ], [ -17.226562, 66.231457 ], [ -17.226562, 66.372755 ], [ -16.523438, 66.372755 ], [ -16.523438, 66.513260 ], [ -16.171875, 66.513260 ], [ -16.171875, 66.652977 ], [ -15.820312, 66.652977 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 54.977614 ], [ -7.734375, 54.775346 ], [ -7.382812, 54.775346 ], [ -7.382812, 54.367759 ], [ -7.734375, 54.367759 ], [ -7.734375, 54.162434 ], [ -7.031250, 54.162434 ], [ -7.031250, 53.956086 ], [ -6.328125, 53.956086 ], [ -6.328125, 53.540307 ], [ -5.976562, 53.540307 ], [ -5.976562, 52.908902 ], [ -6.328125, 52.908902 ], [ -6.328125, 52.482780 ], [ -6.679688, 52.482780 ], [ -6.679688, 52.052490 ], [ -7.382812, 52.052490 ], [ -7.382812, 51.835778 ], [ -8.085938, 51.835778 ], [ -8.085938, 51.618017 ], [ -9.492188, 51.618017 ], [ -9.492188, 51.835778 ], [ -9.843750, 51.835778 ], [ -9.843750, 52.052490 ], [ -9.492188, 52.052490 ], [ -9.492188, 52.482780 ], [ -9.140625, 52.482780 ], [ -9.140625, 53.120405 ], [ -9.492188, 53.120405 ], [ -9.492188, 53.540307 ], [ -9.843750, 53.540307 ], [ -9.843750, 53.956086 ], [ -9.492188, 53.956086 ], [ -9.492188, 54.162434 ], [ -8.789062, 54.162434 ], [ -8.789062, 54.367759 ], [ -8.437500, 54.367759 ], [ -8.437500, 54.572062 ], [ -8.085938, 54.572062 ], [ -8.085938, 54.977614 ], [ -7.734375, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 54.977614 ], [ -7.382812, 54.367759 ], [ -7.734375, 54.367759 ], [ -7.734375, 54.162434 ], [ -7.031250, 54.162434 ], [ -7.031250, 53.956086 ], [ -6.328125, 53.956086 ], [ -6.328125, 52.908902 ], [ -6.679688, 52.908902 ], [ -6.679688, 52.482780 ], [ -7.031250, 52.482780 ], [ -7.031250, 52.268157 ], [ -7.382812, 52.268157 ], [ -7.382812, 52.052490 ], [ -8.085938, 52.052490 ], [ -8.085938, 51.835778 ], [ -10.195312, 51.835778 ], [ -10.195312, 52.052490 ], [ -9.843750, 52.052490 ], [ -9.843750, 52.482780 ], [ -9.492188, 52.482780 ], [ -9.492188, 53.330873 ], [ -9.843750, 53.330873 ], [ -9.843750, 53.956086 ], [ -9.492188, 53.956086 ], [ -9.492188, 54.162434 ], [ -9.140625, 54.162434 ], [ -9.140625, 54.367759 ], [ -8.789062, 54.367759 ], [ -8.789062, 54.572062 ], [ -8.437500, 54.572062 ], [ -8.437500, 54.775346 ], [ -8.085938, 54.775346 ], [ -8.085938, 54.977614 ], [ -7.382812, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.164062, 58.631217 ], [ -3.164062, 58.447733 ], [ -3.515625, 58.447733 ], [ -3.515625, 58.077876 ], [ -3.867188, 58.077876 ], [ -3.867188, 57.704147 ], [ -4.218750, 57.704147 ], [ -4.218750, 57.515823 ], [ -3.515625, 57.515823 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 55.973798 ], [ -2.109375, 55.973798 ], [ -2.109375, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.367759 ], [ -0.351562, 54.367759 ], [ -0.351562, 53.956086 ], [ 0.000000, 53.956086 ], [ 0.000000, 53.540307 ], [ 0.351562, 53.540307 ], [ 0.351562, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.268157 ], [ 1.406250, 52.268157 ], [ 1.406250, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ 1.054688, 51.179343 ], [ 1.054688, 50.736455 ], [ -1.406250, 50.736455 ], [ -1.406250, 50.513427 ], [ -3.164062, 50.513427 ], [ -3.164062, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.064192 ], [ -5.273438, 50.064192 ], [ -5.273438, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.736455 ], [ -4.570312, 50.736455 ], [ -4.570312, 50.958427 ], [ -4.218750, 50.958427 ], [ -4.218750, 51.179343 ], [ -3.515625, 51.179343 ], [ -3.515625, 51.399206 ], [ -4.570312, 51.399206 ], [ -4.570312, 51.618017 ], [ -4.921875, 51.618017 ], [ -4.921875, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.696361 ], [ -4.921875, 52.696361 ], [ -4.921875, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.218750, 53.540307 ], [ -4.218750, 53.330873 ], [ -3.164062, 53.330873 ], [ -3.164062, 53.540307 ], [ -2.812500, 53.540307 ], [ -2.812500, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.367759 ], [ -3.515625, 54.367759 ], [ -3.515625, 54.572062 ], [ -4.570312, 54.572062 ], [ -4.570312, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 55.178868 ], [ -4.570312, 55.178868 ], [ -4.570312, 55.578345 ], [ -5.273438, 55.578345 ], [ -5.273438, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 56.559482 ], [ -5.976562, 56.559482 ], [ -5.976562, 57.326521 ], [ -5.625000, 57.326521 ], [ -5.625000, 58.077876 ], [ -5.273438, 58.077876 ], [ -5.273438, 58.447733 ], [ -4.921875, 58.447733 ], [ -4.921875, 58.631217 ], [ -3.164062, 58.631217 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -6.679688, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.976562, 54.367759 ], [ -5.976562, 53.956086 ], [ -7.031250, 53.956086 ], [ -7.031250, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 54.367759 ], [ -7.382812, 54.367759 ], [ -7.382812, 54.775346 ], [ -7.734375, 54.775346 ], [ -7.734375, 55.178868 ], [ -6.679688, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.631217 ], [ -3.515625, 58.263287 ], [ -3.867188, 58.263287 ], [ -3.867188, 57.891497 ], [ -4.218750, 57.891497 ], [ -4.218750, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 57.326521 ], [ -2.460938, 57.326521 ], [ -2.460938, 56.559482 ], [ -2.812500, 56.559482 ], [ -2.812500, 56.170023 ], [ -3.164062, 56.170023 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.973798 ], [ -2.109375, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.162434 ], [ -0.351562, 54.162434 ], [ -0.351562, 53.540307 ], [ 0.000000, 53.540307 ], [ 0.000000, 53.120405 ], [ 0.703125, 53.120405 ], [ 0.703125, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 52.052490 ], [ 1.054688, 52.052490 ], [ 1.054688, 51.835778 ], [ 0.703125, 51.835778 ], [ 0.703125, 51.618017 ], [ 1.054688, 51.618017 ], [ 1.054688, 51.399206 ], [ 1.406250, 51.399206 ], [ 1.406250, 51.179343 ], [ 0.703125, 51.179343 ], [ 0.703125, 50.958427 ], [ -1.406250, 50.958427 ], [ -1.406250, 50.736455 ], [ -2.109375, 50.736455 ], [ -2.109375, 50.513427 ], [ -3.515625, 50.513427 ], [ -3.515625, 50.289339 ], [ -4.921875, 50.289339 ], [ -4.921875, 50.064192 ], [ -5.976562, 50.064192 ], [ -5.976562, 50.289339 ], [ -5.625000, 50.289339 ], [ -5.625000, 50.513427 ], [ -5.273438, 50.513427 ], [ -5.273438, 50.958427 ], [ -4.921875, 50.958427 ], [ -4.921875, 51.179343 ], [ -4.570312, 51.179343 ], [ -4.570312, 51.399206 ], [ -3.867188, 51.399206 ], [ -3.867188, 51.618017 ], [ -5.273438, 51.618017 ], [ -5.273438, 52.052490 ], [ -4.921875, 52.052490 ], [ -4.921875, 52.268157 ], [ -4.570312, 52.268157 ], [ -4.570312, 52.696361 ], [ -4.921875, 52.696361 ], [ -4.921875, 53.540307 ], [ -3.164062, 53.540307 ], [ -3.164062, 54.162434 ], [ -3.515625, 54.162434 ], [ -3.515625, 54.572062 ], [ -3.867188, 54.572062 ], [ -3.867188, 54.775346 ], [ -4.570312, 54.775346 ], [ -4.570312, 54.977614 ], [ -5.273438, 54.977614 ], [ -5.273438, 55.379110 ], [ -4.921875, 55.379110 ], [ -4.921875, 55.776573 ], [ -5.273438, 55.776573 ], [ -5.273438, 55.578345 ], [ -5.625000, 55.578345 ], [ -5.625000, 55.776573 ], [ -5.976562, 55.776573 ], [ -5.976562, 56.559482 ], [ -6.328125, 56.559482 ], [ -6.328125, 57.326521 ], [ -5.976562, 57.326521 ], [ -5.976562, 58.077876 ], [ -5.625000, 58.077876 ], [ -5.625000, 58.447733 ], [ -5.273438, 58.447733 ], [ -5.273438, 58.631217 ], [ -3.515625, 58.631217 ] ] ], [ [ [ -7.031250, 55.178868 ], [ -7.031250, 54.977614 ], [ -6.679688, 54.977614 ], [ -6.679688, 54.775346 ], [ -6.328125, 54.775346 ], [ -6.328125, 54.572062 ], [ -5.976562, 54.572062 ], [ -5.976562, 54.162434 ], [ -6.328125, 54.162434 ], [ -6.328125, 53.956086 ], [ -7.031250, 53.956086 ], [ -7.031250, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 54.367759 ], [ -7.382812, 54.367759 ], [ -7.382812, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 55.178868 ], [ -7.031250, 55.178868 ] ] ], [ [ [ -3.164062, 58.631217 ], [ -3.515625, 58.631217 ], [ -3.515625, 58.813742 ], [ -3.164062, 58.813742 ], [ -3.164062, 58.631217 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.437500, 5.615986 ], [ -53.437500, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 4.915833 ], [ -52.031250, 4.915833 ], [ -52.031250, 4.565474 ], [ -51.679688, 4.565474 ], [ -51.679688, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.162456 ], [ -52.382812, 3.162456 ], [ -52.382812, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.460181 ], [ -53.789062, 2.460181 ], [ -53.789062, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.140625, 2.460181 ], [ -54.140625, 3.864255 ], [ -54.492188, 3.864255 ], [ -54.492188, 4.915833 ], [ -54.140625, 4.915833 ], [ -54.140625, 5.266008 ], [ -53.789062, 5.266008 ], [ -53.789062, 5.615986 ], [ -53.437500, 5.615986 ] ] ], [ [ [ 1.757812, 50.513427 ], [ 1.757812, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.580391 ], [ -1.406250, 43.580391 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.558860 ], [ -1.757812, 46.558860 ], [ -1.757812, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.517201 ], [ -3.515625, 47.517201 ], [ -3.515625, 47.754098 ], [ -4.218750, 47.754098 ], [ -4.218750, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -3.515625, 48.690960 ], [ -3.515625, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.789062, 5.965754 ], [ -53.789062, 5.615986 ], [ -53.085938, 5.615986 ], [ -53.085938, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 4.915833 ], [ -52.382812, 4.915833 ], [ -52.382812, 4.565474 ], [ -52.031250, 4.565474 ], [ -52.031250, 4.214943 ], [ -51.679688, 4.214943 ], [ -51.679688, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.513421 ], [ -52.382812, 3.513421 ], [ -52.382812, 3.162456 ], [ -52.734375, 3.162456 ], [ -52.734375, 2.460181 ], [ -53.085938, 2.460181 ], [ -53.085938, 2.108899 ], [ -54.843750, 2.108899 ], [ -54.843750, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 3.513421 ], [ -54.140625, 3.513421 ], [ -54.140625, 3.864255 ], [ -54.492188, 3.864255 ], [ -54.492188, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 5.965754 ], [ -53.789062, 5.965754 ] ] ], [ [ [ 1.757812, 50.958427 ], [ 1.757812, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -2.109375, 43.325178 ], [ -2.109375, 43.580391 ], [ -1.757812, 43.580391 ], [ -1.757812, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 46.073231 ], [ -1.757812, 46.073231 ], [ -1.757812, 46.558860 ], [ -2.109375, 46.558860 ], [ -2.109375, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.517201 ], [ -3.164062, 47.517201 ], [ -3.164062, 47.754098 ], [ -4.218750, 47.754098 ], [ -4.218750, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.224673 ], [ -4.921875, 48.224673 ], [ -4.921875, 48.690960 ], [ -3.867188, 48.690960 ], [ -3.867188, 48.922499 ], [ -2.812500, 48.922499 ], [ -2.812500, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.152970 ], [ -2.109375, 49.152970 ], [ -2.109375, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.837982 ], [ 0.351562, 49.837982 ], [ 0.351562, 50.064192 ], [ 1.054688, 50.064192 ], [ 1.054688, 50.513427 ], [ 1.406250, 50.513427 ], [ 1.406250, 50.958427 ], [ 1.757812, 50.958427 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.799891 ], [ -11.953125, 23.241346 ], [ -13.007812, 23.241346 ], [ -13.007812, 21.289374 ], [ -15.468750, 21.289374 ], [ -15.468750, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.943046 ], [ -14.062500, 21.943046 ], [ -14.062500, 23.563987 ], [ -13.710938, 23.563987 ], [ -13.710938, 23.885838 ], [ -13.359375, 23.885838 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.165173 ], [ -12.304688, 25.165173 ], [ -12.304688, 25.799891 ], [ -11.953125, 25.799891 ] ] ], [ [ [ -8.789062, 25.799891 ], [ -11.953125, 25.799891 ], [ -11.953125, 26.115986 ], [ -11.601562, 26.115986 ], [ -11.601562, 26.431228 ], [ -11.250000, 26.431228 ], [ -11.250000, 26.745610 ], [ -9.492188, 26.745610 ], [ -9.492188, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 25.799891 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -16.875000, 21.616579 ], [ -16.875000, 21.289374 ], [ -17.226562, 21.289374 ], [ -17.226562, 21.616579 ], [ -16.875000, 21.616579 ] ] ], [ [ [ -12.304688, 24.846565 ], [ -11.953125, 24.846565 ], [ -11.953125, 23.563987 ], [ -13.007812, 23.563987 ], [ -13.007812, 23.241346 ], [ -13.359375, 23.241346 ], [ -13.359375, 22.268764 ], [ -13.007812, 22.268764 ], [ -13.007812, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 22.268764 ], [ -14.414062, 22.268764 ], [ -14.414062, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 25.482951 ], [ -12.304688, 25.482951 ], [ -12.304688, 24.846565 ] ] ], [ [ [ -11.953125, 26.115986 ], [ -11.953125, 26.431228 ], [ -11.601562, 26.431228 ], [ -11.601562, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 27.371767 ], [ -9.140625, 27.371767 ], [ -9.140625, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 26.115986 ], [ -11.953125, 26.115986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 39.639538 ], [ -7.382812, 39.639538 ], [ -7.382812, 39.368279 ], [ -7.031250, 39.368279 ], [ -7.031250, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 36.879621 ], [ -8.789062, 36.879621 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.140625, 39.368279 ], [ -9.140625, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.244772 ], [ -9.140625, 41.244772 ], [ -9.140625, 41.771312 ], [ -8.789062, 41.771312 ], [ -8.789062, 42.032974 ], [ -8.085938, 42.032974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 42.293564 ], [ -8.437500, 42.032974 ], [ -6.679688, 42.032974 ], [ -6.679688, 41.244772 ], [ -7.031250, 41.244772 ], [ -7.031250, 40.178873 ], [ -7.382812, 40.178873 ], [ -7.382812, 39.639538 ], [ -7.734375, 39.639538 ], [ -7.734375, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 38.272689 ], [ -7.031250, 38.272689 ], [ -7.031250, 37.996163 ], [ -7.382812, 37.996163 ], [ -7.382812, 37.718590 ], [ -7.734375, 37.718590 ], [ -7.734375, 36.879621 ], [ -9.140625, 36.879621 ], [ -9.140625, 37.160317 ], [ -8.789062, 37.160317 ], [ -8.789062, 37.996163 ], [ -9.140625, 37.996163 ], [ -9.140625, 38.272689 ], [ -9.492188, 38.272689 ], [ -9.492188, 38.548165 ], [ -9.843750, 38.548165 ], [ -9.843750, 39.095963 ], [ -9.492188, 39.095963 ], [ -9.492188, 39.639538 ], [ -9.140625, 39.639538 ], [ -9.140625, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.508577 ], [ -9.140625, 41.508577 ], [ -9.140625, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 42.293564 ], [ -8.437500, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 43.834527 ], [ -7.734375, 43.580391 ], [ -4.921875, 43.580391 ], [ -4.921875, 43.325178 ], [ -3.515625, 43.325178 ], [ -3.515625, 43.580391 ], [ -2.812500, 43.580391 ], [ -2.812500, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.293564 ], [ 1.757812, 42.293564 ], [ 1.757812, 41.244772 ], [ 1.406250, 41.244772 ], [ 1.406250, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.597889 ], [ -4.218750, 36.597889 ], [ -4.218750, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.031332 ], [ -6.328125, 36.031332 ], [ -6.328125, 36.597889 ], [ -6.679688, 36.597889 ], [ -6.679688, 36.879621 ], [ -7.382812, 36.879621 ], [ -7.382812, 37.439974 ], [ -7.031250, 37.439974 ], [ -7.031250, 37.996163 ], [ -7.382812, 37.996163 ], [ -7.382812, 38.548165 ], [ -7.031250, 38.548165 ], [ -7.031250, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.639538 ], [ -7.031250, 39.639538 ], [ -7.031250, 40.713956 ], [ -6.679688, 40.713956 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.679688, 41.508577 ], [ -6.679688, 41.771312 ], [ -8.085938, 41.771312 ], [ -8.085938, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 41.771312 ], [ -9.140625, 41.771312 ], [ -9.140625, 42.811522 ], [ -9.492188, 42.811522 ], [ -9.492188, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.580391 ], [ -8.085938, 43.580391 ], [ -8.085938, 43.834527 ], [ -7.734375, 43.834527 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 43.834527 ], [ -7.734375, 43.580391 ], [ -2.109375, 43.580391 ], [ -2.109375, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ 1.054688, 42.811522 ], [ 1.054688, 42.553080 ], [ 1.757812, 42.553080 ], [ 1.757812, 41.244772 ], [ 0.703125, 41.244772 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.703125, 38.548165 ], [ -0.703125, 37.718590 ], [ -1.757812, 37.718590 ], [ -1.757812, 37.439974 ], [ -2.109375, 37.439974 ], [ -2.109375, 36.879621 ], [ -4.570312, 36.879621 ], [ -4.570312, 36.597889 ], [ -5.273438, 36.597889 ], [ -5.273438, 36.315125 ], [ -5.625000, 36.315125 ], [ -5.625000, 36.031332 ], [ -5.976562, 36.031332 ], [ -5.976562, 36.315125 ], [ -6.328125, 36.315125 ], [ -6.328125, 36.879621 ], [ -6.679688, 36.879621 ], [ -6.679688, 37.160317 ], [ -7.734375, 37.160317 ], [ -7.734375, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 39.368279 ], [ -7.734375, 39.368279 ], [ -7.734375, 39.639538 ], [ -7.382812, 39.639538 ], [ -7.382812, 40.178873 ], [ -7.031250, 40.178873 ], [ -7.031250, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 42.032974 ], [ -8.437500, 42.032974 ], [ -8.437500, 42.293564 ], [ -8.789062, 42.293564 ], [ -8.789062, 42.032974 ], [ -9.140625, 42.032974 ], [ -9.140625, 42.811522 ], [ -9.492188, 42.811522 ], [ -9.492188, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.580391 ], [ -8.085938, 43.580391 ], [ -8.085938, 43.834527 ], [ -7.734375, 43.834527 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.746512 ], [ -5.273438, 35.460670 ], [ -3.164062, 35.460670 ], [ -3.164062, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 34.885931 ], [ -1.757812, 34.885931 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.054688, 32.546813 ], [ -1.054688, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 31.952162 ], [ -2.460938, 31.952162 ], [ -2.460938, 31.653381 ], [ -3.515625, 31.653381 ], [ -3.515625, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.145127 ], [ -5.273438, 30.145127 ], [ -5.273438, 29.840644 ], [ -6.328125, 29.840644 ], [ -6.328125, 29.535230 ], [ -7.382812, 29.535230 ], [ -7.382812, 29.228890 ], [ -8.085938, 29.228890 ], [ -8.085938, 28.921631 ], [ -8.789062, 28.921631 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.745610 ], [ -11.250000, 26.745610 ], [ -11.250000, 26.431228 ], [ -11.601562, 26.431228 ], [ -11.601562, 26.115986 ], [ -11.953125, 26.115986 ], [ -11.953125, 25.799891 ], [ -12.304688, 25.799891 ], [ -12.304688, 25.165173 ], [ -12.656250, 25.165173 ], [ -12.656250, 24.527135 ], [ -13.007812, 24.527135 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.563987 ], [ -14.062500, 23.563987 ], [ -14.062500, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.616579 ], [ -15.468750, 21.616579 ], [ -15.468750, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.943046 ], [ -16.523438, 21.943046 ], [ -16.523438, 22.268764 ], [ -16.171875, 22.268764 ], [ -16.171875, 23.241346 ], [ -15.820312, 23.241346 ], [ -15.820312, 23.885838 ], [ -15.468750, 23.885838 ], [ -15.468750, 24.206890 ], [ -15.117188, 24.206890 ], [ -15.117188, 24.846565 ], [ -14.765625, 24.846565 ], [ -14.765625, 25.799891 ], [ -14.414062, 25.799891 ], [ -14.414062, 26.115986 ], [ -14.062500, 26.115986 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.359375, 26.745610 ], [ -13.359375, 27.371767 ], [ -13.007812, 27.371767 ], [ -13.007812, 27.683528 ], [ -12.656250, 27.683528 ], [ -12.656250, 27.994401 ], [ -11.250000, 27.994401 ], [ -11.250000, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.228890 ], [ -10.195312, 29.228890 ], [ -10.195312, 29.535230 ], [ -9.492188, 29.535230 ], [ -9.492188, 30.448674 ], [ -9.843750, 30.448674 ], [ -9.843750, 31.353637 ], [ -9.492188, 31.353637 ], [ -9.492188, 32.249974 ], [ -9.140625, 32.249974 ], [ -9.140625, 32.842674 ], [ -8.789062, 32.842674 ], [ -8.789062, 33.137551 ], [ -8.437500, 33.137551 ], [ -8.437500, 33.431441 ], [ -7.734375, 33.431441 ], [ -7.734375, 33.724340 ], [ -7.031250, 33.724340 ], [ -7.031250, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.460670 ], [ -5.976562, 35.460670 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 36.031332 ], [ -5.273438, 35.746512 ], [ -4.921875, 35.746512 ], [ -4.921875, 35.460670 ], [ -2.812500, 35.460670 ], [ -2.812500, 35.173808 ], [ -2.460938, 35.173808 ], [ -2.460938, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 34.307144 ], [ -1.757812, 34.307144 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.757812, 32.546813 ], [ -1.757812, 32.249974 ], [ -2.812500, 32.249974 ], [ -2.812500, 31.952162 ], [ -3.164062, 31.952162 ], [ -3.164062, 31.653381 ], [ -3.867188, 31.653381 ], [ -3.867188, 31.052934 ], [ -4.218750, 31.052934 ], [ -4.218750, 30.751278 ], [ -4.921875, 30.751278 ], [ -4.921875, 30.448674 ], [ -5.273438, 30.448674 ], [ -5.273438, 30.145127 ], [ -5.625000, 30.145127 ], [ -5.625000, 29.840644 ], [ -7.382812, 29.840644 ], [ -7.382812, 29.535230 ], [ -7.734375, 29.535230 ], [ -7.734375, 29.228890 ], [ -8.437500, 29.228890 ], [ -8.437500, 28.921631 ], [ -8.789062, 28.921631 ], [ -8.789062, 27.683528 ], [ -9.140625, 27.683528 ], [ -9.140625, 27.371767 ], [ -9.492188, 27.371767 ], [ -9.492188, 27.059126 ], [ -11.601562, 27.059126 ], [ -11.601562, 26.431228 ], [ -11.953125, 26.431228 ], [ -11.953125, 26.115986 ], [ -12.304688, 26.115986 ], [ -12.304688, 25.482951 ], [ -12.656250, 25.482951 ], [ -12.656250, 24.527135 ], [ -13.007812, 24.527135 ], [ -13.007812, 24.206890 ], [ -13.710938, 24.206890 ], [ -13.710938, 23.885838 ], [ -14.062500, 23.885838 ], [ -14.062500, 23.241346 ], [ -14.414062, 23.241346 ], [ -14.414062, 22.268764 ], [ -14.765625, 22.268764 ], [ -14.765625, 21.616579 ], [ -17.226562, 21.616579 ], [ -17.226562, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 22.593726 ], [ -16.523438, 22.593726 ], [ -16.523438, 23.563987 ], [ -16.171875, 23.563987 ], [ -16.171875, 23.885838 ], [ -15.820312, 23.885838 ], [ -15.820312, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.527135 ], [ -15.117188, 24.527135 ], [ -15.117188, 26.115986 ], [ -14.765625, 26.115986 ], [ -14.765625, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 26.745610 ], [ -13.710938, 26.745610 ], [ -13.710938, 27.371767 ], [ -13.359375, 27.371767 ], [ -13.359375, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.994401 ], [ -12.656250, 27.994401 ], [ -12.656250, 28.304381 ], [ -11.601562, 28.304381 ], [ -11.601562, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.921631 ], [ -10.546875, 28.921631 ], [ -10.546875, 29.228890 ], [ -10.195312, 29.228890 ], [ -10.195312, 29.840644 ], [ -9.843750, 29.840644 ], [ -9.843750, 31.653381 ], [ -9.492188, 31.653381 ], [ -9.492188, 32.842674 ], [ -9.140625, 32.842674 ], [ -9.140625, 33.137551 ], [ -8.789062, 33.137551 ], [ -8.789062, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.724340 ], [ -7.382812, 33.724340 ], [ -7.382812, 34.016242 ], [ -7.031250, 34.016242 ], [ -7.031250, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.460670 ], [ -5.976562, 35.460670 ], [ -5.976562, 36.031332 ], [ -5.273438, 36.031332 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.414062, 16.636192 ], [ -14.414062, 16.299051 ], [ -14.062500, 16.299051 ], [ -14.062500, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.944785 ], [ -12.304688, 14.944785 ], [ -12.304688, 14.264383 ], [ -11.953125, 14.264383 ], [ -11.953125, 13.239945 ], [ -11.601562, 13.239945 ], [ -11.601562, 12.554564 ], [ -12.304688, 12.554564 ], [ -12.304688, 12.211180 ], [ -13.359375, 12.211180 ], [ -13.359375, 12.554564 ], [ -16.523438, 12.554564 ], [ -16.523438, 12.897489 ], [ -16.875000, 12.897489 ], [ -16.875000, 13.239945 ], [ -13.710938, 13.239945 ], [ -13.710938, 13.581921 ], [ -15.117188, 13.581921 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.581921 ], [ -16.875000, 13.581921 ], [ -16.875000, 13.923404 ], [ -17.226562, 13.923404 ], [ -17.226562, 14.264383 ], [ -17.578125, 14.264383 ], [ -17.578125, 14.604847 ], [ -17.226562, 14.604847 ], [ -17.226562, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.961329 ], [ -16.523438, 15.961329 ], [ -16.523438, 16.299051 ], [ -15.117188, 16.299051 ], [ -15.117188, 16.636192 ], [ -14.414062, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.414062, 16.636192 ], [ -14.414062, 16.299051 ], [ -13.710938, 16.299051 ], [ -13.710938, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 14.944785 ], [ -12.304688, 14.944785 ], [ -12.304688, 13.923404 ], [ -11.953125, 13.923404 ], [ -11.953125, 13.239945 ], [ -11.601562, 13.239945 ], [ -11.601562, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 12.897489 ], [ -15.820312, 12.897489 ], [ -15.820312, 12.554564 ], [ -16.875000, 12.554564 ], [ -16.875000, 13.239945 ], [ -15.820312, 13.239945 ], [ -15.820312, 13.581921 ], [ -14.062500, 13.581921 ], [ -14.062500, 13.923404 ], [ -16.875000, 13.923404 ], [ -16.875000, 14.264383 ], [ -17.226562, 14.264383 ], [ -17.226562, 14.604847 ], [ -17.929688, 14.604847 ], [ -17.929688, 14.944785 ], [ -17.226562, 14.944785 ], [ -17.226562, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.961329 ], [ -16.523438, 15.961329 ], [ -16.523438, 16.299051 ], [ -16.171875, 16.299051 ], [ -16.171875, 16.636192 ], [ -14.414062, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -15.117188, 13.581921 ], [ -13.710938, 13.581921 ], [ -13.710938, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.581921 ], [ -15.468750, 13.581921 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.062500, 13.923404 ], [ -14.062500, 13.581921 ], [ -15.820312, 13.581921 ], [ -15.820312, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.923404 ], [ -14.062500, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.554564 ], [ -13.710938, 11.523088 ], [ -14.765625, 11.523088 ], [ -14.765625, 11.178402 ], [ -15.820312, 11.178402 ], [ -15.820312, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.867351 ], [ -16.523438, 11.867351 ], [ -16.523438, 12.554564 ], [ -13.710938, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.897489 ], [ -13.710938, 12.554564 ], [ -14.062500, 12.554564 ], [ -14.062500, 11.867351 ], [ -14.414062, 11.867351 ], [ -14.414062, 11.523088 ], [ -15.117188, 11.523088 ], [ -15.117188, 11.178402 ], [ -15.820312, 11.178402 ], [ -15.820312, 11.523088 ], [ -16.523438, 11.523088 ], [ -16.523438, 12.211180 ], [ -16.875000, 12.211180 ], [ -16.875000, 12.554564 ], [ -15.820312, 12.554564 ], [ -15.820312, 12.897489 ], [ -13.710938, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.601562, 12.554564 ], [ -11.601562, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 11.867351 ], [ -9.843750, 11.867351 ], [ -9.843750, 12.211180 ], [ -8.789062, 12.211180 ], [ -8.789062, 11.523088 ], [ -8.437500, 11.523088 ], [ -8.437500, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 9.795678 ], [ -8.437500, 9.795678 ], [ -8.437500, 9.449062 ], [ -8.085938, 9.449062 ], [ -8.085938, 8.754795 ], [ -7.734375, 8.754795 ], [ -7.734375, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 8.059230 ], [ -8.085938, 8.059230 ], [ -8.085938, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.362467 ], [ -9.492188, 7.362467 ], [ -9.492188, 8.059230 ], [ -9.843750, 8.059230 ], [ -9.843750, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 10.141932 ], [ -11.953125, 10.141932 ], [ -11.953125, 9.795678 ], [ -12.304688, 9.795678 ], [ -12.304688, 9.449062 ], [ -12.656250, 9.449062 ], [ -12.656250, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 8.754795 ], [ -13.359375, 8.754795 ], [ -13.359375, 9.102097 ], [ -13.710938, 9.102097 ], [ -13.710938, 9.449062 ], [ -14.062500, 9.449062 ], [ -14.062500, 9.795678 ], [ -14.414062, 9.795678 ], [ -14.414062, 10.141932 ], [ -14.765625, 10.141932 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.178402 ], [ -14.765625, 11.178402 ], [ -14.765625, 11.523088 ], [ -13.710938, 11.523088 ], [ -13.710938, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 12.211180 ], [ -12.304688, 12.211180 ], [ -12.304688, 12.554564 ], [ -11.601562, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.359375, 12.897489 ], [ -13.359375, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 11.867351 ], [ -10.195312, 11.867351 ], [ -10.195312, 12.211180 ], [ -9.492188, 12.211180 ], [ -9.492188, 12.554564 ], [ -9.140625, 12.554564 ], [ -9.140625, 11.867351 ], [ -8.789062, 11.867351 ], [ -8.789062, 11.523088 ], [ -8.437500, 11.523088 ], [ -8.437500, 11.178402 ], [ -8.789062, 11.178402 ], [ -8.789062, 10.833306 ], [ -8.437500, 10.833306 ], [ -8.437500, 10.487812 ], [ -8.085938, 10.487812 ], [ -8.085938, 10.141932 ], [ -8.437500, 10.141932 ], [ -8.437500, 9.449062 ], [ -8.085938, 9.449062 ], [ -8.085938, 8.754795 ], [ -8.437500, 8.754795 ], [ -8.437500, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.362467 ], [ -9.492188, 7.362467 ], [ -9.492188, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 8.754795 ], [ -10.195312, 8.754795 ], [ -10.195312, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 8.754795 ], [ -10.898438, 8.754795 ], [ -10.898438, 9.795678 ], [ -11.250000, 9.795678 ], [ -11.250000, 10.141932 ], [ -12.656250, 10.141932 ], [ -12.656250, 9.449062 ], [ -13.007812, 9.449062 ], [ -13.007812, 9.102097 ], [ -13.359375, 9.102097 ], [ -13.359375, 9.449062 ], [ -13.710938, 9.449062 ], [ -13.710938, 9.795678 ], [ -14.414062, 9.795678 ], [ -14.414062, 10.141932 ], [ -14.765625, 10.141932 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.523088 ], [ -14.414062, 11.523088 ], [ -14.414062, 11.867351 ], [ -14.062500, 11.867351 ], [ -14.062500, 12.554564 ], [ -13.710938, 12.554564 ], [ -13.710938, 12.897489 ], [ -13.359375, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.141932 ], [ -11.250000, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ], [ -10.546875, 9.449062 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.362467 ], [ -11.250000, 7.362467 ], [ -11.250000, 6.664608 ], [ -11.601562, 6.664608 ], [ -11.601562, 7.013668 ], [ -12.304688, 7.013668 ], [ -12.304688, 7.362467 ], [ -13.007812, 7.362467 ], [ -13.007812, 8.407168 ], [ -13.359375, 8.407168 ], [ -13.359375, 8.754795 ], [ -13.007812, 8.754795 ], [ -13.007812, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.449062 ], [ -12.304688, 9.449062 ], [ -12.304688, 9.795678 ], [ -11.953125, 9.795678 ], [ -11.953125, 10.141932 ], [ -11.250000, 10.141932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.141932 ], [ -11.250000, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 8.754795 ], [ -10.546875, 8.754795 ], [ -10.546875, 8.059230 ], [ -10.898438, 8.059230 ], [ -10.898438, 7.710992 ], [ -11.250000, 7.710992 ], [ -11.250000, 7.013668 ], [ -12.656250, 7.013668 ], [ -12.656250, 7.710992 ], [ -13.007812, 7.710992 ], [ -13.007812, 8.059230 ], [ -13.359375, 8.059230 ], [ -13.359375, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 9.449062 ], [ -12.656250, 9.449062 ], [ -12.656250, 10.141932 ], [ -11.250000, 10.141932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 27.059126 ], [ -8.085938, 26.745610 ], [ -7.734375, 26.745610 ], [ -7.734375, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.482951 ], [ -5.976562, 25.482951 ], [ -5.976562, 25.165173 ], [ -5.273438, 25.165173 ], [ -5.273438, 24.846565 ], [ -6.328125, 24.846565 ], [ -6.328125, 22.593726 ], [ -5.976562, 22.593726 ], [ -5.976562, 18.312811 ], [ -5.625000, 18.312811 ], [ -5.625000, 16.299051 ], [ -5.273438, 16.299051 ], [ -5.273438, 15.961329 ], [ -5.625000, 15.961329 ], [ -5.625000, 15.623037 ], [ -9.492188, 15.623037 ], [ -9.492188, 15.284185 ], [ -11.601562, 15.284185 ], [ -11.601562, 14.944785 ], [ -11.953125, 14.944785 ], [ -11.953125, 14.604847 ], [ -12.304688, 14.604847 ], [ -12.304688, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.359375, 15.623037 ], [ -13.359375, 15.961329 ], [ -14.062500, 15.961329 ], [ -14.062500, 16.299051 ], [ -14.414062, 16.299051 ], [ -14.414062, 16.636192 ], [ -15.117188, 16.636192 ], [ -15.117188, 16.299051 ], [ -16.523438, 16.299051 ], [ -16.523438, 16.972741 ], [ -16.171875, 16.972741 ], [ -16.171875, 19.311143 ], [ -16.523438, 19.311143 ], [ -16.523438, 19.642588 ], [ -16.171875, 19.642588 ], [ -16.171875, 20.303418 ], [ -16.523438, 20.303418 ], [ -16.523438, 20.632784 ], [ -17.226562, 20.632784 ], [ -17.226562, 20.961440 ], [ -16.875000, 20.961440 ], [ -16.875000, 21.289374 ], [ -13.007812, 21.289374 ], [ -13.007812, 23.241346 ], [ -11.953125, 23.241346 ], [ -11.953125, 25.799891 ], [ -8.789062, 25.799891 ], [ -8.789062, 27.059126 ], [ -8.085938, 27.059126 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.085938, 27.371767 ], [ -8.085938, 27.059126 ], [ -7.734375, 27.059126 ], [ -7.734375, 26.745610 ], [ -7.382812, 26.745610 ], [ -7.382812, 26.431228 ], [ -6.679688, 26.431228 ], [ -6.679688, 26.115986 ], [ -6.328125, 26.115986 ], [ -6.328125, 25.799891 ], [ -5.976562, 25.799891 ], [ -5.976562, 25.482951 ], [ -5.273438, 25.482951 ], [ -5.273438, 25.165173 ], [ -6.679688, 25.165173 ], [ -6.679688, 23.885838 ], [ -6.328125, 23.885838 ], [ -6.328125, 21.943046 ], [ -5.976562, 21.943046 ], [ -5.976562, 18.646245 ], [ -5.625000, 18.646245 ], [ -5.625000, 15.623037 ], [ -9.843750, 15.623037 ], [ -9.843750, 15.284185 ], [ -11.601562, 15.284185 ], [ -11.601562, 15.623037 ], [ -11.953125, 15.623037 ], [ -11.953125, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.359375, 15.623037 ], [ -13.359375, 15.961329 ], [ -13.710938, 15.961329 ], [ -13.710938, 16.299051 ], [ -14.414062, 16.299051 ], [ -14.414062, 16.636192 ], [ -16.171875, 16.636192 ], [ -16.171875, 16.299051 ], [ -16.523438, 16.299051 ], [ -16.523438, 16.636192 ], [ -16.875000, 16.636192 ], [ -16.875000, 16.972741 ], [ -16.523438, 16.972741 ], [ -16.523438, 17.644022 ], [ -16.171875, 17.644022 ], [ -16.171875, 18.646245 ], [ -16.523438, 18.646245 ], [ -16.523438, 20.303418 ], [ -16.875000, 20.303418 ], [ -16.875000, 20.961440 ], [ -17.226562, 20.961440 ], [ -17.226562, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.616579 ], [ -13.007812, 21.616579 ], [ -13.007812, 22.268764 ], [ -13.359375, 22.268764 ], [ -13.359375, 23.241346 ], [ -13.007812, 23.241346 ], [ -13.007812, 23.563987 ], [ -11.953125, 23.563987 ], [ -11.953125, 24.846565 ], [ -12.304688, 24.846565 ], [ -12.304688, 26.115986 ], [ -8.789062, 26.115986 ], [ -8.789062, 27.371767 ], [ -8.085938, 27.371767 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.846565 ], [ -4.921875, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 24.206890 ], [ -3.515625, 24.206890 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.563987 ], [ -2.460938, 23.563987 ], [ -2.460938, 23.241346 ], [ -1.757812, 23.241346 ], [ -1.757812, 22.917923 ], [ -1.406250, 22.917923 ], [ -1.406250, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 1.054688, 21.289374 ], [ 1.054688, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 14.944785 ], [ -1.406250, 14.944785 ], [ -1.406250, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 12.897489 ], [ -4.570312, 12.897489 ], [ -4.570312, 12.211180 ], [ -4.921875, 12.211180 ], [ -4.921875, 11.867351 ], [ -5.273438, 11.867351 ], [ -5.273438, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 10.487812 ], [ -5.273438, 10.487812 ], [ -5.273438, 10.141932 ], [ -6.328125, 10.141932 ], [ -6.328125, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.141932 ], [ -8.437500, 10.141932 ], [ -8.437500, 11.523088 ], [ -8.789062, 11.523088 ], [ -8.789062, 12.211180 ], [ -9.843750, 12.211180 ], [ -9.843750, 11.867351 ], [ -10.898438, 11.867351 ], [ -10.898438, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 14.264383 ], [ -12.304688, 14.264383 ], [ -12.304688, 14.604847 ], [ -11.953125, 14.604847 ], [ -11.953125, 14.944785 ], [ -11.601562, 14.944785 ], [ -11.601562, 15.284185 ], [ -9.492188, 15.284185 ], [ -9.492188, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.961329 ], [ -5.273438, 15.961329 ], [ -5.273438, 16.299051 ], [ -5.625000, 16.299051 ], [ -5.625000, 18.312811 ], [ -5.976562, 18.312811 ], [ -5.976562, 22.593726 ], [ -6.328125, 22.593726 ], [ -6.328125, 24.846565 ], [ -4.921875, 24.846565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.165173 ], [ -4.921875, 24.846565 ], [ -4.570312, 24.846565 ], [ -4.570312, 24.527135 ], [ -3.867188, 24.527135 ], [ -3.867188, 24.206890 ], [ -3.515625, 24.206890 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.563987 ], [ -2.460938, 23.563987 ], [ -2.460938, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.703125, 21.616579 ], [ 0.703125, 21.289374 ], [ 1.406250, 21.289374 ], [ 1.406250, 20.961440 ], [ 1.757812, 20.961440 ], [ 1.757812, 15.623037 ], [ 1.054688, 15.623037 ], [ 1.054688, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.944785 ], [ -0.703125, 14.944785 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.944785 ], [ -1.757812, 14.944785 ], [ -1.757812, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 14.264383 ], [ -2.460938, 14.264383 ], [ -2.460938, 13.923404 ], [ -3.164062, 13.923404 ], [ -3.164062, 13.581921 ], [ -4.218750, 13.581921 ], [ -4.218750, 13.239945 ], [ -4.570312, 13.239945 ], [ -4.570312, 12.211180 ], [ -4.921875, 12.211180 ], [ -4.921875, 11.867351 ], [ -5.273438, 11.867351 ], [ -5.273438, 11.178402 ], [ -5.625000, 11.178402 ], [ -5.625000, 10.487812 ], [ -5.976562, 10.487812 ], [ -5.976562, 10.141932 ], [ -6.328125, 10.141932 ], [ -6.328125, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.141932 ], [ -7.734375, 10.141932 ], [ -7.734375, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 10.833306 ], [ -8.789062, 10.833306 ], [ -8.789062, 11.178402 ], [ -8.437500, 11.178402 ], [ -8.437500, 11.523088 ], [ -8.789062, 11.523088 ], [ -8.789062, 11.867351 ], [ -9.140625, 11.867351 ], [ -9.140625, 12.554564 ], [ -9.492188, 12.554564 ], [ -9.492188, 12.211180 ], [ -10.195312, 12.211180 ], [ -10.195312, 11.867351 ], [ -10.898438, 11.867351 ], [ -10.898438, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 13.923404 ], [ -12.304688, 13.923404 ], [ -12.304688, 14.944785 ], [ -11.953125, 14.944785 ], [ -11.953125, 15.623037 ], [ -11.601562, 15.623037 ], [ -11.601562, 15.284185 ], [ -9.843750, 15.284185 ], [ -9.843750, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 18.646245 ], [ -5.976562, 18.646245 ], [ -5.976562, 21.943046 ], [ -6.328125, 21.943046 ], [ -6.328125, 23.885838 ], [ -6.679688, 23.885838 ], [ -6.679688, 25.165173 ], [ -4.921875, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.054688, 10.833306 ], [ -1.054688, 11.178402 ], [ -1.757812, 11.178402 ], [ -1.757812, 10.833306 ], [ -2.812500, 10.833306 ], [ -2.812500, 9.795678 ], [ -3.867188, 9.795678 ], [ -3.867188, 9.449062 ], [ -4.921875, 9.449062 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -3.164062, 13.239945 ], [ -3.164062, 13.581921 ], [ -2.812500, 13.581921 ], [ -2.812500, 13.923404 ], [ -2.109375, 13.923404 ], [ -2.109375, 14.604847 ], [ -1.406250, 14.604847 ], [ -1.406250, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 14.264383 ], [ 0.351562, 14.264383 ], [ 0.351562, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.897489 ], [ 1.757812, 12.897489 ], [ 1.757812, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.523088 ], [ 1.054688, 11.523088 ], [ 1.054688, 11.178402 ], [ -3.164062, 11.178402 ], [ -3.164062, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 10.141932 ], [ -4.218750, 10.141932 ], [ -4.218750, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.923404 ], [ -2.460938, 13.923404 ], [ -2.460938, 14.264383 ], [ -2.109375, 14.264383 ], [ -2.109375, 14.604847 ], [ -1.757812, 14.604847 ], [ -1.757812, 14.944785 ], [ -1.406250, 14.944785 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.407168 ], [ -9.843750, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 7.362467 ], [ -8.789062, 7.362467 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 5.615986 ], [ -7.734375, 5.615986 ], [ -7.734375, 4.214943 ], [ -8.437500, 4.214943 ], [ -8.437500, 4.565474 ], [ -9.140625, 4.565474 ], [ -9.140625, 4.915833 ], [ -9.492188, 4.915833 ], [ -9.492188, 5.266008 ], [ -9.843750, 5.266008 ], [ -9.843750, 5.615986 ], [ -10.195312, 5.615986 ], [ -10.195312, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.315299 ], [ -11.601562, 6.315299 ], [ -11.601562, 6.664608 ], [ -11.250000, 6.664608 ], [ -11.250000, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.546875, 7.710992 ], [ -10.546875, 8.059230 ], [ -10.195312, 8.059230 ], [ -10.195312, 8.407168 ], [ -9.843750, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.754795 ], [ -9.843750, 8.407168 ], [ -9.492188, 8.407168 ], [ -9.492188, 7.362467 ], [ -8.437500, 7.362467 ], [ -8.437500, 6.664608 ], [ -8.789062, 6.664608 ], [ -8.789062, 6.315299 ], [ -8.085938, 6.315299 ], [ -8.085938, 5.965754 ], [ -7.734375, 5.965754 ], [ -7.734375, 4.565474 ], [ -8.789062, 4.565474 ], [ -8.789062, 4.915833 ], [ -9.492188, 4.915833 ], [ -9.492188, 5.266008 ], [ -10.195312, 5.266008 ], [ -10.195312, 5.615986 ], [ -10.546875, 5.615986 ], [ -10.546875, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 6.664608 ], [ -11.601562, 6.664608 ], [ -11.601562, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.754795 ], [ -9.843750, 8.754795 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.328125, 10.487812 ], [ -6.328125, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.449062 ], [ -3.867188, 9.449062 ], [ -3.867188, 9.795678 ], [ -2.812500, 9.795678 ], [ -2.812500, 8.754795 ], [ -2.460938, 8.754795 ], [ -2.460938, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 6.664608 ], [ -3.164062, 6.664608 ], [ -3.164062, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.867188, 4.915833 ], [ -3.867188, 5.266008 ], [ -4.921875, 5.266008 ], [ -4.921875, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.565474 ], [ -6.679688, 4.565474 ], [ -6.679688, 4.214943 ], [ -7.734375, 4.214943 ], [ -7.734375, 5.615986 ], [ -8.085938, 5.615986 ], [ -8.085938, 5.965754 ], [ -8.437500, 5.965754 ], [ -8.437500, 7.710992 ], [ -8.085938, 7.710992 ], [ -8.085938, 8.059230 ], [ -8.437500, 8.059230 ], [ -8.437500, 8.407168 ], [ -7.734375, 8.407168 ], [ -7.734375, 8.754795 ], [ -8.085938, 8.754795 ], [ -8.085938, 9.449062 ], [ -8.437500, 9.449062 ], [ -8.437500, 9.795678 ], [ -8.085938, 9.795678 ], [ -8.085938, 10.141932 ], [ -6.679688, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 10.487812 ], [ -5.273438, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.795678 ], [ -4.218750, 9.795678 ], [ -4.218750, 10.141932 ], [ -3.515625, 10.141932 ], [ -3.515625, 9.795678 ], [ -3.164062, 9.795678 ], [ -3.164062, 9.102097 ], [ -2.812500, 9.102097 ], [ -2.812500, 8.059230 ], [ -3.164062, 8.059230 ], [ -3.164062, 7.013668 ], [ -3.515625, 7.013668 ], [ -3.515625, 5.965754 ], [ -3.164062, 5.965754 ], [ -3.164062, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 5.266008 ], [ -5.976562, 5.266008 ], [ -5.976562, 4.915833 ], [ -7.031250, 4.915833 ], [ -7.031250, 4.565474 ], [ -7.734375, 4.565474 ], [ -7.734375, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 6.315299 ], [ -8.789062, 6.315299 ], [ -8.789062, 6.664608 ], [ -8.437500, 6.664608 ], [ -8.437500, 7.362467 ], [ -8.789062, 7.362467 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 8.754795 ], [ -8.085938, 8.754795 ], [ -8.085938, 9.449062 ], [ -8.437500, 9.449062 ], [ -8.437500, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 10.487812 ], [ -7.734375, 10.487812 ], [ -7.734375, 10.141932 ], [ -6.679688, 10.141932 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ], [ -6.328125, 10.141932 ], [ -5.976562, 10.141932 ], [ -5.976562, 10.487812 ], [ -5.273438, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.406250, 4.915833 ], [ -1.406250, 4.565474 ], [ -2.812500, 4.565474 ], [ -2.812500, 5.615986 ], [ -3.164062, 5.615986 ], [ -3.164062, 6.664608 ], [ -2.812500, 6.664608 ], [ -2.812500, 7.710992 ], [ -2.460938, 7.710992 ], [ -2.460938, 8.754795 ], [ -2.812500, 8.754795 ], [ -2.812500, 10.833306 ], [ -1.757812, 10.833306 ], [ -1.757812, 11.178402 ], [ -1.054688, 11.178402 ], [ -1.054688, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 8.059230 ], [ 0.351562, 8.059230 ], [ 0.351562, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 5.965754 ], [ 0.351562, 5.965754 ], [ 0.351562, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 5.266008 ], [ -1.406250, 5.266008 ], [ -1.406250, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -3.164062, 5.615986 ], [ -3.164062, 5.965754 ], [ -3.515625, 5.965754 ], [ -3.515625, 7.013668 ], [ -3.164062, 7.013668 ], [ -3.164062, 8.059230 ], [ -2.812500, 8.059230 ], [ -2.812500, 9.102097 ], [ -3.164062, 9.102097 ], [ -3.164062, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.046875, 1.054628 ], [ -78.046875, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -80.859375, -1.757537 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, 0.000000 ], [ -80.156250, 0.000000 ], [ -80.156250, 0.703107 ], [ -79.453125, 0.703107 ], [ -79.453125, 1.054628 ], [ -78.046875, 1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.750000, 1.406109 ], [ -78.750000, 1.054628 ], [ -77.695312, 1.054628 ], [ -77.695312, 0.703107 ], [ -77.343750, 0.703107 ], [ -77.343750, 0.351560 ], [ -75.937500, 0.351560 ], [ -75.937500, 0.000000 ], [ -75.585938, 0.000000 ], [ -75.585938, -0.351560 ], [ -75.234375, -0.351560 ], [ -75.234375, -1.054628 ], [ -75.585938, -1.054628 ], [ -75.585938, -1.757537 ], [ -80.859375, -1.757537 ], [ -80.859375, -1.406109 ], [ -81.210938, -1.406109 ], [ -81.210938, -1.054628 ], [ -80.859375, -1.054628 ], [ -80.859375, -0.351560 ], [ -80.507812, -0.351560 ], [ -80.507812, 0.351560 ], [ -80.156250, 0.351560 ], [ -80.156250, 1.054628 ], [ -79.101562, 1.054628 ], [ -79.101562, 1.406109 ], [ -78.750000, 1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.351560 ], [ -74.882812, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.234375, -1.406109 ], [ -75.234375, -0.351560 ], [ -74.882812, -0.351560 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -75.234375, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.703107 ], [ -74.179688, -0.703107 ], [ -74.179688, -1.054628 ], [ -73.828125, -1.054628 ], [ -73.828125, -1.406109 ], [ -73.476562, -1.406109 ], [ -73.476562, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.351560 ] ] ], [ [ [ -75.234375, -0.351560 ], [ -75.585938, -0.351560 ], [ -75.585938, 0.000000 ], [ -75.234375, 0.000000 ], [ -75.234375, -0.351560 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.117188, 5.266008 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.565474 ], [ -59.765625, 4.214943 ], [ -59.414062, 4.214943 ], [ -59.414062, 3.513421 ], [ -59.765625, 3.513421 ], [ -59.765625, 3.162456 ], [ -60.117188, 3.162456 ], [ -60.117188, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.406109 ], [ -57.656250, 1.406109 ], [ -57.656250, 1.757537 ], [ -55.898438, 1.757537 ], [ -55.898438, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.108899 ], [ -53.789062, 2.108899 ], [ -53.789062, 2.460181 ], [ -53.437500, 2.460181 ], [ -53.437500, 2.108899 ], [ -52.382812, 2.108899 ], [ -52.382812, 3.162456 ], [ -52.031250, 3.162456 ], [ -52.031250, 3.864255 ], [ -51.679688, 3.864255 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -50.976562, 3.864255 ], [ -50.976562, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.625000, 0.351560 ], [ -50.625000, 0.000000 ], [ -49.570312, 0.000000 ], [ -49.570312, -0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -48.164062, -1.406109 ], [ -48.164062, -1.054628 ], [ -47.812500, -1.054628 ], [ -47.812500, -0.703107 ], [ -47.460938, -0.703107 ], [ -47.460938, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -69.609375, -1.757537 ], [ -69.609375, -1.406109 ], [ -69.257812, -1.406109 ], [ -69.257812, -1.054628 ], [ -69.609375, -1.054628 ], [ -69.609375, -0.703107 ], [ -69.960938, -0.703107 ], [ -69.960938, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.148438, 1.757537 ], [ -67.148438, 1.054628 ], [ -66.445312, 1.054628 ], [ -66.445312, 0.703107 ], [ -65.390625, 0.703107 ], [ -65.390625, 1.054628 ], [ -64.687500, 1.054628 ], [ -64.687500, 1.406109 ], [ -63.984375, 1.406109 ], [ -63.984375, 1.757537 ], [ -63.281250, 1.757537 ], [ -63.281250, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 3.864255 ], [ -62.226562, 3.864255 ], [ -62.226562, 4.214943 ], [ -61.171875, 4.214943 ], [ -61.171875, 4.565474 ], [ -60.468750, 4.565474 ], [ -60.468750, 4.915833 ], [ -60.820312, 4.915833 ], [ -60.820312, 5.266008 ], [ -60.117188, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.117188, 5.266008 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.565474 ], [ -59.765625, 3.864255 ], [ -60.117188, 3.864255 ], [ -60.117188, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.757537 ], [ -59.414062, 1.757537 ], [ -59.414062, 1.406109 ], [ -58.710938, 1.406109 ], [ -58.710938, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 2.108899 ], [ -56.250000, 2.108899 ], [ -56.250000, 2.460181 ], [ -54.843750, 2.460181 ], [ -54.843750, 2.108899 ], [ -53.085938, 2.108899 ], [ -53.085938, 2.460181 ], [ -52.734375, 2.460181 ], [ -52.734375, 3.162456 ], [ -52.382812, 3.162456 ], [ -52.382812, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 3.864255 ], [ -51.679688, 3.864255 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.162456 ], [ -50.976562, 3.162456 ], [ -50.976562, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 1.757537 ], [ -50.273438, 1.757537 ], [ -50.273438, 0.703107 ], [ -50.625000, 0.703107 ], [ -50.625000, 0.351560 ], [ -50.976562, 0.351560 ], [ -50.976562, 0.000000 ], [ -48.867188, 0.000000 ], [ -48.867188, -1.054628 ], [ -48.515625, -1.054628 ], [ -48.515625, -0.703107 ], [ -48.164062, -0.703107 ], [ -48.164062, -0.351560 ], [ -47.812500, -0.351560 ], [ -47.812500, -0.703107 ], [ -46.406250, -0.703107 ], [ -46.406250, -1.054628 ], [ -45.703125, -1.054628 ], [ -45.703125, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.757537 ], [ -69.609375, -1.757537 ], [ -69.609375, -0.351560 ], [ -70.312500, -0.351560 ], [ -70.312500, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.960938, 1.054628 ], [ -69.960938, 1.757537 ], [ -67.500000, 1.757537 ], [ -67.500000, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 1.406109 ], [ -64.335938, 1.406109 ], [ -64.335938, 2.108899 ], [ -63.632812, 2.108899 ], [ -63.632812, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 2.811371 ], [ -64.687500, 2.811371 ], [ -64.687500, 3.864255 ], [ -65.039062, 3.864255 ], [ -65.039062, 4.214943 ], [ -63.984375, 4.214943 ], [ -63.984375, 3.864255 ], [ -62.929688, 3.864255 ], [ -62.929688, 4.214943 ], [ -61.523438, 4.214943 ], [ -61.523438, 4.565474 ], [ -60.820312, 4.565474 ], [ -60.820312, 5.266008 ], [ -60.117188, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.597889 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.563987 ], [ -3.164062, 23.563987 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.206890 ], [ -4.218750, 24.206890 ], [ -4.218750, 24.527135 ], [ -4.921875, 24.527135 ], [ -4.921875, 24.846565 ], [ -5.273438, 24.846565 ], [ -5.273438, 25.165173 ], [ -5.976562, 25.165173 ], [ -5.976562, 25.482951 ], [ -6.328125, 25.482951 ], [ -6.328125, 25.799891 ], [ -6.679688, 25.799891 ], [ -6.679688, 26.115986 ], [ -7.382812, 26.115986 ], [ -7.382812, 26.431228 ], [ -7.734375, 26.431228 ], [ -7.734375, 26.745610 ], [ -8.085938, 26.745610 ], [ -8.085938, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 28.921631 ], [ -8.085938, 28.921631 ], [ -8.085938, 29.228890 ], [ -7.382812, 29.228890 ], [ -7.382812, 29.535230 ], [ -6.328125, 29.535230 ], [ -6.328125, 29.840644 ], [ -5.273438, 29.840644 ], [ -5.273438, 30.145127 ], [ -4.921875, 30.145127 ], [ -4.921875, 30.448674 ], [ -3.867188, 30.448674 ], [ -3.867188, 30.751278 ], [ -3.515625, 30.751278 ], [ -3.515625, 31.653381 ], [ -2.460938, 31.653381 ], [ -2.460938, 31.952162 ], [ -1.757812, 31.952162 ], [ -1.757812, 32.249974 ], [ -1.054688, 32.249974 ], [ -1.054688, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 34.885931 ], [ -2.109375, 34.885931 ], [ -2.109375, 35.173808 ], [ -1.757812, 35.173808 ], [ -1.757812, 35.460670 ], [ -1.054688, 35.460670 ], [ -1.054688, 35.746512 ], [ 0.000000, 35.746512 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 1.054688, 36.315125 ], [ 1.054688, 36.597889 ], [ 1.757812, 36.597889 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.879621 ], [ 1.757812, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.757812, 22.593726 ], [ -1.757812, 22.917923 ], [ -2.109375, 22.917923 ], [ -2.109375, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.563987 ], [ -3.164062, 23.563987 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.206890 ], [ -3.867188, 24.206890 ], [ -3.867188, 24.527135 ], [ -4.570312, 24.527135 ], [ -4.570312, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 25.165173 ], [ -5.273438, 25.165173 ], [ -5.273438, 25.482951 ], [ -5.976562, 25.482951 ], [ -5.976562, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.745610 ], [ -7.734375, 26.745610 ], [ -7.734375, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 27.371767 ], [ -8.789062, 27.371767 ], [ -8.789062, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 29.228890 ], [ -7.734375, 29.228890 ], [ -7.734375, 29.535230 ], [ -7.382812, 29.535230 ], [ -7.382812, 29.840644 ], [ -5.625000, 29.840644 ], [ -5.625000, 30.145127 ], [ -5.273438, 30.145127 ], [ -5.273438, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 31.052934 ], [ -3.867188, 31.052934 ], [ -3.867188, 31.653381 ], [ -3.164062, 31.653381 ], [ -3.164062, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 34.307144 ], [ -2.109375, 34.307144 ], [ -2.109375, 34.885931 ], [ -2.460938, 34.885931 ], [ -2.460938, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 35.746512 ], [ -0.703125, 35.746512 ], [ -0.703125, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 0.703125, 36.315125 ], [ 0.703125, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 36.879621 ], [ 1.757812, 36.879621 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.284185 ], [ 1.757812, 12.554564 ], [ 1.054688, 12.554564 ], [ 1.054688, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.581921 ], [ 0.351562, 13.581921 ], [ 0.351562, 14.944785 ], [ 1.406250, 14.944785 ], [ 1.406250, 15.284185 ], [ 1.757812, 15.284185 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 15.623037 ], [ 1.757812, 12.897489 ], [ 0.703125, 12.897489 ], [ 0.703125, 13.923404 ], [ 0.351562, 13.923404 ], [ 0.351562, 14.264383 ], [ 0.000000, 14.264383 ], [ 0.000000, 14.604847 ], [ 0.351562, 14.604847 ], [ 0.351562, 14.944785 ], [ 0.703125, 14.944785 ], [ 0.703125, 15.284185 ], [ 1.054688, 15.284185 ], [ 1.054688, 15.623037 ], [ 1.757812, 15.623037 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.141932 ], [ 1.406250, 10.141932 ], [ 1.406250, 6.664608 ], [ 1.757812, 6.664608 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 6.664608 ], [ 0.351562, 6.664608 ], [ 0.351562, 8.059230 ], [ 0.703125, 8.059230 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ -0.351562, 10.487812 ], [ -0.351562, 10.833306 ], [ 0.000000, 10.833306 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.523088 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 11.867351 ], [ 1.757812, 6.664608 ], [ 1.406250, 6.664608 ], [ 1.406250, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.054688, 11.178402 ], [ 1.054688, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.867351 ], [ 1.757812, 11.867351 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.078125, 69.900118 ], [ -85.078125, 69.778952 ], [ -83.671875, 69.778952 ], [ -83.671875, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.411242 ], [ -81.914062, 69.411242 ], [ -81.914062, 69.287257 ], [ -81.562500, 69.287257 ], [ -81.562500, 69.162558 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.528235 ], [ -81.562500, 68.528235 ], [ -81.562500, 68.269387 ], [ -81.914062, 68.269387 ], [ -81.914062, 68.007571 ], [ -81.562500, 68.007571 ], [ -81.562500, 67.742759 ], [ -81.210938, 67.742759 ], [ -81.210938, 66.930060 ], [ -81.562500, 66.930060 ], [ -81.562500, 66.791909 ], [ -81.914062, 66.791909 ], [ -81.914062, 66.652977 ], [ -82.617188, 66.652977 ], [ -82.617188, 66.513260 ], [ -82.968750, 66.513260 ], [ -82.968750, 66.372755 ], [ -83.671875, 66.372755 ], [ -83.671875, 66.231457 ], [ -85.078125, 66.231457 ], [ -85.078125, 66.372755 ], [ -85.781250, 66.372755 ], [ -85.781250, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 69.037142 ], [ -88.593750, 69.037142 ], [ -88.593750, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 68.656555 ], [ -87.890625, 68.656555 ], [ -87.890625, 68.269387 ], [ -88.242188, 68.269387 ], [ -88.242188, 67.742759 ], [ -87.890625, 67.742759 ], [ -87.890625, 67.474922 ], [ -87.539062, 67.474922 ], [ -87.539062, 67.204032 ], [ -86.835938, 67.204032 ], [ -86.835938, 67.474922 ], [ -86.484375, 67.474922 ], [ -86.484375, 67.742759 ], [ -86.132812, 67.742759 ], [ -86.132812, 68.007571 ], [ -85.781250, 68.007571 ], [ -85.781250, 68.528235 ], [ -85.429688, 68.528235 ], [ -85.429688, 69.900118 ], [ -85.078125, 69.900118 ] ] ], [ [ [ -85.429688, 77.617709 ], [ -85.429688, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 77.915669 ], [ -86.132812, 77.915669 ], [ -86.132812, 78.061989 ], [ -86.484375, 78.061989 ], [ -86.484375, 78.206563 ], [ -87.187500, 78.206563 ], [ -87.187500, 78.278201 ], [ -87.890625, 78.278201 ], [ -87.890625, 78.420193 ], [ -87.539062, 78.420193 ], [ -87.539062, 78.630006 ], [ -87.187500, 78.630006 ], [ -87.187500, 78.767792 ], [ -86.835938, 78.767792 ], [ -86.835938, 78.836065 ], [ -86.132812, 78.836065 ], [ -86.132812, 78.903929 ], [ -85.429688, 78.903929 ], [ -85.429688, 79.171335 ], [ -85.078125, 79.171335 ], [ -85.078125, 79.367701 ], [ -85.429688, 79.367701 ], [ -85.429688, 79.496652 ], [ -85.781250, 79.496652 ], [ -85.781250, 79.560546 ], [ -86.132812, 79.560546 ], [ -86.132812, 79.687184 ], [ -86.484375, 79.687184 ], [ -86.484375, 79.997168 ], [ -86.835938, 79.997168 ], [ -86.835938, 80.238501 ], [ -85.781250, 80.238501 ], [ -85.781250, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.118564 ], [ -82.968750, 80.118564 ], [ -82.968750, 80.238501 ], [ -82.617188, 80.238501 ], [ -82.617188, 80.297927 ], [ -82.265625, 80.297927 ], [ -82.265625, 80.415707 ], [ -81.914062, 80.415707 ], [ -81.914062, 80.474065 ], [ -82.617188, 80.474065 ], [ -82.617188, 80.532071 ], [ -83.671875, 80.532071 ], [ -83.671875, 80.589727 ], [ -85.429688, 80.589727 ], [ -85.429688, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.589727 ], [ -88.242188, 80.589727 ], [ -88.242188, 80.703997 ], [ -88.593750, 80.703997 ], [ -88.593750, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.928426 ], [ -89.648438, 80.928426 ], [ -89.648438, 81.038617 ], [ -90.000000, 81.038617 ], [ -90.000000, 81.147481 ], [ -90.351562, 81.147481 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.873641 ], [ -91.406250, 81.873641 ], [ -91.406250, 81.923186 ], [ -91.054688, 81.923186 ], [ -91.054688, 81.972431 ], [ -90.351562, 81.972431 ], [ -90.351562, 82.021378 ], [ -90.000000, 82.021378 ], [ -90.000000, 82.070028 ], [ -89.296875, 82.070028 ], [ -89.296875, 82.118384 ], [ -88.242188, 82.118384 ], [ -88.242188, 82.166446 ], [ -87.539062, 82.166446 ], [ -87.539062, 82.214217 ], [ -86.835938, 82.214217 ], [ -86.835938, 82.308893 ], [ -86.484375, 82.308893 ], [ -86.484375, 82.402423 ], [ -86.132812, 82.402423 ], [ -86.132812, 82.494824 ], [ -85.781250, 82.494824 ], [ -85.781250, 82.586106 ], [ -85.429688, 82.586106 ], [ -85.429688, 82.631333 ], [ -85.078125, 82.631333 ], [ -85.078125, 82.586106 ], [ -84.375000, 82.586106 ], [ -84.375000, 82.540604 ], [ -84.023438, 82.540604 ], [ -84.023438, 82.448764 ], [ -83.671875, 82.448764 ], [ -83.671875, 82.355800 ], [ -83.320312, 82.355800 ], [ -83.320312, 82.402423 ], [ -82.968750, 82.402423 ], [ -82.968750, 82.586106 ], [ -82.617188, 82.586106 ], [ -82.617188, 82.765373 ], [ -82.265625, 82.765373 ], [ -82.265625, 82.853382 ], [ -81.914062, 82.853382 ], [ -81.914062, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.026219 ], [ -80.507812, 83.026219 ], [ -80.507812, 83.068774 ], [ -79.804688, 83.068774 ], [ -79.804688, 83.111071 ], [ -77.695312, 83.111071 ], [ -77.695312, 83.153111 ], [ -76.289062, 83.153111 ], [ -76.289062, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -74.882812, 83.068774 ], [ -74.882812, 83.111071 ], [ -74.179688, 83.111071 ], [ -74.179688, 83.153111 ], [ -73.476562, 83.153111 ], [ -73.476562, 83.194896 ], [ -72.773438, 83.194896 ], [ -72.773438, 83.236426 ], [ -72.421875, 83.236426 ], [ -72.421875, 83.194896 ], [ -71.367188, 83.194896 ], [ -71.367188, 83.153111 ], [ -69.960938, 83.153111 ], [ -69.960938, 83.111071 ], [ -68.203125, 83.111071 ], [ -68.203125, 83.068774 ], [ -66.796875, 83.068774 ], [ -66.796875, 83.026219 ], [ -65.742188, 83.026219 ], [ -65.742188, 82.983404 ], [ -65.039062, 82.983404 ], [ -65.039062, 82.940327 ], [ -64.335938, 82.940327 ], [ -64.335938, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.809511 ], [ -62.929688, 82.809511 ], [ -62.929688, 82.765373 ], [ -62.578125, 82.765373 ], [ -62.578125, 82.676285 ], [ -62.226562, 82.676285 ], [ -62.226562, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.308893 ], [ -62.226562, 82.308893 ], [ -62.226562, 82.261699 ], [ -62.578125, 82.261699 ], [ -62.578125, 82.166446 ], [ -62.929688, 82.166446 ], [ -62.929688, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 82.070028 ], [ -63.632812, 82.070028 ], [ -63.632812, 81.972431 ], [ -63.984375, 81.972431 ], [ -63.984375, 81.923186 ], [ -64.335938, 81.923186 ], [ -64.335938, 81.873641 ], [ -65.039062, 81.873641 ], [ -65.039062, 81.823794 ], [ -65.742188, 81.823794 ], [ -65.742188, 81.773644 ], [ -66.445312, 81.773644 ], [ -66.445312, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.672424 ], [ -67.148438, 81.672424 ], [ -67.148438, 81.569968 ], [ -67.500000, 81.569968 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -65.390625, 81.466261 ], [ -65.742188, 81.466261 ], [ -65.742188, 81.361287 ], [ -66.093750, 81.361287 ], [ -66.093750, 81.255032 ], [ -66.445312, 81.255032 ], [ -66.445312, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 80.983688 ], [ -67.500000, 80.983688 ], [ -67.500000, 80.872827 ], [ -67.851562, 80.872827 ], [ -67.851562, 80.816891 ], [ -68.203125, 80.816891 ], [ -68.203125, 80.760615 ], [ -68.554688, 80.760615 ], [ -68.554688, 80.703997 ], [ -68.906250, 80.703997 ], [ -68.906250, 80.647035 ], [ -69.257812, 80.647035 ], [ -69.257812, 80.589727 ], [ -69.609375, 80.589727 ], [ -69.609375, 80.474065 ], [ -69.960938, 80.474065 ], [ -69.960938, 80.297927 ], [ -70.312500, 80.297927 ], [ -70.312500, 80.058050 ], [ -70.664062, 80.058050 ], [ -70.664062, 79.874297 ], [ -71.015625, 79.874297 ], [ -71.015625, 79.749932 ], [ -71.718750, 79.749932 ], [ -71.718750, 79.687184 ], [ -72.421875, 79.687184 ], [ -72.421875, 79.624056 ], [ -73.125000, 79.624056 ], [ -73.125000, 79.560546 ], [ -73.476562, 79.560546 ], [ -73.476562, 79.432371 ], [ -74.531250, 79.432371 ], [ -74.531250, 79.367701 ], [ -75.937500, 79.367701 ], [ -75.937500, 79.302640 ], [ -76.992188, 79.302640 ], [ -76.992188, 79.237185 ], [ -76.289062, 79.237185 ], [ -76.289062, 79.171335 ], [ -75.585938, 79.171335 ], [ -75.585938, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 78.903929 ], [ -75.937500, 78.903929 ], [ -75.937500, 78.767792 ], [ -75.585938, 78.767792 ], [ -75.585938, 78.630006 ], [ -75.234375, 78.630006 ], [ -75.234375, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.206563 ], [ -76.289062, 78.206563 ], [ -76.289062, 78.134493 ], [ -76.640625, 78.134493 ], [ -76.640625, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.989049 ], [ -77.695312, 77.989049 ], [ -77.695312, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.692870 ], [ -78.398438, 77.692870 ], [ -78.398438, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.389504 ], [ -79.101562, 77.389504 ], [ -79.101562, 77.312520 ], [ -79.453125, 77.312520 ], [ -79.453125, 77.235074 ], [ -79.804688, 77.235074 ], [ -79.804688, 77.078784 ], [ -79.453125, 77.078784 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.679785 ], [ -78.398438, 76.679785 ], [ -78.398438, 76.598545 ], [ -78.750000, 76.598545 ], [ -78.750000, 76.516819 ], [ -79.101562, 76.516819 ], [ -79.101562, 76.434604 ], [ -79.453125, 76.434604 ], [ -79.453125, 76.351896 ], [ -79.804688, 76.351896 ], [ -79.804688, 76.268695 ], [ -80.156250, 76.268695 ], [ -80.156250, 76.184995 ], [ -81.210938, 76.184995 ], [ -81.210938, 76.268695 ], [ -82.265625, 76.268695 ], [ -82.265625, 76.351896 ], [ -82.968750, 76.351896 ], [ -82.968750, 76.434604 ], [ -83.671875, 76.434604 ], [ -83.671875, 76.351896 ], [ -85.078125, 76.351896 ], [ -85.078125, 76.268695 ], [ -86.835938, 76.268695 ], [ -86.835938, 76.351896 ], [ -87.539062, 76.351896 ], [ -87.539062, 76.434604 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -89.296875, 76.920614 ], [ -89.296875, 76.999935 ], [ -88.593750, 76.999935 ], [ -88.593750, 77.078784 ], [ -87.890625, 77.078784 ], [ -87.890625, 77.542096 ], [ -88.242188, 77.542096 ], [ -88.242188, 77.915669 ], [ -87.187500, 77.915669 ], [ -87.187500, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.767582 ], [ -86.132812, 77.767582 ], [ -86.132812, 77.692870 ], [ -85.781250, 77.692870 ], [ -85.781250, 77.617709 ], [ -85.429688, 77.617709 ] ], [ [ -85.429688, 77.617709 ], [ -85.429688, 77.542096 ], [ -85.078125, 77.542096 ], [ -85.078125, 77.617709 ], [ -85.429688, 77.617709 ] ] ], [ [ [ -85.781250, 73.824820 ], [ -85.781250, 73.627789 ], [ -86.132812, 73.627789 ], [ -86.132812, 73.226700 ], [ -86.484375, 73.226700 ], [ -86.484375, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.607120 ], [ -85.429688, 72.607120 ], [ -85.429688, 72.919635 ], [ -85.078125, 72.919635 ], [ -85.078125, 73.124945 ], [ -84.726562, 73.124945 ], [ -84.726562, 73.327858 ], [ -84.375000, 73.327858 ], [ -84.375000, 73.428424 ], [ -83.671875, 73.428424 ], [ -83.671875, 73.528399 ], [ -82.968750, 73.528399 ], [ -82.968750, 73.627789 ], [ -81.914062, 73.627789 ], [ -81.914062, 73.428424 ], [ -81.562500, 73.428424 ], [ -81.562500, 73.226700 ], [ -81.210938, 73.226700 ], [ -81.210938, 73.022592 ], [ -80.859375, 73.022592 ], [ -80.859375, 72.816074 ], [ -80.507812, 72.816074 ], [ -80.507812, 72.395706 ], [ -80.859375, 72.395706 ], [ -80.859375, 72.073911 ], [ -80.156250, 72.073911 ], [ -80.156250, 72.181804 ], [ -79.453125, 72.181804 ], [ -79.453125, 72.289067 ], [ -78.750000, 72.289067 ], [ -78.750000, 72.395706 ], [ -78.398438, 72.395706 ], [ -78.398438, 72.501722 ], [ -78.046875, 72.501722 ], [ -78.046875, 72.607120 ], [ -76.992188, 72.607120 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.395706 ], [ -75.937500, 72.395706 ], [ -75.937500, 72.289067 ], [ -75.585938, 72.289067 ], [ -75.585938, 72.181804 ], [ -75.234375, 72.181804 ], [ -75.234375, 72.073911 ], [ -74.882812, 72.073911 ], [ -74.882812, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.746432 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.300793 ], [ -73.476562, 71.300793 ], [ -73.476562, 71.413177 ], [ -72.421875, 71.413177 ], [ -72.421875, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.728979 ], [ -69.960938, 70.728979 ], [ -69.960938, 70.612614 ], [ -69.257812, 70.612614 ], [ -69.257812, 70.495574 ], [ -68.906250, 70.495574 ], [ -68.906250, 70.377854 ], [ -68.554688, 70.377854 ], [ -68.554688, 70.259452 ], [ -68.203125, 70.259452 ], [ -68.203125, 70.140364 ], [ -67.851562, 70.140364 ], [ -67.851562, 69.900118 ], [ -67.500000, 69.900118 ], [ -67.500000, 69.657086 ], [ -67.148438, 69.657086 ], [ -67.148438, 69.287257 ], [ -66.796875, 69.287257 ], [ -66.796875, 69.037142 ], [ -67.500000, 69.037142 ], [ -67.500000, 68.911005 ], [ -67.851562, 68.911005 ], [ -67.851562, 68.784144 ], [ -68.554688, 68.784144 ], [ -68.554688, 68.656555 ], [ -68.906250, 68.656555 ], [ -68.906250, 68.528235 ], [ -68.203125, 68.528235 ], [ -68.203125, 68.399180 ], [ -67.851562, 68.399180 ], [ -67.851562, 68.269387 ], [ -67.500000, 68.269387 ], [ -67.500000, 68.138852 ], [ -66.796875, 68.138852 ], [ -66.796875, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.875541 ], [ -64.687500, 67.875541 ], [ -64.687500, 67.742759 ], [ -64.335938, 67.742759 ], [ -64.335938, 67.474922 ], [ -63.984375, 67.474922 ], [ -63.984375, 67.204032 ], [ -63.632812, 67.204032 ], [ -63.632812, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.372755 ], [ -67.148438, 66.372755 ], [ -67.148438, 66.231457 ], [ -67.851562, 66.231457 ], [ -67.851562, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.802776 ], [ -74.179688, 65.802776 ], [ -74.179688, 66.089364 ], [ -73.828125, 66.089364 ], [ -73.828125, 66.513260 ], [ -73.476562, 66.513260 ], [ -73.476562, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.742759 ], [ -73.125000, 67.742759 ], [ -73.125000, 67.875541 ], [ -73.476562, 67.875541 ], [ -73.476562, 68.007571 ], [ -73.828125, 68.007571 ], [ -73.828125, 68.138852 ], [ -74.179688, 68.138852 ], [ -74.179688, 68.269387 ], [ -74.531250, 68.269387 ], [ -74.531250, 68.399180 ], [ -74.882812, 68.399180 ], [ -74.882812, 68.528235 ], [ -75.585938, 68.528235 ], [ -75.585938, 68.656555 ], [ -76.289062, 68.656555 ], [ -76.289062, 68.784144 ], [ -76.992188, 68.784144 ], [ -76.992188, 68.911005 ], [ -76.640625, 68.911005 ], [ -76.640625, 69.037142 ], [ -76.289062, 69.037142 ], [ -76.289062, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -76.992188, 69.411242 ], [ -76.992188, 69.657086 ], [ -77.343750, 69.657086 ], [ -77.343750, 69.778952 ], [ -78.398438, 69.778952 ], [ -78.398438, 69.900118 ], [ -78.750000, 69.900118 ], [ -78.750000, 70.020587 ], [ -79.453125, 70.020587 ], [ -79.453125, 69.900118 ], [ -80.156250, 69.900118 ], [ -80.156250, 69.778952 ], [ -82.265625, 69.778952 ], [ -82.265625, 69.900118 ], [ -84.375000, 69.900118 ], [ -84.375000, 70.020587 ], [ -85.781250, 70.020587 ], [ -85.781250, 70.140364 ], [ -86.835938, 70.140364 ], [ -86.835938, 70.259452 ], [ -88.242188, 70.259452 ], [ -88.242188, 70.377854 ], [ -88.945312, 70.377854 ], [ -88.945312, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.612614 ], [ -89.648438, 70.612614 ], [ -89.648438, 70.728979 ], [ -89.296875, 70.728979 ], [ -89.296875, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.074056 ], [ -88.593750, 71.074056 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.000000, 71.635993 ], [ -90.351562, 71.635993 ], [ -90.351562, 72.289067 ], [ -90.000000, 72.289067 ], [ -90.000000, 72.607120 ], [ -89.648438, 72.607120 ], [ -89.648438, 72.919635 ], [ -89.296875, 72.919635 ], [ -89.296875, 73.124945 ], [ -88.945312, 73.124945 ], [ -88.945312, 73.327858 ], [ -88.593750, 73.327858 ], [ -88.593750, 73.428424 ], [ -88.242188, 73.428424 ], [ -88.242188, 73.528399 ], [ -87.539062, 73.528399 ], [ -87.539062, 73.627789 ], [ -86.835938, 73.627789 ], [ -86.835938, 73.726595 ], [ -86.132812, 73.726595 ], [ -86.132812, 73.824820 ], [ -85.781250, 73.824820 ] ] ], [ [ [ -91.406250, 76.679785 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.497157 ], [ -85.781250, 75.497157 ], [ -85.781250, 75.584937 ], [ -85.078125, 75.584937 ], [ -85.078125, 75.672197 ], [ -83.320312, 75.672197 ], [ -83.320312, 75.758940 ], [ -82.265625, 75.758940 ], [ -82.265625, 75.672197 ], [ -81.210938, 75.672197 ], [ -81.210938, 75.584937 ], [ -80.859375, 75.584937 ], [ -80.859375, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.320025 ], [ -80.156250, 75.320025 ], [ -80.156250, 75.140778 ], [ -79.804688, 75.140778 ], [ -79.804688, 74.867889 ], [ -80.156250, 74.867889 ], [ -80.156250, 74.683250 ], [ -80.507812, 74.683250 ], [ -80.507812, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.496413 ], [ -81.562500, 74.496413 ], [ -81.562500, 74.402163 ], [ -82.617188, 74.402163 ], [ -82.617188, 74.496413 ], [ -83.320312, 74.496413 ], [ -83.320312, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.496413 ], [ -85.078125, 74.496413 ], [ -85.078125, 74.402163 ], [ -89.296875, 74.402163 ], [ -89.296875, 74.496413 ], [ -90.351562, 74.496413 ], [ -90.351562, 74.590108 ], [ -91.054688, 74.590108 ], [ -91.054688, 74.683250 ], [ -91.757812, 74.683250 ], [ -91.757812, 76.679785 ], [ -91.406250, 76.679785 ] ] ], [ [ [ -75.585938, 68.138852 ], [ -75.585938, 68.007571 ], [ -75.234375, 68.007571 ], [ -75.234375, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -76.289062, 67.204032 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.742759 ], [ -76.992188, 67.742759 ], [ -76.992188, 68.007571 ], [ -76.640625, 68.007571 ], [ -76.640625, 68.138852 ], [ -75.585938, 68.138852 ] ] ], [ [ [ -91.406250, 80.872827 ], [ -91.406250, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -89.648438, 80.589727 ], [ -89.648438, 80.532071 ], [ -89.296875, 80.532071 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.356995 ], [ -88.242188, 80.356995 ], [ -88.242188, 80.297927 ], [ -87.890625, 80.297927 ], [ -87.890625, 80.118564 ], [ -87.539062, 80.118564 ], [ -87.539062, 79.812302 ], [ -87.187500, 79.812302 ], [ -87.187500, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.367701 ], [ -85.781250, 79.367701 ], [ -85.781250, 79.302640 ], [ -86.132812, 79.302640 ], [ -86.132812, 79.237185 ], [ -86.484375, 79.237185 ], [ -86.484375, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 78.903929 ], [ -87.539062, 78.903929 ], [ -87.539062, 78.767792 ], [ -87.890625, 78.767792 ], [ -87.890625, 78.630006 ], [ -88.242188, 78.630006 ], [ -88.242188, 78.490552 ], [ -88.593750, 78.490552 ], [ -88.593750, 78.349411 ], [ -88.945312, 78.349411 ], [ -88.945312, 78.278201 ], [ -89.648438, 78.278201 ], [ -89.648438, 78.206563 ], [ -91.406250, 78.206563 ], [ -91.406250, 78.278201 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ] ] ], [ [ [ -91.406250, 70.020587 ], [ -91.757812, 70.020587 ], [ -91.757812, 70.259452 ], [ -91.406250, 70.259452 ], [ -91.406250, 70.020587 ] ] ], [ [ [ -79.453125, 73.726595 ], [ -79.453125, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.327858 ], [ -76.992188, 73.327858 ], [ -76.992188, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.124945 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -78.046875, 72.816074 ], [ -78.046875, 72.919635 ], [ -78.398438, 72.919635 ], [ -78.398438, 72.816074 ], [ -79.101562, 72.816074 ], [ -79.101562, 72.711903 ], [ -79.804688, 72.711903 ], [ -79.804688, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.022592 ], [ -80.507812, 73.022592 ], [ -80.507812, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.726595 ], [ -79.453125, 73.726595 ] ] ], [ [ [ -91.054688, 73.922469 ], [ -91.054688, 73.824820 ], [ -90.351562, 73.824820 ], [ -90.351562, 73.726595 ], [ -90.703125, 73.726595 ], [ -90.703125, 73.528399 ], [ -91.054688, 73.528399 ], [ -91.054688, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 73.922469 ], [ -91.054688, 73.922469 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.429688, 77.617709 ], [ -85.429688, 77.767582 ], [ -85.781250, 77.767582 ], [ -85.781250, 77.915669 ], [ -86.132812, 77.915669 ], [ -86.132812, 78.061989 ], [ -86.484375, 78.061989 ], [ -86.484375, 78.206563 ], [ -86.835938, 78.206563 ], [ -86.835938, 78.278201 ], [ -87.539062, 78.278201 ], [ -87.539062, 78.349411 ], [ -88.242188, 78.349411 ], [ -88.242188, 78.420193 ], [ -87.890625, 78.420193 ], [ -87.890625, 78.560488 ], [ -87.539062, 78.560488 ], [ -87.539062, 78.699106 ], [ -87.187500, 78.699106 ], [ -87.187500, 78.767792 ], [ -86.835938, 78.767792 ], [ -86.835938, 78.836065 ], [ -86.484375, 78.836065 ], [ -86.484375, 78.903929 ], [ -85.781250, 78.903929 ], [ -85.781250, 78.971386 ], [ -85.429688, 78.971386 ], [ -85.429688, 79.367701 ], [ -85.781250, 79.367701 ], [ -85.781250, 79.496652 ], [ -86.132812, 79.496652 ], [ -86.132812, 79.560546 ], [ -86.484375, 79.560546 ], [ -86.484375, 79.687184 ], [ -86.835938, 79.687184 ], [ -86.835938, 79.997168 ], [ -87.187500, 79.997168 ], [ -87.187500, 80.297927 ], [ -86.132812, 80.297927 ], [ -86.132812, 80.238501 ], [ -84.375000, 80.238501 ], [ -84.375000, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.118564 ], [ -83.320312, 80.118564 ], [ -83.320312, 80.178713 ], [ -82.968750, 80.178713 ], [ -82.968750, 80.297927 ], [ -82.617188, 80.297927 ], [ -82.617188, 80.356995 ], [ -82.265625, 80.356995 ], [ -82.265625, 80.415707 ], [ -81.914062, 80.415707 ], [ -81.914062, 80.474065 ], [ -82.617188, 80.474065 ], [ -82.617188, 80.532071 ], [ -84.023438, 80.532071 ], [ -84.023438, 80.589727 ], [ -85.781250, 80.589727 ], [ -85.781250, 80.532071 ], [ -88.242188, 80.532071 ], [ -88.242188, 80.589727 ], [ -88.593750, 80.589727 ], [ -88.593750, 80.703997 ], [ -88.945312, 80.703997 ], [ -88.945312, 80.760615 ], [ -89.296875, 80.760615 ], [ -89.296875, 80.816891 ], [ -89.648438, 80.816891 ], [ -89.648438, 80.983688 ], [ -90.000000, 80.983688 ], [ -90.000000, 81.201420 ], [ -90.351562, 81.201420 ], [ -90.351562, 81.308321 ], [ -90.703125, 81.308321 ], [ -90.703125, 81.413933 ], [ -91.054688, 81.413933 ], [ -91.054688, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.757812, 81.723188 ], [ -91.757812, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 81.972431 ], [ -91.054688, 81.972431 ], [ -91.054688, 82.021378 ], [ -90.703125, 82.021378 ], [ -90.703125, 82.070028 ], [ -90.351562, 82.070028 ], [ -90.351562, 82.118384 ], [ -88.593750, 82.118384 ], [ -88.593750, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 82.214217 ], [ -87.539062, 82.214217 ], [ -87.539062, 82.261699 ], [ -87.187500, 82.261699 ], [ -87.187500, 82.355800 ], [ -86.835938, 82.355800 ], [ -86.835938, 82.448764 ], [ -86.484375, 82.448764 ], [ -86.484375, 82.540604 ], [ -86.132812, 82.540604 ], [ -86.132812, 82.631333 ], [ -85.781250, 82.631333 ], [ -85.781250, 82.676285 ], [ -85.429688, 82.676285 ], [ -85.429688, 82.631333 ], [ -84.375000, 82.631333 ], [ -84.375000, 82.586106 ], [ -84.023438, 82.586106 ], [ -84.023438, 82.494824 ], [ -83.671875, 82.494824 ], [ -83.671875, 82.402423 ], [ -83.320312, 82.402423 ], [ -83.320312, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.765373 ], [ -82.617188, 82.765373 ], [ -82.617188, 82.896987 ], [ -82.265625, 82.896987 ], [ -82.265625, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.026219 ], [ -80.859375, 83.026219 ], [ -80.859375, 83.068774 ], [ -80.156250, 83.068774 ], [ -80.156250, 83.111071 ], [ -79.453125, 83.111071 ], [ -79.453125, 83.153111 ], [ -77.695312, 83.153111 ], [ -77.695312, 83.194896 ], [ -76.289062, 83.194896 ], [ -76.289062, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -75.234375, 83.068774 ], [ -75.234375, 83.111071 ], [ -74.531250, 83.111071 ], [ -74.531250, 83.153111 ], [ -73.828125, 83.153111 ], [ -73.828125, 83.194896 ], [ -73.125000, 83.194896 ], [ -73.125000, 83.236426 ], [ -72.070312, 83.236426 ], [ -72.070312, 83.194896 ], [ -70.312500, 83.194896 ], [ -70.312500, 83.153111 ], [ -69.257812, 83.153111 ], [ -69.257812, 83.111071 ], [ -67.500000, 83.111071 ], [ -67.500000, 83.068774 ], [ -66.093750, 83.068774 ], [ -66.093750, 83.026219 ], [ -65.390625, 83.026219 ], [ -65.390625, 82.983404 ], [ -64.687500, 82.983404 ], [ -64.687500, 82.940327 ], [ -63.984375, 82.940327 ], [ -63.984375, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.809511 ], [ -62.929688, 82.809511 ], [ -62.929688, 82.720964 ], [ -62.578125, 82.720964 ], [ -62.578125, 82.676285 ], [ -62.226562, 82.676285 ], [ -62.226562, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.494824 ], [ -62.226562, 82.494824 ], [ -62.226562, 82.355800 ], [ -62.578125, 82.355800 ], [ -62.578125, 82.261699 ], [ -62.929688, 82.261699 ], [ -62.929688, 82.214217 ], [ -63.281250, 82.214217 ], [ -63.281250, 82.118384 ], [ -63.632812, 82.118384 ], [ -63.632812, 82.070028 ], [ -63.984375, 82.070028 ], [ -63.984375, 81.972431 ], [ -64.335938, 81.972431 ], [ -64.335938, 81.923186 ], [ -65.039062, 81.923186 ], [ -65.039062, 81.873641 ], [ -65.742188, 81.873641 ], [ -65.742188, 81.823794 ], [ -66.445312, 81.823794 ], [ -66.445312, 81.773644 ], [ -66.796875, 81.773644 ], [ -66.796875, 81.723188 ], [ -67.148438, 81.723188 ], [ -67.148438, 81.621352 ], [ -67.500000, 81.621352 ], [ -67.500000, 81.518272 ], [ -65.742188, 81.518272 ], [ -65.742188, 81.466261 ], [ -66.093750, 81.466261 ], [ -66.093750, 81.361287 ], [ -66.445312, 81.361287 ], [ -66.445312, 81.255032 ], [ -66.796875, 81.255032 ], [ -66.796875, 81.147481 ], [ -67.148438, 81.147481 ], [ -67.148438, 81.038617 ], [ -67.500000, 81.038617 ], [ -67.500000, 80.928426 ], [ -67.851562, 80.928426 ], [ -67.851562, 80.872827 ], [ -68.203125, 80.872827 ], [ -68.203125, 80.816891 ], [ -68.554688, 80.816891 ], [ -68.554688, 80.760615 ], [ -68.906250, 80.760615 ], [ -68.906250, 80.703997 ], [ -69.257812, 80.703997 ], [ -69.257812, 80.647035 ], [ -69.609375, 80.647035 ], [ -69.609375, 80.532071 ], [ -69.960938, 80.532071 ], [ -69.960938, 80.356995 ], [ -70.312500, 80.356995 ], [ -70.312500, 80.238501 ], [ -70.664062, 80.238501 ], [ -70.664062, 80.058050 ], [ -71.015625, 80.058050 ], [ -71.015625, 79.874297 ], [ -71.367188, 79.874297 ], [ -71.367188, 79.812302 ], [ -71.718750, 79.812302 ], [ -71.718750, 79.749932 ], [ -72.773438, 79.749932 ], [ -72.773438, 79.687184 ], [ -73.476562, 79.687184 ], [ -73.476562, 79.624056 ], [ -73.828125, 79.624056 ], [ -73.828125, 79.496652 ], [ -74.179688, 79.496652 ], [ -74.179688, 79.432371 ], [ -75.234375, 79.432371 ], [ -75.234375, 79.367701 ], [ -76.992188, 79.367701 ], [ -76.992188, 79.302640 ], [ -76.289062, 79.302640 ], [ -76.289062, 79.237185 ], [ -75.585938, 79.237185 ], [ -75.585938, 79.171335 ], [ -75.937500, 79.171335 ], [ -75.937500, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 78.903929 ], [ -75.937500, 78.903929 ], [ -75.937500, 78.630006 ], [ -75.585938, 78.630006 ], [ -75.585938, 78.490552 ], [ -75.937500, 78.490552 ], [ -75.937500, 78.349411 ], [ -76.289062, 78.349411 ], [ -76.289062, 78.206563 ], [ -76.640625, 78.206563 ], [ -76.640625, 78.134493 ], [ -76.992188, 78.134493 ], [ -76.992188, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 77.989049 ], [ -77.695312, 77.989049 ], [ -77.695312, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.692870 ], [ -78.398438, 77.692870 ], [ -78.398438, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.389504 ], [ -79.101562, 77.389504 ], [ -79.101562, 77.312520 ], [ -79.453125, 77.312520 ], [ -79.453125, 77.235074 ], [ -79.804688, 77.235074 ], [ -79.804688, 76.999935 ], [ -78.750000, 76.999935 ], [ -78.750000, 77.078784 ], [ -78.046875, 77.078784 ], [ -78.046875, 76.760541 ], [ -78.398438, 76.760541 ], [ -78.398438, 76.679785 ], [ -78.750000, 76.679785 ], [ -78.750000, 76.598545 ], [ -79.101562, 76.598545 ], [ -79.101562, 76.516819 ], [ -79.453125, 76.516819 ], [ -79.453125, 76.434604 ], [ -79.804688, 76.434604 ], [ -79.804688, 76.351896 ], [ -80.156250, 76.351896 ], [ -80.156250, 76.268695 ], [ -80.507812, 76.268695 ], [ -80.507812, 76.184995 ], [ -81.210938, 76.184995 ], [ -81.210938, 76.268695 ], [ -81.914062, 76.268695 ], [ -81.914062, 76.351896 ], [ -82.617188, 76.351896 ], [ -82.617188, 76.434604 ], [ -83.320312, 76.434604 ], [ -83.320312, 76.516819 ], [ -83.671875, 76.516819 ], [ -83.671875, 76.434604 ], [ -85.078125, 76.434604 ], [ -85.078125, 76.351896 ], [ -87.187500, 76.351896 ], [ -87.187500, 76.434604 ], [ -88.945312, 76.434604 ], [ -88.945312, 76.516819 ], [ -89.648438, 76.516819 ], [ -89.648438, 76.999935 ], [ -89.296875, 76.999935 ], [ -89.296875, 77.078784 ], [ -88.593750, 77.078784 ], [ -88.593750, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.389504 ], [ -88.242188, 77.389504 ], [ -88.242188, 77.692870 ], [ -88.593750, 77.692870 ], [ -88.593750, 77.915669 ], [ -87.539062, 77.915669 ], [ -87.539062, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.767582 ], [ -86.484375, 77.767582 ], [ -86.484375, 77.692870 ], [ -86.132812, 77.692870 ], [ -86.132812, 77.617709 ], [ -85.429688, 77.617709 ] ], [ [ -85.429688, 77.617709 ], [ -85.429688, 77.542096 ], [ -85.078125, 77.542096 ], [ -85.078125, 77.617709 ], [ -85.429688, 77.617709 ] ] ], [ [ [ -84.375000, 69.900118 ], [ -84.375000, 70.020587 ], [ -85.781250, 70.020587 ], [ -85.781250, 70.140364 ], [ -86.835938, 70.140364 ], [ -86.835938, 70.259452 ], [ -87.890625, 70.259452 ], [ -87.890625, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.495574 ], [ -89.296875, 70.495574 ], [ -89.296875, 70.728979 ], [ -89.648438, 70.728979 ], [ -89.648438, 70.844673 ], [ -89.296875, 70.844673 ], [ -89.296875, 71.074056 ], [ -88.945312, 71.074056 ], [ -88.945312, 71.187754 ], [ -88.593750, 71.187754 ], [ -88.593750, 71.300793 ], [ -90.000000, 71.300793 ], [ -90.000000, 71.746432 ], [ -90.351562, 71.746432 ], [ -90.351562, 72.501722 ], [ -90.000000, 72.501722 ], [ -90.000000, 72.919635 ], [ -89.648438, 72.919635 ], [ -89.648438, 73.226700 ], [ -89.296875, 73.226700 ], [ -89.296875, 73.428424 ], [ -88.945312, 73.428424 ], [ -88.945312, 73.528399 ], [ -88.593750, 73.528399 ], [ -88.593750, 73.627789 ], [ -87.890625, 73.627789 ], [ -87.890625, 73.726595 ], [ -86.484375, 73.726595 ], [ -86.484375, 73.824820 ], [ -86.132812, 73.824820 ], [ -86.132812, 73.627789 ], [ -86.484375, 73.627789 ], [ -86.484375, 73.327858 ], [ -86.835938, 73.327858 ], [ -86.835938, 73.124945 ], [ -86.484375, 73.124945 ], [ -86.484375, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.711903 ], [ -85.781250, 72.711903 ], [ -85.781250, 72.816074 ], [ -85.429688, 72.816074 ], [ -85.429688, 73.226700 ], [ -85.078125, 73.226700 ], [ -85.078125, 73.428424 ], [ -84.726562, 73.428424 ], [ -84.726562, 73.528399 ], [ -84.023438, 73.528399 ], [ -84.023438, 73.627789 ], [ -83.320312, 73.627789 ], [ -83.320312, 73.726595 ], [ -82.265625, 73.726595 ], [ -82.265625, 73.528399 ], [ -81.914062, 73.528399 ], [ -81.914062, 73.327858 ], [ -81.562500, 73.327858 ], [ -81.562500, 73.124945 ], [ -81.210938, 73.124945 ], [ -81.210938, 72.919635 ], [ -80.859375, 72.919635 ], [ -80.859375, 72.073911 ], [ -80.507812, 72.073911 ], [ -80.507812, 72.181804 ], [ -79.804688, 72.181804 ], [ -79.804688, 72.289067 ], [ -79.101562, 72.289067 ], [ -79.101562, 72.395706 ], [ -78.750000, 72.395706 ], [ -78.750000, 72.607120 ], [ -78.398438, 72.607120 ], [ -78.398438, 72.711903 ], [ -77.695312, 72.711903 ], [ -77.695312, 72.607120 ], [ -77.343750, 72.607120 ], [ -77.343750, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.395706 ], [ -76.289062, 72.395706 ], [ -76.289062, 72.289067 ], [ -75.937500, 72.289067 ], [ -75.937500, 72.181804 ], [ -75.585938, 72.181804 ], [ -75.585938, 72.073911 ], [ -75.234375, 72.073911 ], [ -75.234375, 71.965388 ], [ -74.882812, 71.965388 ], [ -74.882812, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.635993 ], [ -74.179688, 71.635993 ], [ -74.179688, 71.413177 ], [ -73.476562, 71.413177 ], [ -73.476562, 71.524909 ], [ -72.773438, 71.524909 ], [ -72.773438, 71.635993 ], [ -72.421875, 71.635993 ], [ -72.421875, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.959697 ], [ -71.015625, 70.959697 ], [ -71.015625, 70.844673 ], [ -70.312500, 70.844673 ], [ -70.312500, 70.728979 ], [ -69.609375, 70.728979 ], [ -69.609375, 70.612614 ], [ -68.906250, 70.612614 ], [ -68.906250, 70.495574 ], [ -68.554688, 70.495574 ], [ -68.554688, 70.259452 ], [ -68.203125, 70.259452 ], [ -68.203125, 69.900118 ], [ -67.851562, 69.900118 ], [ -67.851562, 69.657086 ], [ -67.500000, 69.657086 ], [ -67.500000, 69.411242 ], [ -67.148438, 69.411242 ], [ -67.148438, 69.162558 ], [ -67.500000, 69.162558 ], [ -67.500000, 69.037142 ], [ -68.203125, 69.037142 ], [ -68.203125, 68.911005 ], [ -68.554688, 68.911005 ], [ -68.554688, 68.784144 ], [ -68.906250, 68.784144 ], [ -68.906250, 68.656555 ], [ -68.554688, 68.656555 ], [ -68.554688, 68.528235 ], [ -68.203125, 68.528235 ], [ -68.203125, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.269387 ], [ -67.148438, 68.269387 ], [ -67.148438, 68.138852 ], [ -66.445312, 68.138852 ], [ -66.445312, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.875541 ], [ -65.039062, 67.875541 ], [ -65.039062, 67.742759 ], [ -64.687500, 67.742759 ], [ -64.687500, 67.474922 ], [ -64.335938, 67.474922 ], [ -64.335938, 67.204032 ], [ -63.984375, 67.204032 ], [ -63.984375, 66.930060 ], [ -61.875000, 66.930060 ], [ -61.875000, 66.513260 ], [ -62.226562, 66.513260 ], [ -62.226562, 66.089364 ], [ -62.578125, 66.089364 ], [ -62.578125, 65.802776 ], [ -66.093750, 65.802776 ], [ -66.093750, 65.946472 ], [ -66.445312, 65.946472 ], [ -66.445312, 66.231457 ], [ -66.796875, 66.231457 ], [ -66.796875, 66.513260 ], [ -67.148438, 66.513260 ], [ -67.148438, 66.372755 ], [ -68.203125, 66.372755 ], [ -68.203125, 65.802776 ], [ -74.531250, 65.802776 ], [ -74.531250, 66.089364 ], [ -74.179688, 66.089364 ], [ -74.179688, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.930060 ], [ -73.125000, 66.930060 ], [ -73.125000, 67.204032 ], [ -72.773438, 67.204032 ], [ -72.773438, 67.474922 ], [ -73.125000, 67.474922 ], [ -73.125000, 67.875541 ], [ -73.476562, 67.875541 ], [ -73.476562, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.269387 ], [ -74.179688, 68.269387 ], [ -74.179688, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.528235 ], [ -74.882812, 68.528235 ], [ -74.882812, 68.656555 ], [ -75.585938, 68.656555 ], [ -75.585938, 68.784144 ], [ -76.640625, 68.784144 ], [ -76.640625, 69.037142 ], [ -76.289062, 69.037142 ], [ -76.289062, 69.162558 ], [ -76.640625, 69.162558 ], [ -76.640625, 69.411242 ], [ -76.992188, 69.411242 ], [ -76.992188, 69.657086 ], [ -77.343750, 69.657086 ], [ -77.343750, 69.778952 ], [ -78.046875, 69.778952 ], [ -78.046875, 69.900118 ], [ -78.750000, 69.900118 ], [ -78.750000, 70.140364 ], [ -79.453125, 70.140364 ], [ -79.453125, 69.900118 ], [ -80.507812, 69.900118 ], [ -80.507812, 69.778952 ], [ -82.617188, 69.778952 ], [ -82.617188, 69.900118 ], [ -84.023438, 69.900118 ], [ -84.023438, 69.778952 ], [ -82.968750, 69.778952 ], [ -82.968750, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.287257 ], [ -81.914062, 69.287257 ], [ -81.914062, 69.162558 ], [ -81.562500, 69.162558 ], [ -81.562500, 68.528235 ], [ -81.914062, 68.528235 ], [ -81.914062, 68.269387 ], [ -82.265625, 68.269387 ], [ -82.265625, 68.007571 ], [ -81.914062, 68.007571 ], [ -81.914062, 67.742759 ], [ -81.562500, 67.742759 ], [ -81.562500, 67.067433 ], [ -81.914062, 67.067433 ], [ -81.914062, 66.930060 ], [ -82.265625, 66.930060 ], [ -82.265625, 66.791909 ], [ -82.968750, 66.791909 ], [ -82.968750, 66.652977 ], [ -83.320312, 66.652977 ], [ -83.320312, 66.513260 ], [ -84.023438, 66.513260 ], [ -84.023438, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.372755 ], [ -86.132812, 66.372755 ], [ -86.132812, 65.946472 ], [ -86.484375, 65.946472 ], [ -86.484375, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.657086 ], [ -91.406250, 69.657086 ], [ -91.406250, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.351562, 68.528235 ], [ -90.351562, 68.784144 ], [ -90.000000, 68.784144 ], [ -90.000000, 68.911005 ], [ -89.648438, 68.911005 ], [ -89.648438, 69.162558 ], [ -88.945312, 69.162558 ], [ -88.945312, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.656555 ], [ -88.242188, 68.656555 ], [ -88.242188, 68.269387 ], [ -88.593750, 68.269387 ], [ -88.593750, 67.742759 ], [ -88.242188, 67.742759 ], [ -88.242188, 67.474922 ], [ -87.890625, 67.474922 ], [ -87.890625, 67.204032 ], [ -87.539062, 67.204032 ], [ -87.539062, 67.339861 ], [ -87.187500, 67.339861 ], [ -87.187500, 67.609221 ], [ -86.835938, 67.609221 ], [ -86.835938, 67.875541 ], [ -86.484375, 67.875541 ], [ -86.484375, 68.138852 ], [ -86.132812, 68.138852 ], [ -86.132812, 68.528235 ], [ -85.781250, 68.528235 ], [ -85.781250, 69.900118 ], [ -84.375000, 69.900118 ] ] ], [ [ [ -91.406250, 76.760541 ], [ -91.406250, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.016094 ], [ -90.351562, 76.016094 ], [ -90.351562, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.672197 ], [ -88.945312, 75.672197 ], [ -88.945312, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.497157 ], [ -86.132812, 75.497157 ], [ -86.132812, 75.584937 ], [ -85.429688, 75.584937 ], [ -85.429688, 75.672197 ], [ -85.078125, 75.672197 ], [ -85.078125, 75.758940 ], [ -83.671875, 75.758940 ], [ -83.671875, 75.845169 ], [ -82.265625, 75.845169 ], [ -82.265625, 75.758940 ], [ -81.210938, 75.758940 ], [ -81.210938, 75.672197 ], [ -80.859375, 75.672197 ], [ -80.859375, 75.584937 ], [ -80.507812, 75.584937 ], [ -80.507812, 75.408854 ], [ -80.156250, 75.408854 ], [ -80.156250, 74.775843 ], [ -80.507812, 74.775843 ], [ -80.507812, 74.683250 ], [ -80.859375, 74.683250 ], [ -80.859375, 74.590108 ], [ -81.562500, 74.590108 ], [ -81.562500, 74.496413 ], [ -82.968750, 74.496413 ], [ -82.968750, 74.590108 ], [ -84.375000, 74.590108 ], [ -84.375000, 74.496413 ], [ -86.835938, 74.496413 ], [ -86.835938, 74.402163 ], [ -88.945312, 74.402163 ], [ -88.945312, 74.496413 ], [ -89.648438, 74.496413 ], [ -89.648438, 74.590108 ], [ -90.703125, 74.590108 ], [ -90.703125, 74.683250 ], [ -91.406250, 74.683250 ], [ -91.406250, 74.775843 ], [ -91.757812, 74.775843 ], [ -91.757812, 76.760541 ], [ -91.406250, 76.760541 ] ] ], [ [ [ -91.406250, 80.872827 ], [ -91.406250, 80.703997 ], [ -91.054688, 80.703997 ], [ -91.054688, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.415707 ], [ -88.242188, 80.415707 ], [ -88.242188, 80.356995 ], [ -87.890625, 80.356995 ], [ -87.890625, 80.178713 ], [ -87.539062, 80.178713 ], [ -87.539062, 79.812302 ], [ -87.187500, 79.812302 ], [ -87.187500, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.496652 ], [ -86.484375, 79.496652 ], [ -86.484375, 79.367701 ], [ -86.132812, 79.367701 ], [ -86.132812, 79.302640 ], [ -86.484375, 79.302640 ], [ -86.484375, 79.237185 ], [ -86.835938, 79.237185 ], [ -86.835938, 79.105086 ], [ -87.187500, 79.105086 ], [ -87.187500, 79.038437 ], [ -87.539062, 79.038437 ], [ -87.539062, 78.903929 ], [ -87.890625, 78.903929 ], [ -87.890625, 78.767792 ], [ -88.242188, 78.767792 ], [ -88.242188, 78.630006 ], [ -88.593750, 78.630006 ], [ -88.593750, 78.490552 ], [ -88.945312, 78.490552 ], [ -88.945312, 78.349411 ], [ -90.000000, 78.349411 ], [ -90.000000, 78.278201 ], [ -91.757812, 78.278201 ], [ -91.757812, 80.872827 ], [ -91.406250, 80.872827 ] ] ], [ [ [ -75.937500, 68.399180 ], [ -75.937500, 68.269387 ], [ -75.585938, 68.269387 ], [ -75.585938, 68.138852 ], [ -75.234375, 68.138852 ], [ -75.234375, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -76.992188, 67.204032 ], [ -76.992188, 67.339861 ], [ -77.343750, 67.339861 ], [ -77.343750, 67.875541 ], [ -76.992188, 67.875541 ], [ -76.992188, 68.269387 ], [ -76.289062, 68.269387 ], [ -76.289062, 68.399180 ], [ -75.937500, 68.399180 ] ] ], [ [ [ -79.804688, 73.824820 ], [ -79.804688, 73.726595 ], [ -78.398438, 73.726595 ], [ -78.398438, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.226700 ], [ -76.992188, 73.226700 ], [ -76.992188, 73.124945 ], [ -76.640625, 73.124945 ], [ -76.640625, 73.022592 ], [ -76.289062, 73.022592 ], [ -76.289062, 72.919635 ], [ -78.750000, 72.919635 ], [ -78.750000, 72.816074 ], [ -80.156250, 72.816074 ], [ -80.156250, 73.022592 ], [ -80.507812, 73.022592 ], [ -80.507812, 73.124945 ], [ -80.859375, 73.124945 ], [ -80.859375, 73.327858 ], [ -81.210938, 73.327858 ], [ -81.210938, 73.528399 ], [ -80.859375, 73.528399 ], [ -80.859375, 73.726595 ], [ -80.507812, 73.726595 ], [ -80.507812, 73.824820 ], [ -79.804688, 73.824820 ] ] ], [ [ [ -91.406250, 74.019543 ], [ -91.406250, 73.922469 ], [ -90.703125, 73.922469 ], [ -90.703125, 73.726595 ], [ -91.054688, 73.726595 ], [ -91.054688, 73.528399 ], [ -91.406250, 73.528399 ], [ -91.406250, 73.226700 ], [ -91.757812, 73.226700 ], [ -91.757812, 74.019543 ], [ -91.406250, 74.019543 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.351562, 81.773644 ], [ -45.351562, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.070028 ], [ -46.406250, 82.070028 ], [ -46.406250, 82.166446 ], [ -46.757812, 82.166446 ], [ -46.757812, 82.631333 ], [ -46.406250, 82.631333 ], [ -46.406250, 82.720964 ], [ -46.054688, 82.720964 ], [ -46.054688, 82.765373 ], [ -45.703125, 82.765373 ], [ -45.703125, 82.809511 ], [ -45.351562, 82.809511 ], [ -45.351562, 82.896987 ], [ -45.000000, 82.896987 ], [ -45.000000, 82.940327 ], [ -44.648438, 82.940327 ], [ -44.648438, 83.026219 ], [ -44.296875, 83.026219 ], [ -44.296875, 83.068774 ], [ -43.945312, 83.068774 ], [ -43.945312, 83.111071 ], [ -43.593750, 83.111071 ], [ -43.593750, 83.194896 ], [ -43.242188, 83.194896 ], [ -43.242188, 83.236426 ], [ -41.835938, 83.236426 ], [ -41.835938, 83.194896 ], [ -39.726562, 83.194896 ], [ -39.726562, 83.236426 ], [ -39.375000, 83.236426 ], [ -39.375000, 83.359511 ], [ -39.023438, 83.359511 ], [ -39.023438, 83.480366 ], [ -38.671875, 83.480366 ], [ -38.671875, 83.559717 ], [ -37.617188, 83.559717 ], [ -37.617188, 83.599031 ], [ -35.859375, 83.599031 ], [ -35.859375, 83.638106 ], [ -34.101562, 83.638106 ], [ -34.101562, 83.599031 ], [ -31.289062, 83.599031 ], [ -31.289062, 83.559717 ], [ -28.476562, 83.559717 ], [ -28.476562, 83.520162 ], [ -27.070312, 83.520162 ], [ -27.070312, 83.480366 ], [ -26.718750, 83.480366 ], [ -26.718750, 83.440326 ], [ -26.367188, 83.440326 ], [ -26.367188, 83.400042 ], [ -26.015625, 83.400042 ], [ -26.015625, 83.359511 ], [ -25.664062, 83.359511 ], [ -25.664062, 83.318733 ], [ -25.312500, 83.318733 ], [ -25.312500, 83.277705 ], [ -24.960938, 83.277705 ], [ -24.960938, 83.236426 ], [ -24.609375, 83.236426 ], [ -24.609375, 83.194896 ], [ -24.257812, 83.194896 ], [ -24.257812, 83.153111 ], [ -23.906250, 83.153111 ], [ -23.906250, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.809511 ], [ -21.445312, 82.809511 ], [ -21.445312, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.720964 ], [ -20.742188, 82.720964 ], [ -20.742188, 82.676285 ], [ -21.093750, 82.676285 ], [ -21.093750, 82.631333 ], [ -21.445312, 82.631333 ], [ -21.445312, 82.540604 ], [ -21.796875, 82.540604 ], [ -21.796875, 82.494824 ], [ -22.148438, 82.494824 ], [ -22.148438, 82.448764 ], [ -22.500000, 82.448764 ], [ -22.500000, 82.355800 ], [ -24.257812, 82.355800 ], [ -24.257812, 82.308893 ], [ -27.421875, 82.308893 ], [ -27.421875, 82.261699 ], [ -30.234375, 82.261699 ], [ -30.234375, 82.214217 ], [ -31.992188, 82.214217 ], [ -31.992188, 82.166446 ], [ -31.640625, 82.166446 ], [ -31.640625, 82.070028 ], [ -31.289062, 82.070028 ], [ -31.289062, 82.021378 ], [ -30.234375, 82.021378 ], [ -30.234375, 82.070028 ], [ -28.476562, 82.070028 ], [ -28.476562, 82.118384 ], [ -27.773438, 82.118384 ], [ -27.773438, 82.070028 ], [ -27.421875, 82.070028 ], [ -27.421875, 82.021378 ], [ -27.070312, 82.021378 ], [ -27.070312, 81.972431 ], [ -26.718750, 81.972431 ], [ -26.718750, 81.923186 ], [ -26.015625, 81.923186 ], [ -26.015625, 81.873641 ], [ -25.664062, 81.873641 ], [ -25.664062, 81.823794 ], [ -25.312500, 81.823794 ], [ -25.312500, 81.773644 ], [ -24.609375, 81.773644 ], [ -24.609375, 81.823794 ], [ -24.257812, 81.823794 ], [ -24.257812, 81.873641 ], [ -23.906250, 81.873641 ], [ -23.906250, 81.923186 ], [ -23.554688, 81.923186 ], [ -23.554688, 81.972431 ], [ -23.203125, 81.972431 ], [ -23.203125, 82.021378 ], [ -22.851562, 82.021378 ], [ -22.851562, 81.972431 ], [ -22.500000, 81.972431 ], [ -22.500000, 81.773644 ], [ -22.148438, 81.773644 ], [ -22.148438, 81.621352 ], [ -22.500000, 81.621352 ], [ -22.500000, 81.413933 ], [ -22.851562, 81.413933 ], [ -22.851562, 81.201420 ], [ -22.500000, 81.201420 ], [ -22.500000, 81.255032 ], [ -22.148438, 81.255032 ], [ -22.148438, 81.308321 ], [ -21.796875, 81.308321 ], [ -21.796875, 81.361287 ], [ -21.445312, 81.361287 ], [ -21.445312, 81.413933 ], [ -21.093750, 81.413933 ], [ -21.093750, 81.466261 ], [ -20.742188, 81.466261 ], [ -20.742188, 81.518272 ], [ -20.390625, 81.518272 ], [ -20.390625, 81.569968 ], [ -19.687500, 81.569968 ], [ -19.687500, 81.621352 ], [ -18.984375, 81.621352 ], [ -18.984375, 81.672424 ], [ -18.281250, 81.672424 ], [ -18.281250, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.773644 ], [ -17.226562, 81.773644 ], [ -17.226562, 81.823794 ], [ -16.523438, 81.823794 ], [ -16.523438, 81.873641 ], [ -15.820312, 81.873641 ], [ -15.820312, 81.923186 ], [ -15.468750, 81.923186 ], [ -15.468750, 81.873641 ], [ -14.765625, 81.873641 ], [ -14.765625, 81.823794 ], [ -14.062500, 81.823794 ], [ -14.062500, 81.773644 ], [ -13.359375, 81.773644 ], [ -13.359375, 81.723188 ], [ -12.656250, 81.723188 ], [ -12.656250, 81.518272 ], [ -12.304688, 81.518272 ], [ -12.304688, 81.255032 ], [ -12.656250, 81.255032 ], [ -12.656250, 81.201420 ], [ -13.007812, 81.201420 ], [ -13.007812, 81.147481 ], [ -13.359375, 81.147481 ], [ -13.359375, 81.038617 ], [ -13.710938, 81.038617 ], [ -13.710938, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.928426 ], [ -14.414062, 80.928426 ], [ -14.414062, 80.872827 ], [ -14.765625, 80.872827 ], [ -14.765625, 80.816891 ], [ -15.117188, 80.816891 ], [ -15.117188, 80.703997 ], [ -15.468750, 80.703997 ], [ -15.468750, 80.647035 ], [ -15.820312, 80.647035 ], [ -15.820312, 80.589727 ], [ -16.171875, 80.589727 ], [ -16.171875, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.415707 ], [ -16.875000, 80.415707 ], [ -16.875000, 80.356995 ], [ -17.226562, 80.356995 ], [ -17.226562, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.238501 ], [ -19.335938, 80.238501 ], [ -19.335938, 80.178713 ], [ -18.984375, 80.178713 ], [ -18.984375, 80.118564 ], [ -17.578125, 80.118564 ], [ -17.578125, 79.997168 ], [ -17.929688, 79.997168 ], [ -17.929688, 79.812302 ], [ -18.281250, 79.812302 ], [ -18.281250, 79.624056 ], [ -18.632812, 79.624056 ], [ -18.632812, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.171335 ], [ -19.335938, 79.171335 ], [ -19.335938, 78.903929 ], [ -19.687500, 78.903929 ], [ -19.687500, 77.466028 ], [ -19.335938, 77.466028 ], [ -19.335938, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.078784 ], [ -18.632812, 77.078784 ], [ -18.632812, 76.999935 ], [ -18.984375, 76.999935 ], [ -18.984375, 76.920614 ], [ -20.039062, 76.920614 ], [ -20.039062, 76.840816 ], [ -20.390625, 76.840816 ], [ -20.390625, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.679785 ], [ -21.445312, 76.679785 ], [ -21.445312, 76.598545 ], [ -21.796875, 76.598545 ], [ -21.796875, 76.516819 ], [ -21.445312, 76.516819 ], [ -21.445312, 76.434604 ], [ -21.093750, 76.434604 ], [ -21.093750, 76.351896 ], [ -20.742188, 76.351896 ], [ -20.742188, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.184995 ], [ -20.039062, 76.184995 ], [ -20.039062, 76.100796 ], [ -19.687500, 76.100796 ], [ -19.687500, 75.230667 ], [ -20.039062, 75.230667 ], [ -20.039062, 75.140778 ], [ -20.742188, 75.140778 ], [ -20.742188, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.590108 ], [ -19.687500, 74.590108 ], [ -19.687500, 74.402163 ], [ -19.335938, 74.402163 ], [ -19.335938, 74.307353 ], [ -20.039062, 74.307353 ], [ -20.039062, 74.211983 ], [ -21.445312, 74.211983 ], [ -21.445312, 74.116047 ], [ -21.093750, 74.116047 ], [ -21.093750, 74.019543 ], [ -20.742188, 74.019543 ], [ -20.742188, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.627789 ], [ -20.742188, 73.627789 ], [ -20.742188, 73.428424 ], [ -21.093750, 73.428424 ], [ -21.093750, 73.327858 ], [ -23.554688, 73.327858 ], [ -23.554688, 73.226700 ], [ -23.203125, 73.226700 ], [ -23.203125, 73.022592 ], [ -22.851562, 73.022592 ], [ -22.851562, 72.816074 ], [ -22.500000, 72.816074 ], [ -22.500000, 72.607120 ], [ -22.148438, 72.607120 ], [ -22.148438, 72.181804 ], [ -22.500000, 72.181804 ], [ -22.500000, 72.289067 ], [ -23.203125, 72.289067 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.501722 ], [ -24.609375, 72.501722 ], [ -24.609375, 72.289067 ], [ -24.960938, 72.289067 ], [ -24.960938, 72.181804 ], [ -24.257812, 72.181804 ], [ -24.257812, 72.073911 ], [ -23.554688, 72.073911 ], [ -23.554688, 71.965388 ], [ -23.203125, 71.965388 ], [ -23.203125, 71.746432 ], [ -22.851562, 71.746432 ], [ -22.851562, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.413177 ], [ -22.148438, 71.413177 ], [ -22.148438, 70.959697 ], [ -21.796875, 70.959697 ], [ -21.796875, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.495574 ], [ -23.906250, 70.495574 ], [ -23.906250, 70.728979 ], [ -24.257812, 70.728979 ], [ -24.257812, 70.844673 ], [ -24.609375, 70.844673 ], [ -24.609375, 70.959697 ], [ -24.960938, 70.959697 ], [ -24.960938, 71.187754 ], [ -25.312500, 71.187754 ], [ -25.312500, 71.300793 ], [ -25.664062, 71.300793 ], [ -25.664062, 71.074056 ], [ -25.312500, 71.074056 ], [ -25.312500, 70.612614 ], [ -25.664062, 70.612614 ], [ -25.664062, 70.495574 ], [ -26.015625, 70.495574 ], [ -26.015625, 70.259452 ], [ -25.312500, 70.259452 ], [ -25.312500, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 70.020587 ], [ -22.851562, 70.020587 ], [ -22.851562, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.778952 ], [ -23.554688, 69.778952 ], [ -23.554688, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.534518 ], [ -24.257812, 69.534518 ], [ -24.257812, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.287257 ], [ -24.960938, 69.287257 ], [ -24.960938, 69.162558 ], [ -25.312500, 69.162558 ], [ -25.312500, 69.037142 ], [ -26.015625, 69.037142 ], [ -26.015625, 68.911005 ], [ -26.367188, 68.911005 ], [ -26.367188, 68.784144 ], [ -26.718750, 68.784144 ], [ -26.718750, 68.656555 ], [ -27.421875, 68.656555 ], [ -27.421875, 68.528235 ], [ -28.125000, 68.528235 ], [ -28.125000, 68.399180 ], [ -28.828125, 68.399180 ], [ -28.828125, 68.269387 ], [ -29.882812, 68.269387 ], [ -29.882812, 68.138852 ], [ -31.640625, 68.138852 ], [ -31.640625, 68.007571 ], [ -31.992188, 68.007571 ], [ -31.992188, 67.875541 ], [ -32.343750, 67.875541 ], [ -32.343750, 67.742759 ], [ -32.695312, 67.742759 ], [ -32.695312, 67.609221 ], [ -33.046875, 67.609221 ], [ -33.046875, 67.339861 ], [ -33.398438, 67.339861 ], [ -33.398438, 67.067433 ], [ -33.750000, 67.067433 ], [ -33.750000, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.513260 ], [ -34.453125, 66.513260 ], [ -34.453125, 66.372755 ], [ -34.804688, 66.372755 ], [ -34.804688, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.089364 ], [ -35.859375, 66.089364 ], [ -35.859375, 65.946472 ], [ -36.914062, 65.946472 ], [ -36.914062, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.372755 ], [ -53.437500, 66.372755 ], [ -53.437500, 66.791909 ], [ -53.789062, 66.791909 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.339861 ], [ -53.789062, 67.339861 ], [ -53.789062, 67.742759 ], [ -53.437500, 67.742759 ], [ -53.437500, 68.138852 ], [ -53.085938, 68.138852 ], [ -53.085938, 68.399180 ], [ -52.734375, 68.399180 ], [ -52.734375, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.656555 ], [ -51.328125, 68.656555 ], [ -51.328125, 68.911005 ], [ -50.976562, 68.911005 ], [ -50.976562, 69.778952 ], [ -51.328125, 69.778952 ], [ -51.328125, 69.657086 ], [ -51.679688, 69.657086 ], [ -51.679688, 69.534518 ], [ -52.031250, 69.534518 ], [ -52.031250, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.287257 ], [ -53.789062, 69.287257 ], [ -53.789062, 69.411242 ], [ -54.492188, 69.411242 ], [ -54.492188, 69.534518 ], [ -54.843750, 69.534518 ], [ -54.843750, 70.495574 ], [ -54.492188, 70.495574 ], [ -54.492188, 70.844673 ], [ -53.085938, 70.844673 ], [ -53.085938, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.844673 ], [ -52.382812, 70.844673 ], [ -52.382812, 70.959697 ], [ -52.734375, 70.959697 ], [ -52.734375, 71.074056 ], [ -53.085938, 71.074056 ], [ -53.085938, 71.187754 ], [ -53.437500, 71.187754 ], [ -53.437500, 71.300793 ], [ -53.789062, 71.300793 ], [ -53.789062, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.524909 ], [ -55.898438, 71.524909 ], [ -55.898438, 71.746432 ], [ -55.546875, 71.746432 ], [ -55.546875, 72.073911 ], [ -55.195312, 72.073911 ], [ -55.195312, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.711903 ], [ -55.195312, 72.711903 ], [ -55.195312, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.226700 ], [ -55.898438, 73.226700 ], [ -55.898438, 73.428424 ], [ -56.250000, 73.428424 ], [ -56.250000, 73.726595 ], [ -56.601562, 73.726595 ], [ -56.601562, 74.116047 ], [ -56.953125, 74.116047 ], [ -56.953125, 74.496413 ], [ -57.304688, 74.496413 ], [ -57.304688, 74.683250 ], [ -57.656250, 74.683250 ], [ -57.656250, 74.775843 ], [ -58.007812, 74.775843 ], [ -58.007812, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.050354 ], [ -58.710938, 75.050354 ], [ -58.710938, 75.497157 ], [ -59.062500, 75.497157 ], [ -59.062500, 75.584937 ], [ -59.414062, 75.584937 ], [ -59.414062, 75.672197 ], [ -59.765625, 75.672197 ], [ -59.765625, 75.758940 ], [ -60.117188, 75.758940 ], [ -60.117188, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.100796 ], [ -62.578125, 76.100796 ], [ -62.578125, 76.184995 ], [ -64.335938, 76.184995 ], [ -64.335938, 76.100796 ], [ -68.906250, 76.100796 ], [ -68.906250, 76.184995 ], [ -69.257812, 76.184995 ], [ -69.257812, 76.268695 ], [ -69.609375, 76.268695 ], [ -69.609375, 76.351896 ], [ -69.960938, 76.351896 ], [ -69.960938, 76.516819 ], [ -70.312500, 76.516819 ], [ -70.312500, 76.679785 ], [ -70.664062, 76.679785 ], [ -70.664062, 76.760541 ], [ -71.015625, 76.760541 ], [ -71.015625, 76.920614 ], [ -71.367188, 76.920614 ], [ -71.367188, 76.999935 ], [ -71.015625, 76.999935 ], [ -71.015625, 77.078784 ], [ -70.312500, 77.078784 ], [ -70.312500, 77.157163 ], [ -69.609375, 77.157163 ], [ -69.609375, 77.235074 ], [ -68.906250, 77.235074 ], [ -68.906250, 77.312520 ], [ -67.500000, 77.312520 ], [ -67.500000, 77.389504 ], [ -67.851562, 77.389504 ], [ -67.851562, 77.466028 ], [ -69.257812, 77.466028 ], [ -69.257812, 77.542096 ], [ -70.664062, 77.542096 ], [ -70.664062, 77.617709 ], [ -71.367188, 77.617709 ], [ -71.367188, 77.692870 ], [ -71.718750, 77.692870 ], [ -71.718750, 77.767582 ], [ -72.070312, 77.767582 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.420193 ], [ -72.773438, 78.420193 ], [ -72.773438, 78.490552 ], [ -72.070312, 78.490552 ], [ -72.070312, 78.560488 ], [ -71.718750, 78.560488 ], [ -71.718750, 78.630006 ], [ -71.015625, 78.630006 ], [ -71.015625, 78.699106 ], [ -70.312500, 78.699106 ], [ -70.312500, 78.767792 ], [ -69.960938, 78.767792 ], [ -69.960938, 78.836065 ], [ -69.257812, 78.836065 ], [ -69.257812, 78.903929 ], [ -68.906250, 78.903929 ], [ -68.906250, 78.971386 ], [ -68.203125, 78.971386 ], [ -68.203125, 79.038437 ], [ -67.851562, 79.038437 ], [ -67.851562, 79.105086 ], [ -67.148438, 79.105086 ], [ -67.148438, 79.171335 ], [ -66.796875, 79.171335 ], [ -66.796875, 79.237185 ], [ -66.445312, 79.237185 ], [ -66.445312, 79.302640 ], [ -65.742188, 79.302640 ], [ -65.742188, 79.560546 ], [ -65.390625, 79.560546 ], [ -65.390625, 79.749932 ], [ -65.742188, 79.749932 ], [ -65.742188, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.935918 ], [ -67.148438, 79.935918 ], [ -67.148438, 79.997168 ], [ -67.500000, 79.997168 ], [ -67.500000, 80.058050 ], [ -67.851562, 80.058050 ], [ -67.851562, 80.178713 ], [ -67.500000, 80.178713 ], [ -67.500000, 80.415707 ], [ -67.148438, 80.415707 ], [ -67.148438, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.589727 ], [ -66.445312, 80.589727 ], [ -66.445312, 80.703997 ], [ -66.093750, 80.703997 ], [ -66.093750, 80.760615 ], [ -65.742188, 80.760615 ], [ -65.742188, 80.816891 ], [ -65.390625, 80.816891 ], [ -65.390625, 80.872827 ], [ -65.039062, 80.872827 ], [ -65.039062, 80.928426 ], [ -64.687500, 80.928426 ], [ -64.687500, 81.038617 ], [ -64.335938, 81.038617 ], [ -64.335938, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.147481 ], [ -63.632812, 81.147481 ], [ -63.632812, 81.201420 ], [ -62.929688, 81.201420 ], [ -62.929688, 81.255032 ], [ -62.226562, 81.255032 ], [ -62.226562, 81.518272 ], [ -62.578125, 81.518272 ], [ -62.578125, 81.773644 ], [ -62.226562, 81.773644 ], [ -62.226562, 81.823794 ], [ -61.523438, 81.823794 ], [ -61.523438, 81.873641 ], [ -61.171875, 81.873641 ], [ -61.171875, 81.923186 ], [ -60.820312, 81.923186 ], [ -60.820312, 81.972431 ], [ -60.117188, 81.972431 ], [ -60.117188, 82.021378 ], [ -59.414062, 82.021378 ], [ -59.414062, 82.070028 ], [ -58.710938, 82.070028 ], [ -58.710938, 82.118384 ], [ -58.007812, 82.118384 ], [ -58.007812, 82.166446 ], [ -57.304688, 82.166446 ], [ -57.304688, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.873641 ], [ -52.734375, 81.873641 ], [ -52.734375, 81.972431 ], [ -52.382812, 81.972431 ], [ -52.382812, 82.021378 ], [ -52.031250, 82.021378 ], [ -52.031250, 82.118384 ], [ -51.679688, 82.118384 ], [ -51.679688, 82.166446 ], [ -51.328125, 82.166446 ], [ -51.328125, 82.261699 ], [ -50.976562, 82.261699 ], [ -50.976562, 82.308893 ], [ -50.625000, 82.308893 ], [ -50.625000, 82.402423 ], [ -49.921875, 82.402423 ], [ -49.921875, 82.355800 ], [ -49.570312, 82.355800 ], [ -49.570312, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.214217 ], [ -48.867188, 82.214217 ], [ -48.867188, 82.166446 ], [ -48.515625, 82.166446 ], [ -48.515625, 82.070028 ], [ -48.164062, 82.070028 ], [ -48.164062, 82.021378 ], [ -47.460938, 82.021378 ], [ -47.460938, 81.972431 ], [ -46.757812, 81.972431 ], [ -46.757812, 81.923186 ], [ -46.406250, 81.923186 ], [ -46.406250, 81.873641 ], [ -46.054688, 81.873641 ], [ -46.054688, 81.823794 ], [ -45.703125, 81.823794 ], [ -45.703125, 81.773644 ], [ -45.351562, 81.773644 ] ], [ [ -22.851562, 81.201420 ], [ -23.203125, 81.201420 ], [ -23.203125, 81.147481 ], [ -22.851562, 81.147481 ], [ -22.851562, 81.201420 ] ], [ [ -52.031250, 70.728979 ], [ -52.031250, 70.612614 ], [ -51.679688, 70.612614 ], [ -51.679688, 70.728979 ], [ -52.031250, 70.728979 ] ], [ [ -45.351562, 81.773644 ], [ -45.351562, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.773644 ], [ -45.351562, 81.773644 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -46.054688, 81.923186 ], [ -46.054688, 82.021378 ], [ -46.406250, 82.021378 ], [ -46.406250, 82.070028 ], [ -46.757812, 82.070028 ], [ -46.757812, 82.166446 ], [ -47.109375, 82.166446 ], [ -47.109375, 82.631333 ], [ -46.757812, 82.631333 ], [ -46.757812, 82.720964 ], [ -46.406250, 82.720964 ], [ -46.406250, 82.765373 ], [ -46.054688, 82.765373 ], [ -46.054688, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.896987 ], [ -45.351562, 82.896987 ], [ -45.351562, 82.940327 ], [ -45.000000, 82.940327 ], [ -45.000000, 83.026219 ], [ -44.648438, 83.026219 ], [ -44.648438, 83.068774 ], [ -44.296875, 83.068774 ], [ -44.296875, 83.111071 ], [ -43.945312, 83.111071 ], [ -43.945312, 83.194896 ], [ -43.593750, 83.194896 ], [ -43.593750, 83.236426 ], [ -42.187500, 83.236426 ], [ -42.187500, 83.194896 ], [ -40.078125, 83.194896 ], [ -40.078125, 83.236426 ], [ -39.726562, 83.236426 ], [ -39.726562, 83.318733 ], [ -39.375000, 83.318733 ], [ -39.375000, 83.400042 ], [ -39.023438, 83.400042 ], [ -39.023438, 83.480366 ], [ -38.671875, 83.480366 ], [ -38.671875, 83.559717 ], [ -37.968750, 83.559717 ], [ -37.968750, 83.599031 ], [ -36.562500, 83.599031 ], [ -36.562500, 83.638106 ], [ -35.507812, 83.638106 ], [ -35.507812, 83.676943 ], [ -34.453125, 83.676943 ], [ -34.453125, 83.638106 ], [ -32.343750, 83.638106 ], [ -32.343750, 83.599031 ], [ -30.585938, 83.599031 ], [ -30.585938, 83.559717 ], [ -28.476562, 83.559717 ], [ -28.476562, 83.520162 ], [ -27.421875, 83.520162 ], [ -27.421875, 83.480366 ], [ -27.070312, 83.480366 ], [ -27.070312, 83.440326 ], [ -26.718750, 83.440326 ], [ -26.718750, 83.400042 ], [ -26.367188, 83.400042 ], [ -26.367188, 83.359511 ], [ -26.015625, 83.359511 ], [ -26.015625, 83.318733 ], [ -25.664062, 83.318733 ], [ -25.664062, 83.277705 ], [ -25.312500, 83.277705 ], [ -25.312500, 83.236426 ], [ -24.960938, 83.236426 ], [ -24.960938, 83.194896 ], [ -24.609375, 83.194896 ], [ -24.609375, 83.153111 ], [ -24.257812, 83.153111 ], [ -24.257812, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.809511 ], [ -21.445312, 82.809511 ], [ -21.445312, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.720964 ], [ -21.445312, 82.720964 ], [ -21.445312, 82.631333 ], [ -21.796875, 82.631333 ], [ -21.796875, 82.540604 ], [ -22.148438, 82.540604 ], [ -22.148438, 82.448764 ], [ -22.500000, 82.448764 ], [ -22.500000, 82.355800 ], [ -24.609375, 82.355800 ], [ -24.609375, 82.308893 ], [ -27.773438, 82.308893 ], [ -27.773438, 82.261699 ], [ -30.585938, 82.261699 ], [ -30.585938, 82.214217 ], [ -31.992188, 82.214217 ], [ -31.992188, 82.118384 ], [ -31.640625, 82.118384 ], [ -31.640625, 82.021378 ], [ -30.937500, 82.021378 ], [ -30.937500, 82.070028 ], [ -29.531250, 82.070028 ], [ -29.531250, 82.118384 ], [ -28.476562, 82.118384 ], [ -28.476562, 82.166446 ], [ -28.125000, 82.166446 ], [ -28.125000, 82.118384 ], [ -27.773438, 82.118384 ], [ -27.773438, 82.070028 ], [ -27.070312, 82.070028 ], [ -27.070312, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.972431 ], [ -26.367188, 81.972431 ], [ -26.367188, 81.923186 ], [ -25.664062, 81.923186 ], [ -25.664062, 81.873641 ], [ -25.312500, 81.873641 ], [ -25.312500, 81.823794 ], [ -24.609375, 81.823794 ], [ -24.609375, 81.873641 ], [ -24.257812, 81.873641 ], [ -24.257812, 81.972431 ], [ -23.906250, 81.972431 ], [ -23.906250, 82.021378 ], [ -23.554688, 82.021378 ], [ -23.554688, 82.070028 ], [ -23.203125, 82.070028 ], [ -23.203125, 82.021378 ], [ -22.851562, 82.021378 ], [ -22.851562, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.823794 ], [ -22.148438, 81.823794 ], [ -22.148438, 81.672424 ], [ -22.500000, 81.672424 ], [ -22.500000, 81.466261 ], [ -22.851562, 81.466261 ], [ -22.851562, 81.255032 ], [ -22.500000, 81.255032 ], [ -22.500000, 81.308321 ], [ -22.148438, 81.308321 ], [ -22.148438, 81.361287 ], [ -21.796875, 81.361287 ], [ -21.796875, 81.413933 ], [ -21.445312, 81.413933 ], [ -21.445312, 81.466261 ], [ -21.093750, 81.466261 ], [ -21.093750, 81.518272 ], [ -20.742188, 81.518272 ], [ -20.742188, 81.569968 ], [ -20.039062, 81.569968 ], [ -20.039062, 81.621352 ], [ -19.335938, 81.621352 ], [ -19.335938, 81.672424 ], [ -18.632812, 81.672424 ], [ -18.632812, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.773644 ], [ -17.226562, 81.773644 ], [ -17.226562, 81.823794 ], [ -16.523438, 81.823794 ], [ -16.523438, 81.873641 ], [ -15.117188, 81.873641 ], [ -15.117188, 81.823794 ], [ -14.414062, 81.823794 ], [ -14.414062, 81.773644 ], [ -13.710938, 81.773644 ], [ -13.710938, 81.723188 ], [ -13.007812, 81.723188 ], [ -13.007812, 81.621352 ], [ -12.656250, 81.621352 ], [ -12.656250, 81.413933 ], [ -12.304688, 81.413933 ], [ -12.304688, 81.255032 ], [ -12.656250, 81.255032 ], [ -12.656250, 81.201420 ], [ -13.007812, 81.201420 ], [ -13.007812, 81.147481 ], [ -13.359375, 81.147481 ], [ -13.359375, 81.093214 ], [ -13.710938, 81.093214 ], [ -13.710938, 81.038617 ], [ -14.062500, 81.038617 ], [ -14.062500, 80.983688 ], [ -14.414062, 80.983688 ], [ -14.414062, 80.872827 ], [ -14.765625, 80.872827 ], [ -14.765625, 80.816891 ], [ -15.117188, 80.816891 ], [ -15.117188, 80.760615 ], [ -15.468750, 80.760615 ], [ -15.468750, 80.703997 ], [ -15.820312, 80.703997 ], [ -15.820312, 80.647035 ], [ -16.171875, 80.647035 ], [ -16.171875, 80.589727 ], [ -16.523438, 80.589727 ], [ -16.523438, 80.474065 ], [ -16.875000, 80.474065 ], [ -16.875000, 80.356995 ], [ -17.226562, 80.356995 ], [ -17.226562, 80.297927 ], [ -18.281250, 80.297927 ], [ -18.281250, 80.238501 ], [ -19.687500, 80.238501 ], [ -19.687500, 80.178713 ], [ -17.929688, 80.178713 ], [ -17.929688, 80.058050 ], [ -18.281250, 80.058050 ], [ -18.281250, 79.812302 ], [ -18.632812, 79.812302 ], [ -18.632812, 79.560546 ], [ -18.984375, 79.560546 ], [ -18.984375, 79.302640 ], [ -19.335938, 79.302640 ], [ -19.335938, 79.105086 ], [ -19.687500, 79.105086 ], [ -19.687500, 78.836065 ], [ -20.039062, 78.836065 ], [ -20.039062, 78.206563 ], [ -19.687500, 78.206563 ], [ -19.687500, 77.542096 ], [ -19.335938, 77.542096 ], [ -19.335938, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.078784 ], [ -18.632812, 77.078784 ], [ -18.632812, 76.999935 ], [ -20.039062, 76.999935 ], [ -20.039062, 76.920614 ], [ -20.390625, 76.920614 ], [ -20.390625, 76.840816 ], [ -21.093750, 76.840816 ], [ -21.093750, 76.760541 ], [ -21.445312, 76.760541 ], [ -21.445312, 76.679785 ], [ -21.796875, 76.679785 ], [ -21.796875, 76.598545 ], [ -21.445312, 76.598545 ], [ -21.445312, 76.434604 ], [ -21.093750, 76.434604 ], [ -21.093750, 76.351896 ], [ -20.742188, 76.351896 ], [ -20.742188, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.100796 ], [ -20.039062, 76.100796 ], [ -20.039062, 75.672197 ], [ -19.687500, 75.672197 ], [ -19.687500, 75.320025 ], [ -20.039062, 75.320025 ], [ -20.039062, 75.230667 ], [ -20.742188, 75.230667 ], [ -20.742188, 75.050354 ], [ -20.390625, 75.050354 ], [ -20.390625, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.402163 ], [ -19.687500, 74.402163 ], [ -19.687500, 74.307353 ], [ -21.796875, 74.307353 ], [ -21.796875, 74.211983 ], [ -21.445312, 74.211983 ], [ -21.445312, 74.019543 ], [ -21.093750, 74.019543 ], [ -21.093750, 73.824820 ], [ -20.742188, 73.824820 ], [ -20.742188, 73.627789 ], [ -21.093750, 73.627789 ], [ -21.093750, 73.428424 ], [ -21.796875, 73.428424 ], [ -21.796875, 73.327858 ], [ -23.906250, 73.327858 ], [ -23.906250, 73.226700 ], [ -23.554688, 73.226700 ], [ -23.554688, 73.022592 ], [ -23.203125, 73.022592 ], [ -23.203125, 72.919635 ], [ -22.851562, 72.919635 ], [ -22.851562, 72.711903 ], [ -22.500000, 72.711903 ], [ -22.500000, 72.289067 ], [ -23.203125, 72.289067 ], [ -23.203125, 72.395706 ], [ -23.906250, 72.395706 ], [ -23.906250, 72.501722 ], [ -24.960938, 72.501722 ], [ -24.960938, 72.289067 ], [ -24.257812, 72.289067 ], [ -24.257812, 72.181804 ], [ -23.554688, 72.181804 ], [ -23.554688, 72.073911 ], [ -23.203125, 72.073911 ], [ -23.203125, 71.856229 ], [ -22.851562, 71.856229 ], [ -22.851562, 71.746432 ], [ -22.500000, 71.746432 ], [ -22.500000, 71.524909 ], [ -22.148438, 71.524909 ], [ -22.148438, 71.074056 ], [ -21.796875, 71.074056 ], [ -21.796875, 70.728979 ], [ -22.148438, 70.728979 ], [ -22.148438, 70.612614 ], [ -22.851562, 70.612614 ], [ -22.851562, 70.495574 ], [ -23.906250, 70.495574 ], [ -23.906250, 70.728979 ], [ -24.257812, 70.728979 ], [ -24.257812, 70.844673 ], [ -24.609375, 70.844673 ], [ -24.609375, 70.959697 ], [ -24.960938, 70.959697 ], [ -24.960938, 71.187754 ], [ -25.312500, 71.187754 ], [ -25.312500, 70.728979 ], [ -25.664062, 70.728979 ], [ -25.664062, 70.495574 ], [ -26.015625, 70.495574 ], [ -26.015625, 70.259452 ], [ -23.554688, 70.259452 ], [ -23.554688, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 70.020587 ], [ -22.851562, 70.020587 ], [ -22.851562, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.778952 ], [ -23.554688, 69.778952 ], [ -23.554688, 69.657086 ], [ -24.257812, 69.657086 ], [ -24.257812, 69.534518 ], [ -24.609375, 69.534518 ], [ -24.609375, 69.411242 ], [ -24.960938, 69.411242 ], [ -24.960938, 69.287257 ], [ -25.312500, 69.287257 ], [ -25.312500, 69.162558 ], [ -25.664062, 69.162558 ], [ -25.664062, 69.037142 ], [ -26.015625, 69.037142 ], [ -26.015625, 68.911005 ], [ -26.718750, 68.911005 ], [ -26.718750, 68.784144 ], [ -27.070312, 68.784144 ], [ -27.070312, 68.656555 ], [ -27.421875, 68.656555 ], [ -27.421875, 68.528235 ], [ -28.125000, 68.528235 ], [ -28.125000, 68.399180 ], [ -29.179688, 68.399180 ], [ -29.179688, 68.269387 ], [ -30.234375, 68.269387 ], [ -30.234375, 68.138852 ], [ -31.992188, 68.138852 ], [ -31.992188, 68.007571 ], [ -32.343750, 68.007571 ], [ -32.343750, 67.875541 ], [ -32.695312, 67.875541 ], [ -32.695312, 67.742759 ], [ -33.046875, 67.742759 ], [ -33.046875, 67.609221 ], [ -33.398438, 67.609221 ], [ -33.398438, 67.339861 ], [ -33.750000, 67.339861 ], [ -33.750000, 67.067433 ], [ -34.101562, 67.067433 ], [ -34.101562, 66.791909 ], [ -34.453125, 66.791909 ], [ -34.453125, 66.652977 ], [ -34.804688, 66.652977 ], [ -34.804688, 66.513260 ], [ -35.156250, 66.513260 ], [ -35.156250, 66.372755 ], [ -35.859375, 66.372755 ], [ -35.859375, 66.231457 ], [ -36.210938, 66.231457 ], [ -36.210938, 66.089364 ], [ -36.562500, 66.089364 ], [ -36.562500, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 65.946472 ], [ -53.789062, 65.946472 ], [ -53.789062, 66.513260 ], [ -53.437500, 66.513260 ], [ -53.437500, 66.930060 ], [ -53.789062, 66.930060 ], [ -53.789062, 67.067433 ], [ -54.140625, 67.067433 ], [ -54.140625, 67.339861 ], [ -53.789062, 67.339861 ], [ -53.789062, 67.742759 ], [ -53.437500, 67.742759 ], [ -53.437500, 68.138852 ], [ -53.085938, 68.138852 ], [ -53.085938, 68.399180 ], [ -52.734375, 68.399180 ], [ -52.734375, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.656555 ], [ -51.679688, 68.656555 ], [ -51.679688, 68.911005 ], [ -51.328125, 68.911005 ], [ -51.328125, 69.534518 ], [ -50.976562, 69.534518 ], [ -50.976562, 69.900118 ], [ -51.328125, 69.900118 ], [ -51.328125, 69.778952 ], [ -51.679688, 69.778952 ], [ -51.679688, 69.657086 ], [ -52.031250, 69.657086 ], [ -52.031250, 69.534518 ], [ -52.734375, 69.534518 ], [ -52.734375, 69.411242 ], [ -53.437500, 69.411242 ], [ -53.437500, 69.287257 ], [ -54.140625, 69.287257 ], [ -54.140625, 69.411242 ], [ -54.492188, 69.411242 ], [ -54.492188, 69.534518 ], [ -54.843750, 69.534518 ], [ -54.843750, 70.612614 ], [ -54.492188, 70.612614 ], [ -54.492188, 70.844673 ], [ -53.085938, 70.844673 ], [ -53.085938, 70.728979 ], [ -52.382812, 70.728979 ], [ -52.382812, 70.959697 ], [ -52.734375, 70.959697 ], [ -52.734375, 71.074056 ], [ -53.085938, 71.074056 ], [ -53.085938, 71.187754 ], [ -53.437500, 71.187754 ], [ -53.437500, 71.300793 ], [ -53.789062, 71.300793 ], [ -53.789062, 71.524909 ], [ -54.843750, 71.524909 ], [ -54.843750, 71.413177 ], [ -55.546875, 71.413177 ], [ -55.546875, 71.635993 ], [ -55.898438, 71.635993 ], [ -55.898438, 71.856229 ], [ -55.546875, 71.856229 ], [ -55.546875, 72.181804 ], [ -55.195312, 72.181804 ], [ -55.195312, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.711903 ], [ -55.195312, 72.711903 ], [ -55.195312, 72.919635 ], [ -55.546875, 72.919635 ], [ -55.546875, 73.124945 ], [ -55.898438, 73.124945 ], [ -55.898438, 73.528399 ], [ -56.250000, 73.528399 ], [ -56.250000, 73.824820 ], [ -56.601562, 73.824820 ], [ -56.601562, 74.116047 ], [ -56.953125, 74.116047 ], [ -56.953125, 74.307353 ], [ -57.304688, 74.307353 ], [ -57.304688, 74.590108 ], [ -57.656250, 74.590108 ], [ -57.656250, 74.775843 ], [ -58.007812, 74.775843 ], [ -58.007812, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.050354 ], [ -58.710938, 75.050354 ], [ -58.710938, 75.584937 ], [ -59.062500, 75.584937 ], [ -59.062500, 75.672197 ], [ -59.414062, 75.672197 ], [ -59.414062, 75.758940 ], [ -59.765625, 75.758940 ], [ -59.765625, 75.845169 ], [ -60.468750, 75.845169 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.100796 ], [ -61.523438, 76.100796 ], [ -61.523438, 76.184995 ], [ -67.148438, 76.184995 ], [ -67.148438, 76.100796 ], [ -68.906250, 76.100796 ], [ -68.906250, 76.184995 ], [ -69.257812, 76.184995 ], [ -69.257812, 76.268695 ], [ -69.609375, 76.268695 ], [ -69.609375, 76.351896 ], [ -69.960938, 76.351896 ], [ -69.960938, 76.434604 ], [ -70.312500, 76.434604 ], [ -70.312500, 76.598545 ], [ -70.664062, 76.598545 ], [ -70.664062, 76.760541 ], [ -71.015625, 76.760541 ], [ -71.015625, 76.840816 ], [ -71.367188, 76.840816 ], [ -71.367188, 76.999935 ], [ -71.718750, 76.999935 ], [ -71.718750, 77.078784 ], [ -71.015625, 77.078784 ], [ -71.015625, 77.157163 ], [ -70.312500, 77.157163 ], [ -70.312500, 77.235074 ], [ -69.609375, 77.235074 ], [ -69.609375, 77.312520 ], [ -68.906250, 77.312520 ], [ -68.906250, 77.389504 ], [ -67.500000, 77.389504 ], [ -67.500000, 77.466028 ], [ -68.554688, 77.466028 ], [ -68.554688, 77.542096 ], [ -69.960938, 77.542096 ], [ -69.960938, 77.617709 ], [ -71.015625, 77.617709 ], [ -71.015625, 77.692870 ], [ -71.718750, 77.692870 ], [ -71.718750, 77.767582 ], [ -72.070312, 77.767582 ], [ -72.070312, 77.841848 ], [ -72.773438, 77.841848 ], [ -72.773438, 77.915669 ], [ -73.125000, 77.915669 ], [ -73.125000, 77.989049 ], [ -73.476562, 77.989049 ], [ -73.476562, 78.490552 ], [ -73.125000, 78.490552 ], [ -73.125000, 78.560488 ], [ -72.421875, 78.560488 ], [ -72.421875, 78.630006 ], [ -72.070312, 78.630006 ], [ -72.070312, 78.699106 ], [ -71.367188, 78.699106 ], [ -71.367188, 78.767792 ], [ -70.664062, 78.767792 ], [ -70.664062, 78.836065 ], [ -70.312500, 78.836065 ], [ -70.312500, 78.903929 ], [ -69.609375, 78.903929 ], [ -69.609375, 78.971386 ], [ -69.257812, 78.971386 ], [ -69.257812, 79.038437 ], [ -68.554688, 79.038437 ], [ -68.554688, 79.105086 ], [ -68.203125, 79.105086 ], [ -68.203125, 79.171335 ], [ -67.500000, 79.171335 ], [ -67.500000, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.302640 ], [ -66.445312, 79.302640 ], [ -66.445312, 79.367701 ], [ -65.742188, 79.367701 ], [ -65.742188, 79.624056 ], [ -65.390625, 79.624056 ], [ -65.390625, 79.812302 ], [ -65.742188, 79.812302 ], [ -65.742188, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.935918 ], [ -67.148438, 79.935918 ], [ -67.148438, 79.997168 ], [ -67.500000, 79.997168 ], [ -67.500000, 80.058050 ], [ -68.203125, 80.058050 ], [ -68.203125, 80.178713 ], [ -67.851562, 80.178713 ], [ -67.851562, 80.415707 ], [ -67.500000, 80.415707 ], [ -67.500000, 80.532071 ], [ -67.148438, 80.532071 ], [ -67.148438, 80.589727 ], [ -66.796875, 80.589727 ], [ -66.796875, 80.703997 ], [ -66.445312, 80.703997 ], [ -66.445312, 80.760615 ], [ -66.093750, 80.760615 ], [ -66.093750, 80.816891 ], [ -65.742188, 80.816891 ], [ -65.742188, 80.928426 ], [ -65.390625, 80.928426 ], [ -65.390625, 80.983688 ], [ -65.039062, 80.983688 ], [ -65.039062, 81.038617 ], [ -64.687500, 81.038617 ], [ -64.687500, 81.147481 ], [ -64.335938, 81.147481 ], [ -64.335938, 81.201420 ], [ -63.984375, 81.201420 ], [ -63.984375, 81.255032 ], [ -63.281250, 81.255032 ], [ -63.281250, 81.308321 ], [ -62.578125, 81.308321 ], [ -62.578125, 81.569968 ], [ -62.929688, 81.569968 ], [ -62.929688, 81.773644 ], [ -62.578125, 81.773644 ], [ -62.578125, 81.823794 ], [ -62.226562, 81.823794 ], [ -62.226562, 81.873641 ], [ -61.875000, 81.873641 ], [ -61.875000, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 81.972431 ], [ -60.820312, 81.972431 ], [ -60.820312, 82.021378 ], [ -60.468750, 82.021378 ], [ -60.468750, 82.070028 ], [ -59.765625, 82.070028 ], [ -59.765625, 82.118384 ], [ -58.710938, 82.118384 ], [ -58.710938, 82.166446 ], [ -57.656250, 82.166446 ], [ -57.656250, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.166446 ], [ -53.789062, 82.166446 ], [ -53.789062, 82.070028 ], [ -53.437500, 82.070028 ], [ -53.437500, 81.972431 ], [ -53.085938, 81.972431 ], [ -53.085938, 81.923186 ], [ -52.734375, 81.923186 ], [ -52.734375, 82.021378 ], [ -52.382812, 82.021378 ], [ -52.382812, 82.070028 ], [ -52.031250, 82.070028 ], [ -52.031250, 82.166446 ], [ -51.679688, 82.166446 ], [ -51.679688, 82.261699 ], [ -51.328125, 82.261699 ], [ -51.328125, 82.308893 ], [ -50.976562, 82.308893 ], [ -50.976562, 82.402423 ], [ -50.273438, 82.402423 ], [ -50.273438, 82.355800 ], [ -49.921875, 82.355800 ], [ -49.921875, 82.308893 ], [ -49.570312, 82.308893 ], [ -49.570312, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.166446 ], [ -48.867188, 82.166446 ], [ -48.867188, 82.118384 ], [ -48.515625, 82.118384 ], [ -48.515625, 82.070028 ], [ -47.812500, 82.070028 ], [ -47.812500, 82.021378 ], [ -46.757812, 82.021378 ], [ -46.757812, 81.972431 ], [ -46.406250, 81.972431 ], [ -46.406250, 81.923186 ], [ -46.054688, 81.923186 ] ], [ [ -25.312500, 71.187754 ], [ -25.312500, 71.413177 ], [ -25.664062, 71.413177 ], [ -25.664062, 71.187754 ], [ -25.312500, 71.187754 ] ], [ [ -22.851562, 81.255032 ], [ -23.203125, 81.255032 ], [ -23.203125, 81.201420 ], [ -22.851562, 81.201420 ], [ -22.851562, 81.255032 ] ], [ [ -45.351562, 81.773644 ], [ -45.351562, 81.723188 ], [ -45.000000, 81.723188 ], [ -45.000000, 81.773644 ], [ -45.351562, 81.773644 ] ], [ [ -52.382812, 70.728979 ], [ -52.382812, 70.612614 ], [ -52.031250, 70.612614 ], [ -52.031250, 70.728979 ], [ -52.382812, 70.728979 ] ], [ [ -45.351562, 81.773644 ], [ -45.351562, 81.823794 ], [ -45.703125, 81.823794 ], [ -45.703125, 81.773644 ], [ -45.351562, 81.773644 ] ], [ [ -46.054688, 81.923186 ], [ -46.054688, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.923186 ], [ -46.054688, 81.923186 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.372755 ], [ -22.148438, 66.231457 ], [ -21.796875, 66.231457 ], [ -21.796875, 66.089364 ], [ -21.445312, 66.089364 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -23.906250, 65.802776 ], [ -23.906250, 66.089364 ], [ -23.554688, 66.089364 ], [ -23.554688, 66.231457 ], [ -22.500000, 66.231457 ], [ -22.500000, 66.372755 ], [ -22.148438, 66.372755 ] ] ], [ [ [ -20.039062, 65.802776 ], [ -20.039062, 65.946472 ], [ -19.335938, 65.946472 ], [ -19.335938, 66.089364 ], [ -18.281250, 66.089364 ], [ -18.281250, 65.946472 ], [ -17.578125, 65.946472 ], [ -17.578125, 66.089364 ], [ -17.226562, 66.089364 ], [ -17.226562, 66.231457 ], [ -16.523438, 66.231457 ], [ -16.523438, 66.372755 ], [ -16.171875, 66.372755 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ], [ -14.414062, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.802776 ], [ -20.039062, 65.802776 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.513260 ], [ -22.148438, 66.372755 ], [ -21.796875, 66.372755 ], [ -21.796875, 66.231457 ], [ -21.445312, 66.231457 ], [ -21.445312, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.802776 ], [ -24.257812, 65.802776 ], [ -24.257812, 66.089364 ], [ -23.906250, 66.089364 ], [ -23.906250, 66.372755 ], [ -22.851562, 66.372755 ], [ -22.851562, 66.513260 ], [ -22.148438, 66.513260 ] ] ], [ [ [ -20.039062, 65.802776 ], [ -20.039062, 66.089364 ], [ -19.687500, 66.089364 ], [ -19.687500, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.089364 ], [ -17.578125, 66.089364 ], [ -17.578125, 66.231457 ], [ -17.226562, 66.231457 ], [ -17.226562, 66.372755 ], [ -16.523438, 66.372755 ], [ -16.523438, 66.513260 ], [ -16.171875, 66.513260 ], [ -16.171875, 66.652977 ], [ -15.820312, 66.652977 ], [ -15.820312, 66.513260 ], [ -14.765625, 66.513260 ], [ -14.765625, 65.802776 ], [ -20.039062, 65.802776 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.546875, -65.802776 ], [ 55.546875, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.953125, -66.089364 ], [ 56.953125, -66.231457 ], [ 57.304688, -66.231457 ], [ 57.304688, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.007812, -67.067433 ], [ 58.007812, -67.204032 ], [ 58.359375, -67.204032 ], [ 58.359375, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.742759 ], [ 60.468750, -67.742759 ], [ 60.468750, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -68.007571 ], [ 62.929688, -68.007571 ], [ 62.929688, -67.875541 ], [ 63.281250, -67.875541 ], [ 63.281250, -67.742759 ], [ 63.632812, -67.742759 ], [ 63.632812, -67.474922 ], [ 64.687500, -67.474922 ], [ 64.687500, -67.609221 ], [ 65.390625, -67.609221 ], [ 65.390625, -67.742759 ], [ 66.093750, -67.742759 ], [ 66.093750, -67.875541 ], [ 68.906250, -67.875541 ], [ 68.906250, -68.138852 ], [ 69.257812, -68.138852 ], [ 69.257812, -68.656555 ], [ 69.609375, -68.656555 ], [ 69.609375, -69.778952 ], [ 68.906250, -69.778952 ], [ 68.906250, -69.900118 ], [ 68.554688, -69.900118 ], [ 68.554688, -70.020587 ], [ 68.203125, -70.020587 ], [ 68.203125, -70.259452 ], [ 67.851562, -70.259452 ], [ 67.851562, -70.728979 ], [ 68.906250, -70.728979 ], [ 68.906250, -71.300793 ], [ 68.554688, -71.300793 ], [ 68.554688, -71.524909 ], [ 68.203125, -71.524909 ], [ 68.203125, -71.746432 ], [ 67.851562, -71.746432 ], [ 67.851562, -71.965388 ], [ 68.203125, -71.965388 ], [ 68.203125, -72.181804 ], [ 68.906250, -72.181804 ], [ 68.906250, -72.289067 ], [ 70.312500, -72.289067 ], [ 70.312500, -72.181804 ], [ 71.015625, -72.181804 ], [ 71.015625, -72.073911 ], [ 71.367188, -72.073911 ], [ 71.367188, -71.856229 ], [ 71.718750, -71.856229 ], [ 71.718750, -71.524909 ], [ 72.070312, -71.524909 ], [ 72.070312, -71.187754 ], [ 72.421875, -71.187754 ], [ 72.421875, -70.959697 ], [ 72.773438, -70.959697 ], [ 72.773438, -70.844673 ], [ 73.125000, -70.844673 ], [ 73.125000, -70.612614 ], [ 73.476562, -70.612614 ], [ 73.476562, -70.140364 ], [ 73.828125, -70.140364 ], [ 73.828125, -69.900118 ], [ 74.531250, -69.900118 ], [ 74.531250, -69.778952 ], [ 76.289062, -69.778952 ], [ 76.289062, -69.657086 ], [ 76.992188, -69.657086 ], [ 76.992188, -69.534518 ], [ 77.695312, -69.534518 ], [ 77.695312, -69.287257 ], [ 78.046875, -69.287257 ], [ 78.046875, -68.911005 ], [ 78.398438, -68.911005 ], [ 78.398438, -68.656555 ], [ 78.750000, -68.656555 ], [ 78.750000, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.269387 ], [ 79.453125, -68.269387 ], [ 79.453125, -68.138852 ], [ 80.156250, -68.138852 ], [ 80.156250, -68.007571 ], [ 80.859375, -68.007571 ], [ 80.859375, -67.875541 ], [ 81.210938, -67.875541 ], [ 81.210938, -67.742759 ], [ 81.562500, -67.742759 ], [ 81.562500, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.339861 ], [ 82.617188, -67.339861 ], [ 82.617188, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.339861 ], [ 84.375000, -67.339861 ], [ 84.375000, -67.204032 ], [ 85.429688, -67.204032 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.204032 ], [ 87.187500, -67.204032 ], [ 87.187500, -67.067433 ], [ 87.539062, -67.067433 ], [ 87.539062, -66.652977 ], [ 87.890625, -66.652977 ], [ 87.890625, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.054688, -71.300793 ], [ 1.054688, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -70.959697 ], [ 3.867188, -70.959697 ], [ 3.867188, -70.844673 ], [ 4.570312, -70.844673 ], [ 4.570312, -70.728979 ], [ 5.273438, -70.728979 ], [ 5.273438, -70.612614 ], [ 5.976562, -70.612614 ], [ 5.976562, -70.495574 ], [ 6.679688, -70.495574 ], [ 6.679688, -70.377854 ], [ 7.031250, -70.377854 ], [ 7.031250, -70.259452 ], [ 7.382812, -70.259452 ], [ 7.382812, -70.020587 ], [ 8.085938, -70.020587 ], [ 8.085938, -70.140364 ], [ 9.140625, -70.140364 ], [ 9.140625, -70.020587 ], [ 9.492188, -70.020587 ], [ 9.492188, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.377854 ], [ 10.195312, -70.377854 ], [ 10.195312, -70.612614 ], [ 10.546875, -70.612614 ], [ 10.546875, -70.844673 ], [ 11.250000, -70.844673 ], [ 11.250000, -70.728979 ], [ 11.953125, -70.728979 ], [ 11.953125, -70.495574 ], [ 12.304688, -70.495574 ], [ 12.304688, -70.259452 ], [ 12.656250, -70.259452 ], [ 12.656250, -70.140364 ], [ 13.359375, -70.140364 ], [ 13.359375, -70.020587 ], [ 14.765625, -70.020587 ], [ 14.765625, -70.259452 ], [ 15.117188, -70.259452 ], [ 15.117188, -70.377854 ], [ 15.468750, -70.377854 ], [ 15.468750, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.020587 ], [ 16.523438, -70.020587 ], [ 16.523438, -69.900118 ], [ 19.687500, -69.900118 ], [ 19.687500, -70.020587 ], [ 21.445312, -70.020587 ], [ 21.445312, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.495574 ], [ 22.148438, -70.495574 ], [ 22.148438, -70.728979 ], [ 22.851562, -70.728979 ], [ 22.851562, -70.612614 ], [ 23.554688, -70.612614 ], [ 23.554688, -70.495574 ], [ 27.773438, -70.495574 ], [ 27.773438, -70.377854 ], [ 28.828125, -70.377854 ], [ 28.828125, -70.259452 ], [ 29.531250, -70.259452 ], [ 29.531250, -70.020587 ], [ 29.882812, -70.020587 ], [ 29.882812, -69.900118 ], [ 30.585938, -69.900118 ], [ 30.585938, -69.778952 ], [ 31.640625, -69.778952 ], [ 31.640625, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.534518 ], [ 32.695312, -69.534518 ], [ 32.695312, -69.287257 ], [ 33.046875, -69.287257 ], [ 33.046875, -69.037142 ], [ 33.398438, -69.037142 ], [ 33.398438, -68.656555 ], [ 33.750000, -68.656555 ], [ 33.750000, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.656555 ], [ 34.804688, -68.656555 ], [ 34.804688, -68.911005 ], [ 35.156250, -68.911005 ], [ 35.156250, -69.162558 ], [ 35.859375, -69.162558 ], [ 35.859375, -69.287257 ], [ 36.914062, -69.287257 ], [ 36.914062, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.287257 ], [ 37.617188, -69.287257 ], [ 37.617188, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.778952 ], [ 39.023438, -69.778952 ], [ 39.023438, -69.657086 ], [ 39.726562, -69.657086 ], [ 39.726562, -69.411242 ], [ 40.078125, -69.411242 ], [ 40.078125, -69.162558 ], [ 40.429688, -69.162558 ], [ 40.429688, -69.037142 ], [ 40.781250, -69.037142 ], [ 40.781250, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.784144 ], [ 41.835938, -68.784144 ], [ 41.835938, -68.656555 ], [ 42.187500, -68.656555 ], [ 42.187500, -68.528235 ], [ 42.890625, -68.528235 ], [ 42.890625, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.138852 ], [ 45.000000, -68.138852 ], [ 45.000000, -68.007571 ], [ 45.703125, -68.007571 ], [ 45.703125, -67.875541 ], [ 46.054688, -67.875541 ], [ 46.054688, -67.742759 ], [ 46.406250, -67.742759 ], [ 46.406250, -67.609221 ], [ 46.757812, -67.609221 ], [ 46.757812, -67.742759 ], [ 47.812500, -67.742759 ], [ 47.812500, -67.609221 ], [ 48.164062, -67.609221 ], [ 48.164062, -67.474922 ], [ 48.515625, -67.474922 ], [ 48.515625, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.791909 ], [ 50.976562, -66.791909 ], [ 50.976562, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.382812, -66.231457 ], [ 52.382812, -66.089364 ], [ 53.437500, -66.089364 ], [ 53.437500, -65.946472 ], [ 54.140625, -65.946472 ], [ 54.140625, -65.802776 ], [ 55.546875, -65.802776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.546875, -65.802776 ], [ 55.546875, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.601562, -66.089364 ], [ 56.601562, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -66.930060 ], [ 58.007812, -66.930060 ], [ 58.007812, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.204032 ], [ 59.062500, -67.204032 ], [ 59.062500, -67.339861 ], [ 59.765625, -67.339861 ], [ 59.765625, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.742759 ], [ 60.820312, -67.742759 ], [ 60.820312, -67.875541 ], [ 61.523438, -67.875541 ], [ 61.523438, -68.007571 ], [ 62.578125, -68.007571 ], [ 62.578125, -67.875541 ], [ 62.929688, -67.875541 ], [ 62.929688, -67.742759 ], [ 63.281250, -67.742759 ], [ 63.281250, -67.609221 ], [ 63.632812, -67.609221 ], [ 63.632812, -67.474922 ], [ 64.335938, -67.474922 ], [ 64.335938, -67.609221 ], [ 66.093750, -67.609221 ], [ 66.093750, -67.742759 ], [ 67.148438, -67.742759 ], [ 67.148438, -67.875541 ], [ 68.554688, -67.875541 ], [ 68.554688, -68.138852 ], [ 68.906250, -68.138852 ], [ 68.906250, -68.399180 ], [ 69.257812, -68.399180 ], [ 69.257812, -68.784144 ], [ 69.609375, -68.784144 ], [ 69.609375, -69.411242 ], [ 69.257812, -69.411242 ], [ 69.257812, -69.778952 ], [ 68.906250, -69.778952 ], [ 68.906250, -69.900118 ], [ 68.554688, -69.900118 ], [ 68.554688, -70.020587 ], [ 68.203125, -70.020587 ], [ 68.203125, -70.140364 ], [ 67.851562, -70.140364 ], [ 67.851562, -70.259452 ], [ 67.500000, -70.259452 ], [ 67.500000, -70.495574 ], [ 67.851562, -70.495574 ], [ 67.851562, -70.612614 ], [ 68.906250, -70.612614 ], [ 68.906250, -71.074056 ], [ 68.554688, -71.074056 ], [ 68.554688, -71.300793 ], [ 68.203125, -71.300793 ], [ 68.203125, -71.635993 ], [ 67.851562, -71.635993 ], [ 67.851562, -71.856229 ], [ 68.203125, -71.856229 ], [ 68.203125, -72.073911 ], [ 68.906250, -72.073911 ], [ 68.906250, -72.181804 ], [ 70.664062, -72.181804 ], [ 70.664062, -72.073911 ], [ 71.015625, -72.073911 ], [ 71.015625, -71.856229 ], [ 71.367188, -71.856229 ], [ 71.367188, -71.524909 ], [ 71.718750, -71.524909 ], [ 71.718750, -71.300793 ], [ 72.070312, -71.300793 ], [ 72.070312, -71.074056 ], [ 72.421875, -71.074056 ], [ 72.421875, -70.844673 ], [ 72.773438, -70.844673 ], [ 72.773438, -70.495574 ], [ 73.125000, -70.495574 ], [ 73.125000, -70.140364 ], [ 73.476562, -70.140364 ], [ 73.476562, -69.900118 ], [ 73.828125, -69.900118 ], [ 73.828125, -69.778952 ], [ 74.179688, -69.778952 ], [ 74.179688, -69.657086 ], [ 76.289062, -69.657086 ], [ 76.289062, -69.534518 ], [ 76.992188, -69.534518 ], [ 76.992188, -69.411242 ], [ 77.695312, -69.411242 ], [ 77.695312, -69.162558 ], [ 78.046875, -69.162558 ], [ 78.046875, -68.911005 ], [ 78.398438, -68.911005 ], [ 78.398438, -68.656555 ], [ 78.750000, -68.656555 ], [ 78.750000, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.269387 ], [ 79.453125, -68.269387 ], [ 79.453125, -68.138852 ], [ 79.804688, -68.138852 ], [ 79.804688, -68.007571 ], [ 80.507812, -68.007571 ], [ 80.507812, -67.875541 ], [ 80.859375, -67.875541 ], [ 80.859375, -67.742759 ], [ 81.210938, -67.742759 ], [ 81.210938, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.339861 ], [ 82.617188, -67.339861 ], [ 82.617188, -67.204032 ], [ 85.078125, -67.204032 ], [ 85.078125, -67.067433 ], [ 86.835938, -67.067433 ], [ 86.835938, -66.930060 ], [ 87.187500, -66.930060 ], [ 87.187500, -66.652977 ], [ 87.539062, -66.652977 ], [ 87.539062, -66.372755 ], [ 87.890625, -66.372755 ], [ 87.890625, -66.231457 ], [ 88.242188, -66.231457 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.648438, -67.067433 ], [ 89.648438, -67.204032 ], [ 91.054688, -67.204032 ], [ 91.054688, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -85.200475 ], [ -1.757812, -85.200475 ], [ -1.757812, -71.074056 ], [ -1.406250, -71.074056 ], [ -1.406250, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.413177 ], [ -0.351562, -71.413177 ], [ -0.351562, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.300793 ], [ 1.054688, -71.300793 ], [ 1.054688, -71.187754 ], [ 1.757812, -71.187754 ], [ 1.757812, -71.074056 ], [ 2.460938, -71.074056 ], [ 2.460938, -70.959697 ], [ 3.515625, -70.959697 ], [ 3.515625, -70.844673 ], [ 4.218750, -70.844673 ], [ 4.218750, -70.728979 ], [ 4.921875, -70.728979 ], [ 4.921875, -70.612614 ], [ 5.273438, -70.612614 ], [ 5.273438, -70.495574 ], [ 5.976562, -70.495574 ], [ 5.976562, -70.377854 ], [ 6.328125, -70.377854 ], [ 6.328125, -70.259452 ], [ 7.031250, -70.259452 ], [ 7.031250, -70.140364 ], [ 7.382812, -70.140364 ], [ 7.382812, -69.900118 ], [ 8.085938, -69.900118 ], [ 8.085938, -70.140364 ], [ 8.789062, -70.140364 ], [ 8.789062, -70.020587 ], [ 9.843750, -70.020587 ], [ 9.843750, -70.259452 ], [ 10.195312, -70.259452 ], [ 10.195312, -70.612614 ], [ 10.546875, -70.612614 ], [ 10.546875, -70.728979 ], [ 11.601562, -70.728979 ], [ 11.601562, -70.612614 ], [ 11.953125, -70.612614 ], [ 11.953125, -70.377854 ], [ 12.304688, -70.377854 ], [ 12.304688, -70.140364 ], [ 12.656250, -70.140364 ], [ 12.656250, -70.020587 ], [ 13.359375, -70.020587 ], [ 13.359375, -69.900118 ], [ 13.710938, -69.900118 ], [ 13.710938, -70.020587 ], [ 14.414062, -70.020587 ], [ 14.414062, -70.140364 ], [ 14.765625, -70.140364 ], [ 14.765625, -70.377854 ], [ 15.468750, -70.377854 ], [ 15.468750, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.020587 ], [ 16.523438, -70.020587 ], [ 16.523438, -69.900118 ], [ 17.578125, -69.900118 ], [ 17.578125, -69.778952 ], [ 19.335938, -69.778952 ], [ 19.335938, -69.900118 ], [ 20.390625, -69.900118 ], [ 20.390625, -70.020587 ], [ 21.445312, -70.020587 ], [ 21.445312, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.495574 ], [ 22.148438, -70.495574 ], [ 22.148438, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.495574 ], [ 24.257812, -70.495574 ], [ 24.257812, -70.377854 ], [ 27.773438, -70.377854 ], [ 27.773438, -70.259452 ], [ 28.476562, -70.259452 ], [ 28.476562, -70.140364 ], [ 29.179688, -70.140364 ], [ 29.179688, -70.020587 ], [ 29.882812, -70.020587 ], [ 29.882812, -69.900118 ], [ 30.234375, -69.900118 ], [ 30.234375, -69.778952 ], [ 30.937500, -69.778952 ], [ 30.937500, -69.657086 ], [ 32.343750, -69.657086 ], [ 32.343750, -69.411242 ], [ 32.695312, -69.411242 ], [ 32.695312, -69.037142 ], [ 33.046875, -69.037142 ], [ 33.046875, -68.784144 ], [ 33.398438, -68.784144 ], [ 33.398438, -68.528235 ], [ 34.453125, -68.528235 ], [ 34.453125, -68.656555 ], [ 34.804688, -68.656555 ], [ 34.804688, -68.784144 ], [ 35.156250, -68.784144 ], [ 35.156250, -69.037142 ], [ 35.507812, -69.037142 ], [ 35.507812, -69.162558 ], [ 36.914062, -69.162558 ], [ 36.914062, -69.287257 ], [ 37.265625, -69.287257 ], [ 37.265625, -69.411242 ], [ 37.617188, -69.411242 ], [ 37.617188, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.657086 ], [ 39.023438, -69.657086 ], [ 39.023438, -69.534518 ], [ 39.375000, -69.534518 ], [ 39.375000, -69.287257 ], [ 39.726562, -69.287257 ], [ 39.726562, -69.037142 ], [ 40.429688, -69.037142 ], [ 40.429688, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.784144 ], [ 41.484375, -68.784144 ], [ 41.484375, -68.656555 ], [ 41.835938, -68.656555 ], [ 41.835938, -68.528235 ], [ 42.539062, -68.528235 ], [ 42.539062, -68.399180 ], [ 43.242188, -68.399180 ], [ 43.242188, -68.269387 ], [ 43.945312, -68.269387 ], [ 43.945312, -68.138852 ], [ 44.648438, -68.138852 ], [ 44.648438, -68.007571 ], [ 45.000000, -68.007571 ], [ 45.000000, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.742759 ], [ 46.054688, -67.742759 ], [ 46.054688, -67.609221 ], [ 47.460938, -67.609221 ], [ 47.460938, -67.474922 ], [ 48.164062, -67.474922 ], [ 48.164062, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.273438, -67.067433 ], [ 50.273438, -66.930060 ], [ 50.625000, -66.930060 ], [ 50.625000, -66.513260 ], [ 50.976562, -66.513260 ], [ 50.976562, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.089364 ], [ 52.382812, -66.089364 ], [ 52.382812, -65.946472 ], [ 53.085938, -65.946472 ], [ 53.085938, -65.802776 ], [ 55.546875, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, -65.802776 ], [ 54.843750, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.953125, -66.089364 ], [ 56.953125, -66.231457 ], [ 57.304688, -66.231457 ], [ 57.304688, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -67.067433 ], [ 58.007812, -67.067433 ], [ 58.007812, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.625000, -67.067433 ], [ 50.625000, -66.791909 ], [ 50.976562, -66.791909 ], [ 50.976562, -66.513260 ], [ 51.328125, -66.513260 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.382812, -66.231457 ], [ 52.382812, -66.089364 ], [ 53.437500, -66.089364 ], [ 53.437500, -65.946472 ], [ 54.140625, -65.946472 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ] ] ], [ [ [ 85.429688, -67.204032 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.204032 ], [ 85.429688, -67.204032 ] ] ], [ [ [ 87.187500, -67.204032 ], [ 87.187500, -67.067433 ], [ 87.539062, -67.067433 ], [ 87.539062, -66.652977 ], [ 87.890625, -66.652977 ], [ 87.890625, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 87.187500, -67.204032 ] ] ], [ [ [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 55.546875, -65.802776 ], [ 55.546875, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.089364 ], [ 56.601562, -66.089364 ], [ 56.601562, -66.231457 ], [ 56.953125, -66.231457 ], [ 56.953125, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -66.930060 ], [ 58.007812, -66.930060 ], [ 58.007812, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.067433 ], [ 50.273438, -67.067433 ], [ 50.273438, -66.930060 ], [ 50.625000, -66.930060 ], [ 50.625000, -66.513260 ], [ 50.976562, -66.513260 ], [ 50.976562, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.089364 ], [ 52.382812, -66.089364 ], [ 52.382812, -65.946472 ], [ 53.085938, -65.946472 ], [ 53.085938, -65.802776 ], [ 55.546875, -65.802776 ] ] ], [ [ [ 85.078125, -67.204032 ], [ 85.078125, -67.067433 ], [ 86.835938, -67.067433 ], [ 86.835938, -66.930060 ], [ 87.187500, -66.930060 ], [ 87.187500, -66.652977 ], [ 87.539062, -66.652977 ], [ 87.539062, -66.372755 ], [ 87.890625, -66.372755 ], [ 87.890625, -66.231457 ], [ 88.242188, -66.231457 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.648438, -67.067433 ], [ 89.648438, -67.204032 ], [ 85.078125, -67.204032 ] ] ], [ [ [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.757537 ], [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.757537 ], [ 11.250000, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 1.757537 ], [ 11.250000, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.757537 ], [ 11.250000, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.804688, 1.757537 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 34.804688, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.453125, 1.406109 ], [ 34.453125, 1.054628 ], [ 34.101562, 1.054628 ], [ 34.101562, 0.351560 ], [ 33.750000, 0.351560 ], [ 33.750000, -0.703107 ], [ 30.585938, -0.703107 ], [ 30.585938, -1.054628 ], [ 30.234375, -1.054628 ], [ 30.234375, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.054628 ], [ 29.882812, 1.054628 ], [ 29.882812, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.757537 ], [ 34.804688, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.132812, 1.757537 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -2.108899 ], [ 40.781250, -2.108899 ], [ 40.781250, -2.460181 ], [ 40.429688, -2.460181 ], [ 40.429688, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -3.864255 ], [ 37.617188, -3.864255 ], [ 37.617188, -3.162456 ], [ 37.265625, -3.162456 ], [ 37.265625, -2.811371 ], [ 36.562500, -2.811371 ], [ 36.562500, -2.460181 ], [ 35.859375, -2.460181 ], [ 35.859375, -2.108899 ], [ 35.507812, -2.108899 ], [ 35.507812, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.757537 ], [ 41.132812, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.781250, 1.757537 ], [ 40.781250, -1.054628 ], [ 41.132812, -1.054628 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 40.781250, -1.757537 ], [ 40.781250, -2.108899 ], [ 40.429688, -2.108899 ], [ 40.429688, -2.460181 ], [ 40.078125, -2.460181 ], [ 40.078125, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -3.864255 ], [ 39.375000, -3.864255 ], [ 39.375000, -4.565474 ], [ 38.671875, -4.565474 ], [ 38.671875, -4.214943 ], [ 37.968750, -4.214943 ], [ 37.968750, -3.864255 ], [ 37.617188, -3.864255 ], [ 37.617188, -2.811371 ], [ 36.914062, -2.811371 ], [ 36.914062, -2.460181 ], [ 36.210938, -2.460181 ], [ 36.210938, -2.108899 ], [ 35.507812, -2.108899 ], [ 35.507812, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 1.757537 ], [ 40.781250, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.351560 ], [ 43.242188, 0.351560 ], [ 43.242188, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.351560 ], [ 42.539062, -0.351560 ], [ 42.539062, -1.054628 ], [ 42.187500, -1.054628 ], [ 42.187500, -1.406109 ], [ 41.835938, -1.406109 ], [ 41.835938, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, 1.757537 ], [ 45.000000, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.242188, 0.703107 ], [ 43.242188, 0.351560 ], [ 42.890625, 0.351560 ], [ 42.890625, 0.000000 ], [ 42.539062, 0.000000 ], [ 42.539062, -0.351560 ], [ 42.187500, -0.351560 ], [ 42.187500, -0.703107 ], [ 41.835938, -0.703107 ], [ 41.835938, -1.054628 ], [ 41.484375, -1.054628 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, -1.054628 ], [ 40.781250, -1.054628 ], [ 40.781250, 1.757537 ], [ 45.000000, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -2.460181 ], [ 11.953125, -2.460181 ], [ 11.953125, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -3.162456 ], [ 11.953125, -3.162456 ], [ 11.953125, -3.864255 ], [ 10.898438, -3.864255 ], [ 10.898438, -3.513421 ], [ 10.546875, -3.513421 ], [ 10.546875, -3.162456 ], [ 10.195312, -3.162456 ], [ 10.195312, -2.811371 ], [ 9.843750, -2.811371 ], [ 9.843750, -2.460181 ], [ 9.492188, -2.460181 ], [ 9.492188, -2.108899 ], [ 9.140625, -2.108899 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 1.757537 ], [ 13.007812, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 0.703107 ], [ 13.710938, 0.703107 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, -2.108899 ], [ 13.710938, -2.108899 ], [ 13.710938, -2.460181 ], [ 13.007812, -2.460181 ], [ 13.007812, -2.108899 ], [ 12.304688, -2.108899 ], [ 12.304688, -2.460181 ], [ 11.250000, -2.460181 ], [ 11.250000, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -3.513421 ], [ 11.250000, -3.513421 ], [ 11.250000, -3.864255 ], [ 10.546875, -3.864255 ], [ 10.546875, -3.513421 ], [ 10.195312, -3.513421 ], [ 10.195312, -3.162456 ], [ 9.843750, -3.162456 ], [ 9.843750, -2.811371 ], [ 9.492188, -2.811371 ], [ 9.492188, -2.460181 ], [ 9.140625, -2.460181 ], [ 9.140625, -1.757537 ], [ 8.789062, -1.757537 ], [ 8.789062, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 1.757537 ], [ 13.007812, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.929688, 1.757537 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -2.811371 ], [ 15.820312, -2.811371 ], [ 15.820312, -3.162456 ], [ 16.171875, -3.162456 ], [ 16.171875, -3.864255 ], [ 15.820312, -3.864255 ], [ 15.820312, -4.214943 ], [ 15.117188, -4.214943 ], [ 15.117188, -4.565474 ], [ 14.765625, -4.565474 ], [ 14.765625, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.565474 ], [ 13.710938, -4.565474 ], [ 13.710938, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.214943 ], [ 11.250000, -4.214943 ], [ 11.250000, -3.864255 ], [ 11.953125, -3.864255 ], [ 11.953125, -3.162456 ], [ 11.601562, -3.162456 ], [ 11.601562, -2.811371 ], [ 11.953125, -2.811371 ], [ 11.953125, -2.460181 ], [ 14.414062, -2.460181 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 17.929688, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 1.757537 ], [ 17.578125, -0.703107 ], [ 17.226562, -0.703107 ], [ 17.226562, -1.054628 ], [ 16.523438, -1.054628 ], [ 16.523438, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -2.108899 ], [ 15.820312, -2.108899 ], [ 15.820312, -3.513421 ], [ 15.468750, -3.513421 ], [ 15.468750, -3.864255 ], [ 15.117188, -3.864255 ], [ 15.117188, -4.565474 ], [ 14.765625, -4.565474 ], [ 14.765625, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.214943 ], [ 13.359375, -4.214943 ], [ 13.359375, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.915833 ], [ 11.250000, -4.915833 ], [ 11.250000, -4.214943 ], [ 10.898438, -4.214943 ], [ 10.898438, -3.864255 ], [ 11.250000, -3.864255 ], [ 11.250000, -3.513421 ], [ 11.601562, -3.513421 ], [ 11.601562, -2.811371 ], [ 11.250000, -2.811371 ], [ 11.250000, -2.460181 ], [ 12.304688, -2.460181 ], [ 12.304688, -2.108899 ], [ 13.007812, -2.108899 ], [ 13.007812, -2.460181 ], [ 13.710938, -2.460181 ], [ 13.710938, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -1.406109 ], [ 14.414062, -1.406109 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 17.578125, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 29.179688, -1.757537 ], [ 29.179688, -4.915833 ], [ 29.531250, -4.915833 ], [ 29.531250, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.710992 ], [ 30.585938, -7.710992 ], [ 30.585938, -8.407168 ], [ 28.828125, -8.407168 ], [ 28.828125, -8.754795 ], [ 28.476562, -8.754795 ], [ 28.476562, -9.449062 ], [ 28.828125, -9.449062 ], [ 28.828125, -10.141932 ], [ 28.476562, -10.141932 ], [ 28.476562, -12.211180 ], [ 29.531250, -12.211180 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.312500, -11.523088 ], [ 25.312500, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -10.833306 ], [ 23.554688, -10.833306 ], [ 23.554688, -11.178402 ], [ 22.148438, -11.178402 ], [ 22.148438, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -7.362467 ], [ 20.742188, -7.362467 ], [ 20.742188, -7.013668 ], [ 19.335938, -7.013668 ], [ 19.335938, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 16.875000, -7.710992 ], [ 16.875000, -7.013668 ], [ 16.523438, -7.013668 ], [ 16.523438, -6.315299 ], [ 16.171875, -6.315299 ], [ 16.171875, -5.965754 ], [ 12.304688, -5.965754 ], [ 12.304688, -5.266008 ], [ 12.656250, -5.266008 ], [ 12.656250, -4.915833 ], [ 13.710938, -4.915833 ], [ 13.710938, -4.565474 ], [ 14.062500, -4.565474 ], [ 14.062500, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -4.214943 ], [ 15.820312, -4.214943 ], [ 15.820312, -3.864255 ], [ 16.171875, -3.864255 ], [ 16.171875, -3.162456 ], [ 15.820312, -3.162456 ], [ 15.820312, -2.811371 ], [ 16.171875, -2.811371 ], [ 16.171875, -2.108899 ], [ 16.523438, -2.108899 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 1.757537 ], [ 30.585938, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, 1.757537 ], [ 30.234375, 1.406109 ], [ 29.882812, 1.406109 ], [ 29.882812, 1.054628 ], [ 29.531250, 1.054628 ], [ 29.531250, -1.406109 ], [ 29.179688, -1.406109 ], [ 29.179688, -2.108899 ], [ 28.828125, -2.108899 ], [ 28.828125, -3.162456 ], [ 29.179688, -3.162456 ], [ 29.179688, -5.965754 ], [ 29.531250, -5.965754 ], [ 29.531250, -6.664608 ], [ 29.882812, -6.664608 ], [ 29.882812, -7.362467 ], [ 30.234375, -7.362467 ], [ 30.234375, -8.059230 ], [ 29.882812, -8.059230 ], [ 29.882812, -8.407168 ], [ 28.476562, -8.407168 ], [ 28.476562, -8.754795 ], [ 28.125000, -8.754795 ], [ 28.125000, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -11.178402 ], [ 28.125000, -11.178402 ], [ 28.125000, -11.867351 ], [ 28.476562, -11.867351 ], [ 28.476562, -12.211180 ], [ 29.531250, -12.211180 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.554564 ], [ 28.125000, -12.554564 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.312500, -11.523088 ], [ 25.312500, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -10.833306 ], [ 22.148438, -10.833306 ], [ 22.148438, -9.795678 ], [ 21.796875, -9.795678 ], [ 21.796875, -8.059230 ], [ 21.445312, -8.059230 ], [ 21.445312, -7.013668 ], [ 20.390625, -7.013668 ], [ 20.390625, -6.664608 ], [ 20.039062, -6.664608 ], [ 20.039062, -7.013668 ], [ 19.335938, -7.013668 ], [ 19.335938, -7.362467 ], [ 18.984375, -7.362467 ], [ 18.984375, -7.710992 ], [ 17.929688, -7.710992 ], [ 17.929688, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 16.875000, -7.710992 ], [ 16.875000, -7.362467 ], [ 16.523438, -7.362467 ], [ 16.523438, -5.965754 ], [ 16.171875, -5.965754 ], [ 16.171875, -5.615986 ], [ 13.359375, -5.615986 ], [ 13.359375, -5.965754 ], [ 11.953125, -5.965754 ], [ 11.953125, -5.615986 ], [ 12.304688, -5.615986 ], [ 12.304688, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -4.565474 ], [ 13.359375, -4.565474 ], [ 13.359375, -4.214943 ], [ 14.062500, -4.214943 ], [ 14.062500, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -3.864255 ], [ 15.468750, -3.864255 ], [ 15.468750, -3.513421 ], [ 15.820312, -3.513421 ], [ 15.820312, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.054628 ], [ 17.226562, -1.054628 ], [ 17.226562, -0.703107 ], [ 17.578125, -0.703107 ], [ 17.578125, 1.757537 ], [ 30.234375, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.965754 ], [ 16.171875, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -7.013668 ], [ 16.875000, -7.013668 ], [ 16.875000, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 19.335938, -8.059230 ], [ 19.335938, -7.013668 ], [ 20.742188, -7.013668 ], [ 20.742188, -7.362467 ], [ 21.796875, -7.362467 ], [ 21.796875, -9.795678 ], [ 22.148438, -9.795678 ], [ 22.148438, -11.178402 ], [ 23.554688, -11.178402 ], [ 23.554688, -10.833306 ], [ 23.906250, -10.833306 ], [ 23.906250, -12.897489 ], [ 21.796875, -12.897489 ], [ 21.796875, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -17.308688 ], [ 22.851562, -17.308688 ], [ 22.851562, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.978733 ], [ 20.039062, -17.978733 ], [ 20.039062, -17.644022 ], [ 18.281250, -17.644022 ], [ 18.281250, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.972741 ], [ 12.304688, -16.972741 ], [ 12.304688, -17.308688 ], [ 11.601562, -17.308688 ], [ 11.601562, -16.299051 ], [ 11.953125, -16.299051 ], [ 11.953125, -14.944785 ], [ 12.304688, -14.944785 ], [ 12.304688, -14.264383 ], [ 12.656250, -14.264383 ], [ 12.656250, -13.239945 ], [ 13.007812, -13.239945 ], [ 13.007812, -12.897489 ], [ 13.359375, -12.897489 ], [ 13.359375, -12.211180 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.833306 ], [ 13.359375, -10.833306 ], [ 13.359375, -10.141932 ], [ 13.007812, -10.141932 ], [ 13.007812, -8.754795 ], [ 13.359375, -8.754795 ], [ 13.359375, -8.059230 ], [ 13.007812, -8.059230 ], [ 13.007812, -7.362467 ], [ 12.656250, -7.362467 ], [ 12.656250, -6.664608 ], [ 12.304688, -6.664608 ], [ 12.304688, -5.965754 ], [ 16.171875, -5.965754 ] ] ], [ [ [ 12.656250, -4.565474 ], [ 12.656250, -5.266008 ], [ 11.953125, -5.266008 ], [ 11.953125, -4.915833 ], [ 12.304688, -4.915833 ], [ 12.304688, -4.565474 ], [ 12.656250, -4.565474 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.615986 ], [ 16.171875, -5.965754 ], [ 16.523438, -5.965754 ], [ 16.523438, -7.362467 ], [ 16.875000, -7.362467 ], [ 16.875000, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 17.929688, -8.059230 ], [ 17.929688, -7.710992 ], [ 18.984375, -7.710992 ], [ 18.984375, -7.362467 ], [ 19.335938, -7.362467 ], [ 19.335938, -7.013668 ], [ 20.039062, -7.013668 ], [ 20.039062, -6.664608 ], [ 20.390625, -6.664608 ], [ 20.390625, -7.013668 ], [ 21.445312, -7.013668 ], [ 21.445312, -8.059230 ], [ 21.796875, -8.059230 ], [ 21.796875, -9.795678 ], [ 22.148438, -9.795678 ], [ 22.148438, -10.833306 ], [ 23.906250, -10.833306 ], [ 23.906250, -12.897489 ], [ 21.796875, -12.897489 ], [ 21.796875, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.636192 ], [ 22.500000, -16.636192 ], [ 22.500000, -16.972741 ], [ 22.851562, -16.972741 ], [ 22.851562, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -17.644022 ], [ 17.929688, -17.644022 ], [ 17.929688, -17.308688 ], [ 13.359375, -17.308688 ], [ 13.359375, -16.972741 ], [ 11.601562, -16.972741 ], [ 11.601562, -15.284185 ], [ 11.953125, -15.284185 ], [ 11.953125, -13.923404 ], [ 12.304688, -13.923404 ], [ 12.304688, -13.239945 ], [ 12.656250, -13.239945 ], [ 12.656250, -12.554564 ], [ 13.007812, -12.554564 ], [ 13.007812, -12.211180 ], [ 13.359375, -12.211180 ], [ 13.359375, -11.523088 ], [ 13.710938, -11.523088 ], [ 13.710938, -10.833306 ], [ 13.359375, -10.833306 ], [ 13.359375, -9.795678 ], [ 13.007812, -9.795678 ], [ 13.007812, -9.449062 ], [ 12.656250, -9.449062 ], [ 12.656250, -8.754795 ], [ 13.007812, -8.754795 ], [ 13.007812, -8.059230 ], [ 12.656250, -8.059230 ], [ 12.656250, -6.664608 ], [ 12.304688, -6.664608 ], [ 12.304688, -6.315299 ], [ 11.953125, -6.315299 ], [ 11.953125, -5.965754 ], [ 13.359375, -5.965754 ], [ 13.359375, -5.615986 ], [ 16.171875, -5.615986 ] ] ], [ [ [ 12.304688, -4.915833 ], [ 12.304688, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -5.266008 ], [ 11.601562, -5.266008 ], [ 11.601562, -4.915833 ], [ 12.304688, -4.915833 ] ] ], [ [ [ 12.656250, -4.915833 ], [ 12.304688, -4.915833 ], [ 12.304688, -4.565474 ], [ 12.656250, -4.565474 ], [ 12.656250, -4.915833 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.359375, -16.972741 ], [ 13.359375, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.644022 ], [ 20.039062, -17.644022 ], [ 20.039062, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.644022 ], [ 23.906250, -17.644022 ], [ 23.906250, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.978733 ], [ 24.257812, -17.978733 ], [ 24.257812, -18.312811 ], [ 23.203125, -18.312811 ], [ 23.203125, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -18.312811 ], [ 20.742188, -18.312811 ], [ 20.742188, -21.943046 ], [ 20.039062, -21.943046 ], [ 20.039062, -28.613459 ], [ 19.687500, -28.613459 ], [ 19.687500, -28.921631 ], [ 17.226562, -28.921631 ], [ 17.226562, -28.304381 ], [ 16.523438, -28.304381 ], [ 16.523438, -28.613459 ], [ 15.820312, -28.613459 ], [ 15.820312, -27.994401 ], [ 15.468750, -27.994401 ], [ 15.468750, -27.371767 ], [ 15.117188, -27.371767 ], [ 15.117188, -25.799891 ], [ 14.765625, -25.799891 ], [ 14.765625, -24.846565 ], [ 14.414062, -24.846565 ], [ 14.414062, -22.268764 ], [ 14.062500, -22.268764 ], [ 14.062500, -21.943046 ], [ 13.710938, -21.943046 ], [ 13.710938, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.632784 ], [ 13.007812, -20.632784 ], [ 13.007812, -19.973349 ], [ 12.656250, -19.973349 ], [ 12.656250, -18.979026 ], [ 12.304688, -18.979026 ], [ 12.304688, -18.312811 ], [ 11.953125, -18.312811 ], [ 11.953125, -17.644022 ], [ 11.601562, -17.644022 ], [ 11.601562, -17.308688 ], [ 12.304688, -17.308688 ], [ 12.304688, -16.972741 ], [ 13.359375, -16.972741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.359375, -16.972741 ], [ 13.359375, -17.308688 ], [ 17.929688, -17.308688 ], [ 17.929688, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.978733 ], [ 20.742188, -17.978733 ], [ 20.742188, -21.616579 ], [ 19.687500, -21.616579 ], [ 19.687500, -28.613459 ], [ 19.335938, -28.613459 ], [ 19.335938, -28.921631 ], [ 17.578125, -28.921631 ], [ 17.578125, -28.613459 ], [ 16.875000, -28.613459 ], [ 16.875000, -28.304381 ], [ 15.820312, -28.304381 ], [ 15.820312, -27.994401 ], [ 15.468750, -27.994401 ], [ 15.468750, -27.371767 ], [ 15.117188, -27.371767 ], [ 15.117188, -26.745610 ], [ 14.765625, -26.745610 ], [ 14.765625, -25.799891 ], [ 14.414062, -25.799891 ], [ 14.414062, -24.527135 ], [ 14.062500, -24.527135 ], [ 14.062500, -21.943046 ], [ 13.710938, -21.943046 ], [ 13.710938, -21.616579 ], [ 13.359375, -21.616579 ], [ 13.359375, -20.961440 ], [ 13.007812, -20.961440 ], [ 13.007812, -20.303418 ], [ 12.656250, -20.303418 ], [ 12.656250, -19.311143 ], [ 12.304688, -19.311143 ], [ 12.304688, -18.979026 ], [ 11.953125, -18.979026 ], [ 11.953125, -18.312811 ], [ 11.601562, -18.312811 ], [ 11.601562, -16.972741 ], [ 13.359375, -16.972741 ] ] ], [ [ [ 24.960938, -17.308688 ], [ 24.960938, -17.644022 ], [ 23.906250, -17.644022 ], [ 23.906250, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.308688 ], [ 24.960938, -17.308688 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -2.108899 ], [ 30.585938, -2.108899 ], [ 30.585938, -2.460181 ], [ 29.882812, -2.460181 ], [ 29.882812, -2.811371 ], [ 29.179688, -2.811371 ], [ 29.179688, -1.757537 ], [ 29.531250, -1.757537 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.406109 ], [ 30.585938, -2.108899 ], [ 29.882812, -2.108899 ], [ 29.882812, -2.460181 ], [ 29.531250, -2.460181 ], [ 29.531250, -2.811371 ], [ 28.828125, -2.811371 ], [ 28.828125, -2.108899 ], [ 29.179688, -2.108899 ], [ 29.179688, -1.406109 ], [ 30.585938, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -2.460181 ], [ 30.585938, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -4.565474 ], [ 29.179688, -4.565474 ], [ 29.179688, -2.811371 ], [ 29.882812, -2.811371 ], [ 29.882812, -2.460181 ], [ 30.585938, -2.460181 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -2.108899 ], [ 30.234375, -2.811371 ], [ 30.585938, -2.811371 ], [ 30.585938, -3.513421 ], [ 30.234375, -3.513421 ], [ 30.234375, -3.864255 ], [ 29.882812, -3.864255 ], [ 29.882812, -4.214943 ], [ 29.179688, -4.214943 ], [ 29.179688, -3.162456 ], [ 28.828125, -3.162456 ], [ 28.828125, -2.811371 ], [ 29.531250, -2.811371 ], [ 29.531250, -2.460181 ], [ 29.882812, -2.460181 ], [ 29.882812, -2.108899 ], [ 30.234375, -2.108899 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -8.407168 ], [ 30.585938, -8.754795 ], [ 31.640625, -8.754795 ], [ 31.640625, -9.102097 ], [ 32.695312, -9.102097 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.795678 ], [ 33.398438, -9.795678 ], [ 33.398438, -11.178402 ], [ 33.046875, -11.178402 ], [ 33.046875, -12.211180 ], [ 33.398438, -12.211180 ], [ 33.398438, -12.897489 ], [ 33.046875, -12.897489 ], [ 33.046875, -13.239945 ], [ 32.695312, -13.239945 ], [ 32.695312, -14.264383 ], [ 31.992188, -14.264383 ], [ 31.992188, -14.604847 ], [ 30.937500, -14.604847 ], [ 30.937500, -14.944785 ], [ 30.234375, -14.944785 ], [ 30.234375, -15.623037 ], [ 29.531250, -15.623037 ], [ 29.531250, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.636192 ], [ 28.476562, -16.636192 ], [ 28.476562, -16.972741 ], [ 28.125000, -16.972741 ], [ 28.125000, -17.308688 ], [ 27.773438, -17.308688 ], [ 27.773438, -17.644022 ], [ 27.421875, -17.644022 ], [ 27.421875, -17.978733 ], [ 25.664062, -17.978733 ], [ 25.664062, -17.644022 ], [ 24.609375, -17.644022 ], [ 24.609375, -17.308688 ], [ 23.906250, -17.308688 ], [ 23.906250, -17.644022 ], [ 22.851562, -17.644022 ], [ 22.851562, -17.308688 ], [ 22.500000, -17.308688 ], [ 22.500000, -16.972741 ], [ 22.148438, -16.972741 ], [ 22.148438, -16.299051 ], [ 21.796875, -16.299051 ], [ 21.796875, -12.897489 ], [ 23.906250, -12.897489 ], [ 23.906250, -10.833306 ], [ 24.257812, -10.833306 ], [ 24.257812, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.554564 ], [ 28.476562, -12.554564 ], [ 28.476562, -12.897489 ], [ 28.828125, -12.897489 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.211180 ], [ 28.476562, -12.211180 ], [ 28.476562, -10.141932 ], [ 28.828125, -10.141932 ], [ 28.828125, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -8.754795 ], [ 28.828125, -8.754795 ], [ 28.828125, -8.407168 ], [ 30.585938, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -8.059230 ], [ 30.585938, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -8.754795 ], [ 31.992188, -8.754795 ], [ 31.992188, -9.102097 ], [ 32.695312, -9.102097 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -10.141932 ], [ 33.398438, -10.141932 ], [ 33.398438, -10.487812 ], [ 33.046875, -10.487812 ], [ 33.046875, -12.554564 ], [ 32.695312, -12.554564 ], [ 32.695312, -13.239945 ], [ 32.343750, -13.239945 ], [ 32.343750, -14.264383 ], [ 30.937500, -14.264383 ], [ 30.937500, -14.604847 ], [ 29.882812, -14.604847 ], [ 29.882812, -14.944785 ], [ 30.234375, -14.944785 ], [ 30.234375, -15.284185 ], [ 29.882812, -15.284185 ], [ 29.882812, -15.623037 ], [ 29.179688, -15.623037 ], [ 29.179688, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.299051 ], [ 28.125000, -16.299051 ], [ 28.125000, -16.636192 ], [ 27.773438, -16.636192 ], [ 27.773438, -16.972741 ], [ 27.421875, -16.972741 ], [ 27.421875, -17.308688 ], [ 27.070312, -17.308688 ], [ 27.070312, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.308688 ], [ 22.851562, -17.308688 ], [ 22.851562, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -16.636192 ], [ 22.148438, -16.636192 ], [ 22.148438, -16.299051 ], [ 21.796875, -16.299051 ], [ 21.796875, -12.897489 ], [ 23.906250, -12.897489 ], [ 23.906250, -10.833306 ], [ 24.257812, -10.833306 ], [ 24.257812, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.554564 ], [ 28.476562, -12.554564 ], [ 28.476562, -12.897489 ], [ 28.828125, -12.897489 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.211180 ], [ 28.476562, -12.211180 ], [ 28.476562, -11.867351 ], [ 28.125000, -11.867351 ], [ 28.125000, -11.178402 ], [ 28.476562, -11.178402 ], [ 28.476562, -9.449062 ], [ 28.125000, -9.449062 ], [ 28.125000, -8.754795 ], [ 28.476562, -8.754795 ], [ 28.476562, -8.407168 ], [ 29.882812, -8.407168 ], [ 29.882812, -8.059230 ], [ 30.585938, -8.059230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.623037 ], [ 30.234375, -15.961329 ], [ 31.640625, -15.961329 ], [ 31.640625, -16.299051 ], [ 32.343750, -16.299051 ], [ 32.343750, -16.636192 ], [ 32.695312, -16.636192 ], [ 32.695312, -20.303418 ], [ 32.343750, -20.303418 ], [ 32.343750, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -22.268764 ], [ 29.882812, -22.268764 ], [ 29.882812, -21.943046 ], [ 28.828125, -21.943046 ], [ 28.828125, -21.616579 ], [ 28.125000, -21.616579 ], [ 28.125000, -21.289374 ], [ 27.773438, -21.289374 ], [ 27.773438, -20.632784 ], [ 27.421875, -20.632784 ], [ 27.421875, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -19.973349 ], [ 26.367188, -19.973349 ], [ 26.367188, -19.642588 ], [ 26.015625, -19.642588 ], [ 26.015625, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.312811 ], [ 25.312500, -18.312811 ], [ 25.312500, -17.644022 ], [ 25.664062, -17.644022 ], [ 25.664062, -17.978733 ], [ 27.421875, -17.978733 ], [ 27.421875, -17.644022 ], [ 27.773438, -17.644022 ], [ 27.773438, -17.308688 ], [ 28.125000, -17.308688 ], [ 28.125000, -16.972741 ], [ 28.476562, -16.972741 ], [ 28.476562, -16.636192 ], [ 28.828125, -16.636192 ], [ 28.828125, -15.961329 ], [ 29.531250, -15.961329 ], [ 29.531250, -15.623037 ], [ 30.234375, -15.623037 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.284185 ], [ 30.234375, -15.623037 ], [ 30.937500, -15.623037 ], [ 30.937500, -15.961329 ], [ 31.289062, -15.961329 ], [ 31.289062, -16.299051 ], [ 31.992188, -16.299051 ], [ 31.992188, -16.636192 ], [ 32.695312, -16.636192 ], [ 32.695312, -18.312811 ], [ 32.343750, -18.312811 ], [ 32.343750, -19.642588 ], [ 32.695312, -19.642588 ], [ 32.695312, -19.973349 ], [ 32.343750, -19.973349 ], [ 32.343750, -20.632784 ], [ 31.992188, -20.632784 ], [ 31.992188, -21.289374 ], [ 31.640625, -21.289374 ], [ 31.640625, -21.616579 ], [ 31.289062, -21.616579 ], [ 31.289062, -21.943046 ], [ 30.585938, -21.943046 ], [ 30.585938, -22.268764 ], [ 29.531250, -22.268764 ], [ 29.531250, -21.943046 ], [ 28.476562, -21.943046 ], [ 28.476562, -21.616579 ], [ 27.773438, -21.616579 ], [ 27.773438, -20.961440 ], [ 27.421875, -20.961440 ], [ 27.421875, -20.303418 ], [ 26.718750, -20.303418 ], [ 26.718750, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.311143 ], [ 26.015625, -19.311143 ], [ 26.015625, -18.979026 ], [ 25.664062, -18.979026 ], [ 25.664062, -18.646245 ], [ 25.312500, -18.646245 ], [ 25.312500, -17.978733 ], [ 24.960938, -17.978733 ], [ 24.960938, -17.644022 ], [ 27.070312, -17.644022 ], [ 27.070312, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -16.972741 ], [ 27.773438, -16.972741 ], [ 27.773438, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -16.299051 ], [ 28.828125, -16.299051 ], [ 28.828125, -15.961329 ], [ 29.179688, -15.961329 ], [ 29.179688, -15.623037 ], [ 29.882812, -15.623037 ], [ 29.882812, -15.284185 ], [ 30.234375, -15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 35.507812, -1.757537 ], [ 35.507812, -2.108899 ], [ 35.859375, -2.108899 ], [ 35.859375, -2.460181 ], [ 36.562500, -2.460181 ], [ 36.562500, -2.811371 ], [ 37.265625, -2.811371 ], [ 37.265625, -3.162456 ], [ 37.617188, -3.162456 ], [ 37.617188, -3.864255 ], [ 38.320312, -3.864255 ], [ 38.320312, -4.214943 ], [ 39.023438, -4.214943 ], [ 39.023438, -4.565474 ], [ 39.375000, -4.565474 ], [ 39.375000, -4.915833 ], [ 39.023438, -4.915833 ], [ 39.023438, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -6.664608 ], [ 39.023438, -6.664608 ], [ 39.023438, -7.013668 ], [ 39.375000, -7.013668 ], [ 39.375000, -7.362467 ], [ 39.023438, -7.362467 ], [ 39.023438, -8.059230 ], [ 39.375000, -8.059230 ], [ 39.375000, -8.407168 ], [ 39.023438, -8.407168 ], [ 39.023438, -8.754795 ], [ 39.375000, -8.754795 ], [ 39.375000, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -10.141932 ], [ 40.078125, -10.141932 ], [ 40.078125, -10.833306 ], [ 39.023438, -10.833306 ], [ 39.023438, -11.178402 ], [ 37.968750, -11.178402 ], [ 37.968750, -11.523088 ], [ 36.914062, -11.523088 ], [ 36.914062, -11.867351 ], [ 35.507812, -11.867351 ], [ 35.507812, -11.523088 ], [ 34.453125, -11.523088 ], [ 34.453125, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.102097 ], [ 31.640625, -9.102097 ], [ 31.640625, -8.754795 ], [ 30.585938, -8.754795 ], [ 30.585938, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.013668 ], [ 29.531250, -7.013668 ], [ 29.531250, -4.915833 ], [ 29.179688, -4.915833 ], [ 29.179688, -4.565474 ], [ 30.234375, -4.565474 ], [ 30.234375, -3.864255 ], [ 30.585938, -3.864255 ], [ 30.585938, -2.108899 ], [ 30.937500, -2.108899 ], [ 30.937500, -1.406109 ], [ 30.585938, -1.406109 ], [ 30.585938, -1.054628 ], [ 34.101562, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.054628 ], [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 35.507812, -1.757537 ], [ 35.507812, -2.108899 ], [ 36.210938, -2.108899 ], [ 36.210938, -2.460181 ], [ 36.914062, -2.460181 ], [ 36.914062, -2.811371 ], [ 37.617188, -2.811371 ], [ 37.617188, -3.864255 ], [ 37.968750, -3.864255 ], [ 37.968750, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -5.266008 ], [ 38.671875, -5.266008 ], [ 38.671875, -6.664608 ], [ 39.375000, -6.664608 ], [ 39.375000, -7.362467 ], [ 39.023438, -7.362467 ], [ 39.023438, -8.754795 ], [ 39.375000, -8.754795 ], [ 39.375000, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -10.141932 ], [ 40.078125, -10.141932 ], [ 40.078125, -10.487812 ], [ 39.726562, -10.487812 ], [ 39.726562, -10.833306 ], [ 39.023438, -10.833306 ], [ 39.023438, -11.178402 ], [ 37.617188, -11.178402 ], [ 37.617188, -11.523088 ], [ 35.507812, -11.523088 ], [ 35.507812, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.833306 ], [ 34.101562, -10.833306 ], [ 34.101562, -9.795678 ], [ 33.750000, -9.795678 ], [ 33.750000, -9.449062 ], [ 33.398438, -9.449062 ], [ 33.398438, -9.102097 ], [ 31.992188, -9.102097 ], [ 31.992188, -8.754795 ], [ 30.937500, -8.754795 ], [ 30.937500, -8.407168 ], [ 30.585938, -8.407168 ], [ 30.585938, -8.059230 ], [ 30.234375, -8.059230 ], [ 30.234375, -7.362467 ], [ 29.882812, -7.362467 ], [ 29.882812, -6.664608 ], [ 29.531250, -6.664608 ], [ 29.531250, -5.965754 ], [ 29.179688, -5.965754 ], [ 29.179688, -4.214943 ], [ 29.882812, -4.214943 ], [ 29.882812, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -3.513421 ], [ 30.585938, -3.513421 ], [ 30.585938, -2.811371 ], [ 30.234375, -2.811371 ], [ 30.234375, -2.108899 ], [ 30.585938, -2.108899 ], [ 30.585938, -1.406109 ], [ 30.234375, -1.406109 ], [ 30.234375, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.046875, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.453125, -10.141932 ], [ 34.453125, -13.581921 ], [ 34.804688, -13.581921 ], [ 34.804688, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -14.264383 ], [ 35.507812, -14.264383 ], [ 35.507812, -14.604847 ], [ 35.859375, -14.604847 ], [ 35.859375, -15.961329 ], [ 35.507812, -15.961329 ], [ 35.507812, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -14.604847 ], [ 33.398438, -14.604847 ], [ 33.398438, -14.264383 ], [ 33.046875, -14.264383 ], [ 33.046875, -13.923404 ], [ 32.695312, -13.923404 ], [ 32.695312, -13.239945 ], [ 33.046875, -13.239945 ], [ 33.046875, -12.897489 ], [ 33.398438, -12.897489 ], [ 33.398438, -12.211180 ], [ 33.046875, -12.211180 ], [ 33.046875, -11.178402 ], [ 33.398438, -11.178402 ], [ 33.398438, -9.795678 ], [ 33.046875, -9.795678 ], [ 33.046875, -9.449062 ] ] ], [ [ [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ], [ 32.695312, -9.102097 ], [ 33.046875, -9.102097 ], [ 33.046875, -9.449062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, -9.102097 ], [ 33.398438, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.833306 ], [ 34.453125, -10.833306 ], [ 34.453125, -11.867351 ], [ 34.101562, -11.867351 ], [ 34.101562, -12.897489 ], [ 34.453125, -12.897489 ], [ 34.453125, -13.581921 ], [ 35.156250, -13.581921 ], [ 35.156250, -14.264383 ], [ 35.507812, -14.264383 ], [ 35.507812, -15.961329 ], [ 35.156250, -15.961329 ], [ 35.156250, -16.299051 ], [ 34.804688, -16.299051 ], [ 34.804688, -16.636192 ], [ 34.453125, -16.636192 ], [ 34.453125, -16.299051 ], [ 34.101562, -16.299051 ], [ 34.101562, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 33.750000, -14.604847 ], [ 33.750000, -14.264383 ], [ 33.046875, -14.264383 ], [ 33.046875, -13.923404 ], [ 32.343750, -13.923404 ], [ 32.343750, -13.239945 ], [ 32.695312, -13.239945 ], [ 32.695312, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -10.487812 ], [ 33.398438, -10.487812 ], [ 33.398438, -10.141932 ], [ 33.046875, -10.141932 ], [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ], [ 32.695312, -9.102097 ], [ 33.398438, -9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.487812 ], [ 40.429688, -14.604847 ], [ 40.781250, -14.604847 ], [ 40.781250, -14.944785 ], [ 40.429688, -14.944785 ], [ 40.429688, -15.623037 ], [ 40.078125, -15.623037 ], [ 40.078125, -16.299051 ], [ 39.726562, -16.299051 ], [ 39.726562, -16.636192 ], [ 39.375000, -16.636192 ], [ 39.375000, -16.972741 ], [ 38.671875, -16.972741 ], [ 38.671875, -17.308688 ], [ 37.968750, -17.308688 ], [ 37.968750, -17.644022 ], [ 37.265625, -17.644022 ], [ 37.265625, -17.978733 ], [ 36.914062, -17.978733 ], [ 36.914062, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.979026 ], [ 35.859375, -18.979026 ], [ 35.859375, -19.311143 ], [ 35.507812, -19.311143 ], [ 35.507812, -19.642588 ], [ 34.804688, -19.642588 ], [ 34.804688, -20.961440 ], [ 35.156250, -20.961440 ], [ 35.156250, -21.616579 ], [ 35.507812, -21.616579 ], [ 35.507812, -24.527135 ], [ 34.804688, -24.527135 ], [ 34.804688, -24.846565 ], [ 34.101562, -24.846565 ], [ 34.101562, -25.165173 ], [ 33.398438, -25.165173 ], [ 33.398438, -25.482951 ], [ 33.046875, -25.482951 ], [ 33.046875, -25.799891 ], [ 32.695312, -25.799891 ], [ 32.695312, -26.115986 ], [ 33.046875, -26.115986 ], [ 33.046875, -26.431228 ], [ 32.695312, -26.431228 ], [ 32.695312, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -25.799891 ], [ 31.640625, -25.799891 ], [ 31.640625, -25.165173 ], [ 31.992188, -25.165173 ], [ 31.992188, -24.206890 ], [ 31.640625, -24.206890 ], [ 31.640625, -22.917923 ], [ 31.289062, -22.917923 ], [ 31.289062, -22.268764 ], [ 31.640625, -22.268764 ], [ 31.640625, -21.616579 ], [ 31.992188, -21.616579 ], [ 31.992188, -21.289374 ], [ 32.343750, -21.289374 ], [ 32.343750, -20.303418 ], [ 32.695312, -20.303418 ], [ 32.695312, -16.636192 ], [ 32.343750, -16.636192 ], [ 32.343750, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -15.961329 ], [ 30.234375, -15.961329 ], [ 30.234375, -14.944785 ], [ 30.937500, -14.944785 ], [ 30.937500, -14.604847 ], [ 31.992188, -14.604847 ], [ 31.992188, -14.264383 ], [ 32.695312, -14.264383 ], [ 32.695312, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.264383 ], [ 33.398438, -14.264383 ], [ 33.398438, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -16.299051 ], [ 35.507812, -16.299051 ], [ 35.507812, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -14.604847 ], [ 35.507812, -14.604847 ], [ 35.507812, -14.264383 ], [ 35.156250, -14.264383 ], [ 35.156250, -13.923404 ], [ 34.804688, -13.923404 ], [ 34.804688, -13.581921 ], [ 34.453125, -13.581921 ], [ 34.453125, -11.523088 ], [ 35.507812, -11.523088 ], [ 35.507812, -11.867351 ], [ 36.914062, -11.867351 ], [ 36.914062, -11.523088 ], [ 37.968750, -11.523088 ], [ 37.968750, -11.178402 ], [ 39.023438, -11.178402 ], [ 39.023438, -10.833306 ], [ 40.078125, -10.833306 ], [ 40.078125, -10.487812 ], [ 40.429688, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.487812 ], [ 40.429688, -15.623037 ], [ 40.078125, -15.623037 ], [ 40.078125, -16.299051 ], [ 39.726562, -16.299051 ], [ 39.726562, -16.636192 ], [ 39.023438, -16.636192 ], [ 39.023438, -16.972741 ], [ 37.968750, -16.972741 ], [ 37.968750, -17.308688 ], [ 37.265625, -17.308688 ], [ 37.265625, -17.644022 ], [ 36.914062, -17.644022 ], [ 36.914062, -17.978733 ], [ 36.562500, -17.978733 ], [ 36.562500, -18.646245 ], [ 35.859375, -18.646245 ], [ 35.859375, -18.979026 ], [ 35.507812, -18.979026 ], [ 35.507812, -19.311143 ], [ 35.156250, -19.311143 ], [ 35.156250, -19.642588 ], [ 34.453125, -19.642588 ], [ 34.453125, -20.632784 ], [ 34.804688, -20.632784 ], [ 34.804688, -20.961440 ], [ 35.156250, -20.961440 ], [ 35.156250, -21.943046 ], [ 35.507812, -21.943046 ], [ 35.507812, -23.241346 ], [ 35.156250, -23.241346 ], [ 35.156250, -23.563987 ], [ 35.507812, -23.563987 ], [ 35.507812, -23.885838 ], [ 35.156250, -23.885838 ], [ 35.156250, -24.206890 ], [ 34.804688, -24.206890 ], [ 34.804688, -24.527135 ], [ 34.101562, -24.527135 ], [ 34.101562, -24.846565 ], [ 33.398438, -24.846565 ], [ 33.398438, -25.165173 ], [ 32.695312, -25.165173 ], [ 32.695312, -25.482951 ], [ 32.343750, -25.482951 ], [ 32.343750, -26.115986 ], [ 32.695312, -26.115986 ], [ 32.695312, -26.431228 ], [ 31.640625, -26.431228 ], [ 31.640625, -23.241346 ], [ 31.289062, -23.241346 ], [ 31.289062, -22.593726 ], [ 30.937500, -22.593726 ], [ 30.937500, -21.943046 ], [ 31.289062, -21.943046 ], [ 31.289062, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -19.973349 ], [ 32.695312, -19.973349 ], [ 32.695312, -19.642588 ], [ 32.343750, -19.642588 ], [ 32.343750, -18.312811 ], [ 32.695312, -18.312811 ], [ 32.695312, -16.636192 ], [ 31.992188, -16.636192 ], [ 31.992188, -16.299051 ], [ 31.289062, -16.299051 ], [ 31.289062, -15.961329 ], [ 30.937500, -15.961329 ], [ 30.937500, -15.623037 ], [ 30.234375, -15.623037 ], [ 30.234375, -14.944785 ], [ 29.882812, -14.944785 ], [ 29.882812, -14.604847 ], [ 30.937500, -14.604847 ], [ 30.937500, -14.264383 ], [ 32.343750, -14.264383 ], [ 32.343750, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.264383 ], [ 33.750000, -14.264383 ], [ 33.750000, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 34.101562, -15.284185 ], [ 34.101562, -16.299051 ], [ 34.453125, -16.299051 ], [ 34.453125, -16.636192 ], [ 34.804688, -16.636192 ], [ 34.804688, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -15.961329 ], [ 35.507812, -15.961329 ], [ 35.507812, -14.264383 ], [ 35.156250, -14.264383 ], [ 35.156250, -13.581921 ], [ 34.453125, -13.581921 ], [ 34.453125, -12.897489 ], [ 34.101562, -12.897489 ], [ 34.101562, -11.867351 ], [ 34.453125, -11.867351 ], [ 34.453125, -11.178402 ], [ 35.507812, -11.178402 ], [ 35.507812, -11.523088 ], [ 37.617188, -11.523088 ], [ 37.617188, -11.178402 ], [ 39.023438, -11.178402 ], [ 39.023438, -10.833306 ], [ 39.726562, -10.833306 ], [ 39.726562, -10.487812 ], [ 40.429688, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, -17.644022 ], [ 25.312500, -18.312811 ], [ 25.664062, -18.312811 ], [ 25.664062, -18.646245 ], [ 26.015625, -18.646245 ], [ 26.015625, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.973349 ], [ 27.070312, -19.973349 ], [ 27.070312, -20.303418 ], [ 27.421875, -20.303418 ], [ 27.421875, -20.632784 ], [ 27.773438, -20.632784 ], [ 27.773438, -21.289374 ], [ 28.125000, -21.289374 ], [ 28.125000, -21.616579 ], [ 28.828125, -21.616579 ], [ 28.828125, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.268764 ], [ 29.179688, -22.268764 ], [ 29.179688, -22.593726 ], [ 28.476562, -22.593726 ], [ 28.476562, -22.917923 ], [ 28.125000, -22.917923 ], [ 28.125000, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.885838 ], [ 26.718750, -23.885838 ], [ 26.718750, -24.527135 ], [ 26.367188, -24.527135 ], [ 26.367188, -24.846565 ], [ 26.015625, -24.846565 ], [ 26.015625, -25.165173 ], [ 25.664062, -25.165173 ], [ 25.664062, -25.799891 ], [ 23.906250, -25.799891 ], [ 23.906250, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.431228 ], [ 22.148438, -26.431228 ], [ 22.148438, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 20.039062, -25.165173 ], [ 20.039062, -21.943046 ], [ 20.742188, -21.943046 ], [ 20.742188, -18.312811 ], [ 22.851562, -18.312811 ], [ 22.851562, -17.978733 ], [ 23.203125, -17.978733 ], [ 23.203125, -18.312811 ], [ 24.257812, -18.312811 ], [ 24.257812, -17.978733 ], [ 24.960938, -17.978733 ], [ 24.960938, -17.644022 ], [ 25.312500, -17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, -17.644022 ], [ 24.960938, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.979026 ], [ 26.015625, -18.979026 ], [ 26.015625, -19.311143 ], [ 26.367188, -19.311143 ], [ 26.367188, -19.642588 ], [ 26.718750, -19.642588 ], [ 26.718750, -20.303418 ], [ 27.421875, -20.303418 ], [ 27.421875, -20.961440 ], [ 27.773438, -20.961440 ], [ 27.773438, -21.616579 ], [ 28.476562, -21.616579 ], [ 28.476562, -21.943046 ], [ 29.179688, -21.943046 ], [ 29.179688, -22.268764 ], [ 28.476562, -22.268764 ], [ 28.476562, -22.593726 ], [ 27.773438, -22.593726 ], [ 27.773438, -22.917923 ], [ 27.421875, -22.917923 ], [ 27.421875, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.885838 ], [ 26.718750, -23.885838 ], [ 26.718750, -24.527135 ], [ 25.664062, -24.527135 ], [ 25.664062, -25.482951 ], [ 23.554688, -25.482951 ], [ 23.554688, -25.165173 ], [ 23.203125, -25.165173 ], [ 23.203125, -25.482951 ], [ 22.500000, -25.482951 ], [ 22.500000, -26.115986 ], [ 21.796875, -26.115986 ], [ 21.796875, -26.431228 ], [ 21.445312, -26.431228 ], [ 21.445312, -26.745610 ], [ 20.390625, -26.745610 ], [ 20.390625, -26.115986 ], [ 20.742188, -26.115986 ], [ 20.742188, -25.799891 ], [ 20.390625, -25.799891 ], [ 20.390625, -25.165173 ], [ 20.039062, -25.165173 ], [ 20.039062, -24.846565 ], [ 19.687500, -24.846565 ], [ 19.687500, -21.616579 ], [ 20.742188, -21.616579 ], [ 20.742188, -17.978733 ], [ 22.500000, -17.978733 ], [ 22.500000, -17.644022 ], [ 22.851562, -17.644022 ], [ 22.851562, -17.978733 ], [ 23.906250, -17.978733 ], [ 23.906250, -17.644022 ], [ 24.960938, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, -21.943046 ], [ 29.882812, -22.268764 ], [ 31.289062, -22.268764 ], [ 31.289062, -22.917923 ], [ 31.640625, -22.917923 ], [ 31.640625, -24.206890 ], [ 31.992188, -24.206890 ], [ 31.992188, -25.165173 ], [ 31.640625, -25.165173 ], [ 31.640625, -25.799891 ], [ 30.937500, -25.799891 ], [ 30.937500, -26.431228 ], [ 30.585938, -26.431228 ], [ 30.585938, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -27.371767 ], [ 31.992188, -27.371767 ], [ 31.992188, -26.745610 ], [ 32.695312, -26.745610 ], [ 32.695312, -27.994401 ], [ 32.343750, -27.994401 ], [ 32.343750, -28.921631 ], [ 31.992188, -28.921631 ], [ 31.992188, -29.228890 ], [ 31.640625, -29.228890 ], [ 31.640625, -29.535230 ], [ 31.289062, -29.535230 ], [ 31.289062, -29.840644 ], [ 30.937500, -29.840644 ], [ 30.937500, -30.145127 ], [ 30.585938, -30.145127 ], [ 30.585938, -30.751278 ], [ 30.234375, -30.751278 ], [ 30.234375, -31.052934 ], [ 29.882812, -31.052934 ], [ 29.882812, -31.353637 ], [ 29.531250, -31.353637 ], [ 29.531250, -31.653381 ], [ 29.179688, -31.653381 ], [ 29.179688, -32.249974 ], [ 28.828125, -32.249974 ], [ 28.828125, -32.546813 ], [ 28.476562, -32.546813 ], [ 28.476562, -32.842674 ], [ 28.125000, -32.842674 ], [ 28.125000, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.724340 ], [ 26.015625, -33.724340 ], [ 26.015625, -34.016242 ], [ 23.906250, -34.016242 ], [ 23.906250, -33.724340 ], [ 23.554688, -33.724340 ], [ 23.554688, -34.016242 ], [ 21.796875, -34.016242 ], [ 21.796875, -34.307144 ], [ 20.742188, -34.307144 ], [ 20.742188, -34.597042 ], [ 20.390625, -34.597042 ], [ 20.390625, -34.885931 ], [ 19.335938, -34.885931 ], [ 19.335938, -34.597042 ], [ 18.984375, -34.597042 ], [ 18.984375, -34.307144 ], [ 18.281250, -34.307144 ], [ 18.281250, -32.842674 ], [ 17.929688, -32.842674 ], [ 17.929688, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.653381 ], [ 17.929688, -31.653381 ], [ 17.929688, -31.052934 ], [ 17.578125, -31.052934 ], [ 17.578125, -30.448674 ], [ 17.226562, -30.448674 ], [ 17.226562, -29.840644 ], [ 16.875000, -29.840644 ], [ 16.875000, -29.228890 ], [ 16.523438, -29.228890 ], [ 16.523438, -28.921631 ], [ 16.171875, -28.921631 ], [ 16.171875, -28.613459 ], [ 16.523438, -28.613459 ], [ 16.523438, -28.304381 ], [ 17.226562, -28.304381 ], [ 17.226562, -28.921631 ], [ 19.687500, -28.921631 ], [ 19.687500, -28.613459 ], [ 20.039062, -28.613459 ], [ 20.039062, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 20.742188, -25.799891 ], [ 20.742188, -26.745610 ], [ 22.148438, -26.745610 ], [ 22.148438, -26.431228 ], [ 22.500000, -26.431228 ], [ 22.500000, -25.799891 ], [ 22.851562, -25.799891 ], [ 22.851562, -25.482951 ], [ 23.906250, -25.482951 ], [ 23.906250, -25.799891 ], [ 25.664062, -25.799891 ], [ 25.664062, -25.165173 ], [ 26.015625, -25.165173 ], [ 26.015625, -24.846565 ], [ 26.367188, -24.846565 ], [ 26.367188, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.885838 ], [ 27.070312, -23.885838 ], [ 27.070312, -23.563987 ], [ 27.421875, -23.563987 ], [ 27.421875, -23.241346 ], [ 28.125000, -23.241346 ], [ 28.125000, -22.917923 ], [ 28.476562, -22.917923 ], [ 28.476562, -22.593726 ], [ 29.179688, -22.593726 ], [ 29.179688, -22.268764 ], [ 29.531250, -22.268764 ], [ 29.531250, -21.943046 ], [ 29.882812, -21.943046 ] ], [ [ 28.125000, -29.228890 ], [ 27.421875, -29.228890 ], [ 27.421875, -29.535230 ], [ 27.070312, -29.535230 ], [ 27.070312, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -30.751278 ], [ 28.125000, -30.751278 ], [ 28.125000, -30.145127 ], [ 29.179688, -30.145127 ], [ 29.179688, -29.228890 ], [ 28.828125, -29.228890 ], [ 28.828125, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.228890 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -21.943046 ], [ 30.937500, -22.593726 ], [ 31.289062, -22.593726 ], [ 31.289062, -23.241346 ], [ 31.640625, -23.241346 ], [ 31.640625, -25.799891 ], [ 31.289062, -25.799891 ], [ 31.289062, -25.482951 ], [ 30.937500, -25.482951 ], [ 30.937500, -26.115986 ], [ 30.585938, -26.115986 ], [ 30.585938, -27.059126 ], [ 31.640625, -27.059126 ], [ 31.640625, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -26.431228 ], [ 32.695312, -26.431228 ], [ 32.695312, -27.059126 ], [ 32.343750, -27.059126 ], [ 32.343750, -28.304381 ], [ 31.992188, -28.304381 ], [ 31.992188, -28.921631 ], [ 31.640625, -28.921631 ], [ 31.640625, -29.228890 ], [ 31.289062, -29.228890 ], [ 31.289062, -29.535230 ], [ 30.937500, -29.535230 ], [ 30.937500, -29.840644 ], [ 30.585938, -29.840644 ], [ 30.585938, -30.448674 ], [ 30.234375, -30.448674 ], [ 30.234375, -31.052934 ], [ 29.882812, -31.052934 ], [ 29.882812, -31.353637 ], [ 29.531250, -31.353637 ], [ 29.531250, -31.653381 ], [ 29.179688, -31.653381 ], [ 29.179688, -31.952162 ], [ 28.828125, -31.952162 ], [ 28.828125, -32.249974 ], [ 28.476562, -32.249974 ], [ 28.476562, -32.546813 ], [ 28.125000, -32.546813 ], [ 28.125000, -32.842674 ], [ 27.773438, -32.842674 ], [ 27.773438, -33.137551 ], [ 27.070312, -33.137551 ], [ 27.070312, -33.431441 ], [ 25.664062, -33.431441 ], [ 25.664062, -33.724340 ], [ 22.148438, -33.724340 ], [ 22.148438, -34.016242 ], [ 21.093750, -34.016242 ], [ 21.093750, -34.307144 ], [ 20.390625, -34.307144 ], [ 20.390625, -34.597042 ], [ 18.984375, -34.597042 ], [ 18.984375, -34.307144 ], [ 18.632812, -34.307144 ], [ 18.632812, -34.016242 ], [ 17.929688, -34.016242 ], [ 17.929688, -32.842674 ], [ 17.578125, -32.842674 ], [ 17.578125, -32.546813 ], [ 17.929688, -32.546813 ], [ 17.929688, -31.353637 ], [ 17.578125, -31.353637 ], [ 17.578125, -30.751278 ], [ 17.226562, -30.751278 ], [ 17.226562, -30.145127 ], [ 16.875000, -30.145127 ], [ 16.875000, -29.535230 ], [ 16.523438, -29.535230 ], [ 16.523438, -28.921631 ], [ 16.171875, -28.921631 ], [ 16.171875, -28.304381 ], [ 16.875000, -28.304381 ], [ 16.875000, -28.613459 ], [ 17.578125, -28.613459 ], [ 17.578125, -28.921631 ], [ 19.335938, -28.921631 ], [ 19.335938, -28.613459 ], [ 19.687500, -28.613459 ], [ 19.687500, -24.846565 ], [ 20.039062, -24.846565 ], [ 20.039062, -25.165173 ], [ 20.390625, -25.165173 ], [ 20.390625, -25.799891 ], [ 20.742188, -25.799891 ], [ 20.742188, -26.115986 ], [ 20.390625, -26.115986 ], [ 20.390625, -26.745610 ], [ 21.445312, -26.745610 ], [ 21.445312, -26.431228 ], [ 21.796875, -26.431228 ], [ 21.796875, -26.115986 ], [ 22.500000, -26.115986 ], [ 22.500000, -25.482951 ], [ 23.203125, -25.482951 ], [ 23.203125, -25.165173 ], [ 23.554688, -25.165173 ], [ 23.554688, -25.482951 ], [ 25.664062, -25.482951 ], [ 25.664062, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -23.885838 ], [ 27.070312, -23.885838 ], [ 27.070312, -23.563987 ], [ 27.421875, -23.563987 ], [ 27.421875, -22.917923 ], [ 27.773438, -22.917923 ], [ 27.773438, -22.593726 ], [ 28.476562, -22.593726 ], [ 28.476562, -22.268764 ], [ 29.179688, -22.268764 ], [ 29.179688, -21.943046 ], [ 29.531250, -21.943046 ], [ 29.531250, -22.268764 ], [ 30.585938, -22.268764 ], [ 30.585938, -21.943046 ], [ 30.937500, -21.943046 ] ], [ [ 27.773438, -28.921631 ], [ 27.421875, -28.921631 ], [ 27.421875, -29.535230 ], [ 27.070312, -29.535230 ], [ 27.070312, -29.840644 ], [ 26.718750, -29.840644 ], [ 26.718750, -30.145127 ], [ 27.070312, -30.145127 ], [ 27.070312, -30.448674 ], [ 28.125000, -30.448674 ], [ 28.125000, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -29.535230 ], [ 29.179688, -29.535230 ], [ 29.179688, -29.228890 ], [ 28.828125, -29.228890 ], [ 28.828125, -28.921631 ], [ 28.476562, -28.921631 ], [ 28.476562, -28.613459 ], [ 27.773438, -28.613459 ], [ 27.773438, -28.921631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.992188, -25.799891 ], [ 31.992188, -27.371767 ], [ 30.937500, -27.371767 ], [ 30.937500, -27.059126 ], [ 30.585938, -27.059126 ], [ 30.585938, -26.431228 ], [ 30.937500, -26.431228 ], [ 30.937500, -25.799891 ], [ 31.992188, -25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.289062, -25.482951 ], [ 31.289062, -25.799891 ], [ 31.640625, -25.799891 ], [ 31.640625, -26.431228 ], [ 31.992188, -26.431228 ], [ 31.992188, -26.745610 ], [ 31.640625, -26.745610 ], [ 31.640625, -27.059126 ], [ 30.585938, -27.059126 ], [ 30.585938, -26.115986 ], [ 30.937500, -26.115986 ], [ 30.937500, -25.482951 ], [ 31.289062, -25.482951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.921631 ], [ 28.828125, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.751278 ], [ 27.421875, -30.751278 ], [ 27.421875, -30.145127 ], [ 27.070312, -30.145127 ], [ 27.070312, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -29.228890 ], [ 28.125000, -29.228890 ], [ 28.125000, -28.921631 ], [ 28.828125, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, -28.613459 ], [ 28.476562, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -29.535230 ], [ 28.828125, -29.535230 ], [ 28.828125, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.448674 ], [ 27.070312, -30.448674 ], [ 27.070312, -30.145127 ], [ 26.718750, -30.145127 ], [ 26.718750, -29.840644 ], [ 27.070312, -29.840644 ], [ 27.070312, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -28.921631 ], [ 27.773438, -28.921631 ], [ 27.773438, -28.613459 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.570312, -12.554564 ], [ 49.570312, -12.897489 ], [ 49.921875, -12.897489 ], [ 49.921875, -14.264383 ], [ 50.273438, -14.264383 ], [ 50.273438, -14.944785 ], [ 50.625000, -14.944785 ], [ 50.625000, -15.623037 ], [ 49.570312, -15.623037 ], [ 49.570312, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -16.972741 ], [ 49.570312, -16.972741 ], [ 49.570312, -18.312811 ], [ 49.218750, -18.312811 ], [ 49.218750, -18.979026 ], [ 48.867188, -18.979026 ], [ 48.867188, -19.973349 ], [ 48.515625, -19.973349 ], [ 48.515625, -21.289374 ], [ 48.164062, -21.289374 ], [ 48.164062, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -23.241346 ], [ 47.460938, -23.241346 ], [ 47.460938, -24.527135 ], [ 47.109375, -24.527135 ], [ 47.109375, -25.165173 ], [ 46.054688, -25.165173 ], [ 46.054688, -25.482951 ], [ 44.648438, -25.482951 ], [ 44.648438, -25.165173 ], [ 43.945312, -25.165173 ], [ 43.945312, -24.846565 ], [ 43.593750, -24.846565 ], [ 43.593750, -23.241346 ], [ 43.242188, -23.241346 ], [ 43.242188, -21.616579 ], [ 43.593750, -21.616579 ], [ 43.593750, -21.289374 ], [ 43.945312, -21.289374 ], [ 43.945312, -20.632784 ], [ 44.296875, -20.632784 ], [ 44.296875, -18.646245 ], [ 43.945312, -18.646245 ], [ 43.945312, -17.308688 ], [ 44.296875, -17.308688 ], [ 44.296875, -16.299051 ], [ 45.351562, -16.299051 ], [ 45.351562, -15.961329 ], [ 46.406250, -15.961329 ], [ 46.406250, -15.623037 ], [ 46.757812, -15.623037 ], [ 46.757812, -15.284185 ], [ 47.109375, -15.284185 ], [ 47.109375, -14.944785 ], [ 47.812500, -14.944785 ], [ 47.812500, -14.264383 ], [ 48.164062, -14.264383 ], [ 48.164062, -13.923404 ], [ 48.515625, -13.923404 ], [ 48.515625, -13.581921 ], [ 48.867188, -13.581921 ], [ 48.867188, -12.554564 ], [ 49.570312, -12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -12.211180 ], [ 49.218750, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -13.239945 ], [ 49.921875, -13.239945 ], [ 49.921875, -14.944785 ], [ 50.273438, -14.944785 ], [ 50.273438, -15.961329 ], [ 49.921875, -15.961329 ], [ 49.921875, -15.623037 ], [ 49.570312, -15.623037 ], [ 49.570312, -16.972741 ], [ 49.218750, -16.972741 ], [ 49.218750, -18.312811 ], [ 48.867188, -18.312811 ], [ 48.867188, -19.642588 ], [ 48.515625, -19.642588 ], [ 48.515625, -20.961440 ], [ 48.164062, -20.961440 ], [ 48.164062, -21.943046 ], [ 47.812500, -21.943046 ], [ 47.812500, -22.917923 ], [ 47.460938, -22.917923 ], [ 47.460938, -23.885838 ], [ 47.109375, -23.885838 ], [ 47.109375, -24.527135 ], [ 46.757812, -24.527135 ], [ 46.757812, -25.165173 ], [ 46.054688, -25.165173 ], [ 46.054688, -25.482951 ], [ 44.648438, -25.482951 ], [ 44.648438, -25.165173 ], [ 43.945312, -25.165173 ], [ 43.945312, -24.527135 ], [ 43.593750, -24.527135 ], [ 43.593750, -23.241346 ], [ 43.242188, -23.241346 ], [ 43.242188, -21.289374 ], [ 43.593750, -21.289374 ], [ 43.593750, -20.632784 ], [ 43.945312, -20.632784 ], [ 43.945312, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -18.979026 ], [ 43.945312, -18.979026 ], [ 43.945312, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -15.961329 ], [ 45.703125, -15.961329 ], [ 45.703125, -15.623037 ], [ 46.406250, -15.623037 ], [ 46.406250, -15.284185 ], [ 46.757812, -15.284185 ], [ 46.757812, -14.944785 ], [ 47.109375, -14.944785 ], [ 47.109375, -14.604847 ], [ 47.460938, -14.604847 ], [ 47.460938, -14.264383 ], [ 47.812500, -14.264383 ], [ 47.812500, -13.581921 ], [ 48.164062, -13.581921 ], [ 48.164062, -13.239945 ], [ 48.515625, -13.239945 ], [ 48.515625, -12.211180 ], [ 49.218750, -12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.960938, -48.922499 ], [ 69.960938, -49.152970 ], [ 70.664062, -49.152970 ], [ 70.664062, -49.382373 ], [ 70.312500, -49.382373 ], [ 70.312500, -49.610710 ], [ 69.960938, -49.610710 ], [ 69.960938, -49.837982 ], [ 68.906250, -49.837982 ], [ 68.906250, -49.610710 ], [ 68.554688, -49.610710 ], [ 68.554688, -49.152970 ], [ 68.906250, -49.152970 ], [ 68.906250, -48.922499 ], [ 69.960938, -48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.257812, -48.690960 ], [ 69.257812, -48.922499 ], [ 70.312500, -48.922499 ], [ 70.312500, -49.382373 ], [ 69.960938, -49.382373 ], [ 69.960938, -49.610710 ], [ 68.554688, -49.610710 ], [ 68.554688, -48.690960 ], [ 69.257812, -48.690960 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 55.178868 ], [ -1.406250, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.367759 ], [ -0.351562, 54.367759 ], [ -0.351562, 53.956086 ], [ 0.000000, 53.956086 ], [ 0.000000, 53.540307 ], [ 0.351562, 53.540307 ], [ 0.351562, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.268157 ], [ 1.406250, 52.268157 ], [ 1.406250, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.406250, 51.618017 ], [ 1.406250, 51.179343 ], [ 1.054688, 51.179343 ], [ 1.054688, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.513427 ], [ -1.757812, 50.513427 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 55.178868 ], [ -1.406250, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.162434 ], [ -0.351562, 54.162434 ], [ -0.351562, 53.540307 ], [ 0.000000, 53.540307 ], [ 0.000000, 53.120405 ], [ 0.703125, 53.120405 ], [ 0.703125, 52.908902 ], [ 1.406250, 52.908902 ], [ 1.406250, 52.052490 ], [ 1.054688, 52.052490 ], [ 1.054688, 51.835778 ], [ 0.703125, 51.835778 ], [ 0.703125, 51.618017 ], [ 1.054688, 51.618017 ], [ 1.054688, 51.399206 ], [ 1.406250, 51.399206 ], [ 1.406250, 51.179343 ], [ 0.703125, 51.179343 ], [ 0.703125, 50.958427 ], [ -1.054688, 50.958427 ], [ -1.054688, 50.736455 ], [ -1.757812, 50.736455 ], [ -1.757812, 55.178868 ], [ -1.406250, 55.178868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.492188, 42.811522 ], [ 9.492188, 41.771312 ], [ 9.140625, 41.771312 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.771312 ], [ 8.437500, 41.771312 ], [ 8.437500, 42.293564 ], [ 8.789062, 42.293564 ], [ 8.789062, 42.553080 ], [ 9.140625, 42.553080 ], [ 9.140625, 42.811522 ], [ 9.492188, 42.811522 ] ] ], [ [ [ 2.812500, 50.958427 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.513427 ], [ 3.515625, 50.513427 ], [ 3.515625, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 49.837982 ], [ 5.273438, 49.837982 ], [ 5.273438, 49.610710 ], [ 5.625000, 49.610710 ], [ 5.625000, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.152970 ], [ 7.031250, 49.152970 ], [ 7.031250, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 47.754098 ], [ 7.382812, 47.754098 ], [ 7.382812, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.040182 ], [ 6.328125, 47.040182 ], [ 6.328125, 46.800059 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.316584 ], [ 6.328125, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.590467 ], [ 7.031250, 44.590467 ], [ 7.031250, 44.087585 ], [ 7.382812, 44.087585 ], [ 7.382812, 43.325178 ], [ 7.031250, 43.325178 ], [ 7.031250, 43.068888 ], [ 5.273438, 43.068888 ], [ 5.273438, 43.325178 ], [ 4.218750, 43.325178 ], [ 4.218750, 43.068888 ], [ 3.164062, 43.068888 ], [ 3.164062, 42.811522 ], [ 2.812500, 42.811522 ], [ 2.812500, 42.553080 ], [ 2.460938, 42.553080 ], [ 2.460938, 42.293564 ], [ 1.406250, 42.293564 ], [ 1.406250, 42.553080 ], [ -0.351562, 42.553080 ], [ -0.351562, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 45.089036 ], [ -1.054688, 45.089036 ], [ -1.054688, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.757812, 46.316584 ], [ -1.757812, 49.382373 ], [ -0.351562, 49.382373 ], [ -0.351562, 49.610710 ], [ 0.351562, 49.610710 ], [ 0.351562, 49.837982 ], [ 1.054688, 49.837982 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.757812, 50.513427 ], [ 1.757812, 50.958427 ], [ 2.812500, 50.958427 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.140625, 42.811522 ], [ 9.140625, 42.553080 ], [ 9.492188, 42.553080 ], [ 9.492188, 41.771312 ], [ 9.140625, 41.771312 ], [ 9.140625, 41.508577 ], [ 8.437500, 41.508577 ], [ 8.437500, 42.811522 ], [ 9.140625, 42.811522 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 2.812500, 50.958427 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.513427 ], [ 3.515625, 50.513427 ], [ 3.515625, 50.289339 ], [ 3.867188, 50.289339 ], [ 3.867188, 50.064192 ], [ 4.570312, 50.064192 ], [ 4.570312, 49.837982 ], [ 5.273438, 49.837982 ], [ 5.273438, 49.610710 ], [ 5.976562, 49.610710 ], [ 5.976562, 49.382373 ], [ 7.031250, 49.382373 ], [ 7.031250, 49.152970 ], [ 8.085938, 49.152970 ], [ 8.085938, 48.922499 ], [ 7.734375, 48.922499 ], [ 7.734375, 48.458352 ], [ 7.382812, 48.458352 ], [ 7.382812, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.279229 ], [ 6.328125, 47.279229 ], [ 6.328125, 46.800059 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.679688, 46.316584 ], [ 6.679688, 45.583290 ], [ 7.031250, 45.583290 ], [ 7.031250, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.339565 ], [ 7.382812, 44.339565 ], [ 7.382812, 43.580391 ], [ 6.679688, 43.580391 ], [ 6.679688, 43.325178 ], [ 4.921875, 43.325178 ], [ 4.921875, 43.580391 ], [ 3.867188, 43.580391 ], [ 3.867188, 43.325178 ], [ 2.812500, 43.325178 ], [ 2.812500, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.811522 ], [ -1.054688, 42.811522 ], [ -1.054688, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 46.316584 ], [ -1.757812, 46.316584 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.837982 ], [ 0.351562, 49.837982 ], [ 0.351562, 50.064192 ], [ 1.054688, 50.064192 ], [ 1.054688, 50.513427 ], [ 1.406250, 50.513427 ], [ 1.406250, 50.958427 ], [ 2.109375, 50.958427 ], [ 2.109375, 51.179343 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.293564 ], [ 2.460938, 42.293564 ], [ 2.460938, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 42.032974 ], [ 3.164062, 42.032974 ], [ 3.164062, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.244772 ], [ 1.757812, 41.244772 ], [ 1.757812, 40.979898 ], [ 0.703125, 40.979898 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 43.068888 ], [ -1.054688, 42.811522 ], [ 1.054688, 42.811522 ], [ 1.054688, 42.553080 ], [ 2.812500, 42.553080 ], [ 2.812500, 41.771312 ], [ 2.460938, 41.771312 ], [ 2.460938, 41.508577 ], [ 2.109375, 41.508577 ], [ 2.109375, 41.244772 ], [ 0.703125, 41.244772 ], [ 0.703125, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.639538 ], [ -0.351562, 39.639538 ], [ -0.351562, 39.095963 ], [ 0.000000, 39.095963 ], [ 0.000000, 38.548165 ], [ -0.703125, 38.548165 ], [ -0.703125, 37.718590 ], [ -1.757812, 37.718590 ], [ -1.757812, 43.068888 ], [ -1.054688, 43.068888 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 33.431441 ], [ -1.406250, 32.546813 ], [ -1.054688, 32.546813 ], [ -1.054688, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 33.431441 ], [ -1.406250, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 33.431441 ], [ -1.406250, 33.431441 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.406250, 22.917923 ], [ -1.406250, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.351562, 22.268764 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 1.054688, 21.289374 ], [ 1.054688, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.303418 ], [ 2.109375, 20.303418 ], [ 2.109375, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 3.867188, 16.636192 ], [ 3.867188, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 14.944785 ], [ -1.054688, 14.944785 ], [ -1.054688, 14.604847 ], [ -1.757812, 14.604847 ], [ -1.757812, 22.917923 ], [ -1.406250, 22.917923 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.054688, 22.593726 ], [ -1.054688, 22.268764 ], [ -0.703125, 22.268764 ], [ -0.703125, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 20.961440 ], [ 1.406250, 20.961440 ], [ 1.406250, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 19.973349 ], [ 2.812500, 19.973349 ], [ 2.812500, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.636192 ], [ 3.867188, 16.636192 ], [ 3.867188, 16.299051 ], [ 3.515625, 16.299051 ], [ 3.515625, 15.623037 ], [ 1.054688, 15.623037 ], [ 1.054688, 15.284185 ], [ 0.703125, 15.284185 ], [ 0.703125, 14.944785 ], [ -0.703125, 14.944785 ], [ -0.703125, 15.284185 ], [ -1.406250, 15.284185 ], [ -1.406250, 14.944785 ], [ -1.757812, 14.944785 ], [ -1.757812, 22.593726 ], [ -1.054688, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.239945 ], [ 1.054688, 13.239945 ], [ 1.054688, 12.897489 ], [ 1.406250, 12.897489 ], [ 1.406250, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 10.833306 ], [ 0.351562, 10.833306 ], [ 0.351562, 11.178402 ], [ -0.351562, 11.178402 ], [ -0.351562, 10.833306 ], [ -1.757812, 10.833306 ], [ -1.757812, 14.604847 ], [ -1.054688, 14.604847 ], [ -1.054688, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 15.284185 ], [ -0.703125, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 14.604847 ], [ 0.000000, 14.604847 ], [ 0.000000, 14.264383 ], [ 0.351562, 14.264383 ], [ 0.351562, 13.923404 ], [ 0.703125, 13.923404 ], [ 0.703125, 12.897489 ], [ 2.109375, 12.897489 ], [ 2.109375, 11.867351 ], [ 1.406250, 11.867351 ], [ 1.406250, 11.523088 ], [ 1.054688, 11.523088 ], [ 1.054688, 11.178402 ], [ -1.757812, 11.178402 ], [ -1.757812, 14.944785 ], [ -1.406250, 14.944785 ], [ -1.406250, 15.284185 ], [ -0.703125, 15.284185 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.013668 ], [ 0.703125, 7.013668 ], [ 0.703125, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.266008 ], [ -0.351562, 5.266008 ], [ -0.351562, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 10.833306 ], [ -0.351562, 10.833306 ], [ -0.351562, 10.487812 ], [ 0.351562, 10.487812 ], [ 0.351562, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 8.059230 ], [ 0.351562, 8.059230 ], [ 0.351562, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 5.965754 ], [ 0.351562, 5.965754 ], [ 0.351562, 5.615986 ], [ -0.703125, 5.615986 ], [ -0.703125, 5.266008 ], [ -1.406250, 5.266008 ], [ -1.406250, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.513427 ], [ 91.054688, 50.513427 ], [ 91.054688, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 87.890625, 49.382373 ], [ 87.890625, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.382373 ], [ 86.835938, 49.382373 ], [ 86.835938, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.610710 ], [ 85.429688, 49.610710 ], [ 85.429688, 49.837982 ], [ 85.078125, 49.837982 ], [ 85.078125, 50.064192 ], [ 84.375000, 50.064192 ], [ 84.375000, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.958427 ], [ 82.617188, 50.958427 ], [ 82.617188, 50.736455 ], [ 81.562500, 50.736455 ], [ 81.562500, 50.958427 ], [ 80.859375, 50.958427 ], [ 80.859375, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.101562, 51.618017 ], [ 79.101562, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.482780 ], [ 78.398438, 52.482780 ], [ 78.398438, 52.696361 ], [ 78.046875, 52.696361 ], [ 78.046875, 53.120405 ], [ 77.695312, 53.120405 ], [ 77.695312, 53.330873 ], [ 77.343750, 53.330873 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 53.956086 ], [ 75.585938, 53.956086 ], [ 75.585938, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 53.956086 ], [ 72.773438, 53.956086 ], [ 72.773438, 54.162434 ], [ 72.070312, 54.162434 ], [ 72.070312, 54.367759 ], [ 71.718750, 54.367759 ], [ 71.718750, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 55.178868 ], [ 69.609375, 55.178868 ], [ 69.609375, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 54.977614 ], [ 67.851562, 54.977614 ], [ 67.851562, 54.775346 ], [ 66.445312, 54.775346 ], [ 66.445312, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.367759 ], [ 64.335938, 54.367759 ], [ 64.335938, 54.162434 ], [ 62.578125, 54.162434 ], [ 62.578125, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.748711 ], [ 60.820312, 53.748711 ], [ 60.820312, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.523438, 53.330873 ], [ 61.523438, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.268157 ], [ 60.468750, 52.268157 ], [ 60.468750, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.062500, 50.513427 ], [ 59.062500, 50.736455 ], [ 58.359375, 50.736455 ], [ 58.359375, 50.958427 ], [ 56.953125, 50.958427 ], [ 56.953125, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.513427 ], [ 55.195312, 50.513427 ], [ 55.195312, 50.736455 ], [ 54.492188, 50.736455 ], [ 54.492188, 50.958427 ], [ 53.789062, 50.958427 ], [ 53.789062, 51.179343 ], [ 53.085938, 51.179343 ], [ 53.085938, 51.399206 ], [ 52.382812, 51.399206 ], [ 52.382812, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 50.736455 ], [ 49.218750, 50.736455 ], [ 49.218750, 50.513427 ], [ 48.867188, 50.513427 ], [ 48.867188, 50.064192 ], [ 48.515625, 50.064192 ], [ 48.515625, 49.837982 ], [ 48.164062, 49.837982 ], [ 48.164062, 50.064192 ], [ 47.812500, 50.064192 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 50.064192 ], [ 47.109375, 50.064192 ], [ 47.109375, 49.610710 ], [ 46.757812, 49.610710 ], [ 46.757812, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 48.922499 ], [ 46.757812, 48.922499 ], [ 46.757812, 48.458352 ], [ 46.406250, 48.458352 ], [ 46.406250, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 47.989922 ], [ 47.109375, 47.989922 ], [ 47.109375, 47.754098 ], [ 48.164062, 47.754098 ], [ 48.164062, 47.517201 ], [ 48.515625, 47.517201 ], [ 48.515625, 47.040182 ], [ 48.867188, 47.040182 ], [ 48.867188, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.316584 ], [ 49.218750, 46.316584 ], [ 49.218750, 46.073231 ], [ 48.867188, 46.073231 ], [ 48.867188, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.583290 ], [ 47.812500, 45.583290 ], [ 47.812500, 45.336702 ], [ 47.460938, 45.336702 ], [ 47.460938, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 47.109375, 44.339565 ], [ 47.109375, 43.834527 ], [ 47.460938, 43.834527 ], [ 47.460938, 42.811522 ], [ 47.812500, 42.811522 ], [ 47.812500, 42.293564 ], [ 48.164062, 42.293564 ], [ 48.164062, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.508577 ], [ 46.757812, 41.508577 ], [ 46.757812, 41.771312 ], [ 45.703125, 41.771312 ], [ 45.703125, 42.293564 ], [ 45.351562, 42.293564 ], [ 45.351562, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 42.811522 ], [ 43.242188, 42.811522 ], [ 43.242188, 43.068888 ], [ 42.539062, 43.068888 ], [ 42.539062, 43.325178 ], [ 39.726562, 43.325178 ], [ 39.726562, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 43.834527 ], [ 39.023438, 43.834527 ], [ 39.023438, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.339565 ], [ 37.968750, 44.339565 ], [ 37.968750, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 44.840291 ], [ 36.914062, 44.840291 ], [ 36.914062, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.336702 ], [ 37.617188, 45.336702 ], [ 37.617188, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.316584 ], [ 37.617188, 46.316584 ], [ 37.617188, 46.558860 ], [ 38.320312, 46.558860 ], [ 38.320312, 46.800059 ], [ 39.023438, 46.800059 ], [ 39.023438, 47.040182 ], [ 38.320312, 47.040182 ], [ 38.320312, 47.517201 ], [ 38.671875, 47.517201 ], [ 38.671875, 47.754098 ], [ 39.375000, 47.754098 ], [ 39.375000, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.922499 ], [ 40.078125, 48.922499 ], [ 40.078125, 49.610710 ], [ 39.023438, 49.610710 ], [ 39.023438, 49.837982 ], [ 37.617188, 49.837982 ], [ 37.617188, 50.064192 ], [ 37.265625, 50.064192 ], [ 37.265625, 50.289339 ], [ 35.859375, 50.289339 ], [ 35.859375, 50.513427 ], [ 35.507812, 50.513427 ], [ 35.507812, 50.958427 ], [ 35.156250, 50.958427 ], [ 35.156250, 51.179343 ], [ 34.101562, 51.179343 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.835778 ], [ 34.101562, 51.835778 ], [ 34.101562, 52.052490 ], [ 33.750000, 52.052490 ], [ 33.750000, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.052490 ], [ 31.640625, 52.052490 ], [ 31.640625, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.695312, 53.120405 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.540307 ], [ 31.640625, 53.540307 ], [ 31.640625, 53.956086 ], [ 31.289062, 53.956086 ], [ 31.289062, 54.162434 ], [ 30.937500, 54.162434 ], [ 30.937500, 54.572062 ], [ 30.585938, 54.572062 ], [ 30.585938, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.578345 ], [ 30.234375, 55.578345 ], [ 30.234375, 55.776573 ], [ 29.882812, 55.776573 ], [ 29.882812, 55.578345 ], [ 29.531250, 55.578345 ], [ 29.531250, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.365250 ], [ 27.773438, 56.365250 ], [ 27.773438, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.515823 ], [ 27.773438, 57.515823 ], [ 27.773438, 58.263287 ], [ 27.421875, 58.263287 ], [ 27.421875, 58.813742 ], [ 27.773438, 58.813742 ], [ 27.773438, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.534318 ], [ 28.476562, 59.534318 ], [ 28.476562, 59.712097 ], [ 28.828125, 59.712097 ], [ 28.828125, 59.888937 ], [ 29.179688, 59.888937 ], [ 29.179688, 60.064840 ], [ 28.828125, 60.064840 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.828125, 60.759160 ], [ 28.828125, 60.930432 ], [ 29.179688, 60.930432 ], [ 29.179688, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.234375, 61.606396 ], [ 30.234375, 61.773123 ], [ 30.585938, 61.773123 ], [ 30.585938, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.289062, 62.267923 ], [ 31.289062, 62.593341 ], [ 31.640625, 62.593341 ], [ 31.640625, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 63.233627 ], [ 30.234375, 63.233627 ], [ 30.234375, 63.391522 ], [ 29.882812, 63.391522 ], [ 29.882812, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.585938, 64.014496 ], [ 30.585938, 64.168107 ], [ 30.234375, 64.168107 ], [ 30.234375, 64.472794 ], [ 29.882812, 64.472794 ], [ 29.882812, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 65.072130 ], [ 29.882812, 65.072130 ], [ 29.882812, 65.512963 ], [ 30.234375, 65.512963 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.204032 ], [ 41.132812, 67.204032 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.014496 ], [ 37.265625, 64.014496 ], [ 37.265625, 64.320872 ], [ 36.914062, 64.320872 ], [ 36.914062, 64.623877 ], [ 36.562500, 64.623877 ], [ 36.562500, 64.774125 ], [ 36.914062, 64.774125 ], [ 36.914062, 64.923542 ], [ 37.968750, 64.923542 ], [ 37.968750, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.472794 ], [ 40.078125, 64.472794 ], [ 40.078125, 64.623877 ], [ 40.429688, 64.623877 ], [ 40.429688, 64.923542 ], [ 40.078125, 64.923542 ], [ 40.078125, 65.219894 ], [ 39.726562, 65.219894 ], [ 39.726562, 65.512963 ], [ 40.078125, 65.512963 ], [ 40.078125, 65.658275 ], [ 40.429688, 65.658275 ], [ 40.429688, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 45.703125, 67.204032 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.067433 ], [ 48.164062, 67.067433 ], [ 48.164062, 67.204032 ], [ 72.421875, 67.204032 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 66.930060 ], [ 74.179688, 66.930060 ], [ 74.179688, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.445312, 55.178868 ], [ 21.445312, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 54.775346 ], [ 22.851562, 54.775346 ], [ 22.851562, 54.572062 ], [ 22.500000, 54.572062 ], [ 22.500000, 54.367759 ], [ 19.687500, 54.367759 ], [ 19.687500, 54.572062 ], [ 20.039062, 54.572062 ], [ 20.039062, 54.775346 ], [ 20.390625, 54.775346 ], [ 20.390625, 54.977614 ], [ 21.093750, 54.977614 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.736455 ], [ 91.406250, 50.736455 ], [ 91.406250, 50.513427 ], [ 90.703125, 50.513427 ], [ 90.703125, 50.289339 ], [ 90.000000, 50.289339 ], [ 90.000000, 50.064192 ], [ 89.648438, 50.064192 ], [ 89.648438, 49.837982 ], [ 88.945312, 49.837982 ], [ 88.945312, 49.610710 ], [ 88.242188, 49.610710 ], [ 88.242188, 49.382373 ], [ 86.835938, 49.382373 ], [ 86.835938, 49.610710 ], [ 86.484375, 49.610710 ], [ 86.484375, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.736455 ], [ 83.671875, 50.736455 ], [ 83.671875, 50.958427 ], [ 83.320312, 50.958427 ], [ 83.320312, 51.179343 ], [ 82.968750, 51.179343 ], [ 82.968750, 50.958427 ], [ 81.210938, 50.958427 ], [ 81.210938, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.453125, 51.179343 ], [ 79.453125, 51.618017 ], [ 79.101562, 51.618017 ], [ 79.101562, 52.052490 ], [ 78.750000, 52.052490 ], [ 78.750000, 52.482780 ], [ 78.398438, 52.482780 ], [ 78.398438, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.540307 ], [ 77.343750, 53.540307 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.367759 ], [ 75.937500, 54.367759 ], [ 75.937500, 54.162434 ], [ 75.234375, 54.162434 ], [ 75.234375, 53.956086 ], [ 74.531250, 53.956086 ], [ 74.531250, 53.748711 ], [ 73.828125, 53.748711 ], [ 73.828125, 53.540307 ], [ 73.125000, 53.540307 ], [ 73.125000, 53.748711 ], [ 73.476562, 53.748711 ], [ 73.476562, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.367759 ], [ 71.367188, 54.367759 ], [ 71.367188, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.572062 ], [ 70.664062, 54.572062 ], [ 70.664062, 55.178868 ], [ 69.960938, 55.178868 ], [ 69.960938, 55.379110 ], [ 69.257812, 55.379110 ], [ 69.257812, 55.578345 ], [ 68.906250, 55.578345 ], [ 68.906250, 55.379110 ], [ 68.554688, 55.379110 ], [ 68.554688, 55.178868 ], [ 68.203125, 55.178868 ], [ 68.203125, 54.977614 ], [ 66.796875, 54.977614 ], [ 66.796875, 54.775346 ], [ 65.390625, 54.775346 ], [ 65.390625, 54.572062 ], [ 65.039062, 54.572062 ], [ 65.039062, 54.367759 ], [ 63.281250, 54.367759 ], [ 63.281250, 54.162434 ], [ 61.171875, 54.162434 ], [ 61.171875, 53.956086 ], [ 60.820312, 53.956086 ], [ 60.820312, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 52.908902 ], [ 60.468750, 52.908902 ], [ 60.468750, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.268157 ], [ 60.117188, 52.268157 ], [ 60.117188, 52.052490 ], [ 59.765625, 52.052490 ], [ 59.765625, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.618017 ], [ 61.171875, 51.618017 ], [ 61.171875, 51.399206 ], [ 61.523438, 51.399206 ], [ 61.523438, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 50.958427 ], [ 59.765625, 50.958427 ], [ 59.765625, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.179343 ], [ 56.601562, 51.179343 ], [ 56.601562, 50.958427 ], [ 55.898438, 50.958427 ], [ 55.898438, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.835778 ], [ 50.625000, 51.835778 ], [ 50.625000, 51.618017 ], [ 50.273438, 51.618017 ], [ 50.273438, 51.399206 ], [ 49.921875, 51.399206 ], [ 49.921875, 51.179343 ], [ 49.218750, 51.179343 ], [ 49.218750, 50.958427 ], [ 48.867188, 50.958427 ], [ 48.867188, 50.736455 ], [ 48.515625, 50.736455 ], [ 48.515625, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 50.289339 ], [ 47.109375, 50.289339 ], [ 47.109375, 49.837982 ], [ 46.757812, 49.837982 ], [ 46.757812, 49.382373 ], [ 46.406250, 49.382373 ], [ 46.406250, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 48.690960 ], [ 46.406250, 48.690960 ], [ 46.406250, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 47.754098 ], [ 47.812500, 47.754098 ], [ 47.812500, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 46.558860 ], [ 48.867188, 46.558860 ], [ 48.867188, 46.073231 ], [ 48.515625, 46.073231 ], [ 48.515625, 45.828799 ], [ 47.460938, 45.828799 ], [ 47.460938, 45.583290 ], [ 47.109375, 45.583290 ], [ 47.109375, 45.336702 ], [ 46.757812, 45.336702 ], [ 46.757812, 44.840291 ], [ 46.406250, 44.840291 ], [ 46.406250, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 47.109375, 44.339565 ], [ 47.109375, 43.834527 ], [ 47.460938, 43.834527 ], [ 47.460938, 42.811522 ], [ 47.812500, 42.811522 ], [ 47.812500, 42.553080 ], [ 48.164062, 42.553080 ], [ 48.164062, 42.032974 ], [ 48.515625, 42.032974 ], [ 48.515625, 41.771312 ], [ 48.164062, 41.771312 ], [ 48.164062, 41.508577 ], [ 47.812500, 41.508577 ], [ 47.812500, 41.244772 ], [ 46.757812, 41.244772 ], [ 46.757812, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.351562, 42.293564 ], [ 45.351562, 42.553080 ], [ 44.648438, 42.553080 ], [ 44.648438, 42.811522 ], [ 44.296875, 42.811522 ], [ 44.296875, 42.553080 ], [ 43.593750, 42.553080 ], [ 43.593750, 42.811522 ], [ 42.890625, 42.811522 ], [ 42.890625, 43.068888 ], [ 42.187500, 43.068888 ], [ 42.187500, 43.325178 ], [ 41.132812, 43.325178 ], [ 41.132812, 43.580391 ], [ 39.375000, 43.580391 ], [ 39.375000, 43.834527 ], [ 39.023438, 43.834527 ], [ 39.023438, 44.087585 ], [ 38.671875, 44.087585 ], [ 38.671875, 44.339565 ], [ 37.968750, 44.339565 ], [ 37.968750, 44.590467 ], [ 37.265625, 44.590467 ], [ 37.265625, 44.840291 ], [ 36.914062, 44.840291 ], [ 36.914062, 45.089036 ], [ 36.562500, 45.089036 ], [ 36.562500, 45.336702 ], [ 37.265625, 45.336702 ], [ 37.265625, 45.583290 ], [ 37.617188, 45.583290 ], [ 37.617188, 46.073231 ], [ 37.968750, 46.073231 ], [ 37.968750, 46.558860 ], [ 37.617188, 46.558860 ], [ 37.617188, 46.800059 ], [ 38.320312, 46.800059 ], [ 38.320312, 47.040182 ], [ 39.023438, 47.040182 ], [ 39.023438, 47.279229 ], [ 37.968750, 47.279229 ], [ 37.968750, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.690960 ], [ 39.375000, 48.690960 ], [ 39.375000, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 49.152970 ], [ 40.078125, 49.152970 ], [ 40.078125, 49.382373 ], [ 39.726562, 49.382373 ], [ 39.726562, 49.610710 ], [ 39.023438, 49.610710 ], [ 39.023438, 49.837982 ], [ 38.320312, 49.837982 ], [ 38.320312, 50.064192 ], [ 37.617188, 50.064192 ], [ 37.617188, 50.289339 ], [ 35.859375, 50.289339 ], [ 35.859375, 50.513427 ], [ 35.156250, 50.513427 ], [ 35.156250, 51.179343 ], [ 34.804688, 51.179343 ], [ 34.804688, 51.399206 ], [ 34.101562, 51.399206 ], [ 34.101562, 52.052490 ], [ 33.750000, 52.052490 ], [ 33.750000, 52.482780 ], [ 33.398438, 52.482780 ], [ 33.398438, 52.268157 ], [ 31.640625, 52.268157 ], [ 31.640625, 52.482780 ], [ 31.289062, 52.482780 ], [ 31.289062, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 54.367759 ], [ 30.937500, 54.367759 ], [ 30.937500, 54.775346 ], [ 30.585938, 54.775346 ], [ 30.585938, 54.977614 ], [ 30.937500, 54.977614 ], [ 30.937500, 55.379110 ], [ 30.585938, 55.379110 ], [ 30.585938, 55.578345 ], [ 30.234375, 55.578345 ], [ 30.234375, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.559482 ], [ 27.773438, 56.559482 ], [ 27.773438, 57.136239 ], [ 27.421875, 57.136239 ], [ 27.421875, 57.326521 ], [ 27.070312, 57.326521 ], [ 27.070312, 57.704147 ], [ 27.421875, 57.704147 ], [ 27.421875, 58.813742 ], [ 27.773438, 58.813742 ], [ 27.773438, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.355596 ], [ 27.773438, 59.355596 ], [ 27.773438, 59.534318 ], [ 28.125000, 59.534318 ], [ 28.125000, 59.712097 ], [ 28.476562, 59.712097 ], [ 28.476562, 59.888937 ], [ 28.828125, 59.888937 ], [ 28.828125, 60.064840 ], [ 28.476562, 60.064840 ], [ 28.476562, 60.239811 ], [ 28.125000, 60.239811 ], [ 28.125000, 60.413852 ], [ 27.773438, 60.413852 ], [ 27.773438, 60.586967 ], [ 28.125000, 60.586967 ], [ 28.125000, 60.930432 ], [ 28.476562, 60.930432 ], [ 28.476562, 61.100789 ], [ 28.828125, 61.100789 ], [ 28.828125, 61.270233 ], [ 29.179688, 61.270233 ], [ 29.179688, 61.606396 ], [ 29.531250, 61.606396 ], [ 29.531250, 61.773123 ], [ 29.882812, 61.773123 ], [ 29.882812, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 62.103883 ], [ 30.585938, 62.103883 ], [ 30.585938, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.593341 ], [ 31.289062, 62.593341 ], [ 31.289062, 62.915233 ], [ 30.937500, 62.915233 ], [ 30.937500, 63.074866 ], [ 30.585938, 63.074866 ], [ 30.585938, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.548552 ], [ 29.882812, 63.548552 ], [ 29.882812, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 64.472794 ], [ 29.882812, 64.472794 ], [ 29.882812, 64.774125 ], [ 29.531250, 64.774125 ], [ 29.531250, 65.512963 ], [ 29.882812, 65.512963 ], [ 29.882812, 66.089364 ], [ 29.531250, 66.089364 ], [ 29.531250, 66.513260 ], [ 29.179688, 66.513260 ], [ 29.179688, 66.791909 ], [ 28.828125, 66.791909 ], [ 28.828125, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 67.204032 ], [ 40.781250, 67.204032 ], [ 40.781250, 66.652977 ], [ 40.429688, 66.652977 ], [ 40.429688, 66.513260 ], [ 40.078125, 66.513260 ], [ 40.078125, 66.372755 ], [ 39.726562, 66.372755 ], [ 39.726562, 66.231457 ], [ 39.023438, 66.231457 ], [ 39.023438, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.231457 ], [ 36.914062, 66.231457 ], [ 36.914062, 66.372755 ], [ 35.859375, 66.372755 ], [ 35.859375, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.472794 ], [ 36.562500, 64.472794 ], [ 36.562500, 64.623877 ], [ 36.210938, 64.623877 ], [ 36.210938, 64.774125 ], [ 36.562500, 64.774125 ], [ 36.562500, 65.072130 ], [ 37.617188, 65.072130 ], [ 37.617188, 64.923542 ], [ 38.320312, 64.923542 ], [ 38.320312, 64.774125 ], [ 39.023438, 64.774125 ], [ 39.023438, 64.623877 ], [ 40.078125, 64.623877 ], [ 40.078125, 64.774125 ], [ 40.429688, 64.774125 ], [ 40.429688, 64.923542 ], [ 40.078125, 64.923542 ], [ 40.078125, 65.219894 ], [ 39.726562, 65.219894 ], [ 39.726562, 65.512963 ], [ 40.078125, 65.512963 ], [ 40.078125, 65.658275 ], [ 40.429688, 65.658275 ], [ 40.429688, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 66.089364 ], [ 41.132812, 66.089364 ], [ 41.132812, 66.231457 ], [ 41.484375, 66.231457 ], [ 41.484375, 66.372755 ], [ 41.835938, 66.372755 ], [ 41.835938, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.791909 ], [ 43.945312, 66.791909 ], [ 43.945312, 67.067433 ], [ 43.593750, 67.067433 ], [ 43.593750, 67.204032 ], [ 45.351562, 67.204032 ], [ 45.351562, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.791909 ], [ 47.109375, 66.791909 ], [ 47.109375, 66.930060 ], [ 47.812500, 66.930060 ], [ 47.812500, 67.204032 ], [ 72.421875, 67.204032 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.652977 ], [ 71.367188, 66.652977 ], [ 71.367188, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.652977 ], [ 73.476562, 66.652977 ], [ 73.476562, 66.791909 ], [ 73.828125, 66.791909 ], [ 73.828125, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.445312, 55.379110 ], [ 21.445312, 55.178868 ], [ 22.148438, 55.178868 ], [ 22.148438, 54.977614 ], [ 22.500000, 54.977614 ], [ 22.500000, 54.367759 ], [ 19.687500, 54.367759 ], [ 19.687500, 54.572062 ], [ 19.335938, 54.572062 ], [ 19.335938, 54.775346 ], [ 19.687500, 54.775346 ], [ 19.687500, 54.977614 ], [ 20.390625, 54.977614 ], [ 20.390625, 55.178868 ], [ 21.093750, 55.178868 ], [ 21.093750, 55.379110 ], [ 21.445312, 55.379110 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 67.204032 ], [ 16.171875, 66.930060 ], [ 15.820312, 66.930060 ], [ 15.820312, 66.652977 ], [ 15.468750, 66.652977 ], [ 15.468750, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 65.658275 ], [ 14.414062, 65.658275 ], [ 14.414062, 65.219894 ], [ 14.062500, 65.219894 ], [ 14.062500, 64.923542 ], [ 13.710938, 64.923542 ], [ 13.710938, 64.623877 ], [ 14.062500, 64.623877 ], [ 14.062500, 64.168107 ], [ 13.710938, 64.168107 ], [ 13.710938, 64.014496 ], [ 12.656250, 64.014496 ], [ 12.656250, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 61.606396 ], [ 12.304688, 61.606396 ], [ 12.304688, 61.270233 ], [ 12.656250, 61.270233 ], [ 12.656250, 60.586967 ], [ 12.304688, 60.586967 ], [ 12.304688, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 59.534318 ], [ 11.601562, 59.534318 ], [ 11.601562, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 58.813742 ], [ 10.898438, 58.813742 ], [ 10.898438, 58.995311 ], [ 10.546875, 58.995311 ], [ 10.546875, 59.355596 ], [ 9.843750, 59.355596 ], [ 9.843750, 58.995311 ], [ 9.492188, 58.995311 ], [ 9.492188, 58.813742 ], [ 9.140625, 58.813742 ], [ 9.140625, 58.631217 ], [ 8.789062, 58.631217 ], [ 8.789062, 58.263287 ], [ 8.085938, 58.263287 ], [ 8.085938, 58.077876 ], [ 6.679688, 58.077876 ], [ 6.679688, 58.263287 ], [ 5.976562, 58.263287 ], [ 5.976562, 58.447733 ], [ 5.625000, 58.447733 ], [ 5.625000, 59.175928 ], [ 5.273438, 59.175928 ], [ 5.273438, 60.759160 ], [ 4.921875, 60.759160 ], [ 4.921875, 61.938950 ], [ 5.273438, 61.938950 ], [ 5.273438, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.431074 ], [ 5.976562, 62.431074 ], [ 5.976562, 62.593341 ], [ 6.328125, 62.593341 ], [ 6.328125, 62.754726 ], [ 7.031250, 62.754726 ], [ 7.031250, 62.915233 ], [ 7.382812, 62.915233 ], [ 7.382812, 63.074866 ], [ 7.734375, 63.074866 ], [ 7.734375, 63.233627 ], [ 8.437500, 63.233627 ], [ 8.437500, 63.391522 ], [ 8.789062, 63.391522 ], [ 8.789062, 63.548552 ], [ 9.140625, 63.548552 ], [ 9.140625, 63.704722 ], [ 9.492188, 63.704722 ], [ 9.492188, 64.014496 ], [ 9.843750, 64.014496 ], [ 9.843750, 64.168107 ], [ 10.195312, 64.168107 ], [ 10.195312, 64.320872 ], [ 10.546875, 64.320872 ], [ 10.546875, 64.623877 ], [ 10.898438, 64.623877 ], [ 10.898438, 64.923542 ], [ 11.250000, 64.923542 ], [ 11.250000, 65.219894 ], [ 11.601562, 65.219894 ], [ 11.601562, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 65.946472 ], [ 12.656250, 65.946472 ], [ 12.656250, 66.231457 ], [ 13.007812, 66.231457 ], [ 13.007812, 66.513260 ], [ 13.359375, 66.513260 ], [ 13.359375, 66.791909 ], [ 13.710938, 66.791909 ], [ 13.710938, 67.067433 ], [ 14.062500, 67.067433 ], [ 14.062500, 67.204032 ], [ 16.171875, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 67.204032 ], [ 15.820312, 66.930060 ], [ 15.468750, 66.930060 ], [ 15.468750, 66.652977 ], [ 15.117188, 66.652977 ], [ 15.117188, 66.372755 ], [ 14.765625, 66.372755 ], [ 14.765625, 65.946472 ], [ 14.414062, 65.946472 ], [ 14.414062, 65.658275 ], [ 14.062500, 65.658275 ], [ 14.062500, 65.366837 ], [ 13.710938, 65.366837 ], [ 13.710938, 65.072130 ], [ 13.359375, 65.072130 ], [ 13.359375, 64.623877 ], [ 13.710938, 64.623877 ], [ 13.710938, 64.320872 ], [ 13.359375, 64.320872 ], [ 13.359375, 64.168107 ], [ 12.304688, 64.168107 ], [ 12.304688, 63.860036 ], [ 11.953125, 63.860036 ], [ 11.953125, 63.391522 ], [ 11.601562, 63.391522 ], [ 11.601562, 62.593341 ], [ 11.953125, 62.593341 ], [ 11.953125, 61.606396 ], [ 12.304688, 61.606396 ], [ 12.304688, 60.759160 ], [ 11.953125, 60.759160 ], [ 11.953125, 60.064840 ], [ 11.601562, 60.064840 ], [ 11.601562, 59.712097 ], [ 11.250000, 59.712097 ], [ 11.250000, 59.175928 ], [ 10.898438, 59.175928 ], [ 10.898438, 58.995311 ], [ 10.546875, 58.995311 ], [ 10.546875, 59.355596 ], [ 9.843750, 59.355596 ], [ 9.843750, 59.175928 ], [ 9.492188, 59.175928 ], [ 9.492188, 58.995311 ], [ 9.140625, 58.995311 ], [ 9.140625, 58.813742 ], [ 8.789062, 58.813742 ], [ 8.789062, 58.631217 ], [ 8.437500, 58.631217 ], [ 8.437500, 58.447733 ], [ 8.085938, 58.447733 ], [ 8.085938, 58.263287 ], [ 7.382812, 58.263287 ], [ 7.382812, 58.077876 ], [ 6.679688, 58.077876 ], [ 6.679688, 58.263287 ], [ 5.976562, 58.263287 ], [ 5.976562, 58.447733 ], [ 5.625000, 58.447733 ], [ 5.625000, 59.175928 ], [ 5.273438, 59.175928 ], [ 5.273438, 60.930432 ], [ 4.921875, 60.930432 ], [ 4.921875, 62.267923 ], [ 5.273438, 62.267923 ], [ 5.273438, 62.593341 ], [ 5.625000, 62.593341 ], [ 5.625000, 62.754726 ], [ 5.976562, 62.754726 ], [ 5.976562, 62.915233 ], [ 6.679688, 62.915233 ], [ 6.679688, 63.074866 ], [ 7.382812, 63.074866 ], [ 7.382812, 63.233627 ], [ 7.734375, 63.233627 ], [ 7.734375, 63.391522 ], [ 8.437500, 63.391522 ], [ 8.437500, 63.548552 ], [ 8.789062, 63.548552 ], [ 8.789062, 63.860036 ], [ 9.140625, 63.860036 ], [ 9.140625, 64.014496 ], [ 9.492188, 64.014496 ], [ 9.492188, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 64.472794 ], [ 10.195312, 64.472794 ], [ 10.195312, 64.623877 ], [ 10.546875, 64.623877 ], [ 10.546875, 64.923542 ], [ 10.898438, 64.923542 ], [ 10.898438, 65.072130 ], [ 11.250000, 65.072130 ], [ 11.250000, 65.366837 ], [ 11.601562, 65.366837 ], [ 11.601562, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.204032 ], [ 15.820312, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 55.973798 ], [ 12.304688, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.379110 ], [ 12.304688, 55.379110 ], [ 12.304688, 54.977614 ], [ 11.953125, 54.977614 ], [ 11.953125, 54.775346 ], [ 11.601562, 54.775346 ], [ 11.601562, 54.977614 ], [ 11.250000, 54.977614 ], [ 11.250000, 55.178868 ], [ 10.898438, 55.178868 ], [ 10.898438, 55.776573 ], [ 11.601562, 55.776573 ], [ 11.601562, 55.973798 ], [ 12.304688, 55.973798 ] ] ], [ [ [ 10.546875, 57.515823 ], [ 10.546875, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.365250 ], [ 10.898438, 56.365250 ], [ 10.898438, 56.170023 ], [ 10.195312, 56.170023 ], [ 10.195312, 55.973798 ], [ 9.843750, 55.973798 ], [ 9.843750, 55.578345 ], [ 9.492188, 55.578345 ], [ 9.492188, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.775346 ], [ 8.437500, 54.775346 ], [ 8.437500, 55.178868 ], [ 8.085938, 55.178868 ], [ 8.085938, 56.944974 ], [ 8.437500, 56.944974 ], [ 8.437500, 57.136239 ], [ 9.492188, 57.136239 ], [ 9.492188, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 57.515823 ], [ 10.546875, 57.515823 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.170023 ], [ 12.304688, 55.973798 ], [ 12.656250, 55.973798 ], [ 12.656250, 55.578345 ], [ 12.304688, 55.578345 ], [ 12.304688, 55.178868 ], [ 11.953125, 55.178868 ], [ 11.953125, 54.977614 ], [ 11.601562, 54.977614 ], [ 11.601562, 55.178868 ], [ 10.898438, 55.178868 ], [ 10.898438, 55.973798 ], [ 11.953125, 55.973798 ], [ 11.953125, 56.170023 ], [ 12.304688, 56.170023 ] ] ], [ [ [ 10.546875, 57.704147 ], [ 10.546875, 57.136239 ], [ 10.195312, 57.136239 ], [ 10.195312, 56.559482 ], [ 10.898438, 56.559482 ], [ 10.898438, 56.365250 ], [ 10.546875, 56.365250 ], [ 10.546875, 56.170023 ], [ 9.843750, 56.170023 ], [ 9.843750, 55.776573 ], [ 9.492188, 55.776573 ], [ 9.492188, 55.379110 ], [ 9.843750, 55.379110 ], [ 9.843750, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.178868 ], [ 8.085938, 55.178868 ], [ 8.085938, 56.944974 ], [ 8.437500, 56.944974 ], [ 8.437500, 57.136239 ], [ 9.140625, 57.136239 ], [ 9.140625, 57.326521 ], [ 9.492188, 57.326521 ], [ 9.492188, 57.515823 ], [ 9.843750, 57.515823 ], [ 9.843750, 57.704147 ], [ 10.546875, 57.704147 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 67.204032 ], [ 23.554688, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 65.802776 ], [ 22.851562, 65.802776 ], [ 22.851562, 65.658275 ], [ 22.148438, 65.658275 ], [ 22.148438, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.366837 ], [ 21.445312, 65.366837 ], [ 21.445312, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.774125 ], [ 21.445312, 64.774125 ], [ 21.445312, 64.320872 ], [ 21.093750, 64.320872 ], [ 21.093750, 64.168107 ], [ 20.742188, 64.168107 ], [ 20.742188, 64.014496 ], [ 20.390625, 64.014496 ], [ 20.390625, 63.704722 ], [ 20.039062, 63.704722 ], [ 20.039062, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.391522 ], [ 19.335938, 63.391522 ], [ 19.335938, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 63.074866 ], [ 18.632812, 63.074866 ], [ 18.632812, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.754726 ], [ 17.929688, 62.754726 ], [ 17.929688, 62.267923 ], [ 17.578125, 62.267923 ], [ 17.578125, 61.606396 ], [ 17.226562, 61.606396 ], [ 17.226562, 61.100789 ], [ 17.578125, 61.100789 ], [ 17.578125, 60.759160 ], [ 17.929688, 60.759160 ], [ 17.929688, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.064840 ], [ 18.632812, 60.064840 ], [ 18.632812, 59.712097 ], [ 18.281250, 59.712097 ], [ 18.281250, 59.175928 ], [ 17.929688, 59.175928 ], [ 17.929688, 58.813742 ], [ 17.226562, 58.813742 ], [ 17.226562, 58.631217 ], [ 16.875000, 58.631217 ], [ 16.875000, 57.891497 ], [ 16.523438, 57.891497 ], [ 16.523438, 56.752723 ], [ 16.171875, 56.752723 ], [ 16.171875, 56.365250 ], [ 15.820312, 56.365250 ], [ 15.820312, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 55.973798 ], [ 14.414062, 55.973798 ], [ 14.414062, 55.578345 ], [ 14.062500, 55.578345 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 13.007812, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 56.559482 ], [ 12.304688, 56.559482 ], [ 12.304688, 57.136239 ], [ 11.953125, 57.136239 ], [ 11.953125, 57.704147 ], [ 11.601562, 57.704147 ], [ 11.601562, 58.077876 ], [ 11.250000, 58.077876 ], [ 11.250000, 58.447733 ], [ 10.898438, 58.447733 ], [ 10.898438, 58.813742 ], [ 11.250000, 58.813742 ], [ 11.250000, 59.175928 ], [ 11.601562, 59.175928 ], [ 11.601562, 59.534318 ], [ 11.953125, 59.534318 ], [ 11.953125, 59.888937 ], [ 12.304688, 59.888937 ], [ 12.304688, 60.586967 ], [ 12.656250, 60.586967 ], [ 12.656250, 61.270233 ], [ 12.304688, 61.270233 ], [ 12.304688, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 63.233627 ], [ 12.304688, 63.233627 ], [ 12.304688, 63.704722 ], [ 12.656250, 63.704722 ], [ 12.656250, 64.014496 ], [ 13.710938, 64.014496 ], [ 13.710938, 64.168107 ], [ 14.062500, 64.168107 ], [ 14.062500, 64.623877 ], [ 13.710938, 64.623877 ], [ 13.710938, 64.923542 ], [ 14.062500, 64.923542 ], [ 14.062500, 65.219894 ], [ 14.414062, 65.219894 ], [ 14.414062, 65.658275 ], [ 14.765625, 65.658275 ], [ 14.765625, 65.946472 ], [ 15.117188, 65.946472 ], [ 15.117188, 66.372755 ], [ 15.468750, 66.372755 ], [ 15.468750, 66.652977 ], [ 15.820312, 66.652977 ], [ 15.820312, 66.930060 ], [ 16.171875, 66.930060 ], [ 16.171875, 67.204032 ], [ 23.554688, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.203125, 67.204032 ], [ 23.203125, 66.791909 ], [ 23.554688, 66.791909 ], [ 23.554688, 65.946472 ], [ 22.851562, 65.946472 ], [ 22.851562, 65.802776 ], [ 22.148438, 65.802776 ], [ 22.148438, 65.658275 ], [ 21.796875, 65.658275 ], [ 21.796875, 65.366837 ], [ 21.445312, 65.366837 ], [ 21.445312, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.320872 ], [ 20.742188, 64.320872 ], [ 20.742188, 64.168107 ], [ 20.390625, 64.168107 ], [ 20.390625, 63.860036 ], [ 20.039062, 63.860036 ], [ 20.039062, 63.704722 ], [ 19.687500, 63.704722 ], [ 19.687500, 63.548552 ], [ 19.335938, 63.548552 ], [ 19.335938, 63.391522 ], [ 18.984375, 63.391522 ], [ 18.984375, 63.233627 ], [ 18.632812, 63.233627 ], [ 18.632812, 63.074866 ], [ 18.281250, 63.074866 ], [ 18.281250, 62.915233 ], [ 17.929688, 62.915233 ], [ 17.929688, 62.754726 ], [ 17.578125, 62.754726 ], [ 17.578125, 62.431074 ], [ 17.226562, 62.431074 ], [ 17.226562, 61.773123 ], [ 16.875000, 61.773123 ], [ 16.875000, 61.270233 ], [ 17.226562, 61.270233 ], [ 17.226562, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.586967 ], [ 17.929688, 60.586967 ], [ 17.929688, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.239811 ], [ 18.632812, 60.239811 ], [ 18.632812, 59.888937 ], [ 18.281250, 59.888937 ], [ 18.281250, 59.534318 ], [ 17.929688, 59.534318 ], [ 17.929688, 59.175928 ], [ 17.578125, 59.175928 ], [ 17.578125, 58.995311 ], [ 17.226562, 58.995311 ], [ 17.226562, 58.813742 ], [ 16.523438, 58.813742 ], [ 16.523438, 57.891497 ], [ 16.171875, 57.891497 ], [ 16.171875, 56.559482 ], [ 15.820312, 56.559482 ], [ 15.820312, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.765625, 56.365250 ], [ 14.414062, 56.365250 ], [ 14.414062, 55.973798 ], [ 14.062500, 55.973798 ], [ 14.062500, 55.578345 ], [ 13.710938, 55.578345 ], [ 13.710938, 55.379110 ], [ 12.656250, 55.379110 ], [ 12.656250, 55.776573 ], [ 12.304688, 55.776573 ], [ 12.304688, 56.559482 ], [ 11.953125, 56.559482 ], [ 11.953125, 57.136239 ], [ 11.601562, 57.136239 ], [ 11.601562, 57.891497 ], [ 11.250000, 57.891497 ], [ 11.250000, 58.631217 ], [ 10.898438, 58.631217 ], [ 10.898438, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 59.712097 ], [ 11.601562, 59.712097 ], [ 11.601562, 60.064840 ], [ 11.953125, 60.064840 ], [ 11.953125, 60.759160 ], [ 12.304688, 60.759160 ], [ 12.304688, 61.606396 ], [ 11.953125, 61.606396 ], [ 11.953125, 62.593341 ], [ 11.601562, 62.593341 ], [ 11.601562, 63.391522 ], [ 11.953125, 63.391522 ], [ 11.953125, 63.860036 ], [ 12.304688, 63.860036 ], [ 12.304688, 64.168107 ], [ 13.359375, 64.168107 ], [ 13.359375, 64.320872 ], [ 13.710938, 64.320872 ], [ 13.710938, 64.623877 ], [ 13.359375, 64.623877 ], [ 13.359375, 65.072130 ], [ 13.710938, 65.072130 ], [ 13.710938, 65.366837 ], [ 14.062500, 65.366837 ], [ 14.062500, 65.658275 ], [ 14.414062, 65.658275 ], [ 14.414062, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 66.652977 ], [ 15.468750, 66.652977 ], [ 15.468750, 66.930060 ], [ 15.820312, 66.930060 ], [ 15.820312, 67.204032 ], [ 23.203125, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.031250, 53.540307 ], [ 7.031250, 52.696361 ], [ 6.679688, 52.696361 ], [ 6.679688, 51.835778 ], [ 5.976562, 51.835778 ], [ 5.976562, 51.179343 ], [ 6.328125, 51.179343 ], [ 6.328125, 50.736455 ], [ 5.625000, 50.736455 ], [ 5.625000, 50.958427 ], [ 5.273438, 50.958427 ], [ 5.273438, 51.179343 ], [ 3.515625, 51.179343 ], [ 3.515625, 51.399206 ], [ 3.867188, 51.399206 ], [ 3.867188, 51.835778 ], [ 4.218750, 51.835778 ], [ 4.218750, 52.696361 ], [ 4.570312, 52.696361 ], [ 4.570312, 53.120405 ], [ 5.273438, 53.120405 ], [ 5.273438, 53.330873 ], [ 5.976562, 53.330873 ], [ 5.976562, 53.540307 ], [ 7.031250, 53.540307 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.679688, 53.540307 ], [ 6.679688, 53.330873 ], [ 7.031250, 53.330873 ], [ 7.031250, 52.696361 ], [ 6.679688, 52.696361 ], [ 6.679688, 52.052490 ], [ 5.976562, 52.052490 ], [ 5.976562, 50.958427 ], [ 5.273438, 50.958427 ], [ 5.273438, 51.399206 ], [ 4.921875, 51.399206 ], [ 4.921875, 51.618017 ], [ 4.570312, 51.618017 ], [ 4.570312, 51.399206 ], [ 3.164062, 51.399206 ], [ 3.164062, 51.618017 ], [ 3.515625, 51.618017 ], [ 3.515625, 52.052490 ], [ 3.867188, 52.052490 ], [ 3.867188, 52.482780 ], [ 4.218750, 52.482780 ], [ 4.218750, 52.908902 ], [ 4.570312, 52.908902 ], [ 4.570312, 53.120405 ], [ 5.273438, 53.120405 ], [ 5.273438, 53.330873 ], [ 5.976562, 53.330873 ], [ 5.976562, 53.540307 ], [ 6.679688, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.399206 ], [ 3.515625, 51.179343 ], [ 5.273438, 51.179343 ], [ 5.273438, 50.958427 ], [ 5.625000, 50.958427 ], [ 5.625000, 50.736455 ], [ 6.328125, 50.736455 ], [ 6.328125, 50.289339 ], [ 5.976562, 50.289339 ], [ 5.976562, 50.064192 ], [ 5.625000, 50.064192 ], [ 5.625000, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.837982 ], [ 3.867188, 49.837982 ], [ 3.867188, 50.064192 ], [ 3.515625, 50.064192 ], [ 3.515625, 50.513427 ], [ 3.164062, 50.513427 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.164062, 51.179343 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.618017 ], [ 4.921875, 51.399206 ], [ 5.273438, 51.399206 ], [ 5.273438, 50.958427 ], [ 5.976562, 50.958427 ], [ 5.976562, 50.289339 ], [ 5.625000, 50.289339 ], [ 5.625000, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.837982 ], [ 4.570312, 49.837982 ], [ 4.570312, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.513427 ], [ 3.164062, 50.513427 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 3.164062, 51.179343 ], [ 3.164062, 51.399206 ], [ 4.570312, 51.399206 ], [ 4.570312, 51.618017 ], [ 4.921875, 51.618017 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.064192 ], [ 5.976562, 49.837982 ], [ 6.328125, 49.837982 ], [ 6.328125, 49.382373 ], [ 5.625000, 49.382373 ], [ 5.625000, 50.064192 ], [ 5.976562, 50.064192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.289339 ], [ 5.976562, 49.610710 ], [ 5.625000, 49.610710 ], [ 5.625000, 50.289339 ], [ 5.976562, 50.289339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.775346 ], [ 9.843750, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 53.956086 ], [ 11.601562, 53.956086 ], [ 11.601562, 54.162434 ], [ 12.304688, 54.162434 ], [ 12.304688, 54.367759 ], [ 13.359375, 54.367759 ], [ 13.359375, 54.162434 ], [ 13.710938, 54.162434 ], [ 13.710938, 53.956086 ], [ 14.062500, 53.956086 ], [ 14.062500, 53.540307 ], [ 14.414062, 53.540307 ], [ 14.414062, 53.120405 ], [ 14.062500, 53.120405 ], [ 14.062500, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.268157 ], [ 14.765625, 52.268157 ], [ 14.765625, 51.399206 ], [ 15.117188, 51.399206 ], [ 15.117188, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.289339 ], [ 12.304688, 50.289339 ], [ 12.304688, 49.837982 ], [ 12.656250, 49.837982 ], [ 12.656250, 49.382373 ], [ 13.007812, 49.382373 ], [ 13.007812, 49.152970 ], [ 13.359375, 49.152970 ], [ 13.359375, 48.922499 ], [ 13.710938, 48.922499 ], [ 13.710938, 48.690960 ], [ 13.359375, 48.690960 ], [ 13.359375, 48.224673 ], [ 13.007812, 48.224673 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.279229 ], [ 9.843750, 47.279229 ], [ 9.843750, 47.517201 ], [ 8.789062, 47.517201 ], [ 8.789062, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.754098 ], [ 7.734375, 47.754098 ], [ 7.734375, 48.458352 ], [ 8.085938, 48.458352 ], [ 8.085938, 48.922499 ], [ 7.031250, 48.922499 ], [ 7.031250, 49.152970 ], [ 6.328125, 49.152970 ], [ 6.328125, 49.837982 ], [ 5.976562, 49.837982 ], [ 5.976562, 50.289339 ], [ 6.328125, 50.289339 ], [ 6.328125, 51.179343 ], [ 5.976562, 51.179343 ], [ 5.976562, 51.835778 ], [ 6.679688, 51.835778 ], [ 6.679688, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.748711 ], [ 8.085938, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.437500, 53.540307 ], [ 8.437500, 53.748711 ], [ 8.789062, 53.748711 ], [ 8.789062, 54.162434 ], [ 8.437500, 54.162434 ], [ 8.437500, 54.775346 ], [ 9.843750, 54.775346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.572062 ], [ 10.546875, 54.572062 ], [ 10.546875, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.162434 ], [ 11.601562, 54.162434 ], [ 11.601562, 54.367759 ], [ 13.007812, 54.367759 ], [ 13.007812, 54.162434 ], [ 13.359375, 54.162434 ], [ 13.359375, 53.956086 ], [ 14.062500, 53.956086 ], [ 14.062500, 52.908902 ], [ 14.414062, 52.908902 ], [ 14.414062, 51.399206 ], [ 14.765625, 51.399206 ], [ 14.765625, 51.179343 ], [ 14.062500, 51.179343 ], [ 14.062500, 50.958427 ], [ 13.710938, 50.958427 ], [ 13.710938, 50.736455 ], [ 13.007812, 50.736455 ], [ 13.007812, 50.513427 ], [ 12.656250, 50.513427 ], [ 12.656250, 50.289339 ], [ 11.953125, 50.289339 ], [ 11.953125, 50.064192 ], [ 12.304688, 50.064192 ], [ 12.304688, 49.382373 ], [ 13.007812, 49.382373 ], [ 13.007812, 49.152970 ], [ 13.359375, 49.152970 ], [ 13.359375, 48.690960 ], [ 13.007812, 48.690960 ], [ 13.007812, 48.458352 ], [ 12.656250, 48.458352 ], [ 12.656250, 47.989922 ], [ 13.007812, 47.989922 ], [ 13.007812, 47.517201 ], [ 12.304688, 47.517201 ], [ 12.304688, 47.754098 ], [ 10.546875, 47.754098 ], [ 10.546875, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.754098 ], [ 8.789062, 47.754098 ], [ 8.789062, 47.989922 ], [ 8.437500, 47.989922 ], [ 8.437500, 47.754098 ], [ 7.382812, 47.754098 ], [ 7.382812, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 49.152970 ], [ 7.031250, 49.152970 ], [ 7.031250, 49.382373 ], [ 5.976562, 49.382373 ], [ 5.976562, 52.052490 ], [ 6.679688, 52.052490 ], [ 6.679688, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.330873 ], [ 6.679688, 53.330873 ], [ 6.679688, 53.540307 ], [ 7.031250, 53.540307 ], [ 7.031250, 53.748711 ], [ 7.734375, 53.748711 ], [ 7.734375, 53.540307 ], [ 8.437500, 53.540307 ], [ 8.437500, 53.956086 ], [ 8.789062, 53.956086 ], [ 8.789062, 54.367759 ], [ 8.437500, 54.367759 ], [ 8.437500, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.789062, 47.754098 ], [ 8.789062, 47.517201 ], [ 9.492188, 47.517201 ], [ 9.492188, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.558860 ], [ 10.195312, 46.558860 ], [ 10.195312, 46.316584 ], [ 9.140625, 46.316584 ], [ 9.140625, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.828799 ], [ 6.679688, 45.828799 ], [ 6.679688, 46.073231 ], [ 6.328125, 46.073231 ], [ 6.328125, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 47.040182 ], [ 6.679688, 47.040182 ], [ 6.679688, 47.517201 ], [ 8.437500, 47.517201 ], [ 8.437500, 47.754098 ], [ 8.789062, 47.754098 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.789062, 47.989922 ], [ 8.789062, 47.754098 ], [ 9.492188, 47.754098 ], [ 9.492188, 47.279229 ], [ 9.140625, 47.279229 ], [ 9.140625, 47.040182 ], [ 10.195312, 47.040182 ], [ 10.195312, 46.316584 ], [ 8.789062, 46.316584 ], [ 8.789062, 46.073231 ], [ 7.734375, 46.073231 ], [ 7.734375, 45.828799 ], [ 6.679688, 45.828799 ], [ 6.679688, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 47.279229 ], [ 6.679688, 47.279229 ], [ 6.679688, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.989922 ], [ 8.789062, 47.989922 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 50.958427 ], [ 15.468750, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 50.064192 ], [ 18.281250, 50.064192 ], [ 18.281250, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.152970 ], [ 17.929688, 49.152970 ], [ 17.929688, 48.690960 ], [ 15.820312, 48.690960 ], [ 15.820312, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 48.690960 ], [ 14.414062, 48.690960 ], [ 14.414062, 48.458352 ], [ 14.062500, 48.458352 ], [ 14.062500, 48.690960 ], [ 13.710938, 48.690960 ], [ 13.710938, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.382373 ], [ 12.656250, 49.382373 ], [ 12.656250, 49.837982 ], [ 12.304688, 49.837982 ], [ 12.304688, 50.289339 ], [ 13.007812, 50.289339 ], [ 13.007812, 50.513427 ], [ 13.359375, 50.513427 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.736455 ], [ 14.062500, 50.958427 ], [ 15.468750, 50.958427 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.765625, 51.179343 ], [ 14.765625, 50.958427 ], [ 15.468750, 50.958427 ], [ 15.468750, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 16.523438, 50.289339 ], [ 16.523438, 50.513427 ], [ 17.226562, 50.513427 ], [ 17.226562, 50.289339 ], [ 17.578125, 50.289339 ], [ 17.578125, 50.064192 ], [ 18.281250, 50.064192 ], [ 18.281250, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.610710 ], [ 18.281250, 49.610710 ], [ 18.281250, 49.382373 ], [ 17.929688, 49.382373 ], [ 17.929688, 49.152970 ], [ 17.578125, 49.152970 ], [ 17.578125, 48.922499 ], [ 16.875000, 48.922499 ], [ 16.875000, 48.690960 ], [ 16.171875, 48.690960 ], [ 16.171875, 48.922499 ], [ 15.117188, 48.922499 ], [ 15.117188, 49.152970 ], [ 14.765625, 49.152970 ], [ 14.765625, 48.922499 ], [ 14.414062, 48.922499 ], [ 14.414062, 48.690960 ], [ 13.359375, 48.690960 ], [ 13.359375, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.382373 ], [ 12.304688, 49.382373 ], [ 12.304688, 50.064192 ], [ 11.953125, 50.064192 ], [ 11.953125, 50.289339 ], [ 12.656250, 50.289339 ], [ 12.656250, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.736455 ], [ 13.710938, 50.736455 ], [ 13.710938, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 51.179343 ], [ 14.765625, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.500000, 49.152970 ], [ 21.796875, 49.152970 ], [ 21.796875, 49.382373 ], [ 20.390625, 49.382373 ], [ 20.390625, 49.152970 ], [ 19.687500, 49.152970 ], [ 19.687500, 49.382373 ], [ 18.632812, 49.382373 ], [ 18.632812, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 50.958427 ], [ 15.117188, 50.958427 ], [ 15.117188, 51.399206 ], [ 14.765625, 51.399206 ], [ 14.765625, 52.268157 ], [ 14.414062, 52.268157 ], [ 14.414062, 52.696361 ], [ 14.062500, 52.696361 ], [ 14.062500, 53.120405 ], [ 14.414062, 53.120405 ], [ 14.414062, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.748711 ], [ 14.765625, 53.748711 ], [ 14.765625, 53.956086 ], [ 15.117188, 53.956086 ], [ 15.117188, 54.162434 ], [ 15.820312, 54.162434 ], [ 15.820312, 54.367759 ], [ 16.523438, 54.367759 ], [ 16.523438, 54.572062 ], [ 17.226562, 54.572062 ], [ 17.226562, 54.775346 ], [ 18.632812, 54.775346 ], [ 18.632812, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 53.956086 ], [ 23.554688, 53.956086 ], [ 23.554688, 53.330873 ], [ 23.906250, 53.330873 ], [ 23.906250, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 52.268157 ], [ 23.554688, 52.268157 ], [ 23.554688, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.289339 ], [ 23.554688, 50.289339 ], [ 23.554688, 50.064192 ], [ 23.203125, 50.064192 ], [ 23.203125, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 49.152970 ] ] ], [ [ [ 22.500000, 49.152970 ], [ 22.851562, 49.152970 ], [ 22.851562, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.152970 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 54.775346 ], [ 18.281250, 54.572062 ], [ 19.687500, 54.572062 ], [ 19.687500, 54.367759 ], [ 23.203125, 54.367759 ], [ 23.203125, 53.330873 ], [ 23.554688, 53.330873 ], [ 23.554688, 52.696361 ], [ 22.851562, 52.696361 ], [ 22.851562, 52.268157 ], [ 23.203125, 52.268157 ], [ 23.203125, 51.399206 ], [ 23.554688, 51.399206 ], [ 23.554688, 50.958427 ], [ 23.906250, 50.958427 ], [ 23.906250, 50.513427 ], [ 23.203125, 50.513427 ], [ 23.203125, 50.289339 ], [ 22.851562, 50.289339 ], [ 22.851562, 49.837982 ], [ 22.500000, 49.837982 ], [ 22.500000, 49.152970 ], [ 22.148438, 49.152970 ], [ 22.148438, 49.382373 ], [ 18.984375, 49.382373 ], [ 18.984375, 49.610710 ], [ 18.632812, 49.610710 ], [ 18.632812, 49.837982 ], [ 18.281250, 49.837982 ], [ 18.281250, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.289339 ], [ 17.226562, 50.289339 ], [ 17.226562, 50.513427 ], [ 16.523438, 50.513427 ], [ 16.523438, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.468750, 50.736455 ], [ 15.468750, 50.958427 ], [ 14.765625, 50.958427 ], [ 14.765625, 51.399206 ], [ 14.414062, 51.399206 ], [ 14.414062, 52.908902 ], [ 14.062500, 52.908902 ], [ 14.062500, 53.956086 ], [ 14.765625, 53.956086 ], [ 14.765625, 54.162434 ], [ 15.468750, 54.162434 ], [ 15.468750, 54.367759 ], [ 16.171875, 54.367759 ], [ 16.171875, 54.572062 ], [ 16.875000, 54.572062 ], [ 16.875000, 54.775346 ], [ 18.281250, 54.775346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 48.922499 ], [ 15.820312, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 47.754098 ], [ 16.171875, 47.754098 ], [ 16.171875, 47.517201 ], [ 16.523438, 47.517201 ], [ 16.523438, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.800059 ], [ 15.820312, 46.800059 ], [ 15.820312, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.316584 ], [ 14.062500, 46.316584 ], [ 14.062500, 46.558860 ], [ 12.656250, 46.558860 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 47.040182 ], [ 11.250000, 47.040182 ], [ 11.250000, 46.800059 ], [ 9.843750, 46.800059 ], [ 9.843750, 47.040182 ], [ 9.492188, 47.040182 ], [ 9.492188, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.279229 ], [ 10.546875, 47.279229 ], [ 10.546875, 47.517201 ], [ 12.304688, 47.517201 ], [ 12.304688, 47.754098 ], [ 12.656250, 47.754098 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 48.224673 ], [ 13.359375, 48.224673 ], [ 13.359375, 48.690960 ], [ 14.062500, 48.690960 ], [ 14.062500, 48.458352 ], [ 14.414062, 48.458352 ], [ 14.414062, 48.690960 ], [ 14.765625, 48.690960 ], [ 14.765625, 48.922499 ], [ 15.820312, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.117188, 49.152970 ], [ 15.117188, 48.922499 ], [ 16.171875, 48.922499 ], [ 16.171875, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 47.754098 ], [ 16.171875, 47.754098 ], [ 16.171875, 47.517201 ], [ 16.523438, 47.517201 ], [ 16.523438, 47.279229 ], [ 16.171875, 47.279229 ], [ 16.171875, 46.800059 ], [ 15.117188, 46.800059 ], [ 15.117188, 46.558860 ], [ 12.656250, 46.558860 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 47.279229 ], [ 11.601562, 47.279229 ], [ 11.601562, 47.040182 ], [ 10.898438, 47.040182 ], [ 10.898438, 46.800059 ], [ 10.195312, 46.800059 ], [ 10.195312, 47.040182 ], [ 9.140625, 47.040182 ], [ 9.140625, 47.279229 ], [ 9.492188, 47.279229 ], [ 9.492188, 47.754098 ], [ 9.843750, 47.754098 ], [ 9.843750, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 47.989922 ], [ 12.656250, 47.989922 ], [ 12.656250, 48.458352 ], [ 13.007812, 48.458352 ], [ 13.007812, 48.690960 ], [ 14.414062, 48.690960 ], [ 14.414062, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 49.152970 ], [ 15.117188, 49.152970 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.800059 ], [ 16.523438, 46.316584 ], [ 15.820312, 46.316584 ], [ 15.820312, 45.828799 ], [ 15.468750, 45.828799 ], [ 15.468750, 45.336702 ], [ 14.765625, 45.336702 ], [ 14.765625, 45.583290 ], [ 14.062500, 45.583290 ], [ 14.062500, 45.828799 ], [ 13.710938, 45.828799 ], [ 13.710938, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.316584 ], [ 15.117188, 46.316584 ], [ 15.117188, 46.558860 ], [ 15.820312, 46.558860 ], [ 15.820312, 46.800059 ], [ 16.523438, 46.800059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.800059 ], [ 16.523438, 46.558860 ], [ 16.171875, 46.558860 ], [ 16.171875, 46.316584 ], [ 15.468750, 46.316584 ], [ 15.468750, 45.828799 ], [ 15.117188, 45.828799 ], [ 15.117188, 45.583290 ], [ 13.710938, 45.583290 ], [ 13.710938, 45.828799 ], [ 13.359375, 45.828799 ], [ 13.359375, 46.316584 ], [ 13.710938, 46.316584 ], [ 13.710938, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.800059 ], [ 16.523438, 46.800059 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.718590 ], [ 15.117188, 37.718590 ], [ 15.117188, 37.160317 ], [ 15.468750, 37.160317 ], [ 15.468750, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.414062, 36.597889 ], [ 14.414062, 36.879621 ], [ 13.710938, 36.879621 ], [ 13.710938, 37.160317 ], [ 13.007812, 37.160317 ], [ 13.007812, 37.439974 ], [ 12.304688, 37.439974 ], [ 12.304688, 37.718590 ], [ 12.656250, 37.718590 ], [ 12.656250, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 12.304688, 47.040182 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.558860 ], [ 13.710938, 46.558860 ], [ 13.710938, 45.828799 ], [ 14.062500, 45.828799 ], [ 14.062500, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 45.828799 ], [ 13.007812, 45.828799 ], [ 13.007812, 45.583290 ], [ 12.656250, 45.583290 ], [ 12.656250, 45.336702 ], [ 12.304688, 45.336702 ], [ 12.304688, 44.339565 ], [ 12.656250, 44.339565 ], [ 12.656250, 43.834527 ], [ 13.007812, 43.834527 ], [ 13.007812, 43.580391 ], [ 13.359375, 43.580391 ], [ 13.359375, 43.325178 ], [ 13.710938, 43.325178 ], [ 13.710938, 42.811522 ], [ 14.062500, 42.811522 ], [ 14.062500, 42.553080 ], [ 14.414062, 42.553080 ], [ 14.414062, 42.293564 ], [ 14.765625, 42.293564 ], [ 14.765625, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.244772 ], [ 16.875000, 41.244772 ], [ 16.875000, 40.979898 ], [ 17.578125, 40.979898 ], [ 17.578125, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.178873 ], [ 18.632812, 40.178873 ], [ 18.632812, 39.909736 ], [ 17.578125, 39.909736 ], [ 17.578125, 40.178873 ], [ 16.523438, 40.178873 ], [ 16.523438, 39.639538 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 38.822591 ], [ 16.523438, 38.822591 ], [ 16.523438, 38.272689 ], [ 16.171875, 38.272689 ], [ 16.171875, 37.996163 ], [ 15.820312, 37.996163 ], [ 15.820312, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 39.368279 ], [ 15.820312, 39.368279 ], [ 15.820312, 39.909736 ], [ 15.468750, 39.909736 ], [ 15.468750, 40.178873 ], [ 15.117188, 40.178873 ], [ 15.117188, 40.446947 ], [ 14.765625, 40.446947 ], [ 14.765625, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.979898 ], [ 13.710938, 40.979898 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 41.771312 ], [ 11.601562, 41.771312 ], [ 11.601562, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.293564 ], [ 10.898438, 42.293564 ], [ 10.898438, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 43.325178 ], [ 10.195312, 43.325178 ], [ 10.195312, 43.834527 ], [ 9.843750, 43.834527 ], [ 9.843750, 44.087585 ], [ 9.140625, 44.087585 ], [ 9.140625, 44.339565 ], [ 8.437500, 44.339565 ], [ 8.437500, 44.087585 ], [ 8.085938, 44.087585 ], [ 8.085938, 43.834527 ], [ 7.734375, 43.834527 ], [ 7.734375, 43.580391 ], [ 7.382812, 43.580391 ], [ 7.382812, 44.087585 ], [ 7.031250, 44.087585 ], [ 7.031250, 44.590467 ], [ 6.679688, 44.590467 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 45.583290 ], [ 6.679688, 45.583290 ], [ 6.679688, 45.828799 ], [ 8.437500, 45.828799 ], [ 8.437500, 46.073231 ], [ 9.140625, 46.073231 ], [ 9.140625, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.558860 ], [ 10.546875, 46.558860 ], [ 10.546875, 46.800059 ], [ 11.250000, 46.800059 ], [ 11.250000, 47.040182 ], [ 12.304688, 47.040182 ] ] ], [ [ [ 9.492188, 40.979898 ], [ 9.492188, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.095963 ], [ 8.789062, 39.095963 ], [ 8.789062, 38.822591 ], [ 8.437500, 38.822591 ], [ 8.437500, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 9.492188, 40.979898 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.953125, 47.279229 ], [ 11.953125, 47.040182 ], [ 12.304688, 47.040182 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.558860 ], [ 13.710938, 46.558860 ], [ 13.710938, 46.316584 ], [ 13.359375, 46.316584 ], [ 13.359375, 45.828799 ], [ 13.007812, 45.828799 ], [ 13.007812, 45.583290 ], [ 12.304688, 45.583290 ], [ 12.304688, 44.840291 ], [ 11.953125, 44.840291 ], [ 11.953125, 44.590467 ], [ 12.304688, 44.590467 ], [ 12.304688, 44.087585 ], [ 13.007812, 44.087585 ], [ 13.007812, 43.834527 ], [ 13.359375, 43.834527 ], [ 13.359375, 43.325178 ], [ 13.710938, 43.325178 ], [ 13.710938, 42.553080 ], [ 14.062500, 42.553080 ], [ 14.062500, 42.293564 ], [ 14.765625, 42.293564 ], [ 14.765625, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.508577 ], [ 16.171875, 41.508577 ], [ 16.171875, 41.244772 ], [ 16.523438, 41.244772 ], [ 16.523438, 40.979898 ], [ 17.226562, 40.979898 ], [ 17.226562, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 39.909736 ], [ 17.929688, 39.909736 ], [ 17.929688, 40.178873 ], [ 17.578125, 40.178873 ], [ 17.578125, 40.446947 ], [ 16.523438, 40.446947 ], [ 16.523438, 40.178873 ], [ 16.171875, 40.178873 ], [ 16.171875, 39.639538 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.095963 ], [ 16.523438, 39.095963 ], [ 16.523438, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 38.272689 ], [ 15.820312, 38.272689 ], [ 15.820312, 37.996163 ], [ 15.468750, 37.996163 ], [ 15.117188, 37.996163 ], [ 15.117188, 36.879621 ], [ 14.062500, 36.879621 ], [ 14.062500, 37.160317 ], [ 13.007812, 37.160317 ], [ 13.007812, 37.439974 ], [ 12.304688, 37.439974 ], [ 12.304688, 38.272689 ], [ 15.468750, 38.272689 ], [ 15.468750, 38.548165 ], [ 15.820312, 38.548165 ], [ 15.820312, 39.368279 ], [ 15.468750, 39.368279 ], [ 15.468750, 39.909736 ], [ 15.117188, 39.909736 ], [ 15.117188, 40.178873 ], [ 14.765625, 40.178873 ], [ 14.765625, 40.446947 ], [ 14.414062, 40.446947 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.979898 ], [ 13.359375, 40.979898 ], [ 13.359375, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.508577 ], [ 11.953125, 41.508577 ], [ 11.953125, 41.771312 ], [ 11.601562, 41.771312 ], [ 11.601562, 42.032974 ], [ 11.250000, 42.032974 ], [ 11.250000, 42.293564 ], [ 10.898438, 42.293564 ], [ 10.898438, 42.553080 ], [ 10.546875, 42.553080 ], [ 10.546875, 42.811522 ], [ 10.195312, 42.811522 ], [ 10.195312, 44.087585 ], [ 9.140625, 44.087585 ], [ 9.140625, 44.339565 ], [ 8.085938, 44.339565 ], [ 8.085938, 44.087585 ], [ 7.734375, 44.087585 ], [ 7.734375, 43.834527 ], [ 7.382812, 43.834527 ], [ 7.382812, 44.339565 ], [ 6.679688, 44.339565 ], [ 6.679688, 45.089036 ], [ 7.031250, 45.089036 ], [ 7.031250, 45.583290 ], [ 6.679688, 45.583290 ], [ 6.679688, 45.828799 ], [ 7.734375, 45.828799 ], [ 7.734375, 46.073231 ], [ 8.789062, 46.073231 ], [ 8.789062, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.800059 ], [ 10.898438, 46.800059 ], [ 10.898438, 47.040182 ], [ 11.601562, 47.040182 ], [ 11.601562, 47.279229 ], [ 11.953125, 47.279229 ] ] ], [ [ [ 9.492188, 40.979898 ], [ 9.492188, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 39.095963 ], [ 8.085938, 39.095963 ], [ 8.085938, 40.979898 ], [ 9.492188, 40.979898 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.580391 ], [ 15.820312, 43.580391 ], [ 15.820312, 43.834527 ], [ 15.468750, 43.834527 ], [ 15.468750, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.590467 ], [ 14.765625, 44.590467 ], [ 14.765625, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.840291 ], [ 13.710938, 44.840291 ], [ 13.710938, 45.583290 ], [ 14.765625, 45.583290 ], [ 14.765625, 45.336702 ], [ 15.468750, 45.336702 ], [ 15.468750, 45.828799 ], [ 15.820312, 45.828799 ], [ 15.820312, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 18.984375, 45.089036 ], [ 18.984375, 44.840291 ], [ 18.632812, 44.840291 ], [ 18.632812, 45.089036 ], [ 17.226562, 45.089036 ], [ 17.226562, 45.336702 ], [ 16.875000, 45.336702 ], [ 16.875000, 45.089036 ], [ 15.820312, 45.089036 ], [ 15.820312, 44.590467 ], [ 16.171875, 44.590467 ], [ 16.171875, 44.087585 ], [ 16.523438, 44.087585 ], [ 16.523438, 43.834527 ], [ 16.875000, 43.834527 ], [ 16.875000, 43.325178 ] ] ], [ [ [ 17.578125, 42.811522 ], [ 18.281250, 42.811522 ], [ 18.281250, 42.553080 ], [ 17.578125, 42.553080 ], [ 17.578125, 42.811522 ] ] ], [ [ [ 17.226562, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 42.811522 ], [ 17.226562, 42.811522 ], [ 17.226562, 43.068888 ] ] ], [ [ [ 16.875000, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.325178 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.929688, 42.811522 ], [ 18.281250, 42.811522 ], [ 18.281250, 42.553080 ], [ 17.929688, 42.553080 ], [ 17.929688, 42.811522 ] ] ], [ [ [ 17.578125, 42.811522 ], [ 17.226562, 42.811522 ], [ 17.226562, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.580391 ], [ 15.468750, 43.580391 ], [ 15.468750, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.590467 ], [ 14.765625, 44.590467 ], [ 14.765625, 45.089036 ], [ 13.359375, 45.089036 ], [ 13.359375, 45.583290 ], [ 15.117188, 45.583290 ], [ 15.117188, 45.828799 ], [ 15.468750, 45.828799 ], [ 15.468750, 46.316584 ], [ 16.171875, 46.316584 ], [ 16.171875, 46.558860 ], [ 16.875000, 46.558860 ], [ 16.875000, 46.316584 ], [ 17.226562, 46.316584 ], [ 17.226562, 46.073231 ], [ 17.578125, 46.073231 ], [ 17.578125, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 45.336702 ], [ 16.523438, 45.336702 ], [ 16.523438, 45.089036 ], [ 15.468750, 45.089036 ], [ 15.468750, 44.590467 ], [ 16.171875, 44.590467 ], [ 16.171875, 43.834527 ], [ 16.875000, 43.834527 ], [ 16.875000, 43.580391 ], [ 17.226562, 43.580391 ], [ 17.226562, 43.325178 ], [ 17.578125, 43.325178 ], [ 17.578125, 42.811522 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.445312, 48.458352 ], [ 21.445312, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 47.989922 ], [ 22.851562, 47.989922 ], [ 22.851562, 47.754098 ], [ 22.148438, 47.754098 ], [ 22.148438, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 46.800059 ], [ 21.445312, 46.800059 ], [ 21.445312, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 45.828799 ], [ 17.578125, 45.828799 ], [ 17.578125, 46.073231 ], [ 16.875000, 46.073231 ], [ 16.875000, 46.316584 ], [ 16.523438, 46.316584 ], [ 16.523438, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 47.040182 ], [ 16.523438, 47.040182 ], [ 16.523438, 47.517201 ], [ 16.171875, 47.517201 ], [ 16.171875, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.754098 ], [ 18.632812, 47.754098 ], [ 18.632812, 47.989922 ], [ 19.335938, 47.989922 ], [ 19.335938, 48.224673 ], [ 20.390625, 48.224673 ], [ 20.390625, 48.458352 ], [ 21.445312, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 48.690960 ], [ 21.093750, 48.458352 ], [ 21.796875, 48.458352 ], [ 21.796875, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 47.754098 ], [ 21.796875, 47.754098 ], [ 21.796875, 47.279229 ], [ 21.445312, 47.279229 ], [ 21.445312, 46.800059 ], [ 21.093750, 46.800059 ], [ 21.093750, 46.316584 ], [ 19.335938, 46.316584 ], [ 19.335938, 46.073231 ], [ 18.632812, 46.073231 ], [ 18.632812, 45.828799 ], [ 17.578125, 45.828799 ], [ 17.578125, 46.073231 ], [ 17.226562, 46.073231 ], [ 17.226562, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.558860 ], [ 16.523438, 46.558860 ], [ 16.523438, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 47.279229 ], [ 16.523438, 47.279229 ], [ 16.523438, 47.517201 ], [ 16.171875, 47.517201 ], [ 16.171875, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 48.224673 ], [ 20.039062, 48.224673 ], [ 20.039062, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.690960 ], [ 21.093750, 48.690960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.796875, 49.382373 ], [ 21.796875, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 48.922499 ], [ 22.148438, 48.922499 ], [ 22.148438, 48.224673 ], [ 21.445312, 48.224673 ], [ 21.445312, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.224673 ], [ 19.335938, 48.224673 ], [ 19.335938, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 47.754098 ], [ 17.226562, 47.754098 ], [ 17.226562, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.690960 ], [ 17.929688, 48.690960 ], [ 17.929688, 49.152970 ], [ 18.281250, 49.152970 ], [ 18.281250, 49.382373 ], [ 19.687500, 49.382373 ], [ 19.687500, 49.152970 ], [ 20.390625, 49.152970 ], [ 20.390625, 49.382373 ], [ 21.796875, 49.382373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.984375, 49.610710 ], [ 18.984375, 49.382373 ], [ 22.148438, 49.382373 ], [ 22.148438, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 48.922499 ], [ 22.148438, 48.922499 ], [ 22.148438, 48.690960 ], [ 21.796875, 48.690960 ], [ 21.796875, 48.458352 ], [ 21.093750, 48.458352 ], [ 21.093750, 48.690960 ], [ 20.390625, 48.690960 ], [ 20.390625, 48.458352 ], [ 20.039062, 48.458352 ], [ 20.039062, 48.224673 ], [ 18.632812, 48.224673 ], [ 18.632812, 47.989922 ], [ 16.875000, 47.989922 ], [ 16.875000, 48.922499 ], [ 17.578125, 48.922499 ], [ 17.578125, 49.152970 ], [ 17.929688, 49.152970 ], [ 17.929688, 49.382373 ], [ 18.281250, 49.382373 ], [ 18.281250, 49.610710 ], [ 18.984375, 49.610710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 45.336702 ], [ 17.226562, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.834527 ], [ 19.335938, 43.834527 ], [ 19.335938, 43.325178 ], [ 18.632812, 43.325178 ], [ 18.632812, 42.553080 ], [ 18.281250, 42.553080 ], [ 18.281250, 42.811522 ], [ 17.578125, 42.811522 ], [ 17.578125, 43.068888 ], [ 17.226562, 43.068888 ], [ 17.226562, 43.325178 ], [ 16.875000, 43.325178 ], [ 16.875000, 43.834527 ], [ 16.523438, 43.834527 ], [ 16.523438, 44.087585 ], [ 16.171875, 44.087585 ], [ 16.171875, 44.590467 ], [ 15.820312, 44.590467 ], [ 15.820312, 45.089036 ], [ 16.875000, 45.089036 ], [ 16.875000, 45.336702 ], [ 17.226562, 45.336702 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 45.336702 ], [ 16.875000, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 18.984375, 44.339565 ], [ 19.335938, 44.339565 ], [ 19.335938, 43.580391 ], [ 18.984375, 43.580391 ], [ 18.984375, 43.325178 ], [ 18.632812, 43.325178 ], [ 18.632812, 43.068888 ], [ 18.281250, 43.068888 ], [ 18.281250, 42.811522 ], [ 17.578125, 42.811522 ], [ 17.578125, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.580391 ], [ 16.875000, 43.580391 ], [ 16.875000, 43.834527 ], [ 16.171875, 43.834527 ], [ 16.171875, 44.590467 ], [ 15.468750, 44.590467 ], [ 15.468750, 45.089036 ], [ 16.523438, 45.089036 ], [ 16.523438, 45.336702 ], [ 16.875000, 45.336702 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 43.325178 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 42.553080 ], [ 19.335938, 42.553080 ], [ 19.335938, 42.032974 ], [ 18.984375, 42.032974 ], [ 18.984375, 42.293564 ], [ 18.281250, 42.293564 ], [ 18.281250, 42.553080 ], [ 18.632812, 42.553080 ], [ 18.632812, 43.325178 ], [ 19.687500, 43.325178 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.335938, 43.580391 ], [ 19.335938, 43.325178 ], [ 19.687500, 43.325178 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.553080 ], [ 19.335938, 42.553080 ], [ 19.335938, 42.293564 ], [ 18.984375, 42.293564 ], [ 18.984375, 42.032974 ], [ 18.632812, 42.032974 ], [ 18.632812, 42.293564 ], [ 18.281250, 42.293564 ], [ 18.281250, 43.068888 ], [ 18.632812, 43.068888 ], [ 18.632812, 43.325178 ], [ 18.984375, 43.325178 ], [ 18.984375, 43.580391 ], [ 19.335938, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 46.073231 ], [ 20.390625, 45.828799 ], [ 20.742188, 45.828799 ], [ 20.742188, 45.089036 ], [ 21.445312, 45.089036 ], [ 21.445312, 44.590467 ], [ 22.851562, 44.590467 ], [ 22.851562, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 42.293564 ], [ 21.796875, 42.293564 ], [ 21.796875, 42.553080 ], [ 21.445312, 42.553080 ], [ 21.445312, 42.811522 ], [ 21.093750, 42.811522 ], [ 21.093750, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.811522 ], [ 20.039062, 42.811522 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.834527 ], [ 19.687500, 43.834527 ], [ 19.687500, 44.087585 ], [ 18.984375, 44.087585 ], [ 18.984375, 44.590467 ], [ 19.335938, 44.590467 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 18.984375, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 45.336702 ], [ 18.984375, 45.336702 ], [ 18.984375, 45.828799 ], [ 19.687500, 45.828799 ], [ 19.687500, 46.073231 ], [ 20.390625, 46.073231 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 46.316584 ], [ 20.039062, 46.073231 ], [ 20.390625, 46.073231 ], [ 20.390625, 45.828799 ], [ 20.742188, 45.828799 ], [ 20.742188, 45.336702 ], [ 21.445312, 45.336702 ], [ 21.445312, 44.590467 ], [ 22.148438, 44.590467 ], [ 22.148438, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 44.087585 ], [ 22.148438, 44.087585 ], [ 22.148438, 43.834527 ], [ 22.500000, 43.834527 ], [ 22.500000, 43.580391 ], [ 22.851562, 43.580391 ], [ 22.851562, 43.068888 ], [ 22.500000, 43.068888 ], [ 22.500000, 42.811522 ], [ 22.148438, 42.811522 ], [ 22.148438, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.811522 ], [ 21.093750, 42.811522 ], [ 21.093750, 43.068888 ], [ 20.742188, 43.068888 ], [ 20.742188, 43.325178 ], [ 20.390625, 43.325178 ], [ 20.390625, 42.811522 ], [ 20.039062, 42.811522 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 44.339565 ], [ 18.984375, 44.339565 ], [ 18.984375, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 45.336702 ], [ 18.984375, 45.336702 ], [ 18.984375, 45.828799 ], [ 18.632812, 45.828799 ], [ 18.632812, 46.073231 ], [ 19.335938, 46.073231 ], [ 19.335938, 46.316584 ], [ 20.039062, 46.316584 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 43.068888 ], [ 21.093750, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 42.293564 ], [ 20.039062, 42.293564 ], [ 20.039062, 42.553080 ], [ 20.390625, 42.553080 ], [ 20.390625, 43.068888 ], [ 21.093750, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 20.742188, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.293564 ], [ 20.742188, 42.293564 ], [ 20.742188, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 42.293564 ], [ 20.039062, 42.293564 ], [ 20.039062, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 43.325178 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.039062, 42.293564 ], [ 20.390625, 42.293564 ], [ 20.390625, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.742188, 41.244772 ], [ 20.742188, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.335938, 39.909736 ], [ 19.335938, 41.508577 ], [ 19.687500, 41.508577 ], [ 19.687500, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.553080 ], [ 20.039062, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.039062, 42.293564 ], [ 20.390625, 42.293564 ], [ 20.390625, 40.979898 ], [ 20.742188, 40.979898 ], [ 20.742188, 40.446947 ], [ 20.390625, 40.446947 ], [ 20.390625, 39.909736 ], [ 20.039062, 39.909736 ], [ 20.039062, 39.639538 ], [ 19.687500, 39.639538 ], [ 19.687500, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 40.713956 ], [ 18.984375, 40.713956 ], [ 18.984375, 41.244772 ], [ 19.335938, 41.244772 ], [ 19.335938, 42.032974 ], [ 18.984375, 42.032974 ], [ 18.984375, 42.293564 ], [ 19.335938, 42.293564 ], [ 19.335938, 42.553080 ], [ 20.039062, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, 42.293564 ], [ 22.500000, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.244772 ], [ 22.148438, 41.244772 ], [ 22.148438, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 40.713956 ], [ 20.742188, 40.713956 ], [ 20.742188, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.508577 ], [ 20.742188, 41.508577 ], [ 20.742188, 42.032974 ], [ 21.445312, 42.032974 ], [ 21.445312, 42.293564 ], [ 22.500000, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.148438, 42.553080 ], [ 22.148438, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.508577 ], [ 22.500000, 41.508577 ], [ 22.500000, 41.244772 ], [ 21.796875, 41.244772 ], [ 21.796875, 40.979898 ], [ 20.390625, 40.979898 ], [ 20.390625, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 42.293564 ], [ 21.796875, 42.293564 ], [ 21.796875, 42.553080 ], [ 22.148438, 42.553080 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.531250, 67.204032 ], [ 29.531250, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.652977 ], [ 29.531250, 66.652977 ], [ 29.531250, 66.372755 ], [ 29.882812, 66.372755 ], [ 29.882812, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 65.512963 ], [ 29.882812, 65.512963 ], [ 29.882812, 65.072130 ], [ 29.531250, 65.072130 ], [ 29.531250, 64.774125 ], [ 29.882812, 64.774125 ], [ 29.882812, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 64.168107 ], [ 30.585938, 64.168107 ], [ 30.585938, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 63.704722 ], [ 29.882812, 63.704722 ], [ 29.882812, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.233627 ], [ 30.937500, 63.233627 ], [ 30.937500, 63.074866 ], [ 31.289062, 63.074866 ], [ 31.289062, 62.915233 ], [ 31.640625, 62.915233 ], [ 31.640625, 62.593341 ], [ 31.289062, 62.593341 ], [ 31.289062, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.103883 ], [ 30.585938, 62.103883 ], [ 30.585938, 61.773123 ], [ 30.234375, 61.773123 ], [ 30.234375, 61.606396 ], [ 29.882812, 61.606396 ], [ 29.882812, 61.438767 ], [ 29.531250, 61.438767 ], [ 29.531250, 61.270233 ], [ 29.179688, 61.270233 ], [ 29.179688, 60.930432 ], [ 28.828125, 60.930432 ], [ 28.828125, 60.759160 ], [ 28.476562, 60.759160 ], [ 28.476562, 60.586967 ], [ 27.421875, 60.586967 ], [ 27.421875, 60.413852 ], [ 26.015625, 60.413852 ], [ 26.015625, 60.239811 ], [ 25.312500, 60.239811 ], [ 25.312500, 60.064840 ], [ 23.906250, 60.064840 ], [ 23.906250, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 22.148438, 60.239811 ], [ 22.148438, 60.413852 ], [ 21.796875, 60.413852 ], [ 21.796875, 60.586967 ], [ 21.445312, 60.586967 ], [ 21.445312, 62.103883 ], [ 21.093750, 62.103883 ], [ 21.093750, 62.915233 ], [ 21.445312, 62.915233 ], [ 21.445312, 63.233627 ], [ 21.796875, 63.233627 ], [ 21.796875, 63.548552 ], [ 22.148438, 63.548552 ], [ 22.148438, 63.704722 ], [ 22.500000, 63.704722 ], [ 22.500000, 63.860036 ], [ 22.851562, 63.860036 ], [ 22.851562, 64.014496 ], [ 23.203125, 64.014496 ], [ 23.203125, 64.168107 ], [ 23.554688, 64.168107 ], [ 23.554688, 64.472794 ], [ 23.906250, 64.472794 ], [ 23.906250, 64.623877 ], [ 24.257812, 64.623877 ], [ 24.257812, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.923542 ], [ 25.312500, 64.923542 ], [ 25.312500, 65.512963 ], [ 24.960938, 65.512963 ], [ 24.960938, 65.658275 ], [ 24.257812, 65.658275 ], [ 24.257812, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 66.089364 ], [ 23.554688, 66.089364 ], [ 23.554688, 67.204032 ], [ 29.531250, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 67.204032 ], [ 29.179688, 67.067433 ], [ 28.828125, 67.067433 ], [ 28.828125, 66.791909 ], [ 29.179688, 66.791909 ], [ 29.179688, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 66.089364 ], [ 29.882812, 66.089364 ], [ 29.882812, 65.512963 ], [ 29.531250, 65.512963 ], [ 29.531250, 64.774125 ], [ 29.882812, 64.774125 ], [ 29.882812, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 64.014496 ], [ 29.882812, 64.014496 ], [ 29.882812, 63.548552 ], [ 30.234375, 63.548552 ], [ 30.234375, 63.391522 ], [ 30.585938, 63.391522 ], [ 30.585938, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 62.593341 ], [ 30.937500, 62.593341 ], [ 30.937500, 62.267923 ], [ 30.585938, 62.267923 ], [ 30.585938, 62.103883 ], [ 30.234375, 62.103883 ], [ 30.234375, 61.938950 ], [ 29.882812, 61.938950 ], [ 29.882812, 61.773123 ], [ 29.531250, 61.773123 ], [ 29.531250, 61.606396 ], [ 29.179688, 61.606396 ], [ 29.179688, 61.270233 ], [ 28.828125, 61.270233 ], [ 28.828125, 61.100789 ], [ 28.476562, 61.100789 ], [ 28.476562, 60.930432 ], [ 28.125000, 60.930432 ], [ 28.125000, 60.586967 ], [ 26.015625, 60.586967 ], [ 26.015625, 60.413852 ], [ 25.312500, 60.413852 ], [ 25.312500, 60.239811 ], [ 24.609375, 60.239811 ], [ 24.609375, 60.064840 ], [ 23.906250, 60.064840 ], [ 23.906250, 59.888937 ], [ 22.500000, 59.888937 ], [ 22.500000, 60.239811 ], [ 22.148438, 60.239811 ], [ 22.148438, 60.413852 ], [ 21.796875, 60.413852 ], [ 21.796875, 60.586967 ], [ 21.093750, 60.586967 ], [ 21.093750, 61.270233 ], [ 21.445312, 61.270233 ], [ 21.445312, 61.938950 ], [ 21.093750, 61.938950 ], [ 21.093750, 62.431074 ], [ 20.742188, 62.431074 ], [ 20.742188, 62.754726 ], [ 21.093750, 62.754726 ], [ 21.093750, 63.074866 ], [ 21.445312, 63.074866 ], [ 21.445312, 63.391522 ], [ 21.796875, 63.391522 ], [ 21.796875, 63.704722 ], [ 22.148438, 63.704722 ], [ 22.148438, 63.860036 ], [ 22.500000, 63.860036 ], [ 22.500000, 64.014496 ], [ 22.851562, 64.014496 ], [ 22.851562, 64.168107 ], [ 23.203125, 64.168107 ], [ 23.203125, 64.320872 ], [ 23.554688, 64.320872 ], [ 23.554688, 64.472794 ], [ 23.906250, 64.472794 ], [ 23.906250, 64.623877 ], [ 24.257812, 64.623877 ], [ 24.257812, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.923542 ], [ 24.960938, 64.923542 ], [ 24.960938, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.366837 ], [ 24.960938, 65.366837 ], [ 24.960938, 65.658275 ], [ 24.609375, 65.658275 ], [ 24.609375, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 66.791909 ], [ 23.203125, 66.791909 ], [ 23.203125, 67.204032 ], [ 29.179688, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 57.891497 ], [ 25.664062, 57.704147 ], [ 26.015625, 57.704147 ], [ 26.015625, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.326521 ], [ 27.773438, 57.326521 ], [ 27.773438, 56.365250 ], [ 28.125000, 56.365250 ], [ 28.125000, 55.973798 ], [ 27.421875, 55.973798 ], [ 27.421875, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.578345 ], [ 26.015625, 55.578345 ], [ 26.015625, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.365250 ], [ 22.148438, 56.365250 ], [ 22.148438, 56.170023 ], [ 21.445312, 56.170023 ], [ 21.445312, 55.973798 ], [ 21.093750, 55.973798 ], [ 21.093750, 56.944974 ], [ 21.445312, 56.944974 ], [ 21.445312, 57.326521 ], [ 21.796875, 57.326521 ], [ 21.796875, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.136239 ], [ 23.203125, 57.136239 ], [ 23.203125, 56.944974 ], [ 24.257812, 56.944974 ], [ 24.257812, 57.704147 ], [ 24.960938, 57.704147 ], [ 24.960938, 57.891497 ], [ 25.664062, 57.891497 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 57.891497 ], [ 25.312500, 57.704147 ], [ 26.015625, 57.704147 ], [ 26.015625, 57.515823 ], [ 27.070312, 57.515823 ], [ 27.070312, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.136239 ], [ 27.773438, 57.136239 ], [ 27.773438, 56.559482 ], [ 28.125000, 56.559482 ], [ 28.125000, 56.170023 ], [ 27.773438, 56.170023 ], [ 27.773438, 55.973798 ], [ 27.070312, 55.973798 ], [ 27.070312, 55.776573 ], [ 26.015625, 55.776573 ], [ 26.015625, 55.973798 ], [ 25.312500, 55.973798 ], [ 25.312500, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.365250 ], [ 24.609375, 56.365250 ], [ 24.609375, 56.559482 ], [ 24.257812, 56.559482 ], [ 24.257812, 56.365250 ], [ 21.796875, 56.365250 ], [ 21.796875, 56.170023 ], [ 20.742188, 56.170023 ], [ 20.742188, 56.944974 ], [ 21.093750, 56.944974 ], [ 21.093750, 57.326521 ], [ 21.445312, 57.326521 ], [ 21.445312, 57.515823 ], [ 21.796875, 57.515823 ], [ 21.796875, 57.704147 ], [ 22.851562, 57.704147 ], [ 22.851562, 57.326521 ], [ 23.203125, 57.326521 ], [ 23.203125, 57.136239 ], [ 23.906250, 57.136239 ], [ 23.906250, 57.515823 ], [ 24.257812, 57.515823 ], [ 24.257812, 57.891497 ], [ 25.312500, 57.891497 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 59.534318 ], [ 28.125000, 59.175928 ], [ 27.773438, 59.175928 ], [ 27.773438, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 58.263287 ], [ 27.773438, 58.263287 ], [ 27.773438, 57.515823 ], [ 26.015625, 57.515823 ], [ 26.015625, 57.704147 ], [ 25.664062, 57.704147 ], [ 25.664062, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.704147 ], [ 24.257812, 57.704147 ], [ 24.257812, 58.263287 ], [ 23.906250, 58.263287 ], [ 23.906250, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.813742 ], [ 23.203125, 58.813742 ], [ 23.203125, 59.175928 ], [ 23.906250, 59.175928 ], [ 23.906250, 59.355596 ], [ 24.609375, 59.355596 ], [ 24.609375, 59.534318 ], [ 28.125000, 59.534318 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 59.712097 ], [ 26.015625, 59.534318 ], [ 27.773438, 59.534318 ], [ 27.773438, 59.355596 ], [ 28.125000, 59.355596 ], [ 28.125000, 59.175928 ], [ 27.773438, 59.175928 ], [ 27.773438, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 57.704147 ], [ 27.070312, 57.704147 ], [ 27.070312, 57.515823 ], [ 26.015625, 57.515823 ], [ 26.015625, 57.704147 ], [ 25.312500, 57.704147 ], [ 25.312500, 57.891497 ], [ 24.257812, 57.891497 ], [ 24.257812, 58.263287 ], [ 23.554688, 58.263287 ], [ 23.554688, 58.447733 ], [ 23.203125, 58.447733 ], [ 23.203125, 59.355596 ], [ 23.906250, 59.355596 ], [ 23.906250, 59.534318 ], [ 25.312500, 59.534318 ], [ 25.312500, 59.712097 ], [ 26.015625, 59.712097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.960938, 56.365250 ], [ 24.960938, 56.170023 ], [ 25.664062, 56.170023 ], [ 25.664062, 55.973798 ], [ 26.015625, 55.973798 ], [ 26.015625, 55.578345 ], [ 26.367188, 55.578345 ], [ 26.367188, 55.379110 ], [ 26.718750, 55.379110 ], [ 26.718750, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.775346 ], [ 25.664062, 54.775346 ], [ 25.664062, 54.162434 ], [ 24.960938, 54.162434 ], [ 24.960938, 53.956086 ], [ 23.203125, 53.956086 ], [ 23.203125, 54.162434 ], [ 22.851562, 54.162434 ], [ 22.851562, 54.367759 ], [ 22.500000, 54.367759 ], [ 22.500000, 54.572062 ], [ 22.851562, 54.572062 ], [ 22.851562, 54.775346 ], [ 22.148438, 54.775346 ], [ 22.148438, 54.977614 ], [ 21.445312, 54.977614 ], [ 21.445312, 55.178868 ], [ 21.093750, 55.178868 ], [ 21.093750, 55.973798 ], [ 21.445312, 55.973798 ], [ 21.445312, 56.170023 ], [ 22.148438, 56.170023 ], [ 22.148438, 56.365250 ], [ 24.960938, 56.365250 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 56.559482 ], [ 24.609375, 56.365250 ], [ 24.960938, 56.365250 ], [ 24.960938, 56.170023 ], [ 25.312500, 56.170023 ], [ 25.312500, 55.973798 ], [ 26.015625, 55.973798 ], [ 26.015625, 55.776573 ], [ 26.367188, 55.776573 ], [ 26.367188, 54.977614 ], [ 25.664062, 54.977614 ], [ 25.664062, 54.572062 ], [ 25.312500, 54.572062 ], [ 25.312500, 54.162434 ], [ 24.609375, 54.162434 ], [ 24.609375, 53.956086 ], [ 23.203125, 53.956086 ], [ 23.203125, 54.367759 ], [ 22.500000, 54.367759 ], [ 22.500000, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 55.178868 ], [ 21.445312, 55.178868 ], [ 21.445312, 55.379110 ], [ 21.093750, 55.379110 ], [ 21.093750, 55.776573 ], [ 20.742188, 55.776573 ], [ 20.742188, 56.170023 ], [ 21.796875, 56.170023 ], [ 21.796875, 56.365250 ], [ 24.257812, 56.365250 ], [ 24.257812, 56.559482 ], [ 24.609375, 56.559482 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.170023 ], [ 28.476562, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ], [ 29.531250, 55.776573 ], [ 29.531250, 55.578345 ], [ 29.882812, 55.578345 ], [ 29.882812, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.977614 ], [ 30.585938, 54.977614 ], [ 30.585938, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.640625, 52.908902 ], [ 31.640625, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.399206 ], [ 28.125000, 51.399206 ], [ 28.125000, 51.618017 ], [ 26.718750, 51.618017 ], [ 26.718750, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.268157 ], [ 23.203125, 52.268157 ], [ 23.203125, 52.482780 ], [ 23.906250, 52.482780 ], [ 23.906250, 53.330873 ], [ 23.554688, 53.330873 ], [ 23.554688, 53.956086 ], [ 24.960938, 53.956086 ], [ 24.960938, 54.162434 ], [ 25.664062, 54.162434 ], [ 25.664062, 54.775346 ], [ 26.015625, 54.775346 ], [ 26.015625, 54.977614 ], [ 26.718750, 54.977614 ], [ 26.718750, 55.379110 ], [ 26.367188, 55.379110 ], [ 26.367188, 55.578345 ], [ 27.070312, 55.578345 ], [ 27.070312, 55.776573 ], [ 27.421875, 55.776573 ], [ 27.421875, 55.973798 ], [ 28.125000, 55.973798 ], [ 28.125000, 56.170023 ], [ 28.476562, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.170023 ], [ 28.476562, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.578345 ], [ 30.585938, 55.578345 ], [ 30.585938, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 54.977614 ], [ 30.585938, 54.977614 ], [ 30.585938, 54.775346 ], [ 30.937500, 54.775346 ], [ 30.937500, 54.367759 ], [ 31.289062, 54.367759 ], [ 31.289062, 54.162434 ], [ 31.640625, 54.162434 ], [ 31.640625, 53.748711 ], [ 32.343750, 53.748711 ], [ 32.343750, 53.540307 ], [ 32.695312, 53.540307 ], [ 32.695312, 53.330873 ], [ 31.289062, 53.330873 ], [ 31.289062, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.268157 ], [ 31.289062, 52.268157 ], [ 31.289062, 52.052490 ], [ 30.585938, 52.052490 ], [ 30.585938, 51.618017 ], [ 30.234375, 51.618017 ], [ 30.234375, 51.399206 ], [ 28.828125, 51.399206 ], [ 28.828125, 51.618017 ], [ 26.367188, 51.618017 ], [ 26.367188, 51.835778 ], [ 25.312500, 51.835778 ], [ 25.312500, 52.052490 ], [ 24.257812, 52.052490 ], [ 24.257812, 51.835778 ], [ 23.906250, 51.835778 ], [ 23.906250, 51.618017 ], [ 23.203125, 51.618017 ], [ 23.203125, 52.268157 ], [ 22.851562, 52.268157 ], [ 22.851562, 52.696361 ], [ 23.554688, 52.696361 ], [ 23.554688, 53.330873 ], [ 23.203125, 53.330873 ], [ 23.203125, 53.956086 ], [ 24.609375, 53.956086 ], [ 24.609375, 54.162434 ], [ 25.312500, 54.162434 ], [ 25.312500, 54.572062 ], [ 25.664062, 54.572062 ], [ 25.664062, 54.977614 ], [ 26.367188, 54.977614 ], [ 26.367188, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.973798 ], [ 27.773438, 55.973798 ], [ 27.773438, 56.170023 ], [ 28.476562, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 48.224673 ], [ 27.070312, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.087585 ], [ 28.476562, 44.087585 ], [ 28.476562, 43.580391 ], [ 28.125000, 43.580391 ], [ 28.125000, 43.834527 ], [ 27.421875, 43.834527 ], [ 27.421875, 44.087585 ], [ 26.718750, 44.087585 ], [ 26.718750, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.580391 ], [ 24.609375, 43.580391 ], [ 24.609375, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.339565 ], [ 22.851562, 44.339565 ], [ 22.851562, 44.590467 ], [ 21.445312, 44.590467 ], [ 21.445312, 45.089036 ], [ 20.742188, 45.089036 ], [ 20.742188, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 46.073231 ], [ 21.093750, 46.073231 ], [ 21.093750, 46.316584 ], [ 21.445312, 46.316584 ], [ 21.445312, 46.800059 ], [ 21.796875, 46.800059 ], [ 21.796875, 47.279229 ], [ 22.148438, 47.279229 ], [ 22.148438, 47.754098 ], [ 22.851562, 47.754098 ], [ 22.851562, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.754098 ], [ 25.312500, 47.754098 ], [ 25.312500, 47.989922 ], [ 26.367188, 47.989922 ], [ 26.367188, 48.224673 ], [ 27.070312, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 48.224673 ], [ 26.718750, 47.989922 ], [ 27.070312, 47.989922 ], [ 27.070312, 47.754098 ], [ 27.421875, 47.754098 ], [ 27.421875, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 47.040182 ], [ 28.125000, 47.040182 ], [ 28.125000, 46.316584 ], [ 27.773438, 46.316584 ], [ 27.773438, 45.828799 ], [ 28.125000, 45.828799 ], [ 28.125000, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.339565 ], [ 28.476562, 44.339565 ], [ 28.476562, 43.834527 ], [ 27.421875, 43.834527 ], [ 27.421875, 44.087585 ], [ 27.070312, 44.087585 ], [ 27.070312, 44.339565 ], [ 26.718750, 44.339565 ], [ 26.718750, 44.087585 ], [ 26.015625, 44.087585 ], [ 26.015625, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.339565 ], [ 22.148438, 44.339565 ], [ 22.148438, 44.590467 ], [ 21.445312, 44.590467 ], [ 21.445312, 45.336702 ], [ 20.742188, 45.336702 ], [ 20.742188, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 46.073231 ], [ 20.039062, 46.073231 ], [ 20.039062, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.800059 ], [ 21.445312, 46.800059 ], [ 21.445312, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 47.754098 ], [ 22.500000, 47.754098 ], [ 22.500000, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.754098 ], [ 24.960938, 47.754098 ], [ 24.960938, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.224673 ], [ 26.718750, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 44.087585 ], [ 27.421875, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.580391 ], [ 28.476562, 43.580391 ], [ 28.476562, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 42.811522 ], [ 27.773438, 42.811522 ], [ 27.773438, 42.293564 ], [ 28.125000, 42.293564 ], [ 28.125000, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 41.244772 ], [ 24.609375, 41.244772 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.244772 ], [ 22.851562, 41.244772 ], [ 22.851562, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 43.325178 ], [ 22.500000, 43.325178 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 24.609375, 43.834527 ], [ 24.609375, 43.580391 ], [ 26.015625, 43.580391 ], [ 26.015625, 43.834527 ], [ 26.718750, 43.834527 ], [ 26.718750, 44.087585 ], [ 27.421875, 44.087585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 44.339565 ], [ 27.070312, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.834527 ], [ 28.476562, 43.834527 ], [ 28.476562, 43.580391 ], [ 28.125000, 43.580391 ], [ 28.125000, 43.325178 ], [ 27.773438, 43.325178 ], [ 27.773438, 43.068888 ], [ 27.421875, 43.068888 ], [ 27.421875, 42.293564 ], [ 27.773438, 42.293564 ], [ 27.773438, 42.032974 ], [ 27.070312, 42.032974 ], [ 27.070312, 42.293564 ], [ 26.718750, 42.293564 ], [ 26.718750, 42.032974 ], [ 26.015625, 42.032974 ], [ 26.015625, 41.508577 ], [ 25.664062, 41.508577 ], [ 25.664062, 41.244772 ], [ 24.609375, 41.244772 ], [ 24.609375, 41.508577 ], [ 22.851562, 41.508577 ], [ 22.851562, 42.032974 ], [ 22.500000, 42.032974 ], [ 22.500000, 42.293564 ], [ 22.148438, 42.293564 ], [ 22.148438, 42.811522 ], [ 22.500000, 42.811522 ], [ 22.500000, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 43.834527 ], [ 22.148438, 43.834527 ], [ 22.148438, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 44.087585 ], [ 26.718750, 44.087585 ], [ 26.718750, 44.339565 ], [ 27.070312, 44.339565 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 48.458352 ], [ 27.421875, 48.224673 ], [ 28.828125, 48.224673 ], [ 28.828125, 47.989922 ], [ 29.179688, 47.989922 ], [ 29.179688, 47.279229 ], [ 29.531250, 47.279229 ], [ 29.531250, 46.800059 ], [ 29.882812, 46.800059 ], [ 29.882812, 46.316584 ], [ 29.179688, 46.316584 ], [ 29.179688, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 46.800059 ], [ 27.773438, 46.800059 ], [ 27.773438, 47.279229 ], [ 27.421875, 47.279229 ], [ 27.421875, 47.517201 ], [ 27.070312, 47.517201 ], [ 27.070312, 48.224673 ], [ 26.718750, 48.224673 ], [ 26.718750, 48.458352 ], [ 27.421875, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 48.458352 ], [ 27.773438, 48.224673 ], [ 28.476562, 48.224673 ], [ 28.476562, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 47.517201 ], [ 29.179688, 47.517201 ], [ 29.179688, 47.279229 ], [ 29.531250, 47.279229 ], [ 29.531250, 46.800059 ], [ 29.882812, 46.800059 ], [ 29.882812, 46.558860 ], [ 28.828125, 46.558860 ], [ 28.828125, 46.073231 ], [ 28.476562, 46.073231 ], [ 28.476562, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 45.828799 ], [ 27.773438, 45.828799 ], [ 27.773438, 46.316584 ], [ 28.125000, 46.316584 ], [ 28.125000, 47.040182 ], [ 27.773438, 47.040182 ], [ 27.773438, 47.279229 ], [ 27.421875, 47.279229 ], [ 27.421875, 47.754098 ], [ 27.070312, 47.754098 ], [ 27.070312, 47.989922 ], [ 26.718750, 47.989922 ], [ 26.718750, 48.458352 ], [ 27.773438, 48.458352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 52.268157 ], [ 33.750000, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.835778 ], [ 34.453125, 51.835778 ], [ 34.453125, 51.618017 ], [ 34.101562, 51.618017 ], [ 34.101562, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.958427 ], [ 35.507812, 50.958427 ], [ 35.507812, 50.513427 ], [ 35.859375, 50.513427 ], [ 35.859375, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.064192 ], [ 37.617188, 50.064192 ], [ 37.617188, 49.837982 ], [ 39.023438, 49.837982 ], [ 39.023438, 49.610710 ], [ 40.078125, 49.610710 ], [ 40.078125, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.517201 ], [ 38.320312, 47.517201 ], [ 38.320312, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.800059 ], [ 36.562500, 46.800059 ], [ 36.562500, 46.558860 ], [ 35.507812, 46.558860 ], [ 35.507812, 46.316584 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.828799 ], [ 35.156250, 45.828799 ], [ 35.156250, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.089036 ], [ 35.859375, 45.089036 ], [ 35.859375, 44.840291 ], [ 35.156250, 44.840291 ], [ 35.156250, 44.590467 ], [ 34.453125, 44.590467 ], [ 34.453125, 44.339565 ], [ 33.398438, 44.339565 ], [ 33.398438, 45.089036 ], [ 32.695312, 45.089036 ], [ 32.695312, 45.583290 ], [ 33.398438, 45.583290 ], [ 33.398438, 46.073231 ], [ 32.343750, 46.073231 ], [ 32.343750, 46.316584 ], [ 31.640625, 46.316584 ], [ 31.640625, 46.800059 ], [ 31.289062, 46.800059 ], [ 31.289062, 46.558860 ], [ 30.585938, 46.558860 ], [ 30.585938, 46.316584 ], [ 30.234375, 46.316584 ], [ 30.234375, 45.828799 ], [ 29.882812, 45.828799 ], [ 29.882812, 45.336702 ], [ 28.125000, 45.336702 ], [ 28.125000, 45.583290 ], [ 28.828125, 45.583290 ], [ 28.828125, 46.558860 ], [ 29.179688, 46.558860 ], [ 29.179688, 46.316584 ], [ 29.882812, 46.316584 ], [ 29.882812, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.279229 ], [ 29.179688, 47.279229 ], [ 29.179688, 47.989922 ], [ 28.828125, 47.989922 ], [ 28.828125, 48.224673 ], [ 27.421875, 48.224673 ], [ 27.421875, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 48.224673 ], [ 26.367188, 48.224673 ], [ 26.367188, 47.989922 ], [ 25.312500, 47.989922 ], [ 25.312500, 47.754098 ], [ 24.257812, 47.754098 ], [ 24.257812, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 48.224673 ], [ 22.148438, 48.224673 ], [ 22.148438, 48.922499 ], [ 22.851562, 48.922499 ], [ 22.851562, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 49.382373 ], [ 22.851562, 49.382373 ], [ 22.851562, 49.837982 ], [ 23.203125, 49.837982 ], [ 23.203125, 50.064192 ], [ 23.554688, 50.064192 ], [ 23.554688, 50.289339 ], [ 23.906250, 50.289339 ], [ 23.906250, 51.179343 ], [ 23.554688, 51.179343 ], [ 23.554688, 51.618017 ], [ 24.609375, 51.618017 ], [ 24.609375, 51.835778 ], [ 26.718750, 51.835778 ], [ 26.718750, 51.618017 ], [ 28.125000, 51.618017 ], [ 28.125000, 51.399206 ], [ 30.585938, 51.399206 ], [ 30.585938, 51.835778 ], [ 30.937500, 51.835778 ], [ 30.937500, 52.052490 ], [ 32.343750, 52.052490 ], [ 32.343750, 52.268157 ], [ 33.750000, 52.268157 ] ] ], [ [ [ 36.562500, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.336702 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.482780 ], [ 33.750000, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.399206 ], [ 34.804688, 51.399206 ], [ 34.804688, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.513427 ], [ 35.859375, 50.513427 ], [ 35.859375, 50.289339 ], [ 37.617188, 50.289339 ], [ 37.617188, 50.064192 ], [ 38.320312, 50.064192 ], [ 38.320312, 49.837982 ], [ 39.023438, 49.837982 ], [ 39.023438, 49.610710 ], [ 39.726562, 49.610710 ], [ 39.726562, 49.382373 ], [ 40.078125, 49.382373 ], [ 40.078125, 49.152970 ], [ 39.726562, 49.152970 ], [ 39.726562, 48.922499 ], [ 39.375000, 48.922499 ], [ 39.375000, 48.690960 ], [ 39.726562, 48.690960 ], [ 39.726562, 47.989922 ], [ 38.671875, 47.989922 ], [ 38.671875, 47.754098 ], [ 37.968750, 47.754098 ], [ 37.968750, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.800059 ], [ 35.507812, 46.800059 ], [ 35.507812, 46.558860 ], [ 35.156250, 46.558860 ], [ 35.156250, 46.316584 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.583290 ], [ 36.210938, 45.583290 ], [ 36.210938, 45.336702 ], [ 35.859375, 45.336702 ], [ 35.859375, 45.089036 ], [ 35.156250, 45.089036 ], [ 35.156250, 44.840291 ], [ 34.453125, 44.840291 ], [ 34.453125, 44.590467 ], [ 33.046875, 44.590467 ], [ 33.046875, 44.840291 ], [ 33.398438, 44.840291 ], [ 33.398438, 45.089036 ], [ 32.695312, 45.089036 ], [ 32.695312, 45.336702 ], [ 32.343750, 45.336702 ], [ 32.343750, 45.583290 ], [ 32.695312, 45.583290 ], [ 32.695312, 45.828799 ], [ 33.398438, 45.828799 ], [ 33.398438, 46.073231 ], [ 33.046875, 46.073231 ], [ 33.046875, 46.316584 ], [ 31.992188, 46.316584 ], [ 31.992188, 46.558860 ], [ 31.640625, 46.558860 ], [ 31.640625, 46.800059 ], [ 30.585938, 46.800059 ], [ 30.585938, 46.316584 ], [ 30.234375, 46.316584 ], [ 30.234375, 45.828799 ], [ 29.882812, 45.828799 ], [ 29.882812, 45.336702 ], [ 28.125000, 45.336702 ], [ 28.125000, 45.583290 ], [ 28.476562, 45.583290 ], [ 28.476562, 46.073231 ], [ 28.828125, 46.073231 ], [ 28.828125, 46.558860 ], [ 29.882812, 46.558860 ], [ 29.882812, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.279229 ], [ 29.179688, 47.279229 ], [ 29.179688, 47.517201 ], [ 28.828125, 47.517201 ], [ 28.828125, 47.989922 ], [ 28.476562, 47.989922 ], [ 28.476562, 48.224673 ], [ 27.773438, 48.224673 ], [ 27.773438, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 48.224673 ], [ 26.015625, 48.224673 ], [ 26.015625, 47.989922 ], [ 24.960938, 47.989922 ], [ 24.960938, 47.754098 ], [ 24.257812, 47.754098 ], [ 24.257812, 47.989922 ], [ 22.500000, 47.989922 ], [ 22.500000, 48.224673 ], [ 21.796875, 48.224673 ], [ 21.796875, 48.690960 ], [ 22.148438, 48.690960 ], [ 22.148438, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 50.513427 ], [ 23.906250, 50.513427 ], [ 23.906250, 50.958427 ], [ 23.554688, 50.958427 ], [ 23.554688, 51.399206 ], [ 23.203125, 51.399206 ], [ 23.203125, 51.618017 ], [ 23.906250, 51.618017 ], [ 23.906250, 51.835778 ], [ 24.257812, 51.835778 ], [ 24.257812, 52.052490 ], [ 25.312500, 52.052490 ], [ 25.312500, 51.835778 ], [ 26.367188, 51.835778 ], [ 26.367188, 51.618017 ], [ 28.828125, 51.618017 ], [ 28.828125, 51.399206 ], [ 30.234375, 51.399206 ], [ 30.234375, 51.618017 ], [ 30.585938, 51.618017 ], [ 30.585938, 52.052490 ], [ 31.289062, 52.052490 ], [ 31.289062, 52.268157 ], [ 33.398438, 52.268157 ], [ 33.398438, 52.482780 ], [ 33.750000, 52.482780 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.539062, 43.325178 ], [ 42.539062, 43.068888 ], [ 43.242188, 43.068888 ], [ 43.242188, 42.811522 ], [ 43.593750, 42.811522 ], [ 43.593750, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 41.771312 ], [ 46.054688, 41.771312 ], [ 46.054688, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.757812, 41.244772 ], [ 46.757812, 40.979898 ], [ 46.054688, 40.979898 ], [ 46.054688, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 40.979898 ], [ 43.242188, 40.979898 ], [ 43.242188, 41.244772 ], [ 42.539062, 41.244772 ], [ 42.539062, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.771312 ], [ 41.835938, 41.771312 ], [ 41.835938, 42.293564 ], [ 41.484375, 42.293564 ], [ 41.484375, 42.553080 ], [ 41.132812, 42.553080 ], [ 41.132812, 42.811522 ], [ 40.781250, 42.811522 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 42.539062, 43.325178 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.132812, 43.580391 ], [ 41.132812, 43.325178 ], [ 42.187500, 43.325178 ], [ 42.187500, 43.068888 ], [ 42.890625, 43.068888 ], [ 42.890625, 42.811522 ], [ 43.593750, 42.811522 ], [ 43.593750, 42.553080 ], [ 44.296875, 42.553080 ], [ 44.296875, 42.811522 ], [ 44.648438, 42.811522 ], [ 44.648438, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 46.406250, 42.032974 ], [ 46.406250, 41.771312 ], [ 46.054688, 41.771312 ], [ 46.054688, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.508577 ], [ 44.296875, 41.508577 ], [ 44.296875, 41.244772 ], [ 42.890625, 41.244772 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.771312 ], [ 41.484375, 41.771312 ], [ 41.484375, 42.293564 ], [ 41.132812, 42.293564 ], [ 41.132812, 42.811522 ], [ 40.781250, 42.811522 ], [ 40.781250, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 39.726562, 43.325178 ], [ 39.726562, 43.580391 ], [ 41.132812, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.195312, 37.160317 ], [ 10.195312, 36.597889 ], [ 10.546875, 36.597889 ], [ 10.546875, 36.879621 ], [ 11.250000, 36.879621 ], [ 11.250000, 36.597889 ], [ 10.898438, 36.597889 ], [ 10.898438, 36.315125 ], [ 10.546875, 36.315125 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 34.597042 ], [ 10.546875, 34.597042 ], [ 10.546875, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.250000, 33.431441 ], [ 11.250000, 33.137551 ], [ 11.601562, 33.137551 ], [ 11.601562, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.353637 ], [ 9.843750, 31.353637 ], [ 9.843750, 31.052934 ], [ 10.195312, 31.052934 ], [ 10.195312, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 30.448674 ], [ 9.492188, 30.448674 ], [ 9.492188, 31.353637 ], [ 9.140625, 31.353637 ], [ 9.140625, 32.249974 ], [ 8.437500, 32.249974 ], [ 8.437500, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 33.724340 ], [ 7.382812, 33.724340 ], [ 7.382812, 34.016242 ], [ 7.734375, 34.016242 ], [ 7.734375, 34.307144 ], [ 8.085938, 34.307144 ], [ 8.085938, 34.885931 ], [ 8.437500, 34.885931 ], [ 8.437500, 35.746512 ], [ 8.085938, 35.746512 ], [ 8.085938, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 36.879621 ], [ 8.789062, 36.879621 ], [ 8.789062, 37.160317 ], [ 10.195312, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.195312, 37.439974 ], [ 10.195312, 37.160317 ], [ 9.843750, 37.160317 ], [ 9.843750, 36.879621 ], [ 10.546875, 36.879621 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 35.173808 ], [ 10.546875, 35.173808 ], [ 10.546875, 34.597042 ], [ 9.843750, 34.597042 ], [ 9.843750, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 34.016242 ], [ 10.546875, 34.016242 ], [ 10.546875, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.137551 ], [ 11.250000, 33.137551 ], [ 11.250000, 32.249974 ], [ 10.898438, 32.249974 ], [ 10.898438, 31.952162 ], [ 10.546875, 31.952162 ], [ 10.546875, 31.653381 ], [ 9.843750, 31.653381 ], [ 9.843750, 30.448674 ], [ 9.140625, 30.448674 ], [ 9.140625, 31.353637 ], [ 8.789062, 31.353637 ], [ 8.789062, 32.249974 ], [ 8.437500, 32.249974 ], [ 8.437500, 32.546813 ], [ 8.085938, 32.546813 ], [ 8.085938, 32.842674 ], [ 7.734375, 32.842674 ], [ 7.734375, 33.137551 ], [ 7.382812, 33.137551 ], [ 7.382812, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.597042 ], [ 8.085938, 34.597042 ], [ 8.085938, 37.160317 ], [ 9.140625, 37.160317 ], [ 9.140625, 37.439974 ], [ 10.195312, 37.439974 ] ] ], [ [ [ 10.898438, 36.879621 ], [ 10.546875, 36.879621 ], [ 10.546875, 37.160317 ], [ 10.898438, 37.160317 ], [ 10.898438, 36.879621 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.382812, 37.160317 ], [ 7.382812, 36.879621 ], [ 8.437500, 36.879621 ], [ 8.437500, 36.597889 ], [ 8.085938, 36.597889 ], [ 8.085938, 35.746512 ], [ 8.437500, 35.746512 ], [ 8.437500, 34.885931 ], [ 8.085938, 34.885931 ], [ 8.085938, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.016242 ], [ 7.382812, 34.016242 ], [ 7.382812, 33.724340 ], [ 7.734375, 33.724340 ], [ 7.734375, 33.137551 ], [ 8.085938, 33.137551 ], [ 8.085938, 32.842674 ], [ 8.437500, 32.842674 ], [ 8.437500, 32.249974 ], [ 9.140625, 32.249974 ], [ 9.140625, 31.353637 ], [ 9.492188, 31.353637 ], [ 9.492188, 29.840644 ], [ 9.843750, 29.840644 ], [ 9.843750, 27.371767 ], [ 9.492188, 27.371767 ], [ 9.492188, 26.745610 ], [ 9.843750, 26.745610 ], [ 9.843750, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 25.799891 ], [ 9.843750, 25.799891 ], [ 9.843750, 24.527135 ], [ 10.898438, 24.527135 ], [ 10.898438, 24.206890 ], [ 11.601562, 24.206890 ], [ 11.601562, 23.885838 ], [ 11.953125, 23.885838 ], [ 11.953125, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 22.917923 ], [ 10.546875, 22.917923 ], [ 10.546875, 22.593726 ], [ 10.195312, 22.593726 ], [ 10.195312, 22.268764 ], [ 9.492188, 22.268764 ], [ 9.492188, 21.943046 ], [ 8.789062, 21.943046 ], [ 8.789062, 21.616579 ], [ 8.437500, 21.616579 ], [ 8.437500, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 20.961440 ], [ 7.382812, 20.961440 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.303418 ], [ 6.679688, 20.303418 ], [ 6.679688, 19.973349 ], [ 5.976562, 19.973349 ], [ 5.976562, 19.642588 ], [ 5.273438, 19.642588 ], [ 5.273438, 19.311143 ], [ 3.867188, 19.311143 ], [ 3.867188, 18.979026 ], [ 3.164062, 18.979026 ], [ 3.164062, 19.642588 ], [ 2.812500, 19.642588 ], [ 2.812500, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.303418 ], [ 1.757812, 20.303418 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ 0.000000, 21.616579 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.406250, 22.593726 ], [ -1.406250, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 32.249974 ], [ -1.054688, 32.249974 ], [ -1.054688, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 35.460670 ], [ -1.054688, 35.460670 ], [ -1.054688, 35.746512 ], [ 0.000000, 35.746512 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 1.054688, 36.315125 ], [ 1.054688, 36.597889 ], [ 2.460938, 36.597889 ], [ 2.460938, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.597889 ], [ 5.625000, 36.597889 ], [ 5.625000, 36.879621 ], [ 6.328125, 36.879621 ], [ 6.328125, 37.160317 ], [ 7.382812, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.085938, 37.160317 ], [ 8.085938, 34.597042 ], [ 7.734375, 34.597042 ], [ 7.734375, 34.307144 ], [ 7.382812, 34.307144 ], [ 7.382812, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 32.546813 ], [ 8.437500, 32.546813 ], [ 8.437500, 32.249974 ], [ 8.789062, 32.249974 ], [ 8.789062, 31.353637 ], [ 9.140625, 31.353637 ], [ 9.140625, 29.840644 ], [ 9.492188, 29.840644 ], [ 9.492188, 29.228890 ], [ 9.843750, 29.228890 ], [ 9.843750, 28.613459 ], [ 9.492188, 28.613459 ], [ 9.492188, 26.431228 ], [ 9.140625, 26.431228 ], [ 9.140625, 25.799891 ], [ 9.492188, 25.799891 ], [ 9.492188, 25.482951 ], [ 9.843750, 25.482951 ], [ 9.843750, 24.846565 ], [ 10.195312, 24.846565 ], [ 10.195312, 24.527135 ], [ 10.898438, 24.527135 ], [ 10.898438, 24.206890 ], [ 11.250000, 24.206890 ], [ 11.250000, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 22.917923 ], [ 10.546875, 22.917923 ], [ 10.546875, 22.593726 ], [ 10.195312, 22.593726 ], [ 10.195312, 22.268764 ], [ 9.492188, 22.268764 ], [ 9.492188, 21.943046 ], [ 8.789062, 21.943046 ], [ 8.789062, 21.616579 ], [ 8.437500, 21.616579 ], [ 8.437500, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 20.961440 ], [ 7.382812, 20.961440 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.303418 ], [ 6.679688, 20.303418 ], [ 6.679688, 19.973349 ], [ 5.976562, 19.973349 ], [ 5.976562, 19.642588 ], [ 5.273438, 19.642588 ], [ 5.273438, 19.311143 ], [ 2.812500, 19.311143 ], [ 2.812500, 19.973349 ], [ 1.757812, 19.973349 ], [ 1.757812, 20.632784 ], [ 1.406250, 20.632784 ], [ 1.406250, 20.961440 ], [ 0.703125, 20.961440 ], [ 0.703125, 21.289374 ], [ 0.351562, 21.289374 ], [ 0.351562, 21.616579 ], [ -0.351562, 21.616579 ], [ -0.351562, 21.943046 ], [ -0.703125, 21.943046 ], [ -0.703125, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.593726 ], [ -1.757812, 22.593726 ], [ -1.757812, 32.249974 ], [ -1.406250, 32.249974 ], [ -1.406250, 33.431441 ], [ -1.757812, 33.431441 ], [ -1.757812, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 35.746512 ], [ -0.703125, 35.746512 ], [ -0.703125, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.315125 ], [ 0.703125, 36.315125 ], [ 0.703125, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 36.879621 ], [ 5.976562, 36.879621 ], [ 5.976562, 37.160317 ], [ 8.085938, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.953125, 33.137551 ], [ 11.953125, 32.842674 ], [ 14.062500, 32.842674 ], [ 14.062500, 32.546813 ], [ 14.765625, 32.546813 ], [ 14.765625, 32.249974 ], [ 15.117188, 32.249974 ], [ 15.117188, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.353637 ], [ 15.820312, 31.353637 ], [ 15.820312, 31.052934 ], [ 16.875000, 31.052934 ], [ 16.875000, 30.751278 ], [ 17.929688, 30.751278 ], [ 17.929688, 30.448674 ], [ 18.632812, 30.448674 ], [ 18.632812, 30.145127 ], [ 19.687500, 30.145127 ], [ 19.687500, 30.751278 ], [ 20.039062, 30.751278 ], [ 20.039062, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 20.039062, 31.952162 ], [ 20.039062, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.546813 ], [ 20.742188, 32.546813 ], [ 20.742188, 32.842674 ], [ 21.796875, 32.842674 ], [ 21.796875, 32.546813 ], [ 22.851562, 32.546813 ], [ 22.851562, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 31.952162 ], [ 24.960938, 31.952162 ], [ 24.960938, 31.653381 ], [ 25.312500, 31.653381 ], [ 25.312500, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 30.448674 ], [ 24.609375, 30.448674 ], [ 24.609375, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.642588 ], [ 23.203125, 19.642588 ], [ 23.203125, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 20.303418 ], [ 21.796875, 20.303418 ], [ 21.796875, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 20.961440 ], [ 20.390625, 20.961440 ], [ 20.390625, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.241346 ], [ 15.117188, 23.241346 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.593726 ], [ 13.710938, 22.593726 ], [ 13.710938, 22.917923 ], [ 13.007812, 22.917923 ], [ 13.007812, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.206890 ], [ 10.898438, 24.206890 ], [ 10.898438, 24.527135 ], [ 9.843750, 24.527135 ], [ 9.843750, 25.799891 ], [ 9.492188, 25.799891 ], [ 9.492188, 26.115986 ], [ 9.843750, 26.115986 ], [ 9.843750, 26.745610 ], [ 9.492188, 26.745610 ], [ 9.492188, 27.371767 ], [ 9.843750, 27.371767 ], [ 9.843750, 29.840644 ], [ 9.492188, 29.840644 ], [ 9.492188, 30.448674 ], [ 9.843750, 30.448674 ], [ 9.843750, 30.751278 ], [ 10.195312, 30.751278 ], [ 10.195312, 31.052934 ], [ 9.843750, 31.052934 ], [ 9.843750, 31.353637 ], [ 10.546875, 31.353637 ], [ 10.546875, 31.653381 ], [ 10.898438, 31.653381 ], [ 10.898438, 31.952162 ], [ 11.601562, 31.952162 ], [ 11.601562, 33.137551 ], [ 11.953125, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.601562, 33.137551 ], [ 11.601562, 32.842674 ], [ 14.062500, 32.842674 ], [ 14.062500, 32.546813 ], [ 15.117188, 32.546813 ], [ 15.117188, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.653381 ], [ 15.820312, 31.653381 ], [ 15.820312, 31.353637 ], [ 16.875000, 31.353637 ], [ 16.875000, 31.052934 ], [ 17.929688, 31.052934 ], [ 17.929688, 30.751278 ], [ 18.632812, 30.751278 ], [ 18.632812, 30.448674 ], [ 19.335938, 30.448674 ], [ 19.335938, 30.751278 ], [ 20.039062, 30.751278 ], [ 20.039062, 31.353637 ], [ 19.687500, 31.353637 ], [ 19.687500, 31.952162 ], [ 20.039062, 31.952162 ], [ 20.039062, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.546813 ], [ 20.742188, 32.546813 ], [ 20.742188, 32.842674 ], [ 22.851562, 32.842674 ], [ 22.851562, 32.546813 ], [ 23.203125, 32.546813 ], [ 23.203125, 32.249974 ], [ 23.906250, 32.249974 ], [ 23.906250, 31.952162 ], [ 24.609375, 31.952162 ], [ 24.609375, 31.653381 ], [ 24.960938, 31.653381 ], [ 24.960938, 31.353637 ], [ 24.609375, 31.353637 ], [ 24.609375, 29.840644 ], [ 24.960938, 29.840644 ], [ 24.960938, 20.303418 ], [ 23.554688, 20.303418 ], [ 23.554688, 19.642588 ], [ 23.203125, 19.642588 ], [ 23.203125, 19.973349 ], [ 22.500000, 19.973349 ], [ 22.500000, 20.303418 ], [ 21.796875, 20.303418 ], [ 21.796875, 20.632784 ], [ 21.093750, 20.632784 ], [ 21.093750, 20.961440 ], [ 20.390625, 20.961440 ], [ 20.390625, 21.289374 ], [ 19.687500, 21.289374 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.241346 ], [ 15.117188, 23.241346 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.593726 ], [ 13.710938, 22.593726 ], [ 13.710938, 22.917923 ], [ 13.359375, 22.917923 ], [ 13.359375, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.563987 ], [ 11.601562, 23.563987 ], [ 11.601562, 23.885838 ], [ 11.250000, 23.885838 ], [ 11.250000, 24.206890 ], [ 10.898438, 24.206890 ], [ 10.898438, 24.527135 ], [ 10.195312, 24.527135 ], [ 10.195312, 24.846565 ], [ 9.843750, 24.846565 ], [ 9.843750, 25.482951 ], [ 9.492188, 25.482951 ], [ 9.492188, 25.799891 ], [ 9.140625, 25.799891 ], [ 9.140625, 26.431228 ], [ 9.492188, 26.431228 ], [ 9.492188, 28.613459 ], [ 9.843750, 28.613459 ], [ 9.843750, 29.228890 ], [ 9.492188, 29.228890 ], [ 9.492188, 29.840644 ], [ 9.140625, 29.840644 ], [ 9.140625, 30.448674 ], [ 9.843750, 30.448674 ], [ 9.843750, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 32.249974 ], [ 11.250000, 32.249974 ], [ 11.250000, 33.137551 ], [ 11.601562, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 23.563987 ], [ 12.304688, 23.241346 ], [ 13.007812, 23.241346 ], [ 13.007812, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.943046 ], [ 15.117188, 21.943046 ], [ 15.117188, 20.961440 ], [ 15.468750, 20.961440 ], [ 15.468750, 20.303418 ], [ 15.820312, 20.303418 ], [ 15.820312, 18.979026 ], [ 15.468750, 18.979026 ], [ 15.468750, 17.308688 ], [ 15.117188, 17.308688 ], [ 15.117188, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 15.623037 ], [ 14.062500, 15.623037 ], [ 14.062500, 14.944785 ], [ 13.710938, 14.944785 ], [ 13.710938, 13.923404 ], [ 14.062500, 13.923404 ], [ 14.062500, 13.239945 ], [ 14.765625, 13.239945 ], [ 14.765625, 12.897489 ], [ 14.062500, 12.897489 ], [ 14.062500, 12.554564 ], [ 13.710938, 12.554564 ], [ 13.710938, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.239945 ], [ 12.656250, 13.239945 ], [ 12.656250, 12.897489 ], [ 11.601562, 12.897489 ], [ 11.601562, 13.239945 ], [ 10.195312, 13.239945 ], [ 10.195312, 12.897489 ], [ 8.085938, 12.897489 ], [ 8.085938, 13.239945 ], [ 6.328125, 13.239945 ], [ 6.328125, 13.581921 ], [ 5.625000, 13.581921 ], [ 5.625000, 13.923404 ], [ 4.921875, 13.923404 ], [ 4.921875, 13.581921 ], [ 4.218750, 13.581921 ], [ 4.218750, 13.239945 ], [ 3.867188, 13.239945 ], [ 3.867188, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.523088 ], [ 3.164062, 11.523088 ], [ 3.164062, 11.867351 ], [ 2.812500, 11.867351 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 1.406250, 12.554564 ], [ 1.406250, 12.897489 ], [ 1.054688, 12.897489 ], [ 1.054688, 13.239945 ], [ 0.703125, 13.239945 ], [ 0.703125, 13.581921 ], [ 0.351562, 13.581921 ], [ 0.351562, 14.944785 ], [ 1.406250, 14.944785 ], [ 1.406250, 15.284185 ], [ 3.515625, 15.284185 ], [ 3.515625, 15.961329 ], [ 3.867188, 15.961329 ], [ 3.867188, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.273438, 19.311143 ], [ 5.273438, 19.642588 ], [ 5.976562, 19.642588 ], [ 5.976562, 19.973349 ], [ 6.679688, 19.973349 ], [ 6.679688, 20.303418 ], [ 7.031250, 20.303418 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.961440 ], [ 8.085938, 20.961440 ], [ 8.085938, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.268764 ], [ 10.195312, 22.268764 ], [ 10.195312, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.563987 ], [ 12.304688, 23.563987 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 23.563987 ], [ 12.304688, 23.241346 ], [ 13.359375, 23.241346 ], [ 13.359375, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.593726 ], [ 14.765625, 22.593726 ], [ 14.765625, 21.289374 ], [ 15.468750, 21.289374 ], [ 15.468750, 20.632784 ], [ 15.820312, 20.632784 ], [ 15.820312, 20.303418 ], [ 15.468750, 20.303418 ], [ 15.468750, 18.979026 ], [ 15.117188, 18.979026 ], [ 15.117188, 16.299051 ], [ 14.414062, 16.299051 ], [ 14.414062, 15.961329 ], [ 13.710938, 15.961329 ], [ 13.710938, 15.284185 ], [ 13.359375, 15.284185 ], [ 13.359375, 14.264383 ], [ 13.710938, 14.264383 ], [ 13.710938, 13.581921 ], [ 14.414062, 13.581921 ], [ 14.414062, 12.897489 ], [ 14.062500, 12.897489 ], [ 14.062500, 12.554564 ], [ 13.359375, 12.554564 ], [ 13.359375, 13.239945 ], [ 13.007812, 13.239945 ], [ 13.007812, 13.581921 ], [ 12.656250, 13.581921 ], [ 12.656250, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 13.581921 ], [ 9.843750, 13.581921 ], [ 9.843750, 13.239945 ], [ 9.492188, 13.239945 ], [ 9.492188, 12.897489 ], [ 8.437500, 12.897489 ], [ 8.437500, 13.239945 ], [ 6.328125, 13.239945 ], [ 6.328125, 13.581921 ], [ 5.625000, 13.581921 ], [ 5.625000, 13.923404 ], [ 4.218750, 13.923404 ], [ 4.218750, 13.581921 ], [ 3.867188, 13.581921 ], [ 3.867188, 12.897489 ], [ 3.515625, 12.897489 ], [ 3.515625, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 12.211180 ], [ 2.812500, 12.211180 ], [ 2.812500, 12.554564 ], [ 2.460938, 12.554564 ], [ 2.460938, 12.211180 ], [ 2.109375, 12.211180 ], [ 2.109375, 12.897489 ], [ 0.703125, 12.897489 ], [ 0.703125, 13.923404 ], [ 0.351562, 13.923404 ], [ 0.351562, 14.264383 ], [ 0.000000, 14.264383 ], [ 0.000000, 14.604847 ], [ 0.351562, 14.604847 ], [ 0.351562, 14.944785 ], [ 0.703125, 14.944785 ], [ 0.703125, 15.284185 ], [ 1.054688, 15.284185 ], [ 1.054688, 15.623037 ], [ 3.515625, 15.623037 ], [ 3.515625, 16.299051 ], [ 3.867188, 16.299051 ], [ 3.867188, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.311143 ], [ 5.273438, 19.311143 ], [ 5.273438, 19.642588 ], [ 5.976562, 19.642588 ], [ 5.976562, 19.973349 ], [ 6.679688, 19.973349 ], [ 6.679688, 20.303418 ], [ 7.031250, 20.303418 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.961440 ], [ 8.085938, 20.961440 ], [ 8.085938, 21.289374 ], [ 8.437500, 21.289374 ], [ 8.437500, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.268764 ], [ 10.195312, 22.268764 ], [ 10.195312, 22.593726 ], [ 10.546875, 22.593726 ], [ 10.546875, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.563987 ], [ 12.304688, 23.563987 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 10.833306 ], [ 1.054688, 10.833306 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.757812, 9.102097 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 7.013668 ], [ 0.351562, 7.013668 ], [ 0.351562, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 11.178402 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.141932 ], [ 1.406250, 10.141932 ], [ 1.406250, 6.664608 ], [ 1.757812, 6.664608 ], [ 1.757812, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 6.664608 ], [ 0.351562, 6.664608 ], [ 0.351562, 8.059230 ], [ 0.703125, 8.059230 ], [ 0.703125, 8.407168 ], [ 0.351562, 8.407168 ], [ 0.351562, 10.487812 ], [ -0.351562, 10.487812 ], [ -0.351562, 10.833306 ], [ 0.000000, 10.833306 ], [ 0.000000, 11.178402 ], [ 0.703125, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.211180 ], [ 2.812500, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 11.523088 ], [ 3.515625, 11.523088 ], [ 3.515625, 10.833306 ], [ 3.867188, 10.833306 ], [ 3.867188, 10.487812 ], [ 3.515625, 10.487812 ], [ 3.515625, 10.141932 ], [ 3.867188, 10.141932 ], [ 3.867188, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.054688, 9.795678 ], [ 1.054688, 10.141932 ], [ 0.703125, 10.141932 ], [ 0.703125, 10.487812 ], [ 1.054688, 10.487812 ], [ 1.054688, 10.833306 ], [ 1.406250, 10.833306 ], [ 1.406250, 11.523088 ], [ 2.109375, 11.523088 ], [ 2.109375, 11.867351 ], [ 2.460938, 11.867351 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.554564 ], [ 2.812500, 12.211180 ], [ 3.164062, 12.211180 ], [ 3.164062, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 9.795678 ], [ 3.164062, 9.795678 ], [ 3.164062, 9.449062 ], [ 2.812500, 9.449062 ], [ 2.812500, 9.102097 ], [ 2.460938, 9.102097 ], [ 2.460938, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 6.664608 ], [ 1.406250, 6.664608 ], [ 1.406250, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 11.178402 ], [ 1.054688, 11.178402 ], [ 1.054688, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 12.554564 ], [ 2.812500, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 13.923404 ], [ 5.625000, 13.581921 ], [ 6.328125, 13.581921 ], [ 6.328125, 13.239945 ], [ 8.085938, 13.239945 ], [ 8.085938, 12.897489 ], [ 10.195312, 12.897489 ], [ 10.195312, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 12.897489 ], [ 12.656250, 12.897489 ], [ 12.656250, 13.239945 ], [ 13.007812, 13.239945 ], [ 13.007812, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.359375, 13.239945 ], [ 13.710938, 13.239945 ], [ 13.710938, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 12.211180 ], [ 14.414062, 12.211180 ], [ 14.414062, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.795678 ], [ 13.007812, 9.795678 ], [ 13.007812, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.407168 ], [ 12.304688, 8.407168 ], [ 12.304688, 8.059230 ], [ 11.953125, 8.059230 ], [ 11.953125, 7.013668 ], [ 11.601562, 7.013668 ], [ 11.601562, 6.664608 ], [ 10.546875, 6.664608 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 6.664608 ], [ 9.843750, 6.664608 ], [ 9.843750, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.965754 ], [ 8.789062, 5.965754 ], [ 8.789062, 5.266008 ], [ 8.437500, 5.266008 ], [ 8.437500, 4.915833 ], [ 8.085938, 4.915833 ], [ 8.085938, 4.565474 ], [ 7.031250, 4.565474 ], [ 7.031250, 4.214943 ], [ 5.625000, 4.214943 ], [ 5.625000, 4.565474 ], [ 5.273438, 4.565474 ], [ 5.273438, 5.266008 ], [ 4.921875, 5.266008 ], [ 4.921875, 5.615986 ], [ 4.570312, 5.615986 ], [ 4.570312, 5.965754 ], [ 4.218750, 5.965754 ], [ 4.218750, 6.315299 ], [ 2.812500, 6.315299 ], [ 2.812500, 9.102097 ], [ 3.164062, 9.102097 ], [ 3.164062, 9.449062 ], [ 3.515625, 9.449062 ], [ 3.515625, 9.795678 ], [ 3.867188, 9.795678 ], [ 3.867188, 10.141932 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.487812 ], [ 3.867188, 10.487812 ], [ 3.867188, 10.833306 ], [ 3.515625, 10.833306 ], [ 3.515625, 12.554564 ], [ 3.867188, 12.554564 ], [ 3.867188, 13.239945 ], [ 4.218750, 13.239945 ], [ 4.218750, 13.581921 ], [ 4.921875, 13.581921 ], [ 4.921875, 13.923404 ], [ 5.625000, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.625000, 13.923404 ], [ 5.625000, 13.581921 ], [ 6.328125, 13.581921 ], [ 6.328125, 13.239945 ], [ 8.437500, 13.239945 ], [ 8.437500, 12.897489 ], [ 9.492188, 12.897489 ], [ 9.492188, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 13.581921 ], [ 11.601562, 13.581921 ], [ 11.601562, 13.239945 ], [ 12.656250, 13.239945 ], [ 12.656250, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.239945 ], [ 13.359375, 13.239945 ], [ 13.359375, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 12.211180 ], [ 14.414062, 12.211180 ], [ 14.414062, 11.523088 ], [ 14.062500, 11.523088 ], [ 14.062500, 11.178402 ], [ 13.710938, 11.178402 ], [ 13.710938, 10.833306 ], [ 13.359375, 10.833306 ], [ 13.359375, 10.487812 ], [ 13.007812, 10.487812 ], [ 13.007812, 9.449062 ], [ 12.656250, 9.449062 ], [ 12.656250, 8.407168 ], [ 11.953125, 8.407168 ], [ 11.953125, 7.710992 ], [ 11.601562, 7.710992 ], [ 11.601562, 6.664608 ], [ 10.546875, 6.664608 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 7.362467 ], [ 9.843750, 7.362467 ], [ 9.843750, 7.013668 ], [ 9.492188, 7.013668 ], [ 9.492188, 6.664608 ], [ 9.140625, 6.664608 ], [ 9.140625, 6.315299 ], [ 8.789062, 6.315299 ], [ 8.789062, 5.615986 ], [ 8.437500, 5.615986 ], [ 8.437500, 4.915833 ], [ 8.085938, 4.915833 ], [ 8.085938, 4.565474 ], [ 5.273438, 4.565474 ], [ 5.273438, 5.266008 ], [ 4.921875, 5.266008 ], [ 4.921875, 5.615986 ], [ 4.570312, 5.615986 ], [ 4.570312, 5.965754 ], [ 4.218750, 5.965754 ], [ 4.218750, 6.315299 ], [ 2.460938, 6.315299 ], [ 2.460938, 9.102097 ], [ 2.812500, 9.102097 ], [ 2.812500, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 12.897489 ], [ 3.867188, 12.897489 ], [ 3.867188, 13.581921 ], [ 4.218750, 13.581921 ], [ 4.218750, 13.923404 ], [ 5.625000, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.108899 ], [ 11.250000, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 2.108899 ], [ 11.250000, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.460181 ], [ 11.250000, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.757537 ], [ 9.492188, 1.757537 ], [ 9.492188, 2.460181 ], [ 11.250000, 2.460181 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 23.241346 ], [ 16.523438, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.593726 ], [ 17.929688, 22.593726 ], [ 17.929688, 22.268764 ], [ 18.632812, 22.268764 ], [ 18.632812, 21.943046 ], [ 19.335938, 21.943046 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 22.851562, 15.623037 ], [ 22.851562, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 14.604847 ], [ 22.148438, 14.604847 ], [ 22.148438, 12.211180 ], [ 22.500000, 12.211180 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.449062 ], [ 20.742188, 9.449062 ], [ 20.742188, 9.102097 ], [ 18.984375, 9.102097 ], [ 18.984375, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.059230 ], [ 17.929688, 8.059230 ], [ 17.929688, 7.710992 ], [ 17.226562, 7.710992 ], [ 17.226562, 7.362467 ], [ 16.523438, 7.362467 ], [ 16.523438, 7.710992 ], [ 16.171875, 7.710992 ], [ 16.171875, 7.362467 ], [ 15.468750, 7.362467 ], [ 15.468750, 8.059230 ], [ 15.117188, 8.059230 ], [ 15.117188, 8.754795 ], [ 14.414062, 8.754795 ], [ 14.414062, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.795678 ], [ 14.765625, 9.795678 ], [ 14.765625, 10.141932 ], [ 15.117188, 10.141932 ], [ 15.117188, 10.487812 ], [ 14.765625, 10.487812 ], [ 14.765625, 11.178402 ], [ 15.117188, 11.178402 ], [ 15.117188, 11.867351 ], [ 14.765625, 11.867351 ], [ 14.765625, 12.554564 ], [ 14.414062, 12.554564 ], [ 14.414062, 12.897489 ], [ 14.765625, 12.897489 ], [ 14.765625, 13.239945 ], [ 14.062500, 13.239945 ], [ 14.062500, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.944785 ], [ 14.062500, 14.944785 ], [ 14.062500, 15.623037 ], [ 14.414062, 15.623037 ], [ 14.414062, 15.961329 ], [ 14.765625, 15.961329 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 17.308688 ], [ 15.468750, 17.308688 ], [ 15.468750, 18.979026 ], [ 15.820312, 18.979026 ], [ 15.820312, 20.303418 ], [ 15.468750, 20.303418 ], [ 15.468750, 20.961440 ], [ 15.117188, 20.961440 ], [ 15.117188, 21.943046 ], [ 14.765625, 21.943046 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.241346 ], [ 16.523438, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 23.241346 ], [ 16.523438, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.593726 ], [ 17.929688, 22.593726 ], [ 17.929688, 22.268764 ], [ 18.632812, 22.268764 ], [ 18.632812, 21.943046 ], [ 19.335938, 21.943046 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.642588 ], [ 23.554688, 19.642588 ], [ 23.554688, 15.623037 ], [ 22.851562, 15.623037 ], [ 22.851562, 15.284185 ], [ 22.500000, 15.284185 ], [ 22.500000, 14.604847 ], [ 22.148438, 14.604847 ], [ 22.148438, 14.264383 ], [ 22.500000, 14.264383 ], [ 22.500000, 13.923404 ], [ 22.148438, 13.923404 ], [ 22.148438, 13.239945 ], [ 21.796875, 13.239945 ], [ 21.796875, 12.897489 ], [ 22.148438, 12.897489 ], [ 22.148438, 12.554564 ], [ 22.500000, 12.554564 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 11.178402 ], [ 22.148438, 11.178402 ], [ 22.148438, 10.833306 ], [ 21.445312, 10.833306 ], [ 21.445312, 10.487812 ], [ 21.093750, 10.487812 ], [ 21.093750, 9.795678 ], [ 20.742188, 9.795678 ], [ 20.742188, 9.449062 ], [ 20.390625, 9.449062 ], [ 20.390625, 9.102097 ], [ 18.632812, 9.102097 ], [ 18.632812, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.059230 ], [ 17.578125, 8.059230 ], [ 17.578125, 7.710992 ], [ 15.117188, 7.710992 ], [ 15.117188, 8.754795 ], [ 14.765625, 8.754795 ], [ 14.765625, 9.102097 ], [ 14.062500, 9.102097 ], [ 14.062500, 9.449062 ], [ 13.710938, 9.449062 ], [ 13.710938, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 10.141932 ], [ 15.117188, 10.141932 ], [ 15.117188, 10.833306 ], [ 14.765625, 10.833306 ], [ 14.765625, 12.554564 ], [ 14.414062, 12.554564 ], [ 14.414062, 13.581921 ], [ 13.710938, 13.581921 ], [ 13.710938, 14.264383 ], [ 13.359375, 14.264383 ], [ 13.359375, 15.284185 ], [ 13.710938, 15.284185 ], [ 13.710938, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 18.979026 ], [ 15.468750, 18.979026 ], [ 15.468750, 20.303418 ], [ 15.820312, 20.303418 ], [ 15.820312, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.289374 ], [ 14.765625, 21.289374 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.241346 ], [ 16.523438, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 11.867351 ], [ 15.117188, 11.867351 ], [ 15.117188, 11.178402 ], [ 14.765625, 11.178402 ], [ 14.765625, 10.487812 ], [ 15.117188, 10.487812 ], [ 15.117188, 10.141932 ], [ 14.765625, 10.141932 ], [ 14.765625, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.754795 ], [ 15.117188, 8.754795 ], [ 15.117188, 8.059230 ], [ 15.468750, 8.059230 ], [ 15.468750, 7.362467 ], [ 15.117188, 7.362467 ], [ 15.117188, 6.664608 ], [ 14.765625, 6.664608 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.214943 ], [ 15.117188, 4.214943 ], [ 15.117188, 3.513421 ], [ 15.468750, 3.513421 ], [ 15.468750, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 2.108899 ], [ 16.171875, 2.108899 ], [ 16.171875, 1.757537 ], [ 15.117188, 1.757537 ], [ 15.117188, 2.108899 ], [ 9.492188, 2.108899 ], [ 9.492188, 2.460181 ], [ 9.843750, 2.460181 ], [ 9.843750, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.864255 ], [ 8.789062, 3.864255 ], [ 8.789062, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.843750, 6.315299 ], [ 9.843750, 6.664608 ], [ 10.195312, 6.664608 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.664608 ], [ 11.601562, 6.664608 ], [ 11.601562, 7.013668 ], [ 11.953125, 7.013668 ], [ 11.953125, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.710938, 10.487812 ], [ 13.710938, 10.833306 ], [ 14.062500, 10.833306 ], [ 14.062500, 11.178402 ], [ 14.414062, 11.178402 ], [ 14.414062, 12.211180 ], [ 14.062500, 12.211180 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 10.833306 ], [ 15.117188, 10.833306 ], [ 15.117188, 10.141932 ], [ 14.062500, 10.141932 ], [ 14.062500, 9.795678 ], [ 13.710938, 9.795678 ], [ 13.710938, 9.449062 ], [ 14.062500, 9.449062 ], [ 14.062500, 9.102097 ], [ 14.765625, 9.102097 ], [ 14.765625, 8.754795 ], [ 15.117188, 8.754795 ], [ 15.117188, 7.013668 ], [ 14.765625, 7.013668 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.565474 ], [ 14.765625, 4.565474 ], [ 14.765625, 3.513421 ], [ 15.117188, 3.513421 ], [ 15.117188, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 1.757537 ], [ 15.117188, 1.757537 ], [ 15.117188, 2.108899 ], [ 14.414062, 2.108899 ], [ 14.414062, 2.460181 ], [ 9.492188, 2.460181 ], [ 9.492188, 3.513421 ], [ 9.140625, 3.513421 ], [ 9.140625, 3.864255 ], [ 8.789062, 3.864255 ], [ 8.789062, 4.214943 ], [ 8.437500, 4.214943 ], [ 8.437500, 5.615986 ], [ 8.789062, 5.615986 ], [ 8.789062, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 6.664608 ], [ 9.492188, 6.664608 ], [ 9.492188, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 7.362467 ], [ 10.195312, 7.362467 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.664608 ], [ 11.601562, 6.664608 ], [ 11.601562, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 9.449062 ], [ 13.007812, 9.449062 ], [ 13.007812, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 11.523088 ], [ 14.414062, 11.523088 ], [ 14.414062, 12.211180 ], [ 14.062500, 12.211180 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 10.833306 ], [ 22.851562, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 8.754795 ], [ 23.906250, 8.754795 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 7.710992 ], [ 24.960938, 7.710992 ], [ 24.960938, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.664608 ], [ 26.367188, 6.664608 ], [ 26.367188, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.266008 ], [ 25.312500, 5.266008 ], [ 25.312500, 4.915833 ], [ 23.554688, 4.915833 ], [ 23.554688, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 3.864255 ], [ 21.796875, 3.864255 ], [ 21.796875, 4.214943 ], [ 20.390625, 4.214943 ], [ 20.390625, 4.565474 ], [ 19.687500, 4.565474 ], [ 19.687500, 4.915833 ], [ 19.335938, 4.915833 ], [ 19.335938, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 3.864255 ], [ 18.281250, 3.864255 ], [ 18.281250, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 2.108899 ], [ 15.820312, 2.108899 ], [ 15.820312, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.513421 ], [ 15.117188, 3.513421 ], [ 15.117188, 4.214943 ], [ 14.414062, 4.214943 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.664608 ], [ 15.117188, 6.664608 ], [ 15.117188, 7.362467 ], [ 16.171875, 7.362467 ], [ 16.171875, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.362467 ], [ 17.226562, 7.362467 ], [ 17.226562, 7.710992 ], [ 17.929688, 7.710992 ], [ 17.929688, 8.059230 ], [ 18.281250, 8.059230 ], [ 18.281250, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 9.102097 ], [ 20.742188, 9.102097 ], [ 20.742188, 9.449062 ], [ 21.445312, 9.449062 ], [ 21.445312, 10.141932 ], [ 21.796875, 10.141932 ], [ 21.796875, 10.487812 ], [ 22.148438, 10.487812 ], [ 22.148438, 10.833306 ], [ 22.851562, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.851562, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 9.449062 ], [ 23.203125, 9.449062 ], [ 23.203125, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.059230 ], [ 24.960938, 8.059230 ], [ 24.960938, 7.362467 ], [ 25.312500, 7.362467 ], [ 25.312500, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.664608 ], [ 26.015625, 6.664608 ], [ 26.015625, 6.315299 ], [ 26.367188, 6.315299 ], [ 26.367188, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.266008 ], [ 24.960938, 5.266008 ], [ 24.960938, 4.915833 ], [ 24.257812, 4.915833 ], [ 24.257812, 5.266008 ], [ 23.906250, 5.266008 ], [ 23.906250, 4.915833 ], [ 22.500000, 4.915833 ], [ 22.500000, 4.565474 ], [ 22.148438, 4.565474 ], [ 22.148438, 4.214943 ], [ 21.445312, 4.214943 ], [ 21.445312, 4.565474 ], [ 20.039062, 4.565474 ], [ 20.039062, 4.915833 ], [ 18.632812, 4.915833 ], [ 18.632812, 4.565474 ], [ 18.281250, 4.565474 ], [ 18.281250, 3.513421 ], [ 17.578125, 3.513421 ], [ 17.578125, 3.864255 ], [ 16.875000, 3.864255 ], [ 16.875000, 3.513421 ], [ 16.523438, 3.513421 ], [ 16.523438, 3.162456 ], [ 16.171875, 3.162456 ], [ 16.171875, 2.460181 ], [ 15.820312, 2.460181 ], [ 15.820312, 3.162456 ], [ 15.117188, 3.162456 ], [ 15.117188, 3.513421 ], [ 14.765625, 3.513421 ], [ 14.765625, 4.565474 ], [ 14.414062, 4.565474 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 7.013668 ], [ 15.117188, 7.013668 ], [ 15.117188, 7.710992 ], [ 17.578125, 7.710992 ], [ 17.578125, 8.059230 ], [ 18.281250, 8.059230 ], [ 18.281250, 8.407168 ], [ 18.632812, 8.407168 ], [ 18.632812, 9.102097 ], [ 20.390625, 9.102097 ], [ 20.390625, 9.449062 ], [ 20.742188, 9.449062 ], [ 20.742188, 9.795678 ], [ 21.093750, 9.795678 ], [ 21.093750, 10.487812 ], [ 21.445312, 10.487812 ], [ 21.445312, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 11.178402 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.664062, 35.460670 ], [ 25.664062, 35.173808 ], [ 26.367188, 35.173808 ], [ 26.367188, 34.885931 ], [ 24.609375, 34.885931 ], [ 24.609375, 35.173808 ], [ 23.554688, 35.173808 ], [ 23.554688, 35.460670 ], [ 25.664062, 35.460670 ] ] ], [ [ [ 26.718750, 41.508577 ], [ 26.718750, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.713956 ], [ 25.312500, 40.713956 ], [ 25.312500, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.178873 ], [ 24.257812, 40.178873 ], [ 24.257812, 39.909736 ], [ 23.203125, 39.909736 ], [ 23.203125, 40.178873 ], [ 22.500000, 40.178873 ], [ 22.500000, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.095963 ], [ 22.851562, 39.095963 ], [ 22.851562, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.548165 ], [ 23.554688, 38.548165 ], [ 23.554688, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.554688, 37.718590 ], [ 23.554688, 37.439974 ], [ 22.851562, 37.439974 ], [ 22.851562, 36.879621 ], [ 23.203125, 36.879621 ], [ 23.203125, 36.315125 ], [ 22.148438, 36.315125 ], [ 22.148438, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 37.160317 ], [ 21.445312, 37.160317 ], [ 21.445312, 37.996163 ], [ 21.093750, 37.996163 ], [ 21.093750, 38.548165 ], [ 20.742188, 38.548165 ], [ 20.742188, 39.095963 ], [ 20.390625, 39.095963 ], [ 20.390625, 39.368279 ], [ 20.039062, 39.368279 ], [ 20.039062, 39.639538 ], [ 20.390625, 39.639538 ], [ 20.390625, 39.909736 ], [ 20.742188, 39.909736 ], [ 20.742188, 40.446947 ], [ 21.093750, 40.446947 ], [ 21.093750, 40.713956 ], [ 21.796875, 40.713956 ], [ 21.796875, 40.979898 ], [ 22.148438, 40.979898 ], [ 22.148438, 41.244772 ], [ 24.257812, 41.244772 ], [ 24.257812, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.244772 ], [ 26.015625, 41.244772 ], [ 26.015625, 41.508577 ], [ 26.718750, 41.508577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.015625, 35.460670 ], [ 26.015625, 35.173808 ], [ 23.554688, 35.173808 ], [ 23.554688, 35.460670 ], [ 26.015625, 35.460670 ] ] ], [ [ [ 22.851562, 40.178873 ], [ 22.851562, 39.639538 ], [ 23.203125, 39.639538 ], [ 23.203125, 39.095963 ], [ 22.851562, 39.095963 ], [ 22.851562, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.439974 ], [ 22.500000, 37.439974 ], [ 22.500000, 36.879621 ], [ 22.851562, 36.879621 ], [ 22.851562, 36.597889 ], [ 21.445312, 36.597889 ], [ 21.445312, 37.160317 ], [ 21.093750, 37.160317 ], [ 21.093750, 38.548165 ], [ 20.390625, 38.548165 ], [ 20.390625, 39.095963 ], [ 20.039062, 39.095963 ], [ 20.039062, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 41.244772 ], [ 22.500000, 41.244772 ], [ 22.500000, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.244772 ], [ 25.664062, 41.244772 ], [ 25.664062, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 41.771312 ], [ 26.367188, 41.771312 ], [ 26.367188, 41.244772 ], [ 26.015625, 41.244772 ], [ 26.015625, 40.979898 ], [ 24.257812, 40.979898 ], [ 24.257812, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.178873 ], [ 22.851562, 40.178873 ] ], [ [ 23.203125, 37.718590 ], [ 23.203125, 37.996163 ], [ 22.851562, 37.996163 ], [ 22.851562, 37.718590 ], [ 23.203125, 37.718590 ] ], [ [ 22.851562, 40.178873 ], [ 22.851562, 40.446947 ], [ 22.500000, 40.446947 ], [ 22.500000, 40.178873 ], [ 22.851562, 40.178873 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 35.460670 ], [ 34.101562, 35.173808 ], [ 33.750000, 35.173808 ], [ 33.750000, 34.885931 ], [ 33.398438, 34.885931 ], [ 33.398438, 35.173808 ], [ 33.046875, 35.173808 ], [ 33.046875, 35.460670 ], [ 34.101562, 35.460670 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.750000, 35.460670 ], [ 33.750000, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.695312, 35.460670 ], [ 33.750000, 35.460670 ] ] ], [ [ [ 34.453125, 35.460670 ], [ 34.101562, 35.460670 ], [ 34.101562, 35.746512 ], [ 34.453125, 35.746512 ], [ 34.453125, 35.460670 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.398438, 35.173808 ], [ 33.398438, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 34.597042 ], [ 32.343750, 34.597042 ], [ 32.343750, 35.173808 ], [ 33.398438, 35.173808 ] ] ], [ [ [ 34.101562, 34.885931 ], [ 33.750000, 34.885931 ], [ 33.750000, 35.173808 ], [ 34.101562, 35.173808 ], [ 34.101562, 34.885931 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 35.173808 ], [ 33.750000, 34.885931 ], [ 33.046875, 34.885931 ], [ 33.046875, 34.597042 ], [ 32.343750, 34.597042 ], [ 32.343750, 34.885931 ], [ 31.992188, 34.885931 ], [ 31.992188, 35.173808 ], [ 33.750000, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.718750, 31.653381 ], [ 26.718750, 31.353637 ], [ 27.773438, 31.353637 ], [ 27.773438, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.751278 ], [ 29.531250, 30.751278 ], [ 29.531250, 31.052934 ], [ 30.234375, 31.052934 ], [ 30.234375, 31.353637 ], [ 31.640625, 31.353637 ], [ 31.640625, 31.052934 ], [ 34.101562, 31.052934 ], [ 34.101562, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 29.840644 ], [ 34.804688, 29.840644 ], [ 34.804688, 28.613459 ], [ 34.453125, 28.613459 ], [ 34.453125, 27.994401 ], [ 34.101562, 27.994401 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.994401 ], [ 33.046875, 27.994401 ], [ 33.046875, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.101562, 26.431228 ], [ 34.101562, 25.799891 ], [ 34.453125, 25.799891 ], [ 34.453125, 25.165173 ], [ 34.804688, 25.165173 ], [ 34.804688, 24.846565 ], [ 35.156250, 24.846565 ], [ 35.156250, 24.527135 ], [ 35.507812, 24.527135 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.268764 ], [ 36.562500, 22.268764 ], [ 36.562500, 21.943046 ], [ 24.960938, 21.943046 ], [ 24.960938, 29.535230 ], [ 24.609375, 29.535230 ], [ 24.609375, 30.448674 ], [ 24.960938, 30.448674 ], [ 24.960938, 31.353637 ], [ 25.312500, 31.353637 ], [ 25.312500, 31.653381 ], [ 26.718750, 31.653381 ] ], [ [ 32.695312, 28.613459 ], [ 32.695312, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 28.613459 ], [ 32.695312, 28.613459 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 27.683528 ], [ 33.398438, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.431228 ], [ 34.101562, 26.431228 ], [ 34.101562, 26.115986 ], [ 34.453125, 26.115986 ], [ 34.453125, 24.846565 ], [ 34.804688, 24.846565 ], [ 34.804688, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 24.206890 ], [ 35.507812, 24.206890 ], [ 35.507812, 23.885838 ], [ 35.156250, 23.885838 ], [ 35.156250, 23.563987 ], [ 35.507812, 23.563987 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.268764 ], [ 24.960938, 22.268764 ], [ 24.960938, 29.840644 ], [ 24.609375, 29.840644 ], [ 24.609375, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 31.653381 ], [ 26.718750, 31.653381 ], [ 26.718750, 31.353637 ], [ 27.421875, 31.353637 ], [ 27.421875, 31.052934 ], [ 29.531250, 31.052934 ], [ 29.531250, 31.353637 ], [ 29.882812, 31.353637 ], [ 29.882812, 31.653381 ], [ 31.640625, 31.653381 ], [ 31.640625, 31.052934 ], [ 34.101562, 31.052934 ], [ 34.101562, 30.751278 ], [ 34.453125, 30.751278 ], [ 34.453125, 29.840644 ], [ 34.804688, 29.840644 ], [ 34.804688, 29.228890 ], [ 34.453125, 29.228890 ], [ 34.453125, 28.921631 ], [ 34.101562, 28.921631 ], [ 34.101562, 27.683528 ], [ 33.398438, 27.683528 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 28.921631 ], [ 32.695312, 28.921631 ], [ 32.695312, 29.535230 ], [ 32.343750, 29.535230 ] ], [ [ 33.046875, 28.304381 ], [ 33.046875, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 28.304381 ], [ 33.046875, 28.304381 ] ], [ [ 32.695312, 28.921631 ], [ 32.695312, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 28.921631 ], [ 32.695312, 28.921631 ] ], [ [ 32.343750, 29.535230 ], [ 32.343750, 29.840644 ], [ 31.992188, 29.840644 ], [ 31.992188, 29.535230 ], [ 32.343750, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.032974 ], [ 35.156250, 41.771312 ], [ 35.859375, 41.771312 ], [ 35.859375, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.244772 ], [ 37.265625, 41.244772 ], [ 37.265625, 40.979898 ], [ 40.781250, 40.979898 ], [ 40.781250, 41.244772 ], [ 41.484375, 41.244772 ], [ 41.484375, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.368279 ], [ 43.945312, 39.368279 ], [ 43.945312, 38.822591 ], [ 44.296875, 38.822591 ], [ 44.296875, 37.439974 ], [ 44.648438, 37.439974 ], [ 44.648438, 36.879621 ], [ 43.945312, 36.879621 ], [ 43.945312, 37.160317 ], [ 43.242188, 37.160317 ], [ 43.242188, 37.439974 ], [ 42.890625, 37.439974 ], [ 42.890625, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 36.879621 ], [ 40.078125, 36.879621 ], [ 40.078125, 36.597889 ], [ 38.320312, 36.597889 ], [ 38.320312, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 35.746512 ], [ 36.210938, 35.746512 ], [ 36.210938, 36.031332 ], [ 35.859375, 36.031332 ], [ 35.859375, 36.315125 ], [ 36.210938, 36.315125 ], [ 36.210938, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.315125 ], [ 33.398438, 36.315125 ], [ 33.398438, 36.031332 ], [ 31.992188, 36.031332 ], [ 31.992188, 36.315125 ], [ 31.640625, 36.315125 ], [ 31.640625, 36.597889 ], [ 30.585938, 36.597889 ], [ 30.585938, 36.315125 ], [ 30.234375, 36.315125 ], [ 30.234375, 36.031332 ], [ 29.179688, 36.031332 ], [ 29.179688, 36.315125 ], [ 28.828125, 36.315125 ], [ 28.828125, 36.597889 ], [ 27.773438, 36.597889 ], [ 27.773438, 36.879621 ], [ 27.421875, 36.879621 ], [ 27.421875, 37.439974 ], [ 27.070312, 37.439974 ], [ 27.070312, 37.718590 ], [ 26.718750, 37.718590 ], [ 26.718750, 37.996163 ], [ 26.367188, 37.996163 ], [ 26.367188, 38.548165 ], [ 26.718750, 38.548165 ], [ 26.718750, 39.095963 ], [ 26.015625, 39.095963 ], [ 26.015625, 39.368279 ], [ 26.367188, 39.368279 ], [ 26.367188, 39.639538 ], [ 26.718750, 39.639538 ], [ 26.718750, 39.909736 ], [ 27.070312, 39.909736 ], [ 27.070312, 40.178873 ], [ 27.421875, 40.178873 ], [ 27.421875, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.713956 ], [ 29.179688, 40.713956 ], [ 29.179688, 41.244772 ], [ 29.882812, 41.244772 ], [ 29.882812, 40.979898 ], [ 31.640625, 40.979898 ], [ 31.640625, 41.244772 ], [ 31.992188, 41.244772 ], [ 31.992188, 41.508577 ], [ 32.343750, 41.508577 ], [ 32.343750, 41.771312 ], [ 33.046875, 41.771312 ], [ 33.046875, 42.032974 ], [ 35.156250, 42.032974 ] ] ], [ [ [ 28.125000, 42.032974 ], [ 28.125000, 41.244772 ], [ 28.828125, 41.244772 ], [ 28.828125, 40.979898 ], [ 27.773438, 40.979898 ], [ 27.773438, 40.713956 ], [ 27.070312, 40.713956 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.178873 ], [ 26.367188, 40.178873 ], [ 26.367188, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.713956 ], [ 26.367188, 40.713956 ], [ 26.367188, 41.244772 ], [ 26.718750, 41.244772 ], [ 26.718750, 41.508577 ], [ 26.015625, 41.508577 ], [ 26.015625, 41.771312 ], [ 26.718750, 41.771312 ], [ 26.718750, 42.032974 ], [ 28.125000, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.070312, 40.446947 ], [ 28.125000, 40.446947 ], [ 28.125000, 40.713956 ], [ 28.828125, 40.713956 ], [ 28.828125, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.508577 ], [ 32.343750, 41.508577 ], [ 32.343750, 41.771312 ], [ 33.046875, 41.771312 ], [ 33.046875, 42.032974 ], [ 34.453125, 42.032974 ], [ 34.453125, 42.293564 ], [ 35.156250, 42.293564 ], [ 35.156250, 42.032974 ], [ 35.859375, 42.032974 ], [ 35.859375, 41.771312 ], [ 36.562500, 41.771312 ], [ 36.562500, 41.508577 ], [ 36.914062, 41.508577 ], [ 36.914062, 41.244772 ], [ 37.617188, 41.244772 ], [ 37.617188, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.244772 ], [ 40.781250, 41.244772 ], [ 40.781250, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.771312 ], [ 42.539062, 41.771312 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 40.178873 ], [ 44.296875, 40.178873 ], [ 44.296875, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.639538 ], [ 43.945312, 39.639538 ], [ 43.945312, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.272689 ], [ 43.945312, 38.272689 ], [ 43.945312, 37.718590 ], [ 44.296875, 37.718590 ], [ 44.296875, 37.439974 ], [ 44.648438, 37.439974 ], [ 44.648438, 37.160317 ], [ 43.593750, 37.160317 ], [ 43.593750, 37.439974 ], [ 41.835938, 37.439974 ], [ 41.835938, 37.160317 ], [ 40.078125, 37.160317 ], [ 40.078125, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 37.160317 ], [ 37.617188, 37.160317 ], [ 37.617188, 36.879621 ], [ 36.562500, 36.879621 ], [ 36.562500, 36.315125 ], [ 36.210938, 36.315125 ], [ 36.210938, 36.031332 ], [ 35.507812, 36.031332 ], [ 35.507812, 36.597889 ], [ 34.804688, 36.597889 ], [ 34.804688, 36.879621 ], [ 34.453125, 36.879621 ], [ 34.453125, 36.597889 ], [ 34.101562, 36.597889 ], [ 34.101562, 36.315125 ], [ 31.992188, 36.315125 ], [ 31.992188, 36.597889 ], [ 31.640625, 36.597889 ], [ 31.640625, 36.879621 ], [ 30.585938, 36.879621 ], [ 30.585938, 36.597889 ], [ 30.234375, 36.597889 ], [ 30.234375, 36.315125 ], [ 29.179688, 36.315125 ], [ 29.179688, 36.597889 ], [ 28.476562, 36.597889 ], [ 28.476562, 36.879621 ], [ 27.070312, 36.879621 ], [ 27.070312, 37.439974 ], [ 26.718750, 37.439974 ], [ 26.718750, 37.718590 ], [ 26.367188, 37.718590 ], [ 26.367188, 37.996163 ], [ 26.015625, 37.996163 ], [ 26.015625, 38.272689 ], [ 26.367188, 38.272689 ], [ 26.367188, 38.822591 ], [ 26.718750, 38.822591 ], [ 26.718750, 39.095963 ], [ 26.367188, 39.095963 ], [ 26.367188, 39.368279 ], [ 26.015625, 39.368279 ], [ 26.015625, 39.639538 ], [ 26.367188, 39.639538 ], [ 26.367188, 39.909736 ], [ 26.718750, 39.909736 ], [ 26.718750, 40.178873 ], [ 27.070312, 40.178873 ], [ 27.070312, 40.446947 ] ] ], [ [ [ 27.070312, 40.446947 ], [ 26.367188, 40.446947 ], [ 26.367188, 40.178873 ], [ 26.015625, 40.178873 ], [ 26.015625, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 42.293564 ], [ 27.070312, 42.293564 ], [ 27.070312, 42.032974 ], [ 27.773438, 42.032974 ], [ 27.773438, 41.771312 ], [ 28.125000, 41.771312 ], [ 28.125000, 41.508577 ], [ 28.828125, 41.508577 ], [ 28.828125, 41.244772 ], [ 27.421875, 41.244772 ], [ 27.421875, 40.979898 ], [ 27.070312, 40.979898 ], [ 27.070312, 40.446947 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 34.597042 ], [ 36.562500, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.431441 ], [ 35.859375, 33.431441 ], [ 35.859375, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 33.431441 ], [ 35.507812, 33.431441 ], [ 35.507812, 34.307144 ], [ 35.859375, 34.307144 ], [ 35.859375, 34.597042 ], [ 36.562500, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.210938, 34.597042 ], [ 36.210938, 34.307144 ], [ 36.562500, 34.307144 ], [ 36.562500, 34.016242 ], [ 35.859375, 34.016242 ], [ 35.859375, 33.724340 ], [ 35.507812, 33.724340 ], [ 35.507812, 33.137551 ], [ 34.804688, 33.137551 ], [ 34.804688, 33.431441 ], [ 35.156250, 33.431441 ], [ 35.156250, 34.016242 ], [ 35.507812, 34.016242 ], [ 35.507812, 34.597042 ], [ 36.210938, 34.597042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.160317 ], [ 42.187500, 36.879621 ], [ 41.835938, 36.879621 ], [ 41.835938, 36.315125 ], [ 41.132812, 36.315125 ], [ 41.132812, 36.031332 ], [ 41.484375, 36.031332 ], [ 41.484375, 34.885931 ], [ 41.132812, 34.885931 ], [ 41.132812, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.431441 ], [ 38.671875, 33.431441 ], [ 38.671875, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 32.842674 ], [ 37.617188, 32.842674 ], [ 37.617188, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 32.249974 ], [ 36.562500, 32.249974 ], [ 36.562500, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.431441 ], [ 36.210938, 33.431441 ], [ 36.210938, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.597042 ], [ 35.859375, 34.597042 ], [ 35.859375, 35.460670 ], [ 36.210938, 35.460670 ], [ 36.210938, 35.746512 ], [ 36.562500, 35.746512 ], [ 36.562500, 36.597889 ], [ 37.968750, 36.597889 ], [ 37.968750, 36.879621 ], [ 38.320312, 36.879621 ], [ 38.320312, 36.597889 ], [ 40.078125, 36.597889 ], [ 40.078125, 36.879621 ], [ 40.781250, 36.879621 ], [ 40.781250, 37.160317 ], [ 42.187500, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.835938, 37.160317 ], [ 41.835938, 36.597889 ], [ 41.132812, 36.597889 ], [ 41.132812, 35.173808 ], [ 40.781250, 35.173808 ], [ 40.781250, 34.307144 ], [ 40.078125, 34.307144 ], [ 40.078125, 34.016242 ], [ 39.726562, 34.016242 ], [ 39.726562, 33.724340 ], [ 39.023438, 33.724340 ], [ 39.023438, 33.431441 ], [ 38.671875, 33.431441 ], [ 38.671875, 33.137551 ], [ 37.968750, 33.137551 ], [ 37.968750, 32.842674 ], [ 37.265625, 32.842674 ], [ 37.265625, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 32.842674 ], [ 35.507812, 32.842674 ], [ 35.507812, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.307144 ], [ 36.210938, 34.307144 ], [ 36.210938, 34.597042 ], [ 35.859375, 34.597042 ], [ 35.859375, 36.031332 ], [ 36.210938, 36.031332 ], [ 36.210938, 36.315125 ], [ 36.562500, 36.315125 ], [ 36.562500, 36.879621 ], [ 37.617188, 36.879621 ], [ 37.617188, 37.160317 ], [ 37.968750, 37.160317 ], [ 37.968750, 36.879621 ], [ 40.078125, 36.879621 ], [ 40.078125, 37.160317 ], [ 41.835938, 37.160317 ] ] ], [ [ [ 42.187500, 37.160317 ], [ 41.835938, 37.160317 ], [ 41.835938, 37.439974 ], [ 42.187500, 37.439974 ], [ 42.187500, 37.160317 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 37.439974 ], [ 43.242188, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.315125 ], [ 45.351562, 36.315125 ], [ 45.351562, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 34.307144 ], [ 45.351562, 34.307144 ], [ 45.351562, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 33.137551 ], [ 46.054688, 33.137551 ], [ 46.054688, 32.842674 ], [ 46.757812, 32.842674 ], [ 46.757812, 32.546813 ], [ 47.460938, 32.546813 ], [ 47.460938, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 31.052934 ], [ 48.164062, 31.052934 ], [ 48.164062, 30.145127 ], [ 48.515625, 30.145127 ], [ 48.515625, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.535230 ], [ 46.757812, 29.535230 ], [ 46.757812, 29.228890 ], [ 44.296875, 29.228890 ], [ 44.296875, 29.535230 ], [ 43.593750, 29.535230 ], [ 43.593750, 29.840644 ], [ 43.242188, 29.840644 ], [ 43.242188, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.448674 ], [ 42.187500, 30.448674 ], [ 42.187500, 30.751278 ], [ 41.835938, 30.751278 ], [ 41.835938, 31.052934 ], [ 41.484375, 31.052934 ], [ 41.484375, 31.353637 ], [ 40.781250, 31.353637 ], [ 40.781250, 31.653381 ], [ 40.429688, 31.653381 ], [ 40.429688, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.249974 ], [ 39.023438, 32.249974 ], [ 39.023438, 32.842674 ], [ 38.671875, 32.842674 ], [ 38.671875, 33.431441 ], [ 39.375000, 33.431441 ], [ 39.375000, 33.724340 ], [ 40.078125, 33.724340 ], [ 40.078125, 34.016242 ], [ 40.781250, 34.016242 ], [ 40.781250, 34.307144 ], [ 41.132812, 34.307144 ], [ 41.132812, 34.885931 ], [ 41.484375, 34.885931 ], [ 41.484375, 36.031332 ], [ 41.132812, 36.031332 ], [ 41.132812, 36.315125 ], [ 41.835938, 36.315125 ], [ 41.835938, 36.879621 ], [ 42.187500, 36.879621 ], [ 42.187500, 37.160317 ], [ 42.890625, 37.160317 ], [ 42.890625, 37.439974 ], [ 43.242188, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.593750, 37.439974 ], [ 43.593750, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.315125 ], [ 45.351562, 36.315125 ], [ 45.351562, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 34.885931 ], [ 45.351562, 34.885931 ], [ 45.351562, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 33.137551 ], [ 46.054688, 33.137551 ], [ 46.054688, 32.842674 ], [ 46.757812, 32.842674 ], [ 46.757812, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 32.249974 ], [ 47.460938, 32.249974 ], [ 47.460938, 31.952162 ], [ 47.812500, 31.952162 ], [ 47.812500, 31.353637 ], [ 47.460938, 31.353637 ], [ 47.460938, 31.052934 ], [ 47.812500, 31.052934 ], [ 47.812500, 30.448674 ], [ 48.164062, 30.448674 ], [ 48.164062, 30.145127 ], [ 47.109375, 30.145127 ], [ 47.109375, 29.840644 ], [ 46.757812, 29.840644 ], [ 46.757812, 29.228890 ], [ 44.296875, 29.228890 ], [ 44.296875, 29.535230 ], [ 43.945312, 29.535230 ], [ 43.945312, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 30.145127 ], [ 42.890625, 30.145127 ], [ 42.890625, 30.448674 ], [ 42.539062, 30.448674 ], [ 42.539062, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 31.353637 ], [ 41.132812, 31.353637 ], [ 41.132812, 31.653381 ], [ 40.429688, 31.653381 ], [ 40.429688, 31.952162 ], [ 39.375000, 31.952162 ], [ 39.375000, 32.249974 ], [ 39.023438, 32.249974 ], [ 39.023438, 32.842674 ], [ 38.671875, 32.842674 ], [ 38.671875, 33.431441 ], [ 39.023438, 33.431441 ], [ 39.023438, 33.724340 ], [ 39.726562, 33.724340 ], [ 39.726562, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 34.307144 ], [ 40.781250, 34.307144 ], [ 40.781250, 35.173808 ], [ 41.132812, 35.173808 ], [ 41.132812, 36.597889 ], [ 41.835938, 36.597889 ], [ 41.835938, 37.160317 ], [ 42.187500, 37.160317 ], [ 42.187500, 37.439974 ], [ 43.593750, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 34.804688, 31.653381 ], [ 34.804688, 31.353637 ], [ 35.507812, 31.353637 ], [ 35.507812, 30.448674 ], [ 35.156250, 30.448674 ], [ 35.156250, 29.840644 ], [ 34.453125, 29.840644 ], [ 34.453125, 30.751278 ], [ 34.101562, 30.751278 ], [ 34.101562, 31.353637 ], [ 34.453125, 31.353637 ], [ 34.453125, 31.653381 ], [ 34.804688, 31.653381 ] ] ], [ [ [ 35.859375, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.249974 ], [ 34.804688, 32.249974 ], [ 34.804688, 32.842674 ], [ 35.156250, 32.842674 ], [ 35.156250, 33.137551 ], [ 35.859375, 33.137551 ], [ 35.859375, 32.546813 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 33.137551 ], [ 35.507812, 32.546813 ], [ 35.156250, 32.546813 ], [ 35.156250, 32.249974 ], [ 34.804688, 32.249974 ], [ 34.804688, 31.952162 ], [ 35.156250, 31.952162 ], [ 35.156250, 31.653381 ], [ 34.804688, 31.653381 ], [ 34.804688, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 30.448674 ], [ 34.804688, 30.448674 ], [ 34.804688, 29.840644 ], [ 34.453125, 29.840644 ], [ 34.453125, 30.751278 ], [ 34.101562, 30.751278 ], [ 34.101562, 31.353637 ], [ 34.453125, 31.353637 ], [ 34.453125, 32.546813 ], [ 34.804688, 32.546813 ], [ 34.804688, 33.137551 ], [ 35.507812, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.249974 ], [ 35.507812, 31.353637 ], [ 34.804688, 31.353637 ], [ 34.804688, 32.249974 ], [ 35.507812, 32.249974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 31.653381 ], [ 35.156250, 31.353637 ], [ 34.804688, 31.353637 ], [ 34.804688, 31.653381 ], [ 35.156250, 31.653381 ] ] ], [ [ [ 35.507812, 31.653381 ], [ 35.156250, 31.653381 ], [ 35.156250, 31.952162 ], [ 34.804688, 31.952162 ], [ 34.804688, 32.249974 ], [ 35.156250, 32.249974 ], [ 35.156250, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 31.653381 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.842674 ], [ 39.023438, 32.842674 ], [ 39.023438, 31.952162 ], [ 38.320312, 31.952162 ], [ 38.320312, 31.653381 ], [ 36.914062, 31.653381 ], [ 36.914062, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.617188, 31.052934 ], [ 37.617188, 29.840644 ], [ 36.914062, 29.840644 ], [ 36.914062, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 29.228890 ], [ 34.804688, 29.228890 ], [ 34.804688, 29.840644 ], [ 35.156250, 29.840644 ], [ 35.156250, 30.448674 ], [ 35.507812, 30.448674 ], [ 35.507812, 32.546813 ], [ 36.562500, 32.546813 ], [ 36.562500, 32.249974 ], [ 37.265625, 32.249974 ], [ 37.265625, 32.546813 ], [ 37.617188, 32.546813 ], [ 37.617188, 32.842674 ], [ 38.320312, 32.842674 ], [ 38.320312, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.137551 ], [ 38.671875, 32.842674 ], [ 39.023438, 32.842674 ], [ 39.023438, 32.249974 ], [ 38.320312, 32.249974 ], [ 38.320312, 31.952162 ], [ 37.617188, 31.952162 ], [ 37.617188, 31.653381 ], [ 36.914062, 31.653381 ], [ 36.914062, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.617188, 31.052934 ], [ 37.617188, 30.751278 ], [ 37.968750, 30.751278 ], [ 37.968750, 30.448674 ], [ 37.617188, 30.448674 ], [ 37.617188, 30.145127 ], [ 36.562500, 30.145127 ], [ 36.562500, 29.840644 ], [ 36.210938, 29.840644 ], [ 36.210938, 29.228890 ], [ 35.156250, 29.228890 ], [ 35.156250, 29.535230 ], [ 34.804688, 29.535230 ], [ 34.804688, 30.448674 ], [ 35.156250, 30.448674 ], [ 35.156250, 31.653381 ], [ 35.507812, 31.653381 ], [ 35.507812, 32.842674 ], [ 35.859375, 32.842674 ], [ 35.859375, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 32.842674 ], [ 37.968750, 32.842674 ], [ 37.968750, 33.137551 ], [ 38.671875, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.914062, 21.943046 ], [ 36.914062, 21.289374 ], [ 37.265625, 21.289374 ], [ 37.265625, 20.961440 ], [ 36.914062, 20.961440 ], [ 36.914062, 20.303418 ], [ 37.265625, 20.303418 ], [ 37.265625, 18.979026 ], [ 37.617188, 18.979026 ], [ 37.617188, 18.312811 ], [ 37.968750, 18.312811 ], [ 37.968750, 17.978733 ], [ 38.320312, 17.978733 ], [ 38.320312, 17.644022 ], [ 37.968750, 17.644022 ], [ 37.968750, 17.308688 ], [ 37.265625, 17.308688 ], [ 37.265625, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 15.284185 ], [ 36.210938, 15.284185 ], [ 36.210938, 14.604847 ], [ 36.562500, 14.604847 ], [ 36.562500, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 12.897489 ], [ 35.859375, 12.897489 ], [ 35.859375, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.523088 ], [ 34.804688, 11.523088 ], [ 34.804688, 10.487812 ], [ 34.101562, 10.487812 ], [ 34.101562, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 11.523088 ], [ 32.343750, 11.523088 ], [ 32.343750, 10.833306 ], [ 31.992188, 10.833306 ], [ 31.992188, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 9.795678 ], [ 30.234375, 9.795678 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.449062 ], [ 26.367188, 9.449062 ], [ 26.367188, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.102097 ], [ 24.609375, 9.102097 ], [ 24.609375, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 10.141932 ], [ 23.203125, 10.141932 ], [ 23.203125, 10.487812 ], [ 22.851562, 10.487812 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.211180 ], [ 22.148438, 12.211180 ], [ 22.148438, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.562500, 22.268764 ], [ 36.562500, 21.616579 ], [ 36.914062, 21.616579 ], [ 36.914062, 19.311143 ], [ 37.265625, 19.311143 ], [ 37.265625, 18.646245 ], [ 37.617188, 18.646245 ], [ 37.617188, 18.312811 ], [ 38.320312, 18.312811 ], [ 38.320312, 17.978733 ], [ 37.968750, 17.978733 ], [ 37.968750, 17.644022 ], [ 37.617188, 17.644022 ], [ 37.617188, 17.308688 ], [ 36.914062, 17.308688 ], [ 36.914062, 16.972741 ], [ 36.562500, 16.972741 ], [ 36.562500, 15.623037 ], [ 36.210938, 15.623037 ], [ 36.210938, 13.239945 ], [ 35.859375, 13.239945 ], [ 35.859375, 12.554564 ], [ 35.507812, 12.554564 ], [ 35.507812, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.867351 ], [ 34.804688, 11.867351 ], [ 34.804688, 11.178402 ], [ 34.453125, 11.178402 ], [ 34.453125, 10.833306 ], [ 34.101562, 10.833306 ], [ 34.101562, 10.141932 ], [ 33.398438, 10.141932 ], [ 33.398438, 10.487812 ], [ 33.046875, 10.487812 ], [ 33.046875, 12.211180 ], [ 31.992188, 12.211180 ], [ 31.992188, 11.523088 ], [ 32.343750, 11.523088 ], [ 32.343750, 10.833306 ], [ 31.640625, 10.833306 ], [ 31.640625, 10.487812 ], [ 31.289062, 10.487812 ], [ 31.289062, 9.795678 ], [ 30.234375, 9.795678 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.795678 ], [ 28.828125, 9.795678 ], [ 28.828125, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.795678 ], [ 25.664062, 9.795678 ], [ 25.664062, 10.487812 ], [ 24.960938, 10.487812 ], [ 24.960938, 10.141932 ], [ 24.609375, 10.141932 ], [ 24.609375, 9.449062 ], [ 24.257812, 9.449062 ], [ 24.257812, 8.754795 ], [ 23.203125, 8.754795 ], [ 23.203125, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.203125, 10.141932 ], [ 23.203125, 10.487812 ], [ 22.851562, 10.487812 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.554564 ], [ 22.148438, 12.554564 ], [ 22.148438, 12.897489 ], [ 21.796875, 12.897489 ], [ 21.796875, 13.239945 ], [ 22.148438, 13.239945 ], [ 22.148438, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.264383 ], [ 22.148438, 14.264383 ], [ 22.148438, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.623037 ], [ 23.554688, 15.623037 ], [ 23.554688, 20.303418 ], [ 24.960938, 20.303418 ], [ 24.960938, 22.268764 ], [ 36.562500, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.487812 ], [ 33.750000, 10.487812 ], [ 33.750000, 9.449062 ], [ 34.101562, 9.449062 ], [ 34.101562, 8.407168 ], [ 33.398438, 8.407168 ], [ 33.398438, 8.059230 ], [ 33.046875, 8.059230 ], [ 33.046875, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.362467 ], [ 34.101562, 7.362467 ], [ 34.101562, 6.664608 ], [ 34.804688, 6.664608 ], [ 34.804688, 5.965754 ], [ 35.156250, 5.965754 ], [ 35.156250, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.565474 ], [ 34.101562, 4.565474 ], [ 34.101562, 3.864255 ], [ 32.695312, 3.864255 ], [ 32.695312, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.864255 ], [ 29.882812, 3.864255 ], [ 29.882812, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.565474 ], [ 27.773438, 4.565474 ], [ 27.773438, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 5.266008 ], [ 27.070312, 5.266008 ], [ 27.070312, 5.615986 ], [ 26.367188, 5.615986 ], [ 26.367188, 6.664608 ], [ 25.664062, 6.664608 ], [ 25.664062, 7.013668 ], [ 24.960938, 7.013668 ], [ 24.960938, 7.710992 ], [ 24.609375, 7.710992 ], [ 24.609375, 8.059230 ], [ 24.257812, 8.059230 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.102097 ], [ 24.960938, 9.102097 ], [ 24.960938, 10.141932 ], [ 26.015625, 10.141932 ], [ 26.015625, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.449062 ], [ 29.531250, 9.449062 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.795678 ], [ 31.640625, 9.795678 ], [ 31.640625, 10.141932 ], [ 31.992188, 10.141932 ], [ 31.992188, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.523088 ], [ 31.992188, 11.523088 ], [ 31.992188, 11.867351 ], [ 32.695312, 11.867351 ], [ 32.695312, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.487812 ], [ 33.398438, 10.487812 ], [ 33.398438, 10.141932 ], [ 33.750000, 10.141932 ], [ 33.750000, 8.407168 ], [ 33.046875, 8.407168 ], [ 33.046875, 8.059230 ], [ 32.695312, 8.059230 ], [ 32.695312, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.362467 ], [ 33.750000, 7.362467 ], [ 33.750000, 7.013668 ], [ 34.101562, 7.013668 ], [ 34.101562, 6.664608 ], [ 34.453125, 6.664608 ], [ 34.453125, 6.315299 ], [ 34.804688, 6.315299 ], [ 34.804688, 5.615986 ], [ 35.156250, 5.615986 ], [ 35.156250, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.565474 ], [ 33.750000, 4.565474 ], [ 33.750000, 4.214943 ], [ 33.398438, 4.214943 ], [ 33.398438, 3.864255 ], [ 30.937500, 3.864255 ], [ 30.937500, 3.513421 ], [ 30.234375, 3.513421 ], [ 30.234375, 3.864255 ], [ 29.882812, 3.864255 ], [ 29.882812, 4.565474 ], [ 27.421875, 4.565474 ], [ 27.421875, 4.915833 ], [ 27.070312, 4.915833 ], [ 27.070312, 5.615986 ], [ 26.367188, 5.615986 ], [ 26.367188, 6.315299 ], [ 26.015625, 6.315299 ], [ 26.015625, 6.664608 ], [ 25.664062, 6.664608 ], [ 25.664062, 7.013668 ], [ 25.312500, 7.013668 ], [ 25.312500, 7.362467 ], [ 24.960938, 7.362467 ], [ 24.960938, 8.059230 ], [ 24.257812, 8.059230 ], [ 24.257812, 8.407168 ], [ 23.554688, 8.407168 ], [ 23.554688, 8.754795 ], [ 24.257812, 8.754795 ], [ 24.257812, 9.449062 ], [ 24.609375, 9.449062 ], [ 24.609375, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 9.795678 ], [ 27.773438, 9.795678 ], [ 27.773438, 9.449062 ], [ 28.828125, 9.449062 ], [ 28.828125, 9.795678 ], [ 29.531250, 9.795678 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.795678 ], [ 31.289062, 9.795678 ], [ 31.289062, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.523088 ], [ 31.992188, 11.523088 ], [ 31.992188, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 3.864255 ], [ 34.453125, 2.811371 ], [ 34.804688, 2.811371 ], [ 34.804688, 2.108899 ], [ 35.156250, 2.108899 ], [ 35.156250, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.000000 ], [ 33.750000, 0.000000 ], [ 33.750000, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.703107 ], [ 29.882812, -0.703107 ], [ 29.882812, 0.703107 ], [ 30.234375, 0.703107 ], [ 30.234375, 1.406109 ], [ 30.585938, 1.406109 ], [ 30.585938, 1.757537 ], [ 31.289062, 1.757537 ], [ 31.289062, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 3.513421 ], [ 32.695312, 3.513421 ], [ 32.695312, 3.864255 ], [ 34.453125, 3.864255 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 4.214943 ], [ 34.101562, 3.864255 ], [ 34.453125, 3.864255 ], [ 34.453125, 2.460181 ], [ 34.804688, 2.460181 ], [ 34.804688, 1.757537 ], [ 34.453125, 1.757537 ], [ 34.453125, 1.054628 ], [ 34.101562, 1.054628 ], [ 34.101562, 0.351560 ], [ 33.750000, 0.351560 ], [ 33.750000, -0.703107 ], [ 30.585938, -0.703107 ], [ 30.585938, -1.054628 ], [ 30.234375, -1.054628 ], [ 30.234375, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, 1.054628 ], [ 29.882812, 1.054628 ], [ 29.882812, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 2.460181 ], [ 30.585938, 2.460181 ], [ 30.585938, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.864255 ], [ 33.398438, 3.864255 ], [ 33.398438, 4.214943 ], [ 34.101562, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 17.644022 ], [ 38.671875, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ], [ 39.375000, 16.299051 ], [ 39.375000, 15.623037 ], [ 39.726562, 15.623037 ], [ 39.726562, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.923404 ], [ 41.835938, 13.923404 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 12.897489 ], [ 42.539062, 12.897489 ], [ 42.539062, 12.554564 ], [ 41.835938, 12.554564 ], [ 41.835938, 13.239945 ], [ 41.484375, 13.239945 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.781250, 13.923404 ], [ 40.781250, 14.264383 ], [ 40.078125, 14.264383 ], [ 40.078125, 14.604847 ], [ 37.617188, 14.604847 ], [ 37.617188, 14.264383 ], [ 36.562500, 14.264383 ], [ 36.562500, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.284185 ], [ 36.562500, 15.284185 ], [ 36.562500, 15.961329 ], [ 36.914062, 15.961329 ], [ 36.914062, 16.972741 ], [ 37.265625, 16.972741 ], [ 37.265625, 17.308688 ], [ 37.968750, 17.308688 ], [ 37.968750, 17.644022 ], [ 38.671875, 17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.781250, 13.923404 ], [ 40.781250, 14.264383 ], [ 40.078125, 14.264383 ], [ 40.078125, 14.604847 ], [ 37.968750, 14.604847 ], [ 37.968750, 14.944785 ], [ 37.617188, 14.944785 ], [ 37.617188, 14.604847 ], [ 37.265625, 14.604847 ], [ 37.265625, 14.264383 ], [ 36.562500, 14.264383 ], [ 36.562500, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.623037 ], [ 36.562500, 15.623037 ], [ 36.562500, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 17.308688 ], [ 37.617188, 17.308688 ], [ 37.617188, 17.644022 ], [ 37.968750, 17.644022 ], [ 37.968750, 17.978733 ], [ 38.320312, 17.978733 ], [ 38.320312, 17.644022 ], [ 38.671875, 17.644022 ], [ 38.671875, 16.299051 ], [ 39.023438, 16.299051 ], [ 39.023438, 15.623037 ], [ 39.726562, 15.623037 ], [ 39.726562, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 14.944785 ], [ 40.781250, 14.944785 ], [ 40.781250, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.581921 ] ] ], [ [ [ 41.484375, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 13.239945 ], [ 42.539062, 13.239945 ], [ 42.539062, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 12.554564 ], [ 41.835938, 12.554564 ], [ 41.835938, 13.239945 ], [ 41.484375, 13.239945 ], [ 41.484375, 13.581921 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.523088 ], [ 43.242188, 11.523088 ], [ 43.242188, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 10.833306 ], [ 42.539062, 10.833306 ], [ 42.539062, 11.178402 ], [ 41.835938, 11.178402 ], [ 41.835938, 12.211180 ], [ 42.187500, 12.211180 ], [ 42.187500, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ], [ 42.539062, 11.867351 ], [ 42.539062, 11.523088 ], [ 42.890625, 11.523088 ], [ 42.890625, 11.178402 ], [ 41.484375, 11.178402 ], [ 41.484375, 11.867351 ], [ 41.835938, 11.867351 ], [ 41.835938, 12.211180 ], [ 42.187500, 12.211180 ], [ 42.187500, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ], [ 36.914062, 4.565474 ], [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.513421 ], [ 39.726562, 3.513421 ], [ 39.726562, 3.864255 ], [ 40.429688, 3.864255 ], [ 40.429688, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 34.804688, -1.757537 ], [ 34.804688, -1.406109 ], [ 34.101562, -1.406109 ], [ 34.101562, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.000000 ], [ 34.101562, 0.000000 ], [ 34.101562, 0.351560 ], [ 34.453125, 0.351560 ], [ 34.453125, 0.703107 ], [ 34.804688, 0.703107 ], [ 34.804688, 1.406109 ], [ 35.156250, 1.406109 ], [ 35.156250, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.811371 ], [ 34.453125, 2.811371 ], [ 34.453125, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.266008 ], [ 35.859375, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 5.615986 ], [ 35.507812, 4.565474 ], [ 36.562500, 4.565474 ], [ 36.562500, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 3.864255 ], [ 38.671875, 3.864255 ], [ 38.671875, 3.513421 ], [ 39.726562, 3.513421 ], [ 39.726562, 3.864255 ], [ 40.078125, 3.864255 ], [ 40.078125, 4.214943 ], [ 41.835938, 4.214943 ], [ 41.835938, 3.864255 ], [ 41.484375, 3.864255 ], [ 41.484375, 3.513421 ], [ 41.132812, 3.513421 ], [ 41.132812, 2.811371 ], [ 40.781250, 2.811371 ], [ 40.781250, -1.054628 ], [ 41.132812, -1.054628 ], [ 41.132812, -1.406109 ], [ 41.484375, -1.406109 ], [ 41.484375, -1.757537 ], [ 34.453125, -1.757537 ], [ 34.453125, -1.406109 ], [ 33.750000, -1.406109 ], [ 33.750000, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 2.460181 ], [ 34.453125, 2.460181 ], [ 34.453125, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.615986 ], [ 35.507812, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 14.604847 ], [ 40.078125, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.833306 ], [ 42.890625, 10.833306 ], [ 42.890625, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 10.141932 ], [ 42.890625, 10.141932 ], [ 42.890625, 9.795678 ], [ 43.242188, 9.795678 ], [ 43.242188, 9.102097 ], [ 43.945312, 9.102097 ], [ 43.945312, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.407168 ], [ 46.406250, 8.407168 ], [ 46.406250, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.565474 ], [ 43.242188, 4.565474 ], [ 43.242188, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 3.864255 ], [ 40.781250, 3.864255 ], [ 40.781250, 4.214943 ], [ 40.429688, 4.214943 ], [ 40.429688, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.513421 ], [ 37.617188, 3.513421 ], [ 37.617188, 3.864255 ], [ 37.265625, 3.864255 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.965754 ], [ 34.804688, 5.965754 ], [ 34.804688, 6.664608 ], [ 34.101562, 6.664608 ], [ 34.101562, 7.362467 ], [ 33.398438, 7.362467 ], [ 33.398438, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.059230 ], [ 33.398438, 8.059230 ], [ 33.398438, 8.407168 ], [ 34.101562, 8.407168 ], [ 34.101562, 10.487812 ], [ 34.804688, 10.487812 ], [ 34.804688, 11.523088 ], [ 35.156250, 11.523088 ], [ 35.156250, 12.211180 ], [ 35.859375, 12.211180 ], [ 35.859375, 12.897489 ], [ 36.210938, 12.897489 ], [ 36.210938, 13.923404 ], [ 36.562500, 13.923404 ], [ 36.562500, 14.264383 ], [ 37.617188, 14.264383 ], [ 37.617188, 14.604847 ], [ 40.078125, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 14.944785 ], [ 37.968750, 14.604847 ], [ 40.078125, 14.604847 ], [ 40.078125, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.867351 ], [ 41.484375, 11.867351 ], [ 41.484375, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 10.487812 ], [ 42.890625, 10.487812 ], [ 42.890625, 9.795678 ], [ 43.242188, 9.795678 ], [ 43.242188, 9.449062 ], [ 43.945312, 9.449062 ], [ 43.945312, 9.102097 ], [ 44.648438, 9.102097 ], [ 44.648438, 8.754795 ], [ 45.351562, 8.754795 ], [ 45.351562, 8.407168 ], [ 46.054688, 8.407168 ], [ 46.054688, 8.059230 ], [ 47.460938, 8.059230 ], [ 47.460938, 7.710992 ], [ 47.109375, 7.710992 ], [ 47.109375, 7.362467 ], [ 46.757812, 7.362467 ], [ 46.757812, 7.013668 ], [ 46.406250, 7.013668 ], [ 46.406250, 6.664608 ], [ 46.054688, 6.664608 ], [ 46.054688, 6.315299 ], [ 45.703125, 6.315299 ], [ 45.703125, 5.965754 ], [ 45.351562, 5.965754 ], [ 45.351562, 5.615986 ], [ 45.000000, 5.615986 ], [ 45.000000, 5.266008 ], [ 43.593750, 5.266008 ], [ 43.593750, 4.915833 ], [ 42.890625, 4.915833 ], [ 42.890625, 4.565474 ], [ 41.835938, 4.565474 ], [ 41.835938, 4.214943 ], [ 40.078125, 4.214943 ], [ 40.078125, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.513421 ], [ 38.671875, 3.513421 ], [ 38.671875, 3.864255 ], [ 37.265625, 3.864255 ], [ 37.265625, 4.214943 ], [ 36.562500, 4.214943 ], [ 36.562500, 4.565474 ], [ 35.507812, 4.565474 ], [ 35.507812, 5.615986 ], [ 34.804688, 5.615986 ], [ 34.804688, 6.315299 ], [ 34.453125, 6.315299 ], [ 34.453125, 6.664608 ], [ 34.101562, 6.664608 ], [ 34.101562, 7.013668 ], [ 33.750000, 7.013668 ], [ 33.750000, 7.362467 ], [ 33.398438, 7.362467 ], [ 33.398438, 7.710992 ], [ 32.695312, 7.710992 ], [ 32.695312, 8.059230 ], [ 33.046875, 8.059230 ], [ 33.046875, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 10.141932 ], [ 34.101562, 10.141932 ], [ 34.101562, 10.833306 ], [ 34.453125, 10.833306 ], [ 34.453125, 11.178402 ], [ 34.804688, 11.178402 ], [ 34.804688, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 12.211180 ], [ 35.507812, 12.211180 ], [ 35.507812, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 13.239945 ], [ 36.210938, 13.239945 ], [ 36.210938, 14.604847 ], [ 36.562500, 14.604847 ], [ 36.562500, 14.264383 ], [ 37.265625, 14.264383 ], [ 37.265625, 14.604847 ], [ 37.617188, 14.604847 ], [ 37.617188, 14.944785 ], [ 37.968750, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 55.379110 ], [ 69.609375, 55.178868 ], [ 71.015625, 55.178868 ], [ 71.015625, 54.162434 ], [ 71.718750, 54.162434 ], [ 71.718750, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 53.956086 ], [ 73.476562, 53.956086 ], [ 73.476562, 53.540307 ], [ 74.882812, 53.540307 ], [ 74.882812, 53.748711 ], [ 75.585938, 53.748711 ], [ 75.585938, 53.956086 ], [ 75.937500, 53.956086 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.804688, 51.399206 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 50.958427 ], [ 81.562500, 50.958427 ], [ 81.562500, 50.736455 ], [ 82.617188, 50.736455 ], [ 82.617188, 50.958427 ], [ 84.023438, 50.958427 ], [ 84.023438, 50.513427 ], [ 84.375000, 50.513427 ], [ 84.375000, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.610710 ], [ 86.484375, 49.610710 ], [ 86.484375, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 48.922499 ], [ 86.835938, 48.922499 ], [ 86.835938, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 47.040182 ], [ 84.023438, 47.040182 ], [ 84.023438, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 46.800059 ], [ 82.968750, 46.800059 ], [ 82.968750, 45.828799 ], [ 82.617188, 45.828799 ], [ 82.617188, 45.336702 ], [ 81.562500, 45.336702 ], [ 81.562500, 45.089036 ], [ 80.507812, 45.089036 ], [ 80.507812, 44.840291 ], [ 79.804688, 44.840291 ], [ 79.804688, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 43.834527 ], [ 80.507812, 43.834527 ], [ 80.507812, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 42.811522 ], [ 80.156250, 42.811522 ], [ 80.156250, 42.293564 ], [ 79.804688, 42.293564 ], [ 79.804688, 42.553080 ], [ 79.101562, 42.553080 ], [ 79.101562, 42.811522 ], [ 78.046875, 42.811522 ], [ 78.046875, 43.068888 ], [ 75.937500, 43.068888 ], [ 75.937500, 42.811522 ], [ 74.882812, 42.811522 ], [ 74.882812, 43.068888 ], [ 73.476562, 43.068888 ], [ 73.476562, 42.553080 ], [ 72.421875, 42.553080 ], [ 72.421875, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.771312 ], [ 69.609375, 41.771312 ], [ 69.609375, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 68.554688, 40.979898 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.979898 ], [ 67.851562, 40.979898 ], [ 67.851562, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.508577 ], [ 66.445312, 41.508577 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.325178 ], [ 65.390625, 43.325178 ], [ 65.390625, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.834527 ], [ 64.335938, 43.834527 ], [ 64.335938, 43.580391 ], [ 61.523438, 43.580391 ], [ 61.523438, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.820312, 44.339565 ], [ 60.820312, 44.590467 ], [ 60.117188, 44.590467 ], [ 60.117188, 44.840291 ], [ 59.765625, 44.840291 ], [ 59.765625, 45.089036 ], [ 59.062500, 45.089036 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.583290 ], [ 58.007812, 45.583290 ], [ 58.007812, 45.336702 ], [ 56.601562, 45.336702 ], [ 56.601562, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.771312 ], [ 54.843750, 41.771312 ], [ 54.843750, 42.032974 ], [ 54.140625, 42.032974 ], [ 54.140625, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.032974 ], [ 53.085938, 42.032974 ], [ 53.085938, 41.771312 ], [ 52.382812, 41.771312 ], [ 52.382812, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.382812, 42.553080 ], [ 52.382812, 42.811522 ], [ 51.679688, 42.811522 ], [ 51.679688, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.580391 ], [ 50.976562, 43.580391 ], [ 50.976562, 44.087585 ], [ 50.273438, 44.087585 ], [ 50.273438, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.336702 ], [ 53.085938, 45.336702 ], [ 53.085938, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.558860 ], [ 49.921875, 46.558860 ], [ 49.921875, 46.316584 ], [ 48.515625, 46.316584 ], [ 48.515625, 46.800059 ], [ 48.867188, 46.800059 ], [ 48.867188, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.458352 ], [ 46.757812, 48.458352 ], [ 46.757812, 48.922499 ], [ 47.109375, 48.922499 ], [ 47.109375, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.064192 ], [ 48.867188, 50.064192 ], [ 48.867188, 50.513427 ], [ 49.218750, 50.513427 ], [ 49.218750, 50.736455 ], [ 49.570312, 50.736455 ], [ 49.570312, 50.958427 ], [ 49.921875, 50.958427 ], [ 49.921875, 51.179343 ], [ 50.273438, 51.179343 ], [ 50.273438, 51.399206 ], [ 50.625000, 51.399206 ], [ 50.625000, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.513427 ], [ 56.250000, 50.513427 ], [ 56.250000, 50.736455 ], [ 56.953125, 50.736455 ], [ 56.953125, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 61.171875, 50.736455 ], [ 61.171875, 50.958427 ], [ 61.523438, 50.958427 ], [ 61.523438, 51.179343 ], [ 61.171875, 51.179343 ], [ 61.171875, 51.399206 ], [ 60.820312, 51.399206 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.835778 ], [ 60.117188, 51.835778 ], [ 60.117188, 52.052490 ], [ 60.468750, 52.052490 ], [ 60.468750, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.696361 ], [ 61.523438, 52.696361 ], [ 61.523438, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.820312, 53.540307 ], [ 60.820312, 53.748711 ], [ 61.523438, 53.748711 ], [ 61.523438, 53.956086 ], [ 62.578125, 53.956086 ], [ 62.578125, 54.162434 ], [ 64.335938, 54.162434 ], [ 64.335938, 54.367759 ], [ 65.742188, 54.367759 ], [ 65.742188, 54.572062 ], [ 66.445312, 54.572062 ], [ 66.445312, 54.775346 ], [ 67.851562, 54.775346 ], [ 67.851562, 54.977614 ], [ 68.554688, 54.977614 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.379110 ], [ 69.609375, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.257812, 55.578345 ], [ 69.257812, 55.379110 ], [ 69.960938, 55.379110 ], [ 69.960938, 55.178868 ], [ 70.664062, 55.178868 ], [ 70.664062, 54.572062 ], [ 71.015625, 54.572062 ], [ 71.015625, 54.162434 ], [ 71.367188, 54.162434 ], [ 71.367188, 54.367759 ], [ 72.773438, 54.367759 ], [ 72.773438, 54.162434 ], [ 73.476562, 54.162434 ], [ 73.476562, 53.748711 ], [ 73.125000, 53.748711 ], [ 73.125000, 53.540307 ], [ 73.828125, 53.540307 ], [ 73.828125, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.956086 ], [ 75.234375, 53.956086 ], [ 75.234375, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.540307 ], [ 77.695312, 53.540307 ], [ 77.695312, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 52.908902 ], [ 78.398438, 52.908902 ], [ 78.398438, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.179343 ], [ 79.804688, 51.179343 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 81.210938, 51.179343 ], [ 81.210938, 50.958427 ], [ 82.968750, 50.958427 ], [ 82.968750, 51.179343 ], [ 83.320312, 51.179343 ], [ 83.320312, 50.958427 ], [ 83.671875, 50.958427 ], [ 83.671875, 50.736455 ], [ 84.023438, 50.736455 ], [ 84.023438, 50.513427 ], [ 84.375000, 50.513427 ], [ 84.375000, 50.289339 ], [ 85.078125, 50.289339 ], [ 85.078125, 50.064192 ], [ 85.429688, 50.064192 ], [ 85.429688, 49.837982 ], [ 86.484375, 49.837982 ], [ 86.484375, 49.610710 ], [ 86.835938, 49.610710 ], [ 86.835938, 49.382373 ], [ 87.187500, 49.382373 ], [ 87.187500, 49.152970 ], [ 86.835938, 49.152970 ], [ 86.835938, 48.690960 ], [ 86.132812, 48.690960 ], [ 86.132812, 48.458352 ], [ 85.429688, 48.458352 ], [ 85.429688, 47.279229 ], [ 85.078125, 47.279229 ], [ 85.078125, 47.040182 ], [ 84.375000, 47.040182 ], [ 84.375000, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 47.517201 ], [ 82.968750, 47.517201 ], [ 82.968750, 47.040182 ], [ 82.617188, 47.040182 ], [ 82.617188, 46.073231 ], [ 82.265625, 46.073231 ], [ 82.265625, 45.336702 ], [ 81.210938, 45.336702 ], [ 81.210938, 45.089036 ], [ 79.804688, 45.089036 ], [ 79.804688, 44.590467 ], [ 80.156250, 44.590467 ], [ 80.156250, 44.087585 ], [ 80.507812, 44.087585 ], [ 80.507812, 43.580391 ], [ 80.859375, 43.580391 ], [ 80.859375, 43.068888 ], [ 80.156250, 43.068888 ], [ 80.156250, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 43.068888 ], [ 74.531250, 43.068888 ], [ 74.531250, 43.325178 ], [ 73.476562, 43.325178 ], [ 73.476562, 42.553080 ], [ 72.773438, 42.553080 ], [ 72.773438, 42.811522 ], [ 72.070312, 42.811522 ], [ 72.070312, 43.068888 ], [ 71.718750, 43.068888 ], [ 71.718750, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.553080 ], [ 70.664062, 42.553080 ], [ 70.664062, 42.293564 ], [ 70.312500, 42.293564 ], [ 70.312500, 42.032974 ], [ 69.960938, 42.032974 ], [ 69.960938, 41.771312 ], [ 69.257812, 41.771312 ], [ 69.257812, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 40.979898 ], [ 68.554688, 40.979898 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.979898 ], [ 67.851562, 40.979898 ], [ 67.851562, 41.244772 ], [ 66.445312, 41.244772 ], [ 66.445312, 42.032974 ], [ 65.742188, 42.032974 ], [ 65.742188, 42.553080 ], [ 66.093750, 42.553080 ], [ 66.093750, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.325178 ], [ 65.039062, 43.325178 ], [ 65.039062, 43.580391 ], [ 64.687500, 43.580391 ], [ 64.687500, 43.834527 ], [ 62.578125, 43.834527 ], [ 62.578125, 43.580391 ], [ 61.523438, 43.580391 ], [ 61.523438, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.820312, 44.339565 ], [ 60.820312, 44.590467 ], [ 60.117188, 44.590467 ], [ 60.117188, 44.840291 ], [ 59.765625, 44.840291 ], [ 59.765625, 45.089036 ], [ 59.062500, 45.089036 ], [ 59.062500, 45.336702 ], [ 58.359375, 45.336702 ], [ 58.359375, 45.828799 ], [ 58.007812, 45.828799 ], [ 58.007812, 45.583290 ], [ 57.304688, 45.583290 ], [ 57.304688, 45.336702 ], [ 56.601562, 45.336702 ], [ 56.601562, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.508577 ], [ 54.843750, 41.508577 ], [ 54.843750, 42.032974 ], [ 54.492188, 42.032974 ], [ 54.492188, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.553080 ], [ 53.437500, 42.553080 ], [ 53.437500, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.032974 ], [ 52.382812, 42.032974 ], [ 52.382812, 42.811522 ], [ 52.031250, 42.811522 ], [ 52.031250, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.325178 ], [ 50.976562, 43.325178 ], [ 50.976562, 43.834527 ], [ 50.625000, 43.834527 ], [ 50.625000, 44.087585 ], [ 50.273438, 44.087585 ], [ 50.273438, 44.590467 ], [ 50.976562, 44.590467 ], [ 50.976562, 45.336702 ], [ 51.679688, 45.336702 ], [ 51.679688, 45.583290 ], [ 52.031250, 45.583290 ], [ 52.031250, 45.336702 ], [ 52.734375, 45.336702 ], [ 52.734375, 45.828799 ], [ 53.085938, 45.828799 ], [ 53.085938, 46.558860 ], [ 52.734375, 46.558860 ], [ 52.734375, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 47.279229 ], [ 50.976562, 47.279229 ], [ 50.976562, 47.040182 ], [ 50.273438, 47.040182 ], [ 50.273438, 46.800059 ], [ 49.570312, 46.800059 ], [ 49.570312, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 47.279229 ], [ 48.164062, 47.279229 ], [ 48.164062, 47.517201 ], [ 47.812500, 47.517201 ], [ 47.812500, 47.754098 ], [ 46.757812, 47.754098 ], [ 46.757812, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.690960 ], [ 46.757812, 48.690960 ], [ 46.757812, 49.152970 ], [ 46.406250, 49.152970 ], [ 46.406250, 49.382373 ], [ 46.757812, 49.382373 ], [ 46.757812, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 50.289339 ], [ 48.164062, 50.289339 ], [ 48.164062, 50.064192 ], [ 48.515625, 50.064192 ], [ 48.515625, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.958427 ], [ 49.218750, 50.958427 ], [ 49.218750, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.835778 ], [ 52.382812, 51.835778 ], [ 52.382812, 51.618017 ], [ 53.085938, 51.618017 ], [ 53.085938, 51.399206 ], [ 53.789062, 51.399206 ], [ 53.789062, 51.179343 ], [ 54.492188, 51.179343 ], [ 54.492188, 50.958427 ], [ 55.195312, 50.958427 ], [ 55.195312, 50.736455 ], [ 55.898438, 50.736455 ], [ 55.898438, 50.958427 ], [ 56.601562, 50.958427 ], [ 56.601562, 51.179343 ], [ 58.359375, 51.179343 ], [ 58.359375, 50.958427 ], [ 59.062500, 50.958427 ], [ 59.062500, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.835778 ], [ 59.765625, 51.835778 ], [ 59.765625, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.696361 ], [ 60.468750, 52.696361 ], [ 60.468750, 52.908902 ], [ 61.171875, 52.908902 ], [ 61.171875, 53.540307 ], [ 60.820312, 53.540307 ], [ 60.820312, 53.956086 ], [ 61.171875, 53.956086 ], [ 61.171875, 54.162434 ], [ 63.281250, 54.162434 ], [ 63.281250, 54.367759 ], [ 65.039062, 54.367759 ], [ 65.039062, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.775346 ], [ 66.796875, 54.775346 ], [ 66.796875, 54.977614 ], [ 68.203125, 54.977614 ], [ 68.203125, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.578345 ], [ 69.257812, 55.578345 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 58.710938, 45.583290 ], [ 58.710938, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.087585 ], [ 61.523438, 44.087585 ], [ 61.523438, 43.580391 ], [ 64.335938, 43.580391 ], [ 64.335938, 43.834527 ], [ 65.039062, 43.834527 ], [ 65.039062, 43.580391 ], [ 65.390625, 43.580391 ], [ 65.390625, 43.325178 ], [ 65.742188, 43.325178 ], [ 65.742188, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.508577 ], [ 66.796875, 41.508577 ], [ 66.796875, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.771312 ], [ 70.312500, 41.771312 ], [ 70.312500, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.771312 ], [ 70.664062, 41.771312 ], [ 70.664062, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 40.979898 ], [ 73.125000, 40.979898 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.178873 ], [ 70.312500, 40.178873 ], [ 70.312500, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.909736 ], [ 68.554688, 39.909736 ], [ 68.554688, 39.639538 ], [ 67.851562, 39.639538 ], [ 67.851562, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 38.822591 ], [ 68.203125, 38.822591 ], [ 68.203125, 38.548165 ], [ 68.554688, 38.548165 ], [ 68.554688, 37.996163 ], [ 68.203125, 37.996163 ], [ 68.203125, 37.439974 ], [ 67.851562, 37.439974 ], [ 67.851562, 37.160317 ], [ 67.148438, 37.160317 ], [ 67.148438, 37.439974 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 65.742188, 37.996163 ], [ 65.742188, 38.272689 ], [ 65.039062, 38.272689 ], [ 65.039062, 38.548165 ], [ 64.335938, 38.548165 ], [ 64.335938, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.639538 ], [ 62.578125, 39.639538 ], [ 62.578125, 39.909736 ], [ 62.226562, 39.909736 ], [ 62.226562, 40.446947 ], [ 61.875000, 40.446947 ], [ 61.875000, 40.979898 ], [ 61.523438, 40.979898 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 42.293564 ], [ 59.414062, 42.293564 ], [ 59.414062, 42.553080 ], [ 58.007812, 42.553080 ], [ 58.007812, 42.293564 ], [ 57.656250, 42.293564 ], [ 57.656250, 42.032974 ], [ 57.304688, 42.032974 ], [ 57.304688, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.244772 ], [ 55.898438, 41.244772 ], [ 55.898438, 45.089036 ], [ 56.601562, 45.089036 ], [ 56.601562, 45.336702 ], [ 58.007812, 45.336702 ], [ 58.007812, 45.583290 ], [ 58.710938, 45.583290 ] ], [ [ 70.312500, 40.979898 ], [ 70.312500, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.312500, 40.979898 ] ] ], [ [ [ 71.367188, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 42.293564 ], [ 71.367188, 42.293564 ], [ 71.367188, 42.032974 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.359375, 45.828799 ], [ 58.359375, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.087585 ], [ 61.523438, 44.087585 ], [ 61.523438, 43.580391 ], [ 62.578125, 43.580391 ], [ 62.578125, 43.834527 ], [ 64.687500, 43.834527 ], [ 64.687500, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.325178 ], [ 65.742188, 43.325178 ], [ 65.742188, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.553080 ], [ 65.742188, 42.553080 ], [ 65.742188, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 40.979898 ], [ 68.203125, 40.979898 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.771312 ], [ 69.960938, 41.771312 ], [ 69.960938, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 42.293564 ], [ 71.015625, 42.293564 ], [ 71.015625, 42.032974 ], [ 70.664062, 42.032974 ], [ 70.664062, 41.771312 ], [ 70.312500, 41.771312 ], [ 70.312500, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 40.979898 ], [ 72.773438, 40.979898 ], [ 72.773438, 40.713956 ], [ 72.421875, 40.713956 ], [ 72.421875, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 40.446947 ], [ 70.312500, 40.446947 ], [ 70.312500, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 69.257812, 40.979898 ], [ 69.257812, 40.446947 ], [ 68.906250, 40.446947 ], [ 68.906250, 39.909736 ], [ 68.554688, 39.909736 ], [ 68.554688, 39.639538 ], [ 67.500000, 39.639538 ], [ 67.500000, 39.368279 ], [ 67.148438, 39.368279 ], [ 67.148438, 39.095963 ], [ 67.851562, 39.095963 ], [ 67.851562, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 37.996163 ], [ 67.851562, 37.996163 ], [ 67.851562, 37.439974 ], [ 67.500000, 37.439974 ], [ 67.500000, 37.160317 ], [ 66.796875, 37.160317 ], [ 66.796875, 37.439974 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 65.742188, 37.996163 ], [ 65.742188, 38.272689 ], [ 65.039062, 38.272689 ], [ 65.039062, 38.548165 ], [ 64.687500, 38.548165 ], [ 64.687500, 38.822591 ], [ 63.984375, 38.822591 ], [ 63.984375, 39.095963 ], [ 63.281250, 39.095963 ], [ 63.281250, 39.368279 ], [ 62.929688, 39.368279 ], [ 62.929688, 39.639538 ], [ 62.578125, 39.639538 ], [ 62.578125, 39.909736 ], [ 62.226562, 39.909736 ], [ 62.226562, 40.713956 ], [ 61.875000, 40.713956 ], [ 61.875000, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.508577 ], [ 61.171875, 41.508577 ], [ 61.171875, 41.244772 ], [ 59.765625, 41.244772 ], [ 59.765625, 42.293564 ], [ 59.062500, 42.293564 ], [ 59.062500, 42.553080 ], [ 58.007812, 42.553080 ], [ 58.007812, 42.293564 ], [ 57.304688, 42.293564 ], [ 57.304688, 42.032974 ], [ 56.601562, 42.032974 ], [ 56.601562, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.508577 ], [ 55.898438, 41.508577 ], [ 55.898438, 45.089036 ], [ 56.601562, 45.089036 ], [ 56.601562, 45.336702 ], [ 57.304688, 45.336702 ], [ 57.304688, 45.583290 ], [ 58.007812, 45.583290 ], [ 58.007812, 45.828799 ], [ 58.359375, 45.828799 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.046875, 43.068888 ], [ 78.046875, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.553080 ], [ 79.804688, 42.553080 ], [ 79.804688, 42.293564 ], [ 80.156250, 42.293564 ], [ 80.156250, 42.032974 ], [ 79.804688, 42.032974 ], [ 79.804688, 41.771312 ], [ 79.101562, 41.771312 ], [ 79.101562, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 74.882812, 40.446947 ], [ 74.882812, 40.178873 ], [ 74.179688, 40.178873 ], [ 74.179688, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.368279 ], [ 71.015625, 39.368279 ], [ 71.015625, 39.639538 ], [ 69.609375, 39.639538 ], [ 69.609375, 40.178873 ], [ 69.960938, 40.178873 ], [ 69.960938, 39.909736 ], [ 71.015625, 39.909736 ], [ 71.015625, 40.178873 ], [ 72.070312, 40.178873 ], [ 72.070312, 40.446947 ], [ 72.773438, 40.446947 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.979898 ], [ 72.421875, 40.979898 ], [ 72.421875, 41.244772 ], [ 70.312500, 41.244772 ], [ 70.312500, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.771312 ], [ 71.015625, 41.771312 ], [ 71.015625, 42.032974 ], [ 71.367188, 42.032974 ], [ 71.367188, 42.293564 ], [ 71.015625, 42.293564 ], [ 71.015625, 42.811522 ], [ 72.421875, 42.811522 ], [ 72.421875, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 43.068888 ], [ 74.882812, 43.068888 ], [ 74.882812, 42.811522 ], [ 75.937500, 42.811522 ], [ 75.937500, 43.068888 ], [ 78.046875, 43.068888 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.531250, 43.325178 ], [ 74.531250, 43.068888 ], [ 79.101562, 43.068888 ], [ 79.101562, 42.811522 ], [ 79.453125, 42.811522 ], [ 79.453125, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 42.293564 ], [ 79.804688, 42.293564 ], [ 79.804688, 42.032974 ], [ 79.101562, 42.032974 ], [ 79.101562, 41.771312 ], [ 78.398438, 41.771312 ], [ 78.398438, 41.508577 ], [ 78.046875, 41.508577 ], [ 78.046875, 41.244772 ], [ 76.640625, 41.244772 ], [ 76.640625, 40.713956 ], [ 76.289062, 40.713956 ], [ 76.289062, 40.446947 ], [ 75.585938, 40.446947 ], [ 75.585938, 40.713956 ], [ 75.234375, 40.713956 ], [ 75.234375, 40.446947 ], [ 74.531250, 40.446947 ], [ 74.531250, 40.178873 ], [ 73.828125, 40.178873 ], [ 73.828125, 39.639538 ], [ 72.773438, 39.639538 ], [ 72.773438, 39.368279 ], [ 70.664062, 39.368279 ], [ 70.664062, 39.639538 ], [ 69.257812, 39.639538 ], [ 69.257812, 40.178873 ], [ 72.070312, 40.178873 ], [ 72.070312, 40.446947 ], [ 72.421875, 40.446947 ], [ 72.421875, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.979898 ], [ 72.421875, 40.979898 ], [ 72.421875, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.771312 ], [ 70.664062, 41.771312 ], [ 70.664062, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 42.293564 ], [ 70.664062, 42.293564 ], [ 70.664062, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.811522 ], [ 71.718750, 42.811522 ], [ 71.718750, 43.068888 ], [ 72.070312, 43.068888 ], [ 72.070312, 42.811522 ], [ 72.773438, 42.811522 ], [ 72.773438, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 43.325178 ], [ 74.531250, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.713956 ], [ 45.703125, 40.713956 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.178873 ], [ 46.054688, 40.178873 ], [ 46.054688, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.368279 ], [ 46.406250, 39.368279 ], [ 46.406250, 38.822591 ], [ 46.054688, 38.822591 ], [ 46.054688, 39.095963 ], [ 45.703125, 39.095963 ], [ 45.703125, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.639538 ], [ 44.296875, 39.639538 ], [ 44.296875, 39.909736 ], [ 43.593750, 39.909736 ], [ 43.593750, 40.979898 ], [ 44.648438, 40.979898 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.703125, 39.639538 ], [ 46.406250, 39.639538 ], [ 46.406250, 38.822591 ], [ 46.054688, 38.822591 ], [ 46.054688, 39.095963 ], [ 45.703125, 39.095963 ], [ 45.703125, 39.639538 ] ] ], [ [ [ 45.351562, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 40.178873 ], [ 43.593750, 40.178873 ], [ 43.593750, 40.979898 ], [ 43.242188, 40.979898 ], [ 43.242188, 41.244772 ], [ 44.296875, 41.244772 ], [ 44.296875, 41.508577 ], [ 44.648438, 41.508577 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.178873 ], [ 45.351562, 40.178873 ], [ 45.351562, 39.639538 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.757812, 41.771312 ], [ 46.757812, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.713956 ], [ 49.570312, 40.713956 ], [ 49.570312, 40.446947 ], [ 49.921875, 40.446947 ], [ 49.921875, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.095963 ], [ 49.218750, 39.095963 ], [ 49.218750, 38.822591 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 39.095963 ], [ 48.515625, 39.095963 ], [ 48.515625, 39.368279 ], [ 48.164062, 39.368279 ], [ 48.164062, 39.639538 ], [ 47.812500, 39.639538 ], [ 47.812500, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.095963 ], [ 46.757812, 39.095963 ], [ 46.757812, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.368279 ], [ 46.054688, 39.368279 ], [ 46.054688, 39.639538 ], [ 45.703125, 39.639538 ], [ 45.703125, 39.909736 ], [ 46.054688, 39.909736 ], [ 46.054688, 40.178873 ], [ 45.351562, 40.178873 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.979898 ], [ 45.000000, 40.979898 ], [ 45.000000, 41.244772 ], [ 46.054688, 41.244772 ], [ 46.054688, 40.979898 ], [ 46.757812, 40.979898 ], [ 46.757812, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.054688, 41.508577 ], [ 46.054688, 41.771312 ], [ 46.757812, 41.771312 ] ] ], [ [ [ 45.000000, 39.368279 ], [ 45.703125, 39.368279 ], [ 45.703125, 39.095963 ], [ 46.054688, 39.095963 ], [ 46.054688, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.000000, 39.095963 ], [ 45.000000, 39.368279 ] ] ], [ [ [ 45.000000, 39.368279 ], [ 44.648438, 39.368279 ], [ 44.648438, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.368279 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.054688, 41.508577 ], [ 46.054688, 41.771312 ], [ 46.757812, 41.771312 ], [ 46.757812, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.771312 ], [ 48.867188, 41.771312 ], [ 48.867188, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.713956 ], [ 49.921875, 40.713956 ], [ 49.921875, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.909736 ], [ 49.218750, 39.909736 ], [ 49.218750, 38.822591 ], [ 48.515625, 38.822591 ], [ 48.515625, 38.548165 ], [ 48.867188, 38.548165 ], [ 48.867188, 38.272689 ], [ 48.164062, 38.272689 ], [ 48.164062, 38.548165 ], [ 47.812500, 38.548165 ], [ 47.812500, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 39.639538 ], [ 47.460938, 39.639538 ], [ 47.460938, 39.368279 ], [ 47.109375, 39.368279 ], [ 47.109375, 39.095963 ], [ 46.757812, 39.095963 ], [ 46.757812, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.639538 ], [ 45.703125, 39.639538 ], [ 45.703125, 39.095963 ], [ 46.054688, 39.095963 ], [ 46.054688, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 44.648438, 39.095963 ], [ 44.648438, 39.909736 ], [ 45.000000, 39.909736 ], [ 45.000000, 39.639538 ], [ 45.351562, 39.639538 ], [ 45.351562, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.979898 ], [ 45.000000, 40.979898 ], [ 45.000000, 41.244772 ] ] ], [ [ [ 45.000000, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.508577 ], [ 45.000000, 41.508577 ], [ 45.000000, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.164062, 39.639538 ], [ 48.164062, 39.368279 ], [ 48.515625, 39.368279 ], [ 48.515625, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 38.548165 ], [ 48.515625, 38.548165 ], [ 48.515625, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.218750, 37.996163 ], [ 49.218750, 37.718590 ], [ 49.570312, 37.718590 ], [ 49.570312, 37.439974 ], [ 50.273438, 37.439974 ], [ 50.273438, 37.160317 ], [ 50.625000, 37.160317 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.597889 ], [ 53.437500, 36.597889 ], [ 53.437500, 36.879621 ], [ 53.789062, 36.879621 ], [ 53.789062, 37.160317 ], [ 54.492188, 37.160317 ], [ 54.492188, 37.439974 ], [ 55.195312, 37.439974 ], [ 55.195312, 37.718590 ], [ 55.546875, 37.718590 ], [ 55.546875, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.439974 ], [ 59.062500, 37.439974 ], [ 59.062500, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 36.879621 ], [ 60.117188, 36.879621 ], [ 60.117188, 36.597889 ], [ 61.171875, 36.597889 ], [ 61.171875, 34.885931 ], [ 60.820312, 34.885931 ], [ 60.820312, 34.016242 ], [ 60.468750, 34.016242 ], [ 60.468750, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.546813 ], [ 60.820312, 32.546813 ], [ 60.820312, 31.653381 ], [ 61.171875, 31.653381 ], [ 61.171875, 31.353637 ], [ 61.875000, 31.353637 ], [ 61.875000, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.145127 ], [ 61.171875, 30.145127 ], [ 61.171875, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.523438, 29.228890 ], [ 61.523438, 28.921631 ], [ 61.875000, 28.921631 ], [ 61.875000, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.683528 ], [ 62.929688, 27.683528 ], [ 62.929688, 27.371767 ], [ 63.281250, 27.371767 ], [ 63.281250, 26.431228 ], [ 62.578125, 26.431228 ], [ 62.578125, 26.115986 ], [ 61.875000, 26.115986 ], [ 61.875000, 25.482951 ], [ 61.523438, 25.482951 ], [ 61.523438, 25.165173 ], [ 60.468750, 25.165173 ], [ 60.468750, 25.482951 ], [ 57.656250, 25.482951 ], [ 57.656250, 25.799891 ], [ 57.304688, 25.799891 ], [ 57.304688, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.898438, 27.059126 ], [ 55.898438, 26.745610 ], [ 55.195312, 26.745610 ], [ 55.195312, 26.431228 ], [ 53.789062, 26.431228 ], [ 53.789062, 26.745610 ], [ 53.085938, 26.745610 ], [ 53.085938, 27.059126 ], [ 52.734375, 27.059126 ], [ 52.734375, 27.371767 ], [ 52.382812, 27.371767 ], [ 52.382812, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.994401 ], [ 51.328125, 27.994401 ], [ 51.328125, 28.613459 ], [ 50.976562, 28.613459 ], [ 50.976562, 29.228890 ], [ 50.625000, 29.228890 ], [ 50.625000, 29.840644 ], [ 49.218750, 29.840644 ], [ 49.218750, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 31.052934 ], [ 47.812500, 31.052934 ], [ 47.812500, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 33.724340 ], [ 45.351562, 33.724340 ], [ 45.351562, 34.307144 ], [ 45.703125, 34.307144 ], [ 45.703125, 34.885931 ], [ 46.054688, 34.885931 ], [ 46.054688, 35.746512 ], [ 45.351562, 35.746512 ], [ 45.351562, 36.315125 ], [ 45.000000, 36.315125 ], [ 45.000000, 36.879621 ], [ 44.648438, 36.879621 ], [ 44.648438, 37.439974 ], [ 44.296875, 37.439974 ], [ 44.296875, 38.822591 ], [ 43.945312, 38.822591 ], [ 43.945312, 39.368279 ], [ 45.000000, 39.368279 ], [ 45.000000, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 39.095963 ], [ 47.460938, 39.095963 ], [ 47.460938, 39.368279 ], [ 47.812500, 39.368279 ], [ 47.812500, 39.639538 ], [ 48.164062, 39.639538 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 39.639538 ], [ 47.812500, 39.368279 ], [ 48.164062, 39.368279 ], [ 48.164062, 39.095963 ], [ 47.812500, 39.095963 ], [ 47.812500, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.718590 ], [ 49.218750, 37.718590 ], [ 49.218750, 37.439974 ], [ 49.921875, 37.439974 ], [ 49.921875, 37.160317 ], [ 50.273438, 37.160317 ], [ 50.273438, 36.879621 ], [ 53.085938, 36.879621 ], [ 53.085938, 37.160317 ], [ 53.789062, 37.160317 ], [ 53.789062, 37.439974 ], [ 54.843750, 37.439974 ], [ 54.843750, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.996163 ], [ 56.601562, 37.996163 ], [ 56.601562, 38.272689 ], [ 57.304688, 38.272689 ], [ 57.304688, 37.996163 ], [ 58.007812, 37.996163 ], [ 58.007812, 37.718590 ], [ 58.359375, 37.718590 ], [ 58.359375, 37.439974 ], [ 59.062500, 37.439974 ], [ 59.062500, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 36.879621 ], [ 59.765625, 36.879621 ], [ 59.765625, 36.597889 ], [ 60.820312, 36.597889 ], [ 60.820312, 36.031332 ], [ 61.171875, 36.031332 ], [ 61.171875, 35.460670 ], [ 60.820312, 35.460670 ], [ 60.820312, 34.885931 ], [ 60.468750, 34.885931 ], [ 60.468750, 33.724340 ], [ 60.820312, 33.724340 ], [ 60.820312, 33.431441 ], [ 60.468750, 33.431441 ], [ 60.468750, 32.546813 ], [ 60.820312, 32.546813 ], [ 60.820312, 31.653381 ], [ 61.523438, 31.653381 ], [ 61.523438, 30.448674 ], [ 61.171875, 30.448674 ], [ 61.171875, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.523438, 29.228890 ], [ 61.523438, 28.613459 ], [ 62.226562, 28.613459 ], [ 62.226562, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.745610 ], [ 62.578125, 26.745610 ], [ 62.578125, 26.431228 ], [ 61.875000, 26.431228 ], [ 61.875000, 26.115986 ], [ 61.523438, 26.115986 ], [ 61.523438, 25.482951 ], [ 61.171875, 25.482951 ], [ 61.171875, 25.165173 ], [ 60.117188, 25.165173 ], [ 60.117188, 25.482951 ], [ 58.710938, 25.482951 ], [ 58.710938, 25.799891 ], [ 57.304688, 25.799891 ], [ 57.304688, 26.431228 ], [ 56.953125, 26.431228 ], [ 56.953125, 27.059126 ], [ 55.195312, 27.059126 ], [ 55.195312, 26.745610 ], [ 53.789062, 26.745610 ], [ 53.789062, 27.059126 ], [ 53.085938, 27.059126 ], [ 53.085938, 27.371767 ], [ 52.382812, 27.371767 ], [ 52.382812, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.994401 ], [ 50.976562, 27.994401 ], [ 50.976562, 28.613459 ], [ 50.625000, 28.613459 ], [ 50.625000, 29.228890 ], [ 50.273438, 29.228890 ], [ 50.273438, 29.840644 ], [ 49.921875, 29.840644 ], [ 49.921875, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 30.448674 ], [ 47.812500, 30.448674 ], [ 47.812500, 31.052934 ], [ 47.460938, 31.052934 ], [ 47.460938, 31.353637 ], [ 47.812500, 31.353637 ], [ 47.812500, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.249974 ], [ 47.109375, 32.249974 ], [ 47.109375, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 33.137551 ], [ 45.703125, 33.137551 ], [ 45.703125, 33.724340 ], [ 45.351562, 33.724340 ], [ 45.351562, 34.885931 ], [ 46.054688, 34.885931 ], [ 46.054688, 35.746512 ], [ 45.351562, 35.746512 ], [ 45.351562, 36.315125 ], [ 45.000000, 36.315125 ], [ 45.000000, 36.879621 ], [ 44.648438, 36.879621 ], [ 44.648438, 37.439974 ], [ 44.296875, 37.439974 ], [ 44.296875, 37.718590 ], [ 43.945312, 37.718590 ], [ 43.945312, 38.272689 ], [ 44.296875, 38.272689 ], [ 44.296875, 39.095963 ], [ 43.945312, 39.095963 ], [ 43.945312, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 39.095963 ], [ 47.109375, 39.095963 ], [ 47.109375, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.639538 ], [ 47.812500, 39.639538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 29.840644 ], [ 47.812500, 29.535230 ], [ 48.164062, 29.535230 ], [ 48.164062, 28.921631 ], [ 48.515625, 28.921631 ], [ 48.515625, 28.613459 ], [ 47.460938, 28.613459 ], [ 47.460938, 28.921631 ], [ 46.757812, 28.921631 ], [ 46.757812, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 29.840644 ], [ 47.812500, 29.840644 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.812500, 30.145127 ], [ 47.812500, 29.840644 ], [ 48.164062, 29.840644 ], [ 48.164062, 29.535230 ], [ 47.812500, 29.535230 ], [ 47.812500, 28.921631 ], [ 48.164062, 28.921631 ], [ 48.164062, 28.613459 ], [ 47.460938, 28.613459 ], [ 47.460938, 29.228890 ], [ 46.757812, 29.228890 ], [ 46.757812, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 30.145127 ], [ 47.812500, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 32.249974 ], [ 39.375000, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.653381 ], [ 40.781250, 31.653381 ], [ 40.781250, 31.353637 ], [ 41.484375, 31.353637 ], [ 41.484375, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 30.751278 ], [ 42.187500, 30.751278 ], [ 42.187500, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.145127 ], [ 43.242188, 30.145127 ], [ 43.242188, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.228890 ], [ 46.757812, 29.228890 ], [ 46.757812, 28.921631 ], [ 47.460938, 28.921631 ], [ 47.460938, 28.613459 ], [ 48.515625, 28.613459 ], [ 48.515625, 27.994401 ], [ 48.867188, 27.994401 ], [ 48.867188, 27.371767 ], [ 49.218750, 27.371767 ], [ 49.218750, 27.059126 ], [ 49.570312, 27.059126 ], [ 49.570312, 26.745610 ], [ 50.273438, 26.745610 ], [ 50.273438, 25.482951 ], [ 50.625000, 25.482951 ], [ 50.625000, 24.846565 ], [ 50.976562, 24.846565 ], [ 50.976562, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 24.206890 ], [ 51.679688, 24.206890 ], [ 51.679688, 23.241346 ], [ 52.031250, 23.241346 ], [ 52.031250, 22.917923 ], [ 53.085938, 22.917923 ], [ 53.085938, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.289374 ], [ 55.195312, 21.289374 ], [ 55.195312, 20.303418 ], [ 54.843750, 20.303418 ], [ 54.843750, 19.973349 ], [ 54.492188, 19.973349 ], [ 54.492188, 19.642588 ], [ 53.789062, 19.642588 ], [ 53.789062, 19.311143 ], [ 52.734375, 19.311143 ], [ 52.734375, 18.979026 ], [ 50.976562, 18.979026 ], [ 50.976562, 18.646245 ], [ 48.867188, 18.646245 ], [ 48.867188, 18.312811 ], [ 48.164062, 18.312811 ], [ 48.164062, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 17.308688 ], [ 47.460938, 17.308688 ], [ 47.460938, 16.972741 ], [ 46.757812, 16.972741 ], [ 46.757812, 17.308688 ], [ 43.242188, 17.308688 ], [ 43.242188, 16.299051 ], [ 42.539062, 16.299051 ], [ 42.539062, 16.636192 ], [ 42.187500, 16.636192 ], [ 42.187500, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.978733 ], [ 41.484375, 17.978733 ], [ 41.484375, 18.312811 ], [ 41.132812, 18.312811 ], [ 41.132812, 18.979026 ], [ 40.781250, 18.979026 ], [ 40.781250, 19.642588 ], [ 40.429688, 19.642588 ], [ 40.429688, 19.973349 ], [ 40.078125, 19.973349 ], [ 40.078125, 20.303418 ], [ 39.375000, 20.303418 ], [ 39.375000, 20.961440 ], [ 39.023438, 20.961440 ], [ 39.023438, 22.593726 ], [ 38.671875, 22.593726 ], [ 38.671875, 23.241346 ], [ 38.320312, 23.241346 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.206890 ], [ 37.617188, 24.206890 ], [ 37.617188, 24.527135 ], [ 37.265625, 24.527135 ], [ 37.265625, 25.165173 ], [ 36.914062, 25.165173 ], [ 36.914062, 25.482951 ], [ 36.562500, 25.482951 ], [ 36.562500, 26.115986 ], [ 36.210938, 26.115986 ], [ 36.210938, 26.431228 ], [ 35.859375, 26.431228 ], [ 35.859375, 27.059126 ], [ 35.507812, 27.059126 ], [ 35.507812, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 27.994401 ], [ 34.804688, 27.994401 ], [ 34.804688, 29.228890 ], [ 36.562500, 29.228890 ], [ 36.562500, 29.535230 ], [ 36.914062, 29.535230 ], [ 36.914062, 29.840644 ], [ 37.617188, 29.840644 ], [ 37.617188, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 36.914062, 31.353637 ], [ 36.914062, 31.653381 ], [ 38.320312, 31.653381 ], [ 38.320312, 31.952162 ], [ 39.023438, 31.952162 ], [ 39.023438, 32.249974 ], [ 39.375000, 32.249974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.375000, 32.249974 ], [ 39.375000, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.653381 ], [ 41.132812, 31.653381 ], [ 41.132812, 31.353637 ], [ 41.835938, 31.353637 ], [ 41.835938, 31.052934 ], [ 42.187500, 31.052934 ], [ 42.187500, 30.751278 ], [ 42.539062, 30.751278 ], [ 42.539062, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.145127 ], [ 43.593750, 30.145127 ], [ 43.593750, 29.840644 ], [ 43.945312, 29.840644 ], [ 43.945312, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.228890 ], [ 47.460938, 29.228890 ], [ 47.460938, 28.613459 ], [ 48.164062, 28.613459 ], [ 48.164062, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.683528 ], [ 49.218750, 27.683528 ], [ 49.218750, 27.059126 ], [ 49.570312, 27.059126 ], [ 49.570312, 26.745610 ], [ 49.921875, 26.745610 ], [ 49.921875, 25.482951 ], [ 50.273438, 25.482951 ], [ 50.273438, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.846565 ], [ 51.328125, 24.846565 ], [ 51.328125, 23.563987 ], [ 51.679688, 23.563987 ], [ 51.679688, 23.241346 ], [ 52.382812, 23.241346 ], [ 52.382812, 22.917923 ], [ 53.789062, 22.917923 ], [ 53.789062, 22.593726 ], [ 55.546875, 22.593726 ], [ 55.546875, 21.616579 ], [ 55.195312, 21.616579 ], [ 55.195312, 20.632784 ], [ 54.843750, 20.632784 ], [ 54.843750, 20.303418 ], [ 54.492188, 20.303418 ], [ 54.492188, 19.973349 ], [ 53.437500, 19.973349 ], [ 53.437500, 19.642588 ], [ 52.382812, 19.642588 ], [ 52.382812, 19.311143 ], [ 51.328125, 19.311143 ], [ 51.328125, 18.979026 ], [ 49.921875, 18.979026 ], [ 49.921875, 18.646245 ], [ 48.867188, 18.646245 ], [ 48.867188, 18.312811 ], [ 48.164062, 18.312811 ], [ 48.164062, 17.978733 ], [ 47.812500, 17.978733 ], [ 47.812500, 17.308688 ], [ 47.460938, 17.308688 ], [ 47.460938, 16.972741 ], [ 46.406250, 16.972741 ], [ 46.406250, 17.308688 ], [ 45.351562, 17.308688 ], [ 45.351562, 17.644022 ], [ 43.242188, 17.644022 ], [ 43.242188, 17.308688 ], [ 42.890625, 17.308688 ], [ 42.890625, 16.636192 ], [ 42.539062, 16.636192 ], [ 42.539062, 16.972741 ], [ 42.187500, 16.972741 ], [ 42.187500, 17.644022 ], [ 41.484375, 17.644022 ], [ 41.484375, 18.312811 ], [ 41.132812, 18.312811 ], [ 41.132812, 19.311143 ], [ 40.781250, 19.311143 ], [ 40.781250, 19.642588 ], [ 40.429688, 19.642588 ], [ 40.429688, 19.973349 ], [ 40.078125, 19.973349 ], [ 40.078125, 20.303418 ], [ 39.726562, 20.303418 ], [ 39.726562, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 20.961440 ], [ 39.023438, 20.961440 ], [ 39.023438, 22.917923 ], [ 38.671875, 22.917923 ], [ 38.671875, 23.563987 ], [ 38.320312, 23.563987 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.206890 ], [ 37.265625, 24.206890 ], [ 37.265625, 24.846565 ], [ 36.914062, 24.846565 ], [ 36.914062, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 26.431228 ], [ 36.210938, 26.431228 ], [ 36.210938, 26.745610 ], [ 35.859375, 26.745610 ], [ 35.859375, 27.371767 ], [ 35.507812, 27.371767 ], [ 35.507812, 27.683528 ], [ 35.156250, 27.683528 ], [ 35.156250, 27.994401 ], [ 34.804688, 27.994401 ], [ 34.804688, 28.304381 ], [ 34.453125, 28.304381 ], [ 34.453125, 28.921631 ], [ 34.804688, 28.921631 ], [ 34.804688, 29.535230 ], [ 35.156250, 29.535230 ], [ 35.156250, 29.228890 ], [ 36.210938, 29.228890 ], [ 36.210938, 29.840644 ], [ 36.562500, 29.840644 ], [ 36.562500, 30.145127 ], [ 37.617188, 30.145127 ], [ 37.617188, 30.448674 ], [ 37.968750, 30.448674 ], [ 37.968750, 30.751278 ], [ 37.617188, 30.751278 ], [ 37.617188, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 36.914062, 31.353637 ], [ 36.914062, 31.653381 ], [ 37.617188, 31.653381 ], [ 37.617188, 31.952162 ], [ 38.320312, 31.952162 ], [ 38.320312, 32.249974 ], [ 39.375000, 32.249974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 26.115986 ], [ 51.328125, 25.799891 ], [ 51.679688, 25.799891 ], [ 51.679688, 24.846565 ], [ 51.328125, 24.846565 ], [ 51.328125, 24.527135 ], [ 50.976562, 24.527135 ], [ 50.976562, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 25.799891 ], [ 50.976562, 25.799891 ], [ 50.976562, 26.115986 ], [ 51.328125, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.328125, 25.799891 ], [ 51.328125, 24.846565 ], [ 50.625000, 24.846565 ], [ 50.625000, 25.799891 ], [ 51.328125, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.799891 ], [ 56.250000, 24.846565 ], [ 55.898438, 24.846565 ], [ 55.898438, 23.885838 ], [ 55.546875, 23.885838 ], [ 55.546875, 23.241346 ], [ 55.195312, 23.241346 ], [ 55.195312, 22.593726 ], [ 53.085938, 22.593726 ], [ 53.085938, 22.917923 ], [ 52.031250, 22.917923 ], [ 52.031250, 23.241346 ], [ 51.679688, 23.241346 ], [ 51.679688, 23.885838 ], [ 52.382812, 23.885838 ], [ 52.382812, 24.206890 ], [ 54.492188, 24.206890 ], [ 54.492188, 24.527135 ], [ 54.843750, 24.527135 ], [ 54.843750, 24.846565 ], [ 55.195312, 24.846565 ], [ 55.195312, 25.165173 ], [ 55.546875, 25.165173 ], [ 55.546875, 25.799891 ], [ 56.250000, 25.799891 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 55.546875, 25.165173 ], [ 55.546875, 24.206890 ], [ 55.195312, 24.206890 ], [ 55.195312, 22.593726 ], [ 53.789062, 22.593726 ], [ 53.789062, 22.917923 ], [ 52.382812, 22.917923 ], [ 52.382812, 23.241346 ], [ 51.679688, 23.241346 ], [ 51.679688, 23.563987 ], [ 51.328125, 23.563987 ], [ 51.328125, 24.527135 ], [ 51.679688, 24.527135 ], [ 51.679688, 24.206890 ], [ 54.140625, 24.206890 ], [ 54.140625, 24.527135 ], [ 54.492188, 24.527135 ], [ 54.492188, 24.846565 ], [ 54.843750, 24.846565 ], [ 54.843750, 25.165173 ], [ 55.195312, 25.165173 ], [ 55.195312, 25.482951 ], [ 55.546875, 25.482951 ], [ 55.546875, 25.799891 ], [ 56.250000, 25.799891 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.414062, 42.553080 ], [ 59.414062, 42.293564 ], [ 60.117188, 42.293564 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 40.979898 ], [ 61.875000, 40.979898 ], [ 61.875000, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.639538 ], [ 63.281250, 39.639538 ], [ 63.281250, 39.368279 ], [ 63.632812, 39.368279 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.822591 ], [ 64.335938, 38.822591 ], [ 64.335938, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 37.996163 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.439974 ], [ 65.390625, 37.439974 ], [ 65.390625, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.031332 ], [ 63.984375, 36.031332 ], [ 63.984375, 35.746512 ], [ 63.281250, 35.746512 ], [ 63.281250, 35.460670 ], [ 62.929688, 35.460670 ], [ 62.929688, 35.173808 ], [ 61.875000, 35.173808 ], [ 61.875000, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.879621 ], [ 59.414062, 36.879621 ], [ 59.414062, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 37.439974 ], [ 58.007812, 37.439974 ], [ 58.007812, 37.718590 ], [ 57.304688, 37.718590 ], [ 57.304688, 37.996163 ], [ 55.546875, 37.996163 ], [ 55.546875, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.439974 ], [ 54.492188, 37.439974 ], [ 54.492188, 37.160317 ], [ 53.789062, 37.160317 ], [ 53.789062, 38.822591 ], [ 53.437500, 38.822591 ], [ 53.437500, 39.095963 ], [ 53.085938, 39.095963 ], [ 53.085938, 39.639538 ], [ 53.437500, 39.639538 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 52.734375, 40.446947 ], [ 53.085938, 40.446947 ], [ 53.085938, 40.713956 ], [ 54.492188, 40.713956 ], [ 54.492188, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.771312 ], [ 53.085938, 41.771312 ], [ 53.085938, 42.032974 ], [ 53.789062, 42.032974 ], [ 53.789062, 42.293564 ], [ 54.140625, 42.293564 ], [ 54.140625, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.771312 ], [ 55.195312, 41.771312 ], [ 55.195312, 41.244772 ], [ 56.953125, 41.244772 ], [ 56.953125, 41.771312 ], [ 57.304688, 41.771312 ], [ 57.304688, 42.032974 ], [ 57.656250, 42.032974 ], [ 57.656250, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.553080 ], [ 59.414062, 42.553080 ] ] ], [ [ [ 53.085938, 41.771312 ], [ 53.085938, 41.508577 ], [ 52.382812, 41.508577 ], [ 52.382812, 41.771312 ], [ 53.085938, 41.771312 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.062500, 42.553080 ], [ 59.062500, 42.293564 ], [ 59.765625, 42.293564 ], [ 59.765625, 41.244772 ], [ 61.171875, 41.244772 ], [ 61.171875, 41.508577 ], [ 61.523438, 41.508577 ], [ 61.523438, 41.244772 ], [ 61.875000, 41.244772 ], [ 61.875000, 40.713956 ], [ 62.226562, 40.713956 ], [ 62.226562, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.639538 ], [ 62.929688, 39.639538 ], [ 62.929688, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.822591 ], [ 64.687500, 38.822591 ], [ 64.687500, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 37.996163 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.439974 ], [ 65.390625, 37.439974 ], [ 65.390625, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.597889 ], [ 64.335938, 36.597889 ], [ 64.335938, 36.031332 ], [ 62.929688, 36.031332 ], [ 62.929688, 35.460670 ], [ 61.523438, 35.460670 ], [ 61.523438, 35.746512 ], [ 61.171875, 35.746512 ], [ 61.171875, 36.031332 ], [ 60.820312, 36.031332 ], [ 60.820312, 36.597889 ], [ 59.765625, 36.597889 ], [ 59.765625, 36.879621 ], [ 59.414062, 36.879621 ], [ 59.414062, 37.160317 ], [ 59.062500, 37.160317 ], [ 59.062500, 37.439974 ], [ 58.359375, 37.439974 ], [ 58.359375, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 38.272689 ], [ 56.601562, 38.272689 ], [ 56.601562, 37.996163 ], [ 55.195312, 37.996163 ], [ 55.195312, 37.718590 ], [ 54.843750, 37.718590 ], [ 54.843750, 37.439974 ], [ 53.789062, 37.439974 ], [ 53.789062, 37.718590 ], [ 53.437500, 37.718590 ], [ 53.437500, 38.548165 ], [ 53.789062, 38.548165 ], [ 53.789062, 39.095963 ], [ 53.085938, 39.095963 ], [ 53.085938, 40.178873 ], [ 52.382812, 40.178873 ], [ 52.382812, 40.446947 ], [ 52.734375, 40.446947 ], [ 52.734375, 40.979898 ], [ 53.085938, 40.979898 ], [ 53.085938, 40.713956 ], [ 54.492188, 40.713956 ], [ 54.492188, 40.979898 ], [ 54.140625, 40.979898 ], [ 54.140625, 41.508577 ], [ 53.789062, 41.508577 ], [ 53.789062, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 42.293564 ], [ 53.437500, 42.293564 ], [ 53.437500, 42.553080 ], [ 53.789062, 42.553080 ], [ 53.789062, 42.293564 ], [ 54.492188, 42.293564 ], [ 54.492188, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.771312 ], [ 56.601562, 41.771312 ], [ 56.601562, 42.032974 ], [ 57.304688, 42.032974 ], [ 57.304688, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.553080 ], [ 59.062500, 42.553080 ] ] ], [ [ [ 52.734375, 42.032974 ], [ 52.734375, 41.508577 ], [ 52.382812, 41.508577 ], [ 52.382812, 42.032974 ], [ 52.734375, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 52.031250, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.644022 ], [ 52.734375, 17.644022 ], [ 52.734375, 16.972741 ], [ 53.085938, 16.972741 ], [ 53.085938, 16.299051 ], [ 52.382812, 16.299051 ], [ 52.382812, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.284185 ], [ 50.976562, 15.284185 ], [ 50.976562, 14.944785 ], [ 50.273438, 14.944785 ], [ 50.273438, 14.604847 ], [ 49.570312, 14.604847 ], [ 49.570312, 14.264383 ], [ 48.867188, 14.264383 ], [ 48.867188, 13.923404 ], [ 47.812500, 13.923404 ], [ 47.812500, 13.581921 ], [ 47.460938, 13.581921 ], [ 47.460938, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 12.897489 ], [ 45.000000, 12.897489 ], [ 45.000000, 12.554564 ], [ 43.593750, 12.554564 ], [ 43.593750, 12.897489 ], [ 43.242188, 12.897489 ], [ 43.242188, 14.264383 ], [ 42.890625, 14.264383 ], [ 42.890625, 14.944785 ], [ 42.539062, 14.944785 ], [ 42.539062, 15.623037 ], [ 42.890625, 15.623037 ], [ 42.890625, 16.299051 ], [ 43.242188, 16.299051 ], [ 43.242188, 17.308688 ], [ 46.757812, 17.308688 ], [ 46.757812, 16.972741 ], [ 47.460938, 16.972741 ], [ 47.460938, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.312811 ], [ 48.867188, 18.312811 ], [ 48.867188, 18.646245 ], [ 50.976562, 18.646245 ], [ 50.976562, 18.979026 ], [ 52.031250, 18.979026 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.679688, 19.311143 ], [ 51.679688, 18.979026 ], [ 52.031250, 18.979026 ], [ 52.031250, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.644022 ], [ 52.734375, 17.644022 ], [ 52.734375, 17.308688 ], [ 53.085938, 17.308688 ], [ 53.085938, 16.636192 ], [ 52.382812, 16.636192 ], [ 52.382812, 16.299051 ], [ 52.031250, 16.299051 ], [ 52.031250, 15.623037 ], [ 51.679688, 15.623037 ], [ 51.679688, 15.284185 ], [ 50.625000, 15.284185 ], [ 50.625000, 14.944785 ], [ 49.570312, 14.944785 ], [ 49.570312, 14.604847 ], [ 48.867188, 14.604847 ], [ 48.867188, 14.264383 ], [ 47.812500, 14.264383 ], [ 47.812500, 13.923404 ], [ 47.109375, 13.923404 ], [ 47.109375, 13.581921 ], [ 45.351562, 13.581921 ], [ 45.351562, 13.239945 ], [ 45.000000, 13.239945 ], [ 45.000000, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 13.581921 ], [ 43.242188, 13.581921 ], [ 43.242188, 13.923404 ], [ 42.890625, 13.923404 ], [ 42.890625, 14.944785 ], [ 42.539062, 14.944785 ], [ 42.539062, 16.636192 ], [ 42.890625, 16.636192 ], [ 42.890625, 17.308688 ], [ 43.242188, 17.308688 ], [ 43.242188, 17.644022 ], [ 45.351562, 17.644022 ], [ 45.351562, 17.308688 ], [ 46.406250, 17.308688 ], [ 46.406250, 16.972741 ], [ 47.460938, 16.972741 ], [ 47.460938, 17.308688 ], [ 47.812500, 17.308688 ], [ 47.812500, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.312811 ], [ 48.867188, 18.312811 ], [ 48.867188, 18.646245 ], [ 49.921875, 18.646245 ], [ 49.921875, 18.979026 ], [ 51.328125, 18.979026 ], [ 51.328125, 19.311143 ], [ 51.679688, 19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 24.846565 ], [ 56.250000, 24.527135 ], [ 56.601562, 24.527135 ], [ 56.601562, 24.206890 ], [ 56.953125, 24.206890 ], [ 56.953125, 23.885838 ], [ 58.007812, 23.885838 ], [ 58.007812, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 21.943046 ], [ 59.414062, 21.943046 ], [ 59.414062, 20.961440 ], [ 58.710938, 20.961440 ], [ 58.710938, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 57.304688, 18.979026 ], [ 57.304688, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 16.972741 ], [ 54.140625, 16.972741 ], [ 54.140625, 16.636192 ], [ 53.085938, 16.636192 ], [ 53.085938, 16.972741 ], [ 52.734375, 16.972741 ], [ 52.734375, 17.644022 ], [ 52.382812, 17.644022 ], [ 52.382812, 18.312811 ], [ 52.031250, 18.312811 ], [ 52.031250, 18.979026 ], [ 52.734375, 18.979026 ], [ 52.734375, 19.311143 ], [ 53.789062, 19.311143 ], [ 53.789062, 19.642588 ], [ 54.492188, 19.642588 ], [ 54.492188, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 20.303418 ], [ 55.195312, 20.303418 ], [ 55.195312, 21.289374 ], [ 55.546875, 21.289374 ], [ 55.546875, 22.268764 ], [ 55.195312, 22.268764 ], [ 55.195312, 23.241346 ], [ 55.546875, 23.241346 ], [ 55.546875, 23.885838 ], [ 55.898438, 23.885838 ], [ 55.898438, 24.846565 ], [ 56.250000, 24.846565 ] ] ], [ [ [ 56.250000, 26.115986 ], [ 56.250000, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 26.115986 ], [ 56.250000, 26.115986 ] ] ], [ [ [ 56.601562, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 26.431228 ], [ 56.601562, 26.431228 ], [ 56.601562, 26.115986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 25.165173 ], [ 56.250000, 24.846565 ], [ 56.601562, 24.846565 ], [ 56.601562, 24.206890 ], [ 56.953125, 24.206890 ], [ 56.953125, 23.885838 ], [ 58.007812, 23.885838 ], [ 58.007812, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.917923 ], [ 59.414062, 22.917923 ], [ 59.414062, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.268764 ], [ 59.414062, 22.268764 ], [ 59.414062, 21.616579 ], [ 59.062500, 21.616579 ], [ 59.062500, 21.289374 ], [ 58.710938, 21.289374 ], [ 58.710938, 20.961440 ], [ 58.359375, 20.961440 ], [ 58.359375, 20.632784 ], [ 58.007812, 20.632784 ], [ 58.007812, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 56.953125, 18.979026 ], [ 56.953125, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 18.312811 ], [ 56.250000, 18.312811 ], [ 56.250000, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 16.972741 ], [ 53.085938, 16.972741 ], [ 53.085938, 17.308688 ], [ 52.734375, 17.308688 ], [ 52.734375, 17.644022 ], [ 52.382812, 17.644022 ], [ 52.382812, 18.312811 ], [ 52.031250, 18.312811 ], [ 52.031250, 18.979026 ], [ 51.679688, 18.979026 ], [ 51.679688, 19.311143 ], [ 52.382812, 19.311143 ], [ 52.382812, 19.642588 ], [ 53.437500, 19.642588 ], [ 53.437500, 19.973349 ], [ 54.492188, 19.973349 ], [ 54.492188, 20.303418 ], [ 54.843750, 20.303418 ], [ 54.843750, 20.632784 ], [ 55.195312, 20.632784 ], [ 55.195312, 21.616579 ], [ 55.546875, 21.616579 ], [ 55.546875, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 24.206890 ], [ 55.546875, 24.206890 ], [ 55.546875, 25.165173 ], [ 56.250000, 25.165173 ] ] ], [ [ [ 56.250000, 26.115986 ], [ 56.250000, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 26.115986 ], [ 56.250000, 26.115986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.523088 ], [ 48.867188, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.407168 ], [ 48.164062, 8.407168 ], [ 48.164062, 8.059230 ], [ 46.406250, 8.059230 ], [ 46.406250, 8.407168 ], [ 45.000000, 8.407168 ], [ 45.000000, 8.754795 ], [ 43.945312, 8.754795 ], [ 43.945312, 9.102097 ], [ 43.242188, 9.102097 ], [ 43.242188, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 10.141932 ], [ 42.539062, 10.141932 ], [ 42.539062, 10.487812 ], [ 42.890625, 10.487812 ], [ 42.890625, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.487812 ], [ 45.351562, 10.487812 ], [ 45.351562, 10.833306 ], [ 47.460938, 10.833306 ], [ 47.460938, 11.178402 ], [ 48.515625, 11.178402 ], [ 48.515625, 11.523088 ], [ 48.867188, 11.523088 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.523088 ], [ 48.867188, 9.102097 ], [ 48.164062, 9.102097 ], [ 48.164062, 8.754795 ], [ 47.812500, 8.754795 ], [ 47.812500, 8.059230 ], [ 46.054688, 8.059230 ], [ 46.054688, 8.407168 ], [ 45.351562, 8.407168 ], [ 45.351562, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 9.102097 ], [ 43.945312, 9.102097 ], [ 43.945312, 9.449062 ], [ 43.242188, 9.449062 ], [ 43.242188, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 11.178402 ], [ 42.890625, 11.178402 ], [ 42.890625, 11.523088 ], [ 43.242188, 11.523088 ], [ 43.242188, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.833306 ], [ 43.945312, 10.833306 ], [ 43.945312, 10.487812 ], [ 45.000000, 10.487812 ], [ 45.000000, 10.833306 ], [ 47.109375, 10.833306 ], [ 47.109375, 11.178402 ], [ 47.812500, 11.178402 ], [ 47.812500, 11.523088 ], [ 48.867188, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 11.867351 ], [ 50.976562, 9.449062 ], [ 50.625000, 9.449062 ], [ 50.625000, 8.754795 ], [ 50.273438, 8.754795 ], [ 50.273438, 8.059230 ], [ 49.921875, 8.059230 ], [ 49.921875, 7.362467 ], [ 49.570312, 7.362467 ], [ 49.570312, 6.315299 ], [ 49.218750, 6.315299 ], [ 49.218750, 5.965754 ], [ 48.867188, 5.965754 ], [ 48.867188, 5.266008 ], [ 48.515625, 5.266008 ], [ 48.515625, 4.915833 ], [ 48.164062, 4.915833 ], [ 48.164062, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 3.864255 ], [ 47.460938, 3.864255 ], [ 47.460938, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 3.162456 ], [ 46.757812, 3.162456 ], [ 46.757812, 2.811371 ], [ 46.406250, 2.811371 ], [ 46.406250, 2.460181 ], [ 46.054688, 2.460181 ], [ 46.054688, 2.108899 ], [ 45.703125, 2.108899 ], [ 45.703125, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.351560 ], [ 43.242188, 0.351560 ], [ 43.242188, 0.000000 ], [ 42.890625, 0.000000 ], [ 42.890625, -0.351560 ], [ 42.539062, -0.351560 ], [ 42.539062, -1.054628 ], [ 42.187500, -1.054628 ], [ 42.187500, -1.406109 ], [ 41.835938, -1.406109 ], [ 41.835938, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, 2.811371 ], [ 41.484375, 2.811371 ], [ 41.484375, 3.513421 ], [ 41.835938, 3.513421 ], [ 41.835938, 3.864255 ], [ 42.187500, 3.864255 ], [ 42.187500, 4.214943 ], [ 43.242188, 4.214943 ], [ 43.242188, 4.565474 ], [ 43.593750, 4.565474 ], [ 43.593750, 4.915833 ], [ 45.351562, 4.915833 ], [ 45.351562, 5.266008 ], [ 45.703125, 5.266008 ], [ 45.703125, 5.615986 ], [ 46.054688, 5.615986 ], [ 46.054688, 5.965754 ], [ 46.406250, 5.965754 ], [ 46.406250, 6.664608 ], [ 46.757812, 6.664608 ], [ 46.757812, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 7.362467 ], [ 47.460938, 7.362467 ], [ 47.460938, 7.710992 ], [ 47.812500, 7.710992 ], [ 47.812500, 8.059230 ], [ 48.164062, 8.059230 ], [ 48.164062, 8.407168 ], [ 48.515625, 8.407168 ], [ 48.515625, 9.102097 ], [ 48.867188, 9.102097 ], [ 48.867188, 11.523088 ], [ 50.625000, 11.523088 ], [ 50.625000, 11.867351 ], [ 50.976562, 11.867351 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 12.211180 ], [ 50.976562, 10.487812 ], [ 50.625000, 10.487812 ], [ 50.625000, 9.795678 ], [ 50.273438, 9.795678 ], [ 50.273438, 8.754795 ], [ 49.921875, 8.754795 ], [ 49.921875, 8.059230 ], [ 49.570312, 8.059230 ], [ 49.570312, 7.362467 ], [ 49.218750, 7.362467 ], [ 49.218750, 6.664608 ], [ 48.867188, 6.664608 ], [ 48.867188, 5.965754 ], [ 48.515625, 5.965754 ], [ 48.515625, 5.266008 ], [ 48.164062, 5.266008 ], [ 48.164062, 4.915833 ], [ 47.812500, 4.915833 ], [ 47.812500, 4.565474 ], [ 47.460938, 4.565474 ], [ 47.460938, 4.214943 ], [ 47.109375, 4.214943 ], [ 47.109375, 3.864255 ], [ 46.757812, 3.864255 ], [ 46.757812, 3.162456 ], [ 46.406250, 3.162456 ], [ 46.406250, 2.811371 ], [ 46.054688, 2.811371 ], [ 46.054688, 2.460181 ], [ 45.703125, 2.460181 ], [ 45.703125, 2.108899 ], [ 45.351562, 2.108899 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.703107 ], [ 43.242188, 0.703107 ], [ 43.242188, 0.351560 ], [ 42.890625, 0.351560 ], [ 42.890625, 0.000000 ], [ 42.539062, 0.000000 ], [ 42.539062, -0.351560 ], [ 42.187500, -0.351560 ], [ 42.187500, -0.703107 ], [ 41.835938, -0.703107 ], [ 41.835938, -1.054628 ], [ 41.484375, -1.054628 ], [ 41.484375, -1.406109 ], [ 41.132812, -1.406109 ], [ 41.132812, -1.054628 ], [ 40.781250, -1.054628 ], [ 40.781250, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 4.565474 ], [ 42.890625, 4.565474 ], [ 42.890625, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 5.266008 ], [ 45.000000, 5.266008 ], [ 45.000000, 5.615986 ], [ 45.351562, 5.615986 ], [ 45.351562, 5.965754 ], [ 45.703125, 5.965754 ], [ 45.703125, 6.315299 ], [ 46.054688, 6.315299 ], [ 46.054688, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 8.754795 ], [ 48.164062, 8.754795 ], [ 48.164062, 9.102097 ], [ 48.867188, 9.102097 ], [ 48.867188, 11.523088 ], [ 49.570312, 11.523088 ], [ 49.570312, 11.867351 ], [ 50.625000, 11.867351 ], [ 50.625000, 12.211180 ], [ 50.976562, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 40.713956 ], [ 70.312500, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 39.909736 ], [ 69.960938, 39.909736 ], [ 69.960938, 40.178873 ], [ 69.609375, 40.178873 ], [ 69.609375, 39.639538 ], [ 71.015625, 39.639538 ], [ 71.015625, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 38.548165 ], [ 74.179688, 38.548165 ], [ 74.179688, 38.272689 ], [ 74.882812, 38.272689 ], [ 74.882812, 37.439974 ], [ 73.125000, 37.439974 ], [ 73.125000, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 36.879621 ], [ 72.070312, 36.879621 ], [ 72.070312, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.718590 ], [ 69.609375, 37.718590 ], [ 69.609375, 37.439974 ], [ 69.257812, 37.439974 ], [ 69.257812, 37.160317 ], [ 67.851562, 37.160317 ], [ 67.851562, 37.439974 ], [ 68.203125, 37.439974 ], [ 68.203125, 37.996163 ], [ 68.554688, 37.996163 ], [ 68.554688, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 38.822591 ], [ 67.500000, 38.822591 ], [ 67.500000, 39.368279 ], [ 67.851562, 39.368279 ], [ 67.851562, 39.639538 ], [ 68.554688, 39.639538 ], [ 68.554688, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.713956 ], [ 70.312500, 40.713956 ] ] ], [ [ [ 70.664062, 40.713956 ], [ 70.312500, 40.713956 ], [ 70.312500, 40.979898 ], [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.312500, 40.713956 ], [ 70.312500, 40.446947 ], [ 71.015625, 40.446947 ], [ 71.015625, 40.178873 ], [ 69.257812, 40.178873 ], [ 69.257812, 39.639538 ], [ 70.664062, 39.639538 ], [ 70.664062, 39.368279 ], [ 72.773438, 39.368279 ], [ 72.773438, 39.639538 ], [ 73.476562, 39.639538 ], [ 73.476562, 39.095963 ], [ 73.828125, 39.095963 ], [ 73.828125, 38.548165 ], [ 74.531250, 38.548165 ], [ 74.531250, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 37.439974 ], [ 72.773438, 37.439974 ], [ 72.773438, 37.160317 ], [ 72.070312, 37.160317 ], [ 72.070312, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 37.996163 ], [ 71.015625, 37.996163 ], [ 71.015625, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.996163 ], [ 69.960938, 37.996163 ], [ 69.960938, 37.718590 ], [ 69.257812, 37.718590 ], [ 69.257812, 37.439974 ], [ 68.906250, 37.439974 ], [ 68.906250, 37.160317 ], [ 67.500000, 37.160317 ], [ 67.500000, 37.439974 ], [ 67.851562, 37.439974 ], [ 67.851562, 37.996163 ], [ 68.203125, 37.996163 ], [ 68.203125, 38.548165 ], [ 67.851562, 38.548165 ], [ 67.851562, 39.095963 ], [ 67.148438, 39.095963 ], [ 67.148438, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 39.639538 ], [ 68.554688, 39.639538 ], [ 68.554688, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.367188, 38.272689 ], [ 71.367188, 36.879621 ], [ 71.718750, 36.879621 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.315125 ], [ 71.367188, 36.315125 ], [ 71.367188, 35.460670 ], [ 71.718750, 35.460670 ], [ 71.718750, 34.885931 ], [ 71.367188, 34.885931 ], [ 71.367188, 34.597042 ], [ 71.015625, 34.597042 ], [ 71.015625, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.724340 ], [ 70.312500, 33.724340 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.842674 ], [ 69.257812, 32.842674 ], [ 69.257812, 31.653381 ], [ 67.851562, 31.653381 ], [ 67.851562, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 31.052934 ], [ 66.445312, 31.052934 ], [ 66.445312, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.228890 ], [ 63.632812, 29.228890 ], [ 63.632812, 29.535230 ], [ 63.281250, 29.535230 ], [ 63.281250, 29.228890 ], [ 61.875000, 29.228890 ], [ 61.875000, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.145127 ], [ 61.523438, 30.145127 ], [ 61.523438, 30.448674 ], [ 61.875000, 30.448674 ], [ 61.875000, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.820312, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.137551 ], [ 60.820312, 33.137551 ], [ 60.820312, 33.431441 ], [ 60.468750, 33.431441 ], [ 60.468750, 34.016242 ], [ 60.820312, 34.016242 ], [ 60.820312, 34.885931 ], [ 61.171875, 34.885931 ], [ 61.171875, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.173808 ], [ 62.929688, 35.173808 ], [ 62.929688, 35.460670 ], [ 63.281250, 35.460670 ], [ 63.281250, 35.746512 ], [ 63.984375, 35.746512 ], [ 63.984375, 36.031332 ], [ 64.687500, 36.031332 ], [ 64.687500, 37.160317 ], [ 65.390625, 37.160317 ], [ 65.390625, 37.439974 ], [ 67.148438, 37.439974 ], [ 67.148438, 37.160317 ], [ 69.257812, 37.160317 ], [ 69.257812, 37.439974 ], [ 69.609375, 37.439974 ], [ 69.609375, 37.718590 ], [ 70.312500, 37.718590 ], [ 70.312500, 38.272689 ], [ 71.367188, 38.272689 ] ] ], [ [ [ 74.882812, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.879621 ], [ 73.828125, 36.879621 ], [ 73.828125, 36.597889 ], [ 72.070312, 36.597889 ], [ 72.070312, 36.879621 ], [ 72.773438, 36.879621 ], [ 72.773438, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.439974 ], [ 74.882812, 37.439974 ], [ 74.882812, 37.160317 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.960938, 34.016242 ], [ 69.960938, 33.431441 ], [ 70.312500, 33.431441 ], [ 70.312500, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.842674 ], [ 69.257812, 32.842674 ], [ 69.257812, 31.653381 ], [ 68.554688, 31.653381 ], [ 68.554688, 31.952162 ], [ 68.203125, 31.952162 ], [ 68.203125, 31.653381 ], [ 67.500000, 31.653381 ], [ 67.500000, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 31.052934 ], [ 66.445312, 31.052934 ], [ 66.445312, 30.751278 ], [ 66.093750, 30.751278 ], [ 66.093750, 29.840644 ], [ 65.390625, 29.840644 ], [ 65.390625, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.820312, 32.546813 ], [ 60.468750, 32.546813 ], [ 60.468750, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 34.885931 ], [ 60.820312, 34.885931 ], [ 60.820312, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 35.746512 ], [ 61.523438, 35.746512 ], [ 61.523438, 35.460670 ], [ 62.929688, 35.460670 ], [ 62.929688, 36.031332 ], [ 64.335938, 36.031332 ], [ 64.335938, 36.597889 ], [ 64.687500, 36.597889 ], [ 64.687500, 37.160317 ], [ 65.390625, 37.160317 ], [ 65.390625, 37.439974 ], [ 66.796875, 37.439974 ], [ 66.796875, 37.160317 ], [ 68.906250, 37.160317 ], [ 68.906250, 37.439974 ], [ 69.257812, 37.439974 ], [ 69.257812, 37.718590 ], [ 69.960938, 37.718590 ], [ 69.960938, 37.996163 ], [ 70.312500, 37.996163 ], [ 70.312500, 38.272689 ], [ 71.015625, 38.272689 ], [ 71.015625, 37.996163 ], [ 71.367188, 37.996163 ], [ 71.367188, 36.879621 ], [ 72.070312, 36.879621 ], [ 72.070312, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 37.439974 ], [ 74.882812, 37.439974 ], [ 74.882812, 37.160317 ], [ 74.531250, 37.160317 ], [ 74.531250, 36.879621 ], [ 72.421875, 36.879621 ], [ 72.421875, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.315125 ], [ 71.015625, 36.315125 ], [ 71.015625, 36.031332 ], [ 71.367188, 36.031332 ], [ 71.367188, 34.885931 ], [ 71.015625, 34.885931 ], [ 71.015625, 34.307144 ], [ 70.664062, 34.307144 ], [ 70.664062, 34.016242 ], [ 69.960938, 34.016242 ] ], [ [ 69.960938, 34.016242 ], [ 69.960938, 34.307144 ], [ 69.609375, 34.307144 ], [ 69.609375, 34.016242 ], [ 69.960938, 34.016242 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 61.171875, 29.535230 ], [ 61.875000, 29.535230 ], [ 61.875000, 29.228890 ], [ 63.281250, 29.228890 ], [ 63.281250, 29.535230 ], [ 63.632812, 29.535230 ], [ 63.632812, 29.228890 ], [ 64.335938, 29.228890 ], [ 64.335938, 29.535230 ], [ 66.093750, 29.535230 ], [ 66.093750, 29.840644 ], [ 66.445312, 29.840644 ], [ 66.445312, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.353637 ], [ 67.851562, 31.353637 ], [ 67.851562, 31.653381 ], [ 69.257812, 31.653381 ], [ 69.257812, 32.842674 ], [ 69.609375, 32.842674 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.724340 ], [ 69.960938, 33.724340 ], [ 69.960938, 34.016242 ], [ 71.015625, 34.016242 ], [ 71.015625, 34.597042 ], [ 71.367188, 34.597042 ], [ 71.367188, 34.885931 ], [ 71.718750, 34.885931 ], [ 71.718750, 35.460670 ], [ 71.367188, 35.460670 ], [ 71.367188, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.597889 ], [ 73.828125, 36.597889 ], [ 73.828125, 36.879621 ], [ 74.531250, 36.879621 ], [ 74.531250, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.315125 ], [ 76.289062, 36.315125 ], [ 76.289062, 35.746512 ], [ 76.992188, 35.746512 ], [ 76.992188, 35.460670 ], [ 77.695312, 35.460670 ], [ 77.695312, 35.173808 ], [ 77.343750, 35.173808 ], [ 77.343750, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.885931 ], [ 74.179688, 34.885931 ], [ 74.179688, 34.597042 ], [ 73.828125, 34.597042 ], [ 73.828125, 33.724340 ], [ 74.179688, 33.724340 ], [ 74.179688, 33.137551 ], [ 74.531250, 33.137551 ], [ 74.531250, 32.546813 ], [ 74.882812, 32.546813 ], [ 74.882812, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 31.952162 ], [ 74.882812, 31.952162 ], [ 74.882812, 31.653381 ], [ 74.531250, 31.653381 ], [ 74.531250, 30.751278 ], [ 74.179688, 30.751278 ], [ 74.179688, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 29.840644 ], [ 73.476562, 29.840644 ], [ 73.476562, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.304381 ], [ 72.070312, 28.304381 ], [ 72.070312, 27.994401 ], [ 70.664062, 27.994401 ], [ 70.664062, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.745610 ], [ 69.960938, 26.745610 ], [ 69.960938, 26.431228 ], [ 70.312500, 26.431228 ], [ 70.312500, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.165173 ], [ 71.015625, 25.165173 ], [ 71.015625, 24.206890 ], [ 68.906250, 24.206890 ], [ 68.906250, 23.885838 ], [ 68.554688, 23.885838 ], [ 68.554688, 23.563987 ], [ 67.500000, 23.563987 ], [ 67.500000, 24.206890 ], [ 67.148438, 24.206890 ], [ 67.148438, 24.527135 ], [ 66.796875, 24.527135 ], [ 66.796875, 25.165173 ], [ 66.445312, 25.165173 ], [ 66.445312, 25.482951 ], [ 65.742188, 25.482951 ], [ 65.742188, 25.165173 ], [ 61.523438, 25.165173 ], [ 61.523438, 25.482951 ], [ 61.875000, 25.482951 ], [ 61.875000, 26.115986 ], [ 62.578125, 26.115986 ], [ 62.578125, 26.431228 ], [ 63.281250, 26.431228 ], [ 63.281250, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.683528 ], [ 62.578125, 27.683528 ], [ 62.578125, 28.304381 ], [ 61.875000, 28.304381 ], [ 61.875000, 28.921631 ], [ 61.523438, 28.921631 ], [ 61.523438, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ] ] ], [ [ [ 61.171875, 29.535230 ], [ 60.820312, 29.535230 ], [ 60.820312, 29.840644 ], [ 61.171875, 29.840644 ], [ 61.171875, 29.535230 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.960938, 34.016242 ], [ 70.664062, 34.016242 ], [ 70.664062, 34.307144 ], [ 71.015625, 34.307144 ], [ 71.015625, 34.885931 ], [ 71.367188, 34.885931 ], [ 71.367188, 36.031332 ], [ 71.015625, 36.031332 ], [ 71.015625, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 36.879621 ], [ 74.531250, 36.879621 ], [ 74.531250, 37.160317 ], [ 74.882812, 37.160317 ], [ 74.882812, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.315125 ], [ 75.937500, 36.315125 ], [ 75.937500, 36.031332 ], [ 76.640625, 36.031332 ], [ 76.640625, 35.746512 ], [ 77.695312, 35.746512 ], [ 77.695312, 35.460670 ], [ 77.343750, 35.460670 ], [ 77.343750, 35.173808 ], [ 76.992188, 35.173808 ], [ 76.992188, 34.885931 ], [ 76.289062, 34.885931 ], [ 76.289062, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.885931 ], [ 74.179688, 34.885931 ], [ 74.179688, 34.597042 ], [ 73.476562, 34.597042 ], [ 73.476562, 34.016242 ], [ 73.828125, 34.016242 ], [ 73.828125, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 32.842674 ], [ 74.531250, 32.842674 ], [ 74.531250, 32.546813 ], [ 75.234375, 32.546813 ], [ 75.234375, 32.249974 ], [ 74.531250, 32.249974 ], [ 74.531250, 31.952162 ], [ 74.179688, 31.952162 ], [ 74.179688, 30.751278 ], [ 73.828125, 30.751278 ], [ 73.828125, 30.448674 ], [ 73.476562, 30.448674 ], [ 73.476562, 30.145127 ], [ 73.125000, 30.145127 ], [ 73.125000, 29.535230 ], [ 72.773438, 29.535230 ], [ 72.773438, 28.921631 ], [ 72.421875, 28.921631 ], [ 72.421875, 28.613459 ], [ 72.070312, 28.613459 ], [ 72.070312, 27.994401 ], [ 70.312500, 27.994401 ], [ 70.312500, 27.683528 ], [ 69.960938, 27.683528 ], [ 69.960938, 27.371767 ], [ 69.609375, 27.371767 ], [ 69.609375, 27.059126 ], [ 69.257812, 27.059126 ], [ 69.257812, 26.745610 ], [ 69.960938, 26.745610 ], [ 69.960938, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 24.846565 ], [ 71.015625, 24.846565 ], [ 71.015625, 24.527135 ], [ 68.554688, 24.527135 ], [ 68.554688, 24.206890 ], [ 68.203125, 24.206890 ], [ 68.203125, 23.885838 ], [ 67.148438, 23.885838 ], [ 67.148438, 24.527135 ], [ 66.796875, 24.527135 ], [ 66.796875, 24.846565 ], [ 66.445312, 24.846565 ], [ 66.445312, 25.165173 ], [ 66.093750, 25.165173 ], [ 66.093750, 25.482951 ], [ 62.226562, 25.482951 ], [ 62.226562, 25.165173 ], [ 61.171875, 25.165173 ], [ 61.171875, 25.482951 ], [ 61.523438, 25.482951 ], [ 61.523438, 26.115986 ], [ 61.875000, 26.115986 ], [ 61.875000, 26.431228 ], [ 62.578125, 26.431228 ], [ 62.578125, 26.745610 ], [ 63.281250, 26.745610 ], [ 63.281250, 27.059126 ], [ 62.929688, 27.059126 ], [ 62.929688, 27.371767 ], [ 62.578125, 27.371767 ], [ 62.578125, 28.304381 ], [ 62.226562, 28.304381 ], [ 62.226562, 28.613459 ], [ 61.523438, 28.613459 ], [ 61.523438, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ], [ 65.390625, 29.535230 ], [ 65.390625, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 30.751278 ], [ 66.445312, 30.751278 ], [ 66.445312, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.353637 ], [ 67.500000, 31.353637 ], [ 67.500000, 31.653381 ], [ 68.203125, 31.653381 ], [ 68.203125, 31.952162 ], [ 68.554688, 31.952162 ], [ 68.554688, 31.653381 ], [ 69.257812, 31.653381 ], [ 69.257812, 32.842674 ], [ 69.609375, 32.842674 ], [ 69.609375, 33.137551 ], [ 70.312500, 33.137551 ], [ 70.312500, 33.431441 ], [ 69.960938, 33.431441 ], [ 69.960938, 34.016242 ] ] ], [ [ [ 61.171875, 29.535230 ], [ 60.820312, 29.535230 ], [ 60.820312, 29.840644 ], [ 61.171875, 29.840644 ], [ 61.171875, 29.535230 ] ] ], [ [ [ 69.960938, 34.016242 ], [ 69.609375, 34.016242 ], [ 69.609375, 34.307144 ], [ 69.960938, 34.307144 ], [ 69.960938, 34.016242 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.265625, 30.145127 ], [ 82.265625, 29.840644 ], [ 82.968750, 29.840644 ], [ 82.968750, 29.535230 ], [ 83.320312, 29.535230 ], [ 83.320312, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.375000, 28.921631 ], [ 84.375000, 28.613459 ], [ 85.078125, 28.613459 ], [ 85.078125, 28.304381 ], [ 86.132812, 28.304381 ], [ 86.132812, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 27.059126 ], [ 88.242188, 27.059126 ], [ 88.242188, 26.431228 ], [ 86.484375, 26.431228 ], [ 86.484375, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.371767 ], [ 82.617188, 27.371767 ], [ 82.617188, 27.683528 ], [ 81.914062, 27.683528 ], [ 81.914062, 27.994401 ], [ 81.210938, 27.994401 ], [ 81.210938, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 28.613459 ], [ 80.156250, 28.613459 ], [ 80.156250, 29.228890 ], [ 80.507812, 29.228890 ], [ 80.507812, 29.840644 ], [ 81.210938, 29.840644 ], [ 81.210938, 30.145127 ], [ 82.265625, 30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 30.448674 ], [ 81.562500, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.840644 ], [ 82.968750, 29.840644 ], [ 82.968750, 29.535230 ], [ 83.671875, 29.535230 ], [ 83.671875, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.726562, 28.921631 ], [ 84.726562, 28.613459 ], [ 85.429688, 28.613459 ], [ 85.429688, 28.304381 ], [ 86.132812, 28.304381 ], [ 86.132812, 27.994401 ], [ 87.890625, 27.994401 ], [ 87.890625, 26.431228 ], [ 86.132812, 26.431228 ], [ 86.132812, 26.745610 ], [ 84.726562, 26.745610 ], [ 84.726562, 27.059126 ], [ 84.375000, 27.059126 ], [ 84.375000, 27.371767 ], [ 82.617188, 27.371767 ], [ 82.617188, 27.683528 ], [ 81.914062, 27.683528 ], [ 81.914062, 27.994401 ], [ 81.562500, 27.994401 ], [ 81.562500, 28.304381 ], [ 80.859375, 28.304381 ], [ 80.859375, 28.613459 ], [ 80.156250, 28.613459 ], [ 80.156250, 28.921631 ], [ 79.804688, 28.921631 ], [ 79.804688, 29.228890 ], [ 80.156250, 29.228890 ], [ 80.156250, 29.840644 ], [ 80.507812, 29.840644 ], [ 80.507812, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.448674 ], [ 81.562500, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.046875, 35.173808 ], [ 78.046875, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 33.137551 ], [ 79.101562, 33.137551 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 31.952162 ], [ 78.750000, 31.952162 ], [ 78.750000, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.052934 ], [ 79.453125, 31.052934 ], [ 79.453125, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.448674 ], [ 80.507812, 30.448674 ], [ 80.507812, 30.145127 ], [ 81.210938, 30.145127 ], [ 81.210938, 29.840644 ], [ 80.507812, 29.840644 ], [ 80.507812, 29.228890 ], [ 80.156250, 29.228890 ], [ 80.156250, 28.613459 ], [ 80.859375, 28.613459 ], [ 80.859375, 28.304381 ], [ 81.210938, 28.304381 ], [ 81.210938, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.371767 ], [ 84.726562, 27.371767 ], [ 84.726562, 27.059126 ], [ 85.078125, 27.059126 ], [ 85.078125, 26.745610 ], [ 86.484375, 26.745610 ], [ 86.484375, 26.431228 ], [ 88.242188, 26.431228 ], [ 88.242188, 27.059126 ], [ 87.890625, 27.059126 ], [ 87.890625, 27.683528 ], [ 88.242188, 27.683528 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.683528 ], [ 88.945312, 27.683528 ], [ 88.945312, 26.745610 ], [ 91.757812, 26.745610 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 23.241346 ], [ 88.945312, 23.241346 ], [ 88.945312, 21.616579 ], [ 86.835938, 21.616579 ], [ 86.835938, 20.961440 ], [ 87.187500, 20.961440 ], [ 87.187500, 20.303418 ], [ 86.484375, 20.303418 ], [ 86.484375, 19.973349 ], [ 85.781250, 19.973349 ], [ 85.781250, 19.642588 ], [ 85.078125, 19.642588 ], [ 85.078125, 19.311143 ], [ 84.726562, 19.311143 ], [ 84.726562, 18.979026 ], [ 84.375000, 18.979026 ], [ 84.375000, 18.312811 ], [ 84.023438, 18.312811 ], [ 84.023438, 17.978733 ], [ 83.671875, 17.978733 ], [ 83.671875, 17.644022 ], [ 83.320312, 17.644022 ], [ 83.320312, 17.308688 ], [ 82.617188, 17.308688 ], [ 82.617188, 16.972741 ], [ 82.265625, 16.972741 ], [ 82.265625, 16.299051 ], [ 81.562500, 16.299051 ], [ 81.562500, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 12.554564 ], [ 79.804688, 12.554564 ], [ 79.804688, 10.141932 ], [ 79.453125, 10.141932 ], [ 79.453125, 9.795678 ], [ 79.101562, 9.795678 ], [ 79.101562, 9.449062 ], [ 78.750000, 9.449062 ], [ 78.750000, 9.102097 ], [ 78.398438, 9.102097 ], [ 78.398438, 8.754795 ], [ 78.046875, 8.754795 ], [ 78.046875, 8.059230 ], [ 77.343750, 8.059230 ], [ 77.343750, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 9.449062 ], [ 76.289062, 9.449062 ], [ 76.289062, 10.141932 ], [ 75.937500, 10.141932 ], [ 75.937500, 10.833306 ], [ 75.585938, 10.833306 ], [ 75.585938, 11.523088 ], [ 75.234375, 11.523088 ], [ 75.234375, 12.211180 ], [ 74.882812, 12.211180 ], [ 74.882812, 13.239945 ], [ 74.531250, 13.239945 ], [ 74.531250, 14.604847 ], [ 74.179688, 14.604847 ], [ 74.179688, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.623037 ], [ 73.476562, 15.623037 ], [ 73.476562, 16.972741 ], [ 73.125000, 16.972741 ], [ 73.125000, 18.646245 ], [ 72.773438, 18.646245 ], [ 72.773438, 21.289374 ], [ 72.421875, 21.289374 ], [ 72.421875, 20.961440 ], [ 71.718750, 20.961440 ], [ 71.718750, 20.632784 ], [ 70.312500, 20.632784 ], [ 70.312500, 20.961440 ], [ 69.960938, 20.961440 ], [ 69.960938, 21.289374 ], [ 69.609375, 21.289374 ], [ 69.609375, 21.616579 ], [ 69.257812, 21.616579 ], [ 69.257812, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.593726 ], [ 69.257812, 22.917923 ], [ 68.906250, 22.917923 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.563987 ], [ 68.554688, 23.563987 ], [ 68.554688, 23.885838 ], [ 68.906250, 23.885838 ], [ 68.906250, 24.206890 ], [ 71.015625, 24.206890 ], [ 71.015625, 25.165173 ], [ 70.664062, 25.165173 ], [ 70.664062, 25.482951 ], [ 70.312500, 25.482951 ], [ 70.312500, 26.431228 ], [ 69.960938, 26.431228 ], [ 69.960938, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 27.059126 ], [ 69.960938, 27.059126 ], [ 69.960938, 27.371767 ], [ 70.312500, 27.371767 ], [ 70.312500, 27.683528 ], [ 70.664062, 27.683528 ], [ 70.664062, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.304381 ], [ 72.421875, 28.304381 ], [ 72.421875, 28.613459 ], [ 72.773438, 28.613459 ], [ 72.773438, 28.921631 ], [ 73.125000, 28.921631 ], [ 73.125000, 29.535230 ], [ 73.476562, 29.535230 ], [ 73.476562, 29.840644 ], [ 73.828125, 29.840644 ], [ 73.828125, 30.448674 ], [ 74.179688, 30.448674 ], [ 74.179688, 30.751278 ], [ 74.531250, 30.751278 ], [ 74.531250, 31.653381 ], [ 74.882812, 31.653381 ], [ 74.882812, 31.952162 ], [ 75.234375, 31.952162 ], [ 75.234375, 32.249974 ], [ 74.882812, 32.249974 ], [ 74.882812, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 33.724340 ], [ 73.828125, 33.724340 ], [ 73.828125, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.885931 ], [ 74.531250, 34.885931 ], [ 74.531250, 34.597042 ], [ 77.343750, 34.597042 ], [ 77.343750, 35.173808 ], [ 78.046875, 35.173808 ] ] ], [ [ [ 91.757812, 24.206890 ], [ 91.757812, 22.917923 ], [ 91.406250, 22.917923 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 91.757812, 24.206890 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.046875, 35.460670 ], [ 78.046875, 35.173808 ], [ 78.398438, 35.173808 ], [ 78.398438, 34.597042 ], [ 78.750000, 34.597042 ], [ 78.750000, 33.431441 ], [ 79.101562, 33.431441 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.052934 ], [ 79.453125, 31.052934 ], [ 79.453125, 30.751278 ], [ 80.156250, 30.751278 ], [ 80.156250, 30.448674 ], [ 80.859375, 30.448674 ], [ 80.859375, 30.145127 ], [ 80.507812, 30.145127 ], [ 80.507812, 29.840644 ], [ 80.156250, 29.840644 ], [ 80.156250, 29.228890 ], [ 79.804688, 29.228890 ], [ 79.804688, 28.921631 ], [ 80.156250, 28.921631 ], [ 80.156250, 28.613459 ], [ 80.859375, 28.613459 ], [ 80.859375, 28.304381 ], [ 81.562500, 28.304381 ], [ 81.562500, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.371767 ], [ 84.375000, 27.371767 ], [ 84.375000, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 26.745610 ], [ 86.132812, 26.745610 ], [ 86.132812, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.059126 ], [ 89.296875, 27.059126 ], [ 89.296875, 26.745610 ], [ 90.351562, 26.745610 ], [ 90.351562, 27.059126 ], [ 91.757812, 27.059126 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 25.482951 ], [ 89.648438, 25.482951 ], [ 89.648438, 26.115986 ], [ 88.945312, 26.115986 ], [ 88.945312, 26.431228 ], [ 88.242188, 26.431228 ], [ 88.242188, 26.115986 ], [ 87.890625, 26.115986 ], [ 87.890625, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.242188, 25.165173 ], [ 88.242188, 24.846565 ], [ 87.890625, 24.846565 ], [ 87.890625, 24.527135 ], [ 88.593750, 24.527135 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.945312, 22.593726 ], [ 88.945312, 21.943046 ], [ 87.539062, 21.943046 ], [ 87.539062, 21.616579 ], [ 86.835938, 21.616579 ], [ 86.835938, 20.632784 ], [ 86.484375, 20.632784 ], [ 86.484375, 20.303418 ], [ 86.132812, 20.303418 ], [ 86.132812, 19.973349 ], [ 85.429688, 19.973349 ], [ 85.429688, 19.642588 ], [ 84.726562, 19.642588 ], [ 84.726562, 19.311143 ], [ 84.375000, 19.311143 ], [ 84.375000, 18.979026 ], [ 84.023438, 18.979026 ], [ 84.023438, 18.312811 ], [ 83.671875, 18.312811 ], [ 83.671875, 17.978733 ], [ 82.968750, 17.978733 ], [ 82.968750, 17.644022 ], [ 82.265625, 17.644022 ], [ 82.265625, 17.308688 ], [ 81.914062, 17.308688 ], [ 81.914062, 16.636192 ], [ 81.562500, 16.636192 ], [ 81.562500, 16.299051 ], [ 80.859375, 16.299051 ], [ 80.859375, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 15.623037 ], [ 79.804688, 15.623037 ], [ 79.804688, 14.604847 ], [ 80.156250, 14.604847 ], [ 80.156250, 12.554564 ], [ 79.804688, 12.554564 ], [ 79.804688, 10.487812 ], [ 79.101562, 10.487812 ], [ 79.101562, 10.141932 ], [ 78.750000, 10.141932 ], [ 78.750000, 9.102097 ], [ 78.046875, 9.102097 ], [ 78.046875, 8.754795 ], [ 77.695312, 8.754795 ], [ 77.695312, 8.059230 ], [ 76.992188, 8.059230 ], [ 76.992188, 8.407168 ], [ 76.640625, 8.407168 ], [ 76.640625, 8.754795 ], [ 76.289062, 8.754795 ], [ 76.289062, 9.795678 ], [ 75.937500, 9.795678 ], [ 75.937500, 10.833306 ], [ 75.585938, 10.833306 ], [ 75.585938, 11.523088 ], [ 75.234375, 11.523088 ], [ 75.234375, 11.867351 ], [ 74.882812, 11.867351 ], [ 74.882812, 12.554564 ], [ 74.531250, 12.554564 ], [ 74.531250, 14.604847 ], [ 74.179688, 14.604847 ], [ 74.179688, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.961329 ], [ 73.476562, 15.961329 ], [ 73.476562, 16.636192 ], [ 73.125000, 16.636192 ], [ 73.125000, 17.308688 ], [ 72.773438, 17.308688 ], [ 72.773438, 20.961440 ], [ 72.421875, 20.961440 ], [ 72.421875, 21.289374 ], [ 71.718750, 21.289374 ], [ 71.718750, 20.961440 ], [ 69.960938, 20.961440 ], [ 69.960938, 21.289374 ], [ 69.609375, 21.289374 ], [ 69.609375, 21.616579 ], [ 69.257812, 21.616579 ], [ 69.257812, 21.943046 ], [ 68.906250, 21.943046 ], [ 68.906250, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.593726 ], [ 69.257812, 22.917923 ], [ 68.906250, 22.917923 ], [ 68.906250, 23.241346 ], [ 68.203125, 23.241346 ], [ 68.203125, 23.563987 ], [ 67.851562, 23.563987 ], [ 67.851562, 23.885838 ], [ 68.203125, 23.885838 ], [ 68.203125, 24.206890 ], [ 68.554688, 24.206890 ], [ 68.554688, 24.527135 ], [ 71.015625, 24.527135 ], [ 71.015625, 24.846565 ], [ 70.664062, 24.846565 ], [ 70.664062, 25.482951 ], [ 69.960938, 25.482951 ], [ 69.960938, 26.745610 ], [ 69.257812, 26.745610 ], [ 69.257812, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 30.145127 ], [ 73.476562, 30.145127 ], [ 73.476562, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 30.751278 ], [ 74.179688, 30.751278 ], [ 74.179688, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 32.842674 ], [ 74.179688, 32.842674 ], [ 74.179688, 33.137551 ], [ 73.828125, 33.137551 ], [ 73.828125, 34.016242 ], [ 73.476562, 34.016242 ], [ 73.476562, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.885931 ], [ 74.531250, 34.885931 ], [ 74.531250, 34.597042 ], [ 76.289062, 34.597042 ], [ 76.289062, 34.885931 ], [ 76.992188, 34.885931 ], [ 76.992188, 35.173808 ], [ 77.343750, 35.173808 ], [ 77.343750, 35.460670 ], [ 78.046875, 35.460670 ] ] ], [ [ [ 91.757812, 24.206890 ], [ 91.757812, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 91.757812, 24.206890 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.507812, 9.449062 ], [ 80.507812, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.754795 ], [ 81.210938, 8.754795 ], [ 81.210938, 8.059230 ], [ 81.562500, 8.059230 ], [ 81.562500, 7.362467 ], [ 81.914062, 7.362467 ], [ 81.914062, 6.664608 ], [ 81.562500, 6.664608 ], [ 81.562500, 6.315299 ], [ 81.210938, 6.315299 ], [ 81.210938, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.804688, 6.315299 ], [ 79.804688, 8.754795 ], [ 80.156250, 8.754795 ], [ 80.156250, 9.449062 ], [ 80.507812, 9.449062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.156250, 9.449062 ], [ 80.507812, 9.449062 ], [ 80.507812, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.754795 ], [ 81.210938, 8.754795 ], [ 81.210938, 8.059230 ], [ 81.562500, 8.059230 ], [ 81.562500, 6.315299 ], [ 80.859375, 6.315299 ], [ 80.859375, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.804688, 6.315299 ], [ 79.804688, 7.710992 ], [ 79.453125, 7.710992 ], [ 79.453125, 9.102097 ], [ 79.804688, 9.102097 ], [ 79.804688, 9.795678 ], [ 80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.513427 ], [ 91.757812, 45.089036 ], [ 91.054688, 45.089036 ], [ 91.054688, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 46.316584 ], [ 91.054688, 46.316584 ], [ 91.054688, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 48.458352 ], [ 87.890625, 48.458352 ], [ 87.890625, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.610710 ], [ 89.648438, 49.610710 ], [ 89.648438, 49.837982 ], [ 90.351562, 49.837982 ], [ 90.351562, 50.064192 ], [ 90.703125, 50.064192 ], [ 90.703125, 50.289339 ], [ 91.054688, 50.289339 ], [ 91.054688, 50.513427 ], [ 91.757812, 50.513427 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.736455 ], [ 91.757812, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.351562, 45.583290 ], [ 90.351562, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 47.040182 ], [ 90.351562, 47.040182 ], [ 90.351562, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 48.458352 ], [ 87.890625, 48.458352 ], [ 87.890625, 48.922499 ], [ 87.539062, 48.922499 ], [ 87.539062, 49.382373 ], [ 88.242188, 49.382373 ], [ 88.242188, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 50.064192 ], [ 90.000000, 50.064192 ], [ 90.000000, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.736455 ], [ 91.757812, 50.736455 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 26.745610 ], [ 88.945312, 26.745610 ], [ 88.945312, 27.371767 ], [ 89.296875, 27.371767 ], [ 89.296875, 27.683528 ], [ 89.648438, 27.683528 ], [ 89.648438, 27.994401 ], [ 91.406250, 27.994401 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.054688, 28.304381 ], [ 91.054688, 27.994401 ], [ 91.757812, 27.994401 ], [ 91.757812, 27.059126 ], [ 90.351562, 27.059126 ], [ 90.351562, 26.745610 ], [ 89.296875, 26.745610 ], [ 89.296875, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 28.304381 ], [ 91.054688, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.945312, 21.943046 ], [ 88.945312, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.846565 ], [ 88.945312, 24.846565 ], [ 88.945312, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.115986 ], [ 90.000000, 26.115986 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 22.917923 ] ] ], [ [ [ 91.406250, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.945312, 26.431228 ], [ 88.945312, 26.115986 ], [ 89.648438, 26.115986 ], [ 89.648438, 25.482951 ], [ 90.000000, 25.482951 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.757812, 23.241346 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.268764 ], [ 90.000000, 22.268764 ], [ 90.000000, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.268764 ], [ 88.945312, 22.268764 ], [ 88.945312, 22.593726 ], [ 88.593750, 22.593726 ], [ 88.593750, 23.241346 ], [ 88.242188, 23.241346 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 24.527135 ], [ 87.890625, 24.527135 ], [ 87.890625, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 87.890625, 25.482951 ], [ 87.890625, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 26.431228 ], [ 88.945312, 26.431228 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.890625, 49.152970 ], [ 87.890625, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.351562, 47.754098 ], [ 90.351562, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 47.040182 ], [ 91.054688, 47.040182 ], [ 91.054688, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.583290 ], [ 91.054688, 45.583290 ], [ 91.054688, 45.089036 ], [ 91.757812, 45.089036 ], [ 91.757812, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 27.994401 ], [ 86.132812, 27.994401 ], [ 86.132812, 28.304381 ], [ 85.078125, 28.304381 ], [ 85.078125, 28.613459 ], [ 84.375000, 28.613459 ], [ 84.375000, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.320312, 29.228890 ], [ 83.320312, 29.535230 ], [ 82.968750, 29.535230 ], [ 82.968750, 29.840644 ], [ 82.265625, 29.840644 ], [ 82.265625, 30.145127 ], [ 80.507812, 30.145127 ], [ 80.507812, 30.448674 ], [ 79.804688, 30.448674 ], [ 79.804688, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 31.052934 ], [ 79.101562, 31.052934 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.952162 ], [ 78.398438, 31.952162 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.137551 ], [ 78.750000, 33.137551 ], [ 78.750000, 34.307144 ], [ 78.398438, 34.307144 ], [ 78.398438, 34.885931 ], [ 78.046875, 34.885931 ], [ 78.046875, 35.173808 ], [ 77.695312, 35.173808 ], [ 77.695312, 35.460670 ], [ 76.992188, 35.460670 ], [ 76.992188, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 36.315125 ], [ 75.937500, 36.315125 ], [ 75.937500, 36.597889 ], [ 75.585938, 36.597889 ], [ 75.585938, 36.879621 ], [ 75.234375, 36.879621 ], [ 75.234375, 37.160317 ], [ 74.882812, 37.160317 ], [ 74.882812, 38.272689 ], [ 74.179688, 38.272689 ], [ 74.179688, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.828125, 39.909736 ], [ 74.179688, 39.909736 ], [ 74.179688, 40.178873 ], [ 74.882812, 40.178873 ], [ 74.882812, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.992188, 40.713956 ], [ 76.992188, 40.979898 ], [ 77.695312, 40.979898 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 79.101562, 41.508577 ], [ 79.101562, 41.771312 ], [ 79.804688, 41.771312 ], [ 79.804688, 42.032974 ], [ 80.156250, 42.032974 ], [ 80.156250, 42.811522 ], [ 80.859375, 42.811522 ], [ 80.859375, 43.325178 ], [ 80.507812, 43.325178 ], [ 80.507812, 43.834527 ], [ 80.156250, 43.834527 ], [ 80.156250, 44.339565 ], [ 79.804688, 44.339565 ], [ 79.804688, 44.840291 ], [ 80.507812, 44.840291 ], [ 80.507812, 45.089036 ], [ 81.562500, 45.089036 ], [ 81.562500, 45.336702 ], [ 82.617188, 45.336702 ], [ 82.617188, 45.828799 ], [ 82.968750, 45.828799 ], [ 82.968750, 46.800059 ], [ 83.320312, 46.800059 ], [ 83.320312, 47.279229 ], [ 84.023438, 47.279229 ], [ 84.023438, 47.040182 ], [ 85.429688, 47.040182 ], [ 85.429688, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.835938, 48.458352 ], [ 86.835938, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.890625, 49.152970 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.539062, 49.382373 ], [ 87.539062, 48.922499 ], [ 87.890625, 48.922499 ], [ 87.890625, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 46.316584 ], [ 90.351562, 46.316584 ], [ 90.351562, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 91.757812, 45.336702 ], [ 91.757812, 27.994401 ], [ 91.054688, 27.994401 ], [ 91.054688, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.994401 ], [ 88.945312, 27.994401 ], [ 88.945312, 27.371767 ], [ 88.593750, 27.371767 ], [ 88.593750, 27.994401 ], [ 86.132812, 27.994401 ], [ 86.132812, 28.304381 ], [ 85.429688, 28.304381 ], [ 85.429688, 28.613459 ], [ 84.726562, 28.613459 ], [ 84.726562, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.671875, 29.228890 ], [ 83.671875, 29.535230 ], [ 82.968750, 29.535230 ], [ 82.968750, 29.840644 ], [ 82.265625, 29.840644 ], [ 82.265625, 30.145127 ], [ 81.562500, 30.145127 ], [ 81.562500, 30.448674 ], [ 80.156250, 30.448674 ], [ 80.156250, 30.751278 ], [ 79.453125, 30.751278 ], [ 79.453125, 31.052934 ], [ 79.101562, 31.052934 ], [ 79.101562, 31.353637 ], [ 78.398438, 31.353637 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 34.597042 ], [ 78.398438, 34.597042 ], [ 78.398438, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 35.460670 ], [ 77.695312, 35.460670 ], [ 77.695312, 35.746512 ], [ 76.640625, 35.746512 ], [ 76.640625, 36.031332 ], [ 75.937500, 36.031332 ], [ 75.937500, 36.315125 ], [ 75.585938, 36.315125 ], [ 75.585938, 36.879621 ], [ 74.882812, 36.879621 ], [ 74.882812, 37.718590 ], [ 74.531250, 37.718590 ], [ 74.531250, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.828125, 39.095963 ], [ 73.476562, 39.095963 ], [ 73.476562, 39.639538 ], [ 73.828125, 39.639538 ], [ 73.828125, 40.178873 ], [ 74.531250, 40.178873 ], [ 74.531250, 40.446947 ], [ 75.234375, 40.446947 ], [ 75.234375, 40.713956 ], [ 75.585938, 40.713956 ], [ 75.585938, 40.446947 ], [ 76.289062, 40.446947 ], [ 76.289062, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 41.244772 ], [ 78.046875, 41.244772 ], [ 78.046875, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.771312 ], [ 79.101562, 41.771312 ], [ 79.101562, 42.032974 ], [ 79.804688, 42.032974 ], [ 79.804688, 42.293564 ], [ 80.156250, 42.293564 ], [ 80.156250, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.580391 ], [ 80.507812, 43.580391 ], [ 80.507812, 44.087585 ], [ 80.156250, 44.087585 ], [ 80.156250, 44.590467 ], [ 79.804688, 44.590467 ], [ 79.804688, 45.089036 ], [ 81.210938, 45.089036 ], [ 81.210938, 45.336702 ], [ 82.265625, 45.336702 ], [ 82.265625, 46.073231 ], [ 82.617188, 46.073231 ], [ 82.617188, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 47.517201 ], [ 83.320312, 47.517201 ], [ 83.320312, 47.279229 ], [ 84.375000, 47.279229 ], [ 84.375000, 47.040182 ], [ 85.078125, 47.040182 ], [ 85.078125, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 48.458352 ], [ 86.132812, 48.458352 ], [ 86.132812, 48.690960 ], [ 86.835938, 48.690960 ], [ 86.835938, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.382373 ], [ 87.539062, 49.382373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.108899 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.054628 ], [ 14.414062, 1.054628 ], [ 14.414062, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, -0.351560 ], [ 14.062500, -0.351560 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, -0.703107 ], [ 9.140625, -0.703107 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.108899 ], [ 13.007812, 2.108899 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.460181 ], [ 13.007812, 2.108899 ], [ 12.656250, 2.108899 ], [ 12.656250, 1.757537 ], [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 0.703107 ], [ 13.710938, 0.703107 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -1.406109 ], [ 14.062500, -1.406109 ], [ 14.062500, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.406109 ], [ 8.789062, -1.406109 ], [ 8.789062, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.406109 ], [ 11.250000, 1.406109 ], [ 11.250000, 2.460181 ], [ 13.007812, 2.460181 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.281250, 3.513421 ], [ 18.281250, 2.460181 ], [ 17.929688, 2.460181 ], [ 17.929688, 0.000000 ], [ 17.578125, 0.000000 ], [ 17.578125, -1.054628 ], [ 16.875000, -1.054628 ], [ 16.875000, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, -0.351560 ], [ 13.710938, -0.351560 ], [ 13.710938, 0.000000 ], [ 14.062500, 0.000000 ], [ 14.062500, 0.703107 ], [ 14.414062, 0.703107 ], [ 14.414062, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.757537 ], [ 16.171875, 1.757537 ], [ 16.171875, 2.460181 ], [ 16.523438, 2.460181 ], [ 16.523438, 3.162456 ], [ 16.875000, 3.162456 ], [ 16.875000, 3.513421 ], [ 18.281250, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.578125, 3.864255 ], [ 17.578125, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 2.811371 ], [ 17.929688, 2.811371 ], [ 17.929688, 2.108899 ], [ 17.578125, 2.108899 ], [ 17.578125, -0.703107 ], [ 17.226562, -0.703107 ], [ 17.226562, -1.054628 ], [ 16.523438, -1.054628 ], [ 16.523438, -1.406109 ], [ 16.171875, -1.406109 ], [ 16.171875, -1.757537 ], [ 14.062500, -1.757537 ], [ 14.062500, -1.406109 ], [ 14.414062, -1.406109 ], [ 14.414062, -0.703107 ], [ 14.062500, -0.703107 ], [ 14.062500, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 12.656250, 1.757537 ], [ 12.656250, 2.108899 ], [ 13.007812, 2.108899 ], [ 13.007812, 2.460181 ], [ 14.414062, 2.460181 ], [ 14.414062, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.757537 ], [ 15.820312, 1.757537 ], [ 15.820312, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.864255 ], [ 17.578125, 3.864255 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 5.266008 ], [ 27.421875, 4.915833 ], [ 27.773438, 4.915833 ], [ 27.773438, 4.565474 ], [ 28.125000, 4.565474 ], [ 28.125000, 4.214943 ], [ 29.882812, 4.214943 ], [ 29.882812, 3.864255 ], [ 30.585938, 3.864255 ], [ 30.585938, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 2.108899 ], [ 31.289062, 2.108899 ], [ 31.289062, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.703107 ], [ 29.531250, -0.703107 ], [ 29.531250, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.054628 ], [ 17.578125, -1.054628 ], [ 17.578125, 0.000000 ], [ 17.929688, 0.000000 ], [ 17.929688, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 3.864255 ], [ 18.632812, 3.864255 ], [ 18.632812, 4.214943 ], [ 18.984375, 4.214943 ], [ 18.984375, 4.565474 ], [ 19.335938, 4.565474 ], [ 19.335938, 4.915833 ], [ 19.687500, 4.915833 ], [ 19.687500, 4.565474 ], [ 20.390625, 4.565474 ], [ 20.390625, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 3.864255 ], [ 22.500000, 3.864255 ], [ 22.500000, 4.214943 ], [ 22.851562, 4.214943 ], [ 22.851562, 4.565474 ], [ 23.554688, 4.565474 ], [ 23.554688, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.266008 ], [ 27.421875, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 5.266008 ], [ 27.070312, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 4.565474 ], [ 29.882812, 4.565474 ], [ 29.882812, 3.864255 ], [ 30.234375, 3.864255 ], [ 30.234375, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 2.460181 ], [ 30.937500, 2.460181 ], [ 30.937500, 2.108899 ], [ 30.585938, 2.108899 ], [ 30.585938, 1.757537 ], [ 30.234375, 1.757537 ], [ 30.234375, 1.406109 ], [ 29.882812, 1.406109 ], [ 29.882812, 1.054628 ], [ 29.531250, 1.054628 ], [ 29.531250, -1.406109 ], [ 29.179688, -1.406109 ], [ 29.179688, -1.757537 ], [ 16.171875, -1.757537 ], [ 16.171875, -1.406109 ], [ 16.523438, -1.406109 ], [ 16.523438, -1.054628 ], [ 17.226562, -1.054628 ], [ 17.226562, -0.703107 ], [ 17.578125, -0.703107 ], [ 17.578125, 2.108899 ], [ 17.929688, 2.108899 ], [ 17.929688, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 4.565474 ], [ 18.632812, 4.565474 ], [ 18.632812, 4.915833 ], [ 20.039062, 4.915833 ], [ 20.039062, 4.565474 ], [ 21.445312, 4.565474 ], [ 21.445312, 4.214943 ], [ 22.148438, 4.214943 ], [ 22.148438, 4.565474 ], [ 22.500000, 4.565474 ], [ 22.500000, 4.915833 ], [ 23.906250, 4.915833 ], [ 23.906250, 5.266008 ], [ 24.257812, 5.266008 ], [ 24.257812, 4.915833 ], [ 24.960938, 4.915833 ], [ 24.960938, 5.266008 ], [ 27.070312, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, -1.406109 ], [ 30.937500, -1.757537 ], [ 29.531250, -1.757537 ], [ 29.531250, -1.406109 ], [ 30.937500, -1.406109 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.406109 ], [ 30.585938, -1.757537 ], [ 29.179688, -1.757537 ], [ 29.179688, -1.406109 ], [ 30.585938, -1.406109 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, -1.054628 ], [ 34.101562, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.757537 ], [ 30.937500, -1.757537 ], [ 30.937500, -1.406109 ], [ 30.585938, -1.406109 ], [ 30.585938, -1.054628 ], [ 34.101562, -1.054628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.703107 ], [ 33.750000, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -1.757537 ], [ 30.585938, -1.757537 ], [ 30.585938, -1.406109 ], [ 30.234375, -1.406109 ], [ 30.234375, -1.054628 ], [ 30.585938, -1.054628 ], [ 30.585938, -0.703107 ], [ 33.750000, -0.703107 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.343750, 69.778952 ], [ 32.343750, 69.657086 ], [ 32.695312, 69.657086 ], [ 32.695312, 69.534518 ], [ 33.046875, 69.534518 ], [ 33.046875, 69.411242 ], [ 33.398438, 69.411242 ], [ 33.398438, 69.287257 ], [ 34.101562, 69.287257 ], [ 34.101562, 69.162558 ], [ 35.507812, 69.162558 ], [ 35.507812, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.911005 ], [ 36.914062, 68.911005 ], [ 36.914062, 68.784144 ], [ 37.617188, 68.784144 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.269387 ], [ 39.023438, 68.269387 ], [ 39.023438, 68.138852 ], [ 39.726562, 68.138852 ], [ 39.726562, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.781250, 67.742759 ], [ 40.781250, 67.474922 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.429688, 66.513260 ], [ 40.429688, 66.231457 ], [ 39.726562, 66.231457 ], [ 39.726562, 66.089364 ], [ 39.023438, 66.089364 ], [ 39.023438, 65.946472 ], [ 37.617188, 65.946472 ], [ 37.617188, 66.089364 ], [ 36.914062, 66.089364 ], [ 36.914062, 66.231457 ], [ 36.210938, 66.231457 ], [ 36.210938, 66.372755 ], [ 35.507812, 66.372755 ], [ 35.507812, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 65.802776 ], [ 30.234375, 65.802776 ], [ 30.234375, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 67.067433 ], [ 29.531250, 67.067433 ], [ 29.531250, 67.474922 ], [ 29.882812, 67.474922 ], [ 29.882812, 67.742759 ], [ 29.531250, 67.742759 ], [ 29.531250, 67.875541 ], [ 29.179688, 67.875541 ], [ 29.179688, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 69.037142 ], [ 29.179688, 69.037142 ], [ 29.179688, 69.162558 ], [ 29.882812, 69.162558 ], [ 29.882812, 69.287257 ], [ 30.585938, 69.287257 ], [ 30.585938, 69.411242 ], [ 30.937500, 69.411242 ], [ 30.937500, 69.534518 ], [ 31.289062, 69.534518 ], [ 31.289062, 69.657086 ], [ 31.640625, 69.657086 ], [ 31.640625, 69.778952 ], [ 32.343750, 69.778952 ] ] ], [ [ [ 81.210938, 71.856229 ], [ 81.210938, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 72.395706 ], [ 80.507812, 72.395706 ], [ 80.507812, 73.627789 ], [ 81.210938, 73.627789 ], [ 81.210938, 73.726595 ], [ 81.914062, 73.726595 ], [ 81.914062, 73.824820 ], [ 86.132812, 73.824820 ], [ 86.132812, 73.922469 ], [ 86.835938, 73.922469 ], [ 86.835938, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.307353 ], [ 86.132812, 74.307353 ], [ 86.132812, 74.590108 ], [ 86.484375, 74.590108 ], [ 86.484375, 74.775843 ], [ 86.835938, 74.775843 ], [ 86.835938, 74.959392 ], [ 87.187500, 74.959392 ], [ 87.187500, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.406250, 75.672197 ], [ 91.406250, 75.758940 ], [ 91.757812, 75.758940 ], [ 91.757812, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.089364 ], [ 41.484375, 66.089364 ], [ 41.484375, 66.231457 ], [ 41.835938, 66.231457 ], [ 41.835938, 66.372755 ], [ 42.890625, 66.372755 ], [ 42.890625, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.231457 ], [ 44.296875, 66.231457 ], [ 44.296875, 66.513260 ], [ 44.648438, 66.513260 ], [ 44.648438, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.593750, 67.204032 ], [ 43.593750, 67.474922 ], [ 43.945312, 67.474922 ], [ 43.945312, 67.742759 ], [ 44.296875, 67.742759 ], [ 44.296875, 68.138852 ], [ 43.945312, 68.138852 ], [ 43.945312, 68.399180 ], [ 45.351562, 68.399180 ], [ 45.351562, 68.269387 ], [ 46.406250, 68.269387 ], [ 46.406250, 68.007571 ], [ 46.757812, 68.007571 ], [ 46.757812, 67.742759 ], [ 46.406250, 67.742759 ], [ 46.406250, 67.609221 ], [ 45.703125, 67.609221 ], [ 45.703125, 66.930060 ], [ 46.054688, 66.930060 ], [ 46.054688, 66.652977 ], [ 47.109375, 66.652977 ], [ 47.109375, 66.791909 ], [ 47.812500, 66.791909 ], [ 47.812500, 67.204032 ], [ 48.164062, 67.204032 ], [ 48.164062, 67.474922 ], [ 48.515625, 67.474922 ], [ 48.515625, 67.609221 ], [ 49.218750, 67.609221 ], [ 49.218750, 67.742759 ], [ 49.570312, 67.742759 ], [ 49.570312, 67.875541 ], [ 50.273438, 67.875541 ], [ 50.273438, 68.007571 ], [ 50.625000, 68.007571 ], [ 50.625000, 68.138852 ], [ 51.328125, 68.138852 ], [ 51.328125, 68.269387 ], [ 51.679688, 68.269387 ], [ 51.679688, 68.399180 ], [ 52.382812, 68.399180 ], [ 52.382812, 68.528235 ], [ 52.734375, 68.528235 ], [ 52.734375, 68.656555 ], [ 53.085938, 68.656555 ], [ 53.085938, 68.784144 ], [ 54.492188, 68.784144 ], [ 54.492188, 68.656555 ], [ 54.140625, 68.656555 ], [ 54.140625, 68.399180 ], [ 53.789062, 68.399180 ], [ 53.789062, 68.138852 ], [ 55.195312, 68.138852 ], [ 55.195312, 68.269387 ], [ 55.546875, 68.269387 ], [ 55.546875, 68.399180 ], [ 56.601562, 68.399180 ], [ 56.601562, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.656555 ], [ 58.359375, 68.656555 ], [ 58.359375, 68.784144 ], [ 59.062500, 68.784144 ], [ 59.062500, 68.656555 ], [ 59.414062, 68.656555 ], [ 59.414062, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.269387 ], [ 60.468750, 68.269387 ], [ 60.468750, 68.528235 ], [ 60.820312, 68.528235 ], [ 60.820312, 68.784144 ], [ 61.171875, 68.784144 ], [ 61.171875, 68.911005 ], [ 60.820312, 68.911005 ], [ 60.820312, 69.162558 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.411242 ], [ 60.117188, 69.411242 ], [ 60.117188, 69.657086 ], [ 60.468750, 69.657086 ], [ 60.468750, 69.900118 ], [ 60.820312, 69.900118 ], [ 60.820312, 69.778952 ], [ 61.875000, 69.778952 ], [ 61.875000, 69.657086 ], [ 62.929688, 69.657086 ], [ 62.929688, 69.534518 ], [ 63.632812, 69.534518 ], [ 63.632812, 69.411242 ], [ 64.335938, 69.411242 ], [ 64.335938, 69.287257 ], [ 65.039062, 69.287257 ], [ 65.039062, 69.162558 ], [ 65.390625, 69.162558 ], [ 65.390625, 69.037142 ], [ 65.742188, 69.037142 ], [ 65.742188, 68.911005 ], [ 66.093750, 68.911005 ], [ 66.093750, 68.784144 ], [ 66.445312, 68.784144 ], [ 66.445312, 68.656555 ], [ 67.148438, 68.656555 ], [ 67.148438, 68.528235 ], [ 67.500000, 68.528235 ], [ 67.500000, 68.399180 ], [ 67.851562, 68.399180 ], [ 67.851562, 68.269387 ], [ 68.203125, 68.269387 ], [ 68.203125, 68.138852 ], [ 68.554688, 68.138852 ], [ 68.554688, 68.269387 ], [ 68.906250, 68.269387 ], [ 68.906250, 68.528235 ], [ 69.257812, 68.528235 ], [ 69.257812, 68.656555 ], [ 68.906250, 68.656555 ], [ 68.906250, 68.911005 ], [ 68.554688, 68.911005 ], [ 68.554688, 69.037142 ], [ 68.203125, 69.037142 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 66.796875, 69.657086 ], [ 67.148438, 69.657086 ], [ 67.148438, 70.259452 ], [ 66.796875, 70.259452 ], [ 66.796875, 71.074056 ], [ 67.148438, 71.074056 ], [ 67.148438, 71.300793 ], [ 67.500000, 71.300793 ], [ 67.500000, 71.524909 ], [ 67.851562, 71.524909 ], [ 67.851562, 71.635993 ], [ 68.203125, 71.635993 ], [ 68.203125, 71.856229 ], [ 68.554688, 71.856229 ], [ 68.554688, 72.181804 ], [ 68.906250, 72.181804 ], [ 68.906250, 72.607120 ], [ 69.257812, 72.607120 ], [ 69.257812, 72.816074 ], [ 69.609375, 72.816074 ], [ 69.609375, 72.919635 ], [ 69.960938, 72.919635 ], [ 69.960938, 73.022592 ], [ 70.312500, 73.022592 ], [ 70.312500, 72.919635 ], [ 71.718750, 72.919635 ], [ 71.718750, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.746432 ], [ 72.070312, 71.746432 ], [ 72.070312, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.300793 ], [ 72.070312, 71.300793 ], [ 72.070312, 71.074056 ], [ 72.421875, 71.074056 ], [ 72.421875, 70.728979 ], [ 72.773438, 70.728979 ], [ 72.773438, 69.657086 ], [ 72.421875, 69.657086 ], [ 72.421875, 68.911005 ], [ 72.773438, 68.911005 ], [ 72.773438, 68.784144 ], [ 73.125000, 68.784144 ], [ 73.125000, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.399180 ], [ 73.828125, 68.399180 ], [ 73.828125, 68.138852 ], [ 73.476562, 68.138852 ], [ 73.476562, 67.875541 ], [ 73.125000, 67.875541 ], [ 73.125000, 67.609221 ], [ 72.773438, 67.609221 ], [ 72.773438, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.372755 ], [ 71.718750, 66.372755 ], [ 71.718750, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 73.125000, 66.513260 ], [ 73.125000, 66.652977 ], [ 73.828125, 66.652977 ], [ 73.828125, 67.067433 ], [ 74.179688, 67.067433 ], [ 74.179688, 67.339861 ], [ 74.531250, 67.339861 ], [ 74.531250, 67.609221 ], [ 74.882812, 67.609221 ], [ 74.882812, 68.007571 ], [ 74.531250, 68.007571 ], [ 74.531250, 68.656555 ], [ 74.882812, 68.656555 ], [ 74.882812, 69.037142 ], [ 73.828125, 69.037142 ], [ 73.828125, 69.287257 ], [ 73.476562, 69.287257 ], [ 73.476562, 69.778952 ], [ 73.828125, 69.778952 ], [ 73.828125, 70.140364 ], [ 74.179688, 70.140364 ], [ 74.179688, 70.377854 ], [ 74.531250, 70.377854 ], [ 74.531250, 70.612614 ], [ 74.179688, 70.612614 ], [ 74.179688, 70.844673 ], [ 73.828125, 70.844673 ], [ 73.828125, 71.074056 ], [ 73.476562, 71.074056 ], [ 73.476562, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.413177 ], [ 73.476562, 71.413177 ], [ 73.476562, 71.524909 ], [ 73.828125, 71.524909 ], [ 73.828125, 71.746432 ], [ 74.179688, 71.746432 ], [ 74.179688, 71.856229 ], [ 74.531250, 71.856229 ], [ 74.531250, 71.965388 ], [ 74.882812, 71.965388 ], [ 74.882812, 72.395706 ], [ 74.531250, 72.395706 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.234375, 72.501722 ], [ 75.585938, 72.501722 ], [ 75.585938, 71.746432 ], [ 75.234375, 71.746432 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.187754 ], [ 76.289062, 71.187754 ], [ 76.289062, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.856229 ], [ 76.289062, 71.856229 ], [ 76.289062, 71.965388 ], [ 76.640625, 71.965388 ], [ 76.640625, 72.073911 ], [ 77.343750, 72.073911 ], [ 77.343750, 72.181804 ], [ 77.695312, 72.181804 ], [ 77.695312, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.856229 ], [ 81.210938, 71.856229 ] ], [ [ 81.210938, 71.856229 ], [ 81.210938, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 71.856229 ], [ 81.210938, 71.856229 ] ] ], [ [ [ 68.203125, 76.920614 ], [ 68.203125, 76.760541 ], [ 68.554688, 76.760541 ], [ 68.554688, 76.598545 ], [ 68.906250, 76.598545 ], [ 68.906250, 76.434604 ], [ 68.554688, 76.434604 ], [ 68.554688, 76.268695 ], [ 68.203125, 76.268695 ], [ 68.203125, 76.184995 ], [ 67.500000, 76.184995 ], [ 67.500000, 76.100796 ], [ 66.796875, 76.100796 ], [ 66.796875, 76.016094 ], [ 66.445312, 76.016094 ], [ 66.445312, 75.930885 ], [ 65.742188, 75.930885 ], [ 65.742188, 75.845169 ], [ 65.039062, 75.845169 ], [ 65.039062, 75.758940 ], [ 64.687500, 75.758940 ], [ 64.687500, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.584937 ], [ 63.632812, 75.584937 ], [ 63.632812, 75.497157 ], [ 62.929688, 75.497157 ], [ 62.929688, 75.408854 ], [ 62.578125, 75.408854 ], [ 62.578125, 75.320025 ], [ 61.875000, 75.320025 ], [ 61.875000, 75.230667 ], [ 61.523438, 75.230667 ], [ 61.523438, 75.140778 ], [ 61.171875, 75.140778 ], [ 61.171875, 75.050354 ], [ 60.820312, 75.050354 ], [ 60.820312, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.867889 ], [ 60.117188, 74.867889 ], [ 60.117188, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.590108 ], [ 59.414062, 74.590108 ], [ 59.414062, 74.496413 ], [ 59.062500, 74.496413 ], [ 59.062500, 74.402163 ], [ 58.710938, 74.402163 ], [ 58.710938, 74.307353 ], [ 58.359375, 74.307353 ], [ 58.359375, 74.116047 ], [ 58.007812, 74.116047 ], [ 58.007812, 73.922469 ], [ 57.656250, 73.922469 ], [ 57.656250, 73.627789 ], [ 57.304688, 73.627789 ], [ 57.304688, 73.428424 ], [ 56.953125, 73.428424 ], [ 56.953125, 73.124945 ], [ 56.601562, 73.124945 ], [ 56.601562, 72.919635 ], [ 56.250000, 72.919635 ], [ 56.250000, 72.711903 ], [ 55.898438, 72.711903 ], [ 55.898438, 72.501722 ], [ 55.546875, 72.501722 ], [ 55.546875, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.187754 ], [ 56.601562, 71.187754 ], [ 56.601562, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.844673 ], [ 57.304688, 70.844673 ], [ 57.304688, 70.728979 ], [ 57.656250, 70.728979 ], [ 57.656250, 70.612614 ], [ 55.195312, 70.612614 ], [ 55.195312, 70.728979 ], [ 53.789062, 70.728979 ], [ 53.789062, 70.959697 ], [ 53.437500, 70.959697 ], [ 53.437500, 71.187754 ], [ 53.085938, 71.187754 ], [ 53.085938, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.746432 ], [ 51.328125, 71.746432 ], [ 51.328125, 71.965388 ], [ 51.679688, 71.965388 ], [ 51.679688, 72.073911 ], [ 52.382812, 72.073911 ], [ 52.382812, 72.816074 ], [ 52.734375, 72.816074 ], [ 52.734375, 73.022592 ], [ 53.085938, 73.022592 ], [ 53.085938, 73.124945 ], [ 53.437500, 73.124945 ], [ 53.437500, 73.226700 ], [ 53.789062, 73.226700 ], [ 53.789062, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.528399 ], [ 54.492188, 73.528399 ], [ 54.492188, 73.627789 ], [ 53.789062, 73.627789 ], [ 53.789062, 73.824820 ], [ 54.140625, 73.824820 ], [ 54.140625, 74.019543 ], [ 54.492188, 74.019543 ], [ 54.492188, 74.116047 ], [ 54.843750, 74.116047 ], [ 54.843750, 74.211983 ], [ 55.195312, 74.211983 ], [ 55.195312, 74.402163 ], [ 55.546875, 74.402163 ], [ 55.546875, 74.496413 ], [ 55.898438, 74.496413 ], [ 55.898438, 74.775843 ], [ 55.546875, 74.775843 ], [ 55.546875, 75.050354 ], [ 55.898438, 75.050354 ], [ 55.898438, 75.140778 ], [ 56.250000, 75.140778 ], [ 56.250000, 75.230667 ], [ 56.601562, 75.230667 ], [ 56.601562, 75.320025 ], [ 57.304688, 75.320025 ], [ 57.304688, 75.408854 ], [ 57.656250, 75.408854 ], [ 57.656250, 75.497157 ], [ 58.007812, 75.497157 ], [ 58.007812, 75.584937 ], [ 58.359375, 75.584937 ], [ 58.359375, 75.672197 ], [ 58.710938, 75.672197 ], [ 58.710938, 75.758940 ], [ 59.062500, 75.758940 ], [ 59.062500, 75.845169 ], [ 59.414062, 75.845169 ], [ 59.414062, 75.930885 ], [ 60.117188, 75.930885 ], [ 60.117188, 76.016094 ], [ 60.468750, 76.016094 ], [ 60.468750, 76.100796 ], [ 60.820312, 76.100796 ], [ 60.820312, 76.184995 ], [ 61.171875, 76.184995 ], [ 61.171875, 76.268695 ], [ 62.226562, 76.268695 ], [ 62.226562, 76.351896 ], [ 63.632812, 76.351896 ], [ 63.632812, 76.434604 ], [ 64.687500, 76.434604 ], [ 64.687500, 76.516819 ], [ 65.039062, 76.516819 ], [ 65.039062, 76.598545 ], [ 65.390625, 76.598545 ], [ 65.390625, 76.679785 ], [ 65.742188, 76.679785 ], [ 65.742188, 76.760541 ], [ 66.093750, 76.760541 ], [ 66.093750, 76.840816 ], [ 67.500000, 76.840816 ], [ 67.500000, 76.920614 ], [ 68.203125, 76.920614 ] ] ], [ [ [ 50.273438, 80.872827 ], [ 50.273438, 80.816891 ], [ 50.976562, 80.816891 ], [ 50.976562, 80.760615 ], [ 51.328125, 80.760615 ], [ 51.328125, 80.703997 ], [ 51.679688, 80.703997 ], [ 51.679688, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.532071 ], [ 50.976562, 80.532071 ], [ 50.976562, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.415707 ], [ 49.570312, 80.415707 ], [ 49.570312, 80.356995 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.118564 ], [ 48.515625, 80.118564 ], [ 48.515625, 80.058050 ], [ 47.812500, 80.058050 ], [ 47.812500, 79.997168 ], [ 47.109375, 79.997168 ], [ 47.109375, 80.118564 ], [ 46.757812, 80.118564 ], [ 46.757812, 80.178713 ], [ 46.406250, 80.178713 ], [ 46.406250, 80.297927 ], [ 46.757812, 80.297927 ], [ 46.757812, 80.415707 ], [ 47.109375, 80.415707 ], [ 47.109375, 80.532071 ], [ 45.703125, 80.532071 ], [ 45.703125, 80.589727 ], [ 45.351562, 80.589727 ], [ 45.351562, 80.647035 ], [ 46.054688, 80.647035 ], [ 46.054688, 80.703997 ], [ 46.757812, 80.703997 ], [ 46.757812, 80.760615 ], [ 48.164062, 80.760615 ], [ 48.164062, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.589727 ], [ 48.867188, 80.589727 ], [ 48.867188, 80.703997 ], [ 49.218750, 80.703997 ], [ 49.218750, 80.760615 ], [ 49.570312, 80.760615 ], [ 49.570312, 80.872827 ], [ 50.273438, 80.872827 ] ] ], [ [ [ 91.757812, 80.415707 ], [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.415707 ], [ 91.757812, 80.415707 ] ] ], [ [ [ 43.945312, 68.399180 ], [ 43.593750, 68.399180 ], [ 43.593750, 68.528235 ], [ 43.945312, 68.528235 ], [ 43.945312, 68.399180 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.343750, 69.900118 ], [ 32.343750, 69.778952 ], [ 32.695312, 69.778952 ], [ 32.695312, 69.657086 ], [ 33.046875, 69.657086 ], [ 33.046875, 69.534518 ], [ 33.398438, 69.534518 ], [ 33.398438, 69.411242 ], [ 34.101562, 69.411242 ], [ 34.101562, 69.287257 ], [ 35.507812, 69.287257 ], [ 35.507812, 69.162558 ], [ 36.210938, 69.162558 ], [ 36.210938, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.911005 ], [ 37.265625, 68.911005 ], [ 37.265625, 68.784144 ], [ 37.617188, 68.784144 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.269387 ], [ 39.375000, 68.269387 ], [ 39.375000, 68.138852 ], [ 39.726562, 68.138852 ], [ 39.726562, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 66.652977 ], [ 40.429688, 66.652977 ], [ 40.429688, 66.513260 ], [ 40.078125, 66.513260 ], [ 40.078125, 66.372755 ], [ 39.726562, 66.372755 ], [ 39.726562, 66.231457 ], [ 39.023438, 66.231457 ], [ 39.023438, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.231457 ], [ 36.914062, 66.231457 ], [ 36.914062, 66.372755 ], [ 35.859375, 66.372755 ], [ 35.859375, 66.513260 ], [ 34.804688, 66.513260 ], [ 34.804688, 66.652977 ], [ 34.101562, 66.652977 ], [ 34.101562, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 65.802776 ], [ 29.882812, 65.802776 ], [ 29.882812, 66.089364 ], [ 29.531250, 66.089364 ], [ 29.531250, 66.513260 ], [ 29.179688, 66.513260 ], [ 29.179688, 66.791909 ], [ 28.828125, 66.791909 ], [ 28.828125, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.609221 ], [ 29.882812, 67.609221 ], [ 29.882812, 67.742759 ], [ 29.531250, 67.742759 ], [ 29.531250, 67.875541 ], [ 29.179688, 67.875541 ], [ 29.179688, 68.007571 ], [ 28.828125, 68.007571 ], [ 28.828125, 68.138852 ], [ 28.476562, 68.138852 ], [ 28.476562, 68.269387 ], [ 28.125000, 68.269387 ], [ 28.125000, 68.784144 ], [ 28.476562, 68.784144 ], [ 28.476562, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.411242 ], [ 30.585938, 69.411242 ], [ 30.585938, 69.534518 ], [ 30.937500, 69.534518 ], [ 30.937500, 69.657086 ], [ 31.289062, 69.657086 ], [ 31.289062, 69.778952 ], [ 31.640625, 69.778952 ], [ 31.640625, 69.900118 ], [ 32.343750, 69.900118 ] ] ], [ [ [ 80.859375, 71.965388 ], [ 80.859375, 72.395706 ], [ 80.507812, 72.395706 ], [ 80.507812, 73.726595 ], [ 81.210938, 73.726595 ], [ 81.210938, 73.824820 ], [ 81.914062, 73.824820 ], [ 81.914062, 73.922469 ], [ 82.968750, 73.922469 ], [ 82.968750, 73.824820 ], [ 85.078125, 73.824820 ], [ 85.078125, 73.922469 ], [ 86.132812, 73.922469 ], [ 86.132812, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.116047 ], [ 86.132812, 74.116047 ], [ 86.132812, 74.307353 ], [ 85.781250, 74.307353 ], [ 85.781250, 74.590108 ], [ 86.132812, 74.590108 ], [ 86.132812, 74.775843 ], [ 86.484375, 74.775843 ], [ 86.484375, 74.959392 ], [ 86.835938, 74.959392 ], [ 86.835938, 75.140778 ], [ 87.890625, 75.140778 ], [ 87.890625, 75.230667 ], [ 88.593750, 75.230667 ], [ 88.593750, 75.320025 ], [ 88.945312, 75.320025 ], [ 88.945312, 75.408854 ], [ 89.296875, 75.408854 ], [ 89.296875, 75.497157 ], [ 89.648438, 75.497157 ], [ 89.648438, 75.584937 ], [ 90.000000, 75.584937 ], [ 90.000000, 75.672197 ], [ 91.054688, 75.672197 ], [ 91.054688, 75.758940 ], [ 91.757812, 75.758940 ], [ 91.757812, 65.802776 ], [ 40.781250, 65.802776 ], [ 40.781250, 65.946472 ], [ 41.132812, 65.946472 ], [ 41.132812, 66.231457 ], [ 41.484375, 66.231457 ], [ 41.484375, 66.372755 ], [ 41.835938, 66.372755 ], [ 41.835938, 66.513260 ], [ 42.890625, 66.513260 ], [ 42.890625, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.930060 ], [ 43.945312, 66.930060 ], [ 43.945312, 67.204032 ], [ 43.593750, 67.204032 ], [ 43.593750, 67.742759 ], [ 43.945312, 67.742759 ], [ 43.945312, 68.138852 ], [ 43.593750, 68.138852 ], [ 43.593750, 68.399180 ], [ 43.242188, 68.399180 ], [ 43.242188, 68.656555 ], [ 43.593750, 68.656555 ], [ 43.593750, 68.528235 ], [ 44.296875, 68.528235 ], [ 44.296875, 68.399180 ], [ 45.351562, 68.399180 ], [ 45.351562, 68.269387 ], [ 46.054688, 68.269387 ], [ 46.054688, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.875541 ], [ 46.757812, 67.875541 ], [ 46.757812, 67.742759 ], [ 46.406250, 67.742759 ], [ 46.406250, 67.609221 ], [ 45.351562, 67.609221 ], [ 45.351562, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.791909 ], [ 47.109375, 66.791909 ], [ 47.109375, 66.930060 ], [ 47.812500, 66.930060 ], [ 47.812500, 67.609221 ], [ 48.515625, 67.609221 ], [ 48.515625, 67.742759 ], [ 49.218750, 67.742759 ], [ 49.218750, 67.875541 ], [ 49.921875, 67.875541 ], [ 49.921875, 68.007571 ], [ 50.273438, 68.007571 ], [ 50.273438, 68.138852 ], [ 50.976562, 68.138852 ], [ 50.976562, 68.269387 ], [ 51.328125, 68.269387 ], [ 51.328125, 68.399180 ], [ 52.031250, 68.399180 ], [ 52.031250, 68.528235 ], [ 52.382812, 68.528235 ], [ 52.382812, 68.656555 ], [ 52.734375, 68.656555 ], [ 52.734375, 68.784144 ], [ 53.437500, 68.784144 ], [ 53.437500, 68.911005 ], [ 54.140625, 68.911005 ], [ 54.140625, 68.656555 ], [ 53.789062, 68.656555 ], [ 53.789062, 68.399180 ], [ 53.437500, 68.399180 ], [ 53.437500, 68.269387 ], [ 53.789062, 68.269387 ], [ 53.789062, 68.138852 ], [ 54.843750, 68.138852 ], [ 54.843750, 68.399180 ], [ 55.195312, 68.399180 ], [ 55.195312, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.656555 ], [ 58.359375, 68.656555 ], [ 58.359375, 68.784144 ], [ 59.062500, 68.784144 ], [ 59.062500, 68.656555 ], [ 59.414062, 68.656555 ], [ 59.414062, 68.399180 ], [ 60.117188, 68.399180 ], [ 60.117188, 68.656555 ], [ 60.468750, 68.656555 ], [ 60.468750, 68.911005 ], [ 60.820312, 68.911005 ], [ 60.820312, 69.037142 ], [ 60.468750, 69.037142 ], [ 60.468750, 69.287257 ], [ 60.117188, 69.287257 ], [ 60.117188, 69.411242 ], [ 59.765625, 69.411242 ], [ 59.765625, 69.534518 ], [ 60.117188, 69.534518 ], [ 60.117188, 69.778952 ], [ 60.468750, 69.778952 ], [ 60.468750, 69.900118 ], [ 60.820312, 69.900118 ], [ 60.820312, 69.778952 ], [ 62.226562, 69.778952 ], [ 62.226562, 69.657086 ], [ 63.281250, 69.657086 ], [ 63.281250, 69.534518 ], [ 63.632812, 69.534518 ], [ 63.632812, 69.411242 ], [ 64.335938, 69.411242 ], [ 64.335938, 69.287257 ], [ 64.687500, 69.287257 ], [ 64.687500, 69.162558 ], [ 65.039062, 69.162558 ], [ 65.039062, 69.037142 ], [ 65.390625, 69.037142 ], [ 65.390625, 68.911005 ], [ 65.742188, 68.911005 ], [ 65.742188, 68.784144 ], [ 66.093750, 68.784144 ], [ 66.093750, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.528235 ], [ 67.148438, 68.528235 ], [ 67.148438, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.269387 ], [ 67.851562, 68.269387 ], [ 67.851562, 68.138852 ], [ 68.203125, 68.138852 ], [ 68.203125, 68.269387 ], [ 68.554688, 68.269387 ], [ 68.554688, 68.528235 ], [ 68.906250, 68.528235 ], [ 68.906250, 68.656555 ], [ 68.554688, 68.656555 ], [ 68.554688, 68.911005 ], [ 68.203125, 68.911005 ], [ 68.203125, 69.037142 ], [ 67.851562, 69.037142 ], [ 67.851562, 69.411242 ], [ 67.148438, 69.411242 ], [ 67.148438, 69.534518 ], [ 66.796875, 69.534518 ], [ 66.796875, 69.778952 ], [ 67.148438, 69.778952 ], [ 67.148438, 70.140364 ], [ 66.796875, 70.140364 ], [ 66.796875, 70.495574 ], [ 66.445312, 70.495574 ], [ 66.445312, 71.074056 ], [ 66.796875, 71.074056 ], [ 66.796875, 71.300793 ], [ 67.148438, 71.300793 ], [ 67.148438, 71.524909 ], [ 67.500000, 71.524909 ], [ 67.500000, 71.635993 ], [ 67.851562, 71.635993 ], [ 67.851562, 71.856229 ], [ 68.203125, 71.856229 ], [ 68.203125, 72.181804 ], [ 68.554688, 72.181804 ], [ 68.554688, 72.607120 ], [ 68.906250, 72.607120 ], [ 68.906250, 72.919635 ], [ 69.257812, 72.919635 ], [ 69.257812, 73.022592 ], [ 69.609375, 73.022592 ], [ 69.609375, 73.124945 ], [ 69.960938, 73.124945 ], [ 69.960938, 73.022592 ], [ 70.664062, 73.022592 ], [ 70.664062, 72.919635 ], [ 71.718750, 72.919635 ], [ 71.718750, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 72.073911 ], [ 72.421875, 72.073911 ], [ 72.421875, 71.856229 ], [ 72.070312, 71.856229 ], [ 72.070312, 71.524909 ], [ 71.718750, 71.524909 ], [ 71.718750, 71.300793 ], [ 72.070312, 71.300793 ], [ 72.070312, 71.187754 ], [ 72.421875, 71.187754 ], [ 72.421875, 70.844673 ], [ 72.773438, 70.844673 ], [ 72.773438, 69.778952 ], [ 72.421875, 69.778952 ], [ 72.421875, 68.911005 ], [ 72.773438, 68.911005 ], [ 72.773438, 68.784144 ], [ 73.125000, 68.784144 ], [ 73.125000, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.138852 ], [ 73.125000, 68.138852 ], [ 73.125000, 67.609221 ], [ 72.773438, 67.609221 ], [ 72.773438, 67.339861 ], [ 72.421875, 67.339861 ], [ 72.421875, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.930060 ], [ 71.718750, 66.930060 ], [ 71.718750, 66.652977 ], [ 71.367188, 66.652977 ], [ 71.367188, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.652977 ], [ 73.476562, 66.652977 ], [ 73.476562, 66.791909 ], [ 73.828125, 66.791909 ], [ 73.828125, 67.067433 ], [ 74.179688, 67.067433 ], [ 74.179688, 67.474922 ], [ 74.531250, 67.474922 ], [ 74.531250, 67.742759 ], [ 74.882812, 67.742759 ], [ 74.882812, 68.007571 ], [ 74.531250, 68.007571 ], [ 74.531250, 68.269387 ], [ 74.179688, 68.269387 ], [ 74.179688, 68.528235 ], [ 74.531250, 68.528235 ], [ 74.531250, 68.784144 ], [ 74.882812, 68.784144 ], [ 74.882812, 69.037142 ], [ 74.179688, 69.037142 ], [ 74.179688, 69.162558 ], [ 73.828125, 69.162558 ], [ 73.828125, 69.411242 ], [ 73.476562, 69.411242 ], [ 73.476562, 69.900118 ], [ 73.828125, 69.900118 ], [ 73.828125, 70.377854 ], [ 74.179688, 70.377854 ], [ 74.179688, 70.728979 ], [ 73.828125, 70.728979 ], [ 73.828125, 70.959697 ], [ 73.476562, 70.959697 ], [ 73.476562, 71.187754 ], [ 73.125000, 71.187754 ], [ 73.125000, 71.413177 ], [ 72.773438, 71.413177 ], [ 72.773438, 71.524909 ], [ 73.125000, 71.524909 ], [ 73.125000, 71.635993 ], [ 73.476562, 71.635993 ], [ 73.476562, 71.746432 ], [ 73.828125, 71.746432 ], [ 73.828125, 71.856229 ], [ 74.179688, 71.856229 ], [ 74.179688, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.073911 ], [ 74.882812, 72.073911 ], [ 74.882812, 72.501722 ], [ 74.531250, 72.501722 ], [ 74.531250, 72.919635 ], [ 74.882812, 72.919635 ], [ 74.882812, 72.711903 ], [ 75.234375, 72.711903 ], [ 75.234375, 72.501722 ], [ 75.585938, 72.501722 ], [ 75.585938, 71.965388 ], [ 75.937500, 71.965388 ], [ 75.937500, 72.073911 ], [ 76.640625, 72.073911 ], [ 76.640625, 72.181804 ], [ 77.343750, 72.181804 ], [ 77.343750, 72.289067 ], [ 78.750000, 72.289067 ], [ 78.750000, 72.395706 ], [ 79.453125, 72.395706 ], [ 79.453125, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 71.965388 ], [ 80.859375, 71.965388 ] ], [ [ 75.937500, 71.300793 ], [ 75.937500, 71.746432 ], [ 75.585938, 71.746432 ], [ 75.585938, 71.856229 ], [ 75.234375, 71.856229 ], [ 75.234375, 71.300793 ], [ 75.937500, 71.300793 ] ], [ [ 75.937500, 71.300793 ], [ 75.937500, 71.187754 ], [ 76.289062, 71.187754 ], [ 76.289062, 71.300793 ], [ 75.937500, 71.300793 ] ], [ [ 80.859375, 71.965388 ], [ 80.859375, 71.856229 ], [ 81.210938, 71.856229 ], [ 81.210938, 71.965388 ], [ 80.859375, 71.965388 ] ] ], [ [ [ 67.851562, 76.999935 ], [ 67.851562, 76.840816 ], [ 68.203125, 76.840816 ], [ 68.203125, 76.679785 ], [ 68.554688, 76.679785 ], [ 68.554688, 76.516819 ], [ 68.203125, 76.516819 ], [ 68.203125, 76.351896 ], [ 67.851562, 76.351896 ], [ 67.851562, 76.184995 ], [ 67.148438, 76.184995 ], [ 67.148438, 76.100796 ], [ 66.445312, 76.100796 ], [ 66.445312, 76.016094 ], [ 66.093750, 76.016094 ], [ 66.093750, 75.930885 ], [ 65.390625, 75.930885 ], [ 65.390625, 75.845169 ], [ 64.687500, 75.845169 ], [ 64.687500, 75.758940 ], [ 64.335938, 75.758940 ], [ 64.335938, 75.672197 ], [ 63.632812, 75.672197 ], [ 63.632812, 75.584937 ], [ 63.281250, 75.584937 ], [ 63.281250, 75.497157 ], [ 62.578125, 75.497157 ], [ 62.578125, 75.408854 ], [ 61.875000, 75.408854 ], [ 61.875000, 75.320025 ], [ 61.523438, 75.320025 ], [ 61.523438, 75.230667 ], [ 61.171875, 75.230667 ], [ 61.171875, 75.140778 ], [ 60.820312, 75.140778 ], [ 60.820312, 75.050354 ], [ 60.468750, 75.050354 ], [ 60.468750, 74.959392 ], [ 60.117188, 74.959392 ], [ 60.117188, 74.867889 ], [ 59.765625, 74.867889 ], [ 59.765625, 74.683250 ], [ 59.414062, 74.683250 ], [ 59.414062, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.496413 ], [ 58.710938, 74.496413 ], [ 58.710938, 74.402163 ], [ 58.359375, 74.402163 ], [ 58.359375, 74.211983 ], [ 58.007812, 74.211983 ], [ 58.007812, 74.019543 ], [ 57.656250, 74.019543 ], [ 57.656250, 73.726595 ], [ 57.304688, 73.726595 ], [ 57.304688, 73.528399 ], [ 56.953125, 73.528399 ], [ 56.953125, 73.327858 ], [ 56.601562, 73.327858 ], [ 56.601562, 73.124945 ], [ 56.250000, 73.124945 ], [ 56.250000, 72.919635 ], [ 55.898438, 72.919635 ], [ 55.898438, 72.711903 ], [ 55.546875, 72.711903 ], [ 55.546875, 72.501722 ], [ 55.195312, 72.501722 ], [ 55.195312, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.524909 ], [ 55.898438, 71.524909 ], [ 55.898438, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.187754 ], [ 56.601562, 71.187754 ], [ 56.601562, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.728979 ], [ 54.843750, 70.728979 ], [ 54.843750, 70.844673 ], [ 53.437500, 70.844673 ], [ 53.437500, 71.074056 ], [ 53.085938, 71.074056 ], [ 53.085938, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.524909 ], [ 51.328125, 71.524909 ], [ 51.328125, 72.073911 ], [ 51.679688, 72.073911 ], [ 51.679688, 72.181804 ], [ 52.382812, 72.181804 ], [ 52.382812, 72.816074 ], [ 52.734375, 72.816074 ], [ 52.734375, 73.022592 ], [ 53.085938, 73.022592 ], [ 53.085938, 73.226700 ], [ 53.437500, 73.226700 ], [ 53.437500, 73.327858 ], [ 53.789062, 73.327858 ], [ 53.789062, 73.528399 ], [ 54.140625, 73.528399 ], [ 54.140625, 73.627789 ], [ 53.789062, 73.627789 ], [ 53.789062, 73.726595 ], [ 53.437500, 73.726595 ], [ 53.437500, 73.824820 ], [ 53.789062, 73.824820 ], [ 53.789062, 73.922469 ], [ 54.140625, 73.922469 ], [ 54.140625, 74.116047 ], [ 54.492188, 74.116047 ], [ 54.492188, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.307353 ], [ 55.195312, 74.307353 ], [ 55.195312, 74.496413 ], [ 55.546875, 74.496413 ], [ 55.546875, 74.590108 ], [ 55.898438, 74.590108 ], [ 55.898438, 74.867889 ], [ 55.546875, 74.867889 ], [ 55.546875, 75.140778 ], [ 55.898438, 75.140778 ], [ 55.898438, 75.230667 ], [ 56.250000, 75.230667 ], [ 56.250000, 75.320025 ], [ 56.601562, 75.320025 ], [ 56.601562, 75.408854 ], [ 56.953125, 75.408854 ], [ 56.953125, 75.497157 ], [ 57.304688, 75.497157 ], [ 57.304688, 75.584937 ], [ 57.656250, 75.584937 ], [ 57.656250, 75.672197 ], [ 58.007812, 75.672197 ], [ 58.007812, 75.758940 ], [ 58.710938, 75.758940 ], [ 58.710938, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 75.930885 ], [ 59.765625, 75.930885 ], [ 59.765625, 76.016094 ], [ 60.117188, 76.016094 ], [ 60.117188, 76.100796 ], [ 60.468750, 76.100796 ], [ 60.468750, 76.184995 ], [ 61.171875, 76.184995 ], [ 61.171875, 76.268695 ], [ 61.875000, 76.268695 ], [ 61.875000, 76.351896 ], [ 62.929688, 76.351896 ], [ 62.929688, 76.434604 ], [ 63.984375, 76.434604 ], [ 63.984375, 76.516819 ], [ 64.687500, 76.516819 ], [ 64.687500, 76.598545 ], [ 65.039062, 76.598545 ], [ 65.039062, 76.679785 ], [ 65.742188, 76.679785 ], [ 65.742188, 76.760541 ], [ 66.093750, 76.760541 ], [ 66.093750, 76.840816 ], [ 66.796875, 76.840816 ], [ 66.796875, 76.920614 ], [ 67.500000, 76.920614 ], [ 67.500000, 76.999935 ], [ 67.851562, 76.999935 ] ] ], [ [ [ 50.273438, 80.872827 ], [ 50.273438, 80.816891 ], [ 50.625000, 80.816891 ], [ 50.625000, 80.760615 ], [ 50.976562, 80.760615 ], [ 50.976562, 80.703997 ], [ 51.328125, 80.703997 ], [ 51.328125, 80.647035 ], [ 50.976562, 80.647035 ], [ 50.976562, 80.532071 ], [ 50.625000, 80.532071 ], [ 50.625000, 80.474065 ], [ 49.921875, 80.474065 ], [ 49.921875, 80.415707 ], [ 49.570312, 80.415707 ], [ 49.570312, 80.356995 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.238501 ], [ 48.515625, 80.238501 ], [ 48.515625, 80.118564 ], [ 47.812500, 80.118564 ], [ 47.812500, 80.058050 ], [ 47.109375, 80.058050 ], [ 47.109375, 80.178713 ], [ 46.757812, 80.178713 ], [ 46.757812, 80.238501 ], [ 46.406250, 80.238501 ], [ 46.406250, 80.415707 ], [ 46.757812, 80.415707 ], [ 46.757812, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.647035 ], [ 45.703125, 80.647035 ], [ 45.703125, 80.703997 ], [ 46.054688, 80.703997 ], [ 46.054688, 80.760615 ], [ 46.757812, 80.760615 ], [ 46.757812, 80.816891 ], [ 48.164062, 80.816891 ], [ 48.164062, 80.647035 ], [ 48.867188, 80.647035 ], [ 48.867188, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.816891 ], [ 49.570312, 80.816891 ], [ 49.570312, 80.872827 ], [ 50.273438, 80.872827 ] ] ], [ [ [ 91.757812, 80.474065 ], [ 91.757812, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.074056 ], [ 28.828125, 71.074056 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.844673 ], [ 29.882812, 70.844673 ], [ 29.882812, 70.728979 ], [ 30.234375, 70.728979 ], [ 30.234375, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.495574 ], [ 31.289062, 70.495574 ], [ 31.289062, 70.377854 ], [ 30.937500, 70.377854 ], [ 30.937500, 70.259452 ], [ 30.234375, 70.259452 ], [ 30.234375, 70.140364 ], [ 29.882812, 70.140364 ], [ 29.882812, 70.020587 ], [ 30.234375, 70.020587 ], [ 30.234375, 69.778952 ], [ 30.585938, 69.778952 ], [ 30.585938, 69.534518 ], [ 30.937500, 69.534518 ], [ 30.937500, 69.411242 ], [ 30.585938, 69.411242 ], [ 30.585938, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.162558 ], [ 29.179688, 69.162558 ], [ 29.179688, 69.037142 ], [ 28.476562, 69.037142 ], [ 28.476562, 69.162558 ], [ 28.828125, 69.162558 ], [ 28.828125, 69.534518 ], [ 29.179688, 69.534518 ], [ 29.179688, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 69.778952 ], [ 26.015625, 69.778952 ], [ 26.015625, 69.411242 ], [ 25.664062, 69.411242 ], [ 25.664062, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.656555 ], [ 24.257812, 68.656555 ], [ 24.257812, 68.784144 ], [ 23.554688, 68.784144 ], [ 23.554688, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.784144 ], [ 22.148438, 68.784144 ], [ 22.148438, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 21.445312, 69.162558 ], [ 21.445312, 69.287257 ], [ 20.742188, 69.287257 ], [ 20.742188, 69.037142 ], [ 20.039062, 69.037142 ], [ 20.039062, 68.399180 ], [ 18.632812, 68.399180 ], [ 18.632812, 68.528235 ], [ 17.929688, 68.528235 ], [ 17.929688, 68.269387 ], [ 17.578125, 68.269387 ], [ 17.578125, 68.007571 ], [ 16.875000, 68.007571 ], [ 16.875000, 67.742759 ], [ 16.523438, 67.742759 ], [ 16.523438, 67.474922 ], [ 16.171875, 67.474922 ], [ 16.171875, 67.067433 ], [ 15.820312, 67.067433 ], [ 15.820312, 66.791909 ], [ 15.468750, 66.791909 ], [ 15.468750, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.204032 ], [ 14.062500, 67.204032 ], [ 14.062500, 67.474922 ], [ 14.414062, 67.474922 ], [ 14.414062, 67.742759 ], [ 14.765625, 67.742759 ], [ 14.765625, 67.875541 ], [ 15.117188, 67.875541 ], [ 15.117188, 68.007571 ], [ 15.468750, 68.007571 ], [ 15.468750, 68.138852 ], [ 15.820312, 68.138852 ], [ 15.820312, 68.269387 ], [ 16.171875, 68.269387 ], [ 16.171875, 68.399180 ], [ 16.523438, 68.399180 ], [ 16.523438, 68.528235 ], [ 16.875000, 68.528235 ], [ 16.875000, 68.656555 ], [ 17.226562, 68.656555 ], [ 17.226562, 68.911005 ], [ 17.578125, 68.911005 ], [ 17.578125, 69.037142 ], [ 17.929688, 69.037142 ], [ 17.929688, 69.162558 ], [ 18.281250, 69.162558 ], [ 18.281250, 69.287257 ], [ 18.632812, 69.287257 ], [ 18.632812, 69.534518 ], [ 18.984375, 69.534518 ], [ 18.984375, 69.657086 ], [ 19.335938, 69.657086 ], [ 19.335938, 69.778952 ], [ 19.687500, 69.778952 ], [ 19.687500, 69.900118 ], [ 20.390625, 69.900118 ], [ 20.390625, 70.020587 ], [ 20.742188, 70.020587 ], [ 20.742188, 70.140364 ], [ 21.445312, 70.140364 ], [ 21.445312, 70.259452 ], [ 23.203125, 70.259452 ], [ 23.203125, 70.495574 ], [ 23.554688, 70.495574 ], [ 23.554688, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 70.728979 ], [ 24.257812, 70.728979 ], [ 24.257812, 70.959697 ], [ 24.609375, 70.959697 ], [ 24.609375, 71.074056 ], [ 25.312500, 71.074056 ], [ 25.312500, 70.959697 ], [ 27.070312, 70.959697 ], [ 27.070312, 71.074056 ], [ 27.773438, 71.074056 ], [ 27.773438, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.997168 ], [ 17.226562, 79.997168 ], [ 17.226562, 79.874297 ], [ 17.578125, 79.874297 ], [ 17.578125, 79.812302 ], [ 17.929688, 79.812302 ], [ 17.929688, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.335938, 79.432371 ], [ 19.335938, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.971386 ], [ 21.445312, 78.971386 ], [ 21.445312, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.836065 ], [ 20.742188, 78.836065 ], [ 20.742188, 78.767792 ], [ 20.039062, 78.767792 ], [ 20.039062, 78.699106 ], [ 19.687500, 78.699106 ], [ 19.687500, 78.630006 ], [ 19.335938, 78.630006 ], [ 19.335938, 78.560488 ], [ 18.984375, 78.560488 ], [ 18.984375, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.767582 ], [ 18.281250, 77.767582 ], [ 18.281250, 77.692870 ], [ 17.929688, 77.692870 ], [ 17.929688, 77.617709 ], [ 17.578125, 77.617709 ], [ 17.578125, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.840816 ], [ 16.875000, 76.840816 ], [ 16.875000, 76.760541 ], [ 15.468750, 76.760541 ], [ 15.468750, 76.920614 ], [ 15.117188, 76.920614 ], [ 15.117188, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.078784 ], [ 14.414062, 77.078784 ], [ 14.414062, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.710938, 77.312520 ], [ 13.710938, 77.389504 ], [ 14.062500, 77.389504 ], [ 14.062500, 77.542096 ], [ 14.414062, 77.542096 ], [ 14.414062, 77.692870 ], [ 14.765625, 77.692870 ], [ 14.765625, 77.767582 ], [ 14.414062, 77.767582 ], [ 14.414062, 77.841848 ], [ 13.710938, 77.841848 ], [ 13.710938, 77.915669 ], [ 13.007812, 77.915669 ], [ 13.007812, 78.061989 ], [ 12.656250, 78.061989 ], [ 12.656250, 78.206563 ], [ 12.304688, 78.206563 ], [ 12.304688, 78.420193 ], [ 11.953125, 78.420193 ], [ 11.953125, 78.560488 ], [ 11.601562, 78.560488 ], [ 11.601562, 78.699106 ], [ 11.250000, 78.699106 ], [ 11.250000, 79.038437 ], [ 10.898438, 79.038437 ], [ 10.898438, 79.432371 ], [ 10.546875, 79.432371 ], [ 10.546875, 79.624056 ], [ 10.898438, 79.624056 ], [ 10.898438, 79.687184 ], [ 11.250000, 79.687184 ], [ 11.250000, 79.749932 ], [ 11.601562, 79.749932 ], [ 11.601562, 79.812302 ], [ 12.304688, 79.812302 ], [ 12.304688, 79.874297 ], [ 12.656250, 79.874297 ], [ 12.656250, 79.935918 ], [ 13.007812, 79.935918 ], [ 13.007812, 79.874297 ], [ 13.359375, 79.874297 ], [ 13.359375, 79.749932 ], [ 13.710938, 79.749932 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.812302 ], [ 15.468750, 79.812302 ], [ 15.468750, 79.997168 ], [ 16.523438, 79.997168 ], [ 16.523438, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.554688, 80.589727 ], [ 23.554688, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.356995 ], [ 25.664062, 80.356995 ], [ 25.664062, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.238501 ], [ 26.367188, 80.238501 ], [ 26.367188, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.118564 ], [ 27.070312, 80.118564 ], [ 27.070312, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 79.935918 ], [ 27.070312, 79.935918 ], [ 27.070312, 79.812302 ], [ 26.718750, 79.812302 ], [ 26.718750, 79.687184 ], [ 26.367188, 79.687184 ], [ 26.367188, 79.560546 ], [ 26.015625, 79.560546 ], [ 26.015625, 79.496652 ], [ 25.312500, 79.496652 ], [ 25.312500, 79.432371 ], [ 23.906250, 79.432371 ], [ 23.906250, 79.367701 ], [ 22.148438, 79.367701 ], [ 22.148438, 79.432371 ], [ 21.093750, 79.432371 ], [ 21.093750, 79.496652 ], [ 20.390625, 79.496652 ], [ 20.390625, 79.560546 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.812302 ], [ 18.984375, 79.812302 ], [ 18.984375, 79.874297 ], [ 18.281250, 79.874297 ], [ 18.281250, 79.997168 ], [ 17.929688, 79.997168 ], [ 17.929688, 80.118564 ], [ 17.578125, 80.118564 ], [ 17.578125, 80.238501 ], [ 17.226562, 80.238501 ], [ 17.226562, 80.297927 ], [ 17.578125, 80.297927 ], [ 17.578125, 80.356995 ], [ 18.281250, 80.356995 ], [ 18.281250, 80.415707 ], [ 18.984375, 80.415707 ], [ 18.984375, 80.474065 ], [ 19.687500, 80.474065 ], [ 19.687500, 80.532071 ], [ 20.742188, 80.532071 ], [ 20.742188, 80.474065 ], [ 21.093750, 80.474065 ], [ 21.093750, 80.415707 ], [ 21.445312, 80.415707 ], [ 21.445312, 80.356995 ], [ 22.148438, 80.356995 ], [ 22.148438, 80.474065 ], [ 22.500000, 80.474065 ], [ 22.500000, 80.589727 ], [ 23.554688, 80.589727 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 22.851562, 78.206563 ], [ 23.203125, 78.206563 ], [ 23.203125, 77.989049 ], [ 23.554688, 77.989049 ], [ 23.554688, 77.915669 ], [ 24.257812, 77.915669 ], [ 24.257812, 77.841848 ], [ 24.609375, 77.841848 ], [ 24.609375, 77.767582 ], [ 24.257812, 77.767582 ], [ 24.257812, 77.692870 ], [ 23.906250, 77.692870 ], [ 23.906250, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.542096 ], [ 22.851562, 77.542096 ], [ 22.851562, 77.466028 ], [ 22.148438, 77.466028 ], [ 22.148438, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.617709 ], [ 20.742188, 77.617709 ], [ 20.742188, 77.692870 ], [ 21.093750, 77.692870 ], [ 21.093750, 77.841848 ], [ 21.445312, 77.841848 ], [ 21.445312, 77.989049 ], [ 21.093750, 77.989049 ], [ 21.093750, 78.134493 ], [ 20.742188, 78.134493 ], [ 20.742188, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.349411 ], [ 22.500000, 78.349411 ], [ 22.500000, 78.420193 ], [ 22.851562, 78.420193 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.074056 ], [ 28.828125, 71.074056 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.844673 ], [ 29.882812, 70.844673 ], [ 29.882812, 70.728979 ], [ 30.234375, 70.728979 ], [ 30.234375, 70.612614 ], [ 30.937500, 70.612614 ], [ 30.937500, 70.495574 ], [ 31.289062, 70.495574 ], [ 31.289062, 70.377854 ], [ 30.585938, 70.377854 ], [ 30.585938, 70.259452 ], [ 29.882812, 70.259452 ], [ 29.882812, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 69.900118 ], [ 30.585938, 69.900118 ], [ 30.585938, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.534518 ], [ 30.585938, 69.534518 ], [ 30.585938, 69.411242 ], [ 29.882812, 69.411242 ], [ 29.882812, 69.287257 ], [ 29.531250, 69.287257 ], [ 29.531250, 69.162558 ], [ 28.476562, 69.162558 ], [ 28.476562, 69.411242 ], [ 28.828125, 69.411242 ], [ 28.828125, 69.778952 ], [ 28.476562, 69.778952 ], [ 28.476562, 69.900118 ], [ 28.125000, 69.900118 ], [ 28.125000, 70.020587 ], [ 27.773438, 70.020587 ], [ 27.773438, 70.140364 ], [ 27.070312, 70.140364 ], [ 27.070312, 70.020587 ], [ 26.367188, 70.020587 ], [ 26.367188, 69.900118 ], [ 26.015625, 69.900118 ], [ 26.015625, 69.534518 ], [ 25.664062, 69.534518 ], [ 25.664062, 69.037142 ], [ 25.312500, 69.037142 ], [ 25.312500, 68.911005 ], [ 24.960938, 68.911005 ], [ 24.960938, 68.656555 ], [ 24.257812, 68.656555 ], [ 24.257812, 68.784144 ], [ 23.554688, 68.784144 ], [ 23.554688, 68.911005 ], [ 21.796875, 68.911005 ], [ 21.796875, 69.162558 ], [ 21.445312, 69.162558 ], [ 21.445312, 69.287257 ], [ 20.742188, 69.287257 ], [ 20.742188, 69.162558 ], [ 19.687500, 69.162558 ], [ 19.687500, 68.528235 ], [ 18.632812, 68.528235 ], [ 18.632812, 68.656555 ], [ 17.929688, 68.656555 ], [ 17.929688, 68.399180 ], [ 17.578125, 68.399180 ], [ 17.578125, 68.138852 ], [ 16.523438, 68.138852 ], [ 16.523438, 67.875541 ], [ 16.171875, 67.875541 ], [ 16.171875, 67.474922 ], [ 15.820312, 67.474922 ], [ 15.820312, 67.067433 ], [ 15.468750, 67.067433 ], [ 15.468750, 66.791909 ], [ 15.117188, 66.791909 ], [ 15.117188, 66.372755 ], [ 14.765625, 66.372755 ], [ 14.765625, 65.946472 ], [ 14.414062, 65.946472 ], [ 14.414062, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 67.067433 ], [ 13.710938, 67.067433 ], [ 13.710938, 67.339861 ], [ 14.062500, 67.339861 ], [ 14.062500, 67.609221 ], [ 14.414062, 67.609221 ], [ 14.414062, 67.875541 ], [ 14.765625, 67.875541 ], [ 14.765625, 68.007571 ], [ 15.117188, 68.007571 ], [ 15.117188, 68.269387 ], [ 15.468750, 68.269387 ], [ 15.468750, 68.399180 ], [ 15.820312, 68.399180 ], [ 15.820312, 68.528235 ], [ 16.171875, 68.528235 ], [ 16.171875, 68.656555 ], [ 16.523438, 68.656555 ], [ 16.523438, 68.784144 ], [ 16.875000, 68.784144 ], [ 16.875000, 69.037142 ], [ 17.226562, 69.037142 ], [ 17.226562, 69.162558 ], [ 17.578125, 69.162558 ], [ 17.578125, 69.287257 ], [ 17.929688, 69.287257 ], [ 17.929688, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.657086 ], [ 18.632812, 69.657086 ], [ 18.632812, 69.778952 ], [ 18.984375, 69.778952 ], [ 18.984375, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 70.020587 ], [ 20.390625, 70.020587 ], [ 20.390625, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.259452 ], [ 23.203125, 70.259452 ], [ 23.203125, 70.495574 ], [ 23.554688, 70.495574 ], [ 23.554688, 70.728979 ], [ 23.906250, 70.728979 ], [ 23.906250, 70.959697 ], [ 24.257812, 70.959697 ], [ 24.257812, 71.074056 ], [ 27.421875, 71.074056 ], [ 27.421875, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 16.875000, 79.997168 ], [ 17.226562, 79.997168 ], [ 17.226562, 79.874297 ], [ 17.578125, 79.874297 ], [ 17.578125, 79.749932 ], [ 17.929688, 79.749932 ], [ 17.929688, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.984375, 79.560546 ], [ 18.984375, 79.432371 ], [ 19.335938, 79.432371 ], [ 19.335938, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 78.971386 ], [ 21.445312, 78.971386 ], [ 21.445312, 78.903929 ], [ 20.742188, 78.903929 ], [ 20.742188, 78.836065 ], [ 20.390625, 78.836065 ], [ 20.390625, 78.767792 ], [ 20.039062, 78.767792 ], [ 20.039062, 78.699106 ], [ 19.335938, 78.699106 ], [ 19.335938, 78.630006 ], [ 18.984375, 78.630006 ], [ 18.984375, 78.420193 ], [ 18.632812, 78.420193 ], [ 18.632812, 77.989049 ], [ 18.281250, 77.989049 ], [ 18.281250, 77.767582 ], [ 17.929688, 77.767582 ], [ 17.929688, 77.692870 ], [ 17.578125, 77.692870 ], [ 17.578125, 77.466028 ], [ 17.226562, 77.466028 ], [ 17.226562, 76.999935 ], [ 16.875000, 76.999935 ], [ 16.875000, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 76.920614 ], [ 15.117188, 76.920614 ], [ 15.117188, 76.999935 ], [ 14.765625, 76.999935 ], [ 14.765625, 77.157163 ], [ 14.414062, 77.157163 ], [ 14.414062, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.710938, 77.312520 ], [ 13.710938, 77.466028 ], [ 14.062500, 77.466028 ], [ 14.062500, 77.617709 ], [ 14.414062, 77.617709 ], [ 14.414062, 77.767582 ], [ 14.062500, 77.767582 ], [ 14.062500, 77.841848 ], [ 13.710938, 77.841848 ], [ 13.710938, 77.915669 ], [ 13.359375, 77.915669 ], [ 13.359375, 77.989049 ], [ 13.007812, 77.989049 ], [ 13.007812, 78.134493 ], [ 12.656250, 78.134493 ], [ 12.656250, 78.278201 ], [ 12.304688, 78.278201 ], [ 12.304688, 78.420193 ], [ 11.953125, 78.420193 ], [ 11.953125, 78.560488 ], [ 11.601562, 78.560488 ], [ 11.601562, 78.699106 ], [ 11.250000, 78.699106 ], [ 11.250000, 78.836065 ], [ 10.898438, 78.836065 ], [ 10.898438, 79.105086 ], [ 10.546875, 79.105086 ], [ 10.546875, 79.496652 ], [ 10.195312, 79.496652 ], [ 10.195312, 79.687184 ], [ 10.546875, 79.687184 ], [ 10.546875, 79.749932 ], [ 11.250000, 79.749932 ], [ 11.250000, 79.812302 ], [ 11.601562, 79.812302 ], [ 11.601562, 79.874297 ], [ 11.953125, 79.874297 ], [ 11.953125, 79.935918 ], [ 12.656250, 79.935918 ], [ 12.656250, 79.997168 ], [ 13.007812, 79.997168 ], [ 13.007812, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.749932 ], [ 13.710938, 79.749932 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.874297 ], [ 15.468750, 79.874297 ], [ 15.468750, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.554688, 80.647035 ], [ 23.554688, 80.589727 ], [ 23.906250, 80.589727 ], [ 23.906250, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.356995 ], [ 25.664062, 80.356995 ], [ 25.664062, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.238501 ], [ 26.367188, 80.238501 ], [ 26.367188, 80.118564 ], [ 26.718750, 80.118564 ], [ 26.718750, 80.058050 ], [ 27.070312, 80.058050 ], [ 27.070312, 79.997168 ], [ 26.718750, 79.997168 ], [ 26.718750, 79.874297 ], [ 26.367188, 79.874297 ], [ 26.367188, 79.749932 ], [ 26.015625, 79.749932 ], [ 26.015625, 79.624056 ], [ 25.664062, 79.624056 ], [ 25.664062, 79.560546 ], [ 25.312500, 79.560546 ], [ 25.312500, 79.496652 ], [ 23.906250, 79.496652 ], [ 23.906250, 79.432371 ], [ 22.148438, 79.432371 ], [ 22.148438, 79.496652 ], [ 21.093750, 79.496652 ], [ 21.093750, 79.560546 ], [ 20.390625, 79.560546 ], [ 20.390625, 79.624056 ], [ 20.039062, 79.624056 ], [ 20.039062, 79.749932 ], [ 19.687500, 79.749932 ], [ 19.687500, 79.874297 ], [ 18.281250, 79.874297 ], [ 18.281250, 79.935918 ], [ 17.929688, 79.935918 ], [ 17.929688, 80.118564 ], [ 17.578125, 80.118564 ], [ 17.578125, 80.238501 ], [ 17.226562, 80.238501 ], [ 17.226562, 80.356995 ], [ 17.578125, 80.356995 ], [ 17.578125, 80.415707 ], [ 18.281250, 80.415707 ], [ 18.281250, 80.474065 ], [ 18.984375, 80.474065 ], [ 18.984375, 80.532071 ], [ 19.687500, 80.532071 ], [ 19.687500, 80.589727 ], [ 20.742188, 80.589727 ], [ 20.742188, 80.532071 ], [ 21.093750, 80.532071 ], [ 21.093750, 80.474065 ], [ 21.445312, 80.474065 ], [ 21.445312, 80.415707 ], [ 22.148438, 80.415707 ], [ 22.148438, 80.532071 ], [ 22.500000, 80.532071 ], [ 22.500000, 80.647035 ], [ 23.554688, 80.647035 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 22.851562, 78.278201 ], [ 23.203125, 78.278201 ], [ 23.203125, 78.061989 ], [ 23.554688, 78.061989 ], [ 23.554688, 77.989049 ], [ 24.257812, 77.989049 ], [ 24.257812, 77.915669 ], [ 24.609375, 77.915669 ], [ 24.609375, 77.841848 ], [ 24.257812, 77.841848 ], [ 24.257812, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.692870 ], [ 23.203125, 77.692870 ], [ 23.203125, 77.617709 ], [ 22.851562, 77.617709 ], [ 22.851562, 77.542096 ], [ 22.500000, 77.542096 ], [ 22.500000, 77.466028 ], [ 21.796875, 77.466028 ], [ 21.796875, 77.542096 ], [ 21.093750, 77.542096 ], [ 21.093750, 77.617709 ], [ 20.390625, 77.617709 ], [ 20.390625, 77.767582 ], [ 20.742188, 77.767582 ], [ 20.742188, 77.915669 ], [ 21.093750, 77.915669 ], [ 21.093750, 78.134493 ], [ 20.742188, 78.134493 ], [ 20.742188, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.349411 ], [ 22.148438, 78.349411 ], [ 22.148438, 78.420193 ], [ 22.851562, 78.420193 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 69.037142 ], [ 21.093750, 68.911005 ], [ 21.445312, 68.911005 ], [ 21.445312, 68.784144 ], [ 21.796875, 68.784144 ], [ 21.796875, 68.656555 ], [ 22.148438, 68.656555 ], [ 22.148438, 68.528235 ], [ 22.500000, 68.528235 ], [ 22.500000, 68.269387 ], [ 22.851562, 68.269387 ], [ 22.851562, 68.138852 ], [ 23.203125, 68.138852 ], [ 23.203125, 67.875541 ], [ 23.554688, 67.875541 ], [ 23.554688, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 65.802776 ], [ 14.765625, 65.802776 ], [ 14.765625, 65.946472 ], [ 15.117188, 65.946472 ], [ 15.117188, 66.372755 ], [ 15.468750, 66.372755 ], [ 15.468750, 66.791909 ], [ 15.820312, 66.791909 ], [ 15.820312, 67.067433 ], [ 16.171875, 67.067433 ], [ 16.171875, 67.474922 ], [ 16.523438, 67.474922 ], [ 16.523438, 67.742759 ], [ 16.875000, 67.742759 ], [ 16.875000, 68.007571 ], [ 17.578125, 68.007571 ], [ 17.578125, 68.269387 ], [ 17.929688, 68.269387 ], [ 17.929688, 68.528235 ], [ 18.632812, 68.528235 ], [ 18.632812, 68.399180 ], [ 20.039062, 68.399180 ], [ 20.039062, 69.037142 ], [ 21.093750, 69.037142 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 69.162558 ], [ 20.390625, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.007571 ], [ 23.203125, 68.007571 ], [ 23.203125, 67.204032 ], [ 23.554688, 67.204032 ], [ 23.554688, 65.946472 ], [ 22.851562, 65.946472 ], [ 22.851562, 65.802776 ], [ 14.414062, 65.802776 ], [ 14.414062, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 66.372755 ], [ 15.117188, 66.372755 ], [ 15.117188, 66.791909 ], [ 15.468750, 66.791909 ], [ 15.468750, 67.067433 ], [ 15.820312, 67.067433 ], [ 15.820312, 67.474922 ], [ 16.171875, 67.474922 ], [ 16.171875, 67.875541 ], [ 16.523438, 67.875541 ], [ 16.523438, 68.138852 ], [ 17.578125, 68.138852 ], [ 17.578125, 68.399180 ], [ 17.929688, 68.399180 ], [ 17.929688, 68.656555 ], [ 18.632812, 68.656555 ], [ 18.632812, 68.528235 ], [ 19.687500, 68.528235 ], [ 19.687500, 69.162558 ], [ 20.390625, 69.162558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.125000, 70.020587 ], [ 28.125000, 69.900118 ], [ 28.828125, 69.900118 ], [ 28.828125, 69.778952 ], [ 29.179688, 69.778952 ], [ 29.179688, 69.534518 ], [ 28.828125, 69.534518 ], [ 28.828125, 69.162558 ], [ 28.476562, 69.162558 ], [ 28.476562, 68.269387 ], [ 28.828125, 68.269387 ], [ 28.828125, 68.138852 ], [ 29.179688, 68.138852 ], [ 29.179688, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.474922 ], [ 29.531250, 67.474922 ], [ 29.531250, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.652977 ], [ 29.531250, 66.652977 ], [ 29.531250, 66.372755 ], [ 29.882812, 66.372755 ], [ 29.882812, 65.946472 ], [ 30.234375, 65.946472 ], [ 30.234375, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 66.089364 ], [ 23.554688, 66.089364 ], [ 23.554688, 67.875541 ], [ 23.203125, 67.875541 ], [ 23.203125, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.269387 ], [ 22.500000, 68.269387 ], [ 22.500000, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 22.148438, 68.911005 ], [ 22.148438, 68.784144 ], [ 23.203125, 68.784144 ], [ 23.203125, 68.911005 ], [ 23.554688, 68.911005 ], [ 23.554688, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.784144 ], [ 25.312500, 68.784144 ], [ 25.312500, 68.911005 ], [ 25.664062, 68.911005 ], [ 25.664062, 69.411242 ], [ 26.015625, 69.411242 ], [ 26.015625, 69.778952 ], [ 26.367188, 69.778952 ], [ 26.367188, 69.900118 ], [ 27.070312, 69.900118 ], [ 27.070312, 70.020587 ], [ 28.125000, 70.020587 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 70.140364 ], [ 27.773438, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.900118 ], [ 28.476562, 69.900118 ], [ 28.476562, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.411242 ], [ 28.476562, 69.411242 ], [ 28.476562, 68.784144 ], [ 28.125000, 68.784144 ], [ 28.125000, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.007571 ], [ 29.179688, 68.007571 ], [ 29.179688, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.609221 ], [ 29.531250, 67.609221 ], [ 29.531250, 67.339861 ], [ 29.179688, 67.339861 ], [ 29.179688, 67.067433 ], [ 28.828125, 67.067433 ], [ 28.828125, 66.791909 ], [ 29.179688, 66.791909 ], [ 29.179688, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 66.089364 ], [ 29.882812, 66.089364 ], [ 29.882812, 65.802776 ], [ 23.906250, 65.802776 ], [ 23.906250, 65.946472 ], [ 23.554688, 65.946472 ], [ 23.554688, 67.204032 ], [ 23.203125, 67.204032 ], [ 23.203125, 68.007571 ], [ 22.851562, 68.007571 ], [ 22.851562, 68.138852 ], [ 22.500000, 68.138852 ], [ 22.500000, 68.399180 ], [ 22.148438, 68.399180 ], [ 22.148438, 68.528235 ], [ 21.796875, 68.528235 ], [ 21.796875, 68.656555 ], [ 21.445312, 68.656555 ], [ 21.445312, 68.784144 ], [ 21.093750, 68.784144 ], [ 21.093750, 68.911005 ], [ 20.742188, 68.911005 ], [ 20.742188, 69.037142 ], [ 20.390625, 69.037142 ], [ 20.390625, 69.162558 ], [ 20.742188, 69.162558 ], [ 20.742188, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.162558 ], [ 21.796875, 69.162558 ], [ 21.796875, 68.911005 ], [ 23.554688, 68.911005 ], [ 23.554688, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 69.037142 ], [ 25.664062, 69.037142 ], [ 25.664062, 69.534518 ], [ 26.015625, 69.534518 ], [ 26.015625, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 70.140364 ], [ 27.773438, 70.140364 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.474922 ], [ 145.898438, -67.474922 ], [ 145.898438, -67.742759 ], [ 146.250000, -67.742759 ], [ 146.250000, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -68.007571 ], [ 147.304688, -68.007571 ], [ 147.304688, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.528235 ], [ 150.468750, -68.528235 ], [ 150.468750, -68.656555 ], [ 151.523438, -68.656555 ], [ 151.523438, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.911005 ], [ 153.984375, -68.911005 ], [ 153.984375, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.411242 ], [ 157.148438, -69.411242 ], [ 157.148438, -69.534518 ], [ 158.203125, -69.534518 ], [ 158.203125, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.140364 ], [ 160.312500, -70.140364 ], [ 160.312500, -70.259452 ], [ 160.664062, -70.259452 ], [ 160.664062, -70.377854 ], [ 161.015625, -70.377854 ], [ 161.015625, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.728979 ], [ 166.640625, -70.728979 ], [ 166.640625, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.074056 ], [ 169.101562, -71.074056 ], [ 169.101562, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.746432 ], [ 171.210938, -71.746432 ], [ 171.210938, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.711903 ], [ 170.156250, -72.711903 ], [ 170.156250, -73.124945 ], [ 169.804688, -73.124945 ], [ 169.804688, -73.428424 ], [ 169.453125, -73.428424 ], [ 169.453125, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.922469 ], [ 167.695312, -73.922469 ], [ 167.695312, -74.116047 ], [ 167.343750, -74.116047 ], [ 167.343750, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.402163 ], [ 165.937500, -74.402163 ], [ 165.937500, -74.590108 ], [ 165.585938, -74.590108 ], [ 165.585938, -74.867889 ], [ 165.234375, -74.867889 ], [ 165.234375, -75.050354 ], [ 164.882812, -75.050354 ], [ 164.882812, -75.230667 ], [ 164.531250, -75.230667 ], [ 164.531250, -75.408854 ], [ 164.179688, -75.408854 ], [ 164.179688, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -76.100796 ], [ 163.476562, -76.100796 ], [ 163.476562, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.389504 ], [ 164.179688, -77.389504 ], [ 164.179688, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.882812, -78.134493 ], [ 164.882812, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.278201 ], [ 165.937500, -78.278201 ], [ 165.937500, -78.349411 ], [ 166.640625, -78.349411 ], [ 166.640625, -78.560488 ], [ 166.992188, -78.560488 ], [ 166.992188, -78.767792 ], [ 166.640625, -78.767792 ], [ 166.640625, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.971386 ], [ 164.882812, -78.971386 ], [ 164.882812, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.105086 ], [ 163.125000, -79.105086 ], [ 163.125000, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.624056 ], [ 161.015625, -79.624056 ], [ 161.015625, -79.997168 ], [ 160.664062, -79.997168 ], [ 160.664062, -80.415707 ], [ 160.312500, -80.415707 ], [ 160.312500, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.983688 ], [ 160.312500, -80.983688 ], [ 160.312500, -81.093214 ], [ 160.664062, -81.093214 ], [ 160.664062, -81.201420 ], [ 161.015625, -81.201420 ], [ 161.015625, -81.361287 ], [ 161.367188, -81.361287 ], [ 161.367188, -81.569968 ], [ 161.718750, -81.569968 ], [ 161.718750, -81.773644 ], [ 162.070312, -81.773644 ], [ 162.070312, -81.972431 ], [ 162.421875, -81.972431 ], [ 162.421875, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.448764 ], [ 164.179688, -82.448764 ], [ 164.179688, -82.540604 ], [ 164.531250, -82.540604 ], [ 164.531250, -82.631333 ], [ 164.882812, -82.631333 ], [ 164.882812, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.585938, -82.765373 ], [ 165.585938, -82.853382 ], [ 165.937500, -82.853382 ], [ 165.937500, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.153111 ], [ 167.695312, -83.153111 ], [ 167.695312, -83.236426 ], [ 168.046875, -83.236426 ], [ 168.046875, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.480366 ], [ 169.101562, -83.480366 ], [ 169.101562, -83.715544 ], [ 169.453125, -83.715544 ], [ 169.453125, -83.867616 ], [ 169.804688, -83.867616 ], [ 169.804688, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.942272 ], [ 170.859375, -83.942272 ], [ 170.859375, -83.979259 ], [ 171.210938, -83.979259 ], [ 171.210938, -84.016022 ], [ 171.914062, -84.016022 ], [ 171.914062, -84.052561 ], [ 172.265625, -84.052561 ], [ 172.265625, -84.088878 ], [ 172.617188, -84.088878 ], [ 172.617188, -84.196507 ], [ 172.968750, -84.196507 ], [ 172.968750, -84.336980 ], [ 173.320312, -84.336980 ], [ 173.320312, -84.405941 ], [ 173.671875, -84.405941 ], [ 173.671875, -84.371566 ], [ 174.023438, -84.371566 ], [ 174.023438, -84.336980 ], [ 174.375000, -84.336980 ], [ 174.375000, -84.302183 ], [ 175.078125, -84.302183 ], [ 175.078125, -84.267172 ], [ 175.429688, -84.267172 ], [ 175.429688, -84.231947 ], [ 175.781250, -84.231947 ], [ 175.781250, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.507816 ], [ 178.593750, -84.507816 ], [ 178.593750, -84.574702 ], [ 178.945312, -84.574702 ], [ 178.945312, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.648438, -84.640777 ], [ 179.648438, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -84.640777 ], [ 180.351562, -84.640777 ], [ 180.351562, -84.440107 ], [ 180.703125, -84.440107 ], [ 180.703125, -84.231947 ], [ 181.054688, -84.231947 ], [ 181.054688, -84.160849 ], [ 181.406250, -84.160849 ], [ 181.406250, -84.231947 ], [ 181.757812, -84.231947 ], [ 181.757812, -85.200475 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 94.921875, -67.204032 ], [ 94.921875, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.067433 ], [ 99.140625, -67.067433 ], [ 99.140625, -67.204032 ], [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.231457 ], [ 101.953125, -66.231457 ], [ 101.953125, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -66.089364 ], [ 135.000000, -66.089364 ], [ 135.000000, -65.802776 ], [ 135.703125, -65.802776 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 137.109375, -66.791909 ], [ 137.109375, -66.930060 ], [ 138.164062, -66.930060 ], [ 138.164062, -66.791909 ], [ 145.195312, -66.791909 ], [ 145.195312, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.204032 ], [ 145.898438, -67.204032 ], [ 145.898438, -67.609221 ], [ 146.250000, -67.609221 ], [ 146.250000, -67.875541 ], [ 146.953125, -67.875541 ], [ 146.953125, -68.007571 ], [ 147.656250, -68.007571 ], [ 147.656250, -68.138852 ], [ 148.359375, -68.138852 ], [ 148.359375, -68.269387 ], [ 148.710938, -68.269387 ], [ 148.710938, -68.399180 ], [ 149.414062, -68.399180 ], [ 149.414062, -68.528235 ], [ 150.468750, -68.528235 ], [ 150.468750, -68.656555 ], [ 151.523438, -68.656555 ], [ 151.523438, -68.784144 ], [ 153.632812, -68.784144 ], [ 153.632812, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.162558 ], [ 156.445312, -69.162558 ], [ 156.445312, -69.287257 ], [ 157.148438, -69.287257 ], [ 157.148438, -69.411242 ], [ 158.203125, -69.411242 ], [ 158.203125, -69.534518 ], [ 158.906250, -69.534518 ], [ 158.906250, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.020587 ], [ 160.312500, -70.020587 ], [ 160.312500, -70.140364 ], [ 160.664062, -70.140364 ], [ 160.664062, -70.259452 ], [ 161.015625, -70.259452 ], [ 161.015625, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.728979 ], [ 163.476562, -70.728979 ], [ 163.476562, -70.612614 ], [ 164.179688, -70.612614 ], [ 164.179688, -70.728979 ], [ 166.992188, -70.728979 ], [ 166.992188, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.074056 ], [ 169.101562, -71.074056 ], [ 169.101562, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.635993 ], [ 170.859375, -71.635993 ], [ 170.859375, -72.289067 ], [ 170.507812, -72.289067 ], [ 170.507812, -72.501722 ], [ 170.156250, -72.501722 ], [ 170.156250, -72.711903 ], [ 169.804688, -72.711903 ], [ 169.804688, -73.022592 ], [ 169.453125, -73.022592 ], [ 169.453125, -73.428424 ], [ 169.101562, -73.428424 ], [ 169.101562, -73.627789 ], [ 168.750000, -73.627789 ], [ 168.750000, -73.726595 ], [ 167.695312, -73.726595 ], [ 167.695312, -73.922469 ], [ 167.343750, -73.922469 ], [ 167.343750, -74.211983 ], [ 166.640625, -74.211983 ], [ 166.640625, -74.307353 ], [ 165.937500, -74.307353 ], [ 165.937500, -74.496413 ], [ 165.585938, -74.496413 ], [ 165.585938, -74.867889 ], [ 165.234375, -74.867889 ], [ 165.234375, -75.050354 ], [ 164.882812, -75.050354 ], [ 164.882812, -75.230667 ], [ 164.531250, -75.230667 ], [ 164.531250, -75.408854 ], [ 164.179688, -75.408854 ], [ 164.179688, -75.584937 ], [ 163.828125, -75.584937 ], [ 163.828125, -75.758940 ], [ 163.476562, -75.758940 ], [ 163.476562, -76.434604 ], [ 163.125000, -76.434604 ], [ 163.125000, -76.840816 ], [ 163.476562, -76.840816 ], [ 163.476562, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.617709 ], [ 164.179688, -77.617709 ], [ 164.179688, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.882812, -78.134493 ], [ 164.882812, -78.206563 ], [ 165.585938, -78.206563 ], [ 165.585938, -78.278201 ], [ 166.289062, -78.278201 ], [ 166.289062, -78.420193 ], [ 166.640625, -78.420193 ], [ 166.640625, -78.630006 ], [ 166.992188, -78.630006 ], [ 166.992188, -78.767792 ], [ 166.289062, -78.767792 ], [ 166.289062, -78.836065 ], [ 165.585938, -78.836065 ], [ 165.585938, -78.903929 ], [ 164.882812, -78.903929 ], [ 164.882812, -78.971386 ], [ 164.531250, -78.971386 ], [ 164.531250, -79.038437 ], [ 163.828125, -79.038437 ], [ 163.828125, -79.105086 ], [ 161.718750, -79.105086 ], [ 161.718750, -79.237185 ], [ 161.367188, -79.237185 ], [ 161.367188, -79.432371 ], [ 161.015625, -79.432371 ], [ 161.015625, -79.624056 ], [ 160.664062, -79.624056 ], [ 160.664062, -80.356995 ], [ 160.312500, -80.356995 ], [ 160.312500, -80.647035 ], [ 159.960938, -80.647035 ], [ 159.960938, -80.872827 ], [ 159.609375, -80.872827 ], [ 159.609375, -80.983688 ], [ 159.960938, -80.983688 ], [ 159.960938, -81.093214 ], [ 160.312500, -81.093214 ], [ 160.312500, -81.147481 ], [ 160.664062, -81.147481 ], [ 160.664062, -81.255032 ], [ 161.015625, -81.255032 ], [ 161.015625, -81.466261 ], [ 161.367188, -81.466261 ], [ 161.367188, -81.773644 ], [ 161.718750, -81.773644 ], [ 161.718750, -81.873641 ], [ 162.070312, -81.873641 ], [ 162.070312, -81.972431 ], [ 162.421875, -81.972431 ], [ 162.421875, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.494824 ], [ 164.179688, -82.494824 ], [ 164.179688, -82.586106 ], [ 164.531250, -82.586106 ], [ 164.531250, -82.676285 ], [ 164.882812, -82.676285 ], [ 164.882812, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.809511 ], [ 165.585938, -82.809511 ], [ 165.585938, -82.896987 ], [ 165.937500, -82.896987 ], [ 165.937500, -82.983404 ], [ 166.289062, -82.983404 ], [ 166.289062, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.343750, -83.111071 ], [ 167.343750, -83.153111 ], [ 167.695312, -83.153111 ], [ 167.695312, -83.236426 ], [ 168.046875, -83.236426 ], [ 168.046875, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.559717 ], [ 169.101562, -83.559717 ], [ 169.101562, -83.829945 ], [ 169.804688, -83.829945 ], [ 169.804688, -83.867616 ], [ 170.156250, -83.867616 ], [ 170.156250, -83.905058 ], [ 170.859375, -83.905058 ], [ 170.859375, -83.942272 ], [ 171.210938, -83.942272 ], [ 171.210938, -83.979259 ], [ 171.914062, -83.979259 ], [ 171.914062, -84.016022 ], [ 172.265625, -84.016022 ], [ 172.265625, -84.196507 ], [ 172.617188, -84.196507 ], [ 172.617188, -84.336980 ], [ 172.968750, -84.336980 ], [ 172.968750, -84.405941 ], [ 173.320312, -84.405941 ], [ 173.320312, -84.371566 ], [ 173.671875, -84.371566 ], [ 173.671875, -84.336980 ], [ 174.023438, -84.336980 ], [ 174.023438, -84.302183 ], [ 174.375000, -84.302183 ], [ 174.375000, -84.267172 ], [ 174.726562, -84.267172 ], [ 174.726562, -84.231947 ], [ 175.078125, -84.231947 ], [ 175.078125, -84.196507 ], [ 175.429688, -84.196507 ], [ 175.429688, -84.160849 ], [ 176.132812, -84.160849 ], [ 176.132812, -84.196507 ], [ 176.484375, -84.196507 ], [ 176.484375, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.336980 ], [ 177.539062, -84.336980 ], [ 177.539062, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.440107 ], [ 178.242188, -84.440107 ], [ 178.242188, -84.474065 ], [ 178.593750, -84.474065 ], [ 178.593750, -84.541361 ], [ 178.945312, -84.541361 ], [ 178.945312, -84.574702 ], [ 179.296875, -84.574702 ], [ 179.296875, -84.640777 ], [ 179.648438, -84.640777 ], [ 179.648438, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -84.574702 ], [ 180.351562, -84.574702 ], [ 180.351562, -84.302183 ], [ 180.703125, -84.302183 ], [ 180.703125, -84.160849 ], [ 181.054688, -84.160849 ], [ 181.054688, -84.196507 ], [ 181.406250, -84.196507 ], [ 181.406250, -84.267172 ], [ 181.757812, -84.267172 ], [ 181.757812, -85.200475 ], [ 180.000000, -85.200475 ], [ 88.242188, -85.200475 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.648438, -67.067433 ], [ 89.648438, -67.204032 ], [ 91.054688, -67.204032 ], [ 91.054688, -67.067433 ], [ 92.812500, -67.067433 ], [ 92.812500, -67.204032 ], [ 93.867188, -67.204032 ], [ 93.867188, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.204032 ], [ 95.273438, -67.204032 ], [ 95.273438, -67.339861 ], [ 96.328125, -67.339861 ], [ 96.328125, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.067433 ], [ 98.789062, -67.067433 ], [ 98.789062, -67.204032 ], [ 99.843750, -67.204032 ], [ 99.843750, -66.930060 ], [ 100.195312, -66.930060 ], [ 100.195312, -66.652977 ], [ 100.546875, -66.652977 ], [ 100.546875, -66.513260 ], [ 100.898438, -66.513260 ], [ 100.898438, -66.372755 ], [ 101.250000, -66.372755 ], [ 101.250000, -66.231457 ], [ 101.601562, -66.231457 ], [ 101.601562, -66.089364 ], [ 101.953125, -66.089364 ], [ 101.953125, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.089364 ], [ 104.414062, -66.089364 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 109.687500, -66.791909 ], [ 109.687500, -66.652977 ], [ 110.390625, -66.652977 ], [ 110.390625, -66.513260 ], [ 110.742188, -66.513260 ], [ 110.742188, -66.372755 ], [ 111.093750, -66.372755 ], [ 111.093750, -66.231457 ], [ 111.445312, -66.231457 ], [ 111.445312, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 114.257812, -65.946472 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.513260 ], [ 114.960938, -66.513260 ], [ 114.960938, -66.652977 ], [ 116.367188, -66.652977 ], [ 116.367188, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.773438, -66.930060 ], [ 117.773438, -67.067433 ], [ 118.828125, -67.067433 ], [ 118.828125, -67.204032 ], [ 120.234375, -67.204032 ], [ 120.234375, -67.067433 ], [ 120.937500, -67.067433 ], [ 120.937500, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.652977 ], [ 121.992188, -66.652977 ], [ 121.992188, -66.513260 ], [ 122.695312, -66.513260 ], [ 122.695312, -66.372755 ], [ 123.398438, -66.372755 ], [ 123.398438, -66.513260 ], [ 124.453125, -66.513260 ], [ 124.453125, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 126.914062, -66.513260 ], [ 126.914062, -66.652977 ], [ 129.375000, -66.652977 ], [ 129.375000, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -66.089364 ], [ 134.648438, -66.089364 ], [ 134.648438, -65.802776 ], [ 135.703125, -65.802776 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.296875, -67.067433 ], [ 89.296875, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ] ] ], [ [ [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 91.757812, -67.067433 ], [ 91.757812, -67.204032 ], [ 91.406250, -67.204032 ] ] ], [ [ [ 100.195312, -67.204032 ], [ 100.195312, -67.067433 ], [ 100.546875, -67.067433 ], [ 100.546875, -66.791909 ], [ 100.898438, -66.791909 ], [ 100.898438, -66.513260 ], [ 101.601562, -66.513260 ], [ 101.601562, -66.372755 ], [ 101.953125, -66.372755 ], [ 101.953125, -66.089364 ], [ 102.304688, -66.089364 ], [ 102.304688, -65.946472 ], [ 102.656250, -65.946472 ], [ 102.656250, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.802776 ], [ 104.062500, -65.802776 ], [ 104.062500, -65.946472 ], [ 104.414062, -65.946472 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.513260 ], [ 105.117188, -66.513260 ], [ 105.117188, -66.652977 ], [ 105.468750, -66.652977 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.652977 ], [ 110.742188, -66.652977 ], [ 110.742188, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.089364 ], [ 114.257812, -66.089364 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.204032 ], [ 100.195312, -67.204032 ] ] ], [ [ [ 121.289062, -67.204032 ], [ 121.289062, -67.067433 ], [ 121.640625, -67.067433 ], [ 121.640625, -66.930060 ], [ 121.992188, -66.930060 ], [ 121.992188, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 127.265625, -66.513260 ], [ 127.265625, -66.652977 ], [ 127.968750, -66.652977 ], [ 127.968750, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.648438, -66.231457 ], [ 134.648438, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.512963 ], [ 135.703125, -65.512963 ], [ 135.703125, -66.372755 ], [ 136.054688, -66.372755 ], [ 136.054688, -66.652977 ], [ 136.406250, -66.652977 ], [ 136.406250, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.930060 ], [ 140.625000, -66.930060 ], [ 140.625000, -66.791909 ], [ 144.843750, -66.791909 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.204032 ], [ 121.289062, -67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.593750, -66.652977 ], [ 88.593750, -66.930060 ], [ 88.945312, -66.930060 ], [ 88.945312, -67.067433 ], [ 89.648438, -67.067433 ], [ 89.648438, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.652977 ], [ 88.593750, -66.652977 ] ] ], [ [ [ 91.406250, -67.204032 ], [ 91.406250, -67.067433 ], [ 92.460938, -67.067433 ], [ 92.460938, -67.204032 ], [ 91.406250, -67.204032 ] ] ], [ [ [ 93.867188, -67.204032 ], [ 93.867188, -67.067433 ], [ 94.921875, -67.067433 ], [ 94.921875, -67.204032 ], [ 93.867188, -67.204032 ] ] ], [ [ [ 99.843750, -67.204032 ], [ 99.843750, -66.930060 ], [ 100.195312, -66.930060 ], [ 100.195312, -66.652977 ], [ 100.546875, -66.652977 ], [ 100.546875, -66.513260 ], [ 100.898438, -66.513260 ], [ 100.898438, -66.372755 ], [ 101.250000, -66.372755 ], [ 101.250000, -66.231457 ], [ 101.601562, -66.231457 ], [ 101.601562, -66.089364 ], [ 101.953125, -66.089364 ], [ 101.953125, -65.802776 ], [ 102.304688, -65.802776 ], [ 102.304688, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.946472 ], [ 104.062500, -65.946472 ], [ 104.062500, -66.089364 ], [ 104.414062, -66.089364 ], [ 104.414062, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.513260 ], [ 105.468750, -66.513260 ], [ 105.468750, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.930060 ], [ 108.632812, -66.930060 ], [ 108.632812, -66.791909 ], [ 109.687500, -66.791909 ], [ 109.687500, -66.652977 ], [ 110.390625, -66.652977 ], [ 110.390625, -66.513260 ], [ 110.742188, -66.513260 ], [ 110.742188, -66.372755 ], [ 111.093750, -66.372755 ], [ 111.093750, -66.231457 ], [ 111.445312, -66.231457 ], [ 111.445312, -66.089364 ], [ 113.203125, -66.089364 ], [ 113.203125, -65.946472 ], [ 114.257812, -65.946472 ], [ 114.257812, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.513260 ], [ 114.960938, -66.513260 ], [ 114.960938, -66.652977 ], [ 116.367188, -66.652977 ], [ 116.367188, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.930060 ], [ 117.773438, -66.930060 ], [ 117.773438, -67.067433 ], [ 118.476562, -67.067433 ], [ 118.476562, -67.204032 ], [ 99.843750, -67.204032 ] ] ], [ [ [ 120.585938, -67.204032 ], [ 120.585938, -67.067433 ], [ 120.937500, -67.067433 ], [ 120.937500, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.652977 ], [ 121.992188, -66.652977 ], [ 121.992188, -66.513260 ], [ 122.695312, -66.513260 ], [ 122.695312, -66.372755 ], [ 123.398438, -66.372755 ], [ 123.398438, -66.513260 ], [ 124.453125, -66.513260 ], [ 124.453125, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.513260 ], [ 126.914062, -66.513260 ], [ 126.914062, -66.652977 ], [ 129.375000, -66.652977 ], [ 129.375000, -66.513260 ], [ 130.429688, -66.513260 ], [ 130.429688, -66.372755 ], [ 133.593750, -66.372755 ], [ 133.593750, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -66.089364 ], [ 134.648438, -66.089364 ], [ 134.648438, -65.946472 ], [ 135.000000, -65.946472 ], [ 135.000000, -65.366837 ], [ 135.351562, -65.366837 ], [ 135.351562, -65.802776 ], [ 135.703125, -65.802776 ], [ 135.703125, -66.231457 ], [ 136.054688, -66.231457 ], [ 136.054688, -66.513260 ], [ 136.406250, -66.513260 ], [ 136.406250, -66.791909 ], [ 137.109375, -66.791909 ], [ 137.109375, -66.930060 ], [ 138.164062, -66.930060 ], [ 138.164062, -66.791909 ], [ 145.195312, -66.791909 ], [ 145.195312, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -67.204032 ], [ 120.585938, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.609375, 1.757537 ], [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 114.609375, 1.757537 ] ] ], [ [ [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.757537 ], [ 104.414062, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.148438, 1.757537 ], [ 112.148438, 1.406109 ], [ 111.796875, 1.406109 ], [ 111.796875, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 112.148438, 1.757537 ] ] ], [ [ [ 104.062500, 1.757537 ], [ 104.062500, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.757537 ], [ 104.062500, 1.757537 ] ] ], [ [ [ 114.257812, 1.757537 ], [ 114.257812, 1.406109 ], [ 112.851562, 1.406109 ], [ 112.851562, 1.757537 ], [ 114.257812, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.644022 ], [ 178.593750, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.644022 ], [ 178.593750, -17.644022 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -16.972741 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.299051 ], [ 180.000000, -16.299051 ] ] ], [ [ [ 180.351562, -15.961329 ], [ 180.351562, -16.299051 ], [ 180.000000, -16.299051 ], [ 180.000000, -15.961329 ], [ 180.351562, -15.961329 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.308688 ], [ 178.593750, -17.644022 ], [ 178.242188, -17.644022 ], [ 178.242188, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.644022 ], [ 177.539062, -17.644022 ], [ 177.539062, -17.308688 ], [ 178.593750, -17.308688 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -16.972741 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.299051 ], [ 180.000000, -16.299051 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.156250, -9.102097 ], [ 125.156250, -9.795678 ], [ 124.804688, -9.795678 ], [ 124.804688, -10.141932 ], [ 124.453125, -10.141932 ], [ 124.453125, -10.487812 ], [ 123.398438, -10.487812 ], [ 123.398438, -9.795678 ], [ 124.101562, -9.795678 ], [ 124.101562, -9.449062 ], [ 124.453125, -9.449062 ], [ 124.453125, -9.102097 ], [ 125.156250, -9.102097 ] ] ], [ [ [ 119.882812, -9.449062 ], [ 119.882812, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -10.141932 ], [ 119.531250, -10.141932 ], [ 119.531250, -9.795678 ], [ 118.828125, -9.795678 ], [ 118.828125, -9.449062 ], [ 119.882812, -9.449062 ] ] ], [ [ [ 118.828125, -8.407168 ], [ 118.828125, -8.754795 ], [ 118.125000, -8.754795 ], [ 118.125000, -9.102097 ], [ 116.718750, -9.102097 ], [ 116.718750, -8.754795 ], [ 117.070312, -8.754795 ], [ 117.070312, -8.407168 ], [ 118.828125, -8.407168 ] ] ], [ [ [ 122.695312, -8.407168 ], [ 122.695312, -8.754795 ], [ 122.343750, -8.754795 ], [ 122.343750, -9.102097 ], [ 120.234375, -9.102097 ], [ 120.234375, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 122.695312, -8.407168 ] ] ], [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.296875, -1.054628 ], [ 134.296875, -3.162456 ], [ 135.000000, -3.162456 ], [ 135.000000, -3.513421 ], [ 135.703125, -3.513421 ], [ 135.703125, -3.162456 ], [ 136.054688, -3.162456 ], [ 136.054688, -2.811371 ], [ 136.406250, -2.811371 ], [ 136.406250, -2.460181 ], [ 136.757812, -2.460181 ], [ 136.757812, -2.108899 ], [ 137.460938, -2.108899 ], [ 137.460938, -1.757537 ], [ 138.515625, -1.757537 ], [ 138.515625, -2.108899 ], [ 139.218750, -2.108899 ], [ 139.218750, -2.460181 ], [ 140.976562, -2.460181 ], [ 140.976562, -9.102097 ], [ 140.625000, -9.102097 ], [ 140.625000, -8.754795 ], [ 140.273438, -8.754795 ], [ 140.273438, -8.407168 ], [ 139.570312, -8.407168 ], [ 139.570312, -8.059230 ], [ 139.218750, -8.059230 ], [ 139.218750, -8.407168 ], [ 137.812500, -8.407168 ], [ 137.812500, -8.059230 ], [ 138.164062, -8.059230 ], [ 138.164062, -7.710992 ], [ 138.515625, -7.710992 ], [ 138.515625, -6.315299 ], [ 138.164062, -6.315299 ], [ 138.164062, -5.615986 ], [ 137.812500, -5.615986 ], [ 137.812500, -5.266008 ], [ 137.109375, -5.266008 ], [ 137.109375, -4.915833 ], [ 136.406250, -4.915833 ], [ 136.406250, -4.565474 ], [ 134.648438, -4.565474 ], [ 134.648438, -4.214943 ], [ 133.945312, -4.214943 ], [ 133.945312, -3.864255 ], [ 133.242188, -3.864255 ], [ 133.242188, -4.214943 ], [ 132.890625, -4.214943 ], [ 132.890625, -3.162456 ], [ 132.187500, -3.162456 ], [ 132.187500, -2.811371 ], [ 132.890625, -2.811371 ], [ 132.890625, -2.460181 ], [ 133.593750, -2.460181 ], [ 133.593750, -2.108899 ], [ 131.835938, -2.108899 ], [ 131.835938, -1.757537 ], [ 131.132812, -1.757537 ], [ 131.132812, -1.406109 ], [ 130.429688, -1.406109 ], [ 130.429688, -1.054628 ], [ 131.484375, -1.054628 ], [ 131.484375, -0.703107 ], [ 132.539062, -0.703107 ], [ 132.539062, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 107.226562, -5.965754 ], [ 107.226562, -6.315299 ], [ 108.632812, -6.315299 ], [ 108.632812, -6.664608 ], [ 109.335938, -6.664608 ], [ 109.335938, -7.013668 ], [ 110.390625, -7.013668 ], [ 110.390625, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.315299 ], [ 111.093750, -6.315299 ], [ 111.093750, -6.664608 ], [ 111.796875, -6.664608 ], [ 111.796875, -7.013668 ], [ 112.500000, -7.013668 ], [ 112.500000, -7.362467 ], [ 112.851562, -7.362467 ], [ 112.851562, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.059230 ], [ 115.312500, -8.059230 ], [ 115.312500, -8.754795 ], [ 113.906250, -8.754795 ], [ 113.906250, -8.407168 ], [ 110.742188, -8.407168 ], [ 110.742188, -8.059230 ], [ 109.687500, -8.059230 ], [ 109.687500, -7.710992 ], [ 107.226562, -7.710992 ], [ 107.226562, -7.362467 ], [ 106.171875, -7.362467 ], [ 106.171875, -7.013668 ], [ 105.820312, -7.013668 ], [ 105.820312, -6.315299 ], [ 106.171875, -6.315299 ], [ 106.171875, -5.965754 ], [ 107.226562, -5.965754 ] ] ], [ [ [ 118.125000, 1.757537 ], [ 118.125000, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -1.054628 ], [ 117.070312, -1.054628 ], [ 117.070312, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -2.108899 ], [ 116.367188, -2.108899 ], [ 116.367188, -3.162456 ], [ 116.015625, -3.162456 ], [ 116.015625, -3.864255 ], [ 115.312500, -3.864255 ], [ 115.312500, -4.214943 ], [ 114.960938, -4.214943 ], [ 114.960938, -3.864255 ], [ 114.609375, -3.864255 ], [ 114.609375, -3.513421 ], [ 113.203125, -3.513421 ], [ 113.203125, -3.162456 ], [ 112.851562, -3.162456 ], [ 112.851562, -3.513421 ], [ 111.796875, -3.513421 ], [ 111.796875, -3.162456 ], [ 110.390625, -3.162456 ], [ 110.390625, -2.460181 ], [ 110.039062, -2.460181 ], [ 110.039062, -1.757537 ], [ 109.687500, -1.757537 ], [ 109.687500, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 0.703107 ], [ 111.093750, 0.703107 ], [ 111.093750, 1.054628 ], [ 112.500000, 1.054628 ], [ 112.500000, 1.406109 ], [ 113.203125, 1.406109 ], [ 113.203125, 1.054628 ], [ 114.609375, 1.054628 ], [ 114.609375, 1.757537 ], [ 118.125000, 1.757537 ] ] ], [ [ [ 123.046875, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.059230 ], [ 123.046875, -8.059230 ], [ 123.046875, -8.407168 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.664608 ], [ 133.945312, -6.664608 ], [ 133.945312, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 101.953125, 1.757537 ], [ 101.953125, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 0.351560 ], [ 103.359375, 0.351560 ], [ 103.359375, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -2.108899 ], [ 104.765625, -2.108899 ], [ 104.765625, -2.460181 ], [ 105.468750, -2.460181 ], [ 105.468750, -2.811371 ], [ 105.820312, -2.811371 ], [ 105.820312, -3.162456 ], [ 106.171875, -3.162456 ], [ 106.171875, -3.864255 ], [ 105.820312, -3.864255 ], [ 105.820312, -5.965754 ], [ 104.414062, -5.965754 ], [ 104.414062, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -5.266008 ], [ 103.710938, -5.266008 ], [ 103.710938, -4.915833 ], [ 103.359375, -4.915833 ], [ 103.359375, -4.565474 ], [ 102.656250, -4.565474 ], [ 102.656250, -3.864255 ], [ 102.304688, -3.864255 ], [ 102.304688, -3.513421 ], [ 101.953125, -3.513421 ], [ 101.953125, -3.162456 ], [ 101.250000, -3.162456 ], [ 101.250000, -2.460181 ], [ 100.898438, -2.460181 ], [ 100.898438, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 1.406109 ], [ 98.789062, 1.406109 ], [ 98.789062, 1.757537 ], [ 101.953125, 1.757537 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 122.343750, -4.565474 ], [ 122.343750, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.214943 ], [ 121.289062, -4.214943 ], [ 121.289062, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -4.915833 ], [ 120.585938, -4.915833 ], [ 120.585938, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -3.513421 ], [ 119.179688, -3.513421 ], [ 119.179688, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.460181 ], [ 119.179688, -2.460181 ], [ 119.179688, -1.054628 ], [ 119.531250, -1.054628 ], [ 119.531250, -0.351560 ], [ 119.882812, -0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -1.757537 ], [ 121.640625, -1.757537 ], [ 121.640625, -2.108899 ], [ 121.992188, -2.108899 ], [ 121.992188, -2.811371 ], [ 122.343750, -2.811371 ], [ 122.343750, -3.864255 ], [ 122.695312, -3.864255 ], [ 122.695312, -4.565474 ] ] ], [ [ [ 125.156250, 1.054628 ], [ 124.804688, 1.054628 ], [ 124.804688, 0.351560 ], [ 120.234375, 0.351560 ], [ 120.234375, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.054628 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 127.617188, -0.703107 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.703107 ] ] ], [ [ [ 129.726562, -2.811371 ], [ 129.726562, -3.162456 ], [ 130.429688, -3.162456 ], [ 130.429688, -3.513421 ], [ 130.781250, -3.513421 ], [ 130.781250, -3.864255 ], [ 130.078125, -3.864255 ], [ 130.078125, -3.513421 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 129.726562, -2.811371 ] ] ], [ [ [ 126.914062, -3.162456 ], [ 126.914062, -3.513421 ], [ 127.265625, -3.513421 ], [ 127.265625, -3.864255 ], [ 126.210938, -3.864255 ], [ 126.210938, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -3.162456 ], [ 126.914062, -3.162456 ] ] ], [ [ [ 123.398438, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -1.054628 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -1.054628 ], [ 127.968750, -1.054628 ], [ 127.968750, -0.703107 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 123.046875, -4.565474 ], [ 123.046875, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -4.915833 ], [ 122.695312, -4.915833 ], [ 122.695312, -4.565474 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.102097 ], [ 119.882812, -9.449062 ], [ 120.234375, -9.449062 ], [ 120.234375, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -10.141932 ], [ 119.531250, -10.141932 ], [ 119.531250, -9.795678 ], [ 118.828125, -9.795678 ], [ 118.828125, -9.449062 ], [ 119.531250, -9.449062 ], [ 119.531250, -9.102097 ], [ 119.882812, -9.102097 ] ] ], [ [ [ 124.804688, -8.754795 ], [ 124.804688, -9.449062 ], [ 124.453125, -9.449062 ], [ 124.453125, -10.141932 ], [ 123.398438, -10.141932 ], [ 123.398438, -9.449062 ], [ 123.750000, -9.449062 ], [ 123.750000, -9.102097 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.754795 ], [ 124.804688, -8.754795 ] ] ], [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.811371 ], [ 135.000000, -2.811371 ], [ 135.000000, -3.162456 ], [ 135.703125, -3.162456 ], [ 135.703125, -2.460181 ], [ 136.054688, -2.460181 ], [ 136.054688, -2.108899 ], [ 136.406250, -2.108899 ], [ 136.406250, -1.757537 ], [ 137.109375, -1.757537 ], [ 137.109375, -1.406109 ], [ 138.164062, -1.406109 ], [ 138.164062, -1.757537 ], [ 139.218750, -1.757537 ], [ 139.218750, -2.108899 ], [ 140.273438, -2.108899 ], [ 140.273438, -2.460181 ], [ 140.976562, -2.460181 ], [ 140.976562, -9.102097 ], [ 140.625000, -9.102097 ], [ 140.625000, -8.754795 ], [ 140.273438, -8.754795 ], [ 140.273438, -8.407168 ], [ 139.921875, -8.407168 ], [ 139.921875, -8.059230 ], [ 138.515625, -8.059230 ], [ 138.515625, -8.407168 ], [ 137.460938, -8.407168 ], [ 137.460938, -8.059230 ], [ 137.812500, -8.059230 ], [ 137.812500, -7.362467 ], [ 138.515625, -7.362467 ], [ 138.515625, -6.664608 ], [ 138.164062, -6.664608 ], [ 138.164062, -5.615986 ], [ 137.812500, -5.615986 ], [ 137.812500, -5.266008 ], [ 137.109375, -5.266008 ], [ 137.109375, -4.915833 ], [ 136.406250, -4.915833 ], [ 136.406250, -4.565474 ], [ 135.703125, -4.565474 ], [ 135.703125, -4.214943 ], [ 134.296875, -4.214943 ], [ 134.296875, -3.864255 ], [ 132.539062, -3.864255 ], [ 132.539062, -3.162456 ], [ 131.835938, -3.162456 ], [ 131.835938, -2.811371 ], [ 132.539062, -2.811371 ], [ 132.539062, -2.460181 ], [ 133.593750, -2.460181 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 132.187500, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -1.054628 ], [ 130.429688, -1.054628 ], [ 130.429688, -0.703107 ], [ 131.484375, -0.703107 ], [ 131.484375, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 118.828125, -8.059230 ], [ 118.828125, -8.407168 ], [ 118.476562, -8.407168 ], [ 118.476562, -8.754795 ], [ 117.070312, -8.754795 ], [ 117.070312, -8.407168 ], [ 117.773438, -8.407168 ], [ 117.773438, -8.059230 ], [ 118.828125, -8.059230 ] ] ], [ [ [ 121.992188, -8.407168 ], [ 121.992188, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 121.992188, -8.407168 ] ] ], [ [ [ 105.820312, -5.615986 ], [ 104.062500, -5.615986 ], [ 104.062500, -5.266008 ], [ 103.710938, -5.266008 ], [ 103.710938, -4.915833 ], [ 103.007812, -4.915833 ], [ 103.007812, -4.565474 ], [ 102.304688, -4.565474 ], [ 102.304688, -3.864255 ], [ 101.953125, -3.864255 ], [ 101.953125, -3.513421 ], [ 101.601562, -3.513421 ], [ 101.601562, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.108899 ], [ 100.898438, -2.108899 ], [ 100.898438, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 0.703107 ], [ 98.789062, 0.703107 ], [ 98.789062, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 1.757537 ], [ 101.953125, 1.757537 ], [ 101.953125, 1.406109 ], [ 102.304688, 1.406109 ], [ 102.304688, 1.054628 ], [ 102.656250, 1.054628 ], [ 102.656250, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.351560 ], [ 103.710938, 0.351560 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.062500, -1.054628 ], [ 104.062500, -1.406109 ], [ 104.414062, -1.406109 ], [ 104.414062, -2.108899 ], [ 105.468750, -2.108899 ], [ 105.468750, -2.460181 ], [ 105.820312, -2.460181 ], [ 105.820312, -5.615986 ] ] ], [ [ [ 117.773438, 1.757537 ], [ 117.773438, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 1.054628 ], [ 117.773438, 1.054628 ], [ 117.773438, 0.703107 ], [ 117.421875, 0.703107 ], [ 117.421875, -1.054628 ], [ 116.718750, -1.054628 ], [ 116.718750, -1.406109 ], [ 116.367188, -1.406109 ], [ 116.367188, -3.162456 ], [ 116.015625, -3.162456 ], [ 116.015625, -3.864255 ], [ 115.664062, -3.864255 ], [ 115.664062, -3.513421 ], [ 115.312500, -3.513421 ], [ 115.312500, -3.864255 ], [ 114.609375, -3.864255 ], [ 114.609375, -3.513421 ], [ 114.257812, -3.513421 ], [ 114.257812, -3.162456 ], [ 113.203125, -3.162456 ], [ 113.203125, -2.811371 ], [ 112.851562, -2.811371 ], [ 112.851562, -3.162456 ], [ 111.445312, -3.162456 ], [ 111.445312, -2.811371 ], [ 110.039062, -2.811371 ], [ 110.039062, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 0.000000 ], [ 108.632812, 0.000000 ], [ 108.632812, 1.054628 ], [ 108.984375, 1.054628 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 111.796875, 1.054628 ], [ 111.796875, 1.406109 ], [ 112.148438, 1.406109 ], [ 112.148438, 1.757537 ], [ 112.851562, 1.757537 ], [ 112.851562, 1.406109 ], [ 114.257812, 1.406109 ], [ 114.257812, 1.757537 ], [ 117.773438, 1.757537 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.296875, -6.315299 ], [ 134.296875, -6.664608 ], [ 133.945312, -6.664608 ], [ 133.945312, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 122.343750, -4.565474 ], [ 121.289062, -4.565474 ], [ 121.289062, -3.864255 ], [ 120.585938, -3.864255 ], [ 120.585938, -3.162456 ], [ 120.937500, -3.162456 ], [ 120.937500, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -5.615986 ], [ 119.179688, -5.615986 ], [ 119.179688, -4.915833 ], [ 119.531250, -4.915833 ], [ 119.531250, -3.864255 ], [ 119.179688, -3.864255 ], [ 119.179688, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.811371 ], [ 118.476562, -2.811371 ], [ 118.476562, -2.460181 ], [ 119.179688, -2.460181 ], [ 119.179688, -0.351560 ], [ 119.531250, -0.351560 ], [ 119.531250, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -1.054628 ], [ 121.289062, -1.054628 ], [ 121.289062, -0.703107 ], [ 122.343750, -0.703107 ], [ 122.343750, -0.351560 ], [ 123.046875, -0.351560 ], [ 123.046875, -1.054628 ], [ 122.343750, -1.054628 ], [ 122.343750, -1.406109 ], [ 121.992188, -1.406109 ], [ 121.992188, -1.757537 ], [ 121.289062, -1.757537 ], [ 121.289062, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.460181 ], [ 121.992188, -2.460181 ], [ 121.992188, -3.162456 ], [ 122.343750, -3.162456 ], [ 122.343750, -3.513421 ], [ 121.992188, -3.513421 ], [ 121.992188, -3.864255 ], [ 122.343750, -3.864255 ], [ 122.343750, -4.214943 ], [ 122.343750, -4.565474 ] ] ], [ [ [ 105.820312, -5.615986 ], [ 107.226562, -5.615986 ], [ 107.226562, -5.965754 ], [ 107.578125, -5.965754 ], [ 107.578125, -6.315299 ], [ 108.281250, -6.315299 ], [ 108.281250, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.315299 ], [ 111.445312, -6.315299 ], [ 111.445312, -6.664608 ], [ 112.500000, -6.664608 ], [ 112.500000, -7.013668 ], [ 112.851562, -7.013668 ], [ 112.851562, -7.362467 ], [ 113.203125, -7.362467 ], [ 113.203125, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -8.059230 ], [ 115.312500, -8.059230 ], [ 115.312500, -8.407168 ], [ 113.554688, -8.407168 ], [ 113.554688, -8.059230 ], [ 109.687500, -8.059230 ], [ 109.687500, -7.710992 ], [ 107.226562, -7.710992 ], [ 107.226562, -7.362467 ], [ 106.523438, -7.362467 ], [ 106.523438, -7.013668 ], [ 106.171875, -7.013668 ], [ 106.171875, -6.664608 ], [ 105.468750, -6.664608 ], [ 105.468750, -5.965754 ], [ 105.820312, -5.965754 ], [ 105.820312, -5.615986 ] ] ], [ [ [ 124.804688, 1.406109 ], [ 124.804688, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 0.703107 ], [ 124.101562, 0.703107 ], [ 124.101562, 0.351560 ], [ 122.695312, 0.351560 ], [ 122.695312, 0.703107 ], [ 120.585938, 0.703107 ], [ 120.585938, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 120.585938, 1.054628 ], [ 120.585938, 1.406109 ], [ 120.937500, 1.406109 ], [ 120.937500, 1.054628 ], [ 124.101562, 1.054628 ], [ 124.101562, 1.406109 ], [ 124.804688, 1.406109 ] ] ], [ [ [ 127.968750, -0.351560 ], [ 127.617188, -0.351560 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.757537 ], [ 128.320312, 1.757537 ], [ 128.320312, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 128.320312, 0.703107 ], [ 128.320312, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.351560 ] ] ], [ [ [ 129.375000, -2.460181 ], [ 129.375000, -2.811371 ], [ 130.429688, -2.811371 ], [ 130.429688, -3.162456 ], [ 130.781250, -3.162456 ], [ 130.781250, -3.513421 ], [ 130.078125, -3.513421 ], [ 130.078125, -3.162456 ], [ 127.968750, -3.162456 ], [ 127.968750, -2.811371 ], [ 128.671875, -2.811371 ], [ 128.671875, -2.460181 ], [ 129.375000, -2.460181 ] ] ], [ [ [ 122.343750, -4.565474 ], [ 122.695312, -4.565474 ], [ 123.046875, -4.565474 ], [ 123.046875, -5.615986 ], [ 121.992188, -5.615986 ], [ 121.992188, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.343750, -4.565474 ] ] ], [ [ [ 126.914062, -2.811371 ], [ 126.914062, -3.513421 ], [ 125.859375, -3.513421 ], [ 125.859375, -3.162456 ], [ 126.562500, -3.162456 ], [ 126.562500, -2.811371 ], [ 126.914062, -2.811371 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 124.804688, 1.406109 ], [ 124.804688, 1.757537 ], [ 125.156250, 1.757537 ], [ 125.156250, 1.406109 ] ] ], [ [ [ 127.968750, -0.351560 ], [ 128.320312, -0.351560 ], [ 128.320312, -0.703107 ], [ 127.968750, -0.703107 ], [ 127.968750, -0.351560 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -8.754795 ], [ 126.562500, -8.754795 ], [ 126.562500, -9.102097 ], [ 125.859375, -9.102097 ], [ 125.859375, -9.449062 ], [ 125.156250, -9.449062 ], [ 125.156250, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.754795 ], [ 125.859375, -8.754795 ], [ 125.859375, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.059230 ], [ 127.265625, -8.407168 ], [ 126.914062, -8.407168 ], [ 126.914062, -8.754795 ], [ 126.210938, -8.754795 ], [ 126.210938, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.407168 ], [ 126.562500, -8.407168 ], [ 126.562500, -8.059230 ], [ 127.265625, -8.059230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 145.546875, -40.713956 ], [ 145.546875, -40.979898 ], [ 145.898438, -40.979898 ], [ 145.898438, -41.244772 ], [ 146.953125, -41.244772 ], [ 146.953125, -40.979898 ], [ 148.359375, -40.979898 ], [ 148.359375, -42.293564 ], [ 148.007812, -42.293564 ], [ 148.007812, -43.068888 ], [ 147.304688, -43.068888 ], [ 147.304688, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.546875, -43.325178 ], [ 145.546875, -42.553080 ], [ 145.195312, -42.553080 ], [ 145.195312, -41.771312 ], [ 144.843750, -41.771312 ], [ 144.843750, -40.713956 ], [ 145.546875, -40.713956 ] ] ], [ [ [ 132.539062, -11.523088 ], [ 132.890625, -11.523088 ], [ 132.890625, -11.867351 ], [ 133.593750, -11.867351 ], [ 133.593750, -12.211180 ], [ 137.109375, -12.211180 ], [ 137.109375, -12.554564 ], [ 136.757812, -12.554564 ], [ 136.757812, -13.239945 ], [ 136.054688, -13.239945 ], [ 136.054688, -13.923404 ], [ 135.703125, -13.923404 ], [ 135.703125, -14.604847 ], [ 135.351562, -14.604847 ], [ 135.351562, -15.284185 ], [ 136.054688, -15.284185 ], [ 136.054688, -15.623037 ], [ 136.406250, -15.623037 ], [ 136.406250, -15.961329 ], [ 137.109375, -15.961329 ], [ 137.109375, -16.299051 ], [ 137.460938, -16.299051 ], [ 137.460938, -16.636192 ], [ 137.812500, -16.636192 ], [ 137.812500, -16.972741 ], [ 139.218750, -16.972741 ], [ 139.218750, -17.308688 ], [ 139.570312, -17.308688 ], [ 139.570312, -17.644022 ], [ 140.976562, -17.644022 ], [ 140.976562, -16.636192 ], [ 141.328125, -16.636192 ], [ 141.328125, -15.623037 ], [ 141.679688, -15.623037 ], [ 141.679688, -12.211180 ], [ 142.031250, -12.211180 ], [ 142.031250, -11.178402 ], [ 142.734375, -11.178402 ], [ 142.734375, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -14.264383 ], [ 143.789062, -14.264383 ], [ 143.789062, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -14.944785 ], [ 145.546875, -14.944785 ], [ 145.546875, -15.284185 ], [ 145.195312, -15.284185 ], [ 145.195312, -15.961329 ], [ 145.546875, -15.961329 ], [ 145.546875, -16.972741 ], [ 145.898438, -16.972741 ], [ 145.898438, -17.308688 ], [ 146.250000, -17.308688 ], [ 146.250000, -17.978733 ], [ 145.898438, -17.978733 ], [ 145.898438, -18.646245 ], [ 146.250000, -18.646245 ], [ 146.250000, -19.311143 ], [ 146.953125, -19.311143 ], [ 146.953125, -19.642588 ], [ 147.304688, -19.642588 ], [ 147.304688, -19.973349 ], [ 148.007812, -19.973349 ], [ 148.007812, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.289374 ], [ 149.414062, -21.289374 ], [ 149.414062, -21.943046 ], [ 149.765625, -21.943046 ], [ 149.765625, -22.268764 ], [ 150.117188, -22.268764 ], [ 150.117188, -22.593726 ], [ 150.820312, -22.593726 ], [ 150.820312, -23.885838 ], [ 151.171875, -23.885838 ], [ 151.171875, -24.206890 ], [ 151.523438, -24.206890 ], [ 151.523438, -24.527135 ], [ 152.226562, -24.527135 ], [ 152.226562, -24.846565 ], [ 152.578125, -24.846565 ], [ 152.578125, -25.165173 ], [ 152.929688, -25.165173 ], [ 152.929688, -25.799891 ], [ 153.281250, -25.799891 ], [ 153.281250, -27.059126 ], [ 152.929688, -27.059126 ], [ 152.929688, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -27.994401 ], [ 153.632812, -27.994401 ], [ 153.632812, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -30.145127 ], [ 152.929688, -30.145127 ], [ 152.929688, -32.249974 ], [ 152.578125, -32.249974 ], [ 152.578125, -32.842674 ], [ 152.226562, -32.842674 ], [ 152.226562, -33.137551 ], [ 151.875000, -33.137551 ], [ 151.875000, -33.431441 ], [ 151.523438, -33.431441 ], [ 151.523438, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.885931 ], [ 150.820312, -34.885931 ], [ 150.820312, -35.460670 ], [ 150.468750, -35.460670 ], [ 150.468750, -36.031332 ], [ 150.117188, -36.031332 ], [ 150.117188, -37.718590 ], [ 148.359375, -37.718590 ], [ 148.359375, -37.996163 ], [ 147.656250, -37.996163 ], [ 147.656250, -38.272689 ], [ 147.304688, -38.272689 ], [ 147.304688, -38.548165 ], [ 146.953125, -38.548165 ], [ 146.953125, -38.822591 ], [ 146.601562, -38.822591 ], [ 146.601562, -39.095963 ], [ 145.898438, -39.095963 ], [ 145.898438, -38.822591 ], [ 145.546875, -38.822591 ], [ 145.546875, -38.548165 ], [ 144.843750, -38.548165 ], [ 144.843750, -38.272689 ], [ 145.195312, -38.272689 ], [ 145.195312, -37.996163 ], [ 144.492188, -37.996163 ], [ 144.492188, -38.272689 ], [ 144.140625, -38.272689 ], [ 144.140625, -38.548165 ], [ 143.789062, -38.548165 ], [ 143.789062, -38.822591 ], [ 142.734375, -38.822591 ], [ 142.734375, -38.548165 ], [ 142.031250, -38.548165 ], [ 142.031250, -38.272689 ], [ 140.976562, -38.272689 ], [ 140.976562, -37.996163 ], [ 140.273438, -37.996163 ], [ 140.273438, -37.718590 ], [ 139.921875, -37.718590 ], [ 139.921875, -36.315125 ], [ 139.570312, -36.315125 ], [ 139.570312, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.746512 ], [ 138.164062, -35.746512 ], [ 138.164062, -35.460670 ], [ 138.515625, -35.460670 ], [ 138.515625, -34.885931 ], [ 137.812500, -34.885931 ], [ 137.812500, -35.173808 ], [ 137.109375, -35.173808 ], [ 137.109375, -34.885931 ], [ 137.460938, -34.885931 ], [ 137.460938, -34.016242 ], [ 137.812500, -34.016242 ], [ 137.812500, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.724340 ], [ 137.109375, -33.724340 ], [ 137.109375, -34.016242 ], [ 136.406250, -34.016242 ], [ 136.406250, -34.597042 ], [ 136.054688, -34.597042 ], [ 136.054688, -34.885931 ], [ 135.351562, -34.885931 ], [ 135.351562, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.137551 ], [ 133.945312, -33.137551 ], [ 133.945312, -32.842674 ], [ 134.296875, -32.842674 ], [ 134.296875, -32.546813 ], [ 133.593750, -32.546813 ], [ 133.593750, -32.249974 ], [ 132.890625, -32.249974 ], [ 132.890625, -31.952162 ], [ 131.835938, -31.952162 ], [ 131.835938, -31.653381 ], [ 131.484375, -31.653381 ], [ 131.484375, -31.353637 ], [ 130.781250, -31.353637 ], [ 130.781250, -31.653381 ], [ 129.023438, -31.653381 ], [ 129.023438, -31.952162 ], [ 127.968750, -31.952162 ], [ 127.968750, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -32.546813 ], [ 125.507812, -32.546813 ], [ 125.507812, -32.842674 ], [ 124.101562, -32.842674 ], [ 124.101562, -33.724340 ], [ 123.750000, -33.724340 ], [ 123.750000, -34.016242 ], [ 121.640625, -34.016242 ], [ 121.640625, -33.724340 ], [ 121.289062, -33.724340 ], [ 121.289062, -34.016242 ], [ 119.882812, -34.016242 ], [ 119.882812, -34.307144 ], [ 119.531250, -34.307144 ], [ 119.531250, -34.597042 ], [ 119.179688, -34.597042 ], [ 119.179688, -34.885931 ], [ 118.476562, -34.885931 ], [ 118.476562, -35.173808 ], [ 117.421875, -35.173808 ], [ 117.421875, -34.885931 ], [ 116.367188, -34.885931 ], [ 116.367188, -34.597042 ], [ 115.664062, -34.597042 ], [ 115.664062, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.724340 ], [ 115.664062, -33.724340 ], [ 115.664062, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -30.448674 ], [ 114.960938, -30.448674 ], [ 114.960938, -29.228890 ], [ 114.609375, -29.228890 ], [ 114.609375, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -27.683528 ], [ 113.906250, -27.683528 ], [ 113.906250, -27.059126 ], [ 113.554688, -27.059126 ], [ 113.554688, -26.431228 ], [ 113.906250, -26.431228 ], [ 113.906250, -26.115986 ], [ 114.257812, -26.115986 ], [ 114.257812, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -25.165173 ], [ 113.554688, -25.165173 ], [ 113.554688, -23.241346 ], [ 113.906250, -23.241346 ], [ 113.906250, -22.268764 ], [ 114.609375, -22.268764 ], [ 114.609375, -21.943046 ], [ 115.312500, -21.943046 ], [ 115.312500, -21.616579 ], [ 115.664062, -21.616579 ], [ 115.664062, -21.289374 ], [ 116.015625, -21.289374 ], [ 116.015625, -20.961440 ], [ 116.718750, -20.961440 ], [ 116.718750, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -19.973349 ], [ 120.585938, -19.973349 ], [ 120.585938, -19.642588 ], [ 121.289062, -19.642588 ], [ 121.289062, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.646245 ], [ 122.343750, -18.646245 ], [ 122.343750, -17.308688 ], [ 122.695312, -17.308688 ], [ 122.695312, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.972741 ], [ 123.398438, -16.972741 ], [ 123.398438, -16.299051 ], [ 124.101562, -16.299051 ], [ 124.101562, -15.961329 ], [ 124.453125, -15.961329 ], [ 124.453125, -15.284185 ], [ 124.804688, -15.284185 ], [ 124.804688, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.859375, -14.604847 ], [ 125.859375, -14.264383 ], [ 126.562500, -14.264383 ], [ 126.562500, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.264383 ], [ 127.968750, -14.264383 ], [ 127.968750, -14.604847 ], [ 128.320312, -14.604847 ], [ 128.320312, -14.944785 ], [ 129.726562, -14.944785 ], [ 129.726562, -14.604847 ], [ 129.375000, -14.604847 ], [ 129.375000, -13.923404 ], [ 129.726562, -13.923404 ], [ 129.726562, -13.581921 ], [ 130.429688, -13.581921 ], [ 130.429688, -12.897489 ], [ 130.781250, -12.897489 ], [ 130.781250, -12.554564 ], [ 131.132812, -12.554564 ], [ 131.132812, -12.211180 ], [ 132.539062, -12.211180 ], [ 132.539062, -11.523088 ] ], [ [ 123.398438, -16.972741 ], [ 123.398438, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.972741 ], [ 123.398438, -16.972741 ] ] ], [ [ [ 113.906250, -26.115986 ], [ 113.554688, -26.115986 ], [ 113.554688, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -26.115986 ] ] ], [ [ [ 132.187500, -11.523088 ], [ 131.835938, -11.523088 ], [ 131.835938, -11.178402 ], [ 132.187500, -11.178402 ], [ 132.187500, -11.523088 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 148.007812, -40.713956 ], [ 148.007812, -41.508577 ], [ 148.359375, -41.508577 ], [ 148.359375, -42.293564 ], [ 148.007812, -42.293564 ], [ 148.007812, -42.811522 ], [ 147.656250, -42.811522 ], [ 147.656250, -43.068888 ], [ 146.953125, -43.068888 ], [ 146.953125, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.546875, -43.325178 ], [ 145.546875, -42.811522 ], [ 145.195312, -42.811522 ], [ 145.195312, -41.771312 ], [ 144.843750, -41.771312 ], [ 144.843750, -41.244772 ], [ 144.492188, -41.244772 ], [ 144.492188, -40.713956 ], [ 145.546875, -40.713956 ], [ 145.546875, -40.979898 ], [ 147.304688, -40.979898 ], [ 147.304688, -40.713956 ], [ 148.007812, -40.713956 ] ] ], [ [ [ 142.734375, -10.833306 ], [ 142.734375, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.437500, -12.554564 ], [ 143.437500, -13.923404 ], [ 143.789062, -13.923404 ], [ 143.789062, -14.264383 ], [ 144.843750, -14.264383 ], [ 144.843750, -14.604847 ], [ 145.195312, -14.604847 ], [ 145.195312, -16.299051 ], [ 145.546875, -16.299051 ], [ 145.546875, -17.308688 ], [ 145.898438, -17.308688 ], [ 145.898438, -18.312811 ], [ 146.250000, -18.312811 ], [ 146.250000, -18.979026 ], [ 146.953125, -18.979026 ], [ 146.953125, -19.311143 ], [ 147.304688, -19.311143 ], [ 147.304688, -19.642588 ], [ 148.007812, -19.642588 ], [ 148.007812, -19.973349 ], [ 148.359375, -19.973349 ], [ 148.359375, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.616579 ], [ 149.414062, -21.616579 ], [ 149.414062, -22.268764 ], [ 150.468750, -22.268764 ], [ 150.468750, -22.917923 ], [ 150.820312, -22.917923 ], [ 150.820312, -23.563987 ], [ 151.171875, -23.563987 ], [ 151.171875, -23.885838 ], [ 151.523438, -23.885838 ], [ 151.523438, -24.206890 ], [ 151.875000, -24.206890 ], [ 151.875000, -24.527135 ], [ 152.226562, -24.527135 ], [ 152.226562, -25.165173 ], [ 152.578125, -25.165173 ], [ 152.578125, -25.482951 ], [ 152.929688, -25.482951 ], [ 152.929688, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -29.840644 ], [ 152.929688, -29.840644 ], [ 152.929688, -31.052934 ], [ 152.578125, -31.052934 ], [ 152.578125, -31.952162 ], [ 152.226562, -31.952162 ], [ 152.226562, -32.842674 ], [ 151.523438, -32.842674 ], [ 151.523438, -33.431441 ], [ 151.171875, -33.431441 ], [ 151.171875, -34.016242 ], [ 150.820312, -34.016242 ], [ 150.820312, -34.885931 ], [ 150.468750, -34.885931 ], [ 150.468750, -35.460670 ], [ 150.117188, -35.460670 ], [ 150.117188, -36.031332 ], [ 149.765625, -36.031332 ], [ 149.765625, -37.439974 ], [ 149.414062, -37.439974 ], [ 149.414062, -37.718590 ], [ 148.007812, -37.718590 ], [ 148.007812, -37.996163 ], [ 147.304688, -37.996163 ], [ 147.304688, -38.272689 ], [ 146.953125, -38.272689 ], [ 146.953125, -38.548165 ], [ 146.601562, -38.548165 ], [ 146.601562, -38.822591 ], [ 145.546875, -38.822591 ], [ 145.546875, -38.548165 ], [ 144.843750, -38.548165 ], [ 144.843750, -37.996163 ], [ 144.140625, -37.996163 ], [ 144.140625, -38.272689 ], [ 143.789062, -38.272689 ], [ 143.789062, -38.548165 ], [ 142.734375, -38.548165 ], [ 142.734375, -38.272689 ], [ 140.625000, -38.272689 ], [ 140.625000, -37.996163 ], [ 140.273438, -37.996163 ], [ 140.273438, -37.439974 ], [ 139.921875, -37.439974 ], [ 139.921875, -36.879621 ], [ 139.570312, -36.879621 ], [ 139.570312, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.746512 ], [ 138.867188, -35.746512 ], [ 138.867188, -35.460670 ], [ 137.812500, -35.460670 ], [ 137.812500, -35.173808 ], [ 138.164062, -35.173808 ], [ 138.164062, -34.597042 ], [ 137.812500, -34.597042 ], [ 137.812500, -34.885931 ], [ 137.460938, -34.885931 ], [ 137.460938, -35.173808 ], [ 136.757812, -35.173808 ], [ 136.757812, -34.885931 ], [ 137.109375, -34.885931 ], [ 137.109375, -34.307144 ], [ 137.460938, -34.307144 ], [ 137.460938, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.431441 ], [ 137.109375, -33.431441 ], [ 137.109375, -33.724340 ], [ 136.757812, -33.724340 ], [ 136.757812, -34.016242 ], [ 136.054688, -34.016242 ], [ 136.054688, -34.597042 ], [ 135.703125, -34.597042 ], [ 135.703125, -34.885931 ], [ 135.351562, -34.885931 ], [ 135.351562, -34.597042 ], [ 135.000000, -34.597042 ], [ 135.000000, -33.724340 ], [ 134.648438, -33.724340 ], [ 134.648438, -33.431441 ], [ 134.296875, -33.431441 ], [ 134.296875, -33.137551 ], [ 133.945312, -33.137551 ], [ 133.945312, -32.546813 ], [ 133.593750, -32.546813 ], [ 133.593750, -32.249974 ], [ 132.890625, -32.249974 ], [ 132.890625, -31.952162 ], [ 131.835938, -31.952162 ], [ 131.835938, -31.653381 ], [ 131.132812, -31.653381 ], [ 131.132812, -31.353637 ], [ 129.023438, -31.353637 ], [ 129.023438, -31.653381 ], [ 127.968750, -31.653381 ], [ 127.968750, -31.952162 ], [ 127.265625, -31.952162 ], [ 127.265625, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -31.952162 ], [ 125.859375, -31.952162 ], [ 125.859375, -32.249974 ], [ 125.156250, -32.249974 ], [ 125.156250, -32.546813 ], [ 124.804688, -32.546813 ], [ 124.804688, -32.842674 ], [ 124.101562, -32.842674 ], [ 124.101562, -33.137551 ], [ 123.750000, -33.137551 ], [ 123.750000, -33.724340 ], [ 119.882812, -33.724340 ], [ 119.882812, -34.016242 ], [ 119.531250, -34.016242 ], [ 119.531250, -34.307144 ], [ 118.828125, -34.307144 ], [ 118.828125, -34.597042 ], [ 118.476562, -34.597042 ], [ 118.476562, -34.885931 ], [ 116.015625, -34.885931 ], [ 116.015625, -34.597042 ], [ 115.312500, -34.597042 ], [ 115.312500, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.431441 ], [ 115.664062, -33.431441 ], [ 115.664062, -31.353637 ], [ 115.312500, -31.353637 ], [ 115.312500, -30.751278 ], [ 114.960938, -30.751278 ], [ 114.960938, -28.921631 ], [ 114.609375, -28.921631 ], [ 114.609375, -28.304381 ], [ 113.906250, -28.304381 ], [ 113.906250, -27.059126 ], [ 113.554688, -27.059126 ], [ 113.554688, -26.745610 ], [ 113.203125, -26.745610 ], [ 113.203125, -26.431228 ], [ 113.554688, -26.431228 ], [ 113.554688, -26.115986 ], [ 113.203125, -26.115986 ], [ 113.203125, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -25.165173 ], [ 113.554688, -25.165173 ], [ 113.554688, -24.527135 ], [ 113.203125, -24.527135 ], [ 113.203125, -23.563987 ], [ 113.554688, -23.563987 ], [ 113.554688, -21.943046 ], [ 113.906250, -21.943046 ], [ 113.906250, -22.268764 ], [ 114.257812, -22.268764 ], [ 114.257812, -21.943046 ], [ 114.609375, -21.943046 ], [ 114.609375, -21.616579 ], [ 115.312500, -21.616579 ], [ 115.312500, -21.289374 ], [ 115.664062, -21.289374 ], [ 115.664062, -20.961440 ], [ 116.367188, -20.961440 ], [ 116.367188, -20.632784 ], [ 118.125000, -20.632784 ], [ 118.125000, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -19.973349 ], [ 120.234375, -19.973349 ], [ 120.234375, -19.642588 ], [ 120.937500, -19.642588 ], [ 120.937500, -19.311143 ], [ 121.289062, -19.311143 ], [ 121.289062, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.312811 ], [ 121.992188, -18.312811 ], [ 121.992188, -16.972741 ], [ 122.343750, -16.972741 ], [ 122.343750, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.972741 ], [ 123.750000, -16.972741 ], [ 123.750000, -16.636192 ], [ 123.398438, -16.636192 ], [ 123.398438, -16.299051 ], [ 124.101562, -16.299051 ], [ 124.101562, -15.284185 ], [ 124.804688, -15.284185 ], [ 124.804688, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.507812, -14.604847 ], [ 125.507812, -14.264383 ], [ 125.859375, -14.264383 ], [ 125.859375, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.264383 ], [ 127.617188, -14.264383 ], [ 127.617188, -14.604847 ], [ 128.671875, -14.604847 ], [ 128.671875, -14.944785 ], [ 129.375000, -14.944785 ], [ 129.375000, -13.923404 ], [ 129.726562, -13.923404 ], [ 129.726562, -13.581921 ], [ 130.078125, -13.581921 ], [ 130.078125, -12.554564 ], [ 130.429688, -12.554564 ], [ 130.429688, -12.211180 ], [ 132.187500, -12.211180 ], [ 132.187500, -11.867351 ], [ 132.539062, -11.867351 ], [ 132.539062, -11.523088 ], [ 131.835938, -11.523088 ], [ 131.835938, -11.178402 ], [ 132.890625, -11.178402 ], [ 132.890625, -11.523088 ], [ 133.593750, -11.523088 ], [ 133.593750, -11.867351 ], [ 134.648438, -11.867351 ], [ 134.648438, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -11.867351 ], [ 136.757812, -11.867351 ], [ 136.757812, -12.554564 ], [ 136.406250, -12.554564 ], [ 136.406250, -12.897489 ], [ 136.054688, -12.897489 ], [ 136.054688, -13.239945 ], [ 135.703125, -13.239945 ], [ 135.703125, -13.581921 ], [ 136.054688, -13.581921 ], [ 136.054688, -13.923404 ], [ 135.703125, -13.923404 ], [ 135.703125, -14.264383 ], [ 135.351562, -14.264383 ], [ 135.351562, -15.284185 ], [ 136.054688, -15.284185 ], [ 136.054688, -15.623037 ], [ 136.757812, -15.623037 ], [ 136.757812, -15.961329 ], [ 137.460938, -15.961329 ], [ 137.460938, -16.299051 ], [ 137.812500, -16.299051 ], [ 137.812500, -16.636192 ], [ 138.515625, -16.636192 ], [ 138.515625, -16.972741 ], [ 138.867188, -16.972741 ], [ 138.867188, -17.308688 ], [ 139.218750, -17.308688 ], [ 139.218750, -17.644022 ], [ 140.625000, -17.644022 ], [ 140.625000, -16.972741 ], [ 140.976562, -16.972741 ], [ 140.976562, -15.961329 ], [ 141.328125, -15.961329 ], [ 141.328125, -15.284185 ], [ 141.679688, -15.284185 ], [ 141.679688, -14.604847 ], [ 141.328125, -14.604847 ], [ 141.328125, -12.897489 ], [ 141.679688, -12.897489 ], [ 141.679688, -11.523088 ], [ 142.031250, -11.523088 ], [ 142.031250, -10.833306 ], [ 142.734375, -10.833306 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, -2.460181 ], [ 141.328125, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -3.162456 ], [ 143.085938, -3.162456 ], [ 143.085938, -3.513421 ], [ 143.789062, -3.513421 ], [ 143.789062, -3.864255 ], [ 144.492188, -3.864255 ], [ 144.492188, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.965754 ], [ 147.656250, -5.965754 ], [ 147.656250, -6.315299 ], [ 148.007812, -6.315299 ], [ 148.007812, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.304688, -7.013668 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -9.102097 ], [ 149.414062, -9.102097 ], [ 149.414062, -9.795678 ], [ 150.117188, -9.795678 ], [ 150.117188, -10.141932 ], [ 150.820312, -10.141932 ], [ 150.820312, -10.487812 ], [ 149.062500, -10.487812 ], [ 149.062500, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.449062 ], [ 146.601562, -9.449062 ], [ 146.601562, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.898438, -8.407168 ], [ 145.898438, -8.059230 ], [ 145.195312, -8.059230 ], [ 145.195312, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -8.059230 ], [ 143.789062, -8.059230 ], [ 143.789062, -8.407168 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.449062 ], [ 142.031250, -9.449062 ], [ 142.031250, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.328125, -2.460181 ] ] ], [ [ [ 152.226562, -4.214943 ], [ 152.226562, -5.266008 ], [ 151.875000, -5.266008 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.965754 ], [ 150.820312, -5.965754 ], [ 150.820312, -6.315299 ], [ 149.062500, -6.315299 ], [ 149.062500, -5.965754 ], [ 148.359375, -5.965754 ], [ 148.359375, -5.266008 ], [ 148.710938, -5.266008 ], [ 148.710938, -5.615986 ], [ 149.765625, -5.615986 ], [ 149.765625, -5.266008 ], [ 150.117188, -5.266008 ], [ 150.117188, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -5.266008 ], [ 151.523438, -5.266008 ], [ 151.523438, -4.214943 ], [ 152.226562, -4.214943 ] ] ], [ [ [ 155.039062, -5.615986 ], [ 155.039062, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.664608 ], [ 155.742188, -6.664608 ], [ 155.742188, -7.013668 ], [ 155.039062, -7.013668 ], [ 155.039062, -6.315299 ], [ 154.687500, -6.315299 ], [ 154.687500, -5.615986 ], [ 155.039062, -5.615986 ] ] ], [ [ [ 151.523438, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.864255 ], [ 151.875000, -3.864255 ], [ 151.875000, -3.513421 ], [ 151.523438, -3.513421 ], [ 151.523438, -3.162456 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.214943 ], [ 153.281250, -4.214943 ], [ 153.281250, -4.915833 ], [ 152.929688, -4.915833 ], [ 152.929688, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -3.864255 ] ] ], [ [ [ 151.523438, -3.162456 ], [ 150.820312, -3.162456 ], [ 150.820312, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 149.765625, -10.141932 ], [ 148.007812, -10.141932 ], [ 148.007812, -9.795678 ], [ 146.953125, -9.795678 ], [ 146.953125, -9.449062 ], [ 146.601562, -9.449062 ], [ 146.601562, -9.102097 ], [ 146.250000, -9.102097 ], [ 146.250000, -8.407168 ], [ 145.898438, -8.407168 ], [ 145.898438, -8.059230 ], [ 145.195312, -8.059230 ], [ 145.195312, -7.710992 ], [ 143.789062, -7.710992 ], [ 143.789062, -8.059230 ], [ 143.085938, -8.059230 ], [ 143.085938, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.328125, -2.460181 ], [ 141.328125, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -3.162456 ], [ 143.437500, -3.162456 ], [ 143.437500, -3.513421 ], [ 144.492188, -3.513421 ], [ 144.492188, -3.864255 ], [ 144.843750, -3.864255 ], [ 144.843750, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.965754 ], [ 147.304688, -5.965754 ], [ 147.304688, -6.315299 ], [ 147.656250, -6.315299 ], [ 147.656250, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.362467 ], [ 147.304688, -7.362467 ], [ 147.304688, -7.710992 ], [ 148.007812, -7.710992 ], [ 148.007812, -8.059230 ], [ 148.359375, -8.059230 ], [ 148.359375, -8.754795 ], [ 148.710938, -8.754795 ], [ 148.710938, -9.102097 ], [ 149.062500, -9.102097 ], [ 149.062500, -9.449062 ], [ 149.765625, -9.449062 ], [ 149.765625, -10.141932 ] ] ], [ [ [ 151.875000, -3.864255 ], [ 151.875000, -4.214943 ], [ 152.226562, -4.214943 ], [ 152.226562, -4.915833 ], [ 151.875000, -4.915833 ], [ 151.875000, -5.266008 ], [ 151.171875, -5.266008 ], [ 151.171875, -5.965754 ], [ 150.468750, -5.965754 ], [ 150.468750, -6.315299 ], [ 148.710938, -6.315299 ], [ 148.710938, -5.965754 ], [ 148.007812, -5.965754 ], [ 148.007812, -5.615986 ], [ 148.359375, -5.615986 ], [ 148.359375, -5.266008 ], [ 149.765625, -5.266008 ], [ 149.765625, -4.915833 ], [ 150.117188, -4.915833 ], [ 150.117188, -5.266008 ], [ 150.820312, -5.266008 ], [ 150.820312, -4.915833 ], [ 151.523438, -4.915833 ], [ 151.523438, -3.864255 ], [ 151.875000, -3.864255 ] ] ], [ [ [ 155.039062, -5.266008 ], [ 155.039062, -5.615986 ], [ 155.390625, -5.615986 ], [ 155.390625, -6.315299 ], [ 155.742188, -6.315299 ], [ 155.742188, -6.664608 ], [ 155.039062, -6.664608 ], [ 155.039062, -5.965754 ], [ 154.687500, -5.965754 ], [ 154.687500, -5.266008 ], [ 155.039062, -5.266008 ] ] ], [ [ [ 149.765625, -10.141932 ], [ 150.468750, -10.141932 ], [ 150.468750, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -10.141932 ] ] ], [ [ [ 151.875000, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.513421 ], [ 151.875000, -3.513421 ], [ 151.875000, -3.162456 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -3.864255 ] ] ], [ [ [ 151.171875, -2.811371 ], [ 150.468750, -2.811371 ], [ 150.468750, -2.460181 ], [ 151.171875, -2.460181 ], [ 151.171875, -2.811371 ] ] ], [ [ [ 152.226562, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.864255 ], [ 152.226562, -3.864255 ], [ 152.226562, -3.513421 ] ] ], [ [ [ 151.171875, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -3.162456 ], [ 151.171875, -3.162456 ], [ 151.171875, -2.811371 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.070312, -10.487812 ], [ 162.070312, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ] ] ], [ [ [ 160.664062, -9.449062 ], [ 160.664062, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 160.664062, -9.449062 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.367188, -8.754795 ], [ 161.367188, -9.449062 ], [ 161.718750, -9.449062 ], [ 161.718750, -9.795678 ], [ 161.015625, -9.795678 ], [ 161.015625, -9.102097 ], [ 160.664062, -9.102097 ], [ 160.664062, -8.407168 ], [ 161.015625, -8.407168 ] ] ], [ [ [ 159.257812, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.407168 ], [ 159.257812, -8.407168 ], [ 159.257812, -8.059230 ] ] ], [ [ [ 157.148438, -7.013668 ], [ 157.148438, -7.362467 ], [ 156.796875, -7.362467 ], [ 156.796875, -7.013668 ], [ 157.148438, -7.013668 ] ] ], [ [ [ 158.906250, -8.059230 ], [ 158.554688, -8.059230 ], [ 158.554688, -7.710992 ], [ 158.906250, -7.710992 ], [ 158.906250, -8.059230 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 162.070312, -10.141932 ], [ 162.070312, -10.487812 ], [ 161.015625, -10.487812 ], [ 161.015625, -10.141932 ], [ 162.070312, -10.141932 ] ] ], [ [ [ 160.312500, -9.102097 ], [ 160.312500, -9.449062 ], [ 160.664062, -9.449062 ], [ 160.664062, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 160.312500, -9.102097 ] ] ], [ [ [ 160.664062, -8.754795 ], [ 161.015625, -8.754795 ], [ 161.015625, -9.102097 ], [ 160.664062, -9.102097 ], [ 160.664062, -8.754795 ] ] ], [ [ [ 158.906250, -7.362467 ], [ 158.906250, -7.710992 ], [ 159.609375, -7.710992 ], [ 159.609375, -8.407168 ], [ 158.906250, -8.407168 ], [ 158.906250, -8.059230 ], [ 158.554688, -8.059230 ], [ 158.554688, -7.710992 ], [ 158.203125, -7.710992 ], [ 158.203125, -7.362467 ], [ 158.906250, -7.362467 ] ] ], [ [ [ 160.664062, -8.407168 ], [ 160.312500, -8.407168 ], [ 160.312500, -8.059230 ], [ 160.664062, -8.059230 ], [ 160.664062, -8.407168 ] ] ], [ [ [ 156.796875, -7.013668 ], [ 157.500000, -7.013668 ], [ 157.500000, -7.362467 ], [ 156.796875, -7.362467 ], [ 156.796875, -7.013668 ] ] ], [ [ [ 156.796875, -7.013668 ], [ 156.445312, -7.013668 ], [ 156.445312, -6.664608 ], [ 156.796875, -6.664608 ], [ 156.796875, -7.013668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.695312, -16.299051 ], [ 167.695312, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ] ] ], [ [ [ 166.992188, -14.944785 ], [ 166.992188, -15.284185 ], [ 167.343750, -15.284185 ], [ 167.343750, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.992188, -14.944785 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.343750, -15.961329 ], [ 167.343750, -16.299051 ], [ 166.992188, -16.299051 ], [ 166.992188, -15.961329 ], [ 167.343750, -15.961329 ] ] ], [ [ [ 166.992188, -14.604847 ], [ 166.992188, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.289062, -14.944785 ], [ 166.289062, -14.604847 ], [ 166.992188, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -19.973349 ], [ 164.531250, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.961440 ], [ 165.937500, -20.961440 ], [ 165.937500, -21.289374 ], [ 166.289062, -21.289374 ], [ 166.289062, -21.616579 ], [ 166.640625, -21.616579 ], [ 166.640625, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.268764 ], [ 165.937500, -22.268764 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.616579 ], [ 164.882812, -21.616579 ], [ 164.882812, -21.289374 ], [ 164.531250, -21.289374 ], [ 164.531250, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -19.973349 ], [ 164.531250, -19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.179688, -19.973349 ], [ 164.179688, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.961440 ], [ 165.585938, -20.961440 ], [ 165.585938, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.616579 ], [ 166.289062, -21.616579 ], [ 166.289062, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.268764 ], [ 165.937500, -22.268764 ], [ 165.937500, -21.943046 ], [ 165.234375, -21.943046 ], [ 165.234375, -21.616579 ], [ 164.882812, -21.616579 ], [ 164.882812, -21.289374 ], [ 164.531250, -21.289374 ], [ 164.531250, -20.961440 ], [ 164.179688, -20.961440 ], [ 164.179688, -20.632784 ], [ 163.828125, -20.632784 ], [ 163.828125, -19.973349 ], [ 164.179688, -19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.713956 ], [ 172.968750, -41.244772 ], [ 174.375000, -41.244772 ], [ 174.375000, -42.032974 ], [ 174.023438, -42.032974 ], [ 174.023438, -42.553080 ], [ 173.671875, -42.553080 ], [ 173.671875, -43.068888 ], [ 173.320312, -43.068888 ], [ 173.320312, -43.325178 ], [ 172.617188, -43.325178 ], [ 172.617188, -43.580391 ], [ 172.968750, -43.580391 ], [ 172.968750, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -44.087585 ], [ 171.914062, -44.087585 ], [ 171.914062, -44.339565 ], [ 171.562500, -44.339565 ], [ 171.562500, -44.590467 ], [ 171.210938, -44.590467 ], [ 171.210938, -45.089036 ], [ 170.859375, -45.089036 ], [ 170.859375, -45.583290 ], [ 170.507812, -45.583290 ], [ 170.507812, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.558860 ], [ 167.695312, -46.558860 ], [ 167.695312, -46.316584 ], [ 166.640625, -46.316584 ], [ 166.640625, -45.583290 ], [ 166.992188, -45.583290 ], [ 166.992188, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.840291 ], [ 167.695312, -44.840291 ], [ 167.695312, -44.590467 ], [ 168.046875, -44.590467 ], [ 168.046875, -44.339565 ], [ 168.398438, -44.339565 ], [ 168.398438, -44.087585 ], [ 169.101562, -44.087585 ], [ 169.101562, -43.834527 ], [ 169.804688, -43.834527 ], [ 169.804688, -43.580391 ], [ 170.156250, -43.580391 ], [ 170.156250, -43.325178 ], [ 170.507812, -43.325178 ], [ 170.507812, -43.068888 ], [ 170.859375, -43.068888 ], [ 170.859375, -42.811522 ], [ 171.210938, -42.811522 ], [ 171.210938, -42.293564 ], [ 171.562500, -42.293564 ], [ 171.562500, -41.771312 ], [ 171.914062, -41.771312 ], [ 171.914062, -41.244772 ], [ 172.265625, -41.244772 ], [ 172.265625, -40.979898 ], [ 172.617188, -40.979898 ], [ 172.617188, -40.713956 ], [ 172.968750, -40.713956 ] ] ], [ [ [ 173.320312, -34.597042 ], [ 173.320312, -34.885931 ], [ 173.671875, -34.885931 ], [ 173.671875, -35.173808 ], [ 174.375000, -35.173808 ], [ 174.375000, -35.746512 ], [ 174.726562, -35.746512 ], [ 174.726562, -36.315125 ], [ 175.078125, -36.315125 ], [ 175.078125, -36.879621 ], [ 175.781250, -36.879621 ], [ 175.781250, -37.160317 ], [ 176.132812, -37.160317 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.996163 ], [ 177.890625, -37.996163 ], [ 177.890625, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -38.272689 ], [ 178.242188, -38.272689 ], [ 178.242188, -38.822591 ], [ 177.890625, -38.822591 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 176.835938, -39.368279 ], [ 176.835938, -39.639538 ], [ 177.187500, -39.639538 ], [ 177.187500, -40.178873 ], [ 176.835938, -40.178873 ], [ 176.835938, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.771312 ], [ 175.078125, -41.771312 ], [ 175.078125, -41.508577 ], [ 174.726562, -41.508577 ], [ 174.726562, -40.979898 ], [ 175.078125, -40.979898 ], [ 175.078125, -40.178873 ], [ 174.726562, -40.178873 ], [ 174.726562, -39.909736 ], [ 174.023438, -39.909736 ], [ 174.023438, -39.639538 ], [ 173.671875, -39.639538 ], [ 173.671875, -39.368279 ], [ 174.023438, -39.368279 ], [ 174.023438, -39.095963 ], [ 174.726562, -39.095963 ], [ 174.726562, -37.160317 ], [ 174.375000, -37.160317 ], [ 174.375000, -36.597889 ], [ 174.023438, -36.597889 ], [ 174.023438, -36.315125 ], [ 173.671875, -36.315125 ], [ 173.671875, -36.031332 ], [ 173.320312, -36.031332 ], [ 173.320312, -35.460670 ], [ 172.968750, -35.460670 ], [ 172.968750, -34.885931 ], [ 172.617188, -34.885931 ], [ 172.617188, -34.597042 ], [ 173.320312, -34.597042 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.713956 ], [ 172.968750, -41.244772 ], [ 173.320312, -41.244772 ], [ 173.320312, -40.979898 ], [ 174.023438, -40.979898 ], [ 174.023438, -42.032974 ], [ 173.671875, -42.032974 ], [ 173.671875, -42.293564 ], [ 173.320312, -42.293564 ], [ 173.320312, -42.811522 ], [ 172.968750, -42.811522 ], [ 172.968750, -43.068888 ], [ 172.617188, -43.068888 ], [ 172.617188, -43.580391 ], [ 172.968750, -43.580391 ], [ 172.968750, -43.834527 ], [ 171.914062, -43.834527 ], [ 171.914062, -44.087585 ], [ 171.210938, -44.087585 ], [ 171.210938, -44.590467 ], [ 170.859375, -44.590467 ], [ 170.859375, -45.336702 ], [ 170.507812, -45.336702 ], [ 170.507812, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.558860 ], [ 168.046875, -46.558860 ], [ 168.046875, -46.316584 ], [ 167.695312, -46.316584 ], [ 167.695312, -46.073231 ], [ 166.289062, -46.073231 ], [ 166.289062, -45.828799 ], [ 166.640625, -45.828799 ], [ 166.640625, -45.336702 ], [ 166.992188, -45.336702 ], [ 166.992188, -45.089036 ], [ 167.343750, -45.089036 ], [ 167.343750, -44.590467 ], [ 167.695312, -44.590467 ], [ 167.695312, -44.339565 ], [ 168.046875, -44.339565 ], [ 168.046875, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.834527 ], [ 169.101562, -43.834527 ], [ 169.101562, -43.580391 ], [ 169.453125, -43.580391 ], [ 169.453125, -43.325178 ], [ 169.804688, -43.325178 ], [ 169.804688, -43.068888 ], [ 170.507812, -43.068888 ], [ 170.507812, -42.553080 ], [ 170.859375, -42.553080 ], [ 170.859375, -42.293564 ], [ 171.210938, -42.293564 ], [ 171.210938, -41.771312 ], [ 171.562500, -41.771312 ], [ 171.562500, -41.508577 ], [ 171.914062, -41.508577 ], [ 171.914062, -40.713956 ], [ 172.968750, -40.713956 ] ] ], [ [ [ 172.968750, -34.307144 ], [ 172.968750, -34.597042 ], [ 173.320312, -34.597042 ], [ 173.320312, -35.173808 ], [ 174.023438, -35.173808 ], [ 174.023438, -35.746512 ], [ 174.375000, -35.746512 ], [ 174.375000, -36.315125 ], [ 174.726562, -36.315125 ], [ 174.726562, -36.879621 ], [ 175.078125, -36.879621 ], [ 175.078125, -36.597889 ], [ 175.781250, -36.597889 ], [ 175.781250, -37.718590 ], [ 177.890625, -37.718590 ], [ 177.890625, -37.439974 ], [ 178.242188, -37.439974 ], [ 178.242188, -38.822591 ], [ 177.890625, -38.822591 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 176.835938, -39.368279 ], [ 176.835938, -40.178873 ], [ 176.484375, -40.178873 ], [ 176.484375, -40.713956 ], [ 176.132812, -40.713956 ], [ 176.132812, -41.244772 ], [ 175.781250, -41.244772 ], [ 175.781250, -41.508577 ], [ 174.726562, -41.508577 ], [ 174.726562, -40.713956 ], [ 175.078125, -40.713956 ], [ 175.078125, -40.178873 ], [ 174.726562, -40.178873 ], [ 174.726562, -39.909736 ], [ 174.375000, -39.909736 ], [ 174.375000, -39.639538 ], [ 173.671875, -39.639538 ], [ 173.671875, -39.095963 ], [ 174.023438, -39.095963 ], [ 174.023438, -38.822591 ], [ 174.375000, -38.822591 ], [ 174.375000, -38.272689 ], [ 174.726562, -38.272689 ], [ 174.726562, -37.718590 ], [ 174.375000, -37.718590 ], [ 174.375000, -36.879621 ], [ 174.023438, -36.879621 ], [ 174.023438, -36.315125 ], [ 173.671875, -36.315125 ], [ 173.671875, -36.031332 ], [ 173.320312, -36.031332 ], [ 173.320312, -35.460670 ], [ 172.968750, -35.460670 ], [ 172.968750, -34.885931 ], [ 172.617188, -34.885931 ], [ 172.617188, -34.307144 ], [ 172.968750, -34.307144 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.132812, 42.811522 ], [ 131.132812, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.811522 ], [ 131.132812, 42.811522 ] ] ], [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.366837 ], [ 181.406250, 65.366837 ], [ 181.406250, 65.658275 ], [ 181.054688, 65.658275 ], [ 181.054688, 65.946472 ], [ 180.703125, 65.946472 ], [ 180.703125, 65.802776 ], [ 180.000000, 65.802776 ], [ 180.000000, 65.658275 ], [ 180.351562, 65.658275 ], [ 180.351562, 65.366837 ], [ 180.703125, 65.366837 ], [ 180.703125, 65.219894 ], [ 180.351562, 65.219894 ], [ 180.351562, 64.923542 ], [ 180.000000, 64.923542 ], [ 180.000000, 64.774125 ], [ 179.648438, 64.774125 ], [ 179.648438, 64.623877 ], [ 178.945312, 64.623877 ], [ 178.945312, 64.472794 ], [ 177.890625, 64.472794 ], [ 177.890625, 64.168107 ], [ 178.242188, 64.168107 ], [ 178.242188, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.391522 ], [ 178.945312, 63.391522 ], [ 178.945312, 63.074866 ], [ 179.296875, 63.074866 ], [ 179.296875, 62.754726 ], [ 179.648438, 62.754726 ], [ 179.648438, 62.431074 ], [ 179.296875, 62.431074 ], [ 179.296875, 62.267923 ], [ 178.593750, 62.267923 ], [ 178.593750, 62.431074 ], [ 177.890625, 62.431074 ], [ 177.890625, 62.593341 ], [ 177.539062, 62.593341 ], [ 177.539062, 62.431074 ], [ 176.835938, 62.431074 ], [ 176.835938, 62.267923 ], [ 176.484375, 62.267923 ], [ 176.484375, 62.103883 ], [ 175.781250, 62.103883 ], [ 175.781250, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.773123 ], [ 174.375000, 61.773123 ], [ 174.375000, 61.606396 ], [ 173.671875, 61.606396 ], [ 173.671875, 61.438767 ], [ 173.320312, 61.438767 ], [ 173.320312, 61.270233 ], [ 172.968750, 61.270233 ], [ 172.968750, 61.100789 ], [ 172.617188, 61.100789 ], [ 172.617188, 60.930432 ], [ 172.265625, 60.930432 ], [ 172.265625, 60.759160 ], [ 171.914062, 60.759160 ], [ 171.914062, 60.586967 ], [ 171.210938, 60.586967 ], [ 171.210938, 60.413852 ], [ 170.859375, 60.413852 ], [ 170.859375, 60.239811 ], [ 170.507812, 60.239811 ], [ 170.507812, 59.888937 ], [ 169.804688, 59.888937 ], [ 169.804688, 60.064840 ], [ 169.453125, 60.064840 ], [ 169.453125, 60.239811 ], [ 169.101562, 60.239811 ], [ 169.101562, 60.413852 ], [ 168.046875, 60.413852 ], [ 168.046875, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.064840 ], [ 167.343750, 60.064840 ], [ 167.343750, 59.888937 ], [ 166.640625, 59.888937 ], [ 166.640625, 59.712097 ], [ 166.289062, 59.712097 ], [ 166.289062, 59.888937 ], [ 165.937500, 59.888937 ], [ 165.937500, 60.064840 ], [ 165.585938, 60.064840 ], [ 165.585938, 59.888937 ], [ 165.234375, 59.888937 ], [ 165.234375, 59.712097 ], [ 163.828125, 59.712097 ], [ 163.828125, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 58.995311 ], [ 162.773438, 58.995311 ], [ 162.773438, 58.631217 ], [ 162.421875, 58.631217 ], [ 162.421875, 58.263287 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.891497 ], [ 162.421875, 57.891497 ], [ 162.421875, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 53.748711 ], [ 159.960938, 53.748711 ], [ 159.960938, 53.120405 ], [ 159.609375, 53.120405 ], [ 159.609375, 52.908902 ], [ 158.554688, 52.908902 ], [ 158.554688, 52.268157 ], [ 158.203125, 52.268157 ], [ 158.203125, 51.618017 ], [ 157.851562, 51.618017 ], [ 157.851562, 51.399206 ], [ 157.500000, 51.399206 ], [ 157.500000, 51.179343 ], [ 157.148438, 51.179343 ], [ 157.148438, 50.958427 ], [ 156.796875, 50.958427 ], [ 156.796875, 51.179343 ], [ 156.445312, 51.179343 ], [ 156.445312, 52.268157 ], [ 156.093750, 52.268157 ], [ 156.093750, 53.540307 ], [ 155.742188, 53.540307 ], [ 155.742188, 54.775346 ], [ 155.390625, 54.775346 ], [ 155.390625, 55.973798 ], [ 155.742188, 55.973798 ], [ 155.742188, 56.752723 ], [ 156.093750, 56.752723 ], [ 156.093750, 56.944974 ], [ 156.445312, 56.944974 ], [ 156.445312, 57.136239 ], [ 156.796875, 57.136239 ], [ 156.796875, 57.891497 ], [ 157.851562, 57.891497 ], [ 157.851562, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.263287 ], [ 158.906250, 58.263287 ], [ 158.906250, 58.447733 ], [ 159.257812, 58.447733 ], [ 159.257812, 58.813742 ], [ 159.609375, 58.813742 ], [ 159.609375, 58.995311 ], [ 159.960938, 58.995311 ], [ 159.960938, 59.175928 ], [ 160.312500, 59.175928 ], [ 160.312500, 59.355596 ], [ 160.664062, 59.355596 ], [ 160.664062, 59.712097 ], [ 161.015625, 59.712097 ], [ 161.015625, 59.888937 ], [ 161.367188, 59.888937 ], [ 161.367188, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.413852 ], [ 162.070312, 60.413852 ], [ 162.070312, 60.586967 ], [ 162.773438, 60.586967 ], [ 162.773438, 60.759160 ], [ 163.125000, 60.759160 ], [ 163.125000, 60.930432 ], [ 163.828125, 60.930432 ], [ 163.828125, 61.438767 ], [ 164.179688, 61.438767 ], [ 164.179688, 62.103883 ], [ 164.531250, 62.103883 ], [ 164.531250, 62.593341 ], [ 164.179688, 62.593341 ], [ 164.179688, 62.431074 ], [ 163.125000, 62.431074 ], [ 163.125000, 61.938950 ], [ 162.773438, 61.938950 ], [ 162.773438, 61.438767 ], [ 162.421875, 61.438767 ], [ 162.421875, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 61.100789 ], [ 161.367188, 61.100789 ], [ 161.367188, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.759160 ], [ 160.312500, 60.759160 ], [ 160.312500, 60.586967 ], [ 159.960938, 60.586967 ], [ 159.960938, 60.759160 ], [ 159.609375, 60.759160 ], [ 159.609375, 61.438767 ], [ 159.257812, 61.438767 ], [ 159.257812, 61.773123 ], [ 158.906250, 61.773123 ], [ 158.906250, 61.606396 ], [ 157.500000, 61.606396 ], [ 157.500000, 61.438767 ], [ 156.796875, 61.438767 ], [ 156.796875, 61.270233 ], [ 156.445312, 61.270233 ], [ 156.445312, 60.930432 ], [ 156.093750, 60.930432 ], [ 156.093750, 60.759160 ], [ 155.742188, 60.759160 ], [ 155.742188, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.239811 ], [ 155.039062, 60.239811 ], [ 155.039062, 60.064840 ], [ 154.687500, 60.064840 ], [ 154.687500, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 58.995311 ], [ 153.632812, 58.995311 ], [ 153.632812, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 150.117188, 59.534318 ], [ 150.117188, 59.712097 ], [ 149.765625, 59.712097 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.355596 ], [ 149.062500, 59.355596 ], [ 149.062500, 59.175928 ], [ 146.953125, 59.175928 ], [ 146.953125, 59.355596 ], [ 144.843750, 59.355596 ], [ 144.843750, 59.175928 ], [ 143.085938, 59.175928 ], [ 143.085938, 58.995311 ], [ 142.031250, 58.995311 ], [ 142.031250, 58.813742 ], [ 141.679688, 58.813742 ], [ 141.679688, 58.631217 ], [ 141.328125, 58.631217 ], [ 141.328125, 58.447733 ], [ 140.976562, 58.447733 ], [ 140.976562, 58.263287 ], [ 140.625000, 58.263287 ], [ 140.625000, 58.077876 ], [ 140.273438, 58.077876 ], [ 140.273438, 57.704147 ], [ 139.921875, 57.704147 ], [ 139.921875, 57.515823 ], [ 139.570312, 57.515823 ], [ 139.570312, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 57.136239 ], [ 138.867188, 57.136239 ], [ 138.867188, 56.944974 ], [ 138.515625, 56.944974 ], [ 138.515625, 56.752723 ], [ 138.164062, 56.752723 ], [ 138.164062, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 56.365250 ], [ 137.460938, 56.365250 ], [ 137.460938, 56.170023 ], [ 137.109375, 56.170023 ], [ 137.109375, 55.973798 ], [ 136.757812, 55.973798 ], [ 136.757812, 55.578345 ], [ 136.406250, 55.578345 ], [ 136.406250, 55.379110 ], [ 136.054688, 55.379110 ], [ 136.054688, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.775346 ], [ 135.703125, 54.775346 ], [ 135.703125, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 53.956086 ], [ 137.460938, 53.956086 ], [ 137.460938, 53.748711 ], [ 138.515625, 53.748711 ], [ 138.515625, 53.956086 ], [ 138.867188, 53.956086 ], [ 138.867188, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 53.330873 ], [ 140.976562, 53.330873 ], [ 140.976562, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 51.835778 ], [ 140.976562, 51.835778 ], [ 140.976562, 51.399206 ], [ 140.625000, 51.399206 ], [ 140.625000, 49.610710 ], [ 140.273438, 49.610710 ], [ 140.273438, 48.690960 ], [ 139.921875, 48.690960 ], [ 139.921875, 48.224673 ], [ 139.570312, 48.224673 ], [ 139.570312, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 138.867188, 47.517201 ], [ 138.867188, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.558860 ], [ 138.164062, 46.558860 ], [ 138.164062, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.828799 ], [ 137.460938, 45.828799 ], [ 137.460938, 45.336702 ], [ 137.109375, 45.336702 ], [ 137.109375, 45.089036 ], [ 136.757812, 45.089036 ], [ 136.757812, 44.840291 ], [ 136.406250, 44.840291 ], [ 136.406250, 44.590467 ], [ 136.054688, 44.590467 ], [ 136.054688, 44.339565 ], [ 135.703125, 44.339565 ], [ 135.703125, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.068888 ], [ 134.296875, 43.068888 ], [ 134.296875, 42.811522 ], [ 132.539062, 42.811522 ], [ 132.539062, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.811522 ], [ 131.132812, 42.811522 ], [ 131.132812, 45.089036 ], [ 131.835938, 45.089036 ], [ 131.835938, 45.336702 ], [ 132.187500, 45.336702 ], [ 132.187500, 45.089036 ], [ 133.242188, 45.089036 ], [ 133.242188, 45.336702 ], [ 133.593750, 45.336702 ], [ 133.593750, 45.828799 ], [ 133.945312, 45.828799 ], [ 133.945312, 47.279229 ], [ 134.648438, 47.279229 ], [ 134.648438, 47.989922 ], [ 135.000000, 47.989922 ], [ 135.000000, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 48.224673 ], [ 133.242188, 48.224673 ], [ 133.242188, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 47.754098 ], [ 131.132812, 47.754098 ], [ 131.132812, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.429688, 48.458352 ], [ 130.429688, 48.690960 ], [ 130.078125, 48.690960 ], [ 130.078125, 48.922499 ], [ 129.726562, 48.922499 ], [ 129.726562, 49.152970 ], [ 129.375000, 49.152970 ], [ 129.375000, 49.382373 ], [ 128.671875, 49.382373 ], [ 128.671875, 49.610710 ], [ 127.968750, 49.610710 ], [ 127.968750, 49.837982 ], [ 127.617188, 49.837982 ], [ 127.617188, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 50.958427 ], [ 126.914062, 50.958427 ], [ 126.914062, 51.618017 ], [ 126.562500, 51.618017 ], [ 126.562500, 52.052490 ], [ 126.210938, 52.052490 ], [ 126.210938, 52.482780 ], [ 125.859375, 52.482780 ], [ 125.859375, 52.696361 ], [ 125.507812, 52.696361 ], [ 125.507812, 52.908902 ], [ 125.156250, 52.908902 ], [ 125.156250, 53.120405 ], [ 124.453125, 53.120405 ], [ 124.453125, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.540307 ], [ 123.046875, 53.540307 ], [ 123.046875, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 53.120405 ], [ 120.585938, 53.120405 ], [ 120.585938, 52.696361 ], [ 120.234375, 52.696361 ], [ 120.234375, 52.482780 ], [ 120.585938, 52.482780 ], [ 120.585938, 51.835778 ], [ 120.234375, 51.835778 ], [ 120.234375, 51.399206 ], [ 119.882812, 51.399206 ], [ 119.882812, 50.958427 ], [ 119.531250, 50.958427 ], [ 119.531250, 50.513427 ], [ 119.179688, 50.513427 ], [ 119.179688, 49.837982 ], [ 118.476562, 49.837982 ], [ 118.476562, 49.610710 ], [ 117.070312, 49.610710 ], [ 117.070312, 49.837982 ], [ 114.960938, 49.837982 ], [ 114.960938, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.837982 ], [ 113.203125, 49.837982 ], [ 113.203125, 49.610710 ], [ 112.500000, 49.610710 ], [ 112.500000, 49.382373 ], [ 111.445312, 49.382373 ], [ 111.445312, 49.152970 ], [ 109.687500, 49.152970 ], [ 109.687500, 49.382373 ], [ 108.281250, 49.382373 ], [ 108.281250, 49.610710 ], [ 107.929688, 49.610710 ], [ 107.929688, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 50.064192 ], [ 106.875000, 50.064192 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.513427 ], [ 105.468750, 50.513427 ], [ 105.468750, 50.289339 ], [ 104.414062, 50.289339 ], [ 104.414062, 50.064192 ], [ 103.007812, 50.064192 ], [ 103.007812, 50.289339 ], [ 102.304688, 50.289339 ], [ 102.304688, 50.736455 ], [ 101.953125, 50.736455 ], [ 101.953125, 51.179343 ], [ 101.601562, 51.179343 ], [ 101.601562, 51.399206 ], [ 100.898438, 51.399206 ], [ 100.898438, 51.618017 ], [ 99.492188, 51.618017 ], [ 99.492188, 51.835778 ], [ 98.437500, 51.835778 ], [ 98.437500, 51.399206 ], [ 98.085938, 51.399206 ], [ 98.085938, 50.958427 ], [ 97.734375, 50.958427 ], [ 97.734375, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.289339 ], [ 97.734375, 50.289339 ], [ 97.734375, 49.837982 ], [ 96.328125, 49.837982 ], [ 96.328125, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 50.513427 ], [ 92.460938, 50.513427 ], [ 92.460938, 50.736455 ], [ 92.109375, 50.736455 ], [ 92.109375, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.382373 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ], [ [ 177.890625, 64.472794 ], [ 177.890625, 64.623877 ], [ 177.539062, 64.623877 ], [ 177.539062, 64.472794 ], [ 177.890625, 64.472794 ] ] ], [ [ [ 142.734375, 53.956086 ], [ 143.085938, 53.956086 ], [ 143.085938, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.958427 ], [ 143.789062, 50.958427 ], [ 143.789062, 50.289339 ], [ 144.140625, 50.289339 ], [ 144.140625, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 48.922499 ], [ 143.789062, 48.922499 ], [ 143.789062, 49.152970 ], [ 143.085938, 49.152970 ], [ 143.085938, 48.458352 ], [ 142.734375, 48.458352 ], [ 142.734375, 47.517201 ], [ 143.085938, 47.517201 ], [ 143.085938, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.073231 ], [ 143.085938, 46.073231 ], [ 143.085938, 46.558860 ], [ 142.382812, 46.558860 ], [ 142.382812, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 51.399206 ], [ 141.679688, 51.399206 ], [ 141.679688, 53.330873 ], [ 142.031250, 53.330873 ], [ 142.031250, 53.540307 ], [ 142.734375, 53.540307 ], [ 142.734375, 53.956086 ] ] ], [ [ [ 142.734375, 53.956086 ], [ 142.382812, 53.956086 ], [ 142.382812, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.956086 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.512963 ], [ 181.406250, 65.512963 ], [ 181.406250, 65.658275 ], [ 181.054688, 65.658275 ], [ 181.054688, 66.089364 ], [ 180.351562, 66.089364 ], [ 180.351562, 65.946472 ], [ 180.000000, 65.946472 ], [ 180.000000, 65.658275 ], [ 180.351562, 65.658275 ], [ 180.351562, 65.219894 ], [ 180.000000, 65.219894 ], [ 180.000000, 65.072130 ], [ 179.648438, 65.072130 ], [ 179.648438, 64.923542 ], [ 179.296875, 64.923542 ], [ 179.296875, 64.774125 ], [ 178.945312, 64.774125 ], [ 178.945312, 64.623877 ], [ 177.187500, 64.623877 ], [ 177.187500, 64.472794 ], [ 177.539062, 64.472794 ], [ 177.539062, 64.320872 ], [ 177.890625, 64.320872 ], [ 177.890625, 64.168107 ], [ 178.242188, 64.168107 ], [ 178.242188, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.233627 ], [ 178.945312, 63.233627 ], [ 178.945312, 63.074866 ], [ 179.296875, 63.074866 ], [ 179.296875, 62.431074 ], [ 177.890625, 62.431074 ], [ 177.890625, 62.593341 ], [ 177.187500, 62.593341 ], [ 177.187500, 62.431074 ], [ 176.484375, 62.431074 ], [ 176.484375, 62.267923 ], [ 176.132812, 62.267923 ], [ 176.132812, 62.103883 ], [ 175.429688, 62.103883 ], [ 175.429688, 61.938950 ], [ 174.726562, 61.938950 ], [ 174.726562, 61.773123 ], [ 173.671875, 61.773123 ], [ 173.671875, 61.606396 ], [ 173.320312, 61.606396 ], [ 173.320312, 61.438767 ], [ 172.617188, 61.438767 ], [ 172.617188, 61.270233 ], [ 172.265625, 61.270233 ], [ 172.265625, 61.100789 ], [ 171.914062, 61.100789 ], [ 171.914062, 60.930432 ], [ 171.562500, 60.930432 ], [ 171.562500, 60.759160 ], [ 171.210938, 60.759160 ], [ 171.210938, 60.586967 ], [ 170.859375, 60.586967 ], [ 170.859375, 60.413852 ], [ 170.507812, 60.413852 ], [ 170.507812, 60.064840 ], [ 170.156250, 60.064840 ], [ 170.156250, 59.888937 ], [ 169.804688, 59.888937 ], [ 169.804688, 60.064840 ], [ 169.453125, 60.064840 ], [ 169.453125, 60.239811 ], [ 169.101562, 60.239811 ], [ 169.101562, 60.413852 ], [ 168.046875, 60.413852 ], [ 168.046875, 60.239811 ], [ 167.343750, 60.239811 ], [ 167.343750, 60.064840 ], [ 166.640625, 60.064840 ], [ 166.640625, 59.888937 ], [ 165.937500, 59.888937 ], [ 165.937500, 60.064840 ], [ 164.882812, 60.064840 ], [ 164.882812, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.125000, 59.534318 ], [ 163.125000, 59.175928 ], [ 162.773438, 59.175928 ], [ 162.773438, 58.813742 ], [ 162.421875, 58.813742 ], [ 162.421875, 58.631217 ], [ 162.070312, 58.631217 ], [ 162.070312, 58.263287 ], [ 161.718750, 58.263287 ], [ 161.718750, 57.891497 ], [ 162.070312, 57.891497 ], [ 162.070312, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.944974 ], [ 162.773438, 56.944974 ], [ 162.773438, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.973798 ], [ 161.718750, 55.973798 ], [ 161.718750, 55.578345 ], [ 161.367188, 55.578345 ], [ 161.367188, 55.178868 ], [ 161.718750, 55.178868 ], [ 161.718750, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.367188, 54.775346 ], [ 161.367188, 54.572062 ], [ 160.664062, 54.572062 ], [ 160.664062, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 53.748711 ], [ 159.960938, 53.748711 ], [ 159.960938, 53.330873 ], [ 159.257812, 53.330873 ], [ 159.257812, 53.120405 ], [ 158.203125, 53.120405 ], [ 158.203125, 51.835778 ], [ 157.851562, 51.835778 ], [ 157.851562, 51.618017 ], [ 157.148438, 51.618017 ], [ 157.148438, 51.399206 ], [ 156.796875, 51.399206 ], [ 156.796875, 51.179343 ], [ 156.445312, 51.179343 ], [ 156.445312, 51.399206 ], [ 156.093750, 51.399206 ], [ 156.093750, 52.482780 ], [ 155.742188, 52.482780 ], [ 155.742188, 54.367759 ], [ 155.390625, 54.367759 ], [ 155.390625, 56.170023 ], [ 155.742188, 56.170023 ], [ 155.742188, 56.944974 ], [ 156.093750, 56.944974 ], [ 156.093750, 57.326521 ], [ 156.445312, 57.326521 ], [ 156.445312, 57.704147 ], [ 156.796875, 57.704147 ], [ 156.796875, 57.891497 ], [ 157.851562, 57.891497 ], [ 157.851562, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.447733 ], [ 158.906250, 58.447733 ], [ 158.906250, 58.631217 ], [ 159.257812, 58.631217 ], [ 159.257812, 58.813742 ], [ 159.609375, 58.813742 ], [ 159.609375, 59.175928 ], [ 159.960938, 59.175928 ], [ 159.960938, 59.355596 ], [ 160.312500, 59.355596 ], [ 160.312500, 59.534318 ], [ 160.664062, 59.534318 ], [ 160.664062, 59.888937 ], [ 161.015625, 59.888937 ], [ 161.015625, 60.064840 ], [ 161.367188, 60.064840 ], [ 161.367188, 60.239811 ], [ 161.718750, 60.239811 ], [ 161.718750, 60.413852 ], [ 162.070312, 60.413852 ], [ 162.070312, 60.586967 ], [ 162.421875, 60.586967 ], [ 162.421875, 60.759160 ], [ 162.773438, 60.759160 ], [ 162.773438, 60.930432 ], [ 163.125000, 60.930432 ], [ 163.125000, 61.100789 ], [ 163.476562, 61.100789 ], [ 163.476562, 61.606396 ], [ 163.828125, 61.606396 ], [ 163.828125, 62.267923 ], [ 164.179688, 62.267923 ], [ 164.179688, 62.593341 ], [ 163.125000, 62.593341 ], [ 163.125000, 62.267923 ], [ 162.773438, 62.267923 ], [ 162.773438, 61.938950 ], [ 162.421875, 61.938950 ], [ 162.421875, 61.606396 ], [ 162.070312, 61.606396 ], [ 162.070312, 61.438767 ], [ 161.718750, 61.438767 ], [ 161.718750, 61.270233 ], [ 161.367188, 61.270233 ], [ 161.367188, 61.100789 ], [ 161.015625, 61.100789 ], [ 161.015625, 60.930432 ], [ 160.664062, 60.930432 ], [ 160.664062, 60.759160 ], [ 160.312500, 60.759160 ], [ 160.312500, 60.586967 ], [ 159.960938, 60.586967 ], [ 159.960938, 60.759160 ], [ 159.609375, 60.759160 ], [ 159.609375, 61.438767 ], [ 159.257812, 61.438767 ], [ 159.257812, 61.773123 ], [ 158.906250, 61.773123 ], [ 158.906250, 61.606396 ], [ 157.500000, 61.606396 ], [ 157.500000, 61.438767 ], [ 156.445312, 61.438767 ], [ 156.445312, 61.270233 ], [ 156.093750, 61.270233 ], [ 156.093750, 61.100789 ], [ 155.742188, 61.100789 ], [ 155.742188, 60.759160 ], [ 155.390625, 60.759160 ], [ 155.390625, 60.586967 ], [ 155.039062, 60.586967 ], [ 155.039062, 60.413852 ], [ 154.687500, 60.413852 ], [ 154.687500, 60.064840 ], [ 154.335938, 60.064840 ], [ 154.335938, 59.888937 ], [ 153.984375, 59.888937 ], [ 153.984375, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.687500, 59.534318 ], [ 154.687500, 59.175928 ], [ 153.984375, 59.175928 ], [ 153.984375, 58.995311 ], [ 152.226562, 58.995311 ], [ 152.226562, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 150.117188, 59.534318 ], [ 150.117188, 59.712097 ], [ 149.765625, 59.712097 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.355596 ], [ 148.710938, 59.355596 ], [ 148.710938, 59.175928 ], [ 146.601562, 59.175928 ], [ 146.601562, 59.355596 ], [ 143.789062, 59.355596 ], [ 143.789062, 59.175928 ], [ 142.031250, 59.175928 ], [ 142.031250, 58.995311 ], [ 141.679688, 58.995311 ], [ 141.679688, 58.813742 ], [ 141.328125, 58.813742 ], [ 141.328125, 58.447733 ], [ 140.976562, 58.447733 ], [ 140.976562, 58.263287 ], [ 140.625000, 58.263287 ], [ 140.625000, 58.077876 ], [ 140.273438, 58.077876 ], [ 140.273438, 57.891497 ], [ 139.921875, 57.891497 ], [ 139.921875, 57.704147 ], [ 139.570312, 57.704147 ], [ 139.570312, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 57.136239 ], [ 138.867188, 57.136239 ], [ 138.867188, 56.944974 ], [ 138.515625, 56.944974 ], [ 138.515625, 56.752723 ], [ 138.164062, 56.752723 ], [ 138.164062, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 56.365250 ], [ 137.460938, 56.365250 ], [ 137.460938, 56.170023 ], [ 137.109375, 56.170023 ], [ 137.109375, 55.973798 ], [ 136.757812, 55.973798 ], [ 136.757812, 55.578345 ], [ 136.406250, 55.578345 ], [ 136.406250, 55.379110 ], [ 136.054688, 55.379110 ], [ 136.054688, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.775346 ], [ 136.406250, 54.775346 ], [ 136.406250, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.162434 ], [ 137.460938, 54.162434 ], [ 137.460938, 53.956086 ], [ 138.164062, 53.956086 ], [ 138.164062, 54.162434 ], [ 138.515625, 54.162434 ], [ 138.515625, 54.367759 ], [ 139.570312, 54.367759 ], [ 139.570312, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.625000, 53.748711 ], [ 140.625000, 53.330873 ], [ 140.976562, 53.330873 ], [ 140.976562, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.696361 ], [ 141.679688, 52.696361 ], [ 141.679688, 53.330873 ], [ 142.031250, 53.330873 ], [ 142.031250, 53.748711 ], [ 142.382812, 53.748711 ], [ 142.382812, 53.956086 ], [ 142.734375, 53.956086 ], [ 142.734375, 53.330873 ], [ 143.085938, 53.330873 ], [ 143.085938, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.513427 ], [ 143.789062, 50.513427 ], [ 143.789062, 50.064192 ], [ 144.140625, 50.064192 ], [ 144.140625, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 49.152970 ], [ 143.437500, 49.152970 ], [ 143.437500, 49.382373 ], [ 143.085938, 49.382373 ], [ 143.085938, 48.922499 ], [ 142.734375, 48.922499 ], [ 142.734375, 48.224673 ], [ 142.382812, 48.224673 ], [ 142.382812, 47.754098 ], [ 142.734375, 47.754098 ], [ 142.734375, 47.517201 ], [ 143.085938, 47.517201 ], [ 143.085938, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.316584 ], [ 143.085938, 46.316584 ], [ 143.085938, 46.558860 ], [ 142.382812, 46.558860 ], [ 142.382812, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 46.558860 ], [ 141.679688, 46.558860 ], [ 141.679688, 49.382373 ], [ 142.031250, 49.382373 ], [ 142.031250, 51.179343 ], [ 141.679688, 51.179343 ], [ 141.679688, 51.618017 ], [ 141.328125, 51.618017 ], [ 141.328125, 52.052490 ], [ 140.976562, 52.052490 ], [ 140.976562, 51.835778 ], [ 140.625000, 51.835778 ], [ 140.625000, 51.399206 ], [ 140.273438, 51.399206 ], [ 140.273438, 49.152970 ], [ 139.921875, 49.152970 ], [ 139.921875, 48.224673 ], [ 139.570312, 48.224673 ], [ 139.570312, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 138.867188, 47.517201 ], [ 138.867188, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.558860 ], [ 138.164062, 46.558860 ], [ 138.164062, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.828799 ], [ 137.460938, 45.828799 ], [ 137.460938, 45.583290 ], [ 137.109375, 45.583290 ], [ 137.109375, 45.336702 ], [ 136.757812, 45.336702 ], [ 136.757812, 45.089036 ], [ 136.406250, 45.089036 ], [ 136.406250, 44.840291 ], [ 136.054688, 44.840291 ], [ 136.054688, 44.339565 ], [ 135.703125, 44.339565 ], [ 135.703125, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.834527 ], [ 135.000000, 43.834527 ], [ 135.000000, 43.580391 ], [ 134.648438, 43.580391 ], [ 134.648438, 43.325178 ], [ 134.296875, 43.325178 ], [ 134.296875, 43.068888 ], [ 133.593750, 43.068888 ], [ 133.593750, 42.811522 ], [ 132.539062, 42.811522 ], [ 132.539062, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.811522 ], [ 131.132812, 42.811522 ], [ 131.132812, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.293564 ], [ 130.429688, 42.293564 ], [ 130.429688, 43.068888 ], [ 131.132812, 43.068888 ], [ 131.132812, 44.590467 ], [ 130.781250, 44.590467 ], [ 130.781250, 45.089036 ], [ 131.484375, 45.089036 ], [ 131.484375, 45.336702 ], [ 132.890625, 45.336702 ], [ 132.890625, 45.583290 ], [ 133.242188, 45.583290 ], [ 133.242188, 46.073231 ], [ 133.593750, 46.073231 ], [ 133.593750, 46.800059 ], [ 133.945312, 46.800059 ], [ 133.945312, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 48.458352 ], [ 133.945312, 48.458352 ], [ 133.945312, 48.224673 ], [ 132.890625, 48.224673 ], [ 132.890625, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.429688, 48.458352 ], [ 130.429688, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.610710 ], [ 128.320312, 49.610710 ], [ 128.320312, 49.837982 ], [ 127.617188, 49.837982 ], [ 127.617188, 50.289339 ], [ 127.265625, 50.289339 ], [ 127.265625, 51.179343 ], [ 126.914062, 51.179343 ], [ 126.914062, 51.618017 ], [ 126.562500, 51.618017 ], [ 126.562500, 52.052490 ], [ 126.210938, 52.052490 ], [ 126.210938, 52.482780 ], [ 125.859375, 52.482780 ], [ 125.859375, 52.908902 ], [ 125.507812, 52.908902 ], [ 125.507812, 53.120405 ], [ 124.804688, 53.120405 ], [ 124.804688, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.540307 ], [ 121.640625, 53.540307 ], [ 121.640625, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 53.120405 ], [ 120.234375, 53.120405 ], [ 120.234375, 52.908902 ], [ 119.882812, 52.908902 ], [ 119.882812, 52.696361 ], [ 120.585938, 52.696361 ], [ 120.585938, 51.835778 ], [ 119.882812, 51.835778 ], [ 119.882812, 51.399206 ], [ 119.531250, 51.399206 ], [ 119.531250, 50.958427 ], [ 119.179688, 50.958427 ], [ 119.179688, 50.064192 ], [ 118.828125, 50.064192 ], [ 118.828125, 49.837982 ], [ 118.125000, 49.837982 ], [ 118.125000, 49.610710 ], [ 117.070312, 49.610710 ], [ 117.070312, 49.837982 ], [ 116.367188, 49.837982 ], [ 116.367188, 50.064192 ], [ 116.015625, 50.064192 ], [ 116.015625, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 50.289339 ], [ 114.257812, 50.289339 ], [ 114.257812, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.837982 ], [ 113.203125, 49.837982 ], [ 113.203125, 49.610710 ], [ 112.500000, 49.610710 ], [ 112.500000, 49.382373 ], [ 111.093750, 49.382373 ], [ 111.093750, 49.152970 ], [ 109.687500, 49.152970 ], [ 109.687500, 49.382373 ], [ 107.929688, 49.382373 ], [ 107.929688, 49.610710 ], [ 107.578125, 49.610710 ], [ 107.578125, 49.837982 ], [ 107.226562, 49.837982 ], [ 107.226562, 50.064192 ], [ 106.875000, 50.064192 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.513427 ], [ 105.468750, 50.513427 ], [ 105.468750, 50.289339 ], [ 102.304688, 50.289339 ], [ 102.304688, 50.513427 ], [ 101.953125, 50.513427 ], [ 101.953125, 51.399206 ], [ 100.898438, 51.399206 ], [ 100.898438, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 51.835778 ], [ 99.140625, 51.835778 ], [ 99.140625, 52.052490 ], [ 98.789062, 52.052490 ], [ 98.789062, 51.835778 ], [ 98.437500, 51.835778 ], [ 98.437500, 51.618017 ], [ 98.085938, 51.618017 ], [ 98.085938, 51.179343 ], [ 97.734375, 51.179343 ], [ 97.734375, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.289339 ], [ 97.734375, 50.289339 ], [ 97.734375, 50.064192 ], [ 97.382812, 50.064192 ], [ 97.382812, 49.837982 ], [ 95.976562, 49.837982 ], [ 95.976562, 50.064192 ], [ 94.218750, 50.064192 ], [ 94.218750, 50.289339 ], [ 93.867188, 50.289339 ], [ 93.867188, 50.513427 ], [ 92.460938, 50.513427 ], [ 92.460938, 50.736455 ], [ 91.406250, 50.736455 ], [ 91.406250, 50.513427 ], [ 90.703125, 50.513427 ], [ 90.703125, 50.289339 ], [ 90.000000, 50.289339 ], [ 90.000000, 50.064192 ], [ 89.648438, 50.064192 ], [ 89.648438, 49.837982 ], [ 88.945312, 49.837982 ], [ 88.945312, 49.610710 ], [ 88.593750, 49.610710 ], [ 88.593750, 49.382373 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ], [ [ 134.648438, 48.690960 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.690960 ], [ 134.648438, 48.690960 ] ] ], [ [ [ 142.382812, 54.162434 ], [ 142.031250, 54.162434 ], [ 142.031250, 54.367759 ], [ 142.382812, 54.367759 ], [ 142.382812, 54.162434 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 23.241346 ], [ 88.945312, 23.241346 ], [ 88.945312, 21.616579 ], [ 88.242188, 21.616579 ], [ 88.242188, 24.206890 ] ] ], [ [ [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.679688, 28.921631 ], [ 96.679688, 28.613459 ], [ 96.328125, 28.613459 ], [ 96.328125, 28.304381 ], [ 97.382812, 28.304381 ], [ 97.382812, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 27.059126 ], [ 95.976562, 27.059126 ], [ 95.976562, 26.745610 ], [ 95.625000, 26.745610 ], [ 95.625000, 26.431228 ], [ 95.273438, 26.431228 ], [ 95.273438, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 25.165173 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.206890 ], [ 93.164062, 24.206890 ], [ 93.164062, 21.943046 ], [ 92.812500, 21.943046 ], [ 92.812500, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.917923 ], [ 92.109375, 22.917923 ], [ 92.109375, 23.563987 ], [ 91.757812, 23.563987 ], [ 91.757812, 22.917923 ], [ 91.406250, 22.917923 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 92.109375, 24.206890 ], [ 92.109375, 24.527135 ], [ 92.460938, 24.527135 ], [ 92.460938, 24.846565 ], [ 91.757812, 24.846565 ], [ 91.757812, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 26.115986 ], [ 88.242188, 26.115986 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.683528 ], [ 88.945312, 27.683528 ], [ 88.945312, 26.745610 ], [ 92.109375, 26.745610 ], [ 92.109375, 27.371767 ], [ 91.757812, 27.371767 ], [ 91.757812, 27.683528 ], [ 92.460938, 27.683528 ], [ 92.460938, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.304381 ], [ 93.515625, 28.304381 ], [ 93.515625, 28.613459 ], [ 93.867188, 28.613459 ], [ 93.867188, 28.921631 ], [ 95.625000, 28.921631 ], [ 95.625000, 29.228890 ], [ 96.328125, 29.228890 ] ] ], [ [ [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 25.482951 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 22.593726 ], [ 88.945312, 22.593726 ], [ 88.945312, 21.943046 ], [ 88.242188, 21.943046 ], [ 88.242188, 23.241346 ] ] ], [ [ [ 94.570312, 29.535230 ], [ 94.570312, 29.228890 ], [ 96.328125, 29.228890 ], [ 96.328125, 28.304381 ], [ 97.031250, 28.304381 ], [ 97.031250, 27.371767 ], [ 96.328125, 27.371767 ], [ 96.328125, 27.059126 ], [ 95.625000, 27.059126 ], [ 95.625000, 26.745610 ], [ 94.921875, 26.745610 ], [ 94.921875, 25.482951 ], [ 94.570312, 25.482951 ], [ 94.570312, 24.846565 ], [ 94.218750, 24.846565 ], [ 94.218750, 24.206890 ], [ 93.867188, 24.206890 ], [ 93.867188, 23.885838 ], [ 93.164062, 23.885838 ], [ 93.164062, 22.917923 ], [ 92.812500, 22.917923 ], [ 92.812500, 22.593726 ], [ 93.164062, 22.593726 ], [ 93.164062, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.917923 ], [ 92.109375, 22.917923 ], [ 92.109375, 23.885838 ], [ 91.757812, 23.885838 ], [ 91.757812, 23.563987 ], [ 91.406250, 23.563987 ], [ 91.406250, 23.241346 ], [ 91.054688, 23.241346 ], [ 91.054688, 23.885838 ], [ 91.406250, 23.885838 ], [ 91.406250, 24.206890 ], [ 91.757812, 24.206890 ], [ 91.757812, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 25.165173 ], [ 90.000000, 25.165173 ], [ 90.000000, 25.482951 ], [ 89.648438, 25.482951 ], [ 89.648438, 26.115986 ], [ 88.945312, 26.115986 ], [ 88.945312, 26.431228 ], [ 88.242188, 26.431228 ], [ 88.242188, 27.994401 ], [ 88.593750, 27.994401 ], [ 88.593750, 27.059126 ], [ 89.296875, 27.059126 ], [ 89.296875, 26.745610 ], [ 90.351562, 26.745610 ], [ 90.351562, 27.059126 ], [ 91.757812, 27.059126 ], [ 91.757812, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.613459 ], [ 93.164062, 28.613459 ], [ 93.164062, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 29.228890 ], [ 94.218750, 29.228890 ], [ 94.218750, 29.535230 ], [ 94.570312, 29.535230 ] ] ], [ [ [ 88.242188, 24.527135 ], [ 88.593750, 24.527135 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.527135 ] ] ], [ [ [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.165173 ], [ 88.242188, 25.165173 ], [ 88.242188, 25.482951 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.492188, 51.835778 ], [ 99.492188, 51.618017 ], [ 100.898438, 51.618017 ], [ 100.898438, 51.399206 ], [ 101.601562, 51.399206 ], [ 101.601562, 51.179343 ], [ 101.953125, 51.179343 ], [ 101.953125, 50.736455 ], [ 102.304688, 50.736455 ], [ 102.304688, 50.289339 ], [ 103.007812, 50.289339 ], [ 103.007812, 50.064192 ], [ 104.414062, 50.064192 ], [ 104.414062, 50.289339 ], [ 105.468750, 50.289339 ], [ 105.468750, 50.513427 ], [ 106.171875, 50.513427 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.064192 ], [ 107.578125, 50.064192 ], [ 107.578125, 49.837982 ], [ 107.929688, 49.837982 ], [ 107.929688, 49.610710 ], [ 108.281250, 49.610710 ], [ 108.281250, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 49.152970 ], [ 111.445312, 49.152970 ], [ 111.445312, 49.382373 ], [ 112.500000, 49.382373 ], [ 112.500000, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.382373 ], [ 116.367188, 49.382373 ], [ 116.367188, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 48.690960 ], [ 115.664062, 48.690960 ], [ 115.664062, 48.224673 ], [ 115.312500, 48.224673 ], [ 115.312500, 47.989922 ], [ 115.664062, 47.989922 ], [ 115.664062, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.279229 ], [ 119.531250, 47.279229 ], [ 119.531250, 47.040182 ], [ 119.882812, 47.040182 ], [ 119.882812, 46.800059 ], [ 118.476562, 46.800059 ], [ 118.476562, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 45.828799 ], [ 116.015625, 45.828799 ], [ 116.015625, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.336702 ], [ 114.609375, 45.336702 ], [ 114.609375, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.840291 ], [ 112.851562, 44.840291 ], [ 112.851562, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.590467 ], [ 111.445312, 44.590467 ], [ 111.445312, 44.087585 ], [ 111.796875, 44.087585 ], [ 111.796875, 43.580391 ], [ 111.445312, 43.580391 ], [ 111.445312, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.068888 ], [ 110.742188, 43.068888 ], [ 110.742188, 42.811522 ], [ 110.039062, 42.811522 ], [ 110.039062, 42.553080 ], [ 107.578125, 42.553080 ], [ 107.578125, 42.293564 ], [ 106.875000, 42.293564 ], [ 106.875000, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.508577 ], [ 104.765625, 41.508577 ], [ 104.765625, 41.771312 ], [ 104.414062, 41.771312 ], [ 104.414062, 42.032974 ], [ 102.656250, 42.032974 ], [ 102.656250, 42.293564 ], [ 101.953125, 42.293564 ], [ 101.953125, 42.553080 ], [ 98.085938, 42.553080 ], [ 98.085938, 42.811522 ], [ 95.976562, 42.811522 ], [ 95.976562, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 43.834527 ], [ 95.273438, 43.834527 ], [ 95.273438, 44.339565 ], [ 94.218750, 44.339565 ], [ 94.218750, 44.590467 ], [ 93.867188, 44.590467 ], [ 93.867188, 44.840291 ], [ 93.515625, 44.840291 ], [ 93.515625, 45.089036 ], [ 91.406250, 45.089036 ], [ 91.406250, 45.336702 ], [ 91.054688, 45.336702 ], [ 91.054688, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 46.316584 ], [ 91.054688, 46.316584 ], [ 91.054688, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 49.382373 ], [ 89.296875, 49.382373 ], [ 89.296875, 49.610710 ], [ 89.648438, 49.610710 ], [ 89.648438, 49.837982 ], [ 90.351562, 49.837982 ], [ 90.351562, 50.064192 ], [ 90.703125, 50.064192 ], [ 90.703125, 50.289339 ], [ 91.406250, 50.289339 ], [ 91.406250, 50.513427 ], [ 92.109375, 50.513427 ], [ 92.109375, 50.736455 ], [ 92.460938, 50.736455 ], [ 92.460938, 50.513427 ], [ 94.218750, 50.513427 ], [ 94.218750, 50.289339 ], [ 94.570312, 50.289339 ], [ 94.570312, 50.064192 ], [ 96.328125, 50.064192 ], [ 96.328125, 49.837982 ], [ 97.734375, 49.837982 ], [ 97.734375, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 50.958427 ], [ 98.085938, 50.958427 ], [ 98.085938, 51.399206 ], [ 98.437500, 51.399206 ], [ 98.437500, 51.835778 ], [ 99.492188, 51.835778 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.140625, 52.052490 ], [ 99.140625, 51.835778 ], [ 99.843750, 51.835778 ], [ 99.843750, 51.618017 ], [ 100.898438, 51.618017 ], [ 100.898438, 51.399206 ], [ 101.953125, 51.399206 ], [ 101.953125, 50.513427 ], [ 102.304688, 50.513427 ], [ 102.304688, 50.289339 ], [ 105.468750, 50.289339 ], [ 105.468750, 50.513427 ], [ 106.171875, 50.513427 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.064192 ], [ 107.226562, 50.064192 ], [ 107.226562, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.610710 ], [ 107.929688, 49.610710 ], [ 107.929688, 49.382373 ], [ 109.687500, 49.382373 ], [ 109.687500, 49.152970 ], [ 111.093750, 49.152970 ], [ 111.093750, 49.382373 ], [ 112.500000, 49.382373 ], [ 112.500000, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.837982 ], [ 113.906250, 49.837982 ], [ 113.906250, 50.064192 ], [ 114.257812, 50.064192 ], [ 114.257812, 50.289339 ], [ 114.960938, 50.289339 ], [ 114.960938, 50.064192 ], [ 115.312500, 50.064192 ], [ 115.312500, 49.837982 ], [ 116.015625, 49.837982 ], [ 116.015625, 50.064192 ], [ 116.367188, 50.064192 ], [ 116.367188, 49.610710 ], [ 116.015625, 49.610710 ], [ 116.015625, 48.922499 ], [ 115.664062, 48.922499 ], [ 115.664062, 48.458352 ], [ 115.312500, 48.458352 ], [ 115.312500, 47.989922 ], [ 115.664062, 47.989922 ], [ 115.664062, 47.754098 ], [ 116.015625, 47.754098 ], [ 116.015625, 47.989922 ], [ 116.367188, 47.989922 ], [ 116.367188, 47.754098 ], [ 117.421875, 47.754098 ], [ 117.421875, 47.989922 ], [ 118.476562, 47.989922 ], [ 118.476562, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.279229 ], [ 119.531250, 47.279229 ], [ 119.531250, 46.800059 ], [ 118.828125, 46.800059 ], [ 118.828125, 47.040182 ], [ 118.476562, 47.040182 ], [ 118.476562, 46.800059 ], [ 117.421875, 46.800059 ], [ 117.421875, 46.558860 ], [ 116.718750, 46.558860 ], [ 116.718750, 46.316584 ], [ 116.367188, 46.316584 ], [ 116.367188, 46.073231 ], [ 116.015625, 46.073231 ], [ 116.015625, 45.828799 ], [ 115.312500, 45.828799 ], [ 115.312500, 45.583290 ], [ 114.257812, 45.583290 ], [ 114.257812, 45.336702 ], [ 113.906250, 45.336702 ], [ 113.906250, 45.089036 ], [ 113.554688, 45.089036 ], [ 113.554688, 44.840291 ], [ 112.500000, 44.840291 ], [ 112.500000, 45.089036 ], [ 111.445312, 45.089036 ], [ 111.445312, 44.590467 ], [ 111.093750, 44.590467 ], [ 111.093750, 44.339565 ], [ 111.445312, 44.339565 ], [ 111.445312, 43.834527 ], [ 111.796875, 43.834527 ], [ 111.796875, 43.580391 ], [ 111.093750, 43.580391 ], [ 111.093750, 43.325178 ], [ 110.742188, 43.325178 ], [ 110.742188, 43.068888 ], [ 110.390625, 43.068888 ], [ 110.390625, 42.811522 ], [ 109.687500, 42.811522 ], [ 109.687500, 42.553080 ], [ 106.875000, 42.553080 ], [ 106.875000, 42.293564 ], [ 105.820312, 42.293564 ], [ 105.820312, 42.032974 ], [ 105.117188, 42.032974 ], [ 105.117188, 41.771312 ], [ 104.414062, 41.771312 ], [ 104.414062, 42.032974 ], [ 102.304688, 42.032974 ], [ 102.304688, 42.293564 ], [ 101.601562, 42.293564 ], [ 101.601562, 42.553080 ], [ 100.898438, 42.553080 ], [ 100.898438, 42.811522 ], [ 100.195312, 42.811522 ], [ 100.195312, 42.553080 ], [ 98.085938, 42.553080 ], [ 98.085938, 42.811522 ], [ 95.976562, 42.811522 ], [ 95.976562, 43.068888 ], [ 95.625000, 43.068888 ], [ 95.625000, 43.834527 ], [ 95.273438, 43.834527 ], [ 95.273438, 44.339565 ], [ 94.570312, 44.339565 ], [ 94.570312, 44.590467 ], [ 93.867188, 44.590467 ], [ 93.867188, 44.840291 ], [ 93.164062, 44.840291 ], [ 93.164062, 45.089036 ], [ 92.460938, 45.089036 ], [ 92.460938, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.351562, 45.583290 ], [ 90.351562, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 47.040182 ], [ 90.351562, 47.040182 ], [ 90.351562, 47.517201 ], [ 90.000000, 47.517201 ], [ 90.000000, 47.754098 ], [ 89.296875, 47.754098 ], [ 89.296875, 47.989922 ], [ 88.593750, 47.989922 ], [ 88.593750, 48.224673 ], [ 88.242188, 48.224673 ], [ 88.242188, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 50.064192 ], [ 90.000000, 50.064192 ], [ 90.000000, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.736455 ], [ 92.460938, 50.736455 ], [ 92.460938, 50.513427 ], [ 93.867188, 50.513427 ], [ 93.867188, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 50.064192 ], [ 95.976562, 50.064192 ], [ 95.976562, 49.837982 ], [ 97.382812, 49.837982 ], [ 97.382812, 50.064192 ], [ 97.734375, 50.064192 ], [ 97.734375, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.736455 ], [ 97.734375, 50.736455 ], [ 97.734375, 51.179343 ], [ 98.085938, 51.179343 ], [ 98.085938, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.835778 ], [ 98.789062, 51.835778 ], [ 98.789062, 52.052490 ], [ 99.140625, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.371767 ], [ 92.109375, 27.371767 ], [ 92.109375, 26.745610 ], [ 88.945312, 26.745610 ], [ 88.945312, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.994401 ], [ 91.406250, 27.994401 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.054688, 28.304381 ], [ 91.054688, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.059126 ], [ 90.351562, 27.059126 ], [ 90.351562, 26.745610 ], [ 89.296875, 26.745610 ], [ 89.296875, 27.059126 ], [ 88.593750, 27.059126 ], [ 88.593750, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 28.304381 ], [ 91.054688, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.703125, 22.593726 ], [ 90.703125, 21.943046 ], [ 88.945312, 21.943046 ], [ 88.945312, 23.241346 ], [ 88.593750, 23.241346 ], [ 88.593750, 24.206890 ], [ 88.242188, 24.206890 ], [ 88.242188, 24.846565 ], [ 88.945312, 24.846565 ], [ 88.945312, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.115986 ], [ 90.000000, 26.115986 ], [ 90.000000, 25.165173 ], [ 91.757812, 25.165173 ], [ 91.757812, 24.846565 ], [ 92.460938, 24.846565 ], [ 92.460938, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 22.917923 ] ] ], [ [ [ 91.406250, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 23.563987 ], [ 92.109375, 23.563987 ], [ 92.109375, 22.917923 ], [ 92.460938, 22.917923 ], [ 92.460938, 22.268764 ], [ 92.812500, 22.268764 ], [ 92.812500, 21.289374 ], [ 92.460938, 21.289374 ], [ 92.460938, 20.961440 ], [ 92.109375, 20.961440 ], [ 92.109375, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.945312, 26.431228 ], [ 88.945312, 26.115986 ], [ 89.648438, 26.115986 ], [ 89.648438, 25.482951 ], [ 90.000000, 25.482951 ], [ 90.000000, 25.165173 ], [ 92.109375, 25.165173 ], [ 92.109375, 24.527135 ], [ 91.757812, 24.527135 ], [ 91.757812, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 23.885838 ], [ 91.054688, 23.885838 ], [ 91.054688, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.563987 ], [ 91.757812, 23.563987 ], [ 91.757812, 23.885838 ], [ 92.109375, 23.885838 ], [ 92.109375, 22.917923 ], [ 92.460938, 22.917923 ], [ 92.460938, 21.616579 ], [ 92.109375, 21.616579 ], [ 92.109375, 20.961440 ], [ 91.757812, 20.961440 ], [ 91.757812, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.268764 ], [ 90.000000, 22.268764 ], [ 90.000000, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.268764 ], [ 88.945312, 22.268764 ], [ 88.945312, 22.593726 ], [ 88.593750, 22.593726 ], [ 88.593750, 23.241346 ], [ 88.242188, 23.241346 ], [ 88.242188, 24.206890 ], [ 88.593750, 24.206890 ], [ 88.593750, 24.527135 ], [ 88.242188, 24.527135 ], [ 88.242188, 25.165173 ], [ 88.593750, 25.165173 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 26.431228 ], [ 88.945312, 26.431228 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 19.973349 ], [ 110.742188, 19.642588 ], [ 111.093750, 19.642588 ], [ 111.093750, 19.311143 ], [ 110.742188, 19.311143 ], [ 110.742188, 18.979026 ], [ 110.390625, 18.979026 ], [ 110.390625, 18.646245 ], [ 110.039062, 18.646245 ], [ 110.039062, 18.312811 ], [ 108.632812, 18.312811 ], [ 108.632812, 19.642588 ], [ 108.984375, 19.642588 ], [ 108.984375, 19.973349 ], [ 110.742188, 19.973349 ] ] ], [ [ [ 123.750000, 53.540307 ], [ 123.750000, 53.330873 ], [ 124.453125, 53.330873 ], [ 124.453125, 53.120405 ], [ 125.156250, 53.120405 ], [ 125.156250, 52.908902 ], [ 125.507812, 52.908902 ], [ 125.507812, 52.696361 ], [ 125.859375, 52.696361 ], [ 125.859375, 52.482780 ], [ 126.210938, 52.482780 ], [ 126.210938, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.618017 ], [ 126.914062, 51.618017 ], [ 126.914062, 50.958427 ], [ 127.265625, 50.958427 ], [ 127.265625, 50.289339 ], [ 127.617188, 50.289339 ], [ 127.617188, 49.837982 ], [ 127.968750, 49.837982 ], [ 127.968750, 49.610710 ], [ 128.671875, 49.610710 ], [ 128.671875, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 48.690960 ], [ 130.429688, 48.690960 ], [ 130.429688, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 131.132812, 47.989922 ], [ 131.132812, 47.754098 ], [ 132.890625, 47.754098 ], [ 132.890625, 47.989922 ], [ 133.242188, 47.989922 ], [ 133.242188, 48.224673 ], [ 134.296875, 48.224673 ], [ 134.296875, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.279229 ], [ 133.945312, 47.279229 ], [ 133.945312, 45.828799 ], [ 133.593750, 45.828799 ], [ 133.593750, 45.336702 ], [ 133.242188, 45.336702 ], [ 133.242188, 45.089036 ], [ 132.187500, 45.089036 ], [ 132.187500, 45.336702 ], [ 131.835938, 45.336702 ], [ 131.835938, 45.089036 ], [ 131.132812, 45.089036 ], [ 131.132812, 42.811522 ], [ 130.781250, 42.811522 ], [ 130.781250, 42.293564 ], [ 130.429688, 42.293564 ], [ 130.429688, 42.811522 ], [ 129.726562, 42.811522 ], [ 129.726562, 42.553080 ], [ 129.375000, 42.553080 ], [ 129.375000, 42.293564 ], [ 128.671875, 42.293564 ], [ 128.671875, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.320312, 41.771312 ], [ 128.320312, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 40.713956 ], [ 125.507812, 40.713956 ], [ 125.507812, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.178873 ], [ 124.453125, 40.178873 ], [ 124.453125, 39.909736 ], [ 123.750000, 39.909736 ], [ 123.750000, 39.639538 ], [ 122.695312, 39.639538 ], [ 122.695312, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 39.095963 ], [ 121.640625, 39.095963 ], [ 121.640625, 39.368279 ], [ 121.289062, 39.368279 ], [ 121.289062, 39.639538 ], [ 121.640625, 39.639538 ], [ 121.640625, 39.909736 ], [ 121.992188, 39.909736 ], [ 121.992188, 40.178873 ], [ 122.343750, 40.178873 ], [ 122.343750, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.446947 ], [ 120.585938, 40.446947 ], [ 120.585938, 40.178873 ], [ 119.882812, 40.178873 ], [ 119.882812, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.639538 ], [ 119.179688, 39.639538 ], [ 119.179688, 39.368279 ], [ 118.828125, 39.368279 ], [ 118.828125, 39.095963 ], [ 118.125000, 39.095963 ], [ 118.125000, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 37.996163 ], [ 118.828125, 37.996163 ], [ 118.828125, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.439974 ], [ 120.585938, 37.439974 ], [ 120.585938, 37.718590 ], [ 121.289062, 37.718590 ], [ 121.289062, 37.439974 ], [ 122.343750, 37.439974 ], [ 122.343750, 37.160317 ], [ 122.695312, 37.160317 ], [ 122.695312, 36.879621 ], [ 121.992188, 36.879621 ], [ 121.992188, 36.597889 ], [ 120.937500, 36.597889 ], [ 120.937500, 36.315125 ], [ 120.585938, 36.315125 ], [ 120.585938, 36.031332 ], [ 120.234375, 36.031332 ], [ 120.234375, 35.746512 ], [ 119.531250, 35.746512 ], [ 119.531250, 35.173808 ], [ 119.179688, 35.173808 ], [ 119.179688, 34.597042 ], [ 119.882812, 34.597042 ], [ 119.882812, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.585938, 33.724340 ], [ 120.585938, 33.137551 ], [ 120.937500, 33.137551 ], [ 120.937500, 32.546813 ], [ 121.289062, 32.546813 ], [ 121.289062, 32.249974 ], [ 121.640625, 32.249974 ], [ 121.640625, 31.653381 ], [ 121.992188, 31.653381 ], [ 121.992188, 30.751278 ], [ 121.289062, 30.751278 ], [ 121.289062, 30.448674 ], [ 121.640625, 30.448674 ], [ 121.640625, 29.840644 ], [ 121.992188, 29.840644 ], [ 121.992188, 28.613459 ], [ 121.640625, 28.613459 ], [ 121.640625, 27.994401 ], [ 121.289062, 27.994401 ], [ 121.289062, 27.683528 ], [ 120.937500, 27.683528 ], [ 120.937500, 27.371767 ], [ 120.585938, 27.371767 ], [ 120.585938, 27.059126 ], [ 120.234375, 27.059126 ], [ 120.234375, 26.745610 ], [ 119.882812, 26.745610 ], [ 119.882812, 26.115986 ], [ 119.531250, 26.115986 ], [ 119.531250, 25.482951 ], [ 119.179688, 25.482951 ], [ 119.179688, 24.846565 ], [ 118.828125, 24.846565 ], [ 118.828125, 24.206890 ], [ 118.476562, 24.206890 ], [ 118.476562, 23.885838 ], [ 117.773438, 23.885838 ], [ 117.773438, 23.563987 ], [ 117.421875, 23.563987 ], [ 117.421875, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 22.917923 ], [ 115.664062, 22.917923 ], [ 115.664062, 22.593726 ], [ 114.609375, 22.593726 ], [ 114.609375, 22.268764 ], [ 113.554688, 22.268764 ], [ 113.554688, 21.943046 ], [ 112.851562, 21.943046 ], [ 112.851562, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.289374 ], [ 110.742188, 21.289374 ], [ 110.742188, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 20.303418 ], [ 110.039062, 20.303418 ], [ 110.039062, 20.632784 ], [ 109.687500, 20.632784 ], [ 109.687500, 20.961440 ], [ 110.039062, 20.961440 ], [ 110.039062, 21.289374 ], [ 108.984375, 21.289374 ], [ 108.984375, 21.616579 ], [ 107.226562, 21.616579 ], [ 107.226562, 21.943046 ], [ 106.523438, 21.943046 ], [ 106.523438, 22.593726 ], [ 106.875000, 22.593726 ], [ 106.875000, 22.917923 ], [ 105.468750, 22.917923 ], [ 105.468750, 23.241346 ], [ 105.117188, 23.241346 ], [ 105.117188, 22.917923 ], [ 104.062500, 22.917923 ], [ 104.062500, 22.593726 ], [ 102.304688, 22.593726 ], [ 102.304688, 22.268764 ], [ 101.601562, 22.268764 ], [ 101.601562, 21.616579 ], [ 101.953125, 21.616579 ], [ 101.953125, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 21.616579 ], [ 99.492188, 21.616579 ], [ 99.492188, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.492188, 22.593726 ], [ 99.492188, 22.917923 ], [ 98.789062, 22.917923 ], [ 98.789062, 24.206890 ], [ 98.437500, 24.206890 ], [ 98.437500, 23.885838 ], [ 97.734375, 23.885838 ], [ 97.734375, 25.165173 ], [ 98.085938, 25.165173 ], [ 98.085938, 25.482951 ], [ 98.789062, 25.482951 ], [ 98.789062, 27.371767 ], [ 98.085938, 27.371767 ], [ 98.085938, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 28.613459 ], [ 96.679688, 28.613459 ], [ 96.679688, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 95.625000, 29.228890 ], [ 95.625000, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 28.613459 ], [ 93.515625, 28.613459 ], [ 93.515625, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 27.994401 ], [ 92.460938, 27.994401 ], [ 92.460938, 27.683528 ], [ 91.406250, 27.683528 ], [ 91.406250, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.351562, 47.754098 ], [ 90.351562, 47.517201 ], [ 90.703125, 47.517201 ], [ 90.703125, 47.040182 ], [ 91.054688, 47.040182 ], [ 91.054688, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.583290 ], [ 91.054688, 45.583290 ], [ 91.054688, 45.336702 ], [ 91.406250, 45.336702 ], [ 91.406250, 45.089036 ], [ 93.515625, 45.089036 ], [ 93.515625, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.590467 ], [ 94.218750, 44.590467 ], [ 94.218750, 44.339565 ], [ 95.273438, 44.339565 ], [ 95.273438, 43.834527 ], [ 95.625000, 43.834527 ], [ 95.625000, 43.068888 ], [ 95.976562, 43.068888 ], [ 95.976562, 42.811522 ], [ 98.085938, 42.811522 ], [ 98.085938, 42.553080 ], [ 101.953125, 42.553080 ], [ 101.953125, 42.293564 ], [ 102.656250, 42.293564 ], [ 102.656250, 42.032974 ], [ 104.414062, 42.032974 ], [ 104.414062, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.508577 ], [ 105.468750, 41.508577 ], [ 105.468750, 41.771312 ], [ 106.171875, 41.771312 ], [ 106.171875, 42.032974 ], [ 106.875000, 42.032974 ], [ 106.875000, 42.293564 ], [ 107.578125, 42.293564 ], [ 107.578125, 42.553080 ], [ 110.039062, 42.553080 ], [ 110.039062, 42.811522 ], [ 110.742188, 42.811522 ], [ 110.742188, 43.068888 ], [ 111.093750, 43.068888 ], [ 111.093750, 43.325178 ], [ 111.445312, 43.325178 ], [ 111.445312, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.590467 ], [ 111.796875, 44.590467 ], [ 111.796875, 45.089036 ], [ 112.851562, 45.089036 ], [ 112.851562, 44.840291 ], [ 113.906250, 44.840291 ], [ 113.906250, 45.089036 ], [ 114.609375, 45.089036 ], [ 114.609375, 45.336702 ], [ 115.312500, 45.336702 ], [ 115.312500, 45.583290 ], [ 116.015625, 45.583290 ], [ 116.015625, 45.828799 ], [ 116.367188, 45.828799 ], [ 116.367188, 46.073231 ], [ 116.718750, 46.073231 ], [ 116.718750, 46.316584 ], [ 117.421875, 46.316584 ], [ 117.421875, 46.558860 ], [ 118.476562, 46.558860 ], [ 118.476562, 46.800059 ], [ 119.882812, 46.800059 ], [ 119.882812, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.279229 ], [ 119.179688, 47.279229 ], [ 119.179688, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 48.224673 ], [ 115.664062, 48.224673 ], [ 115.664062, 48.690960 ], [ 116.015625, 48.690960 ], [ 116.015625, 48.922499 ], [ 116.367188, 48.922499 ], [ 116.367188, 49.382373 ], [ 116.718750, 49.382373 ], [ 116.718750, 49.837982 ], [ 117.070312, 49.837982 ], [ 117.070312, 49.610710 ], [ 118.476562, 49.610710 ], [ 118.476562, 49.837982 ], [ 119.179688, 49.837982 ], [ 119.179688, 50.513427 ], [ 119.531250, 50.513427 ], [ 119.531250, 50.958427 ], [ 119.882812, 50.958427 ], [ 119.882812, 51.399206 ], [ 120.234375, 51.399206 ], [ 120.234375, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 52.482780 ], [ 120.234375, 52.482780 ], [ 120.234375, 52.696361 ], [ 120.585938, 52.696361 ], [ 120.585938, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.330873 ], [ 123.046875, 53.330873 ], [ 123.046875, 53.540307 ], [ 123.750000, 53.540307 ] ] ], [ [ [ 121.640625, 39.095963 ], [ 121.640625, 38.822591 ], [ 121.289062, 38.822591 ], [ 121.289062, 39.095963 ], [ 121.640625, 39.095963 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.750000, 53.540307 ], [ 123.750000, 53.330873 ], [ 124.804688, 53.330873 ], [ 124.804688, 53.120405 ], [ 125.507812, 53.120405 ], [ 125.507812, 52.908902 ], [ 125.859375, 52.908902 ], [ 125.859375, 52.482780 ], [ 126.210938, 52.482780 ], [ 126.210938, 52.052490 ], [ 126.562500, 52.052490 ], [ 126.562500, 51.618017 ], [ 126.914062, 51.618017 ], [ 126.914062, 51.179343 ], [ 127.265625, 51.179343 ], [ 127.265625, 50.289339 ], [ 127.617188, 50.289339 ], [ 127.617188, 49.837982 ], [ 128.320312, 49.837982 ], [ 128.320312, 49.610710 ], [ 129.375000, 49.610710 ], [ 129.375000, 49.382373 ], [ 129.726562, 49.382373 ], [ 129.726562, 49.152970 ], [ 130.078125, 49.152970 ], [ 130.078125, 48.922499 ], [ 130.429688, 48.922499 ], [ 130.429688, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 48.224673 ], [ 133.945312, 48.224673 ], [ 133.945312, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 47.989922 ], [ 134.296875, 47.989922 ], [ 134.296875, 47.517201 ], [ 133.945312, 47.517201 ], [ 133.945312, 46.800059 ], [ 133.593750, 46.800059 ], [ 133.593750, 46.073231 ], [ 133.242188, 46.073231 ], [ 133.242188, 45.583290 ], [ 132.890625, 45.583290 ], [ 132.890625, 45.336702 ], [ 131.484375, 45.336702 ], [ 131.484375, 45.089036 ], [ 130.781250, 45.089036 ], [ 130.781250, 44.590467 ], [ 131.132812, 44.590467 ], [ 131.132812, 43.068888 ], [ 130.429688, 43.068888 ], [ 130.429688, 42.553080 ], [ 130.078125, 42.553080 ], [ 130.078125, 42.811522 ], [ 129.375000, 42.811522 ], [ 129.375000, 42.293564 ], [ 128.671875, 42.293564 ], [ 128.671875, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.508577 ], [ 126.914062, 41.508577 ], [ 126.914062, 41.771312 ], [ 126.210938, 41.771312 ], [ 126.210938, 41.244772 ], [ 125.859375, 41.244772 ], [ 125.859375, 40.979898 ], [ 125.156250, 40.979898 ], [ 125.156250, 40.713956 ], [ 124.804688, 40.713956 ], [ 124.804688, 40.446947 ], [ 124.453125, 40.446947 ], [ 124.453125, 40.178873 ], [ 124.101562, 40.178873 ], [ 124.101562, 39.909736 ], [ 123.398438, 39.909736 ], [ 123.398438, 39.639538 ], [ 122.695312, 39.639538 ], [ 122.695312, 39.368279 ], [ 121.640625, 39.368279 ], [ 121.640625, 39.095963 ], [ 121.289062, 39.095963 ], [ 121.289062, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.178873 ], [ 121.992188, 40.178873 ], [ 121.992188, 40.713956 ], [ 121.640625, 40.713956 ], [ 121.640625, 40.979898 ], [ 121.289062, 40.979898 ], [ 121.289062, 40.713956 ], [ 120.585938, 40.713956 ], [ 120.585938, 40.446947 ], [ 120.234375, 40.446947 ], [ 120.234375, 40.178873 ], [ 119.882812, 40.178873 ], [ 119.882812, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.639538 ], [ 119.179688, 39.639538 ], [ 119.179688, 39.368279 ], [ 117.773438, 39.368279 ], [ 117.773438, 39.095963 ], [ 117.421875, 39.095963 ], [ 117.421875, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 38.272689 ], [ 118.125000, 38.272689 ], [ 118.125000, 37.996163 ], [ 118.828125, 37.996163 ], [ 118.828125, 37.439974 ], [ 119.179688, 37.439974 ], [ 119.179688, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.439974 ], [ 120.234375, 37.439974 ], [ 120.234375, 37.718590 ], [ 120.585938, 37.718590 ], [ 120.585938, 37.996163 ], [ 120.937500, 37.996163 ], [ 120.937500, 37.718590 ], [ 122.343750, 37.718590 ], [ 122.343750, 37.160317 ], [ 121.992188, 37.160317 ], [ 121.992188, 36.879621 ], [ 120.937500, 36.879621 ], [ 120.937500, 36.597889 ], [ 120.585938, 36.597889 ], [ 120.585938, 36.031332 ], [ 119.882812, 36.031332 ], [ 119.882812, 35.746512 ], [ 119.531250, 35.746512 ], [ 119.531250, 35.460670 ], [ 119.179688, 35.460670 ], [ 119.179688, 35.173808 ], [ 118.828125, 35.173808 ], [ 118.828125, 34.885931 ], [ 119.531250, 34.885931 ], [ 119.531250, 34.597042 ], [ 119.882812, 34.597042 ], [ 119.882812, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 33.724340 ], [ 120.585938, 33.724340 ], [ 120.585938, 32.842674 ], [ 120.937500, 32.842674 ], [ 120.937500, 32.249974 ], [ 121.289062, 32.249974 ], [ 121.289062, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 30.751278 ], [ 120.937500, 30.751278 ], [ 120.937500, 30.448674 ], [ 121.289062, 30.448674 ], [ 121.289062, 29.840644 ], [ 121.992188, 29.840644 ], [ 121.992188, 29.535230 ], [ 121.640625, 29.535230 ], [ 121.640625, 28.304381 ], [ 120.937500, 28.304381 ], [ 120.937500, 27.994401 ], [ 120.585938, 27.994401 ], [ 120.585938, 27.371767 ], [ 120.234375, 27.371767 ], [ 120.234375, 26.745610 ], [ 119.882812, 26.745610 ], [ 119.882812, 26.115986 ], [ 119.531250, 26.115986 ], [ 119.531250, 25.482951 ], [ 119.179688, 25.482951 ], [ 119.179688, 25.165173 ], [ 118.828125, 25.165173 ], [ 118.828125, 24.846565 ], [ 118.476562, 24.846565 ], [ 118.476562, 24.527135 ], [ 118.125000, 24.527135 ], [ 118.125000, 24.206890 ], [ 117.421875, 24.206890 ], [ 117.421875, 23.885838 ], [ 117.070312, 23.885838 ], [ 117.070312, 23.563987 ], [ 116.718750, 23.563987 ], [ 116.718750, 23.241346 ], [ 116.015625, 23.241346 ], [ 116.015625, 22.917923 ], [ 114.609375, 22.917923 ], [ 114.609375, 22.593726 ], [ 114.257812, 22.593726 ], [ 114.257812, 22.268764 ], [ 113.203125, 22.268764 ], [ 113.203125, 21.943046 ], [ 112.500000, 21.943046 ], [ 112.500000, 21.616579 ], [ 110.742188, 21.616579 ], [ 110.742188, 20.961440 ], [ 110.390625, 20.961440 ], [ 110.390625, 20.303418 ], [ 110.742188, 20.303418 ], [ 110.742188, 19.642588 ], [ 110.390625, 19.642588 ], [ 110.390625, 18.979026 ], [ 110.039062, 18.979026 ], [ 110.039062, 18.646245 ], [ 109.687500, 18.646245 ], [ 109.687500, 18.312811 ], [ 108.632812, 18.312811 ], [ 108.632812, 18.979026 ], [ 108.281250, 18.979026 ], [ 108.281250, 19.642588 ], [ 108.984375, 19.642588 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 20.303418 ], [ 109.687500, 20.632784 ], [ 109.335938, 20.632784 ], [ 109.335938, 21.289374 ], [ 109.687500, 21.289374 ], [ 109.687500, 21.616579 ], [ 108.632812, 21.616579 ], [ 108.632812, 21.943046 ], [ 108.281250, 21.943046 ], [ 108.281250, 21.616579 ], [ 107.226562, 21.616579 ], [ 107.226562, 21.943046 ], [ 106.523438, 21.943046 ], [ 106.523438, 22.917923 ], [ 105.820312, 22.917923 ], [ 105.820312, 23.241346 ], [ 104.765625, 23.241346 ], [ 104.765625, 22.917923 ], [ 102.656250, 22.917923 ], [ 102.656250, 22.593726 ], [ 101.601562, 22.593726 ], [ 101.601562, 21.289374 ], [ 100.898438, 21.289374 ], [ 100.898438, 21.616579 ], [ 99.843750, 21.616579 ], [ 99.843750, 21.943046 ], [ 99.140625, 21.943046 ], [ 99.140625, 22.593726 ], [ 99.492188, 22.593726 ], [ 99.492188, 23.241346 ], [ 98.789062, 23.241346 ], [ 98.789062, 23.563987 ], [ 98.437500, 23.563987 ], [ 98.437500, 24.206890 ], [ 97.382812, 24.206890 ], [ 97.382812, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 27.683528 ], [ 98.085938, 27.683528 ], [ 98.085938, 28.304381 ], [ 96.328125, 28.304381 ], [ 96.328125, 29.228890 ], [ 94.570312, 29.228890 ], [ 94.570312, 29.535230 ], [ 94.218750, 29.535230 ], [ 94.218750, 29.228890 ], [ 93.515625, 29.228890 ], [ 93.515625, 28.921631 ], [ 93.164062, 28.921631 ], [ 93.164062, 28.613459 ], [ 92.812500, 28.613459 ], [ 92.812500, 27.994401 ], [ 91.054688, 27.994401 ], [ 91.054688, 28.304381 ], [ 89.296875, 28.304381 ], [ 89.296875, 27.994401 ], [ 88.945312, 27.994401 ], [ 88.945312, 27.371767 ], [ 88.593750, 27.371767 ], [ 88.593750, 27.994401 ], [ 88.242188, 27.994401 ], [ 88.242188, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 46.316584 ], [ 90.351562, 46.316584 ], [ 90.351562, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 92.460938, 45.336702 ], [ 92.460938, 45.089036 ], [ 93.164062, 45.089036 ], [ 93.164062, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.590467 ], [ 94.570312, 44.590467 ], [ 94.570312, 44.339565 ], [ 95.273438, 44.339565 ], [ 95.273438, 43.834527 ], [ 95.625000, 43.834527 ], [ 95.625000, 43.068888 ], [ 95.976562, 43.068888 ], [ 95.976562, 42.811522 ], [ 98.085938, 42.811522 ], [ 98.085938, 42.553080 ], [ 100.195312, 42.553080 ], [ 100.195312, 42.811522 ], [ 100.898438, 42.811522 ], [ 100.898438, 42.553080 ], [ 101.601562, 42.553080 ], [ 101.601562, 42.293564 ], [ 102.304688, 42.293564 ], [ 102.304688, 42.032974 ], [ 104.414062, 42.032974 ], [ 104.414062, 41.771312 ], [ 105.117188, 41.771312 ], [ 105.117188, 42.032974 ], [ 105.820312, 42.032974 ], [ 105.820312, 42.293564 ], [ 106.875000, 42.293564 ], [ 106.875000, 42.553080 ], [ 109.687500, 42.553080 ], [ 109.687500, 42.811522 ], [ 110.390625, 42.811522 ], [ 110.390625, 43.068888 ], [ 110.742188, 43.068888 ], [ 110.742188, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 43.834527 ], [ 111.445312, 43.834527 ], [ 111.445312, 44.339565 ], [ 111.093750, 44.339565 ], [ 111.093750, 44.590467 ], [ 111.445312, 44.590467 ], [ 111.445312, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.840291 ], [ 113.554688, 44.840291 ], [ 113.554688, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 45.336702 ], [ 114.257812, 45.336702 ], [ 114.257812, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.828799 ], [ 116.015625, 45.828799 ], [ 116.015625, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.800059 ], [ 118.476562, 46.800059 ], [ 118.476562, 47.040182 ], [ 118.828125, 47.040182 ], [ 118.828125, 46.800059 ], [ 119.531250, 46.800059 ], [ 119.531250, 47.279229 ], [ 119.179688, 47.279229 ], [ 119.179688, 47.517201 ], [ 118.828125, 47.517201 ], [ 118.828125, 47.754098 ], [ 118.476562, 47.754098 ], [ 118.476562, 47.989922 ], [ 117.421875, 47.989922 ], [ 117.421875, 47.754098 ], [ 116.367188, 47.754098 ], [ 116.367188, 47.989922 ], [ 116.015625, 47.989922 ], [ 116.015625, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.989922 ], [ 115.312500, 47.989922 ], [ 115.312500, 48.458352 ], [ 115.664062, 48.458352 ], [ 115.664062, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 49.610710 ], [ 116.367188, 49.610710 ], [ 116.367188, 49.837982 ], [ 117.070312, 49.837982 ], [ 117.070312, 49.610710 ], [ 118.125000, 49.610710 ], [ 118.125000, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 50.064192 ], [ 119.179688, 50.064192 ], [ 119.179688, 50.958427 ], [ 119.531250, 50.958427 ], [ 119.531250, 51.399206 ], [ 119.882812, 51.399206 ], [ 119.882812, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 52.696361 ], [ 119.882812, 52.696361 ], [ 119.882812, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.330873 ], [ 121.640625, 53.330873 ], [ 121.640625, 53.540307 ], [ 123.750000, 53.540307 ] ] ], [ [ [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.690960 ], [ 135.000000, 48.690960 ], [ 135.000000, 48.458352 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, 28.304381 ], [ 98.085938, 27.371767 ], [ 98.789062, 27.371767 ], [ 98.789062, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 23.885838 ], [ 98.437500, 23.885838 ], [ 98.437500, 24.206890 ], [ 98.789062, 24.206890 ], [ 98.789062, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.492188, 21.943046 ], [ 99.492188, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.642588 ], [ 98.085938, 19.642588 ], [ 98.085938, 18.979026 ], [ 97.734375, 18.979026 ], [ 97.734375, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.636192 ], [ 98.789062, 16.636192 ], [ 98.789062, 15.623037 ], [ 98.437500, 15.623037 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.944785 ], [ 98.437500, 14.944785 ], [ 98.437500, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 99.140625, 13.923404 ], [ 99.140625, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 9.795678 ], [ 98.437500, 9.795678 ], [ 98.437500, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.437500, 11.523088 ], [ 98.437500, 13.239945 ], [ 98.085938, 13.239945 ], [ 98.085938, 14.264383 ], [ 97.734375, 14.264383 ], [ 97.734375, 15.961329 ], [ 97.382812, 15.961329 ], [ 97.382812, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 15.961329 ], [ 95.976562, 15.961329 ], [ 95.976562, 15.623037 ], [ 94.921875, 15.623037 ], [ 94.921875, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.636192 ], [ 94.570312, 16.636192 ], [ 94.570312, 17.644022 ], [ 94.218750, 17.644022 ], [ 94.218750, 18.312811 ], [ 93.867188, 18.312811 ], [ 93.867188, 18.979026 ], [ 93.515625, 18.979026 ], [ 93.515625, 19.642588 ], [ 93.164062, 19.642588 ], [ 93.164062, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 21.289374 ], [ 92.812500, 21.289374 ], [ 92.812500, 21.943046 ], [ 93.164062, 21.943046 ], [ 93.164062, 24.206890 ], [ 93.515625, 24.206890 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.570312, 24.206890 ], [ 94.570312, 25.165173 ], [ 94.921875, 25.165173 ], [ 94.921875, 25.799891 ], [ 95.273438, 25.799891 ], [ 95.273438, 26.431228 ], [ 95.625000, 26.431228 ], [ 95.625000, 26.745610 ], [ 95.976562, 26.745610 ], [ 95.976562, 27.059126 ], [ 97.031250, 27.059126 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 98.085938, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.085938, 28.304381 ], [ 98.085938, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 25.799891 ], [ 98.085938, 25.799891 ], [ 98.085938, 25.482951 ], [ 97.734375, 25.482951 ], [ 97.734375, 25.165173 ], [ 97.382812, 25.165173 ], [ 97.382812, 24.206890 ], [ 98.437500, 24.206890 ], [ 98.437500, 23.563987 ], [ 98.789062, 23.563987 ], [ 98.789062, 23.241346 ], [ 99.492188, 23.241346 ], [ 99.492188, 22.593726 ], [ 99.140625, 22.593726 ], [ 99.140625, 21.943046 ], [ 99.843750, 21.943046 ], [ 99.843750, 21.616579 ], [ 100.898438, 21.616579 ], [ 100.898438, 21.289374 ], [ 100.546875, 21.289374 ], [ 100.546875, 20.961440 ], [ 100.195312, 20.961440 ], [ 100.195312, 20.632784 ], [ 99.843750, 20.632784 ], [ 99.843750, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 19.973349 ], [ 98.085938, 19.973349 ], [ 98.085938, 19.311143 ], [ 97.734375, 19.311143 ], [ 97.734375, 18.646245 ], [ 97.031250, 18.646245 ], [ 97.031250, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.644022 ], [ 97.734375, 17.644022 ], [ 97.734375, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.636192 ], [ 98.789062, 16.636192 ], [ 98.789062, 15.961329 ], [ 98.437500, 15.961329 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.604847 ], [ 98.437500, 14.604847 ], [ 98.437500, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 13.581921 ], [ 99.140625, 13.581921 ], [ 99.140625, 12.554564 ], [ 99.492188, 12.554564 ], [ 99.492188, 11.867351 ], [ 99.140625, 11.867351 ], [ 99.140625, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 10.487812 ], [ 98.437500, 10.487812 ], [ 98.437500, 11.867351 ], [ 98.085938, 11.867351 ], [ 98.085938, 12.554564 ], [ 98.437500, 12.554564 ], [ 98.437500, 13.581921 ], [ 98.085938, 13.581921 ], [ 98.085938, 14.264383 ], [ 97.734375, 14.264383 ], [ 97.734375, 15.623037 ], [ 97.382812, 15.623037 ], [ 97.382812, 16.636192 ], [ 96.328125, 16.636192 ], [ 96.328125, 16.299051 ], [ 95.625000, 16.299051 ], [ 95.625000, 15.961329 ], [ 93.867188, 15.961329 ], [ 93.867188, 16.636192 ], [ 94.218750, 16.636192 ], [ 94.218750, 18.646245 ], [ 93.867188, 18.646245 ], [ 93.867188, 19.311143 ], [ 93.515625, 19.311143 ], [ 93.515625, 19.973349 ], [ 92.460938, 19.973349 ], [ 92.460938, 20.632784 ], [ 92.109375, 20.632784 ], [ 92.109375, 21.616579 ], [ 92.460938, 21.616579 ], [ 92.460938, 22.268764 ], [ 93.164062, 22.268764 ], [ 93.164062, 22.593726 ], [ 92.812500, 22.593726 ], [ 92.812500, 22.917923 ], [ 93.164062, 22.917923 ], [ 93.164062, 23.885838 ], [ 93.867188, 23.885838 ], [ 93.867188, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 24.846565 ], [ 94.570312, 24.846565 ], [ 94.570312, 25.482951 ], [ 94.921875, 25.482951 ], [ 94.921875, 26.745610 ], [ 95.625000, 26.745610 ], [ 95.625000, 27.059126 ], [ 96.328125, 27.059126 ], [ 96.328125, 27.371767 ], [ 97.031250, 27.371767 ], [ 97.031250, 28.304381 ], [ 98.085938, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.304688, 22.268764 ], [ 102.304688, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.632784 ], [ 104.414062, 20.632784 ], [ 104.414062, 20.303418 ], [ 104.765625, 20.303418 ], [ 104.765625, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 18.979026 ], [ 104.765625, 18.979026 ], [ 104.765625, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.468750, 18.312811 ], [ 105.468750, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.623037 ], [ 107.578125, 15.623037 ], [ 107.578125, 14.604847 ], [ 107.226562, 14.604847 ], [ 107.226562, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 15.623037 ], [ 105.117188, 15.623037 ], [ 105.117188, 15.961329 ], [ 104.765625, 15.961329 ], [ 104.765625, 17.308688 ], [ 104.414062, 17.308688 ], [ 104.414062, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.312811 ], [ 103.359375, 18.312811 ], [ 103.359375, 17.978733 ], [ 101.601562, 17.978733 ], [ 101.601562, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.646245 ], [ 101.250000, 18.646245 ], [ 101.250000, 19.311143 ], [ 100.546875, 19.311143 ], [ 100.546875, 19.973349 ], [ 100.195312, 19.973349 ], [ 100.195312, 20.632784 ], [ 100.546875, 20.632784 ], [ 100.546875, 20.961440 ], [ 101.250000, 20.961440 ], [ 101.250000, 21.289374 ], [ 101.953125, 21.289374 ], [ 101.953125, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 102.304688, 22.268764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.953125, 22.593726 ], [ 101.953125, 22.268764 ], [ 102.304688, 22.268764 ], [ 102.304688, 21.943046 ], [ 102.656250, 21.943046 ], [ 102.656250, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.961440 ], [ 104.414062, 20.961440 ], [ 104.414062, 20.303418 ], [ 104.765625, 20.303418 ], [ 104.765625, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 18.979026 ], [ 104.765625, 18.979026 ], [ 104.765625, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.468750, 18.312811 ], [ 105.468750, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 14.264383 ], [ 106.523438, 14.264383 ], [ 106.523438, 14.604847 ], [ 106.171875, 14.604847 ], [ 106.171875, 14.264383 ], [ 105.820312, 14.264383 ], [ 105.820312, 13.923404 ], [ 105.468750, 13.923404 ], [ 105.468750, 14.264383 ], [ 105.117188, 14.264383 ], [ 105.117188, 14.604847 ], [ 105.468750, 14.604847 ], [ 105.468750, 15.623037 ], [ 105.117188, 15.623037 ], [ 105.117188, 16.299051 ], [ 104.765625, 16.299051 ], [ 104.765625, 16.972741 ], [ 104.414062, 16.972741 ], [ 104.414062, 17.644022 ], [ 104.062500, 17.644022 ], [ 104.062500, 17.978733 ], [ 103.710938, 17.978733 ], [ 103.710938, 18.312811 ], [ 103.007812, 18.312811 ], [ 103.007812, 17.978733 ], [ 101.250000, 17.978733 ], [ 101.250000, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.979026 ], [ 101.250000, 18.979026 ], [ 101.250000, 19.642588 ], [ 100.546875, 19.642588 ], [ 100.546875, 20.303418 ], [ 99.843750, 20.303418 ], [ 99.843750, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 21.289374 ], [ 101.601562, 21.289374 ], [ 101.601562, 22.593726 ], [ 101.953125, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.492188, 11.178402 ], [ 99.492188, 10.141932 ], [ 99.140625, 10.141932 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 99.843750, 8.754795 ], [ 100.195312, 8.754795 ], [ 100.195312, 7.710992 ], [ 100.546875, 7.710992 ], [ 100.546875, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.315299 ], [ 102.304688, 6.315299 ], [ 102.304688, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.615986 ], [ 101.250000, 5.615986 ], [ 101.250000, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.664608 ], [ 99.843750, 6.664608 ], [ 99.843750, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.710992 ], [ 99.140625, 7.710992 ], [ 99.140625, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 9.795678 ], [ 98.789062, 9.795678 ], [ 98.789062, 10.487812 ], [ 99.140625, 10.487812 ], [ 99.140625, 11.178402 ], [ 99.492188, 11.178402 ] ] ], [ [ [ 100.195312, 19.973349 ], [ 100.546875, 19.973349 ], [ 100.546875, 19.311143 ], [ 101.250000, 19.311143 ], [ 101.250000, 18.646245 ], [ 100.898438, 18.646245 ], [ 100.898438, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.978733 ], [ 103.359375, 17.978733 ], [ 103.359375, 18.312811 ], [ 104.062500, 18.312811 ], [ 104.062500, 17.978733 ], [ 104.414062, 17.978733 ], [ 104.414062, 17.308688 ], [ 104.765625, 17.308688 ], [ 104.765625, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.239945 ], [ 102.304688, 13.239945 ], [ 102.304688, 12.554564 ], [ 102.656250, 12.554564 ], [ 102.656250, 12.211180 ], [ 101.953125, 12.211180 ], [ 101.953125, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.239945 ], [ 100.195312, 13.239945 ], [ 100.195312, 12.554564 ], [ 99.843750, 12.554564 ], [ 99.843750, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 12.211180 ], [ 99.140625, 12.211180 ], [ 99.140625, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.437500, 14.264383 ], [ 98.437500, 14.944785 ], [ 98.085938, 14.944785 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.623037 ], [ 98.789062, 15.623037 ], [ 98.789062, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.972741 ], [ 98.085938, 16.972741 ], [ 98.085938, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.978733 ], [ 97.382812, 17.978733 ], [ 97.382812, 18.312811 ], [ 97.734375, 18.312811 ], [ 97.734375, 18.979026 ], [ 98.085938, 18.979026 ], [ 98.085938, 19.642588 ], [ 99.140625, 19.642588 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 19.973349 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.140625, 11.178402 ], [ 99.140625, 9.449062 ], [ 99.843750, 9.449062 ], [ 99.843750, 8.754795 ], [ 100.195312, 8.754795 ], [ 100.195312, 7.362467 ], [ 100.546875, 7.362467 ], [ 100.546875, 7.013668 ], [ 101.601562, 7.013668 ], [ 101.601562, 6.664608 ], [ 101.953125, 6.664608 ], [ 101.953125, 5.965754 ], [ 100.898438, 5.965754 ], [ 100.898438, 6.315299 ], [ 100.195312, 6.315299 ], [ 100.195312, 6.664608 ], [ 99.492188, 6.664608 ], [ 99.492188, 7.362467 ], [ 99.140625, 7.362467 ], [ 99.140625, 7.710992 ], [ 98.789062, 7.710992 ], [ 98.789062, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 11.178402 ], [ 99.140625, 11.178402 ] ] ], [ [ [ 99.492188, 11.523088 ], [ 99.140625, 11.523088 ], [ 99.140625, 11.867351 ], [ 99.492188, 11.867351 ], [ 99.492188, 11.523088 ] ] ], [ [ [ 100.546875, 19.642588 ], [ 101.250000, 19.642588 ], [ 101.250000, 18.979026 ], [ 100.898438, 18.979026 ], [ 100.898438, 17.644022 ], [ 101.250000, 17.644022 ], [ 101.250000, 17.978733 ], [ 103.007812, 17.978733 ], [ 103.007812, 18.312811 ], [ 103.710938, 18.312811 ], [ 103.710938, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 17.644022 ], [ 104.414062, 17.644022 ], [ 104.414062, 16.972741 ], [ 104.765625, 16.972741 ], [ 104.765625, 16.299051 ], [ 105.117188, 16.299051 ], [ 105.117188, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.604847 ], [ 103.710938, 14.604847 ], [ 103.710938, 14.264383 ], [ 102.656250, 14.264383 ], [ 102.656250, 13.923404 ], [ 102.304688, 13.923404 ], [ 102.304688, 12.211180 ], [ 101.953125, 12.211180 ], [ 101.953125, 12.554564 ], [ 101.601562, 12.554564 ], [ 101.601562, 12.897489 ], [ 100.546875, 12.897489 ], [ 100.546875, 13.239945 ], [ 100.898438, 13.239945 ], [ 100.898438, 13.581921 ], [ 99.843750, 13.581921 ], [ 99.843750, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 12.554564 ], [ 99.140625, 12.554564 ], [ 99.140625, 13.581921 ], [ 98.789062, 13.581921 ], [ 98.789062, 13.923404 ], [ 98.437500, 13.923404 ], [ 98.437500, 14.604847 ], [ 98.085938, 14.604847 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.961329 ], [ 98.789062, 15.961329 ], [ 98.789062, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.972741 ], [ 98.085938, 16.972741 ], [ 98.085938, 17.308688 ], [ 97.734375, 17.308688 ], [ 97.734375, 17.644022 ], [ 97.382812, 17.644022 ], [ 97.382812, 18.312811 ], [ 97.031250, 18.312811 ], [ 97.031250, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 19.311143 ], [ 98.085938, 19.311143 ], [ 98.085938, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.303418 ], [ 100.546875, 20.303418 ], [ 100.546875, 19.642588 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 23.241346 ], [ 105.468750, 22.917923 ], [ 106.875000, 22.917923 ], [ 106.875000, 22.593726 ], [ 106.523438, 22.593726 ], [ 106.523438, 21.943046 ], [ 107.226562, 21.943046 ], [ 107.226562, 21.616579 ], [ 107.929688, 21.616579 ], [ 107.929688, 21.289374 ], [ 107.578125, 21.289374 ], [ 107.578125, 20.961440 ], [ 107.226562, 20.961440 ], [ 107.226562, 20.632784 ], [ 106.875000, 20.632784 ], [ 106.875000, 20.303418 ], [ 106.523438, 20.303418 ], [ 106.523438, 19.973349 ], [ 106.171875, 19.973349 ], [ 106.171875, 19.642588 ], [ 105.820312, 19.642588 ], [ 105.820312, 18.646245 ], [ 106.171875, 18.646245 ], [ 106.171875, 17.978733 ], [ 106.523438, 17.978733 ], [ 106.523438, 17.644022 ], [ 106.875000, 17.644022 ], [ 106.875000, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.299051 ], [ 107.929688, 16.299051 ], [ 107.929688, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.623037 ], [ 108.632812, 15.623037 ], [ 108.632812, 15.284185 ], [ 108.984375, 15.284185 ], [ 108.984375, 14.264383 ], [ 109.335938, 14.264383 ], [ 109.335938, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.833306 ], [ 107.578125, 10.833306 ], [ 107.578125, 10.487812 ], [ 107.226562, 10.487812 ], [ 107.226562, 10.141932 ], [ 106.875000, 10.141932 ], [ 106.875000, 9.449062 ], [ 106.523438, 9.449062 ], [ 106.523438, 9.102097 ], [ 105.820312, 9.102097 ], [ 105.820312, 8.754795 ], [ 104.765625, 8.754795 ], [ 104.765625, 9.449062 ], [ 105.117188, 9.449062 ], [ 105.117188, 9.795678 ], [ 104.765625, 9.795678 ], [ 104.765625, 10.141932 ], [ 104.414062, 10.141932 ], [ 104.414062, 10.487812 ], [ 105.117188, 10.487812 ], [ 105.117188, 10.833306 ], [ 106.171875, 10.833306 ], [ 106.171875, 11.178402 ], [ 105.820312, 11.178402 ], [ 105.820312, 11.523088 ], [ 106.523438, 11.523088 ], [ 106.523438, 11.867351 ], [ 107.226562, 11.867351 ], [ 107.226562, 12.211180 ], [ 107.578125, 12.211180 ], [ 107.578125, 13.923404 ], [ 107.226562, 13.923404 ], [ 107.226562, 14.604847 ], [ 107.578125, 14.604847 ], [ 107.578125, 15.623037 ], [ 107.226562, 15.623037 ], [ 107.226562, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.299051 ], [ 106.523438, 16.299051 ], [ 106.523438, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ], [ 105.820312, 17.308688 ], [ 105.820312, 17.644022 ], [ 105.468750, 17.644022 ], [ 105.468750, 18.312811 ], [ 105.117188, 18.312811 ], [ 105.117188, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 18.979026 ], [ 104.062500, 18.979026 ], [ 104.062500, 19.642588 ], [ 104.765625, 19.642588 ], [ 104.765625, 20.303418 ], [ 104.414062, 20.303418 ], [ 104.414062, 20.632784 ], [ 103.007812, 20.632784 ], [ 103.007812, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 102.304688, 21.943046 ], [ 102.304688, 22.593726 ], [ 104.062500, 22.593726 ], [ 104.062500, 22.917923 ], [ 105.117188, 22.917923 ], [ 105.117188, 23.241346 ], [ 105.468750, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.820312, 23.241346 ], [ 105.820312, 22.917923 ], [ 106.523438, 22.917923 ], [ 106.523438, 21.943046 ], [ 107.226562, 21.943046 ], [ 107.226562, 21.616579 ], [ 107.929688, 21.616579 ], [ 107.929688, 21.289374 ], [ 107.226562, 21.289374 ], [ 107.226562, 20.961440 ], [ 106.523438, 20.961440 ], [ 106.523438, 20.632784 ], [ 106.171875, 20.632784 ], [ 106.171875, 19.973349 ], [ 105.820312, 19.973349 ], [ 105.820312, 19.642588 ], [ 105.468750, 19.642588 ], [ 105.468750, 18.979026 ], [ 105.820312, 18.979026 ], [ 105.820312, 18.312811 ], [ 106.171875, 18.312811 ], [ 106.171875, 17.978733 ], [ 106.523438, 17.978733 ], [ 106.523438, 17.644022 ], [ 106.875000, 17.644022 ], [ 106.875000, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.636192 ], [ 107.578125, 16.636192 ], [ 107.578125, 16.299051 ], [ 107.929688, 16.299051 ], [ 107.929688, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.284185 ], [ 108.632812, 15.284185 ], [ 108.632812, 14.604847 ], [ 108.984375, 14.604847 ], [ 108.984375, 13.923404 ], [ 109.335938, 13.923404 ], [ 109.335938, 12.554564 ], [ 108.984375, 12.554564 ], [ 108.984375, 11.523088 ], [ 108.632812, 11.523088 ], [ 108.632812, 11.178402 ], [ 108.281250, 11.178402 ], [ 108.281250, 10.833306 ], [ 107.578125, 10.833306 ], [ 107.578125, 10.487812 ], [ 106.875000, 10.487812 ], [ 106.875000, 10.141932 ], [ 106.523438, 10.141932 ], [ 106.523438, 9.795678 ], [ 106.171875, 9.795678 ], [ 106.171875, 9.449062 ], [ 105.820312, 9.449062 ], [ 105.820312, 9.102097 ], [ 105.468750, 9.102097 ], [ 105.468750, 8.754795 ], [ 105.117188, 8.754795 ], [ 105.117188, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 10.141932 ], [ 104.062500, 10.141932 ], [ 104.062500, 10.487812 ], [ 104.414062, 10.487812 ], [ 104.414062, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 11.178402 ], [ 105.820312, 11.178402 ], [ 105.820312, 11.523088 ], [ 105.468750, 11.523088 ], [ 105.468750, 11.867351 ], [ 106.171875, 11.867351 ], [ 106.171875, 12.211180 ], [ 106.875000, 12.211180 ], [ 106.875000, 12.554564 ], [ 107.226562, 12.554564 ], [ 107.226562, 12.897489 ], [ 107.578125, 12.897489 ], [ 107.578125, 13.923404 ], [ 107.226562, 13.923404 ], [ 107.226562, 15.961329 ], [ 106.875000, 15.961329 ], [ 106.875000, 16.299051 ], [ 106.523438, 16.299051 ], [ 106.523438, 16.636192 ], [ 106.171875, 16.636192 ], [ 106.171875, 17.308688 ], [ 105.820312, 17.308688 ], [ 105.820312, 17.644022 ], [ 105.468750, 17.644022 ], [ 105.468750, 18.312811 ], [ 105.117188, 18.312811 ], [ 105.117188, 18.646245 ], [ 104.765625, 18.646245 ], [ 104.765625, 18.979026 ], [ 104.062500, 18.979026 ], [ 104.062500, 19.642588 ], [ 104.765625, 19.642588 ], [ 104.765625, 20.303418 ], [ 104.414062, 20.303418 ], [ 104.414062, 20.961440 ], [ 103.007812, 20.961440 ], [ 103.007812, 21.289374 ], [ 102.656250, 21.289374 ], [ 102.656250, 21.943046 ], [ 102.304688, 21.943046 ], [ 102.304688, 22.268764 ], [ 101.953125, 22.268764 ], [ 101.953125, 22.593726 ], [ 102.656250, 22.593726 ], [ 102.656250, 22.917923 ], [ 104.765625, 22.917923 ], [ 104.765625, 23.241346 ], [ 105.820312, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.226562, 14.264383 ], [ 107.226562, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 11.867351 ], [ 106.523438, 11.867351 ], [ 106.523438, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.178402 ], [ 106.171875, 11.178402 ], [ 106.171875, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 10.833306 ], [ 103.007812, 10.833306 ], [ 103.007812, 11.523088 ], [ 102.656250, 11.523088 ], [ 102.656250, 12.554564 ], [ 102.304688, 12.554564 ], [ 102.304688, 13.239945 ], [ 102.656250, 13.239945 ], [ 102.656250, 13.923404 ], [ 103.007812, 13.923404 ], [ 103.007812, 14.264383 ], [ 105.468750, 14.264383 ], [ 105.468750, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.264383 ], [ 107.226562, 14.264383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.523438, 14.604847 ], [ 106.523438, 14.264383 ], [ 107.226562, 14.264383 ], [ 107.226562, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.897489 ], [ 107.226562, 12.897489 ], [ 107.226562, 12.554564 ], [ 106.875000, 12.554564 ], [ 106.875000, 12.211180 ], [ 106.171875, 12.211180 ], [ 106.171875, 11.867351 ], [ 105.468750, 11.867351 ], [ 105.468750, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.178402 ], [ 105.117188, 11.178402 ], [ 105.117188, 10.833306 ], [ 104.414062, 10.833306 ], [ 104.414062, 10.487812 ], [ 103.359375, 10.487812 ], [ 103.359375, 10.833306 ], [ 103.007812, 10.833306 ], [ 103.007812, 11.178402 ], [ 102.656250, 11.178402 ], [ 102.656250, 11.867351 ], [ 102.304688, 11.867351 ], [ 102.304688, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 14.264383 ], [ 103.710938, 14.264383 ], [ 103.710938, 14.604847 ], [ 105.117188, 14.604847 ], [ 105.117188, 14.264383 ], [ 105.468750, 14.264383 ], [ 105.468750, 13.923404 ], [ 105.820312, 13.923404 ], [ 105.820312, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 14.604847 ], [ 106.523438, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.070312, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.315299 ], [ 117.773438, 6.315299 ], [ 117.773438, 5.615986 ], [ 118.476562, 5.615986 ], [ 118.476562, 5.266008 ], [ 119.179688, 5.266008 ], [ 119.179688, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.214943 ], [ 116.015625, 4.214943 ], [ 116.015625, 3.513421 ], [ 115.664062, 3.513421 ], [ 115.664062, 2.811371 ], [ 114.960938, 2.811371 ], [ 114.960938, 2.108899 ], [ 114.609375, 2.108899 ], [ 114.609375, 1.054628 ], [ 113.203125, 1.054628 ], [ 113.203125, 1.406109 ], [ 112.500000, 1.406109 ], [ 112.500000, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.703107 ], [ 110.039062, 0.703107 ], [ 110.039062, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.108899 ], [ 111.445312, 2.108899 ], [ 111.445312, 2.811371 ], [ 112.500000, 2.811371 ], [ 112.500000, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.513421 ], [ 113.554688, 3.513421 ], [ 113.554688, 3.864255 ], [ 113.906250, 3.864255 ], [ 113.906250, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 3.864255 ], [ 114.960938, 3.864255 ], [ 114.960938, 4.214943 ], [ 115.312500, 4.214943 ], [ 115.312500, 5.615986 ], [ 115.664062, 5.615986 ], [ 115.664062, 5.965754 ], [ 116.367188, 5.965754 ], [ 116.367188, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 7.013668 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.546875, 6.664608 ], [ 100.546875, 6.315299 ], [ 101.250000, 6.315299 ], [ 101.250000, 5.615986 ], [ 101.953125, 5.615986 ], [ 101.953125, 5.965754 ], [ 102.304688, 5.965754 ], [ 102.304688, 5.615986 ], [ 103.007812, 5.615986 ], [ 103.007812, 5.266008 ], [ 103.359375, 5.266008 ], [ 103.359375, 2.460181 ], [ 103.710938, 2.460181 ], [ 103.710938, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.414062, 1.757537 ], [ 104.414062, 1.406109 ], [ 104.062500, 1.406109 ], [ 104.062500, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 2.460181 ], [ 101.250000, 2.460181 ], [ 101.250000, 3.162456 ], [ 100.898438, 3.162456 ], [ 100.898438, 3.513421 ], [ 100.546875, 3.513421 ], [ 100.546875, 4.915833 ], [ 100.195312, 4.915833 ], [ 100.195312, 6.664608 ], [ 100.546875, 6.664608 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.687500, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.811371 ], [ 111.796875, 2.811371 ], [ 111.796875, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.864255 ], [ 113.554688, 3.864255 ], [ 113.554688, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.565474 ], [ 115.312500, 4.565474 ], [ 115.312500, 5.615986 ], [ 115.664062, 5.615986 ], [ 115.664062, 5.965754 ], [ 116.015625, 5.965754 ], [ 116.015625, 6.315299 ], [ 116.367188, 6.315299 ], [ 116.367188, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 7.013668 ], [ 117.070312, 7.013668 ], [ 117.070312, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 5.965754 ], [ 118.476562, 5.965754 ], [ 118.476562, 5.615986 ], [ 119.179688, 5.615986 ], [ 119.179688, 5.266008 ], [ 118.125000, 5.266008 ], [ 118.125000, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.214943 ], [ 117.070312, 4.214943 ], [ 117.070312, 4.565474 ], [ 115.664062, 4.565474 ], [ 115.664062, 3.864255 ], [ 115.312500, 3.864255 ], [ 115.312500, 3.162456 ], [ 114.960938, 3.162456 ], [ 114.960938, 2.460181 ], [ 114.609375, 2.460181 ], [ 114.609375, 1.757537 ], [ 114.257812, 1.757537 ], [ 114.257812, 1.406109 ], [ 112.851562, 1.406109 ], [ 112.851562, 1.757537 ], [ 112.148438, 1.757537 ], [ 112.148438, 1.406109 ], [ 111.796875, 1.406109 ], [ 111.796875, 1.054628 ], [ 109.687500, 1.054628 ], [ 109.687500, 1.757537 ] ] ], [ [ [ 100.195312, 6.315299 ], [ 100.898438, 6.315299 ], [ 100.898438, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 6.315299 ], [ 102.304688, 6.315299 ], [ 102.304688, 5.965754 ], [ 102.656250, 5.965754 ], [ 102.656250, 5.266008 ], [ 103.007812, 5.266008 ], [ 103.007812, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 3.864255 ], [ 103.007812, 3.864255 ], [ 103.007812, 3.513421 ], [ 103.359375, 3.513421 ], [ 103.359375, 2.811371 ], [ 103.710938, 2.811371 ], [ 103.710938, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.757537 ], [ 102.304688, 1.757537 ], [ 102.304688, 2.108899 ], [ 101.953125, 2.108899 ], [ 101.953125, 2.460181 ], [ 101.250000, 2.460181 ], [ 101.250000, 3.513421 ], [ 100.898438, 3.513421 ], [ 100.898438, 3.864255 ], [ 100.546875, 3.864255 ], [ 100.546875, 5.266008 ], [ 100.195312, 5.266008 ], [ 100.195312, 6.315299 ] ] ], [ [ [ 109.687500, 1.757537 ], [ 109.335938, 1.757537 ], [ 109.335938, 2.108899 ], [ 109.687500, 2.108899 ], [ 109.687500, 1.757537 ] ] ], [ [ [ 100.195312, 6.315299 ], [ 99.843750, 6.315299 ], [ 99.843750, 6.664608 ], [ 100.195312, 6.664608 ], [ 100.195312, 6.315299 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.992188, 24.846565 ], [ 121.992188, 24.527135 ], [ 121.640625, 24.527135 ], [ 121.640625, 23.563987 ], [ 121.289062, 23.563987 ], [ 121.289062, 22.593726 ], [ 120.937500, 22.593726 ], [ 120.937500, 21.943046 ], [ 120.585938, 21.943046 ], [ 120.585938, 22.268764 ], [ 120.234375, 22.268764 ], [ 120.234375, 23.885838 ], [ 120.585938, 23.885838 ], [ 120.585938, 24.527135 ], [ 120.937500, 24.527135 ], [ 120.937500, 24.846565 ], [ 121.992188, 24.846565 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 25.165173 ], [ 121.640625, 23.885838 ], [ 121.289062, 23.885838 ], [ 121.289062, 23.241346 ], [ 120.937500, 23.241346 ], [ 120.937500, 22.593726 ], [ 120.585938, 22.593726 ], [ 120.585938, 22.268764 ], [ 120.234375, 22.268764 ], [ 120.234375, 22.593726 ], [ 119.882812, 22.593726 ], [ 119.882812, 23.885838 ], [ 120.234375, 23.885838 ], [ 120.234375, 24.527135 ], [ 120.585938, 24.527135 ], [ 120.585938, 24.846565 ], [ 120.937500, 24.846565 ], [ 120.937500, 25.165173 ], [ 121.640625, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.429688, 42.811522 ], [ 130.429688, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.771312 ], [ 129.726562, 41.771312 ], [ 129.726562, 40.713956 ], [ 129.023438, 40.713956 ], [ 129.023438, 40.178873 ], [ 128.671875, 40.178873 ], [ 128.671875, 39.909736 ], [ 127.968750, 39.909736 ], [ 127.968750, 39.639538 ], [ 127.617188, 39.639538 ], [ 127.617188, 38.822591 ], [ 127.968750, 38.822591 ], [ 127.968750, 38.548165 ], [ 128.320312, 38.548165 ], [ 128.320312, 38.272689 ], [ 126.914062, 38.272689 ], [ 126.914062, 37.996163 ], [ 126.562500, 37.996163 ], [ 126.562500, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.996163 ], [ 124.804688, 37.996163 ], [ 124.804688, 38.272689 ], [ 125.156250, 38.272689 ], [ 125.156250, 39.095963 ], [ 125.507812, 39.095963 ], [ 125.507812, 39.368279 ], [ 125.156250, 39.368279 ], [ 125.156250, 39.639538 ], [ 124.101562, 39.639538 ], [ 124.101562, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 40.178873 ], [ 125.156250, 40.178873 ], [ 125.156250, 40.446947 ], [ 125.507812, 40.446947 ], [ 125.507812, 40.713956 ], [ 126.210938, 40.713956 ], [ 126.210938, 40.979898 ], [ 126.562500, 40.979898 ], [ 126.562500, 41.508577 ], [ 128.320312, 41.508577 ], [ 128.320312, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.671875, 42.032974 ], [ 128.671875, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.553080 ], [ 129.726562, 42.553080 ], [ 129.726562, 42.811522 ], [ 130.429688, 42.811522 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.078125, 42.811522 ], [ 130.078125, 42.553080 ], [ 130.429688, 42.553080 ], [ 130.429688, 42.293564 ], [ 130.078125, 42.293564 ], [ 130.078125, 42.032974 ], [ 129.726562, 42.032974 ], [ 129.726562, 41.771312 ], [ 129.375000, 41.771312 ], [ 129.375000, 40.713956 ], [ 128.671875, 40.713956 ], [ 128.671875, 40.446947 ], [ 128.320312, 40.446947 ], [ 128.320312, 40.178873 ], [ 127.968750, 40.178873 ], [ 127.968750, 39.909736 ], [ 127.265625, 39.909736 ], [ 127.265625, 39.095963 ], [ 127.617188, 39.095963 ], [ 127.617188, 38.822591 ], [ 128.320312, 38.822591 ], [ 128.320312, 38.548165 ], [ 127.617188, 38.548165 ], [ 127.617188, 38.272689 ], [ 126.914062, 38.272689 ], [ 126.914062, 37.996163 ], [ 125.507812, 37.996163 ], [ 125.507812, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.996163 ], [ 124.453125, 37.996163 ], [ 124.453125, 38.272689 ], [ 124.804688, 38.272689 ], [ 124.804688, 38.548165 ], [ 125.156250, 38.548165 ], [ 125.156250, 38.822591 ], [ 124.804688, 38.822591 ], [ 124.804688, 39.368279 ], [ 125.156250, 39.368279 ], [ 125.156250, 39.639538 ], [ 124.453125, 39.639538 ], [ 124.453125, 39.909736 ], [ 124.101562, 39.909736 ], [ 124.101562, 40.178873 ], [ 124.453125, 40.178873 ], [ 124.453125, 40.446947 ], [ 124.804688, 40.446947 ], [ 124.804688, 40.713956 ], [ 125.156250, 40.713956 ], [ 125.156250, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 41.244772 ], [ 126.210938, 41.244772 ], [ 126.210938, 41.771312 ], [ 126.914062, 41.771312 ], [ 126.914062, 41.508577 ], [ 127.968750, 41.508577 ], [ 127.968750, 42.032974 ], [ 128.671875, 42.032974 ], [ 128.671875, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.811522 ], [ 130.078125, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.671875, 38.272689 ], [ 128.671875, 37.996163 ], [ 129.023438, 37.996163 ], [ 129.023438, 37.439974 ], [ 129.375000, 37.439974 ], [ 129.375000, 35.460670 ], [ 129.023438, 35.460670 ], [ 129.023438, 34.885931 ], [ 127.968750, 34.885931 ], [ 127.968750, 34.597042 ], [ 127.265625, 34.597042 ], [ 127.265625, 34.307144 ], [ 126.562500, 34.307144 ], [ 126.562500, 34.597042 ], [ 126.210938, 34.597042 ], [ 126.210938, 35.173808 ], [ 126.562500, 35.173808 ], [ 126.562500, 36.031332 ], [ 126.210938, 36.031332 ], [ 126.210938, 36.597889 ], [ 126.914062, 36.597889 ], [ 126.914062, 36.879621 ], [ 126.562500, 36.879621 ], [ 126.562500, 37.439974 ], [ 126.210938, 37.439974 ], [ 126.210938, 37.718590 ], [ 126.562500, 37.718590 ], [ 126.562500, 37.996163 ], [ 126.914062, 37.996163 ], [ 126.914062, 38.272689 ], [ 128.671875, 38.272689 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.320312, 38.548165 ], [ 128.320312, 38.272689 ], [ 128.671875, 38.272689 ], [ 128.671875, 37.718590 ], [ 129.023438, 37.718590 ], [ 129.023438, 37.160317 ], [ 129.375000, 37.160317 ], [ 129.375000, 35.460670 ], [ 129.023438, 35.460670 ], [ 129.023438, 35.173808 ], [ 127.968750, 35.173808 ], [ 127.968750, 34.885931 ], [ 127.617188, 34.885931 ], [ 127.617188, 34.597042 ], [ 126.210938, 34.597042 ], [ 126.210938, 36.315125 ], [ 125.859375, 36.315125 ], [ 125.859375, 36.879621 ], [ 126.562500, 36.879621 ], [ 126.562500, 37.160317 ], [ 126.210938, 37.160317 ], [ 126.210938, 37.718590 ], [ 125.859375, 37.718590 ], [ 125.859375, 37.996163 ], [ 126.914062, 37.996163 ], [ 126.914062, 38.272689 ], [ 127.617188, 38.272689 ], [ 127.617188, 38.548165 ], [ 128.320312, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.210938, 9.449062 ], [ 126.210938, 8.059230 ], [ 126.562500, 8.059230 ], [ 126.562500, 6.664608 ], [ 125.859375, 6.664608 ], [ 125.859375, 7.013668 ], [ 125.507812, 7.013668 ], [ 125.507812, 5.615986 ], [ 124.804688, 5.615986 ], [ 124.804688, 5.965754 ], [ 124.101562, 5.965754 ], [ 124.101562, 7.362467 ], [ 122.695312, 7.362467 ], [ 122.695312, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 8.059230 ], [ 123.046875, 8.059230 ], [ 123.046875, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 8.754795 ], [ 124.804688, 8.754795 ], [ 124.804688, 9.102097 ], [ 125.507812, 9.102097 ], [ 125.507812, 9.449062 ], [ 126.210938, 9.449062 ] ] ], [ [ [ 120.585938, 13.581921 ], [ 120.585938, 14.264383 ], [ 120.937500, 14.264383 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.944785 ], [ 119.882812, 14.944785 ], [ 119.882812, 15.961329 ], [ 120.234375, 15.961329 ], [ 120.234375, 17.978733 ], [ 120.585938, 17.978733 ], [ 120.585938, 18.646245 ], [ 121.289062, 18.646245 ], [ 121.289062, 18.312811 ], [ 122.343750, 18.312811 ], [ 122.343750, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 14.264383 ], [ 123.046875, 14.264383 ], [ 123.046875, 13.923404 ], [ 124.101562, 13.923404 ], [ 124.101562, 13.581921 ], [ 123.750000, 13.581921 ], [ 123.750000, 12.897489 ], [ 124.101562, 12.897489 ], [ 124.101562, 12.554564 ], [ 123.398438, 12.554564 ], [ 123.398438, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.581921 ], [ 121.289062, 13.581921 ], [ 121.289062, 13.239945 ], [ 121.640625, 13.239945 ], [ 121.640625, 12.554564 ], [ 121.289062, 12.554564 ], [ 121.289062, 12.211180 ], [ 120.937500, 12.211180 ], [ 120.937500, 12.554564 ], [ 120.585938, 12.554564 ], [ 120.585938, 13.239945 ], [ 120.234375, 13.239945 ], [ 120.234375, 13.581921 ], [ 120.585938, 13.581921 ] ] ], [ [ [ 123.046875, 10.833306 ], [ 122.695312, 10.833306 ], [ 122.695312, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 123.046875, 11.523088 ], [ 123.046875, 10.833306 ] ] ], [ [ [ 118.125000, 9.102097 ], [ 118.125000, 8.754795 ], [ 117.773438, 8.754795 ], [ 117.773438, 9.102097 ], [ 118.125000, 9.102097 ] ] ], [ [ [ 124.101562, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 12.211180 ], [ 125.507812, 12.211180 ], [ 125.507812, 11.523088 ], [ 125.859375, 11.523088 ], [ 125.859375, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 10.141932 ], [ 124.804688, 10.141932 ], [ 124.804688, 10.833306 ], [ 124.453125, 10.833306 ], [ 124.453125, 11.523088 ], [ 124.804688, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.211180 ], [ 124.101562, 12.211180 ], [ 124.101562, 12.554564 ] ] ], [ [ [ 118.476562, 9.449062 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 9.449062 ], [ 118.476562, 9.449062 ] ] ], [ [ [ 119.531250, 10.141932 ], [ 119.179688, 10.141932 ], [ 119.179688, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 9.449062 ], [ 118.476562, 9.449062 ], [ 118.476562, 10.141932 ], [ 118.828125, 10.141932 ], [ 118.828125, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.141932 ] ] ], [ [ [ 123.046875, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 10.833306 ], [ 124.101562, 10.833306 ], [ 124.101562, 9.795678 ], [ 123.750000, 9.795678 ], [ 123.750000, 9.449062 ], [ 123.398438, 9.449062 ], [ 123.398438, 9.102097 ], [ 122.695312, 9.102097 ], [ 122.695312, 9.449062 ], [ 122.343750, 9.449062 ], [ 122.343750, 9.795678 ], [ 122.695312, 9.795678 ], [ 122.695312, 10.487812 ], [ 123.046875, 10.487812 ], [ 123.046875, 10.833306 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.507812, 6.664608 ], [ 125.507812, 5.965754 ], [ 125.156250, 5.965754 ], [ 125.156250, 5.615986 ], [ 124.804688, 5.615986 ], [ 124.804688, 5.965754 ], [ 124.101562, 5.965754 ], [ 124.101562, 6.664608 ], [ 123.750000, 6.664608 ], [ 123.750000, 7.013668 ], [ 124.101562, 7.013668 ], [ 124.101562, 7.362467 ], [ 123.750000, 7.362467 ], [ 123.750000, 7.710992 ], [ 122.695312, 7.710992 ], [ 122.695312, 7.362467 ], [ 122.343750, 7.362467 ], [ 122.343750, 7.013668 ], [ 121.640625, 7.013668 ], [ 121.640625, 7.710992 ], [ 121.992188, 7.710992 ], [ 121.992188, 8.059230 ], [ 122.695312, 8.059230 ], [ 122.695312, 8.407168 ], [ 124.453125, 8.407168 ], [ 124.453125, 9.102097 ], [ 125.156250, 9.102097 ], [ 125.156250, 9.795678 ], [ 125.507812, 9.795678 ], [ 125.507812, 9.449062 ], [ 126.210938, 9.449062 ], [ 126.210938, 6.664608 ], [ 125.507812, 6.664608 ] ], [ [ 125.507812, 6.664608 ], [ 125.507812, 7.013668 ], [ 125.156250, 7.013668 ], [ 125.156250, 6.664608 ], [ 125.507812, 6.664608 ] ] ], [ [ [ 124.101562, 12.897489 ], [ 123.750000, 12.897489 ], [ 123.750000, 12.554564 ], [ 123.398438, 12.554564 ], [ 123.398438, 12.897489 ], [ 123.046875, 12.897489 ], [ 123.046875, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.581921 ], [ 121.992188, 13.581921 ], [ 121.992188, 13.923404 ], [ 120.585938, 13.923404 ], [ 120.585938, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.944785 ], [ 119.882812, 14.944785 ], [ 119.882812, 16.299051 ], [ 120.234375, 16.299051 ], [ 120.234375, 17.978733 ], [ 120.585938, 17.978733 ], [ 120.585938, 18.646245 ], [ 121.289062, 18.646245 ], [ 121.289062, 18.312811 ], [ 121.992188, 18.312811 ], [ 121.992188, 17.644022 ], [ 122.343750, 17.644022 ], [ 122.343750, 16.636192 ], [ 121.992188, 16.636192 ], [ 121.992188, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 15.623037 ], [ 121.289062, 15.623037 ], [ 121.289062, 14.944785 ], [ 121.640625, 14.944785 ], [ 121.640625, 14.264383 ], [ 123.398438, 14.264383 ], [ 123.398438, 13.923404 ], [ 123.750000, 13.923404 ], [ 123.750000, 13.239945 ], [ 124.101562, 13.239945 ], [ 124.101562, 12.897489 ] ] ], [ [ [ 123.046875, 11.867351 ], [ 123.046875, 11.178402 ], [ 123.398438, 11.178402 ], [ 123.750000, 11.178402 ], [ 123.750000, 10.141932 ], [ 123.398438, 10.141932 ], [ 123.398438, 9.795678 ], [ 123.046875, 9.795678 ], [ 123.046875, 9.102097 ], [ 122.695312, 9.102097 ], [ 122.695312, 9.449062 ], [ 122.343750, 9.449062 ], [ 122.343750, 10.141932 ], [ 122.695312, 10.141932 ], [ 122.695312, 10.833306 ], [ 122.343750, 10.833306 ], [ 122.343750, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 10.833306 ], [ 121.640625, 10.833306 ], [ 121.640625, 11.178402 ], [ 121.992188, 11.178402 ], [ 121.992188, 11.867351 ], [ 123.046875, 11.867351 ] ], [ [ 123.398438, 10.833306 ], [ 123.046875, 10.833306 ], [ 123.046875, 10.487812 ], [ 123.398438, 10.487812 ], [ 123.398438, 10.833306 ] ] ], [ [ [ 117.421875, 8.754795 ], [ 117.421875, 8.407168 ], [ 117.070312, 8.407168 ], [ 117.070312, 8.754795 ], [ 117.421875, 8.754795 ] ] ], [ [ [ 118.476562, 9.795678 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 8.754795 ], [ 117.421875, 8.754795 ], [ 117.421875, 9.102097 ], [ 117.773438, 9.102097 ], [ 117.773438, 9.449062 ], [ 118.125000, 9.449062 ], [ 118.125000, 9.795678 ], [ 118.476562, 9.795678 ] ] ], [ [ [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 11.523088 ], [ 125.507812, 11.523088 ], [ 125.507812, 11.178402 ], [ 124.804688, 11.178402 ], [ 124.804688, 10.833306 ], [ 125.156250, 10.833306 ], [ 125.156250, 10.141932 ], [ 124.453125, 10.141932 ], [ 124.453125, 11.178402 ], [ 124.101562, 11.178402 ], [ 124.101562, 11.523088 ], [ 124.804688, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.453125, 11.867351 ], [ 124.453125, 12.554564 ] ] ], [ [ [ 118.828125, 10.141932 ], [ 118.828125, 9.795678 ], [ 118.476562, 9.795678 ], [ 118.476562, 10.141932 ], [ 118.828125, 10.141932 ] ] ], [ [ [ 120.937500, 13.581921 ], [ 120.937500, 13.239945 ], [ 121.289062, 13.239945 ], [ 121.289062, 12.554564 ], [ 120.585938, 12.554564 ], [ 120.585938, 13.239945 ], [ 120.234375, 13.239945 ], [ 120.234375, 13.581921 ], [ 120.937500, 13.581921 ] ] ], [ [ [ 119.531250, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 10.141932 ], [ 118.828125, 10.141932 ], [ 118.828125, 10.833306 ], [ 119.179688, 10.833306 ], [ 119.179688, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.487812 ] ] ], [ [ [ 124.101562, 12.897489 ], [ 124.453125, 12.897489 ], [ 124.453125, 12.554564 ], [ 124.101562, 12.554564 ], [ 124.101562, 12.897489 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 5.266008 ], [ 115.312500, 4.214943 ], [ 114.960938, 4.214943 ], [ 114.960938, 3.864255 ], [ 114.609375, 3.864255 ], [ 114.609375, 4.214943 ], [ 114.257812, 4.214943 ], [ 114.257812, 4.565474 ], [ 114.609375, 4.565474 ], [ 114.609375, 4.915833 ], [ 114.960938, 4.915833 ], [ 114.960938, 5.266008 ], [ 115.312500, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 5.266008 ], [ 115.312500, 4.565474 ], [ 114.609375, 4.565474 ], [ 114.609375, 4.214943 ], [ 113.906250, 4.214943 ], [ 113.906250, 4.565474 ], [ 114.257812, 4.565474 ], [ 114.257812, 4.915833 ], [ 114.609375, 4.915833 ], [ 114.609375, 5.266008 ], [ 115.312500, 5.266008 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.976562, 41.508577 ], [ 141.328125, 41.508577 ], [ 141.328125, 40.979898 ], [ 141.679688, 40.979898 ], [ 141.679688, 40.178873 ], [ 142.031250, 40.178873 ], [ 142.031250, 38.822591 ], [ 141.679688, 38.822591 ], [ 141.679688, 38.548165 ], [ 141.328125, 38.548165 ], [ 141.328125, 38.272689 ], [ 140.976562, 38.272689 ], [ 140.976562, 36.597889 ], [ 140.625000, 36.597889 ], [ 140.625000, 35.460670 ], [ 140.273438, 35.460670 ], [ 140.273438, 34.885931 ], [ 139.570312, 34.885931 ], [ 139.570312, 34.597042 ], [ 137.109375, 34.597042 ], [ 137.109375, 34.307144 ], [ 136.757812, 34.307144 ], [ 136.757812, 34.016242 ], [ 136.406250, 34.016242 ], [ 136.406250, 33.724340 ], [ 136.054688, 33.724340 ], [ 136.054688, 33.431441 ], [ 135.000000, 33.431441 ], [ 135.000000, 34.597042 ], [ 134.296875, 34.597042 ], [ 134.296875, 34.307144 ], [ 132.890625, 34.307144 ], [ 132.890625, 34.016242 ], [ 131.132812, 34.016242 ], [ 131.132812, 33.724340 ], [ 131.484375, 33.724340 ], [ 131.484375, 33.137551 ], [ 131.835938, 33.137551 ], [ 131.835938, 32.249974 ], [ 131.484375, 32.249974 ], [ 131.484375, 31.052934 ], [ 130.078125, 31.052934 ], [ 130.078125, 31.653381 ], [ 130.429688, 31.653381 ], [ 130.429688, 32.249974 ], [ 129.726562, 32.249974 ], [ 129.726562, 32.842674 ], [ 129.375000, 32.842674 ], [ 129.375000, 33.431441 ], [ 130.078125, 33.431441 ], [ 130.078125, 33.724340 ], [ 130.429688, 33.724340 ], [ 130.429688, 34.016242 ], [ 130.781250, 34.016242 ], [ 130.781250, 34.307144 ], [ 131.132812, 34.307144 ], [ 131.132812, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.539062, 35.173808 ], [ 132.539062, 35.460670 ], [ 133.945312, 35.460670 ], [ 133.945312, 35.746512 ], [ 135.000000, 35.746512 ], [ 135.000000, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.746512 ], [ 136.054688, 35.746512 ], [ 136.054688, 36.315125 ], [ 136.406250, 36.315125 ], [ 136.406250, 36.879621 ], [ 136.757812, 36.879621 ], [ 136.757812, 37.160317 ], [ 137.109375, 37.160317 ], [ 137.109375, 36.879621 ], [ 137.812500, 36.879621 ], [ 137.812500, 37.160317 ], [ 138.515625, 37.160317 ], [ 138.515625, 37.439974 ], [ 138.867188, 37.439974 ], [ 138.867188, 37.718590 ], [ 139.218750, 37.718590 ], [ 139.218750, 37.996163 ], [ 139.570312, 37.996163 ], [ 139.570312, 38.822591 ], [ 139.921875, 38.822591 ], [ 139.921875, 40.713956 ], [ 140.273438, 40.713956 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.508577 ] ] ], [ [ [ 140.976562, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.811522 ], [ 140.273438, 42.811522 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 44.087585 ], [ 141.679688, 44.087585 ], [ 141.679688, 45.089036 ], [ 142.031250, 45.089036 ], [ 142.031250, 45.336702 ], [ 142.382812, 45.336702 ], [ 142.382812, 45.089036 ], [ 142.734375, 45.089036 ], [ 142.734375, 44.590467 ], [ 143.085938, 44.590467 ], [ 143.085938, 44.339565 ], [ 143.437500, 44.339565 ], [ 143.437500, 44.087585 ], [ 143.789062, 44.087585 ], [ 143.789062, 43.834527 ], [ 144.843750, 43.834527 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.195312, 43.325178 ], [ 145.195312, 43.068888 ], [ 144.140625, 43.068888 ], [ 144.140625, 42.811522 ], [ 143.789062, 42.811522 ], [ 143.789062, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.032974 ], [ 142.382812, 42.032974 ], [ 142.382812, 42.293564 ], [ 141.328125, 42.293564 ], [ 141.328125, 41.771312 ], [ 140.976562, 41.771312 ], [ 140.976562, 41.508577 ] ] ], [ [ [ 132.890625, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.431441 ], [ 134.296875, 33.431441 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.137551 ], [ 133.945312, 33.431441 ], [ 133.242188, 33.431441 ], [ 133.242188, 33.137551 ], [ 132.890625, 33.137551 ], [ 132.890625, 32.842674 ], [ 132.187500, 32.842674 ], [ 132.187500, 33.137551 ], [ 132.539062, 33.137551 ], [ 132.539062, 33.724340 ], [ 132.890625, 33.724340 ], [ 132.890625, 34.016242 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.781250, 34.016242 ], [ 130.781250, 33.724340 ], [ 131.484375, 33.724340 ], [ 131.484375, 33.431441 ], [ 131.835938, 33.431441 ], [ 131.835938, 32.842674 ], [ 131.484375, 32.842674 ], [ 131.484375, 31.952162 ], [ 131.132812, 31.952162 ], [ 131.132812, 31.353637 ], [ 130.781250, 31.353637 ], [ 130.781250, 31.052934 ], [ 130.429688, 31.052934 ], [ 130.429688, 31.353637 ], [ 130.078125, 31.353637 ], [ 130.078125, 31.952162 ], [ 130.429688, 31.952162 ], [ 130.429688, 32.546813 ], [ 129.726562, 32.546813 ], [ 129.726562, 33.137551 ], [ 129.375000, 33.137551 ], [ 129.375000, 33.431441 ], [ 130.078125, 33.431441 ], [ 130.078125, 33.724340 ], [ 130.429688, 33.724340 ], [ 130.429688, 34.016242 ], [ 130.781250, 34.016242 ] ] ], [ [ [ 133.242188, 34.307144 ], [ 132.539062, 34.307144 ], [ 132.539062, 34.016242 ], [ 130.781250, 34.016242 ], [ 130.781250, 34.307144 ], [ 131.132812, 34.307144 ], [ 131.132812, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.539062, 35.173808 ], [ 132.539062, 35.460670 ], [ 133.593750, 35.460670 ], [ 133.593750, 35.746512 ], [ 135.351562, 35.746512 ], [ 135.351562, 36.031332 ], [ 135.703125, 36.031332 ], [ 135.703125, 36.597889 ], [ 136.054688, 36.597889 ], [ 136.054688, 37.160317 ], [ 136.757812, 37.160317 ], [ 136.757812, 36.879621 ], [ 137.460938, 36.879621 ], [ 137.460938, 37.160317 ], [ 137.812500, 37.160317 ], [ 137.812500, 37.439974 ], [ 138.164062, 37.439974 ], [ 138.164062, 37.718590 ], [ 138.515625, 37.718590 ], [ 138.515625, 37.996163 ], [ 139.218750, 37.996163 ], [ 139.218750, 38.548165 ], [ 139.570312, 38.548165 ], [ 139.570312, 39.095963 ], [ 139.921875, 39.095963 ], [ 139.921875, 40.178873 ], [ 139.570312, 40.178873 ], [ 139.570312, 40.713956 ], [ 139.921875, 40.713956 ], [ 139.921875, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.508577 ], [ 141.328125, 41.508577 ], [ 141.328125, 40.713956 ], [ 141.679688, 40.713956 ], [ 141.679688, 39.095963 ], [ 141.328125, 39.095963 ], [ 141.328125, 38.822591 ], [ 140.976562, 38.822591 ], [ 140.976562, 38.272689 ], [ 140.625000, 38.272689 ], [ 140.625000, 37.718590 ], [ 140.976562, 37.718590 ], [ 140.976562, 36.879621 ], [ 140.625000, 36.879621 ], [ 140.625000, 36.597889 ], [ 140.273438, 36.597889 ], [ 140.273438, 36.315125 ], [ 140.625000, 36.315125 ], [ 140.625000, 35.746512 ], [ 140.273438, 35.746512 ], [ 140.273438, 35.173808 ], [ 139.570312, 35.173808 ], [ 139.570312, 34.885931 ], [ 137.109375, 34.885931 ], [ 137.109375, 34.597042 ], [ 136.757812, 34.597042 ], [ 136.757812, 34.307144 ], [ 136.406250, 34.307144 ], [ 136.406250, 34.016242 ], [ 136.054688, 34.016242 ], [ 136.054688, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.597042 ], [ 133.242188, 34.597042 ], [ 133.242188, 34.307144 ] ] ], [ [ [ 142.031250, 45.336702 ], [ 142.031250, 45.089036 ], [ 142.382812, 45.089036 ], [ 142.382812, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.590467 ], [ 143.085938, 44.590467 ], [ 143.085938, 44.339565 ], [ 143.789062, 44.339565 ], [ 143.789062, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 44.339565 ], [ 145.195312, 44.339565 ], [ 145.195312, 43.325178 ], [ 144.843750, 43.325178 ], [ 144.843750, 43.068888 ], [ 143.789062, 43.068888 ], [ 143.789062, 42.811522 ], [ 143.437500, 42.811522 ], [ 143.437500, 42.293564 ], [ 143.085938, 42.293564 ], [ 143.085938, 42.032974 ], [ 142.734375, 42.032974 ], [ 142.734375, 42.293564 ], [ 142.031250, 42.293564 ], [ 142.031250, 42.553080 ], [ 141.328125, 42.553080 ], [ 141.328125, 42.293564 ], [ 140.976562, 42.293564 ], [ 140.976562, 41.771312 ], [ 139.921875, 41.771312 ], [ 139.921875, 42.293564 ], [ 139.570312, 42.293564 ], [ 139.570312, 42.811522 ], [ 139.921875, 42.811522 ], [ 139.921875, 43.325178 ], [ 140.273438, 43.325178 ], [ 140.273438, 43.580391 ], [ 141.328125, 43.580391 ], [ 141.328125, 45.089036 ], [ 141.679688, 45.089036 ], [ 141.679688, 45.336702 ], [ 142.031250, 45.336702 ] ] ], [ [ [ 133.242188, 34.307144 ], [ 134.296875, 34.307144 ], [ 134.296875, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.724340 ], [ 134.296875, 33.724340 ], [ 134.296875, 33.431441 ], [ 133.242188, 33.431441 ], [ 133.242188, 33.137551 ], [ 132.890625, 33.137551 ], [ 132.890625, 32.842674 ], [ 132.187500, 32.842674 ], [ 132.187500, 33.724340 ], [ 132.539062, 33.724340 ], [ 132.539062, 34.016242 ], [ 133.242188, 34.016242 ], [ 133.242188, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.296875, -1.054628 ], [ 134.296875, -1.757537 ], [ 131.132812, -1.757537 ], [ 131.132812, -1.406109 ], [ 130.429688, -1.406109 ], [ 130.429688, -1.054628 ], [ 131.484375, -1.054628 ], [ 131.484375, -0.703107 ], [ 132.539062, -0.703107 ], [ 132.539062, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 119.882812, -0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 121.640625, -1.406109 ], [ 121.640625, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.406109 ], [ 122.343750, -1.406109 ], [ 122.343750, -1.757537 ], [ 119.179688, -1.757537 ], [ 119.179688, -1.054628 ], [ 119.531250, -1.054628 ], [ 119.531250, -0.351560 ], [ 119.882812, -0.351560 ] ] ], [ [ [ 117.773438, 4.214943 ], [ 117.773438, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 2.811371 ], [ 117.773438, 2.811371 ], [ 117.773438, 2.460181 ], [ 118.125000, 2.460181 ], [ 118.125000, 2.108899 ], [ 117.773438, 2.108899 ], [ 117.773438, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -1.054628 ], [ 117.070312, -1.054628 ], [ 117.070312, -1.406109 ], [ 116.718750, -1.406109 ], [ 116.718750, -1.757537 ], [ 109.687500, -1.757537 ], [ 109.687500, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 1.406109 ], [ 109.335938, 1.406109 ], [ 109.335938, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 0.703107 ], [ 111.093750, 0.703107 ], [ 111.093750, 1.054628 ], [ 112.500000, 1.054628 ], [ 112.500000, 1.406109 ], [ 113.203125, 1.406109 ], [ 113.203125, 1.054628 ], [ 114.609375, 1.054628 ], [ 114.609375, 2.108899 ], [ 114.960938, 2.108899 ], [ 114.960938, 2.811371 ], [ 115.664062, 2.811371 ], [ 115.664062, 3.513421 ], [ 116.015625, 3.513421 ], [ 116.015625, 4.214943 ], [ 117.773438, 4.214943 ] ] ], [ [ [ 97.382812, 5.266008 ], [ 97.382812, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.565474 ], [ 98.085938, 4.565474 ], [ 98.085938, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 3.864255 ], [ 98.789062, 3.864255 ], [ 98.789062, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 3.162456 ], [ 99.843750, 3.162456 ], [ 99.843750, 2.811371 ], [ 100.195312, 2.811371 ], [ 100.195312, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.757537 ], [ 102.304688, 1.757537 ], [ 102.304688, 1.406109 ], [ 102.656250, 1.406109 ], [ 102.656250, 1.054628 ], [ 103.007812, 1.054628 ], [ 103.007812, 0.351560 ], [ 103.359375, 0.351560 ], [ 103.359375, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 1.054628 ], [ 98.789062, 1.054628 ], [ 98.789062, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 1.757537 ], [ 98.085938, 1.757537 ], [ 98.085938, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.460181 ], [ 97.382812, 2.460181 ], [ 97.382812, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.162456 ], [ 96.679688, 3.162456 ], [ 96.679688, 3.513421 ], [ 96.328125, 3.513421 ], [ 96.328125, 3.864255 ], [ 95.976562, 3.864255 ], [ 95.976562, 4.214943 ], [ 95.625000, 4.214943 ], [ 95.625000, 4.565474 ], [ 95.273438, 4.565474 ], [ 95.273438, 5.266008 ], [ 97.382812, 5.266008 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 127.617188, -0.703107 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.968750, 1.757537 ], [ 127.968750, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.703107 ] ] ], [ [ [ 123.398438, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -1.054628 ] ] ], [ [ [ 125.156250, 1.054628 ], [ 124.804688, 1.054628 ], [ 124.804688, 0.351560 ], [ 120.234375, 0.351560 ], [ 120.234375, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 121.992188, 1.054628 ], [ 121.992188, 0.703107 ], [ 123.750000, 0.703107 ], [ 123.750000, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.406109 ], [ 125.156250, 1.406109 ], [ 125.156250, 1.054628 ] ] ], [ [ [ 127.968750, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -1.054628 ], [ 127.968750, -1.054628 ], [ 127.968750, -0.703107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.890625, -0.351560 ], [ 132.890625, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -1.054628 ], [ 130.429688, -1.054628 ], [ 130.429688, -0.703107 ], [ 131.484375, -0.703107 ], [ 131.484375, -0.351560 ], [ 132.890625, -0.351560 ] ] ], [ [ [ 119.882812, 0.351560 ], [ 119.882812, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.406109 ], [ 120.937500, -1.406109 ], [ 120.937500, -1.054628 ], [ 121.289062, -1.054628 ], [ 121.289062, -0.703107 ], [ 122.343750, -0.703107 ], [ 122.343750, -0.351560 ], [ 123.046875, -0.351560 ], [ 123.046875, -1.054628 ], [ 122.343750, -1.054628 ], [ 122.343750, -1.757537 ], [ 119.179688, -1.757537 ], [ 119.179688, -0.351560 ], [ 119.531250, -0.351560 ], [ 119.531250, 0.351560 ], [ 119.882812, 0.351560 ] ] ], [ [ [ 117.070312, 4.565474 ], [ 117.070312, 4.214943 ], [ 117.773438, 4.214943 ], [ 117.773438, 3.864255 ], [ 117.421875, 3.864255 ], [ 117.421875, 3.513421 ], [ 117.070312, 3.513421 ], [ 117.070312, 3.162456 ], [ 117.421875, 3.162456 ], [ 117.421875, 2.460181 ], [ 117.773438, 2.460181 ], [ 117.773438, 1.757537 ], [ 118.125000, 1.757537 ], [ 118.125000, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 1.054628 ], [ 117.773438, 1.054628 ], [ 117.773438, 0.703107 ], [ 117.421875, 0.703107 ], [ 117.421875, -1.054628 ], [ 116.718750, -1.054628 ], [ 116.718750, -1.406109 ], [ 116.367188, -1.406109 ], [ 116.367188, -1.757537 ], [ 110.039062, -1.757537 ], [ 110.039062, -1.406109 ], [ 109.335938, -1.406109 ], [ 109.335938, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 0.000000 ], [ 108.632812, 0.000000 ], [ 108.632812, 1.054628 ], [ 108.984375, 1.054628 ], [ 108.984375, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.054628 ], [ 111.796875, 1.054628 ], [ 111.796875, 1.406109 ], [ 112.148438, 1.406109 ], [ 112.148438, 1.757537 ], [ 112.851562, 1.757537 ], [ 112.851562, 1.406109 ], [ 114.257812, 1.406109 ], [ 114.257812, 1.757537 ], [ 114.609375, 1.757537 ], [ 114.609375, 2.460181 ], [ 114.960938, 2.460181 ], [ 114.960938, 3.162456 ], [ 115.312500, 3.162456 ], [ 115.312500, 3.864255 ], [ 115.664062, 3.864255 ], [ 115.664062, 4.565474 ], [ 117.070312, 4.565474 ] ] ], [ [ [ 96.328125, 5.615986 ], [ 96.328125, 5.266008 ], [ 97.382812, 5.266008 ], [ 97.382812, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.565474 ], [ 98.085938, 4.565474 ], [ 98.085938, 4.214943 ], [ 98.789062, 4.214943 ], [ 98.789062, 3.864255 ], [ 99.140625, 3.864255 ], [ 99.140625, 3.513421 ], [ 99.492188, 3.513421 ], [ 99.492188, 3.162456 ], [ 99.843750, 3.162456 ], [ 99.843750, 2.811371 ], [ 100.195312, 2.811371 ], [ 100.195312, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.757537 ], [ 101.953125, 1.757537 ], [ 101.953125, 1.406109 ], [ 102.304688, 1.406109 ], [ 102.304688, 1.054628 ], [ 102.656250, 1.054628 ], [ 102.656250, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.351560 ], [ 103.710938, 0.351560 ], [ 103.710938, -0.351560 ], [ 103.359375, -0.351560 ], [ 103.359375, -1.054628 ], [ 104.062500, -1.054628 ], [ 104.062500, -1.406109 ], [ 104.414062, -1.406109 ], [ 104.414062, -1.757537 ], [ 100.546875, -1.757537 ], [ 100.546875, -1.406109 ], [ 100.195312, -1.406109 ], [ 100.195312, -0.703107 ], [ 99.843750, -0.703107 ], [ 99.843750, -0.351560 ], [ 99.492188, -0.351560 ], [ 99.492188, 0.000000 ], [ 99.140625, 0.000000 ], [ 99.140625, 0.703107 ], [ 98.789062, 0.703107 ], [ 98.789062, 1.406109 ], [ 98.437500, 1.406109 ], [ 98.437500, 2.108899 ], [ 97.734375, 2.108899 ], [ 97.734375, 2.460181 ], [ 97.382812, 2.460181 ], [ 97.382812, 2.811371 ], [ 97.031250, 2.811371 ], [ 97.031250, 3.513421 ], [ 96.679688, 3.513421 ], [ 96.679688, 3.864255 ], [ 96.328125, 3.864255 ], [ 96.328125, 4.214943 ], [ 95.976562, 4.214943 ], [ 95.976562, 4.565474 ], [ 95.625000, 4.565474 ], [ 95.625000, 4.915833 ], [ 95.273438, 4.915833 ], [ 95.273438, 5.615986 ], [ 96.328125, 5.615986 ] ] ], [ [ [ 137.109375, -1.757537 ], [ 137.109375, -1.406109 ], [ 138.164062, -1.406109 ], [ 138.164062, -1.757537 ], [ 137.109375, -1.757537 ] ] ], [ [ [ 127.968750, -0.351560 ], [ 127.617188, -0.351560 ], [ 127.617188, 0.351560 ], [ 127.265625, 0.351560 ], [ 127.265625, 2.108899 ], [ 127.968750, 2.108899 ], [ 127.968750, 1.757537 ], [ 128.320312, 1.757537 ], [ 128.320312, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 128.320312, 0.703107 ], [ 128.320312, 0.351560 ], [ 127.968750, 0.351560 ], [ 127.968750, -0.351560 ] ] ], [ [ [ 124.804688, 1.406109 ], [ 124.804688, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 0.703107 ], [ 124.101562, 0.703107 ], [ 124.101562, 0.351560 ], [ 122.695312, 0.351560 ], [ 122.695312, 0.703107 ], [ 120.585938, 0.703107 ], [ 120.585938, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 1.054628 ], [ 120.585938, 1.054628 ], [ 120.585938, 1.406109 ], [ 120.937500, 1.406109 ], [ 120.937500, 1.054628 ], [ 124.101562, 1.054628 ], [ 124.101562, 1.406109 ], [ 124.804688, 1.406109 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 124.804688, 1.406109 ], [ 124.804688, 1.757537 ], [ 125.156250, 1.757537 ], [ 125.156250, 1.406109 ] ] ], [ [ [ 127.968750, -0.351560 ], [ 128.320312, -0.351560 ], [ 128.320312, -0.703107 ], [ 127.968750, -0.703107 ], [ 127.968750, -0.351560 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.765625, 77.617709 ], [ 104.765625, 77.542096 ], [ 105.468750, 77.542096 ], [ 105.468750, 77.466028 ], [ 105.820312, 77.466028 ], [ 105.820312, 77.389504 ], [ 106.171875, 77.389504 ], [ 106.171875, 77.312520 ], [ 105.820312, 77.312520 ], [ 105.820312, 77.235074 ], [ 105.117188, 77.235074 ], [ 105.117188, 77.078784 ], [ 106.171875, 77.078784 ], [ 106.171875, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.760541 ], [ 107.226562, 76.760541 ], [ 107.226562, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.929688, 76.598545 ], [ 107.929688, 76.679785 ], [ 108.281250, 76.679785 ], [ 108.281250, 76.760541 ], [ 109.335938, 76.760541 ], [ 109.335938, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.434604 ], [ 112.148438, 76.434604 ], [ 112.148438, 76.351896 ], [ 112.500000, 76.351896 ], [ 112.500000, 76.268695 ], [ 112.851562, 76.268695 ], [ 112.851562, 76.184995 ], [ 113.203125, 76.184995 ], [ 113.203125, 76.100796 ], [ 113.554688, 76.100796 ], [ 113.554688, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.845169 ], [ 114.257812, 75.845169 ], [ 114.257812, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 74.959392 ], [ 112.500000, 74.959392 ], [ 112.500000, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.211983 ], [ 109.335938, 74.211983 ], [ 109.335938, 74.116047 ], [ 110.039062, 74.116047 ], [ 110.039062, 74.019543 ], [ 110.742188, 74.019543 ], [ 110.742188, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.922469 ], [ 112.851562, 73.922469 ], [ 112.851562, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.428424 ], [ 113.906250, 73.428424 ], [ 113.906250, 73.627789 ], [ 114.960938, 73.627789 ], [ 114.960938, 73.726595 ], [ 117.070312, 73.726595 ], [ 117.070312, 73.627789 ], [ 118.828125, 73.627789 ], [ 118.828125, 73.327858 ], [ 119.179688, 73.327858 ], [ 119.179688, 73.124945 ], [ 120.937500, 73.124945 ], [ 120.937500, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.327858 ], [ 123.398438, 73.327858 ], [ 123.398438, 73.726595 ], [ 123.750000, 73.726595 ], [ 123.750000, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.528399 ], [ 126.914062, 73.528399 ], [ 126.914062, 73.428424 ], [ 127.265625, 73.428424 ], [ 127.265625, 73.327858 ], [ 127.617188, 73.327858 ], [ 127.617188, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.711903 ], [ 129.023438, 72.711903 ], [ 129.023438, 72.289067 ], [ 128.671875, 72.289067 ], [ 128.671875, 72.073911 ], [ 128.320312, 72.073911 ], [ 128.320312, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 70.959697 ], [ 130.781250, 70.959697 ], [ 130.781250, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.959697 ], [ 131.484375, 70.959697 ], [ 131.484375, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.635993 ], [ 132.187500, 71.635993 ], [ 132.187500, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.635993 ], [ 133.242188, 71.635993 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.413177 ], [ 134.648438, 71.413177 ], [ 134.648438, 71.524909 ], [ 135.351562, 71.524909 ], [ 135.351562, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.300793 ], [ 137.812500, 71.300793 ], [ 137.812500, 71.524909 ], [ 138.164062, 71.524909 ], [ 138.164062, 71.635993 ], [ 138.867188, 71.635993 ], [ 138.867188, 71.524909 ], [ 139.921875, 71.524909 ], [ 139.921875, 71.746432 ], [ 139.570312, 71.746432 ], [ 139.570312, 72.181804 ], [ 139.218750, 72.181804 ], [ 139.218750, 72.395706 ], [ 139.570312, 72.395706 ], [ 139.570312, 72.501722 ], [ 139.921875, 72.501722 ], [ 139.921875, 72.607120 ], [ 140.273438, 72.607120 ], [ 140.273438, 72.711903 ], [ 140.625000, 72.711903 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.765625, 72.073911 ], [ 149.765625, 71.856229 ], [ 150.117188, 71.856229 ], [ 150.117188, 71.635993 ], [ 150.468750, 71.635993 ], [ 150.468750, 71.524909 ], [ 150.820312, 71.524909 ], [ 150.820312, 71.413177 ], [ 151.171875, 71.413177 ], [ 151.171875, 71.300793 ], [ 151.523438, 71.300793 ], [ 151.523438, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.844673 ], [ 154.335938, 70.844673 ], [ 154.335938, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.959697 ], [ 158.203125, 70.959697 ], [ 158.203125, 70.844673 ], [ 158.906250, 70.844673 ], [ 158.906250, 70.728979 ], [ 159.257812, 70.728979 ], [ 159.257812, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 70.495574 ], [ 159.960938, 70.495574 ], [ 159.960938, 70.140364 ], [ 159.609375, 70.140364 ], [ 159.609375, 69.657086 ], [ 159.960938, 69.657086 ], [ 159.960938, 69.534518 ], [ 160.664062, 69.534518 ], [ 160.664062, 69.411242 ], [ 161.718750, 69.411242 ], [ 161.718750, 69.534518 ], [ 162.421875, 69.534518 ], [ 162.421875, 69.657086 ], [ 164.531250, 69.657086 ], [ 164.531250, 69.534518 ], [ 165.234375, 69.534518 ], [ 165.234375, 69.411242 ], [ 166.992188, 69.411242 ], [ 166.992188, 69.534518 ], [ 167.695312, 69.534518 ], [ 167.695312, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.162558 ], [ 168.398438, 69.162558 ], [ 168.398438, 69.037142 ], [ 168.750000, 69.037142 ], [ 168.750000, 68.911005 ], [ 169.101562, 68.911005 ], [ 169.101562, 68.656555 ], [ 169.804688, 68.656555 ], [ 169.804688, 68.784144 ], [ 170.507812, 68.784144 ], [ 170.507812, 68.911005 ], [ 170.859375, 68.911005 ], [ 170.859375, 69.162558 ], [ 170.507812, 69.162558 ], [ 170.507812, 69.411242 ], [ 170.156250, 69.411242 ], [ 170.156250, 69.900118 ], [ 170.507812, 69.900118 ], [ 170.507812, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 70.020587 ], [ 171.914062, 70.020587 ], [ 171.914062, 69.900118 ], [ 172.968750, 69.900118 ], [ 172.968750, 69.778952 ], [ 175.078125, 69.778952 ], [ 175.078125, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.162558 ], [ 179.296875, 69.162558 ], [ 179.296875, 69.037142 ], [ 179.648438, 69.037142 ], [ 179.648438, 68.911005 ], [ 180.000000, 68.911005 ], [ 180.000000, 68.784144 ], [ 180.351562, 68.784144 ], [ 180.351562, 68.656555 ], [ 181.054688, 68.656555 ], [ 181.054688, 68.528235 ], [ 181.406250, 68.528235 ], [ 181.406250, 68.399180 ], [ 181.757812, 68.399180 ], [ 181.757812, 65.802776 ], [ 181.054688, 65.802776 ], [ 181.054688, 65.946472 ], [ 180.703125, 65.946472 ], [ 180.703125, 65.802776 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.140778 ], [ 88.593750, 75.140778 ], [ 88.593750, 75.230667 ], [ 88.945312, 75.230667 ], [ 88.945312, 75.320025 ], [ 89.296875, 75.320025 ], [ 89.296875, 75.408854 ], [ 89.648438, 75.408854 ], [ 89.648438, 75.497157 ], [ 90.000000, 75.497157 ], [ 90.000000, 75.584937 ], [ 90.351562, 75.584937 ], [ 90.351562, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.758940 ], [ 92.812500, 75.758940 ], [ 92.812500, 75.845169 ], [ 93.164062, 75.845169 ], [ 93.164062, 76.016094 ], [ 94.921875, 76.016094 ], [ 94.921875, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.930885 ], [ 97.031250, 75.930885 ], [ 97.031250, 76.016094 ], [ 97.382812, 76.016094 ], [ 97.382812, 76.100796 ], [ 97.734375, 76.100796 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.434604 ], [ 100.898438, 76.434604 ], [ 100.898438, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.389504 ], [ 103.007812, 77.389504 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.617709 ], [ 104.765625, 77.617709 ] ] ], [ [ [ 96.328125, 81.201420 ], [ 96.328125, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 80.983688 ], [ 97.031250, 80.983688 ], [ 97.031250, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.238501 ], [ 99.140625, 80.238501 ], [ 99.140625, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 79.935918 ], [ 99.843750, 79.935918 ], [ 99.843750, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.302640 ], [ 99.843750, 79.302640 ], [ 99.843750, 78.903929 ], [ 99.492188, 78.903929 ], [ 99.492188, 78.836065 ], [ 98.437500, 78.836065 ], [ 98.437500, 78.767792 ], [ 97.031250, 78.767792 ], [ 97.031250, 78.836065 ], [ 96.328125, 78.836065 ], [ 96.328125, 78.903929 ], [ 95.625000, 78.903929 ], [ 95.625000, 78.971386 ], [ 94.921875, 78.971386 ], [ 94.921875, 79.038437 ], [ 94.570312, 79.038437 ], [ 94.570312, 79.105086 ], [ 94.218750, 79.105086 ], [ 94.218750, 79.237185 ], [ 93.867188, 79.237185 ], [ 93.867188, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.367701 ], [ 93.164062, 79.367701 ], [ 93.164062, 79.560546 ], [ 92.812500, 79.560546 ], [ 92.812500, 79.935918 ], [ 92.460938, 79.935918 ], [ 92.460938, 80.118564 ], [ 92.109375, 80.118564 ], [ 92.109375, 80.178713 ], [ 91.757812, 80.178713 ], [ 91.757812, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ], [ 91.757812, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.703997 ], [ 92.812500, 80.703997 ], [ 92.812500, 80.816891 ], [ 93.164062, 80.816891 ], [ 93.164062, 80.872827 ], [ 93.515625, 80.872827 ], [ 93.515625, 80.983688 ], [ 93.867188, 80.983688 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.093214 ], [ 94.921875, 81.093214 ], [ 94.921875, 81.147481 ], [ 95.273438, 81.147481 ], [ 95.273438, 81.201420 ], [ 96.328125, 81.201420 ] ] ], [ [ [ 141.328125, 76.100796 ], [ 141.328125, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.930885 ], [ 142.734375, 75.930885 ], [ 142.734375, 75.845169 ], [ 143.437500, 75.845169 ], [ 143.437500, 75.758940 ], [ 144.140625, 75.758940 ], [ 144.140625, 75.672197 ], [ 144.843750, 75.672197 ], [ 144.843750, 75.584937 ], [ 145.195312, 75.584937 ], [ 145.195312, 75.408854 ], [ 144.843750, 75.408854 ], [ 144.843750, 75.140778 ], [ 144.492188, 75.140778 ], [ 144.492188, 74.867889 ], [ 144.140625, 74.867889 ], [ 144.140625, 74.775843 ], [ 142.031250, 74.775843 ], [ 142.031250, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.775843 ], [ 139.921875, 74.775843 ], [ 139.921875, 74.683250 ], [ 139.218750, 74.683250 ], [ 139.218750, 74.590108 ], [ 138.515625, 74.590108 ], [ 138.515625, 74.775843 ], [ 138.164062, 74.775843 ], [ 138.164062, 74.867889 ], [ 137.812500, 74.867889 ], [ 137.812500, 74.959392 ], [ 137.460938, 74.959392 ], [ 137.460938, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.584937 ], [ 137.460938, 75.584937 ], [ 137.460938, 75.930885 ], [ 138.164062, 75.930885 ], [ 138.164062, 76.016094 ], [ 138.867188, 76.016094 ], [ 138.867188, 76.100796 ], [ 141.328125, 76.100796 ] ] ], [ [ [ 181.054688, 71.524909 ], [ 181.054688, 71.413177 ], [ 181.757812, 71.413177 ], [ 181.757812, 70.844673 ], [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.728979 ], [ 178.945312, 70.728979 ], [ 178.945312, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.648438, 71.300793 ], [ 179.648438, 71.413177 ], [ 180.000000, 71.413177 ], [ 180.000000, 71.524909 ], [ 181.054688, 71.524909 ] ] ], [ [ [ 102.304688, 79.367701 ], [ 102.304688, 79.302640 ], [ 103.007812, 79.302640 ], [ 103.007812, 79.237185 ], [ 103.359375, 79.237185 ], [ 103.359375, 79.171335 ], [ 103.710938, 79.171335 ], [ 103.710938, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.971386 ], [ 104.414062, 78.971386 ], [ 104.414062, 78.903929 ], [ 104.765625, 78.903929 ], [ 104.765625, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.699106 ], [ 105.468750, 78.699106 ], [ 105.468750, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.278201 ], [ 104.765625, 78.278201 ], [ 104.765625, 78.206563 ], [ 103.710938, 78.206563 ], [ 103.710938, 78.134493 ], [ 102.656250, 78.134493 ], [ 102.656250, 78.061989 ], [ 101.250000, 78.061989 ], [ 101.250000, 77.989049 ], [ 100.195312, 77.989049 ], [ 100.195312, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.989049 ], [ 99.843750, 77.989049 ], [ 99.843750, 78.278201 ], [ 100.195312, 78.278201 ], [ 100.195312, 78.560488 ], [ 100.546875, 78.560488 ], [ 100.546875, 78.836065 ], [ 100.898438, 78.836065 ], [ 100.898438, 79.105086 ], [ 101.250000, 79.105086 ], [ 101.250000, 79.237185 ], [ 101.601562, 79.237185 ], [ 101.601562, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.367701 ], [ 102.304688, 79.367701 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 142.031250, 73.726595 ], [ 142.382812, 73.726595 ], [ 142.382812, 73.627789 ], [ 142.734375, 73.627789 ], [ 142.734375, 73.528399 ], [ 143.085938, 73.528399 ], [ 143.085938, 73.428424 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.327858 ], [ 140.273438, 73.327858 ], [ 140.273438, 73.528399 ], [ 140.625000, 73.528399 ], [ 140.625000, 73.627789 ], [ 140.976562, 73.627789 ], [ 140.976562, 73.726595 ], [ 141.679688, 73.726595 ], [ 141.679688, 73.824820 ], [ 142.031250, 73.824820 ] ] ], [ [ [ 146.601562, 75.497157 ], [ 146.601562, 75.408854 ], [ 147.656250, 75.408854 ], [ 147.656250, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.230667 ], [ 149.414062, 75.230667 ], [ 149.414062, 75.140778 ], [ 150.117188, 75.140778 ], [ 150.117188, 75.050354 ], [ 150.820312, 75.050354 ], [ 150.820312, 74.959392 ], [ 150.468750, 74.959392 ], [ 150.468750, 74.867889 ], [ 150.117188, 74.867889 ], [ 150.117188, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 148.359375, 74.683250 ], [ 148.359375, 74.775843 ], [ 147.656250, 74.775843 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.959392 ], [ 146.601562, 74.959392 ], [ 146.601562, 75.050354 ], [ 146.250000, 75.050354 ], [ 146.250000, 75.497157 ], [ 146.601562, 75.497157 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 65.946472 ], [ 180.000000, 65.802776 ], [ 88.242188, 65.802776 ], [ 88.242188, 75.230667 ], [ 88.593750, 75.230667 ], [ 88.593750, 75.320025 ], [ 88.945312, 75.320025 ], [ 88.945312, 75.408854 ], [ 89.296875, 75.408854 ], [ 89.296875, 75.497157 ], [ 89.648438, 75.497157 ], [ 89.648438, 75.584937 ], [ 90.000000, 75.584937 ], [ 90.000000, 75.672197 ], [ 91.054688, 75.672197 ], [ 91.054688, 75.758940 ], [ 92.460938, 75.758940 ], [ 92.460938, 75.845169 ], [ 92.812500, 75.845169 ], [ 92.812500, 75.930885 ], [ 93.164062, 75.930885 ], [ 93.164062, 76.100796 ], [ 94.570312, 76.100796 ], [ 94.570312, 76.184995 ], [ 95.625000, 76.184995 ], [ 95.625000, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.930885 ], [ 97.031250, 75.930885 ], [ 97.031250, 76.016094 ], [ 97.382812, 76.016094 ], [ 97.382812, 76.100796 ], [ 97.734375, 76.100796 ], [ 97.734375, 76.268695 ], [ 98.085938, 76.268695 ], [ 98.085938, 76.351896 ], [ 98.437500, 76.351896 ], [ 98.437500, 76.434604 ], [ 98.789062, 76.434604 ], [ 98.789062, 76.516819 ], [ 99.492188, 76.516819 ], [ 99.492188, 76.434604 ], [ 100.546875, 76.434604 ], [ 100.546875, 76.679785 ], [ 100.898438, 76.679785 ], [ 100.898438, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.389504 ], [ 102.656250, 77.389504 ], [ 102.656250, 77.466028 ], [ 103.007812, 77.466028 ], [ 103.007812, 77.542096 ], [ 103.359375, 77.542096 ], [ 103.359375, 77.617709 ], [ 103.710938, 77.617709 ], [ 103.710938, 77.692870 ], [ 104.414062, 77.692870 ], [ 104.414062, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.542096 ], [ 105.117188, 77.542096 ], [ 105.117188, 77.466028 ], [ 105.468750, 77.466028 ], [ 105.468750, 77.389504 ], [ 105.820312, 77.389504 ], [ 105.820312, 77.312520 ], [ 105.468750, 77.312520 ], [ 105.468750, 77.235074 ], [ 104.765625, 77.235074 ], [ 104.765625, 77.078784 ], [ 106.171875, 77.078784 ], [ 106.171875, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.760541 ], [ 107.226562, 76.760541 ], [ 107.226562, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.679785 ], [ 107.929688, 76.679785 ], [ 107.929688, 76.760541 ], [ 110.742188, 76.760541 ], [ 110.742188, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.516819 ], [ 112.148438, 76.516819 ], [ 112.148438, 76.434604 ], [ 112.500000, 76.434604 ], [ 112.500000, 76.351896 ], [ 112.851562, 76.351896 ], [ 112.851562, 76.268695 ], [ 113.203125, 76.268695 ], [ 113.203125, 76.184995 ], [ 113.554688, 76.184995 ], [ 113.554688, 76.016094 ], [ 113.906250, 76.016094 ], [ 113.906250, 75.672197 ], [ 113.554688, 75.672197 ], [ 113.554688, 75.320025 ], [ 113.203125, 75.320025 ], [ 113.203125, 75.230667 ], [ 112.851562, 75.230667 ], [ 112.851562, 75.050354 ], [ 112.500000, 75.050354 ], [ 112.500000, 74.959392 ], [ 112.148438, 74.959392 ], [ 112.148438, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.775843 ], [ 111.093750, 74.775843 ], [ 111.093750, 74.683250 ], [ 110.742188, 74.683250 ], [ 110.742188, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.402163 ], [ 109.687500, 74.402163 ], [ 109.687500, 74.116047 ], [ 110.390625, 74.116047 ], [ 110.390625, 74.019543 ], [ 110.742188, 74.019543 ], [ 110.742188, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.824820 ], [ 112.148438, 73.824820 ], [ 112.148438, 73.922469 ], [ 112.851562, 73.922469 ], [ 112.851562, 73.726595 ], [ 113.203125, 73.726595 ], [ 113.203125, 73.428424 ], [ 113.554688, 73.428424 ], [ 113.554688, 73.528399 ], [ 113.906250, 73.528399 ], [ 113.906250, 73.627789 ], [ 114.609375, 73.627789 ], [ 114.609375, 73.726595 ], [ 115.312500, 73.726595 ], [ 115.312500, 73.824820 ], [ 116.015625, 73.824820 ], [ 116.015625, 73.726595 ], [ 117.421875, 73.726595 ], [ 117.421875, 73.627789 ], [ 118.476562, 73.627789 ], [ 118.476562, 73.327858 ], [ 118.828125, 73.327858 ], [ 118.828125, 73.124945 ], [ 120.585938, 73.124945 ], [ 120.585938, 73.022592 ], [ 123.046875, 73.022592 ], [ 123.046875, 73.824820 ], [ 123.398438, 73.824820 ], [ 123.398438, 73.726595 ], [ 124.453125, 73.726595 ], [ 124.453125, 73.627789 ], [ 126.914062, 73.627789 ], [ 126.914062, 73.528399 ], [ 127.265625, 73.528399 ], [ 127.265625, 73.428424 ], [ 127.617188, 73.428424 ], [ 127.617188, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 72.919635 ], [ 128.671875, 72.919635 ], [ 128.671875, 72.607120 ], [ 129.023438, 72.607120 ], [ 129.023438, 72.395706 ], [ 128.671875, 72.395706 ], [ 128.671875, 72.181804 ], [ 128.320312, 72.181804 ], [ 128.320312, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.074056 ], [ 130.429688, 71.074056 ], [ 130.429688, 70.959697 ], [ 130.781250, 70.959697 ], [ 130.781250, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.959697 ], [ 131.484375, 70.959697 ], [ 131.484375, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.635993 ], [ 132.187500, 71.635993 ], [ 132.187500, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.635993 ], [ 132.890625, 71.635993 ], [ 132.890625, 71.524909 ], [ 133.242188, 71.524909 ], [ 133.242188, 71.413177 ], [ 133.945312, 71.413177 ], [ 133.945312, 71.524909 ], [ 134.648438, 71.524909 ], [ 134.648438, 71.635993 ], [ 136.054688, 71.635993 ], [ 136.054688, 71.524909 ], [ 136.757812, 71.524909 ], [ 136.757812, 71.413177 ], [ 137.812500, 71.413177 ], [ 137.812500, 71.524909 ], [ 138.164062, 71.524909 ], [ 138.164062, 71.635993 ], [ 138.515625, 71.635993 ], [ 138.515625, 71.524909 ], [ 139.570312, 71.524909 ], [ 139.570312, 71.746432 ], [ 139.218750, 71.746432 ], [ 139.218750, 72.181804 ], [ 138.867188, 72.181804 ], [ 138.867188, 72.501722 ], [ 139.218750, 72.501722 ], [ 139.218750, 72.607120 ], [ 139.570312, 72.607120 ], [ 139.570312, 72.711903 ], [ 139.921875, 72.711903 ], [ 139.921875, 72.816074 ], [ 140.273438, 72.816074 ], [ 140.273438, 72.919635 ], [ 140.976562, 72.919635 ], [ 140.976562, 72.816074 ], [ 142.382812, 72.816074 ], [ 142.382812, 72.711903 ], [ 143.789062, 72.711903 ], [ 143.789062, 72.607120 ], [ 145.546875, 72.607120 ], [ 145.546875, 72.501722 ], [ 146.953125, 72.501722 ], [ 146.953125, 72.395706 ], [ 148.359375, 72.395706 ], [ 148.359375, 72.289067 ], [ 149.414062, 72.289067 ], [ 149.414062, 72.073911 ], [ 149.765625, 72.073911 ], [ 149.765625, 71.746432 ], [ 150.117188, 71.746432 ], [ 150.117188, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.413177 ], [ 150.820312, 71.413177 ], [ 150.820312, 71.300793 ], [ 151.171875, 71.300793 ], [ 151.171875, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.844673 ], [ 153.984375, 70.844673 ], [ 153.984375, 70.959697 ], [ 156.093750, 70.959697 ], [ 156.093750, 71.074056 ], [ 157.500000, 71.074056 ], [ 157.500000, 70.959697 ], [ 158.906250, 70.959697 ], [ 158.906250, 70.844673 ], [ 159.257812, 70.844673 ], [ 159.257812, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 69.657086 ], [ 160.312500, 69.657086 ], [ 160.312500, 69.534518 ], [ 161.718750, 69.534518 ], [ 161.718750, 69.657086 ], [ 163.125000, 69.657086 ], [ 163.125000, 69.778952 ], [ 164.179688, 69.778952 ], [ 164.179688, 69.657086 ], [ 165.234375, 69.657086 ], [ 165.234375, 69.534518 ], [ 166.992188, 69.534518 ], [ 166.992188, 69.657086 ], [ 167.695312, 69.657086 ], [ 167.695312, 69.534518 ], [ 168.046875, 69.534518 ], [ 168.046875, 69.287257 ], [ 168.398438, 69.287257 ], [ 168.398438, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 69.037142 ], [ 169.101562, 69.037142 ], [ 169.101562, 68.784144 ], [ 169.804688, 68.784144 ], [ 169.804688, 68.911005 ], [ 170.507812, 68.911005 ], [ 170.507812, 69.162558 ], [ 170.156250, 69.162558 ], [ 170.156250, 69.411242 ], [ 169.804688, 69.411242 ], [ 169.804688, 69.900118 ], [ 170.156250, 69.900118 ], [ 170.156250, 70.140364 ], [ 170.859375, 70.140364 ], [ 170.859375, 70.020587 ], [ 172.265625, 70.020587 ], [ 172.265625, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.162558 ], [ 179.648438, 69.162558 ], [ 179.648438, 69.037142 ], [ 180.000000, 69.037142 ], [ 180.000000, 68.911005 ], [ 180.351562, 68.911005 ], [ 180.351562, 68.784144 ], [ 181.054688, 68.784144 ], [ 181.054688, 68.656555 ], [ 181.406250, 68.656555 ], [ 181.406250, 68.528235 ], [ 181.757812, 68.528235 ], [ 181.757812, 65.802776 ], [ 181.054688, 65.802776 ], [ 181.054688, 66.089364 ], [ 180.351562, 66.089364 ], [ 180.351562, 65.946472 ], [ 180.000000, 65.946472 ] ] ], [ [ [ 95.976562, 81.201420 ], [ 95.976562, 81.093214 ], [ 96.328125, 81.093214 ], [ 96.328125, 81.038617 ], [ 96.679688, 81.038617 ], [ 96.679688, 80.928426 ], [ 97.031250, 80.928426 ], [ 97.031250, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.532071 ], [ 98.437500, 80.532071 ], [ 98.437500, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.178713 ], [ 99.140625, 80.178713 ], [ 99.140625, 80.058050 ], [ 99.492188, 80.058050 ], [ 99.492188, 79.874297 ], [ 99.843750, 79.874297 ], [ 99.843750, 78.903929 ], [ 99.492188, 78.903929 ], [ 99.492188, 78.836065 ], [ 98.437500, 78.836065 ], [ 98.437500, 78.767792 ], [ 97.382812, 78.767792 ], [ 97.382812, 78.836065 ], [ 96.679688, 78.836065 ], [ 96.679688, 78.903929 ], [ 95.976562, 78.903929 ], [ 95.976562, 78.971386 ], [ 95.625000, 78.971386 ], [ 95.625000, 79.038437 ], [ 94.921875, 79.038437 ], [ 94.921875, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.237185 ], [ 93.867188, 79.237185 ], [ 93.867188, 79.302640 ], [ 93.515625, 79.302640 ], [ 93.515625, 79.367701 ], [ 93.164062, 79.367701 ], [ 93.164062, 79.624056 ], [ 92.812500, 79.624056 ], [ 92.812500, 79.997168 ], [ 92.460938, 79.997168 ], [ 92.460938, 80.178713 ], [ 92.109375, 80.178713 ], [ 92.109375, 80.238501 ], [ 91.406250, 80.238501 ], [ 91.406250, 80.297927 ], [ 91.054688, 80.297927 ], [ 91.054688, 80.356995 ], [ 91.406250, 80.356995 ], [ 91.406250, 80.474065 ], [ 91.757812, 80.474065 ], [ 91.757812, 80.589727 ], [ 92.109375, 80.589727 ], [ 92.109375, 80.703997 ], [ 92.460938, 80.703997 ], [ 92.460938, 80.760615 ], [ 92.812500, 80.760615 ], [ 92.812500, 80.872827 ], [ 93.164062, 80.872827 ], [ 93.164062, 80.983688 ], [ 93.515625, 80.983688 ], [ 93.515625, 81.038617 ], [ 93.867188, 81.038617 ], [ 93.867188, 81.093214 ], [ 94.570312, 81.093214 ], [ 94.570312, 81.147481 ], [ 94.921875, 81.147481 ], [ 94.921875, 81.201420 ], [ 95.976562, 81.201420 ] ] ], [ [ [ 139.570312, 76.184995 ], [ 139.570312, 76.100796 ], [ 141.328125, 76.100796 ], [ 141.328125, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.930885 ], [ 142.734375, 75.930885 ], [ 142.734375, 75.845169 ], [ 143.085938, 75.845169 ], [ 143.085938, 75.758940 ], [ 143.789062, 75.758940 ], [ 143.789062, 75.672197 ], [ 144.492188, 75.672197 ], [ 144.492188, 75.584937 ], [ 144.843750, 75.584937 ], [ 144.843750, 75.408854 ], [ 144.492188, 75.408854 ], [ 144.492188, 75.050354 ], [ 144.140625, 75.050354 ], [ 144.140625, 74.867889 ], [ 140.273438, 74.867889 ], [ 140.273438, 74.775843 ], [ 139.570312, 74.775843 ], [ 139.570312, 74.683250 ], [ 138.515625, 74.683250 ], [ 138.515625, 74.775843 ], [ 138.164062, 74.775843 ], [ 138.164062, 74.867889 ], [ 137.812500, 74.867889 ], [ 137.812500, 75.050354 ], [ 137.460938, 75.050354 ], [ 137.460938, 75.140778 ], [ 137.109375, 75.140778 ], [ 137.109375, 75.230667 ], [ 136.757812, 75.230667 ], [ 136.757812, 75.497157 ], [ 137.109375, 75.497157 ], [ 137.109375, 75.845169 ], [ 137.460938, 75.845169 ], [ 137.460938, 76.016094 ], [ 137.812500, 76.016094 ], [ 137.812500, 76.100796 ], [ 138.515625, 76.100796 ], [ 138.515625, 76.184995 ], [ 139.570312, 76.184995 ] ] ], [ [ [ 180.703125, 71.635993 ], [ 180.703125, 71.524909 ], [ 181.406250, 71.524909 ], [ 181.406250, 71.413177 ], [ 181.757812, 71.413177 ], [ 181.757812, 70.959697 ], [ 180.703125, 70.959697 ], [ 180.703125, 70.844673 ], [ 180.000000, 70.844673 ], [ 178.593750, 70.844673 ], [ 178.593750, 71.187754 ], [ 178.945312, 71.187754 ], [ 178.945312, 71.300793 ], [ 179.648438, 71.300793 ], [ 179.648438, 71.413177 ], [ 180.000000, 71.413177 ], [ 180.000000, 71.635993 ], [ 180.703125, 71.635993 ] ] ], [ [ [ 102.656250, 79.302640 ], [ 102.656250, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.105086 ], [ 103.710938, 79.105086 ], [ 103.710938, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.903929 ], [ 104.414062, 78.903929 ], [ 104.414062, 78.836065 ], [ 104.765625, 78.836065 ], [ 104.765625, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.560488 ], [ 104.765625, 78.560488 ], [ 104.765625, 78.349411 ], [ 104.414062, 78.349411 ], [ 104.414062, 78.278201 ], [ 103.359375, 78.278201 ], [ 103.359375, 78.206563 ], [ 102.304688, 78.206563 ], [ 102.304688, 78.134493 ], [ 100.898438, 78.134493 ], [ 100.898438, 78.061989 ], [ 99.843750, 78.061989 ], [ 99.843750, 77.989049 ], [ 99.140625, 77.989049 ], [ 99.140625, 78.061989 ], [ 99.492188, 78.061989 ], [ 99.492188, 78.278201 ], [ 99.843750, 78.278201 ], [ 99.843750, 78.490552 ], [ 100.195312, 78.490552 ], [ 100.195312, 78.699106 ], [ 100.546875, 78.699106 ], [ 100.546875, 78.903929 ], [ 100.898438, 78.903929 ], [ 100.898438, 79.105086 ], [ 101.250000, 79.105086 ], [ 101.250000, 79.237185 ], [ 101.601562, 79.237185 ], [ 101.601562, 79.302640 ], [ 102.656250, 79.302640 ] ] ], [ [ [ 142.031250, 73.922469 ], [ 142.031250, 73.824820 ], [ 142.382812, 73.824820 ], [ 142.382812, 73.726595 ], [ 142.734375, 73.726595 ], [ 142.734375, 73.627789 ], [ 143.085938, 73.627789 ], [ 143.085938, 73.528399 ], [ 143.437500, 73.528399 ], [ 143.437500, 73.226700 ], [ 140.625000, 73.226700 ], [ 140.625000, 73.327858 ], [ 139.570312, 73.327858 ], [ 139.570312, 73.428424 ], [ 139.921875, 73.428424 ], [ 139.921875, 73.627789 ], [ 140.273438, 73.627789 ], [ 140.273438, 73.726595 ], [ 140.625000, 73.726595 ], [ 140.625000, 73.824820 ], [ 141.679688, 73.824820 ], [ 141.679688, 73.922469 ], [ 142.031250, 73.922469 ] ] ], [ [ [ 146.953125, 75.497157 ], [ 146.953125, 75.408854 ], [ 148.359375, 75.408854 ], [ 148.359375, 75.320025 ], [ 149.062500, 75.320025 ], [ 149.062500, 75.230667 ], [ 149.765625, 75.230667 ], [ 149.765625, 75.140778 ], [ 150.468750, 75.140778 ], [ 150.468750, 75.050354 ], [ 150.117188, 75.050354 ], [ 150.117188, 74.959392 ], [ 149.765625, 74.959392 ], [ 149.765625, 74.775843 ], [ 148.359375, 74.775843 ], [ 148.359375, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.050354 ], [ 146.250000, 75.050354 ], [ 146.250000, 75.140778 ], [ 145.898438, 75.140778 ], [ 145.898438, 75.320025 ], [ 146.250000, 75.320025 ], [ 146.250000, 75.497157 ], [ 146.953125, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -143.789062, -85.126373 ], [ -143.789062, -85.111416 ], [ -143.613281, -85.111416 ], [ -143.613281, -85.081364 ], [ -143.437500, -85.081364 ], [ -143.437500, -85.066270 ], [ -143.261719, -85.066270 ], [ -143.261719, -85.051129 ], [ -143.085938, -85.051129 ], [ -143.085938, -84.818373 ], [ -142.910156, -84.818373 ], [ -142.910156, -84.574702 ], [ -143.613281, -84.574702 ], [ -143.613281, -84.558057 ], [ -145.019531, -84.558057 ], [ -145.019531, -84.541361 ], [ -146.250000, -84.541361 ], [ -146.250000, -84.524614 ], [ -146.953125, -84.524614 ], [ -146.953125, -84.507816 ], [ -147.304688, -84.507816 ], [ -147.304688, -84.490966 ], [ -147.480469, -84.490966 ], [ -147.480469, -84.474065 ], [ -147.832031, -84.474065 ], [ -147.832031, -84.457112 ], [ -148.007812, -84.457112 ], [ -148.007812, -84.440107 ], [ -148.359375, -84.440107 ], [ -148.359375, -84.423050 ], [ -148.535156, -84.423050 ], [ -148.535156, -84.405941 ], [ -148.710938, -84.405941 ], [ -148.710938, -84.388780 ], [ -149.062500, -84.388780 ], [ -149.062500, -84.371566 ], [ -149.238281, -84.371566 ], [ -149.238281, -84.354300 ], [ -149.589844, -84.354300 ], [ -149.589844, -84.336980 ], [ -149.765625, -84.336980 ], [ -149.765625, -84.319608 ], [ -150.117188, -84.319608 ], [ -150.117188, -84.267172 ], [ -150.292969, -84.267172 ], [ -150.292969, -84.160849 ], [ -150.468750, -84.160849 ], [ -150.468750, -84.070747 ], [ -150.644531, -84.070747 ], [ -150.644531, -83.960794 ], [ -150.820312, -83.960794 ], [ -150.820312, -83.905058 ], [ -150.996094, -83.905058 ], [ -150.996094, -83.886366 ], [ -151.347656, -83.886366 ], [ -151.347656, -83.867616 ], [ -151.523438, -83.867616 ], [ -151.523438, -83.848810 ], [ -151.875000, -83.848810 ], [ -151.875000, -83.829945 ], [ -152.050781, -83.829945 ], [ -152.050781, -83.811024 ], [ -152.402344, -83.811024 ], [ -152.402344, -83.792044 ], [ -152.578125, -83.792044 ], [ -152.578125, -83.773007 ], [ -152.753906, -83.773007 ], [ -152.753906, -83.753911 ], [ -153.105469, -83.753911 ], [ -153.105469, -83.734757 ], [ -153.281250, -83.734757 ], [ -153.281250, -83.715544 ], [ -153.632812, -83.715544 ], [ -153.632812, -83.480366 ], [ -153.457031, -83.480366 ], [ -153.457031, -83.153111 ], [ -153.281250, -83.153111 ], [ -153.281250, -82.940327 ], [ -153.105469, -82.940327 ], [ -153.105469, -82.787476 ], [ -152.929688, -82.787476 ], [ -152.929688, -82.653843 ], [ -152.753906, -82.653843 ], [ -152.753906, -82.517749 ], [ -152.578125, -82.517749 ], [ -152.578125, -82.355800 ], [ -152.753906, -82.355800 ], [ -152.753906, -82.166446 ], [ -152.929688, -82.166446 ], [ -152.929688, -82.045740 ], [ -153.105469, -82.045740 ], [ -153.105469, -82.021378 ], [ -153.281250, -82.021378 ], [ -153.281250, -81.972431 ], [ -153.457031, -81.972431 ], [ -153.457031, -81.947846 ], [ -153.632812, -81.947846 ], [ -153.632812, -81.923186 ], [ -153.808594, -81.923186 ], [ -153.808594, -81.898451 ], [ -153.984375, -81.898451 ], [ -153.984375, -81.873641 ], [ -154.160156, -81.873641 ], [ -154.160156, -81.823794 ], [ -154.335938, -81.823794 ], [ -154.335938, -81.798757 ], [ -154.511719, -81.798757 ], [ -154.511719, -81.748454 ], [ -154.687500, -81.748454 ], [ -154.687500, -81.646927 ], [ -154.863281, -81.646927 ], [ -154.863281, -81.569968 ], [ -155.039062, -81.569968 ], [ -155.039062, -81.466261 ], [ -155.214844, -81.466261 ], [ -155.214844, -81.413933 ], [ -155.390625, -81.413933 ], [ -155.390625, -81.361287 ], [ -155.566406, -81.361287 ], [ -155.566406, -81.334844 ], [ -155.742188, -81.334844 ], [ -155.742188, -81.308321 ], [ -155.917969, -81.308321 ], [ -155.917969, -81.255032 ], [ -156.093750, -81.255032 ], [ -156.093750, -81.228267 ], [ -156.269531, -81.228267 ], [ -156.269531, -81.201420 ], [ -156.445312, -81.201420 ], [ -156.445312, -81.147481 ], [ -156.621094, -81.147481 ], [ -156.621094, -81.120388 ], [ -156.796875, -81.120388 ], [ -156.796875, -81.093214 ], [ -156.269531, -81.093214 ], [ -156.269531, -81.120388 ], [ -155.039062, -81.120388 ], [ -155.039062, -81.147481 ], [ -153.984375, -81.147481 ], [ -153.984375, -81.120388 ], [ -153.632812, -81.120388 ], [ -153.632812, -81.093214 ], [ -153.105469, -81.093214 ], [ -153.105469, -81.065957 ], [ -152.578125, -81.065957 ], [ -152.578125, -81.038617 ], [ -152.226562, -81.038617 ], [ -152.226562, -81.011194 ], [ -152.050781, -81.011194 ], [ -152.050781, -81.038617 ], [ -151.875000, -81.038617 ], [ -151.875000, -81.093214 ], [ -151.699219, -81.093214 ], [ -151.699219, -81.120388 ], [ -151.523438, -81.120388 ], [ -151.523438, -81.174491 ], [ -151.347656, -81.174491 ], [ -151.347656, -81.201420 ], [ -151.171875, -81.201420 ], [ -151.171875, -81.255032 ], [ -150.996094, -81.255032 ], [ -150.996094, -81.281717 ], [ -150.820312, -81.281717 ], [ -150.820312, -81.334844 ], [ -150.468750, -81.334844 ], [ -150.468750, -81.308321 ], [ -150.292969, -81.308321 ], [ -150.292969, -81.281717 ], [ -150.117188, -81.281717 ], [ -150.117188, -81.255032 ], [ -149.941406, -81.255032 ], [ -149.941406, -81.228267 ], [ -149.765625, -81.228267 ], [ -149.765625, -81.174491 ], [ -149.589844, -81.174491 ], [ -149.589844, -81.147481 ], [ -149.414062, -81.147481 ], [ -149.414062, -81.120388 ], [ -149.238281, -81.120388 ], [ -149.238281, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -81.065957 ], [ -148.886719, -81.065957 ], [ -148.886719, -81.038617 ], [ -148.710938, -81.038617 ], [ -148.710938, -80.983688 ], [ -148.535156, -80.983688 ], [ -148.535156, -80.956099 ], [ -148.359375, -80.956099 ], [ -148.359375, -80.900669 ], [ -148.183594, -80.900669 ], [ -148.183594, -80.872827 ], [ -148.007812, -80.872827 ], [ -148.007812, -80.844901 ], [ -147.832031, -80.844901 ], [ -147.832031, -80.788795 ], [ -147.656250, -80.788795 ], [ -147.656250, -80.760615 ], [ -147.480469, -80.760615 ], [ -147.480469, -80.703997 ], [ -147.304688, -80.703997 ], [ -147.304688, -80.647035 ], [ -147.128906, -80.647035 ], [ -147.128906, -80.589727 ], [ -146.953125, -80.589727 ], [ -146.953125, -80.503112 ], [ -146.777344, -80.503112 ], [ -146.777344, -80.444931 ], [ -146.601562, -80.444931 ], [ -146.601562, -80.386396 ], [ -146.425781, -80.386396 ], [ -146.425781, -80.238501 ], [ -146.601562, -80.238501 ], [ -146.601562, -80.058050 ], [ -146.777344, -80.058050 ], [ -146.777344, -79.935918 ], [ -146.953125, -79.935918 ], [ -146.953125, -79.905154 ], [ -147.128906, -79.905154 ], [ -147.128906, -79.843346 ], [ -147.304688, -79.843346 ], [ -147.304688, -79.812302 ], [ -147.480469, -79.812302 ], [ -147.480469, -79.781164 ], [ -147.656250, -79.781164 ], [ -147.656250, -79.718605 ], [ -147.832031, -79.718605 ], [ -147.832031, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.655668 ], [ -148.183594, -79.655668 ], [ -148.183594, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.592349 ], [ -148.535156, -79.592349 ], [ -148.535156, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.528647 ], [ -148.886719, -79.528647 ], [ -148.886719, -79.496652 ], [ -149.062500, -79.496652 ], [ -149.062500, -79.464560 ], [ -149.238281, -79.464560 ], [ -149.238281, -79.432371 ], [ -149.414062, -79.432371 ], [ -149.414062, -79.400085 ], [ -149.589844, -79.400085 ], [ -149.589844, -79.367701 ], [ -150.117188, -79.367701 ], [ -150.117188, -79.335219 ], [ -151.171875, -79.335219 ], [ -151.171875, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.789062, -85.126373 ] ] ], [ [ [ -169.980469, -83.905058 ], [ -169.980469, -83.923693 ], [ -169.804688, -83.923693 ], [ -169.804688, -83.960794 ], [ -169.628906, -83.960794 ], [ -169.628906, -83.997669 ], [ -169.453125, -83.997669 ], [ -169.453125, -84.034319 ], [ -169.277344, -84.034319 ], [ -169.277344, -84.070747 ], [ -169.101562, -84.070747 ], [ -169.101562, -84.106953 ], [ -168.925781, -84.106953 ], [ -168.925781, -84.160849 ], [ -168.750000, -84.160849 ], [ -168.750000, -84.214254 ], [ -168.574219, -84.214254 ], [ -168.574219, -84.267172 ], [ -168.398438, -84.267172 ], [ -168.398438, -84.302183 ], [ -168.222656, -84.302183 ], [ -168.222656, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.371566 ], [ -167.871094, -84.371566 ], [ -167.871094, -84.405941 ], [ -167.695312, -84.405941 ], [ -167.695312, -84.457112 ], [ -167.519531, -84.457112 ], [ -167.519531, -84.490966 ], [ -167.343750, -84.490966 ], [ -167.343750, -84.524614 ], [ -167.167969, -84.524614 ], [ -167.167969, -84.558057 ], [ -166.992188, -84.558057 ], [ -166.992188, -84.591297 ], [ -166.816406, -84.591297 ], [ -166.816406, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.624334 ], [ -166.464844, -84.624334 ], [ -166.464844, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.657170 ], [ -166.113281, -84.657170 ], [ -166.113281, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.689806 ], [ -165.761719, -84.689806 ], [ -165.761719, -84.706049 ], [ -165.410156, -84.706049 ], [ -165.410156, -84.722243 ], [ -165.234375, -84.722243 ], [ -165.234375, -84.738387 ], [ -165.058594, -84.738387 ], [ -165.058594, -84.754482 ], [ -164.882812, -84.754482 ], [ -164.882812, -84.770528 ], [ -164.707031, -84.770528 ], [ -164.707031, -84.786525 ], [ -164.531250, -84.786525 ], [ -164.531250, -84.802474 ], [ -164.355469, -84.802474 ], [ -164.355469, -84.818373 ], [ -164.179688, -84.818373 ], [ -164.179688, -84.834225 ], [ -164.003906, -84.834225 ], [ -164.003906, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.897147 ], [ -163.652344, -84.897147 ], [ -163.652344, -84.912758 ], [ -163.476562, -84.912758 ], [ -163.476562, -84.943837 ], [ -163.300781, -84.943837 ], [ -163.300781, -84.974726 ], [ -163.125000, -84.974726 ], [ -163.125000, -84.990100 ], [ -162.949219, -84.990100 ], [ -162.949219, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.051129 ], [ -162.597656, -85.051129 ], [ -162.597656, -85.066270 ], [ -162.421875, -85.066270 ], [ -162.421875, -85.096413 ], [ -162.246094, -85.096413 ], [ -162.246094, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.878906, -85.126373 ], [ -180.878906, -84.607840 ], [ -180.703125, -84.607840 ], [ -180.703125, -84.640777 ], [ -180.527344, -84.640777 ], [ -180.527344, -84.657170 ], [ -180.351562, -84.657170 ], [ -180.351562, -84.673513 ], [ -180.175781, -84.673513 ], [ -180.175781, -84.706049 ], [ -180.000000, -84.706049 ], [ -180.000000, -84.673513 ], [ -179.824219, -84.673513 ], [ -179.824219, -84.558057 ], [ -179.648438, -84.558057 ], [ -179.648438, -84.440107 ], [ -179.472656, -84.440107 ], [ -179.472656, -84.336980 ], [ -179.296875, -84.336980 ], [ -179.296875, -84.214254 ], [ -179.121094, -84.214254 ], [ -179.121094, -84.160849 ], [ -178.945312, -84.160849 ], [ -178.945312, -84.196507 ], [ -178.769531, -84.196507 ], [ -178.769531, -84.231947 ], [ -178.593750, -84.231947 ], [ -178.593750, -84.249587 ], [ -178.417969, -84.249587 ], [ -178.417969, -84.284704 ], [ -178.242188, -84.284704 ], [ -178.242188, -84.302183 ], [ -178.066406, -84.302183 ], [ -178.066406, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.371566 ], [ -177.714844, -84.371566 ], [ -177.714844, -84.388780 ], [ -177.539062, -84.388780 ], [ -177.539062, -84.423050 ], [ -177.363281, -84.423050 ], [ -177.363281, -84.457112 ], [ -177.187500, -84.457112 ], [ -177.187500, -84.405941 ], [ -177.011719, -84.405941 ], [ -177.011719, -84.354300 ], [ -176.835938, -84.354300 ], [ -176.835938, -84.302183 ], [ -176.660156, -84.302183 ], [ -176.660156, -84.249587 ], [ -176.484375, -84.249587 ], [ -176.484375, -84.196507 ], [ -176.308594, -84.196507 ], [ -176.308594, -84.142939 ], [ -176.132812, -84.142939 ], [ -176.132812, -84.106953 ], [ -175.957031, -84.106953 ], [ -175.957031, -84.124973 ], [ -175.781250, -84.124973 ], [ -175.781250, -84.160849 ], [ -175.605469, -84.160849 ], [ -175.605469, -84.214254 ], [ -175.429688, -84.214254 ], [ -175.429688, -84.267172 ], [ -175.253906, -84.267172 ], [ -175.253906, -84.319608 ], [ -175.078125, -84.319608 ], [ -175.078125, -84.371566 ], [ -174.902344, -84.371566 ], [ -174.902344, -84.423050 ], [ -174.726562, -84.423050 ], [ -174.726562, -84.474065 ], [ -174.550781, -84.474065 ], [ -174.550781, -84.524614 ], [ -174.199219, -84.524614 ], [ -174.199219, -84.457112 ], [ -174.023438, -84.457112 ], [ -174.023438, -84.405941 ], [ -173.847656, -84.405941 ], [ -173.847656, -84.336980 ], [ -173.671875, -84.336980 ], [ -173.671875, -84.284704 ], [ -173.496094, -84.284704 ], [ -173.496094, -84.231947 ], [ -173.320312, -84.231947 ], [ -173.320312, -84.160849 ], [ -173.144531, -84.160849 ], [ -173.144531, -84.088878 ], [ -172.968750, -84.088878 ], [ -172.968750, -84.052561 ], [ -172.792969, -84.052561 ], [ -172.792969, -84.034319 ], [ -172.441406, -84.034319 ], [ -172.441406, -84.016022 ], [ -172.089844, -84.016022 ], [ -172.089844, -83.997669 ], [ -171.738281, -83.997669 ], [ -171.738281, -83.979259 ], [ -171.386719, -83.979259 ], [ -171.386719, -83.960794 ], [ -171.035156, -83.960794 ], [ -171.035156, -83.942272 ], [ -170.683594, -83.942272 ], [ -170.683594, -83.923693 ], [ -170.332031, -83.923693 ], [ -170.332031, -83.905058 ], [ -169.980469, -83.905058 ] ] ], [ [ [ -155.390625, -85.126373 ], [ -155.390625, -85.111416 ], [ -154.863281, -85.111416 ], [ -154.863281, -85.126373 ], [ -155.390625, -85.126373 ] ] ], [ [ [ -159.609375, -79.004962 ], [ -159.609375, -79.038437 ], [ -159.433594, -79.038437 ], [ -159.433594, -79.269962 ], [ -159.257812, -79.269962 ], [ -159.257812, -79.496652 ], [ -159.433594, -79.496652 ], [ -159.433594, -79.528647 ], [ -159.960938, -79.528647 ], [ -159.960938, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.592349 ], [ -160.839844, -79.592349 ], [ -160.839844, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.542969, -79.560546 ], [ -161.542969, -79.528647 ], [ -161.718750, -79.528647 ], [ -161.718750, -79.464560 ], [ -161.894531, -79.464560 ], [ -161.894531, -79.400085 ], [ -162.070312, -79.400085 ], [ -162.070312, -79.367701 ], [ -162.246094, -79.367701 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.138260 ], [ -162.773438, -79.138260 ], [ -162.773438, -79.071812 ], [ -162.949219, -79.071812 ], [ -162.949219, -79.004962 ], [ -159.609375, -79.004962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -143.789062, -85.126373 ], [ -143.789062, -85.096413 ], [ -143.613281, -85.096413 ], [ -143.613281, -85.081364 ], [ -143.437500, -85.081364 ], [ -143.437500, -85.051129 ], [ -143.261719, -85.051129 ], [ -143.261719, -84.928321 ], [ -143.085938, -84.928321 ], [ -143.085938, -84.689806 ], [ -142.910156, -84.689806 ], [ -142.910156, -84.558057 ], [ -143.964844, -84.558057 ], [ -143.964844, -84.541361 ], [ -146.074219, -84.541361 ], [ -146.074219, -84.524614 ], [ -147.128906, -84.524614 ], [ -147.128906, -84.507816 ], [ -147.304688, -84.507816 ], [ -147.304688, -84.490966 ], [ -147.656250, -84.490966 ], [ -147.656250, -84.474065 ], [ -147.832031, -84.474065 ], [ -147.832031, -84.457112 ], [ -148.007812, -84.457112 ], [ -148.007812, -84.440107 ], [ -148.359375, -84.440107 ], [ -148.359375, -84.423050 ], [ -148.535156, -84.423050 ], [ -148.535156, -84.405941 ], [ -148.710938, -84.405941 ], [ -148.710938, -84.388780 ], [ -148.886719, -84.388780 ], [ -148.886719, -84.371566 ], [ -149.238281, -84.371566 ], [ -149.238281, -84.354300 ], [ -149.414062, -84.354300 ], [ -149.414062, -84.336980 ], [ -149.589844, -84.336980 ], [ -149.589844, -84.319608 ], [ -149.941406, -84.319608 ], [ -149.941406, -84.302183 ], [ -150.117188, -84.302183 ], [ -150.117188, -84.249587 ], [ -150.292969, -84.249587 ], [ -150.292969, -84.178705 ], [ -150.468750, -84.178705 ], [ -150.468750, -84.088878 ], [ -150.644531, -84.088878 ], [ -150.644531, -84.016022 ], [ -150.820312, -84.016022 ], [ -150.820312, -83.942272 ], [ -150.996094, -83.942272 ], [ -150.996094, -83.886366 ], [ -151.171875, -83.886366 ], [ -151.171875, -83.867616 ], [ -151.523438, -83.867616 ], [ -151.523438, -83.848810 ], [ -151.699219, -83.848810 ], [ -151.699219, -83.829945 ], [ -151.875000, -83.829945 ], [ -151.875000, -83.811024 ], [ -152.226562, -83.811024 ], [ -152.226562, -83.792044 ], [ -152.402344, -83.792044 ], [ -152.402344, -83.773007 ], [ -152.578125, -83.773007 ], [ -152.578125, -83.753911 ], [ -152.929688, -83.753911 ], [ -152.929688, -83.734757 ], [ -153.105469, -83.734757 ], [ -153.105469, -83.715544 ], [ -153.281250, -83.715544 ], [ -153.281250, -83.696273 ], [ -153.632812, -83.696273 ], [ -153.632812, -83.460377 ], [ -153.457031, -83.460377 ], [ -153.457031, -83.132123 ], [ -153.281250, -83.132123 ], [ -153.281250, -82.918690 ], [ -153.105469, -82.918690 ], [ -153.105469, -82.720964 ], [ -152.929688, -82.720964 ], [ -152.929688, -82.540604 ], [ -152.753906, -82.540604 ], [ -152.753906, -82.237994 ], [ -152.929688, -82.237994 ], [ -152.929688, -82.021378 ], [ -153.105469, -82.021378 ], [ -153.105469, -81.996942 ], [ -153.281250, -81.996942 ], [ -153.281250, -81.972431 ], [ -153.457031, -81.972431 ], [ -153.457031, -81.947846 ], [ -153.632812, -81.947846 ], [ -153.632812, -81.923186 ], [ -153.808594, -81.923186 ], [ -153.808594, -81.873641 ], [ -153.984375, -81.873641 ], [ -153.984375, -81.848756 ], [ -154.160156, -81.848756 ], [ -154.160156, -81.823794 ], [ -154.335938, -81.823794 ], [ -154.335938, -81.798757 ], [ -154.511719, -81.798757 ], [ -154.511719, -81.773644 ], [ -154.687500, -81.773644 ], [ -154.687500, -81.723188 ], [ -154.863281, -81.723188 ], [ -154.863281, -81.646927 ], [ -155.039062, -81.646927 ], [ -155.039062, -81.544159 ], [ -155.214844, -81.544159 ], [ -155.214844, -81.466261 ], [ -155.390625, -81.466261 ], [ -155.390625, -81.413933 ], [ -155.566406, -81.413933 ], [ -155.566406, -81.361287 ], [ -155.742188, -81.361287 ], [ -155.742188, -81.334844 ], [ -155.917969, -81.334844 ], [ -155.917969, -81.308321 ], [ -156.093750, -81.308321 ], [ -156.093750, -81.255032 ], [ -156.269531, -81.255032 ], [ -156.269531, -81.228267 ], [ -156.445312, -81.228267 ], [ -156.445312, -81.201420 ], [ -156.621094, -81.201420 ], [ -156.621094, -81.147481 ], [ -156.796875, -81.147481 ], [ -156.796875, -81.120388 ], [ -156.972656, -81.120388 ], [ -156.972656, -81.093214 ], [ -156.445312, -81.093214 ], [ -156.445312, -81.120388 ], [ -155.214844, -81.120388 ], [ -155.214844, -81.147481 ], [ -154.160156, -81.147481 ], [ -154.160156, -81.120388 ], [ -153.808594, -81.120388 ], [ -153.808594, -81.093214 ], [ -153.457031, -81.093214 ], [ -153.457031, -81.065957 ], [ -153.105469, -81.065957 ], [ -153.105469, -81.038617 ], [ -152.753906, -81.038617 ], [ -152.753906, -81.011194 ], [ -152.402344, -81.011194 ], [ -152.402344, -80.983688 ], [ -152.226562, -80.983688 ], [ -152.226562, -81.011194 ], [ -152.050781, -81.011194 ], [ -152.050781, -81.065957 ], [ -151.875000, -81.065957 ], [ -151.875000, -81.120388 ], [ -151.699219, -81.120388 ], [ -151.699219, -81.147481 ], [ -151.523438, -81.147481 ], [ -151.523438, -81.201420 ], [ -151.347656, -81.201420 ], [ -151.347656, -81.228267 ], [ -151.171875, -81.228267 ], [ -151.171875, -81.281717 ], [ -150.996094, -81.281717 ], [ -150.996094, -81.334844 ], [ -150.644531, -81.334844 ], [ -150.644531, -81.308321 ], [ -150.468750, -81.308321 ], [ -150.468750, -81.281717 ], [ -150.292969, -81.281717 ], [ -150.292969, -81.255032 ], [ -150.117188, -81.255032 ], [ -150.117188, -81.228267 ], [ -149.941406, -81.228267 ], [ -149.941406, -81.201420 ], [ -149.765625, -81.201420 ], [ -149.765625, -81.174491 ], [ -149.589844, -81.174491 ], [ -149.589844, -81.147481 ], [ -149.414062, -81.147481 ], [ -149.414062, -81.120388 ], [ -149.238281, -81.120388 ], [ -149.238281, -81.093214 ], [ -149.062500, -81.093214 ], [ -149.062500, -81.065957 ], [ -148.886719, -81.065957 ], [ -148.886719, -81.038617 ], [ -148.710938, -81.038617 ], [ -148.710938, -80.983688 ], [ -148.535156, -80.983688 ], [ -148.535156, -80.956099 ], [ -148.359375, -80.956099 ], [ -148.359375, -80.900669 ], [ -148.183594, -80.900669 ], [ -148.183594, -80.844901 ], [ -148.007812, -80.844901 ], [ -148.007812, -80.816891 ], [ -147.832031, -80.816891 ], [ -147.832031, -80.760615 ], [ -147.656250, -80.760615 ], [ -147.656250, -80.732349 ], [ -147.480469, -80.732349 ], [ -147.480469, -80.675559 ], [ -147.304688, -80.675559 ], [ -147.304688, -80.618424 ], [ -147.128906, -80.618424 ], [ -147.128906, -80.560943 ], [ -146.953125, -80.560943 ], [ -146.953125, -80.503112 ], [ -146.777344, -80.503112 ], [ -146.777344, -80.444931 ], [ -146.601562, -80.444931 ], [ -146.601562, -80.386396 ], [ -146.425781, -80.386396 ], [ -146.425781, -80.238501 ], [ -146.601562, -80.238501 ], [ -146.601562, -80.027655 ], [ -146.777344, -80.027655 ], [ -146.777344, -79.905154 ], [ -146.953125, -79.905154 ], [ -146.953125, -79.874297 ], [ -147.128906, -79.874297 ], [ -147.128906, -79.843346 ], [ -147.304688, -79.843346 ], [ -147.304688, -79.812302 ], [ -147.480469, -79.812302 ], [ -147.480469, -79.749932 ], [ -147.656250, -79.749932 ], [ -147.656250, -79.718605 ], [ -147.832031, -79.718605 ], [ -147.832031, -79.687184 ], [ -148.007812, -79.687184 ], [ -148.007812, -79.655668 ], [ -148.183594, -79.655668 ], [ -148.183594, -79.624056 ], [ -148.359375, -79.624056 ], [ -148.359375, -79.592349 ], [ -148.535156, -79.592349 ], [ -148.535156, -79.560546 ], [ -148.710938, -79.560546 ], [ -148.710938, -79.528647 ], [ -148.886719, -79.528647 ], [ -148.886719, -79.464560 ], [ -149.062500, -79.464560 ], [ -149.062500, -79.432371 ], [ -149.238281, -79.432371 ], [ -149.238281, -79.400085 ], [ -149.414062, -79.400085 ], [ -149.414062, -79.367701 ], [ -149.589844, -79.367701 ], [ -149.589844, -79.335219 ], [ -150.292969, -79.335219 ], [ -150.292969, -79.302640 ], [ -151.347656, -79.302640 ], [ -151.347656, -79.269962 ], [ -152.050781, -79.269962 ], [ -152.050781, -79.237185 ], [ -152.402344, -79.237185 ], [ -152.402344, -79.204309 ], [ -152.929688, -79.204309 ], [ -152.929688, -79.171335 ], [ -153.281250, -79.171335 ], [ -153.281250, -79.138260 ], [ -153.808594, -79.138260 ], [ -153.808594, -79.105086 ], [ -154.511719, -79.105086 ], [ -154.511719, -79.071812 ], [ -155.214844, -79.071812 ], [ -155.214844, -79.038437 ], [ -155.566406, -79.038437 ], [ -155.566406, -79.004962 ], [ -134.121094, -79.004962 ], [ -134.121094, -85.126373 ], [ -143.789062, -85.126373 ] ] ], [ [ [ -169.980469, -83.886366 ], [ -169.980469, -83.905058 ], [ -169.804688, -83.905058 ], [ -169.804688, -83.942272 ], [ -169.628906, -83.942272 ], [ -169.628906, -83.997669 ], [ -169.453125, -83.997669 ], [ -169.453125, -84.052561 ], [ -169.277344, -84.052561 ], [ -169.277344, -84.088878 ], [ -169.101562, -84.088878 ], [ -169.101562, -84.142939 ], [ -168.925781, -84.142939 ], [ -168.925781, -84.178705 ], [ -168.750000, -84.178705 ], [ -168.750000, -84.214254 ], [ -168.574219, -84.214254 ], [ -168.574219, -84.267172 ], [ -168.398438, -84.267172 ], [ -168.398438, -84.302183 ], [ -168.222656, -84.302183 ], [ -168.222656, -84.336980 ], [ -168.046875, -84.336980 ], [ -168.046875, -84.388780 ], [ -167.871094, -84.388780 ], [ -167.871094, -84.423050 ], [ -167.695312, -84.423050 ], [ -167.695312, -84.474065 ], [ -167.519531, -84.474065 ], [ -167.519531, -84.507816 ], [ -167.343750, -84.507816 ], [ -167.343750, -84.541361 ], [ -167.167969, -84.541361 ], [ -167.167969, -84.574702 ], [ -166.992188, -84.574702 ], [ -166.992188, -84.591297 ], [ -166.816406, -84.591297 ], [ -166.816406, -84.607840 ], [ -166.640625, -84.607840 ], [ -166.640625, -84.624334 ], [ -166.464844, -84.624334 ], [ -166.464844, -84.640777 ], [ -166.289062, -84.640777 ], [ -166.289062, -84.657170 ], [ -166.113281, -84.657170 ], [ -166.113281, -84.673513 ], [ -165.937500, -84.673513 ], [ -165.937500, -84.689806 ], [ -165.585938, -84.689806 ], [ -165.585938, -84.706049 ], [ -165.410156, -84.706049 ], [ -165.410156, -84.722243 ], [ -165.234375, -84.722243 ], [ -165.234375, -84.738387 ], [ -165.058594, -84.738387 ], [ -165.058594, -84.754482 ], [ -164.882812, -84.754482 ], [ -164.882812, -84.770528 ], [ -164.707031, -84.770528 ], [ -164.707031, -84.786525 ], [ -164.531250, -84.786525 ], [ -164.531250, -84.802474 ], [ -164.355469, -84.802474 ], [ -164.355469, -84.818373 ], [ -164.179688, -84.818373 ], [ -164.179688, -84.834225 ], [ -164.003906, -84.834225 ], [ -164.003906, -84.865782 ], [ -163.828125, -84.865782 ], [ -163.828125, -84.897147 ], [ -163.652344, -84.897147 ], [ -163.652344, -84.912758 ], [ -163.476562, -84.912758 ], [ -163.476562, -84.943837 ], [ -163.300781, -84.943837 ], [ -163.300781, -84.974726 ], [ -163.125000, -84.974726 ], [ -163.125000, -84.990100 ], [ -162.949219, -84.990100 ], [ -162.949219, -85.020708 ], [ -162.773438, -85.020708 ], [ -162.773438, -85.051129 ], [ -162.597656, -85.051129 ], [ -162.597656, -85.066270 ], [ -162.421875, -85.066270 ], [ -162.421875, -85.096413 ], [ -162.246094, -85.096413 ], [ -162.246094, -85.126373 ], [ -180.000000, -85.126373 ], [ -180.878906, -85.126373 ], [ -180.878906, -84.607840 ], [ -180.703125, -84.607840 ], [ -180.703125, -84.640777 ], [ -180.527344, -84.640777 ], [ -180.527344, -84.657170 ], [ -180.351562, -84.657170 ], [ -180.351562, -84.673513 ], [ -180.175781, -84.673513 ], [ -180.175781, -84.706049 ], [ -180.000000, -84.706049 ], [ -180.000000, -84.657170 ], [ -179.824219, -84.657170 ], [ -179.824219, -84.541361 ], [ -179.648438, -84.541361 ], [ -179.648438, -84.423050 ], [ -179.472656, -84.423050 ], [ -179.472656, -84.319608 ], [ -179.296875, -84.319608 ], [ -179.296875, -84.196507 ], [ -179.121094, -84.196507 ], [ -179.121094, -84.142939 ], [ -178.945312, -84.142939 ], [ -178.945312, -84.178705 ], [ -178.769531, -84.178705 ], [ -178.769531, -84.214254 ], [ -178.593750, -84.214254 ], [ -178.593750, -84.249587 ], [ -178.417969, -84.249587 ], [ -178.417969, -84.284704 ], [ -178.242188, -84.284704 ], [ -178.242188, -84.302183 ], [ -178.066406, -84.302183 ], [ -178.066406, -84.336980 ], [ -177.890625, -84.336980 ], [ -177.890625, -84.371566 ], [ -177.714844, -84.371566 ], [ -177.714844, -84.405941 ], [ -177.539062, -84.405941 ], [ -177.539062, -84.440107 ], [ -177.363281, -84.440107 ], [ -177.363281, -84.423050 ], [ -177.187500, -84.423050 ], [ -177.187500, -84.388780 ], [ -177.011719, -84.388780 ], [ -177.011719, -84.336980 ], [ -176.835938, -84.336980 ], [ -176.835938, -84.284704 ], [ -176.660156, -84.284704 ], [ -176.660156, -84.231947 ], [ -176.484375, -84.231947 ], [ -176.484375, -84.178705 ], [ -176.308594, -84.178705 ], [ -176.308594, -84.124973 ], [ -176.132812, -84.124973 ], [ -176.132812, -84.106953 ], [ -175.957031, -84.106953 ], [ -175.957031, -84.142939 ], [ -175.781250, -84.142939 ], [ -175.781250, -84.196507 ], [ -175.605469, -84.196507 ], [ -175.605469, -84.249587 ], [ -175.429688, -84.249587 ], [ -175.429688, -84.302183 ], [ -175.253906, -84.302183 ], [ -175.253906, -84.354300 ], [ -175.078125, -84.354300 ], [ -175.078125, -84.405941 ], [ -174.902344, -84.405941 ], [ -174.902344, -84.457112 ], [ -174.726562, -84.457112 ], [ -174.726562, -84.507816 ], [ -174.375000, -84.507816 ], [ -174.375000, -84.457112 ], [ -174.199219, -84.457112 ], [ -174.199219, -84.405941 ], [ -174.023438, -84.405941 ], [ -174.023438, -84.354300 ], [ -173.847656, -84.354300 ], [ -173.847656, -84.302183 ], [ -173.671875, -84.302183 ], [ -173.671875, -84.249587 ], [ -173.496094, -84.249587 ], [ -173.496094, -84.196507 ], [ -173.320312, -84.196507 ], [ -173.320312, -84.142939 ], [ -173.144531, -84.142939 ], [ -173.144531, -84.088878 ], [ -172.968750, -84.088878 ], [ -172.968750, -84.052561 ], [ -172.792969, -84.052561 ], [ -172.792969, -84.034319 ], [ -172.441406, -84.034319 ], [ -172.441406, -84.016022 ], [ -172.089844, -84.016022 ], [ -172.089844, -83.997669 ], [ -171.914062, -83.997669 ], [ -171.914062, -83.979259 ], [ -171.562500, -83.979259 ], [ -171.562500, -83.960794 ], [ -171.210938, -83.960794 ], [ -171.210938, -83.942272 ], [ -170.859375, -83.942272 ], [ -170.859375, -83.923693 ], [ -170.683594, -83.923693 ], [ -170.683594, -83.905058 ], [ -170.332031, -83.905058 ], [ -170.332031, -83.886366 ], [ -169.980469, -83.886366 ] ] ], [ [ [ -155.390625, -85.126373 ], [ -155.390625, -85.111416 ], [ -154.863281, -85.111416 ], [ -154.863281, -85.126373 ], [ -155.390625, -85.126373 ] ] ], [ [ [ -159.609375, -79.004962 ], [ -159.609375, -79.171335 ], [ -159.433594, -79.171335 ], [ -159.433594, -79.400085 ], [ -159.257812, -79.400085 ], [ -159.257812, -79.496652 ], [ -159.433594, -79.496652 ], [ -159.433594, -79.528647 ], [ -159.960938, -79.528647 ], [ -159.960938, -79.560546 ], [ -160.312500, -79.560546 ], [ -160.312500, -79.592349 ], [ -160.839844, -79.592349 ], [ -160.839844, -79.624056 ], [ -161.367188, -79.624056 ], [ -161.367188, -79.560546 ], [ -161.542969, -79.560546 ], [ -161.542969, -79.528647 ], [ -161.718750, -79.528647 ], [ -161.718750, -79.496652 ], [ -161.894531, -79.496652 ], [ -161.894531, -79.432371 ], [ -162.070312, -79.432371 ], [ -162.070312, -79.400085 ], [ -162.246094, -79.400085 ], [ -162.246094, -79.367701 ], [ -162.421875, -79.367701 ], [ -162.421875, -79.302640 ], [ -162.597656, -79.302640 ], [ -162.597656, -79.204309 ], [ -162.773438, -79.204309 ], [ -162.773438, -79.071812 ], [ -162.949219, -79.071812 ], [ -162.949219, -79.004962 ], [ -159.609375, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -162.949219, -78.206563 ], [ -162.949219, -78.242436 ], [ -162.597656, -78.242436 ], [ -162.597656, -78.278201 ], [ -162.246094, -78.278201 ], [ -162.246094, -78.313860 ], [ -161.894531, -78.313860 ], [ -161.894531, -78.349411 ], [ -161.542969, -78.349411 ], [ -161.542969, -78.384855 ], [ -161.191406, -78.384855 ], [ -161.191406, -78.420193 ], [ -161.015625, -78.420193 ], [ -161.015625, -78.490552 ], [ -160.839844, -78.490552 ], [ -160.839844, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.630006 ], [ -160.488281, -78.630006 ], [ -160.488281, -78.699106 ], [ -160.312500, -78.699106 ], [ -160.312500, -78.733501 ], [ -160.136719, -78.733501 ], [ -160.136719, -78.801980 ], [ -159.960938, -78.801980 ], [ -159.960938, -78.870048 ], [ -159.785156, -78.870048 ], [ -159.785156, -78.937708 ], [ -159.609375, -78.937708 ], [ -159.609375, -79.004962 ], [ -159.433594, -79.004962 ], [ -159.433594, -79.204309 ], [ -159.257812, -79.204309 ], [ -159.257812, -79.335219 ], [ -162.246094, -79.335219 ], [ -162.246094, -79.302640 ], [ -162.421875, -79.302640 ], [ -162.421875, -79.237185 ], [ -162.597656, -79.237185 ], [ -162.597656, -79.105086 ], [ -162.773438, -79.105086 ], [ -162.773438, -79.004962 ], [ -162.949219, -79.004962 ], [ -162.949219, -78.903929 ], [ -163.125000, -78.903929 ], [ -163.125000, -78.836065 ], [ -163.300781, -78.836065 ], [ -163.300781, -78.733501 ], [ -163.476562, -78.733501 ], [ -163.476562, -78.664608 ], [ -163.652344, -78.664608 ], [ -163.652344, -78.560488 ], [ -163.476562, -78.560488 ], [ -163.476562, -78.420193 ], [ -163.300781, -78.420193 ], [ -163.300781, -78.278201 ], [ -163.125000, -78.278201 ], [ -163.125000, -78.206563 ], [ -162.949219, -78.206563 ] ] ], [ [ [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -79.335219 ], [ -150.996094, -79.335219 ], [ -150.996094, -79.302640 ], [ -151.875000, -79.302640 ], [ -151.875000, -79.269962 ], [ -152.402344, -79.269962 ], [ -152.402344, -79.237185 ], [ -152.753906, -79.237185 ], [ -152.753906, -79.204309 ], [ -153.281250, -79.204309 ], [ -153.281250, -79.171335 ], [ -153.808594, -79.171335 ], [ -153.808594, -79.138260 ], [ -154.511719, -79.138260 ], [ -154.511719, -79.105086 ], [ -155.214844, -79.105086 ], [ -155.214844, -79.071812 ], [ -155.390625, -79.071812 ], [ -155.390625, -79.038437 ], [ -155.566406, -79.038437 ], [ -155.566406, -78.903929 ], [ -155.742188, -78.903929 ], [ -155.742188, -78.767792 ], [ -155.917969, -78.767792 ], [ -155.917969, -78.699106 ], [ -156.093750, -78.699106 ], [ -156.093750, -78.664608 ], [ -156.269531, -78.664608 ], [ -156.269531, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.595299 ], [ -156.621094, -78.595299 ], [ -156.621094, -78.525573 ], [ -156.796875, -78.525573 ], [ -156.796875, -78.490552 ], [ -156.972656, -78.490552 ], [ -156.972656, -78.455425 ], [ -157.148438, -78.455425 ], [ -157.148438, -78.420193 ], [ -157.324219, -78.420193 ], [ -157.324219, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.278201 ], [ -157.675781, -78.278201 ], [ -157.675781, -78.170582 ], [ -157.851562, -78.170582 ], [ -157.851562, -78.098296 ], [ -158.027344, -78.098296 ], [ -158.027344, -77.767582 ], [ -158.203125, -77.767582 ], [ -158.203125, -77.196176 ], [ -158.378906, -77.196176 ], [ -158.378906, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.960334 ], [ -158.027344, -76.960334 ], [ -158.027344, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.039418 ], [ -157.675781, -77.039418 ], [ -157.675781, -77.118032 ], [ -157.500000, -77.118032 ], [ -157.500000, -77.157163 ], [ -157.324219, -77.157163 ], [ -157.324219, -77.235074 ], [ -157.148438, -77.235074 ], [ -157.148438, -77.312520 ], [ -156.621094, -77.312520 ], [ -156.621094, -77.273855 ], [ -156.093750, -77.273855 ], [ -156.093750, -77.235074 ], [ -155.566406, -77.235074 ], [ -155.566406, -77.196176 ], [ -155.039062, -77.196176 ], [ -155.039062, -77.157163 ], [ -154.511719, -77.157163 ], [ -154.511719, -77.118032 ], [ -153.984375, -77.118032 ], [ -153.984375, -77.078784 ], [ -153.808594, -77.078784 ], [ -153.808594, -77.157163 ], [ -153.632812, -77.157163 ], [ -153.632812, -77.235074 ], [ -153.457031, -77.235074 ], [ -153.457031, -77.312520 ], [ -153.281250, -77.312520 ], [ -153.281250, -77.389504 ], [ -153.105469, -77.389504 ], [ -153.105469, -77.466028 ], [ -152.929688, -77.466028 ], [ -152.929688, -77.504119 ], [ -152.578125, -77.504119 ], [ -152.578125, -77.466028 ], [ -152.050781, -77.466028 ], [ -152.050781, -77.427824 ], [ -151.523438, -77.427824 ], [ -151.523438, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.351070 ], [ -150.820312, -77.351070 ], [ -150.820312, -77.312520 ], [ -150.468750, -77.312520 ], [ -150.468750, -77.273855 ], [ -150.292969, -77.273855 ], [ -150.292969, -77.235074 ], [ -149.941406, -77.235074 ], [ -149.941406, -77.196176 ], [ -149.765625, -77.196176 ], [ -149.765625, -77.157163 ], [ -149.589844, -77.157163 ], [ -149.589844, -77.118032 ], [ -149.414062, -77.118032 ], [ -149.414062, -77.078784 ], [ -149.238281, -77.078784 ], [ -149.238281, -77.039418 ], [ -149.062500, -77.039418 ], [ -149.062500, -76.999935 ], [ -148.886719, -76.999935 ], [ -148.886719, -76.960334 ], [ -148.710938, -76.960334 ], [ -148.710938, -76.920614 ], [ -148.535156, -76.920614 ], [ -148.535156, -76.840816 ], [ -148.359375, -76.840816 ], [ -148.359375, -76.800739 ], [ -148.183594, -76.800739 ], [ -148.183594, -76.720223 ], [ -148.007812, -76.720223 ], [ -148.007812, -76.679785 ], [ -147.832031, -76.679785 ], [ -147.832031, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.557743 ], [ -147.128906, -76.557743 ], [ -147.128906, -76.516819 ], [ -146.425781, -76.516819 ], [ -146.425781, -76.475773 ], [ -146.074219, -76.475773 ], [ -146.074219, -76.016094 ], [ -146.250000, -76.016094 ], [ -146.250000, -75.845169 ], [ -146.425781, -75.845169 ], [ -146.425781, -75.541113 ], [ -146.250000, -75.541113 ], [ -146.250000, -75.364506 ], [ -145.898438, -75.364506 ], [ -145.898438, -75.320025 ], [ -145.546875, -75.320025 ], [ -145.546875, -75.275413 ], [ -145.195312, -75.275413 ], [ -145.195312, -75.230667 ], [ -144.843750, -75.230667 ], [ -144.843750, -75.275413 ], [ -144.667969, -75.275413 ], [ -144.667969, -75.364506 ], [ -144.492188, -75.364506 ], [ -144.492188, -75.497157 ], [ -144.316406, -75.497157 ], [ -144.316406, -75.541113 ], [ -144.140625, -75.541113 ], [ -144.140625, -75.497157 ], [ -143.789062, -75.497157 ], [ -143.789062, -75.453071 ], [ -143.437500, -75.453071 ], [ -143.437500, -75.408854 ], [ -143.085938, -75.408854 ], [ -143.085938, -75.364506 ], [ -142.734375, -75.364506 ], [ -142.734375, -75.320025 ], [ -142.558594, -75.320025 ], [ -142.558594, -75.275413 ], [ -142.382812, -75.275413 ], [ -142.382812, -75.230667 ], [ -142.031250, -75.230667 ], [ -142.031250, -75.185789 ], [ -141.855469, -75.185789 ], [ -141.855469, -75.140778 ], [ -141.679688, -75.140778 ], [ -141.679688, -75.095633 ], [ -140.800781, -75.095633 ], [ -140.800781, -75.050354 ], [ -139.746094, -75.050354 ], [ -139.746094, -75.004940 ], [ -139.042969, -75.004940 ], [ -139.042969, -74.959392 ], [ -138.691406, -74.959392 ], [ -138.691406, -74.913708 ], [ -138.339844, -74.913708 ], [ -138.339844, -74.867889 ], [ -137.988281, -74.867889 ], [ -137.988281, -74.821934 ], [ -137.812500, -74.821934 ], [ -137.812500, -74.775843 ], [ -137.460938, -74.775843 ], [ -137.460938, -74.729615 ], [ -137.285156, -74.729615 ], [ -137.285156, -74.683250 ], [ -137.109375, -74.683250 ], [ -137.109375, -74.636748 ], [ -136.757812, -74.636748 ], [ -136.757812, -74.590108 ], [ -136.582031, -74.590108 ], [ -136.582031, -74.543330 ], [ -136.406250, -74.543330 ], [ -136.406250, -74.496413 ], [ -136.230469, -74.496413 ], [ -136.230469, -74.449358 ], [ -135.878906, -74.449358 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -162.949219, -78.206563 ], [ -162.949219, -78.242436 ], [ -162.597656, -78.242436 ], [ -162.597656, -78.278201 ], [ -162.070312, -78.278201 ], [ -162.070312, -78.313860 ], [ -161.718750, -78.313860 ], [ -161.718750, -78.349411 ], [ -161.367188, -78.349411 ], [ -161.367188, -78.384855 ], [ -161.191406, -78.384855 ], [ -161.191406, -78.455425 ], [ -161.015625, -78.455425 ], [ -161.015625, -78.490552 ], [ -160.839844, -78.490552 ], [ -160.839844, -78.560488 ], [ -160.664062, -78.560488 ], [ -160.664062, -78.595299 ], [ -160.488281, -78.595299 ], [ -160.488281, -78.664608 ], [ -160.312500, -78.664608 ], [ -160.312500, -78.733501 ], [ -160.136719, -78.733501 ], [ -160.136719, -78.836065 ], [ -159.960938, -78.836065 ], [ -159.960938, -78.903929 ], [ -159.785156, -78.903929 ], [ -159.785156, -79.004962 ], [ -159.609375, -79.004962 ], [ -159.609375, -79.204309 ], [ -159.433594, -79.204309 ], [ -159.433594, -79.335219 ], [ -162.421875, -79.335219 ], [ -162.421875, -79.302640 ], [ -162.597656, -79.302640 ], [ -162.597656, -79.237185 ], [ -162.773438, -79.237185 ], [ -162.773438, -79.105086 ], [ -162.949219, -79.105086 ], [ -162.949219, -78.971386 ], [ -163.125000, -78.971386 ], [ -163.125000, -78.836065 ], [ -163.300781, -78.836065 ], [ -163.300781, -78.767792 ], [ -163.476562, -78.767792 ], [ -163.476562, -78.699106 ], [ -163.652344, -78.699106 ], [ -163.652344, -78.630006 ], [ -163.828125, -78.630006 ], [ -163.828125, -78.560488 ], [ -163.652344, -78.560488 ], [ -163.652344, -78.455425 ], [ -163.476562, -78.455425 ], [ -163.476562, -78.384855 ], [ -163.300781, -78.384855 ], [ -163.300781, -78.278201 ], [ -163.125000, -78.278201 ], [ -163.125000, -78.206563 ], [ -162.949219, -78.206563 ] ] ], [ [ [ -135.175781, -74.259738 ], [ -135.175781, -74.307353 ], [ -134.824219, -74.307353 ], [ -134.824219, -74.354828 ], [ -134.121094, -74.354828 ], [ -134.121094, -79.335219 ], [ -150.820312, -79.335219 ], [ -150.820312, -79.302640 ], [ -151.523438, -79.302640 ], [ -151.523438, -79.269962 ], [ -152.050781, -79.269962 ], [ -152.050781, -79.237185 ], [ -152.402344, -79.237185 ], [ -152.402344, -79.204309 ], [ -152.929688, -79.204309 ], [ -152.929688, -79.171335 ], [ -153.281250, -79.171335 ], [ -153.281250, -79.138260 ], [ -153.808594, -79.138260 ], [ -153.808594, -79.105086 ], [ -154.511719, -79.105086 ], [ -154.511719, -79.071812 ], [ -155.214844, -79.071812 ], [ -155.214844, -79.038437 ], [ -155.390625, -79.038437 ], [ -155.390625, -79.004962 ], [ -155.566406, -79.004962 ], [ -155.566406, -78.903929 ], [ -155.742188, -78.903929 ], [ -155.742188, -78.836065 ], [ -155.917969, -78.836065 ], [ -155.917969, -78.733501 ], [ -156.093750, -78.733501 ], [ -156.093750, -78.664608 ], [ -156.269531, -78.664608 ], [ -156.269531, -78.630006 ], [ -156.445312, -78.630006 ], [ -156.445312, -78.560488 ], [ -156.621094, -78.560488 ], [ -156.621094, -78.525573 ], [ -156.796875, -78.525573 ], [ -156.796875, -78.490552 ], [ -156.972656, -78.490552 ], [ -156.972656, -78.420193 ], [ -157.148438, -78.420193 ], [ -157.148438, -78.384855 ], [ -157.324219, -78.384855 ], [ -157.324219, -78.349411 ], [ -157.500000, -78.349411 ], [ -157.500000, -78.278201 ], [ -157.675781, -78.278201 ], [ -157.675781, -78.206563 ], [ -157.851562, -78.206563 ], [ -157.851562, -78.134493 ], [ -158.027344, -78.134493 ], [ -158.027344, -78.061989 ], [ -158.203125, -78.061989 ], [ -158.203125, -77.466028 ], [ -158.378906, -77.466028 ], [ -158.378906, -76.920614 ], [ -158.203125, -76.920614 ], [ -158.203125, -76.960334 ], [ -158.027344, -76.960334 ], [ -158.027344, -76.999935 ], [ -157.851562, -76.999935 ], [ -157.851562, -77.039418 ], [ -157.675781, -77.039418 ], [ -157.675781, -77.118032 ], [ -157.500000, -77.118032 ], [ -157.500000, -77.157163 ], [ -157.324219, -77.157163 ], [ -157.324219, -77.196176 ], [ -157.148438, -77.196176 ], [ -157.148438, -77.273855 ], [ -156.445312, -77.273855 ], [ -156.445312, -77.235074 ], [ -155.742188, -77.235074 ], [ -155.742188, -77.196176 ], [ -155.039062, -77.196176 ], [ -155.039062, -77.157163 ], [ -154.687500, -77.157163 ], [ -154.687500, -77.118032 ], [ -154.335938, -77.118032 ], [ -154.335938, -77.078784 ], [ -153.984375, -77.078784 ], [ -153.984375, -77.039418 ], [ -153.808594, -77.039418 ], [ -153.808594, -77.118032 ], [ -153.632812, -77.118032 ], [ -153.632812, -77.196176 ], [ -153.457031, -77.196176 ], [ -153.457031, -77.273855 ], [ -153.281250, -77.273855 ], [ -153.281250, -77.351070 ], [ -153.105469, -77.351070 ], [ -153.105469, -77.427824 ], [ -152.929688, -77.427824 ], [ -152.929688, -77.466028 ], [ -152.402344, -77.466028 ], [ -152.402344, -77.427824 ], [ -151.699219, -77.427824 ], [ -151.699219, -77.389504 ], [ -151.171875, -77.389504 ], [ -151.171875, -77.351070 ], [ -150.996094, -77.351070 ], [ -150.996094, -77.312520 ], [ -150.820312, -77.312520 ], [ -150.820312, -77.273855 ], [ -150.468750, -77.273855 ], [ -150.468750, -77.235074 ], [ -150.292969, -77.235074 ], [ -150.292969, -77.196176 ], [ -150.117188, -77.196176 ], [ -150.117188, -77.157163 ], [ -149.941406, -77.157163 ], [ -149.941406, -77.118032 ], [ -149.765625, -77.118032 ], [ -149.765625, -77.078784 ], [ -149.589844, -77.078784 ], [ -149.589844, -77.039418 ], [ -149.414062, -77.039418 ], [ -149.414062, -76.999935 ], [ -149.238281, -76.999935 ], [ -149.238281, -76.960334 ], [ -149.062500, -76.960334 ], [ -149.062500, -76.920614 ], [ -148.886719, -76.920614 ], [ -148.886719, -76.880775 ], [ -148.710938, -76.880775 ], [ -148.710938, -76.840816 ], [ -148.535156, -76.840816 ], [ -148.535156, -76.800739 ], [ -148.359375, -76.800739 ], [ -148.359375, -76.720223 ], [ -148.183594, -76.720223 ], [ -148.183594, -76.679785 ], [ -148.007812, -76.679785 ], [ -148.007812, -76.639226 ], [ -147.832031, -76.639226 ], [ -147.832031, -76.598545 ], [ -147.656250, -76.598545 ], [ -147.656250, -76.557743 ], [ -147.128906, -76.557743 ], [ -147.128906, -76.516819 ], [ -146.425781, -76.516819 ], [ -146.425781, -76.475773 ], [ -146.250000, -76.475773 ], [ -146.250000, -76.016094 ], [ -146.425781, -76.016094 ], [ -146.425781, -75.845169 ], [ -146.601562, -75.845169 ], [ -146.601562, -75.628632 ], [ -146.425781, -75.628632 ], [ -146.425781, -75.453071 ], [ -146.250000, -75.453071 ], [ -146.250000, -75.364506 ], [ -146.074219, -75.364506 ], [ -146.074219, -75.320025 ], [ -145.722656, -75.320025 ], [ -145.722656, -75.275413 ], [ -145.371094, -75.275413 ], [ -145.371094, -75.230667 ], [ -145.019531, -75.230667 ], [ -145.019531, -75.275413 ], [ -144.843750, -75.275413 ], [ -144.843750, -75.364506 ], [ -144.667969, -75.364506 ], [ -144.667969, -75.453071 ], [ -144.492188, -75.453071 ], [ -144.492188, -75.497157 ], [ -144.140625, -75.497157 ], [ -144.140625, -75.453071 ], [ -143.789062, -75.453071 ], [ -143.789062, -75.408854 ], [ -143.437500, -75.408854 ], [ -143.437500, -75.364506 ], [ -143.085938, -75.364506 ], [ -143.085938, -75.320025 ], [ -142.734375, -75.320025 ], [ -142.734375, -75.275413 ], [ -142.558594, -75.275413 ], [ -142.558594, -75.230667 ], [ -142.382812, -75.230667 ], [ -142.382812, -75.185789 ], [ -142.031250, -75.185789 ], [ -142.031250, -75.140778 ], [ -141.855469, -75.140778 ], [ -141.855469, -75.095633 ], [ -141.679688, -75.095633 ], [ -141.679688, -75.050354 ], [ -139.746094, -75.050354 ], [ -139.746094, -75.004940 ], [ -139.042969, -75.004940 ], [ -139.042969, -74.959392 ], [ -138.691406, -74.959392 ], [ -138.691406, -74.913708 ], [ -138.339844, -74.913708 ], [ -138.339844, -74.867889 ], [ -138.164062, -74.867889 ], [ -138.164062, -74.821934 ], [ -137.988281, -74.821934 ], [ -137.988281, -74.775843 ], [ -137.636719, -74.775843 ], [ -137.636719, -74.729615 ], [ -137.460938, -74.729615 ], [ -137.460938, -74.683250 ], [ -137.285156, -74.683250 ], [ -137.285156, -74.636748 ], [ -136.933594, -74.636748 ], [ -136.933594, -74.590108 ], [ -136.757812, -74.590108 ], [ -136.757812, -74.543330 ], [ -136.582031, -74.543330 ], [ -136.582031, -74.496413 ], [ -136.406250, -74.496413 ], [ -136.406250, -74.449358 ], [ -136.054688, -74.449358 ], [ -136.054688, -74.402163 ], [ -135.878906, -74.402163 ], [ -135.878906, -74.354828 ], [ -135.703125, -74.354828 ], [ -135.703125, -74.307353 ], [ -135.351562, -74.307353 ], [ -135.351562, -74.259738 ], [ -135.175781, -74.259738 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.299051 ], [ -180.000000, -16.636192 ], [ -180.175781, -16.636192 ], [ -180.175781, -16.804541 ], [ -180.878906, -16.804541 ], [ -180.878906, -16.467695 ], [ -180.527344, -16.467695 ], [ -180.527344, -16.299051 ], [ -180.175781, -16.299051 ], [ -180.175781, -16.130262 ], [ -180.000000, -16.130262 ], [ -179.824219, -16.130262 ], [ -179.824219, -16.299051 ], [ -180.000000, -16.299051 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.299051 ], [ -180.000000, -16.467695 ], [ -180.175781, -16.467695 ], [ -180.175781, -16.636192 ], [ -180.703125, -16.636192 ], [ -180.703125, -16.804541 ], [ -180.878906, -16.804541 ], [ -180.878906, -16.299051 ], [ -180.351562, -16.299051 ], [ -180.351562, -16.130262 ], [ -180.000000, -16.130262 ], [ -180.000000, -15.961329 ], [ -179.824219, -15.961329 ], [ -179.824219, -16.299051 ], [ -180.000000, -16.299051 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.742188, 20.303418 ], [ -155.742188, 20.138470 ], [ -155.390625, 20.138470 ], [ -155.390625, 19.973349 ], [ -155.214844, 19.973349 ], [ -155.214844, 19.808054 ], [ -155.039062, 19.808054 ], [ -155.039062, 19.642588 ], [ -154.863281, 19.642588 ], [ -154.863281, 19.311143 ], [ -155.214844, 19.311143 ], [ -155.214844, 19.145168 ], [ -155.566406, 19.145168 ], [ -155.566406, 18.979026 ], [ -155.917969, 18.979026 ], [ -155.917969, 19.476950 ], [ -156.093750, 19.476950 ], [ -156.093750, 19.808054 ], [ -155.917969, 19.808054 ], [ -155.917969, 20.303418 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.269531, 20.797201 ], [ -155.917969, 20.797201 ], [ -155.917969, 20.632784 ], [ -156.621094, 20.632784 ], [ -156.621094, 20.797201 ], [ -156.796875, 20.797201 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -157.148438, 21.289374 ], [ -157.148438, 21.125498 ], [ -157.324219, 21.125498 ], [ -157.324219, 21.289374 ], [ -157.148438, 21.289374 ] ] ], [ [ [ -158.027344, 21.616579 ], [ -158.027344, 21.453069 ], [ -157.851562, 21.453069 ], [ -157.851562, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.616579 ], [ -158.027344, 21.616579 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.433594, 22.105999 ], [ -159.257812, 22.105999 ], [ -159.257812, 21.943046 ], [ -159.785156, 21.943046 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.105999 ], [ -159.609375, 22.268764 ], [ -159.433594, 22.268764 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.390625, 20.138470 ], [ -155.390625, 19.973349 ], [ -155.214844, 19.973349 ], [ -155.214844, 19.808054 ], [ -155.039062, 19.808054 ], [ -155.039062, 19.642588 ], [ -154.863281, 19.642588 ], [ -154.863281, 19.476950 ], [ -155.039062, 19.476950 ], [ -155.039062, 19.311143 ], [ -155.390625, 19.311143 ], [ -155.390625, 19.145168 ], [ -155.566406, 19.145168 ], [ -155.566406, 18.979026 ], [ -156.093750, 18.979026 ], [ -156.093750, 19.311143 ], [ -155.917969, 19.311143 ], [ -155.917969, 19.642588 ], [ -156.093750, 19.642588 ], [ -156.093750, 19.973349 ], [ -155.917969, 19.973349 ], [ -155.917969, 20.138470 ], [ -155.390625, 20.138470 ] ] ], [ [ [ -156.269531, 20.961440 ], [ -156.269531, 20.797201 ], [ -156.093750, 20.797201 ], [ -156.093750, 20.632784 ], [ -156.621094, 20.632784 ], [ -156.621094, 20.797201 ], [ -156.796875, 20.797201 ], [ -156.796875, 20.961440 ], [ -156.269531, 20.961440 ] ] ], [ [ [ -156.796875, 21.289374 ], [ -156.796875, 21.125498 ], [ -157.324219, 21.125498 ], [ -157.324219, 21.289374 ], [ -156.796875, 21.289374 ] ] ], [ [ [ -157.851562, 21.616579 ], [ -157.851562, 21.453069 ], [ -157.675781, 21.453069 ], [ -157.675781, 21.289374 ], [ -158.203125, 21.289374 ], [ -158.203125, 21.453069 ], [ -158.378906, 21.453069 ], [ -158.378906, 21.616579 ], [ -157.851562, 21.616579 ] ] ], [ [ [ -159.433594, 22.268764 ], [ -159.433594, 21.943046 ], [ -159.960938, 21.943046 ], [ -159.960938, 22.105999 ], [ -159.785156, 22.105999 ], [ -159.785156, 22.268764 ], [ -159.433594, 22.268764 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.085739 ], [ -134.824219, 59.085739 ], [ -134.824219, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.623325 ], [ -136.054688, 59.623325 ], [ -136.054688, 59.534318 ], [ -136.230469, 59.534318 ], [ -136.230469, 59.445075 ], [ -136.406250, 59.445075 ], [ -136.406250, 59.355596 ], [ -136.582031, 59.355596 ], [ -136.582031, 59.265881 ], [ -136.757812, 59.265881 ], [ -136.757812, 59.175928 ], [ -136.933594, 59.175928 ], [ -136.933594, 59.085739 ], [ -137.109375, 59.085739 ], [ -137.109375, 58.995311 ], [ -137.285156, 58.995311 ], [ -137.285156, 58.904646 ], [ -137.636719, 58.904646 ], [ -137.636719, 59.085739 ], [ -137.812500, 59.085739 ], [ -137.812500, 59.175928 ], [ -137.988281, 59.175928 ], [ -137.988281, 59.265881 ], [ -138.164062, 59.265881 ], [ -138.164062, 59.445075 ], [ -138.339844, 59.445075 ], [ -138.339844, 59.534318 ], [ -138.515625, 59.534318 ], [ -138.515625, 59.623325 ], [ -138.691406, 59.623325 ], [ -138.691406, 59.800634 ], [ -138.867188, 59.800634 ], [ -138.867188, 59.888937 ], [ -139.042969, 59.888937 ], [ -139.042969, 59.977005 ], [ -139.394531, 59.977005 ], [ -139.394531, 60.064840 ], [ -139.746094, 60.064840 ], [ -139.746094, 60.152442 ], [ -140.097656, 60.152442 ], [ -140.097656, 60.239811 ], [ -140.625000, 60.239811 ], [ -140.625000, 60.326948 ], [ -140.976562, 60.326948 ], [ -140.976562, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.265881 ], [ -135.000000, 59.265881 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.878906, 59.712097 ], [ -135.878906, 59.623325 ], [ -136.230469, 59.623325 ], [ -136.230469, 59.534318 ], [ -136.582031, 59.534318 ], [ -136.582031, 59.445075 ], [ -136.757812, 59.445075 ], [ -136.757812, 59.265881 ], [ -136.933594, 59.265881 ], [ -136.933594, 59.175928 ], [ -137.109375, 59.175928 ], [ -137.109375, 59.085739 ], [ -137.285156, 59.085739 ], [ -137.285156, 58.904646 ], [ -137.636719, 58.904646 ], [ -137.636719, 59.085739 ], [ -137.812500, 59.085739 ], [ -137.812500, 59.265881 ], [ -137.988281, 59.265881 ], [ -137.988281, 59.355596 ], [ -138.164062, 59.355596 ], [ -138.164062, 59.534318 ], [ -138.339844, 59.534318 ], [ -138.339844, 59.623325 ], [ -138.515625, 59.623325 ], [ -138.515625, 59.712097 ], [ -138.691406, 59.712097 ], [ -138.691406, 59.888937 ], [ -138.867188, 59.888937 ], [ -138.867188, 59.977005 ], [ -139.042969, 59.977005 ], [ -139.042969, 60.064840 ], [ -139.394531, 60.064840 ], [ -139.394531, 60.152442 ], [ -139.746094, 60.152442 ], [ -139.746094, 60.239811 ], [ -140.097656, 60.239811 ], [ -140.097656, 60.326948 ], [ -141.152344, 60.326948 ], [ -141.152344, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.976562, 66.861082 ], [ -140.976562, 60.326948 ], [ -140.625000, 60.326948 ], [ -140.625000, 60.239811 ], [ -140.097656, 60.239811 ], [ -140.097656, 60.152442 ], [ -139.746094, 60.152442 ], [ -139.746094, 60.064840 ], [ -139.394531, 60.064840 ], [ -139.394531, 59.977005 ], [ -139.042969, 59.977005 ], [ -139.042969, 59.888937 ], [ -138.867188, 59.888937 ], [ -138.867188, 59.800634 ], [ -138.691406, 59.800634 ], [ -138.691406, 59.623325 ], [ -138.515625, 59.623325 ], [ -138.515625, 59.534318 ], [ -138.339844, 59.534318 ], [ -138.339844, 59.445075 ], [ -138.164062, 59.445075 ], [ -138.164062, 59.265881 ], [ -137.988281, 59.265881 ], [ -137.988281, 59.175928 ], [ -137.812500, 59.175928 ], [ -137.812500, 59.085739 ], [ -137.636719, 59.085739 ], [ -137.636719, 58.904646 ], [ -137.285156, 58.904646 ], [ -137.285156, 58.995311 ], [ -137.109375, 58.995311 ], [ -137.109375, 59.085739 ], [ -136.933594, 59.085739 ], [ -136.933594, 59.175928 ], [ -136.757812, 59.175928 ], [ -136.757812, 59.265881 ], [ -136.582031, 59.265881 ], [ -136.582031, 59.355596 ], [ -136.406250, 59.355596 ], [ -136.406250, 59.445075 ], [ -136.230469, 59.445075 ], [ -136.230469, 59.534318 ], [ -136.054688, 59.534318 ], [ -136.054688, 59.623325 ], [ -135.703125, 59.623325 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.085739 ], [ -134.648438, 59.085739 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.170702 ], [ -136.757812, 58.170702 ], [ -136.757812, 58.263287 ], [ -137.109375, 58.263287 ], [ -137.109375, 58.355630 ], [ -137.460938, 58.355630 ], [ -137.460938, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.539595 ], [ -137.988281, 58.539595 ], [ -137.988281, 58.631217 ], [ -138.164062, 58.631217 ], [ -138.164062, 58.722599 ], [ -138.339844, 58.722599 ], [ -138.339844, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 58.904646 ], [ -138.691406, 58.904646 ], [ -138.691406, 58.995311 ], [ -139.042969, 58.995311 ], [ -139.042969, 59.085739 ], [ -139.218750, 59.085739 ], [ -139.218750, 59.175928 ], [ -139.394531, 59.175928 ], [ -139.394531, 59.265881 ], [ -139.570312, 59.265881 ], [ -139.570312, 59.355596 ], [ -139.746094, 59.355596 ], [ -139.746094, 59.445075 ], [ -139.921875, 59.445075 ], [ -139.921875, 59.534318 ], [ -140.273438, 59.534318 ], [ -140.273438, 59.623325 ], [ -140.625000, 59.623325 ], [ -140.625000, 59.712097 ], [ -141.152344, 59.712097 ], [ -141.152344, 59.800634 ], [ -141.503906, 59.800634 ], [ -141.503906, 59.888937 ], [ -142.031250, 59.888937 ], [ -142.031250, 59.977005 ], [ -142.382812, 59.977005 ], [ -142.382812, 60.064840 ], [ -143.085938, 60.064840 ], [ -143.085938, 59.977005 ], [ -144.140625, 59.977005 ], [ -144.140625, 60.064840 ], [ -144.492188, 60.064840 ], [ -144.492188, 60.152442 ], [ -144.843750, 60.152442 ], [ -144.843750, 60.239811 ], [ -145.195312, 60.239811 ], [ -145.195312, 60.326948 ], [ -145.546875, 60.326948 ], [ -145.546875, 60.413852 ], [ -145.898438, 60.413852 ], [ -145.898438, 60.500525 ], [ -146.074219, 60.500525 ], [ -146.074219, 60.586967 ], [ -146.425781, 60.586967 ], [ -146.425781, 60.673179 ], [ -146.777344, 60.673179 ], [ -146.777344, 60.759160 ], [ -147.128906, 60.759160 ], [ -147.128906, 60.844911 ], [ -147.304688, 60.844911 ], [ -147.304688, 60.759160 ], [ -147.832031, 60.759160 ], [ -147.832031, 60.673179 ], [ -148.183594, 60.673179 ], [ -148.183594, 60.326948 ], [ -148.007812, 60.326948 ], [ -148.007812, 59.977005 ], [ -148.183594, 59.977005 ], [ -148.183594, 59.888937 ], [ -148.710938, 59.888937 ], [ -148.710938, 59.800634 ], [ -149.414062, 59.800634 ], [ -149.414062, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.623325 ], [ -149.941406, 59.623325 ], [ -149.941406, 59.534318 ], [ -150.292969, 59.534318 ], [ -150.292969, 59.445075 ], [ -150.468750, 59.445075 ], [ -150.468750, 59.355596 ], [ -150.820312, 59.355596 ], [ -150.820312, 59.265881 ], [ -151.347656, 59.265881 ], [ -151.347656, 59.175928 ], [ -151.699219, 59.175928 ], [ -151.699219, 59.445075 ], [ -151.875000, 59.445075 ], [ -151.875000, 59.888937 ], [ -151.699219, 59.888937 ], [ -151.699219, 60.239811 ], [ -151.523438, 60.239811 ], [ -151.523438, 60.586967 ], [ -151.347656, 60.586967 ], [ -151.347656, 60.759160 ], [ -150.996094, 60.759160 ], [ -150.996094, 60.844911 ], [ -150.644531, 60.844911 ], [ -150.644531, 60.930432 ], [ -150.292969, 60.930432 ], [ -150.292969, 61.015725 ], [ -150.468750, 61.015725 ], [ -150.468750, 61.185625 ], [ -150.820312, 61.185625 ], [ -150.820312, 61.100789 ], [ -150.996094, 61.100789 ], [ -150.996094, 61.015725 ], [ -151.347656, 61.015725 ], [ -151.347656, 60.930432 ], [ -151.523438, 60.930432 ], [ -151.523438, 60.844911 ], [ -151.699219, 60.844911 ], [ -151.699219, 60.759160 ], [ -151.875000, 60.759160 ], [ -151.875000, 60.673179 ], [ -152.050781, 60.673179 ], [ -152.050781, 60.500525 ], [ -152.226562, 60.500525 ], [ -152.226562, 60.326948 ], [ -152.402344, 60.326948 ], [ -152.402344, 60.152442 ], [ -152.578125, 60.152442 ], [ -152.578125, 59.977005 ], [ -152.753906, 59.977005 ], [ -152.753906, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.800634 ], [ -153.105469, 59.800634 ], [ -153.105469, 59.712097 ], [ -153.281250, 59.712097 ], [ -153.281250, 59.623325 ], [ -153.457031, 59.623325 ], [ -153.457031, 59.534318 ], [ -153.632812, 59.534318 ], [ -153.632812, 59.445075 ], [ -153.808594, 59.445075 ], [ -153.808594, 59.355596 ], [ -153.984375, 59.355596 ], [ -153.984375, 59.265881 ], [ -153.808594, 59.265881 ], [ -153.808594, 59.175928 ], [ -153.632812, 59.175928 ], [ -153.632812, 58.995311 ], [ -153.457031, 58.995311 ], [ -153.457031, 58.904646 ], [ -153.281250, 58.904646 ], [ -153.281250, 58.813742 ], [ -153.457031, 58.813742 ], [ -153.457031, 58.631217 ], [ -153.632812, 58.631217 ], [ -153.632812, 58.539595 ], [ -153.808594, 58.539595 ], [ -153.808594, 58.355630 ], [ -153.984375, 58.355630 ], [ -153.984375, 58.170702 ], [ -154.160156, 58.170702 ], [ -154.160156, 58.077876 ], [ -154.511719, 58.077876 ], [ -154.511719, 57.984808 ], [ -154.687500, 57.984808 ], [ -154.687500, 57.891497 ], [ -154.863281, 57.891497 ], [ -154.863281, 57.797944 ], [ -155.214844, 57.797944 ], [ -155.214844, 57.704147 ], [ -155.390625, 57.704147 ], [ -155.390625, 57.610107 ], [ -155.742188, 57.610107 ], [ -155.742188, 57.515823 ], [ -156.093750, 57.515823 ], [ -156.093750, 57.421294 ], [ -156.269531, 57.421294 ], [ -156.269531, 57.231503 ], [ -156.445312, 57.231503 ], [ -156.445312, 57.040730 ], [ -156.621094, 57.040730 ], [ -156.621094, 56.848972 ], [ -156.972656, 56.848972 ], [ -156.972656, 56.752723 ], [ -157.324219, 56.752723 ], [ -157.324219, 56.656226 ], [ -157.675781, 56.656226 ], [ -157.675781, 56.559482 ], [ -158.027344, 56.559482 ], [ -158.027344, 56.462490 ], [ -158.203125, 56.462490 ], [ -158.203125, 56.170023 ], [ -158.378906, 56.170023 ], [ -158.378906, 55.875311 ], [ -158.730469, 55.875311 ], [ -158.730469, 55.776573 ], [ -159.082031, 55.776573 ], [ -159.082031, 55.677584 ], [ -159.433594, 55.677584 ], [ -159.433594, 55.578345 ], [ -160.136719, 55.578345 ], [ -160.136719, 55.677584 ], [ -160.312500, 55.677584 ], [ -160.312500, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.478853 ], [ -161.015625, 55.478853 ], [ -161.015625, 55.379110 ], [ -161.191406, 55.379110 ], [ -161.191406, 55.279115 ], [ -161.542969, 55.279115 ], [ -161.542969, 55.178868 ], [ -161.718750, 55.178868 ], [ -161.718750, 55.078367 ], [ -162.070312, 55.078367 ], [ -162.070312, 54.977614 ], [ -162.246094, 54.977614 ], [ -162.246094, 54.876607 ], [ -162.597656, 54.876607 ], [ -162.597656, 54.775346 ], [ -162.949219, 54.775346 ], [ -162.949219, 54.673831 ], [ -163.300781, 54.673831 ], [ -163.300781, 54.572062 ], [ -163.828125, 54.572062 ], [ -163.828125, 54.470038 ], [ -164.355469, 54.470038 ], [ -164.355469, 54.367759 ], [ -164.707031, 54.367759 ], [ -164.707031, 54.470038 ], [ -164.882812, 54.470038 ], [ -164.882812, 54.572062 ], [ -164.707031, 54.572062 ], [ -164.707031, 54.673831 ], [ -164.531250, 54.673831 ], [ -164.531250, 54.775346 ], [ -164.179688, 54.775346 ], [ -164.179688, 54.876607 ], [ -164.003906, 54.876607 ], [ -164.003906, 54.977614 ], [ -163.828125, 54.977614 ], [ -163.828125, 55.078367 ], [ -163.652344, 55.078367 ], [ -163.652344, 55.178868 ], [ -163.300781, 55.178868 ], [ -163.300781, 55.279115 ], [ -162.949219, 55.279115 ], [ -162.949219, 55.379110 ], [ -162.773438, 55.379110 ], [ -162.773438, 55.478853 ], [ -162.421875, 55.478853 ], [ -162.421875, 55.578345 ], [ -162.246094, 55.578345 ], [ -162.246094, 55.677584 ], [ -162.070312, 55.677584 ], [ -162.070312, 55.776573 ], [ -161.718750, 55.776573 ], [ -161.718750, 55.875311 ], [ -161.015625, 55.875311 ], [ -161.015625, 55.973798 ], [ -160.488281, 55.973798 ], [ -160.488281, 56.072035 ], [ -160.312500, 56.072035 ], [ -160.312500, 56.267761 ], [ -160.136719, 56.267761 ], [ -160.136719, 56.462490 ], [ -159.960938, 56.462490 ], [ -159.960938, 56.559482 ], [ -159.609375, 56.559482 ], [ -159.609375, 56.656226 ], [ -159.433594, 56.656226 ], [ -159.433594, 56.752723 ], [ -159.257812, 56.752723 ], [ -159.257812, 56.848972 ], [ -158.906250, 56.848972 ], [ -158.906250, 56.944974 ], [ -158.730469, 56.944974 ], [ -158.730469, 57.040730 ], [ -158.554688, 57.040730 ], [ -158.554688, 57.136239 ], [ -158.378906, 57.136239 ], [ -158.378906, 57.231503 ], [ -158.203125, 57.231503 ], [ -158.203125, 57.326521 ], [ -158.027344, 57.326521 ], [ -158.027344, 57.421294 ], [ -157.851562, 57.421294 ], [ -157.851562, 57.515823 ], [ -157.675781, 57.515823 ], [ -157.675781, 57.984808 ], [ -157.500000, 57.984808 ], [ -157.500000, 58.447733 ], [ -157.324219, 58.447733 ], [ -157.324219, 58.631217 ], [ -157.148438, 58.631217 ], [ -157.148438, 58.813742 ], [ -157.500000, 58.813742 ], [ -157.500000, 58.722599 ], [ -157.851562, 58.722599 ], [ -157.851562, 58.631217 ], [ -158.378906, 58.631217 ], [ -158.378906, 58.722599 ], [ -158.730469, 58.722599 ], [ -158.730469, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.539595 ], [ -159.433594, 58.539595 ], [ -159.433594, 58.722599 ], [ -159.609375, 58.722599 ], [ -159.609375, 58.813742 ], [ -159.785156, 58.813742 ], [ -159.785156, 58.722599 ], [ -159.960938, 58.722599 ], [ -159.960938, 58.631217 ], [ -160.136719, 58.631217 ], [ -160.136719, 58.904646 ], [ -160.312500, 58.904646 ], [ -160.312500, 58.995311 ], [ -160.488281, 58.995311 ], [ -160.488281, 58.904646 ], [ -160.664062, 58.904646 ], [ -160.664062, 58.813742 ], [ -161.015625, 58.813742 ], [ -161.015625, 58.722599 ], [ -161.191406, 58.722599 ], [ -161.191406, 58.631217 ], [ -161.894531, 58.631217 ], [ -161.894531, 58.904646 ], [ -162.070312, 58.904646 ], [ -162.070312, 59.445075 ], [ -161.894531, 59.445075 ], [ -161.894531, 59.623325 ], [ -162.070312, 59.623325 ], [ -162.070312, 59.712097 ], [ -162.246094, 59.712097 ], [ -162.246094, 59.800634 ], [ -162.421875, 59.800634 ], [ -162.421875, 59.888937 ], [ -162.597656, 59.888937 ], [ -162.597656, 59.977005 ], [ -162.773438, 59.977005 ], [ -162.773438, 59.888937 ], [ -163.476562, 59.888937 ], [ -163.476562, 59.800634 ], [ -164.003906, 59.800634 ], [ -164.003906, 59.888937 ], [ -164.179688, 59.888937 ], [ -164.179688, 59.977005 ], [ -164.355469, 59.977005 ], [ -164.355469, 60.064840 ], [ -164.531250, 60.064840 ], [ -164.531250, 60.152442 ], [ -164.707031, 60.152442 ], [ -164.707031, 60.239811 ], [ -164.882812, 60.239811 ], [ -164.882812, 60.326948 ], [ -165.234375, 60.326948 ], [ -165.234375, 60.413852 ], [ -165.410156, 60.413852 ], [ -165.410156, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.185625 ], [ -165.761719, 61.185625 ], [ -165.761719, 61.354614 ], [ -165.937500, 61.354614 ], [ -165.937500, 61.438767 ], [ -166.113281, 61.438767 ], [ -166.113281, 61.606396 ], [ -165.937500, 61.606396 ], [ -165.937500, 61.938950 ], [ -165.761719, 61.938950 ], [ -165.761719, 62.103883 ], [ -165.585938, 62.103883 ], [ -165.585938, 62.186014 ], [ -165.410156, 62.186014 ], [ -165.410156, 62.349609 ], [ -165.234375, 62.349609 ], [ -165.234375, 62.431074 ], [ -165.058594, 62.431074 ], [ -165.058594, 62.512318 ], [ -164.882812, 62.512318 ], [ -164.882812, 62.674143 ], [ -164.707031, 62.674143 ], [ -164.707031, 62.995158 ], [ -164.531250, 62.995158 ], [ -164.531250, 63.154355 ], [ -164.003906, 63.154355 ], [ -164.003906, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 63.154355 ], [ -163.476562, 63.154355 ], [ -163.476562, 63.074866 ], [ -162.949219, 63.074866 ], [ -162.949219, 63.154355 ], [ -162.773438, 63.154355 ], [ -162.773438, 63.312683 ], [ -162.597656, 63.312683 ], [ -162.597656, 63.391522 ], [ -162.421875, 63.391522 ], [ -162.421875, 63.470145 ], [ -162.246094, 63.470145 ], [ -162.246094, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.470145 ], [ -161.367188, 63.470145 ], [ -161.367188, 63.548552 ], [ -161.191406, 63.548552 ], [ -161.191406, 63.626745 ], [ -161.015625, 63.626745 ], [ -161.015625, 63.704722 ], [ -160.839844, 63.704722 ], [ -160.839844, 64.014496 ], [ -161.015625, 64.014496 ], [ -161.015625, 64.244595 ], [ -161.191406, 64.244595 ], [ -161.191406, 64.320872 ], [ -161.542969, 64.320872 ], [ -161.542969, 64.396938 ], [ -161.367188, 64.396938 ], [ -161.367188, 64.472794 ], [ -161.191406, 64.472794 ], [ -161.191406, 64.623877 ], [ -161.015625, 64.623877 ], [ -161.015625, 64.699105 ], [ -160.839844, 64.699105 ], [ -160.839844, 64.774125 ], [ -161.367188, 64.774125 ], [ -161.367188, 64.699105 ], [ -161.718750, 64.699105 ], [ -161.718750, 64.623877 ], [ -162.070312, 64.623877 ], [ -162.070312, 64.548440 ], [ -162.421875, 64.548440 ], [ -162.421875, 64.472794 ], [ -162.597656, 64.472794 ], [ -162.597656, 64.320872 ], [ -162.949219, 64.320872 ], [ -162.949219, 64.396938 ], [ -163.300781, 64.396938 ], [ -163.300781, 64.472794 ], [ -163.476562, 64.472794 ], [ -163.476562, 64.548440 ], [ -164.003906, 64.548440 ], [ -164.003906, 64.472794 ], [ -165.234375, 64.472794 ], [ -165.234375, 64.548440 ], [ -165.761719, 64.548440 ], [ -165.761719, 64.623877 ], [ -166.289062, 64.623877 ], [ -166.289062, 64.699105 ], [ -166.464844, 64.699105 ], [ -166.464844, 64.774125 ], [ -166.640625, 64.774125 ], [ -166.640625, 64.923542 ], [ -166.816406, 64.923542 ], [ -166.816406, 65.072130 ], [ -166.992188, 65.072130 ], [ -166.992188, 65.146115 ], [ -167.167969, 65.146115 ], [ -167.167969, 65.219894 ], [ -167.343750, 65.219894 ], [ -167.343750, 65.366837 ], [ -167.519531, 65.366837 ], [ -167.519531, 65.440002 ], [ -167.695312, 65.440002 ], [ -167.695312, 65.512963 ], [ -167.871094, 65.512963 ], [ -167.871094, 65.585720 ], [ -168.046875, 65.585720 ], [ -168.046875, 65.658275 ], [ -167.871094, 65.658275 ], [ -167.871094, 65.730626 ], [ -167.519531, 65.730626 ], [ -167.519531, 65.802776 ], [ -167.343750, 65.802776 ], [ -167.343750, 65.874725 ], [ -167.167969, 65.874725 ], [ -167.167969, 65.946472 ], [ -166.816406, 65.946472 ], [ -166.816406, 66.018018 ], [ -166.640625, 66.018018 ], [ -166.640625, 66.089364 ], [ -166.464844, 66.089364 ], [ -166.464844, 66.160511 ], [ -166.113281, 66.160511 ], [ -166.113281, 66.231457 ], [ -165.761719, 66.231457 ], [ -165.761719, 66.302205 ], [ -165.410156, 66.302205 ], [ -165.410156, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.652344, 66.302205 ], [ -163.828125, 66.302205 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -161.718750, 66.160511 ], [ -161.894531, 66.160511 ], [ -161.894531, 66.302205 ], [ -162.070312, 66.302205 ], [ -162.070312, 66.443107 ], [ -162.246094, 66.443107 ], [ -162.246094, 66.583217 ], [ -162.421875, 66.583217 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.949219, 66.791909 ], [ -162.949219, 66.861082 ], [ -140.976562, 66.861082 ] ], [ [ -157.148438, 58.904646 ], [ -157.148438, 58.813742 ], [ -156.972656, 58.813742 ], [ -156.972656, 58.904646 ], [ -157.148438, 58.904646 ] ] ], [ [ [ -153.105469, 57.984808 ], [ -153.105469, 57.891497 ], [ -152.578125, 57.891497 ], [ -152.578125, 57.797944 ], [ -152.402344, 57.797944 ], [ -152.402344, 57.610107 ], [ -152.226562, 57.610107 ], [ -152.226562, 57.515823 ], [ -152.402344, 57.515823 ], [ -152.402344, 57.421294 ], [ -152.578125, 57.421294 ], [ -152.578125, 57.231503 ], [ -152.753906, 57.231503 ], [ -152.753906, 57.136239 ], [ -152.929688, 57.136239 ], [ -152.929688, 57.040730 ], [ -153.281250, 57.040730 ], [ -153.281250, 56.944974 ], [ -153.457031, 56.944974 ], [ -153.457031, 56.848972 ], [ -153.808594, 56.848972 ], [ -153.808594, 56.752723 ], [ -154.160156, 56.752723 ], [ -154.160156, 56.848972 ], [ -154.511719, 56.848972 ], [ -154.511719, 57.136239 ], [ -154.687500, 57.136239 ], [ -154.687500, 57.421294 ], [ -154.511719, 57.421294 ], [ -154.511719, 57.515823 ], [ -154.335938, 57.515823 ], [ -154.335938, 57.610107 ], [ -153.984375, 57.610107 ], [ -153.984375, 57.704147 ], [ -153.808594, 57.704147 ], [ -153.808594, 57.797944 ], [ -153.632812, 57.797944 ], [ -153.632812, 57.891497 ], [ -153.281250, 57.891497 ], [ -153.281250, 57.984808 ], [ -153.105469, 57.984808 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -170.507812, 63.626745 ], [ -170.156250, 63.626745 ], [ -170.156250, 63.548552 ], [ -169.804688, 63.548552 ], [ -169.804688, 63.470145 ], [ -169.453125, 63.470145 ], [ -169.453125, 63.391522 ], [ -169.101562, 63.391522 ], [ -169.101562, 63.312683 ], [ -168.750000, 63.312683 ], [ -168.750000, 63.074866 ], [ -169.101562, 63.074866 ], [ -169.101562, 62.995158 ], [ -169.628906, 62.995158 ], [ -169.628906, 63.074866 ], [ -169.980469, 63.074866 ], [ -169.980469, 63.154355 ], [ -170.332031, 63.154355 ], [ -170.332031, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.312683 ], [ -170.683594, 63.312683 ], [ -170.683594, 63.391522 ], [ -171.035156, 63.391522 ], [ -171.035156, 63.312683 ], [ -171.738281, 63.312683 ], [ -171.738281, 63.704722 ], [ -171.386719, 63.704722 ], [ -171.386719, 63.626745 ], [ -170.683594, 63.626745 ], [ -170.683594, 63.704722 ], [ -170.507812, 63.704722 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.326948 ], [ -165.761719, 60.326948 ], [ -165.761719, 60.064840 ], [ -165.585938, 60.064840 ], [ -165.585938, 59.800634 ], [ -165.937500, 59.800634 ], [ -165.937500, 59.712097 ], [ -166.289062, 59.712097 ], [ -166.289062, 59.800634 ], [ -166.640625, 59.800634 ], [ -166.640625, 59.888937 ], [ -166.816406, 59.888937 ], [ -166.816406, 59.977005 ], [ -166.992188, 59.977005 ], [ -166.992188, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.152442 ], [ -167.519531, 60.152442 ], [ -167.519531, 60.239811 ], [ -167.167969, 60.239811 ], [ -167.167969, 60.326948 ], [ -166.640625, 60.326948 ], [ -166.640625, 60.413852 ], [ -166.289062, 60.413852 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -141.152344, 66.861082 ], [ -141.152344, 60.326948 ], [ -140.097656, 60.326948 ], [ -140.097656, 60.239811 ], [ -139.746094, 60.239811 ], [ -139.746094, 60.152442 ], [ -139.394531, 60.152442 ], [ -139.394531, 60.064840 ], [ -139.042969, 60.064840 ], [ -139.042969, 59.977005 ], [ -138.867188, 59.977005 ], [ -138.867188, 59.888937 ], [ -138.691406, 59.888937 ], [ -138.691406, 59.712097 ], [ -138.515625, 59.712097 ], [ -138.515625, 59.623325 ], [ -138.339844, 59.623325 ], [ -138.339844, 59.534318 ], [ -138.164062, 59.534318 ], [ -138.164062, 59.355596 ], [ -137.988281, 59.355596 ], [ -137.988281, 59.265881 ], [ -137.812500, 59.265881 ], [ -137.812500, 59.085739 ], [ -137.636719, 59.085739 ], [ -137.636719, 58.904646 ], [ -137.285156, 58.904646 ], [ -137.285156, 59.085739 ], [ -137.109375, 59.085739 ], [ -137.109375, 59.175928 ], [ -136.933594, 59.175928 ], [ -136.933594, 59.265881 ], [ -136.757812, 59.265881 ], [ -136.757812, 59.445075 ], [ -136.582031, 59.445075 ], [ -136.582031, 59.534318 ], [ -136.230469, 59.534318 ], [ -136.230469, 59.623325 ], [ -135.878906, 59.623325 ], [ -135.878906, 59.712097 ], [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.265881 ], [ -134.824219, 59.265881 ], [ -134.824219, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.170702 ], [ -134.824219, 58.170702 ], [ -134.824219, 58.263287 ], [ -137.109375, 58.263287 ], [ -137.109375, 58.355630 ], [ -137.460938, 58.355630 ], [ -137.460938, 58.447733 ], [ -137.812500, 58.447733 ], [ -137.812500, 58.539595 ], [ -137.988281, 58.539595 ], [ -137.988281, 58.631217 ], [ -138.164062, 58.631217 ], [ -138.164062, 58.722599 ], [ -138.339844, 58.722599 ], [ -138.339844, 58.813742 ], [ -138.515625, 58.813742 ], [ -138.515625, 58.904646 ], [ -138.691406, 58.904646 ], [ -138.691406, 58.995311 ], [ -138.867188, 58.995311 ], [ -138.867188, 59.085739 ], [ -139.042969, 59.085739 ], [ -139.042969, 59.175928 ], [ -139.218750, 59.175928 ], [ -139.218750, 59.265881 ], [ -139.394531, 59.265881 ], [ -139.394531, 59.355596 ], [ -139.570312, 59.355596 ], [ -139.570312, 59.445075 ], [ -139.746094, 59.445075 ], [ -139.746094, 59.534318 ], [ -139.921875, 59.534318 ], [ -139.921875, 59.623325 ], [ -140.273438, 59.623325 ], [ -140.273438, 59.712097 ], [ -140.800781, 59.712097 ], [ -140.800781, 59.800634 ], [ -141.328125, 59.800634 ], [ -141.328125, 59.888937 ], [ -141.679688, 59.888937 ], [ -141.679688, 59.977005 ], [ -142.207031, 59.977005 ], [ -142.207031, 60.064840 ], [ -142.558594, 60.064840 ], [ -142.558594, 60.152442 ], [ -143.261719, 60.152442 ], [ -143.261719, 60.064840 ], [ -144.316406, 60.064840 ], [ -144.316406, 60.152442 ], [ -144.667969, 60.152442 ], [ -144.667969, 60.239811 ], [ -145.195312, 60.239811 ], [ -145.195312, 60.326948 ], [ -145.546875, 60.326948 ], [ -145.546875, 60.413852 ], [ -145.898438, 60.413852 ], [ -145.898438, 60.500525 ], [ -146.250000, 60.500525 ], [ -146.250000, 60.586967 ], [ -146.425781, 60.586967 ], [ -146.425781, 60.673179 ], [ -146.777344, 60.673179 ], [ -146.777344, 60.759160 ], [ -146.953125, 60.759160 ], [ -146.953125, 60.844911 ], [ -147.128906, 60.844911 ], [ -147.128906, 60.930432 ], [ -147.304688, 60.930432 ], [ -147.304688, 60.844911 ], [ -147.656250, 60.844911 ], [ -147.656250, 60.759160 ], [ -148.007812, 60.759160 ], [ -148.007812, 60.673179 ], [ -148.359375, 60.673179 ], [ -148.359375, 60.326948 ], [ -148.183594, 60.326948 ], [ -148.183594, 59.977005 ], [ -148.710938, 59.977005 ], [ -148.710938, 59.888937 ], [ -149.062500, 59.888937 ], [ -149.062500, 59.800634 ], [ -149.414062, 59.800634 ], [ -149.414062, 59.712097 ], [ -149.765625, 59.712097 ], [ -149.765625, 59.623325 ], [ -150.117188, 59.623325 ], [ -150.117188, 59.534318 ], [ -150.468750, 59.534318 ], [ -150.468750, 59.445075 ], [ -150.820312, 59.445075 ], [ -150.820312, 59.355596 ], [ -151.171875, 59.355596 ], [ -151.171875, 59.265881 ], [ -151.523438, 59.265881 ], [ -151.523438, 59.175928 ], [ -151.875000, 59.175928 ], [ -151.875000, 59.977005 ], [ -151.699219, 59.977005 ], [ -151.699219, 60.500525 ], [ -151.523438, 60.500525 ], [ -151.523438, 60.759160 ], [ -151.347656, 60.759160 ], [ -151.347656, 60.844911 ], [ -150.996094, 60.844911 ], [ -150.996094, 60.930432 ], [ -150.820312, 60.930432 ], [ -150.820312, 61.015725 ], [ -150.468750, 61.015725 ], [ -150.468750, 61.185625 ], [ -150.644531, 61.185625 ], [ -150.644531, 61.270233 ], [ -150.820312, 61.270233 ], [ -150.820312, 61.185625 ], [ -150.996094, 61.185625 ], [ -150.996094, 61.100789 ], [ -151.171875, 61.100789 ], [ -151.171875, 61.015725 ], [ -151.523438, 61.015725 ], [ -151.523438, 60.930432 ], [ -151.699219, 60.930432 ], [ -151.699219, 60.844911 ], [ -151.875000, 60.844911 ], [ -151.875000, 60.759160 ], [ -152.050781, 60.759160 ], [ -152.050781, 60.586967 ], [ -152.226562, 60.586967 ], [ -152.226562, 60.413852 ], [ -152.402344, 60.413852 ], [ -152.402344, 60.152442 ], [ -152.578125, 60.152442 ], [ -152.578125, 59.977005 ], [ -152.753906, 59.977005 ], [ -152.753906, 59.888937 ], [ -152.929688, 59.888937 ], [ -152.929688, 59.800634 ], [ -153.105469, 59.800634 ], [ -153.105469, 59.712097 ], [ -153.457031, 59.712097 ], [ -153.457031, 59.623325 ], [ -153.632812, 59.623325 ], [ -153.632812, 59.534318 ], [ -153.808594, 59.534318 ], [ -153.808594, 59.445075 ], [ -153.984375, 59.445075 ], [ -153.984375, 59.355596 ], [ -154.160156, 59.355596 ], [ -154.160156, 59.265881 ], [ -153.984375, 59.265881 ], [ -153.984375, 59.175928 ], [ -153.808594, 59.175928 ], [ -153.808594, 58.995311 ], [ -153.632812, 58.995311 ], [ -153.632812, 58.904646 ], [ -153.457031, 58.904646 ], [ -153.457031, 58.813742 ], [ -153.632812, 58.813742 ], [ -153.632812, 58.631217 ], [ -153.808594, 58.631217 ], [ -153.808594, 58.539595 ], [ -153.984375, 58.539595 ], [ -153.984375, 58.355630 ], [ -154.160156, 58.355630 ], [ -154.160156, 58.170702 ], [ -154.335938, 58.170702 ], [ -154.335938, 58.077876 ], [ -154.687500, 58.077876 ], [ -154.687500, 57.984808 ], [ -154.863281, 57.984808 ], [ -154.863281, 57.891497 ], [ -155.214844, 57.891497 ], [ -155.214844, 57.797944 ], [ -155.390625, 57.797944 ], [ -155.390625, 57.704147 ], [ -155.742188, 57.704147 ], [ -155.742188, 57.610107 ], [ -156.093750, 57.610107 ], [ -156.093750, 57.515823 ], [ -156.445312, 57.515823 ], [ -156.445312, 57.231503 ], [ -156.621094, 57.231503 ], [ -156.621094, 56.944974 ], [ -156.972656, 56.944974 ], [ -156.972656, 56.848972 ], [ -157.148438, 56.848972 ], [ -157.148438, 56.752723 ], [ -157.500000, 56.752723 ], [ -157.500000, 56.656226 ], [ -157.675781, 56.656226 ], [ -157.675781, 56.559482 ], [ -158.027344, 56.559482 ], [ -158.027344, 56.462490 ], [ -158.203125, 56.462490 ], [ -158.203125, 56.365250 ], [ -158.378906, 56.365250 ], [ -158.378906, 56.170023 ], [ -158.554688, 56.170023 ], [ -158.554688, 55.973798 ], [ -158.730469, 55.973798 ], [ -158.730469, 55.875311 ], [ -158.906250, 55.875311 ], [ -158.906250, 55.776573 ], [ -159.257812, 55.776573 ], [ -159.257812, 55.677584 ], [ -159.433594, 55.677584 ], [ -159.433594, 55.578345 ], [ -160.136719, 55.578345 ], [ -160.136719, 55.677584 ], [ -160.312500, 55.677584 ], [ -160.312500, 55.578345 ], [ -160.664062, 55.578345 ], [ -160.664062, 55.478853 ], [ -161.015625, 55.478853 ], [ -161.015625, 55.379110 ], [ -161.367188, 55.379110 ], [ -161.367188, 55.279115 ], [ -161.718750, 55.279115 ], [ -161.718750, 55.178868 ], [ -162.070312, 55.178868 ], [ -162.070312, 55.078367 ], [ -162.246094, 55.078367 ], [ -162.246094, 54.977614 ], [ -162.597656, 54.977614 ], [ -162.597656, 54.876607 ], [ -162.949219, 54.876607 ], [ -162.949219, 54.775346 ], [ -163.300781, 54.775346 ], [ -163.300781, 54.673831 ], [ -163.828125, 54.673831 ], [ -163.828125, 54.572062 ], [ -164.531250, 54.572062 ], [ -164.531250, 54.470038 ], [ -165.058594, 54.470038 ], [ -165.058594, 54.572062 ], [ -164.882812, 54.572062 ], [ -164.882812, 54.673831 ], [ -164.707031, 54.673831 ], [ -164.707031, 54.775346 ], [ -164.355469, 54.775346 ], [ -164.355469, 54.876607 ], [ -164.179688, 54.876607 ], [ -164.179688, 54.977614 ], [ -164.003906, 54.977614 ], [ -164.003906, 55.078367 ], [ -163.652344, 55.078367 ], [ -163.652344, 55.178868 ], [ -163.300781, 55.178868 ], [ -163.300781, 55.279115 ], [ -162.949219, 55.279115 ], [ -162.949219, 55.379110 ], [ -162.773438, 55.379110 ], [ -162.773438, 55.478853 ], [ -162.597656, 55.478853 ], [ -162.597656, 55.578345 ], [ -162.421875, 55.578345 ], [ -162.421875, 55.677584 ], [ -162.246094, 55.677584 ], [ -162.246094, 55.776573 ], [ -162.070312, 55.776573 ], [ -162.070312, 55.875311 ], [ -161.894531, 55.875311 ], [ -161.894531, 55.973798 ], [ -161.191406, 55.973798 ], [ -161.191406, 56.072035 ], [ -160.488281, 56.072035 ], [ -160.488281, 56.267761 ], [ -160.312500, 56.267761 ], [ -160.312500, 56.365250 ], [ -160.136719, 56.365250 ], [ -160.136719, 56.462490 ], [ -159.960938, 56.462490 ], [ -159.960938, 56.559482 ], [ -159.609375, 56.559482 ], [ -159.609375, 56.656226 ], [ -159.433594, 56.656226 ], [ -159.433594, 56.752723 ], [ -159.257812, 56.752723 ], [ -159.257812, 56.848972 ], [ -158.906250, 56.848972 ], [ -158.906250, 56.944974 ], [ -158.730469, 56.944974 ], [ -158.730469, 57.136239 ], [ -158.554688, 57.136239 ], [ -158.554688, 57.231503 ], [ -158.378906, 57.231503 ], [ -158.378906, 57.326521 ], [ -158.203125, 57.326521 ], [ -158.203125, 57.421294 ], [ -158.027344, 57.421294 ], [ -158.027344, 57.515823 ], [ -157.851562, 57.515823 ], [ -157.851562, 57.984808 ], [ -157.675781, 57.984808 ], [ -157.675781, 58.447733 ], [ -157.500000, 58.447733 ], [ -157.500000, 58.631217 ], [ -157.324219, 58.631217 ], [ -157.324219, 58.813742 ], [ -157.148438, 58.813742 ], [ -157.148438, 58.904646 ], [ -157.500000, 58.904646 ], [ -157.500000, 58.813742 ], [ -157.675781, 58.813742 ], [ -157.675781, 58.722599 ], [ -158.027344, 58.722599 ], [ -158.027344, 58.631217 ], [ -158.378906, 58.631217 ], [ -158.378906, 58.722599 ], [ -158.730469, 58.722599 ], [ -158.730469, 58.631217 ], [ -158.906250, 58.631217 ], [ -158.906250, 58.447733 ], [ -159.257812, 58.447733 ], [ -159.257812, 58.631217 ], [ -159.433594, 58.631217 ], [ -159.433594, 58.722599 ], [ -159.609375, 58.722599 ], [ -159.609375, 58.904646 ], [ -159.960938, 58.904646 ], [ -159.960938, 58.722599 ], [ -160.312500, 58.722599 ], [ -160.312500, 58.904646 ], [ -160.488281, 58.904646 ], [ -160.488281, 58.995311 ], [ -160.664062, 58.995311 ], [ -160.664062, 58.904646 ], [ -161.015625, 58.904646 ], [ -161.015625, 58.813742 ], [ -161.191406, 58.813742 ], [ -161.191406, 58.722599 ], [ -162.070312, 58.722599 ], [ -162.070312, 59.445075 ], [ -161.894531, 59.445075 ], [ -161.894531, 59.712097 ], [ -162.070312, 59.712097 ], [ -162.070312, 59.800634 ], [ -162.246094, 59.800634 ], [ -162.246094, 59.888937 ], [ -162.421875, 59.888937 ], [ -162.421875, 59.977005 ], [ -162.597656, 59.977005 ], [ -162.597656, 60.064840 ], [ -162.773438, 60.064840 ], [ -162.773438, 59.977005 ], [ -163.125000, 59.977005 ], [ -163.125000, 59.888937 ], [ -163.476562, 59.888937 ], [ -163.476562, 59.800634 ], [ -164.003906, 59.800634 ], [ -164.003906, 59.888937 ], [ -164.179688, 59.888937 ], [ -164.179688, 60.064840 ], [ -164.355469, 60.064840 ], [ -164.355469, 60.152442 ], [ -164.531250, 60.152442 ], [ -164.531250, 60.239811 ], [ -164.707031, 60.239811 ], [ -164.707031, 60.326948 ], [ -164.882812, 60.326948 ], [ -164.882812, 60.413852 ], [ -165.234375, 60.413852 ], [ -165.234375, 60.500525 ], [ -165.410156, 60.500525 ], [ -165.410156, 61.100789 ], [ -165.585938, 61.100789 ], [ -165.585938, 61.185625 ], [ -165.761719, 61.185625 ], [ -165.761719, 61.270233 ], [ -165.937500, 61.270233 ], [ -165.937500, 61.354614 ], [ -166.113281, 61.354614 ], [ -166.113281, 61.438767 ], [ -166.289062, 61.438767 ], [ -166.289062, 61.606396 ], [ -166.113281, 61.606396 ], [ -166.113281, 61.773123 ], [ -165.937500, 61.773123 ], [ -165.937500, 61.938950 ], [ -165.761719, 61.938950 ], [ -165.761719, 62.103883 ], [ -165.585938, 62.103883 ], [ -165.585938, 62.267923 ], [ -165.410156, 62.267923 ], [ -165.410156, 62.431074 ], [ -165.234375, 62.431074 ], [ -165.234375, 62.593341 ], [ -165.058594, 62.593341 ], [ -165.058594, 62.754726 ], [ -164.882812, 62.754726 ], [ -164.882812, 62.995158 ], [ -164.707031, 62.995158 ], [ -164.707031, 63.154355 ], [ -164.179688, 63.154355 ], [ -164.179688, 63.233627 ], [ -163.828125, 63.233627 ], [ -163.828125, 63.154355 ], [ -163.476562, 63.154355 ], [ -163.476562, 63.074866 ], [ -162.949219, 63.074866 ], [ -162.949219, 63.233627 ], [ -162.773438, 63.233627 ], [ -162.773438, 63.312683 ], [ -162.597656, 63.312683 ], [ -162.597656, 63.470145 ], [ -162.421875, 63.470145 ], [ -162.421875, 63.548552 ], [ -162.070312, 63.548552 ], [ -162.070312, 63.470145 ], [ -161.367188, 63.470145 ], [ -161.367188, 63.548552 ], [ -161.191406, 63.548552 ], [ -161.191406, 63.626745 ], [ -161.015625, 63.626745 ], [ -161.015625, 63.704722 ], [ -160.839844, 63.704722 ], [ -160.839844, 64.014496 ], [ -161.015625, 64.014496 ], [ -161.015625, 64.244595 ], [ -161.191406, 64.244595 ], [ -161.191406, 64.320872 ], [ -161.367188, 64.320872 ], [ -161.367188, 64.396938 ], [ -161.542969, 64.396938 ], [ -161.542969, 64.472794 ], [ -161.367188, 64.472794 ], [ -161.367188, 64.548440 ], [ -161.191406, 64.548440 ], [ -161.191406, 64.699105 ], [ -161.015625, 64.699105 ], [ -161.015625, 64.774125 ], [ -160.839844, 64.774125 ], [ -160.839844, 64.848937 ], [ -161.542969, 64.848937 ], [ -161.542969, 64.774125 ], [ -161.894531, 64.774125 ], [ -161.894531, 64.699105 ], [ -162.246094, 64.699105 ], [ -162.246094, 64.623877 ], [ -162.597656, 64.623877 ], [ -162.597656, 64.472794 ], [ -162.773438, 64.472794 ], [ -162.773438, 64.396938 ], [ -162.949219, 64.396938 ], [ -162.949219, 64.472794 ], [ -163.300781, 64.472794 ], [ -163.300781, 64.548440 ], [ -163.652344, 64.548440 ], [ -163.652344, 64.623877 ], [ -163.828125, 64.623877 ], [ -163.828125, 64.548440 ], [ -164.531250, 64.548440 ], [ -164.531250, 64.472794 ], [ -165.410156, 64.472794 ], [ -165.410156, 64.548440 ], [ -165.937500, 64.548440 ], [ -165.937500, 64.623877 ], [ -166.289062, 64.623877 ], [ -166.289062, 64.699105 ], [ -166.464844, 64.699105 ], [ -166.464844, 64.774125 ], [ -166.640625, 64.774125 ], [ -166.640625, 64.923542 ], [ -166.816406, 64.923542 ], [ -166.816406, 65.072130 ], [ -166.992188, 65.072130 ], [ -166.992188, 65.146115 ], [ -167.167969, 65.146115 ], [ -167.167969, 65.219894 ], [ -167.343750, 65.219894 ], [ -167.343750, 65.293468 ], [ -167.519531, 65.293468 ], [ -167.519531, 65.440002 ], [ -167.695312, 65.440002 ], [ -167.695312, 65.512963 ], [ -167.871094, 65.512963 ], [ -167.871094, 65.585720 ], [ -168.046875, 65.585720 ], [ -168.046875, 65.658275 ], [ -168.222656, 65.658275 ], [ -168.222656, 65.730626 ], [ -168.046875, 65.730626 ], [ -168.046875, 65.802776 ], [ -167.695312, 65.802776 ], [ -167.695312, 65.874725 ], [ -167.343750, 65.874725 ], [ -167.343750, 65.946472 ], [ -167.167969, 65.946472 ], [ -167.167969, 66.018018 ], [ -166.816406, 66.018018 ], [ -166.816406, 66.089364 ], [ -166.640625, 66.089364 ], [ -166.640625, 66.160511 ], [ -166.289062, 66.160511 ], [ -166.289062, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.302205 ], [ -165.585938, 66.302205 ], [ -165.585938, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.652344, 66.302205 ], [ -163.828125, 66.302205 ], [ -163.828125, 66.089364 ], [ -162.597656, 66.089364 ], [ -162.597656, 66.160511 ], [ -161.894531, 66.160511 ], [ -161.894531, 66.302205 ], [ -162.070312, 66.302205 ], [ -162.070312, 66.443107 ], [ -162.246094, 66.443107 ], [ -162.246094, 66.583217 ], [ -162.421875, 66.583217 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.949219, 66.791909 ], [ -162.949219, 66.861082 ], [ -141.152344, 66.861082 ] ] ], [ [ [ -152.578125, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.402344, 57.891497 ], [ -152.402344, 57.704147 ], [ -152.226562, 57.704147 ], [ -152.226562, 57.515823 ], [ -152.402344, 57.515823 ], [ -152.402344, 57.421294 ], [ -152.578125, 57.421294 ], [ -152.578125, 57.326521 ], [ -152.753906, 57.326521 ], [ -152.753906, 57.231503 ], [ -152.929688, 57.231503 ], [ -152.929688, 57.136239 ], [ -153.105469, 57.136239 ], [ -153.105469, 57.040730 ], [ -153.457031, 57.040730 ], [ -153.457031, 56.944974 ], [ -153.632812, 56.944974 ], [ -153.632812, 56.848972 ], [ -153.984375, 56.848972 ], [ -153.984375, 56.752723 ], [ -154.335938, 56.752723 ], [ -154.335938, 56.848972 ], [ -154.511719, 56.848972 ], [ -154.511719, 56.944974 ], [ -154.687500, 56.944974 ], [ -154.687500, 57.515823 ], [ -154.511719, 57.515823 ], [ -154.511719, 57.610107 ], [ -154.335938, 57.610107 ], [ -154.335938, 57.704147 ], [ -153.984375, 57.704147 ], [ -153.984375, 57.797944 ], [ -153.808594, 57.797944 ], [ -153.808594, 57.891497 ], [ -153.457031, 57.891497 ], [ -153.457031, 57.984808 ], [ -152.578125, 57.984808 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -170.507812, 63.626745 ], [ -170.332031, 63.626745 ], [ -170.332031, 63.548552 ], [ -169.980469, 63.548552 ], [ -169.980469, 63.470145 ], [ -169.628906, 63.470145 ], [ -169.628906, 63.391522 ], [ -169.101562, 63.391522 ], [ -169.101562, 63.312683 ], [ -168.750000, 63.312683 ], [ -168.750000, 63.233627 ], [ -168.925781, 63.233627 ], [ -168.925781, 63.154355 ], [ -169.101562, 63.154355 ], [ -169.101562, 63.074866 ], [ -169.453125, 63.074866 ], [ -169.453125, 62.995158 ], [ -169.804688, 62.995158 ], [ -169.804688, 63.074866 ], [ -170.156250, 63.074866 ], [ -170.156250, 63.154355 ], [ -170.332031, 63.154355 ], [ -170.332031, 63.233627 ], [ -170.507812, 63.233627 ], [ -170.507812, 63.312683 ], [ -170.683594, 63.312683 ], [ -170.683594, 63.391522 ], [ -171.914062, 63.391522 ], [ -171.914062, 63.626745 ], [ -171.738281, 63.626745 ], [ -171.738281, 63.704722 ], [ -171.386719, 63.704722 ], [ -171.386719, 63.626745 ], [ -170.683594, 63.626745 ], [ -170.683594, 63.704722 ], [ -170.507812, 63.704722 ] ] ], [ [ [ -166.289062, 60.413852 ], [ -166.289062, 60.326948 ], [ -165.761719, 60.326948 ], [ -165.761719, 60.152442 ], [ -165.585938, 60.152442 ], [ -165.585938, 59.888937 ], [ -165.937500, 59.888937 ], [ -165.937500, 59.800634 ], [ -166.640625, 59.800634 ], [ -166.640625, 59.888937 ], [ -166.992188, 59.888937 ], [ -166.992188, 59.977005 ], [ -167.167969, 59.977005 ], [ -167.167969, 60.064840 ], [ -167.343750, 60.064840 ], [ -167.343750, 60.152442 ], [ -167.519531, 60.152442 ], [ -167.519531, 60.239811 ], [ -167.167969, 60.239811 ], [ -167.167969, 60.326948 ], [ -166.816406, 60.326948 ], [ -166.816406, 60.413852 ], [ -166.289062, 60.413852 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.878906, 63.074866 ], [ -180.703125, 63.074866 ], [ -180.703125, 62.754726 ], [ -180.527344, 62.754726 ], [ -180.527344, 62.431074 ], [ -180.703125, 62.431074 ], [ -180.703125, 62.267923 ], [ -180.878906, 62.267923 ], [ -180.878906, 63.074866 ] ] ], [ [ [ -180.000000, 65.072130 ], [ -180.000000, 64.923542 ], [ -180.175781, 64.923542 ], [ -180.175781, 64.848937 ], [ -180.527344, 64.848937 ], [ -180.527344, 64.774125 ], [ -180.703125, 64.774125 ], [ -180.703125, 64.699105 ], [ -180.878906, 64.699105 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ], [ -174.902344, 66.861082 ], [ -174.902344, 66.722541 ], [ -175.078125, 66.722541 ], [ -175.078125, 66.513260 ], [ -174.902344, 66.513260 ], [ -174.902344, 66.443107 ], [ -174.726562, 66.443107 ], [ -174.726562, 66.372755 ], [ -174.550781, 66.372755 ], [ -174.550781, 66.302205 ], [ -174.375000, 66.302205 ], [ -174.375000, 66.583217 ], [ -174.550781, 66.583217 ], [ -174.550781, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.722541 ], [ -171.386719, 66.722541 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.302205 ], [ -170.683594, 66.302205 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -170.332031, 66.160511 ], [ -170.332031, 66.018018 ], [ -170.156250, 66.018018 ], [ -170.156250, 65.946472 ], [ -169.980469, 65.946472 ], [ -169.980469, 65.874725 ], [ -170.156250, 65.874725 ], [ -170.156250, 65.802776 ], [ -170.332031, 65.802776 ], [ -170.332031, 65.730626 ], [ -170.507812, 65.730626 ], [ -170.507812, 65.585720 ], [ -170.683594, 65.585720 ], [ -170.683594, 65.512963 ], [ -171.562500, 65.512963 ], [ -171.562500, 65.440002 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.396938 ], [ -172.792969, 64.396938 ], [ -172.792969, 64.244595 ], [ -174.023438, 64.244595 ], [ -174.023438, 64.320872 ], [ -174.199219, 64.320872 ], [ -174.199219, 64.396938 ], [ -174.375000, 64.396938 ], [ -174.375000, 64.472794 ], [ -174.550781, 64.472794 ], [ -174.550781, 64.548440 ], [ -174.726562, 64.548440 ], [ -174.726562, 64.623877 ], [ -174.902344, 64.623877 ], [ -174.902344, 64.699105 ], [ -175.253906, 64.699105 ], [ -175.253906, 64.774125 ], [ -175.605469, 64.774125 ], [ -175.605469, 64.848937 ], [ -175.957031, 64.848937 ], [ -175.957031, 65.146115 ], [ -176.132812, 65.146115 ], [ -176.132812, 65.366837 ], [ -176.484375, 65.366837 ], [ -176.484375, 65.440002 ], [ -177.011719, 65.440002 ], [ -177.011719, 65.512963 ], [ -177.363281, 65.512963 ], [ -177.363281, 65.440002 ], [ -178.066406, 65.440002 ], [ -178.066406, 65.366837 ], [ -178.593750, 65.366837 ], [ -178.593750, 65.512963 ], [ -178.769531, 65.512963 ], [ -178.769531, 65.658275 ], [ -178.945312, 65.658275 ], [ -178.945312, 65.874725 ], [ -178.769531, 65.874725 ], [ -178.769531, 66.018018 ], [ -179.121094, 66.018018 ], [ -179.121094, 65.946472 ], [ -179.472656, 65.946472 ], [ -179.472656, 65.874725 ], [ -179.824219, 65.874725 ], [ -179.824219, 65.730626 ], [ -179.648438, 65.730626 ], [ -179.648438, 65.512963 ], [ -179.472656, 65.512963 ], [ -179.472656, 65.366837 ], [ -179.648438, 65.366837 ], [ -179.648438, 65.219894 ], [ -179.824219, 65.219894 ], [ -179.824219, 65.072130 ], [ -180.000000, 65.072130 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.878906, 63.074866 ], [ -180.703125, 63.074866 ], [ -180.703125, 62.754726 ], [ -180.527344, 62.754726 ], [ -180.527344, 62.512318 ], [ -180.703125, 62.512318 ], [ -180.703125, 62.349609 ], [ -180.878906, 62.349609 ], [ -180.878906, 63.074866 ] ] ], [ [ [ -180.000000, 66.861082 ], [ -175.078125, 66.861082 ], [ -175.078125, 66.583217 ], [ -174.902344, 66.583217 ], [ -174.902344, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.443107 ], [ -174.550781, 66.443107 ], [ -174.550781, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.583217 ], [ -174.550781, 66.583217 ], [ -174.550781, 66.861082 ], [ -171.914062, 66.861082 ], [ -171.914062, 66.791909 ], [ -171.738281, 66.791909 ], [ -171.738281, 66.722541 ], [ -171.562500, 66.722541 ], [ -171.562500, 66.652977 ], [ -171.386719, 66.652977 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.302205 ], [ -170.683594, 66.302205 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -170.332031, 66.160511 ], [ -170.332031, 66.089364 ], [ -170.156250, 66.089364 ], [ -170.156250, 66.018018 ], [ -169.980469, 66.018018 ], [ -169.980469, 65.946472 ], [ -170.156250, 65.946472 ], [ -170.156250, 65.874725 ], [ -170.332031, 65.874725 ], [ -170.332031, 65.802776 ], [ -170.507812, 65.802776 ], [ -170.507812, 65.730626 ], [ -170.683594, 65.730626 ], [ -170.683594, 65.658275 ], [ -170.859375, 65.658275 ], [ -170.859375, 65.585720 ], [ -171.386719, 65.585720 ], [ -171.386719, 65.512963 ], [ -172.089844, 65.512963 ], [ -172.089844, 65.440002 ], [ -172.617188, 65.440002 ], [ -172.617188, 64.396938 ], [ -172.792969, 64.396938 ], [ -172.792969, 64.320872 ], [ -174.199219, 64.320872 ], [ -174.199219, 64.396938 ], [ -174.375000, 64.396938 ], [ -174.375000, 64.548440 ], [ -174.550781, 64.548440 ], [ -174.550781, 64.623877 ], [ -174.726562, 64.623877 ], [ -174.726562, 64.699105 ], [ -175.078125, 64.699105 ], [ -175.078125, 64.774125 ], [ -175.605469, 64.774125 ], [ -175.605469, 64.848937 ], [ -175.957031, 64.848937 ], [ -175.957031, 64.923542 ], [ -176.132812, 64.923542 ], [ -176.132812, 65.146115 ], [ -176.308594, 65.146115 ], [ -176.308594, 65.366837 ], [ -176.660156, 65.366837 ], [ -176.660156, 65.440002 ], [ -177.011719, 65.440002 ], [ -177.011719, 65.512963 ], [ -177.363281, 65.512963 ], [ -177.363281, 65.585720 ], [ -177.539062, 65.585720 ], [ -177.539062, 65.512963 ], [ -178.066406, 65.512963 ], [ -178.066406, 65.440002 ], [ -178.593750, 65.440002 ], [ -178.593750, 65.585720 ], [ -178.769531, 65.585720 ], [ -178.769531, 65.730626 ], [ -178.945312, 65.730626 ], [ -178.945312, 65.946472 ], [ -178.769531, 65.946472 ], [ -178.769531, 66.089364 ], [ -179.121094, 66.089364 ], [ -179.121094, 66.018018 ], [ -179.472656, 66.018018 ], [ -179.472656, 65.946472 ], [ -179.824219, 65.946472 ], [ -179.824219, 65.874725 ], [ -180.000000, 65.874725 ], [ -180.000000, 65.802776 ], [ -179.824219, 65.802776 ], [ -179.824219, 65.658275 ], [ -179.648438, 65.658275 ], [ -179.648438, 65.512963 ], [ -179.472656, 65.512963 ], [ -179.472656, 65.366837 ], [ -179.648438, 65.366837 ], [ -179.648438, 65.219894 ], [ -179.824219, 65.219894 ], [ -179.824219, 65.072130 ], [ -180.000000, 65.072130 ], [ -180.000000, 64.997939 ], [ -180.175781, 64.997939 ], [ -180.175781, 64.923542 ], [ -180.351562, 64.923542 ], [ -180.351562, 64.848937 ], [ -180.527344, 64.848937 ], [ -180.527344, 64.774125 ], [ -180.703125, 64.774125 ], [ -180.703125, 64.699105 ], [ -180.878906, 64.699105 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.800781, 69.718107 ], [ -140.800781, 69.657086 ], [ -140.273438, 69.657086 ], [ -140.273438, 69.595890 ], [ -139.921875, 69.595890 ], [ -139.921875, 69.534518 ], [ -139.394531, 69.534518 ], [ -139.394531, 69.472969 ], [ -139.042969, 69.472969 ], [ -139.042969, 69.411242 ], [ -138.867188, 69.411242 ], [ -138.867188, 69.349339 ], [ -138.691406, 69.349339 ], [ -138.691406, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.224997 ], [ -138.164062, 69.224997 ], [ -138.164062, 69.162558 ], [ -137.988281, 69.162558 ], [ -137.988281, 69.099940 ], [ -137.812500, 69.099940 ], [ -137.812500, 69.037142 ], [ -137.636719, 69.037142 ], [ -137.636719, 68.974164 ], [ -137.109375, 68.974164 ], [ -137.109375, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 68.974164 ], [ -136.230469, 68.974164 ], [ -136.230469, 69.099940 ], [ -136.054688, 69.099940 ], [ -136.054688, 69.162558 ], [ -135.878906, 69.162558 ], [ -135.878906, 69.224997 ], [ -135.703125, 69.224997 ], [ -135.703125, 69.287257 ], [ -135.527344, 69.287257 ], [ -135.527344, 69.349339 ], [ -135.351562, 69.349339 ], [ -135.351562, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -134.824219, 69.472969 ], [ -134.824219, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.595890 ], [ -134.121094, 69.595890 ], [ -134.121094, 66.160511 ], [ -140.976562, 66.160511 ], [ -140.976562, 69.718107 ], [ -140.800781, 69.718107 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.976562, 69.718107 ], [ -140.976562, 69.657086 ], [ -140.449219, 69.657086 ], [ -140.449219, 69.595890 ], [ -140.097656, 69.595890 ], [ -140.097656, 69.534518 ], [ -139.570312, 69.534518 ], [ -139.570312, 69.472969 ], [ -139.218750, 69.472969 ], [ -139.218750, 69.411242 ], [ -139.042969, 69.411242 ], [ -139.042969, 69.349339 ], [ -138.691406, 69.349339 ], [ -138.691406, 69.287257 ], [ -138.515625, 69.287257 ], [ -138.515625, 69.224997 ], [ -138.339844, 69.224997 ], [ -138.339844, 69.162558 ], [ -137.988281, 69.162558 ], [ -137.988281, 69.099940 ], [ -137.812500, 69.099940 ], [ -137.812500, 69.037142 ], [ -137.460938, 69.037142 ], [ -137.460938, 68.974164 ], [ -136.933594, 68.974164 ], [ -136.933594, 68.911005 ], [ -136.406250, 68.911005 ], [ -136.406250, 69.037142 ], [ -136.230469, 69.037142 ], [ -136.230469, 69.099940 ], [ -136.054688, 69.099940 ], [ -136.054688, 69.162558 ], [ -135.878906, 69.162558 ], [ -135.878906, 69.287257 ], [ -135.703125, 69.287257 ], [ -135.703125, 69.349339 ], [ -135.527344, 69.349339 ], [ -135.527344, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -135.000000, 69.472969 ], [ -135.000000, 69.534518 ], [ -134.824219, 69.534518 ], [ -134.824219, 69.595890 ], [ -134.472656, 69.595890 ], [ -134.472656, 69.657086 ], [ -134.121094, 69.657086 ], [ -134.121094, 66.160511 ], [ -141.152344, 66.160511 ], [ -141.152344, 69.718107 ], [ -140.976562, 69.718107 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.583217 ], [ -163.652344, 66.372755 ], [ -163.828125, 66.372755 ], [ -163.828125, 66.160511 ], [ -166.289062, 66.160511 ], [ -166.289062, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.302205 ], [ -165.585938, 66.302205 ], [ -165.585938, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ] ] ], [ [ [ -161.718750, 66.160511 ], [ -161.718750, 66.231457 ], [ -161.894531, 66.231457 ], [ -161.894531, 66.372755 ], [ -162.070312, 66.372755 ], [ -162.070312, 66.513260 ], [ -162.246094, 66.513260 ], [ -162.246094, 66.652977 ], [ -162.421875, 66.652977 ], [ -162.421875, 66.722541 ], [ -162.597656, 66.722541 ], [ -162.597656, 66.791909 ], [ -162.773438, 66.791909 ], [ -162.773438, 66.861082 ], [ -162.949219, 66.861082 ], [ -162.949219, 66.930060 ], [ -163.300781, 66.930060 ], [ -163.300781, 66.998844 ], [ -163.476562, 66.998844 ], [ -163.476562, 67.067433 ], [ -163.652344, 67.067433 ], [ -163.652344, 67.135829 ], [ -163.828125, 67.135829 ], [ -163.828125, 67.272043 ], [ -164.003906, 67.272043 ], [ -164.003906, 67.407487 ], [ -164.179688, 67.407487 ], [ -164.179688, 67.542167 ], [ -164.355469, 67.542167 ], [ -164.355469, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.676085 ], [ -164.707031, 67.676085 ], [ -164.707031, 67.742759 ], [ -164.882812, 67.742759 ], [ -164.882812, 67.875541 ], [ -165.058594, 67.875541 ], [ -165.058594, 67.941650 ], [ -165.234375, 67.941650 ], [ -165.234375, 68.007571 ], [ -165.410156, 68.007571 ], [ -165.410156, 68.073305 ], [ -165.761719, 68.073305 ], [ -165.761719, 68.138852 ], [ -166.113281, 68.138852 ], [ -166.113281, 68.204212 ], [ -166.464844, 68.204212 ], [ -166.464844, 68.269387 ], [ -166.816406, 68.269387 ], [ -166.816406, 68.399180 ], [ -166.640625, 68.399180 ], [ -166.640625, 68.592487 ], [ -166.464844, 68.592487 ], [ -166.464844, 68.784144 ], [ -166.289062, 68.784144 ], [ -166.289062, 68.911005 ], [ -164.179688, 68.911005 ], [ -164.179688, 68.974164 ], [ -164.003906, 68.974164 ], [ -164.003906, 69.037142 ], [ -163.828125, 69.037142 ], [ -163.828125, 69.099940 ], [ -163.652344, 69.099940 ], [ -163.652344, 69.162558 ], [ -163.476562, 69.162558 ], [ -163.476562, 69.224997 ], [ -163.300781, 69.224997 ], [ -163.300781, 69.287257 ], [ -163.125000, 69.287257 ], [ -163.125000, 69.595890 ], [ -162.949219, 69.595890 ], [ -162.949219, 69.839622 ], [ -162.773438, 69.839622 ], [ -162.773438, 69.960439 ], [ -162.597656, 69.960439 ], [ -162.597656, 70.020587 ], [ -162.421875, 70.020587 ], [ -162.421875, 70.080562 ], [ -162.246094, 70.080562 ], [ -162.246094, 70.199994 ], [ -162.070312, 70.199994 ], [ -162.070312, 70.259452 ], [ -161.894531, 70.259452 ], [ -161.894531, 70.318738 ], [ -161.542969, 70.318738 ], [ -161.542969, 70.377854 ], [ -161.191406, 70.377854 ], [ -161.191406, 70.436799 ], [ -160.839844, 70.436799 ], [ -160.839844, 70.495574 ], [ -160.488281, 70.495574 ], [ -160.488281, 70.554179 ], [ -160.312500, 70.554179 ], [ -160.312500, 70.612614 ], [ -160.136719, 70.612614 ], [ -160.136719, 70.670881 ], [ -159.785156, 70.670881 ], [ -159.785156, 70.728979 ], [ -159.609375, 70.728979 ], [ -159.609375, 70.786910 ], [ -159.433594, 70.786910 ], [ -159.433594, 70.844673 ], [ -159.082031, 70.844673 ], [ -159.082031, 70.902268 ], [ -158.730469, 70.902268 ], [ -158.730469, 70.844673 ], [ -158.027344, 70.844673 ], [ -158.027344, 70.902268 ], [ -157.851562, 70.902268 ], [ -157.851562, 70.959697 ], [ -157.675781, 70.959697 ], [ -157.675781, 71.016960 ], [ -157.500000, 71.016960 ], [ -157.500000, 71.074056 ], [ -157.324219, 71.074056 ], [ -157.324219, 71.130988 ], [ -157.148438, 71.130988 ], [ -157.148438, 71.187754 ], [ -156.972656, 71.187754 ], [ -156.972656, 71.244356 ], [ -156.796875, 71.244356 ], [ -156.796875, 71.300793 ], [ -156.621094, 71.300793 ], [ -156.621094, 71.357067 ], [ -156.445312, 71.357067 ], [ -156.445312, 71.300793 ], [ -156.093750, 71.300793 ], [ -156.093750, 71.244356 ], [ -155.742188, 71.244356 ], [ -155.742188, 71.187754 ], [ -155.390625, 71.187754 ], [ -155.390625, 71.130988 ], [ -155.039062, 71.130988 ], [ -155.039062, 71.074056 ], [ -154.863281, 71.074056 ], [ -154.863281, 70.959697 ], [ -154.687500, 70.959697 ], [ -154.687500, 70.844673 ], [ -154.511719, 70.844673 ], [ -154.511719, 70.728979 ], [ -154.160156, 70.728979 ], [ -154.160156, 70.844673 ], [ -153.984375, 70.844673 ], [ -153.984375, 70.902268 ], [ -153.281250, 70.902268 ], [ -153.281250, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.612614 ], [ -152.050781, 70.612614 ], [ -152.050781, 70.554179 ], [ -151.699219, 70.554179 ], [ -151.699219, 70.495574 ], [ -151.171875, 70.495574 ], [ -151.171875, 70.436799 ], [ -150.468750, 70.436799 ], [ -150.468750, 70.495574 ], [ -149.941406, 70.495574 ], [ -149.941406, 70.554179 ], [ -149.765625, 70.554179 ], [ -149.765625, 70.495574 ], [ -149.414062, 70.495574 ], [ -149.414062, 70.436799 ], [ -149.062500, 70.436799 ], [ -149.062500, 70.377854 ], [ -148.710938, 70.377854 ], [ -148.710938, 70.318738 ], [ -148.359375, 70.318738 ], [ -148.359375, 70.259452 ], [ -148.007812, 70.259452 ], [ -148.007812, 70.199994 ], [ -146.777344, 70.199994 ], [ -146.777344, 70.140364 ], [ -145.722656, 70.140364 ], [ -145.722656, 70.080562 ], [ -145.371094, 70.080562 ], [ -145.371094, 70.020587 ], [ -145.019531, 70.020587 ], [ -145.019531, 69.960439 ], [ -144.492188, 69.960439 ], [ -144.492188, 70.020587 ], [ -144.140625, 70.020587 ], [ -144.140625, 70.080562 ], [ -143.789062, 70.080562 ], [ -143.789062, 70.140364 ], [ -143.613281, 70.140364 ], [ -143.613281, 70.080562 ], [ -143.261719, 70.080562 ], [ -143.261719, 70.020587 ], [ -142.910156, 70.020587 ], [ -142.910156, 69.960439 ], [ -142.558594, 69.960439 ], [ -142.558594, 69.900118 ], [ -142.207031, 69.900118 ], [ -142.207031, 69.839622 ], [ -141.855469, 69.839622 ], [ -141.855469, 69.778952 ], [ -141.328125, 69.778952 ], [ -141.328125, 69.718107 ], [ -140.976562, 69.718107 ], [ -140.976562, 66.160511 ], [ -161.718750, 66.160511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.583217 ], [ -163.652344, 66.372755 ], [ -163.828125, 66.372755 ], [ -163.828125, 66.160511 ], [ -166.289062, 66.160511 ], [ -166.289062, 66.231457 ], [ -165.937500, 66.231457 ], [ -165.937500, 66.302205 ], [ -165.585938, 66.302205 ], [ -165.585938, 66.372755 ], [ -165.234375, 66.372755 ], [ -165.234375, 66.443107 ], [ -164.882812, 66.443107 ], [ -164.882812, 66.513260 ], [ -164.531250, 66.513260 ], [ -164.531250, 66.583217 ], [ -163.652344, 66.583217 ] ] ], [ [ [ -161.894531, 66.160511 ], [ -161.894531, 66.231457 ], [ -162.070312, 66.231457 ], [ -162.070312, 66.372755 ], [ -162.246094, 66.372755 ], [ -162.246094, 66.513260 ], [ -162.421875, 66.513260 ], [ -162.421875, 66.652977 ], [ -162.597656, 66.652977 ], [ -162.597656, 66.791909 ], [ -162.773438, 66.791909 ], [ -162.773438, 66.861082 ], [ -163.125000, 66.861082 ], [ -163.125000, 66.930060 ], [ -163.300781, 66.930060 ], [ -163.300781, 66.998844 ], [ -163.476562, 66.998844 ], [ -163.476562, 67.067433 ], [ -163.828125, 67.067433 ], [ -163.828125, 67.204032 ], [ -164.003906, 67.204032 ], [ -164.003906, 67.339861 ], [ -164.179688, 67.339861 ], [ -164.179688, 67.474922 ], [ -164.355469, 67.474922 ], [ -164.355469, 67.609221 ], [ -164.531250, 67.609221 ], [ -164.531250, 67.676085 ], [ -164.707031, 67.676085 ], [ -164.707031, 67.742759 ], [ -164.882812, 67.742759 ], [ -164.882812, 67.875541 ], [ -165.058594, 67.875541 ], [ -165.058594, 67.941650 ], [ -165.234375, 67.941650 ], [ -165.234375, 68.007571 ], [ -165.410156, 68.007571 ], [ -165.410156, 68.073305 ], [ -165.585938, 68.073305 ], [ -165.585938, 68.138852 ], [ -165.937500, 68.138852 ], [ -165.937500, 68.204212 ], [ -166.289062, 68.204212 ], [ -166.289062, 68.269387 ], [ -166.464844, 68.269387 ], [ -166.464844, 68.334376 ], [ -166.816406, 68.334376 ], [ -166.816406, 68.463800 ], [ -166.640625, 68.463800 ], [ -166.640625, 68.656555 ], [ -166.464844, 68.656555 ], [ -166.464844, 68.784144 ], [ -166.289062, 68.784144 ], [ -166.289062, 68.911005 ], [ -165.234375, 68.911005 ], [ -165.234375, 68.974164 ], [ -164.355469, 68.974164 ], [ -164.355469, 69.037142 ], [ -164.179688, 69.037142 ], [ -164.179688, 69.099940 ], [ -164.003906, 69.099940 ], [ -164.003906, 69.162558 ], [ -163.828125, 69.162558 ], [ -163.828125, 69.224997 ], [ -163.652344, 69.224997 ], [ -163.652344, 69.287257 ], [ -163.476562, 69.287257 ], [ -163.476562, 69.349339 ], [ -163.300781, 69.349339 ], [ -163.300781, 69.534518 ], [ -163.125000, 69.534518 ], [ -163.125000, 69.778952 ], [ -162.949219, 69.778952 ], [ -162.949219, 69.900118 ], [ -162.773438, 69.900118 ], [ -162.773438, 70.020587 ], [ -162.597656, 70.020587 ], [ -162.597656, 70.140364 ], [ -162.421875, 70.140364 ], [ -162.421875, 70.199994 ], [ -162.246094, 70.199994 ], [ -162.246094, 70.318738 ], [ -162.070312, 70.318738 ], [ -162.070312, 70.377854 ], [ -161.718750, 70.377854 ], [ -161.718750, 70.436799 ], [ -161.191406, 70.436799 ], [ -161.191406, 70.495574 ], [ -160.839844, 70.495574 ], [ -160.839844, 70.554179 ], [ -160.488281, 70.554179 ], [ -160.488281, 70.612614 ], [ -160.312500, 70.612614 ], [ -160.312500, 70.670881 ], [ -159.960938, 70.670881 ], [ -159.960938, 70.728979 ], [ -159.609375, 70.728979 ], [ -159.609375, 70.786910 ], [ -159.433594, 70.786910 ], [ -159.433594, 70.844673 ], [ -159.082031, 70.844673 ], [ -159.082031, 70.902268 ], [ -158.730469, 70.902268 ], [ -158.730469, 70.844673 ], [ -158.027344, 70.844673 ], [ -158.027344, 70.902268 ], [ -157.851562, 70.902268 ], [ -157.851562, 70.959697 ], [ -157.675781, 70.959697 ], [ -157.675781, 71.016960 ], [ -157.500000, 71.016960 ], [ -157.500000, 71.074056 ], [ -157.324219, 71.074056 ], [ -157.324219, 71.130988 ], [ -157.148438, 71.130988 ], [ -157.148438, 71.187754 ], [ -156.972656, 71.187754 ], [ -156.972656, 71.244356 ], [ -156.796875, 71.244356 ], [ -156.796875, 71.300793 ], [ -156.621094, 71.300793 ], [ -156.621094, 71.357067 ], [ -156.445312, 71.357067 ], [ -156.445312, 71.300793 ], [ -156.093750, 71.300793 ], [ -156.093750, 71.244356 ], [ -155.566406, 71.244356 ], [ -155.566406, 71.187754 ], [ -155.214844, 71.187754 ], [ -155.214844, 71.130988 ], [ -155.039062, 71.130988 ], [ -155.039062, 71.016960 ], [ -154.863281, 71.016960 ], [ -154.863281, 70.902268 ], [ -154.687500, 70.902268 ], [ -154.687500, 70.786910 ], [ -154.511719, 70.786910 ], [ -154.511719, 70.728979 ], [ -154.335938, 70.728979 ], [ -154.335938, 70.786910 ], [ -154.160156, 70.786910 ], [ -154.160156, 70.844673 ], [ -153.984375, 70.844673 ], [ -153.984375, 70.902268 ], [ -153.281250, 70.902268 ], [ -153.281250, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.728979 ], [ -152.402344, 70.728979 ], [ -152.402344, 70.612614 ], [ -152.226562, 70.612614 ], [ -152.226562, 70.554179 ], [ -151.699219, 70.554179 ], [ -151.699219, 70.495574 ], [ -151.171875, 70.495574 ], [ -151.171875, 70.436799 ], [ -150.468750, 70.436799 ], [ -150.468750, 70.495574 ], [ -149.941406, 70.495574 ], [ -149.941406, 70.554179 ], [ -149.589844, 70.554179 ], [ -149.589844, 70.495574 ], [ -149.238281, 70.495574 ], [ -149.238281, 70.436799 ], [ -148.886719, 70.436799 ], [ -148.886719, 70.377854 ], [ -148.359375, 70.377854 ], [ -148.359375, 70.318738 ], [ -148.007812, 70.318738 ], [ -148.007812, 70.259452 ], [ -147.304688, 70.259452 ], [ -147.304688, 70.199994 ], [ -146.250000, 70.199994 ], [ -146.250000, 70.140364 ], [ -145.722656, 70.140364 ], [ -145.722656, 70.080562 ], [ -145.371094, 70.080562 ], [ -145.371094, 70.020587 ], [ -144.667969, 70.020587 ], [ -144.667969, 70.080562 ], [ -144.140625, 70.080562 ], [ -144.140625, 70.140364 ], [ -143.789062, 70.140364 ], [ -143.789062, 70.199994 ], [ -143.613281, 70.199994 ], [ -143.613281, 70.140364 ], [ -143.261719, 70.140364 ], [ -143.261719, 70.080562 ], [ -143.085938, 70.080562 ], [ -143.085938, 70.020587 ], [ -142.734375, 70.020587 ], [ -142.734375, 69.960439 ], [ -142.382812, 69.960439 ], [ -142.382812, 69.900118 ], [ -142.207031, 69.900118 ], [ -142.207031, 69.839622 ], [ -141.855469, 69.839622 ], [ -141.855469, 69.778952 ], [ -141.503906, 69.778952 ], [ -141.503906, 69.718107 ], [ -141.152344, 69.718107 ], [ -141.152344, 66.160511 ], [ -161.894531, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.703125, 69.162558 ], [ -180.703125, 69.099940 ], [ -180.351562, 69.099940 ], [ -180.351562, 69.037142 ], [ -180.175781, 69.037142 ], [ -180.175781, 68.974164 ], [ -180.000000, 68.974164 ], [ -180.000000, 68.911005 ], [ -179.824219, 68.911005 ], [ -179.824219, 68.847665 ], [ -179.648438, 68.847665 ], [ -179.648438, 68.784144 ], [ -179.296875, 68.784144 ], [ -179.296875, 68.720441 ], [ -179.121094, 68.720441 ], [ -179.121094, 68.656555 ], [ -178.945312, 68.656555 ], [ -178.945312, 68.592487 ], [ -178.769531, 68.592487 ], [ -178.769531, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.463800 ], [ -178.417969, 68.463800 ], [ -178.417969, 68.399180 ], [ -178.066406, 68.399180 ], [ -178.066406, 68.334376 ], [ -177.890625, 68.334376 ], [ -177.890625, 68.269387 ], [ -177.714844, 68.269387 ], [ -177.714844, 68.204212 ], [ -177.539062, 68.204212 ], [ -177.539062, 68.138852 ], [ -177.363281, 68.138852 ], [ -177.363281, 68.073305 ], [ -177.187500, 68.073305 ], [ -177.187500, 68.007571 ], [ -177.011719, 68.007571 ], [ -177.011719, 67.941650 ], [ -176.835938, 67.941650 ], [ -176.835938, 67.875541 ], [ -176.660156, 67.875541 ], [ -176.660156, 67.809245 ], [ -176.484375, 67.809245 ], [ -176.484375, 67.742759 ], [ -176.308594, 67.742759 ], [ -176.308594, 67.676085 ], [ -176.132812, 67.676085 ], [ -176.132812, 67.609221 ], [ -175.957031, 67.609221 ], [ -175.957031, 67.542167 ], [ -175.781250, 67.542167 ], [ -175.781250, 67.474922 ], [ -175.605469, 67.474922 ], [ -175.605469, 67.407487 ], [ -175.429688, 67.407487 ], [ -175.429688, 67.339861 ], [ -175.253906, 67.339861 ], [ -175.253906, 67.272043 ], [ -175.078125, 67.272043 ], [ -175.078125, 67.204032 ], [ -174.902344, 67.204032 ], [ -174.902344, 66.861082 ], [ -175.078125, 66.861082 ], [ -175.078125, 66.513260 ], [ -174.902344, 66.513260 ], [ -174.902344, 66.443107 ], [ -174.726562, 66.443107 ], [ -174.726562, 66.372755 ], [ -174.550781, 66.372755 ], [ -174.550781, 66.302205 ], [ -174.375000, 66.302205 ], [ -174.375000, 66.652977 ], [ -174.550781, 66.652977 ], [ -174.550781, 67.067433 ], [ -174.023438, 67.067433 ], [ -174.023438, 66.998844 ], [ -172.617188, 66.998844 ], [ -172.617188, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.386719, 66.652977 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.372755 ], [ -170.683594, 66.372755 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 69.162558 ], [ -180.703125, 69.162558 ] ] ], [ [ [ -178.945312, 71.580532 ], [ -178.945312, 71.524909 ], [ -178.769531, 71.524909 ], [ -178.769531, 71.469124 ], [ -178.417969, 71.469124 ], [ -178.417969, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.357067 ], [ -178.066406, 71.357067 ], [ -178.066406, 71.300793 ], [ -177.714844, 71.300793 ], [ -177.714844, 71.244356 ], [ -177.539062, 71.244356 ], [ -177.539062, 71.187754 ], [ -177.714844, 71.187754 ], [ -177.714844, 71.074056 ], [ -178.066406, 71.074056 ], [ -178.066406, 71.016960 ], [ -178.242188, 71.016960 ], [ -178.242188, 70.959697 ], [ -178.593750, 70.959697 ], [ -178.593750, 70.902268 ], [ -179.296875, 70.902268 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.351562, 70.844673 ], [ -180.351562, 70.786910 ], [ -180.878906, 70.786910 ], [ -180.878906, 71.244356 ], [ -180.703125, 71.244356 ], [ -180.703125, 71.300793 ], [ -180.527344, 71.300793 ], [ -180.527344, 71.357067 ], [ -180.351562, 71.357067 ], [ -180.351562, 71.413177 ], [ -180.175781, 71.413177 ], [ -180.175781, 71.469124 ], [ -180.000000, 71.469124 ], [ -180.000000, 71.524909 ], [ -179.824219, 71.524909 ], [ -179.824219, 71.580532 ], [ -178.945312, 71.580532 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.703125, 69.224997 ], [ -180.703125, 69.162558 ], [ -180.527344, 69.162558 ], [ -180.527344, 69.099940 ], [ -180.351562, 69.099940 ], [ -180.351562, 69.037142 ], [ -180.175781, 69.037142 ], [ -180.175781, 68.974164 ], [ -180.000000, 68.974164 ], [ -180.000000, 68.911005 ], [ -179.824219, 68.911005 ], [ -179.824219, 68.847665 ], [ -179.648438, 68.847665 ], [ -179.648438, 68.784144 ], [ -179.472656, 68.784144 ], [ -179.472656, 68.720441 ], [ -179.296875, 68.720441 ], [ -179.296875, 68.656555 ], [ -179.121094, 68.656555 ], [ -179.121094, 68.592487 ], [ -178.769531, 68.592487 ], [ -178.769531, 68.528235 ], [ -178.593750, 68.528235 ], [ -178.593750, 68.463800 ], [ -178.417969, 68.463800 ], [ -178.417969, 68.399180 ], [ -178.242188, 68.399180 ], [ -178.242188, 68.334376 ], [ -178.066406, 68.334376 ], [ -178.066406, 68.269387 ], [ -177.890625, 68.269387 ], [ -177.890625, 68.204212 ], [ -177.714844, 68.204212 ], [ -177.714844, 68.138852 ], [ -177.539062, 68.138852 ], [ -177.539062, 68.073305 ], [ -177.363281, 68.073305 ], [ -177.363281, 68.007571 ], [ -177.187500, 68.007571 ], [ -177.187500, 67.941650 ], [ -177.011719, 67.941650 ], [ -177.011719, 67.875541 ], [ -176.835938, 67.875541 ], [ -176.835938, 67.809245 ], [ -176.660156, 67.809245 ], [ -176.660156, 67.742759 ], [ -176.308594, 67.742759 ], [ -176.308594, 67.676085 ], [ -176.132812, 67.676085 ], [ -176.132812, 67.609221 ], [ -175.957031, 67.609221 ], [ -175.957031, 67.542167 ], [ -175.781250, 67.542167 ], [ -175.781250, 67.474922 ], [ -175.605469, 67.474922 ], [ -175.605469, 67.407487 ], [ -175.429688, 67.407487 ], [ -175.429688, 67.339861 ], [ -175.253906, 67.339861 ], [ -175.253906, 67.272043 ], [ -175.078125, 67.272043 ], [ -175.078125, 66.583217 ], [ -174.902344, 66.583217 ], [ -174.902344, 66.513260 ], [ -174.726562, 66.513260 ], [ -174.726562, 66.443107 ], [ -174.550781, 66.443107 ], [ -174.550781, 66.372755 ], [ -174.375000, 66.372755 ], [ -174.375000, 66.513260 ], [ -174.550781, 66.513260 ], [ -174.550781, 66.861082 ], [ -174.726562, 66.861082 ], [ -174.726562, 67.067433 ], [ -174.199219, 67.067433 ], [ -174.199219, 66.998844 ], [ -172.792969, 66.998844 ], [ -172.792969, 66.930060 ], [ -171.914062, 66.930060 ], [ -171.914062, 66.861082 ], [ -171.738281, 66.861082 ], [ -171.738281, 66.791909 ], [ -171.562500, 66.791909 ], [ -171.562500, 66.652977 ], [ -171.386719, 66.652977 ], [ -171.386719, 66.583217 ], [ -171.210938, 66.583217 ], [ -171.210938, 66.513260 ], [ -171.035156, 66.513260 ], [ -171.035156, 66.443107 ], [ -170.859375, 66.443107 ], [ -170.859375, 66.372755 ], [ -170.683594, 66.372755 ], [ -170.683594, 66.231457 ], [ -170.507812, 66.231457 ], [ -170.507812, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 69.224997 ], [ -180.703125, 69.224997 ] ] ], [ [ [ -179.121094, 71.580532 ], [ -179.121094, 71.524909 ], [ -178.769531, 71.524909 ], [ -178.769531, 71.469124 ], [ -178.593750, 71.469124 ], [ -178.593750, 71.413177 ], [ -178.242188, 71.413177 ], [ -178.242188, 71.357067 ], [ -177.890625, 71.357067 ], [ -177.890625, 71.300793 ], [ -177.714844, 71.300793 ], [ -177.714844, 71.130988 ], [ -177.890625, 71.130988 ], [ -177.890625, 71.074056 ], [ -178.066406, 71.074056 ], [ -178.066406, 71.016960 ], [ -178.417969, 71.016960 ], [ -178.417969, 70.959697 ], [ -178.593750, 70.959697 ], [ -178.593750, 70.902268 ], [ -179.296875, 70.902268 ], [ -179.296875, 70.844673 ], [ -180.000000, 70.844673 ], [ -180.878906, 70.844673 ], [ -180.878906, 71.244356 ], [ -180.703125, 71.244356 ], [ -180.703125, 71.300793 ], [ -180.527344, 71.300793 ], [ -180.527344, 71.357067 ], [ -180.351562, 71.357067 ], [ -180.351562, 71.413177 ], [ -180.175781, 71.413177 ], [ -180.175781, 71.469124 ], [ -180.000000, 71.469124 ], [ -180.000000, 71.580532 ], [ -179.121094, 71.580532 ] ] ] ] } } ] } ] } , @@ -1388,261 +1380,259 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.607120 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.402163 ], [ -135.527344, -74.402163 ], [ -135.527344, -74.354828 ], [ -135.175781, -74.354828 ], [ -135.175781, -74.307353 ], [ -135.000000, -74.307353 ], [ -135.000000, -74.354828 ], [ -134.472656, -74.354828 ], [ -134.472656, -74.402163 ], [ -134.121094, -74.402163 ], [ -134.121094, -74.449358 ], [ -133.417969, -74.449358 ], [ -133.417969, -74.402163 ], [ -132.890625, -74.402163 ], [ -132.890625, -74.354828 ], [ -132.363281, -74.354828 ], [ -132.363281, -74.307353 ], [ -132.187500, -74.307353 ], [ -132.187500, -74.354828 ], [ -131.835938, -74.354828 ], [ -131.835938, -74.402163 ], [ -131.484375, -74.402163 ], [ -131.484375, -74.449358 ], [ -131.132812, -74.449358 ], [ -131.132812, -74.496413 ], [ -130.078125, -74.496413 ], [ -130.078125, -74.449358 ], [ -129.199219, -74.449358 ], [ -129.199219, -74.402163 ], [ -128.847656, -74.402163 ], [ -128.847656, -74.354828 ], [ -128.496094, -74.354828 ], [ -128.496094, -74.307353 ], [ -128.144531, -74.307353 ], [ -128.144531, -74.354828 ], [ -127.441406, -74.354828 ], [ -127.441406, -74.402163 ], [ -126.562500, -74.402163 ], [ -126.562500, -74.449358 ], [ -125.859375, -74.449358 ], [ -125.859375, -74.496413 ], [ -119.531250, -74.496413 ], [ -119.531250, -74.449358 ], [ -119.355469, -74.449358 ], [ -119.355469, -74.402163 ], [ -119.179688, -74.402163 ], [ -119.179688, -74.307353 ], [ -119.003906, -74.307353 ], [ -119.003906, -74.259738 ], [ -118.828125, -74.259738 ], [ -118.828125, -74.211983 ], [ -118.652344, -74.211983 ], [ -118.652344, -74.164085 ], [ -118.300781, -74.164085 ], [ -118.300781, -74.116047 ], [ -117.949219, -74.116047 ], [ -117.949219, -74.067866 ], [ -117.597656, -74.067866 ], [ -117.597656, -74.019543 ], [ -117.421875, -74.019543 ], [ -117.421875, -74.067866 ], [ -117.070312, -74.067866 ], [ -117.070312, -74.116047 ], [ -116.894531, -74.116047 ], [ -116.894531, -74.164085 ], [ -116.718750, -74.164085 ], [ -116.718750, -74.211983 ], [ -116.367188, -74.211983 ], [ -116.367188, -74.259738 ], [ -116.015625, -74.259738 ], [ -116.015625, -74.211983 ], [ -115.664062, -74.211983 ], [ -115.664062, -74.164085 ], [ -115.312500, -74.164085 ], [ -115.312500, -74.116047 ], [ -114.960938, -74.116047 ], [ -114.960938, -74.067866 ], [ -114.785156, -74.067866 ], [ -114.785156, -74.019543 ], [ -114.609375, -74.019543 ], [ -114.609375, -73.971078 ], [ -114.433594, -73.971078 ], [ -114.433594, -73.873717 ], [ -114.257812, -73.873717 ], [ -114.257812, -73.824820 ], [ -114.082031, -73.824820 ], [ -114.082031, -73.775780 ], [ -113.730469, -73.775780 ], [ -113.730469, -73.873717 ], [ -113.554688, -73.873717 ], [ -113.554688, -73.971078 ], [ -113.378906, -73.971078 ], [ -113.378906, -74.116047 ], [ -113.203125, -74.116047 ], [ -113.203125, -74.307353 ], [ -113.027344, -74.307353 ], [ -113.027344, -74.449358 ], [ -112.851562, -74.449358 ], [ -112.851562, -74.543330 ], [ -112.675781, -74.543330 ], [ -112.675781, -74.636748 ], [ -112.500000, -74.636748 ], [ -112.500000, -74.729615 ], [ -112.148438, -74.729615 ], [ -112.148438, -74.683250 ], [ -111.972656, -74.683250 ], [ -111.972656, -74.636748 ], [ -111.796875, -74.636748 ], [ -111.796875, -74.543330 ], [ -111.621094, -74.543330 ], [ -111.621094, -74.496413 ], [ -111.445312, -74.496413 ], [ -111.445312, -74.449358 ], [ -111.093750, -74.449358 ], [ -111.093750, -74.496413 ], [ -110.917969, -74.496413 ], [ -110.917969, -74.543330 ], [ -110.742188, -74.543330 ], [ -110.742188, -74.590108 ], [ -110.566406, -74.590108 ], [ -110.566406, -74.683250 ], [ -110.390625, -74.683250 ], [ -110.390625, -74.729615 ], [ -110.214844, -74.729615 ], [ -110.214844, -74.775843 ], [ -109.863281, -74.775843 ], [ -109.863281, -74.821934 ], [ -109.511719, -74.821934 ], [ -109.511719, -74.867889 ], [ -108.984375, -74.867889 ], [ -108.984375, -74.913708 ], [ -108.632812, -74.913708 ], [ -108.632812, -74.959392 ], [ -108.457031, -74.959392 ], [ -108.457031, -75.004940 ], [ -108.281250, -75.004940 ], [ -108.281250, -75.050354 ], [ -108.105469, -75.050354 ], [ -108.105469, -75.095633 ], [ -107.929688, -75.095633 ], [ -107.929688, -75.140778 ], [ -107.753906, -75.140778 ], [ -107.753906, -75.185789 ], [ -106.699219, -75.185789 ], [ -106.699219, -75.140778 ], [ -105.996094, -75.140778 ], [ -105.996094, -75.095633 ], [ -105.644531, -75.095633 ], [ -105.644531, -75.050354 ], [ -105.292969, -75.050354 ], [ -105.292969, -75.004940 ], [ -104.941406, -75.004940 ], [ -104.941406, -74.959392 ], [ -104.238281, -74.959392 ], [ -104.238281, -75.004940 ], [ -103.183594, -75.004940 ], [ -103.183594, -75.050354 ], [ -102.832031, -75.050354 ], [ -102.832031, -75.095633 ], [ -102.304688, -75.095633 ], [ -102.304688, -75.140778 ], [ -101.953125, -75.140778 ], [ -101.953125, -75.185789 ], [ -101.601562, -75.185789 ], [ -101.601562, -75.230667 ], [ -101.250000, -75.230667 ], [ -101.250000, -75.275413 ], [ -100.898438, -75.275413 ], [ -100.898438, -75.320025 ], [ -100.722656, -75.320025 ], [ -100.722656, -75.275413 ], [ -100.546875, -75.275413 ], [ -100.546875, -75.095633 ], [ -100.371094, -75.095633 ], [ -100.371094, -74.959392 ], [ -100.195312, -74.959392 ], [ -100.195312, -74.821934 ], [ -100.371094, -74.821934 ], [ -100.371094, -74.729615 ], [ -100.546875, -74.729615 ], [ -100.546875, -74.636748 ], [ -100.722656, -74.636748 ], [ -100.722656, -74.496413 ], [ -100.898438, -74.496413 ], [ -100.898438, -74.354828 ], [ -101.074219, -74.354828 ], [ -101.074219, -74.259738 ], [ -101.250000, -74.259738 ], [ -101.250000, -74.164085 ], [ -101.953125, -74.164085 ], [ -101.953125, -74.116047 ], [ -102.480469, -74.116047 ], [ -102.480469, -74.067866 ], [ -102.656250, -74.067866 ], [ -102.656250, -73.971078 ], [ -102.832031, -73.971078 ], [ -102.832031, -73.873717 ], [ -103.007812, -73.873717 ], [ -103.007812, -73.775780 ], [ -103.183594, -73.775780 ], [ -103.183594, -73.578167 ], [ -103.359375, -73.578167 ], [ -103.359375, -73.226700 ], [ -103.535156, -73.226700 ], [ -103.535156, -72.816074 ], [ -103.710938, -72.816074 ], [ -103.710938, -72.659588 ], [ -103.359375, -72.659588 ], [ -103.359375, -72.711903 ], [ -103.007812, -72.711903 ], [ -103.007812, -72.764065 ], [ -102.304688, -72.764065 ], [ -102.304688, -72.816074 ], [ -100.898438, -72.816074 ], [ -100.898438, -72.764065 ], [ -100.195312, -72.764065 ], [ -100.195312, -72.816074 ], [ -99.843750, -72.816074 ], [ -99.843750, -72.867930 ], [ -99.492188, -72.867930 ], [ -99.492188, -72.919635 ], [ -99.140625, -72.919635 ], [ -99.140625, -72.971189 ], [ -98.964844, -72.971189 ], [ -98.964844, -73.022592 ], [ -98.789062, -73.022592 ], [ -98.789062, -73.073844 ], [ -98.613281, -73.073844 ], [ -98.613281, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.175897 ], [ -98.261719, -73.175897 ], [ -98.261719, -73.226700 ], [ -98.085938, -73.226700 ], [ -98.085938, -73.327858 ], [ -97.910156, -73.327858 ], [ -97.910156, -73.528399 ], [ -97.734375, -73.528399 ], [ -97.734375, -73.578167 ], [ -97.207031, -73.578167 ], [ -97.207031, -73.627789 ], [ -95.976562, -73.627789 ], [ -95.976562, -73.578167 ], [ -95.625000, -73.578167 ], [ -95.625000, -73.528399 ], [ -95.273438, -73.528399 ], [ -95.273438, -73.478485 ], [ -94.746094, -73.478485 ], [ -94.746094, -73.428424 ], [ -94.394531, -73.428424 ], [ -94.394531, -73.378215 ], [ -94.042969, -73.378215 ], [ -94.042969, -73.327858 ], [ -93.691406, -73.327858 ], [ -93.691406, -73.277353 ], [ -93.339844, -73.277353 ], [ -93.339844, -73.226700 ], [ -92.636719, -73.226700 ], [ -92.636719, -73.175897 ], [ -92.460938, -73.175897 ], [ -92.460938, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.277353 ], [ -91.933594, -73.277353 ], [ -91.933594, -73.327858 ], [ -91.582031, -73.327858 ], [ -91.582031, -73.378215 ], [ -90.703125, -73.378215 ], [ -90.703125, -73.327858 ], [ -90.175781, -73.327858 ], [ -90.175781, -73.277353 ], [ -90.000000, -73.277353 ], [ -90.000000, -73.124945 ], [ -89.824219, -73.124945 ], [ -89.824219, -72.971189 ], [ -89.648438, -72.971189 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ] ] ], [ [ [ -121.992188, -73.378215 ], [ -121.992188, -73.428424 ], [ -121.640625, -73.428424 ], [ -121.640625, -73.478485 ], [ -121.289062, -73.478485 ], [ -121.289062, -73.528399 ], [ -120.937500, -73.528399 ], [ -120.937500, -73.578167 ], [ -120.585938, -73.578167 ], [ -120.585938, -73.627789 ], [ -120.234375, -73.627789 ], [ -120.234375, -73.677264 ], [ -119.707031, -73.677264 ], [ -119.707031, -73.627789 ], [ -119.355469, -73.627789 ], [ -119.355469, -73.578167 ], [ -119.003906, -73.578167 ], [ -119.003906, -73.528399 ], [ -118.828125, -73.528399 ], [ -118.828125, -73.627789 ], [ -119.003906, -73.627789 ], [ -119.003906, -73.726595 ], [ -119.179688, -73.726595 ], [ -119.179688, -73.824820 ], [ -119.355469, -73.824820 ], [ -119.355469, -73.873717 ], [ -119.531250, -73.873717 ], [ -119.531250, -73.922469 ], [ -119.707031, -73.922469 ], [ -119.707031, -73.971078 ], [ -119.882812, -73.971078 ], [ -119.882812, -74.019543 ], [ -120.058594, -74.019543 ], [ -120.058594, -74.067866 ], [ -121.113281, -74.067866 ], [ -121.113281, -74.019543 ], [ -121.816406, -74.019543 ], [ -121.816406, -73.971078 ], [ -121.992188, -73.971078 ], [ -121.992188, -73.922469 ], [ -122.167969, -73.922469 ], [ -122.167969, -73.824820 ], [ -122.343750, -73.824820 ], [ -122.343750, -73.775780 ], [ -122.519531, -73.775780 ], [ -122.519531, -73.726595 ], [ -122.695312, -73.726595 ], [ -122.695312, -73.627789 ], [ -122.519531, -73.627789 ], [ -122.519531, -73.428424 ], [ -122.343750, -73.428424 ], [ -122.343750, -73.378215 ], [ -121.992188, -73.378215 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -124.980469, -73.824820 ], [ -124.980469, -73.775780 ], [ -125.683594, -73.775780 ], [ -125.683594, -73.726595 ], [ -126.035156, -73.726595 ], [ -126.035156, -73.677264 ], [ -126.386719, -73.677264 ], [ -126.386719, -73.627789 ], [ -126.738281, -73.627789 ], [ -126.738281, -73.578167 ], [ -126.914062, -73.578167 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.478485 ], [ -127.089844, -73.478485 ], [ -127.089844, -73.428424 ], [ -126.914062, -73.428424 ], [ -126.914062, -73.327858 ], [ -126.738281, -73.327858 ], [ -126.738281, -73.277353 ], [ -126.386719, -73.277353 ], [ -126.386719, -73.327858 ], [ -126.210938, -73.327858 ], [ -126.210938, -73.378215 ], [ -125.859375, -73.378215 ], [ -125.859375, -73.428424 ], [ -125.683594, -73.428424 ], [ -125.683594, -73.478485 ], [ -125.507812, -73.478485 ], [ -125.507812, -73.528399 ], [ -125.332031, -73.528399 ], [ -125.332031, -73.578167 ], [ -125.156250, -73.578167 ], [ -125.156250, -73.627789 ], [ -124.980469, -73.627789 ], [ -124.980469, -73.677264 ], [ -124.804688, -73.677264 ], [ -124.804688, -73.726595 ], [ -124.628906, -73.726595 ], [ -124.628906, -73.775780 ], [ -124.453125, -73.775780 ], [ -124.453125, -73.824820 ] ] ], [ [ [ -101.601562, -71.691293 ], [ -101.601562, -71.746432 ], [ -101.250000, -71.746432 ], [ -101.250000, -71.801410 ], [ -100.722656, -71.801410 ], [ -100.722656, -71.856229 ], [ -99.843750, -71.856229 ], [ -99.843750, -71.910888 ], [ -98.964844, -71.910888 ], [ -98.964844, -71.965388 ], [ -98.613281, -71.965388 ], [ -98.613281, -72.019729 ], [ -98.261719, -72.019729 ], [ -98.261719, -72.073911 ], [ -97.558594, -72.073911 ], [ -97.558594, -72.019729 ], [ -97.031250, -72.019729 ], [ -97.031250, -71.965388 ], [ -96.855469, -71.965388 ], [ -96.855469, -72.073911 ], [ -96.679688, -72.073911 ], [ -96.679688, -72.181804 ], [ -96.503906, -72.181804 ], [ -96.503906, -72.342464 ], [ -96.328125, -72.342464 ], [ -96.328125, -72.448792 ], [ -96.152344, -72.448792 ], [ -96.152344, -72.501722 ], [ -96.679688, -72.501722 ], [ -96.679688, -72.448792 ], [ -97.558594, -72.448792 ], [ -97.558594, -72.501722 ], [ -98.964844, -72.501722 ], [ -98.964844, -72.448792 ], [ -100.019531, -72.448792 ], [ -100.019531, -72.501722 ], [ -100.898438, -72.501722 ], [ -100.898438, -72.448792 ], [ -101.250000, -72.448792 ], [ -101.250000, -72.395706 ], [ -101.425781, -72.395706 ], [ -101.425781, -72.342464 ], [ -101.777344, -72.342464 ], [ -101.777344, -72.235514 ], [ -101.953125, -72.235514 ], [ -101.953125, -72.127936 ], [ -102.128906, -72.127936 ], [ -102.128906, -72.019729 ], [ -102.304688, -72.019729 ], [ -102.304688, -71.910888 ], [ -102.128906, -71.910888 ], [ -102.128906, -71.801410 ], [ -101.953125, -71.801410 ], [ -101.953125, -71.746432 ], [ -101.777344, -71.746432 ], [ -101.777344, -71.691293 ], [ -101.601562, -71.691293 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -124.277344, -73.824820 ], [ -124.277344, -73.873717 ], [ -124.453125, -73.873717 ], [ -124.453125, -73.824820 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, -72.607120 ], [ -89.121094, -79.335219 ], [ -135.878906, -79.335219 ], [ -135.878906, -74.402163 ], [ -135.703125, -74.402163 ], [ -135.703125, -74.354828 ], [ -135.527344, -74.354828 ], [ -135.527344, -74.307353 ], [ -135.351562, -74.307353 ], [ -135.351562, -74.259738 ], [ -135.175781, -74.259738 ], [ -135.175781, -74.307353 ], [ -134.824219, -74.307353 ], [ -134.824219, -74.354828 ], [ -134.296875, -74.354828 ], [ -134.296875, -74.402163 ], [ -133.417969, -74.402163 ], [ -133.417969, -74.354828 ], [ -132.890625, -74.354828 ], [ -132.890625, -74.307353 ], [ -132.539062, -74.307353 ], [ -132.539062, -74.259738 ], [ -132.363281, -74.259738 ], [ -132.363281, -74.307353 ], [ -132.011719, -74.307353 ], [ -132.011719, -74.354828 ], [ -131.660156, -74.354828 ], [ -131.660156, -74.402163 ], [ -131.308594, -74.402163 ], [ -131.308594, -74.449358 ], [ -129.375000, -74.449358 ], [ -129.375000, -74.402163 ], [ -128.847656, -74.402163 ], [ -128.847656, -74.354828 ], [ -128.496094, -74.354828 ], [ -128.496094, -74.307353 ], [ -128.144531, -74.307353 ], [ -128.144531, -74.354828 ], [ -127.441406, -74.354828 ], [ -127.441406, -74.402163 ], [ -126.738281, -74.402163 ], [ -126.738281, -74.449358 ], [ -126.035156, -74.449358 ], [ -126.035156, -74.496413 ], [ -124.628906, -74.496413 ], [ -124.628906, -74.449358 ], [ -123.574219, -74.449358 ], [ -123.574219, -74.496413 ], [ -120.234375, -74.496413 ], [ -120.234375, -74.449358 ], [ -119.531250, -74.449358 ], [ -119.531250, -74.402163 ], [ -119.355469, -74.402163 ], [ -119.355469, -74.307353 ], [ -119.179688, -74.307353 ], [ -119.179688, -74.259738 ], [ -119.003906, -74.259738 ], [ -119.003906, -74.211983 ], [ -118.828125, -74.211983 ], [ -118.828125, -74.164085 ], [ -118.476562, -74.164085 ], [ -118.476562, -74.116047 ], [ -118.125000, -74.116047 ], [ -118.125000, -74.067866 ], [ -117.773438, -74.067866 ], [ -117.773438, -74.019543 ], [ -117.597656, -74.019543 ], [ -117.597656, -74.067866 ], [ -117.246094, -74.067866 ], [ -117.246094, -74.116047 ], [ -116.894531, -74.116047 ], [ -116.894531, -74.164085 ], [ -116.542969, -74.164085 ], [ -116.542969, -74.211983 ], [ -116.015625, -74.211983 ], [ -116.015625, -74.164085 ], [ -115.664062, -74.164085 ], [ -115.664062, -74.116047 ], [ -115.312500, -74.116047 ], [ -115.312500, -74.067866 ], [ -114.960938, -74.067866 ], [ -114.960938, -73.971078 ], [ -114.785156, -73.971078 ], [ -114.785156, -73.922469 ], [ -114.609375, -73.922469 ], [ -114.609375, -73.873717 ], [ -114.433594, -73.873717 ], [ -114.433594, -73.775780 ], [ -114.257812, -73.775780 ], [ -114.257812, -73.726595 ], [ -113.906250, -73.726595 ], [ -113.906250, -73.824820 ], [ -113.730469, -73.824820 ], [ -113.730469, -73.922469 ], [ -113.554688, -73.922469 ], [ -113.554688, -74.019543 ], [ -113.378906, -74.019543 ], [ -113.378906, -74.116047 ], [ -113.203125, -74.116047 ], [ -113.203125, -74.307353 ], [ -113.027344, -74.307353 ], [ -113.027344, -74.402163 ], [ -112.851562, -74.402163 ], [ -112.851562, -74.496413 ], [ -112.675781, -74.496413 ], [ -112.675781, -74.590108 ], [ -112.500000, -74.590108 ], [ -112.500000, -74.683250 ], [ -112.148438, -74.683250 ], [ -112.148438, -74.636748 ], [ -111.972656, -74.636748 ], [ -111.972656, -74.590108 ], [ -111.796875, -74.590108 ], [ -111.796875, -74.543330 ], [ -111.621094, -74.543330 ], [ -111.621094, -74.496413 ], [ -111.445312, -74.496413 ], [ -111.445312, -74.449358 ], [ -111.093750, -74.449358 ], [ -111.093750, -74.496413 ], [ -110.917969, -74.496413 ], [ -110.917969, -74.590108 ], [ -110.742188, -74.590108 ], [ -110.742188, -74.636748 ], [ -110.566406, -74.636748 ], [ -110.566406, -74.683250 ], [ -110.390625, -74.683250 ], [ -110.390625, -74.775843 ], [ -110.039062, -74.775843 ], [ -110.039062, -74.821934 ], [ -109.335938, -74.821934 ], [ -109.335938, -74.867889 ], [ -108.808594, -74.867889 ], [ -108.808594, -74.913708 ], [ -108.632812, -74.913708 ], [ -108.632812, -74.959392 ], [ -108.457031, -74.959392 ], [ -108.457031, -75.004940 ], [ -108.105469, -75.004940 ], [ -108.105469, -75.050354 ], [ -107.929688, -75.050354 ], [ -107.929688, -75.095633 ], [ -107.753906, -75.095633 ], [ -107.753906, -75.140778 ], [ -106.699219, -75.140778 ], [ -106.699219, -75.095633 ], [ -105.996094, -75.095633 ], [ -105.996094, -75.050354 ], [ -105.644531, -75.050354 ], [ -105.644531, -75.004940 ], [ -105.292969, -75.004940 ], [ -105.292969, -74.959392 ], [ -104.941406, -74.959392 ], [ -104.941406, -74.913708 ], [ -104.414062, -74.913708 ], [ -104.414062, -74.959392 ], [ -103.359375, -74.959392 ], [ -103.359375, -75.004940 ], [ -103.007812, -75.004940 ], [ -103.007812, -75.050354 ], [ -102.480469, -75.050354 ], [ -102.480469, -75.095633 ], [ -102.128906, -75.095633 ], [ -102.128906, -75.140778 ], [ -101.777344, -75.140778 ], [ -101.777344, -75.185789 ], [ -101.425781, -75.185789 ], [ -101.425781, -75.230667 ], [ -101.074219, -75.230667 ], [ -101.074219, -75.275413 ], [ -100.722656, -75.275413 ], [ -100.722656, -75.230667 ], [ -100.546875, -75.230667 ], [ -100.546875, -75.095633 ], [ -100.371094, -75.095633 ], [ -100.371094, -74.959392 ], [ -100.195312, -74.959392 ], [ -100.195312, -74.821934 ], [ -100.371094, -74.821934 ], [ -100.371094, -74.729615 ], [ -100.546875, -74.729615 ], [ -100.546875, -74.636748 ], [ -100.722656, -74.636748 ], [ -100.722656, -74.543330 ], [ -100.898438, -74.543330 ], [ -100.898438, -74.449358 ], [ -101.074219, -74.449358 ], [ -101.074219, -74.259738 ], [ -101.250000, -74.259738 ], [ -101.250000, -74.164085 ], [ -101.777344, -74.164085 ], [ -101.777344, -74.116047 ], [ -102.480469, -74.116047 ], [ -102.480469, -74.067866 ], [ -102.656250, -74.067866 ], [ -102.656250, -74.019543 ], [ -102.832031, -74.019543 ], [ -102.832031, -73.922469 ], [ -103.007812, -73.922469 ], [ -103.007812, -73.824820 ], [ -103.183594, -73.824820 ], [ -103.183594, -73.528399 ], [ -103.359375, -73.528399 ], [ -103.359375, -73.175897 ], [ -103.535156, -73.175897 ], [ -103.535156, -72.816074 ], [ -103.710938, -72.816074 ], [ -103.710938, -72.659588 ], [ -103.359375, -72.659588 ], [ -103.359375, -72.711903 ], [ -102.480469, -72.711903 ], [ -102.480469, -72.764065 ], [ -100.898438, -72.764065 ], [ -100.898438, -72.711903 ], [ -100.195312, -72.711903 ], [ -100.195312, -72.764065 ], [ -99.843750, -72.764065 ], [ -99.843750, -72.816074 ], [ -99.492188, -72.816074 ], [ -99.492188, -72.867930 ], [ -99.140625, -72.867930 ], [ -99.140625, -72.919635 ], [ -98.964844, -72.919635 ], [ -98.964844, -72.971189 ], [ -98.789062, -72.971189 ], [ -98.789062, -73.022592 ], [ -98.613281, -73.022592 ], [ -98.613281, -73.124945 ], [ -98.437500, -73.124945 ], [ -98.437500, -73.175897 ], [ -98.261719, -73.175897 ], [ -98.261719, -73.277353 ], [ -98.085938, -73.277353 ], [ -98.085938, -73.378215 ], [ -97.910156, -73.378215 ], [ -97.910156, -73.478485 ], [ -97.734375, -73.478485 ], [ -97.734375, -73.528399 ], [ -97.207031, -73.528399 ], [ -97.207031, -73.578167 ], [ -95.976562, -73.578167 ], [ -95.976562, -73.528399 ], [ -95.273438, -73.528399 ], [ -95.273438, -73.478485 ], [ -94.746094, -73.478485 ], [ -94.746094, -73.428424 ], [ -94.394531, -73.428424 ], [ -94.394531, -73.378215 ], [ -94.042969, -73.378215 ], [ -94.042969, -73.327858 ], [ -93.691406, -73.327858 ], [ -93.691406, -73.277353 ], [ -93.339844, -73.277353 ], [ -93.339844, -73.226700 ], [ -92.988281, -73.226700 ], [ -92.988281, -73.175897 ], [ -92.636719, -73.175897 ], [ -92.636719, -73.124945 ], [ -92.460938, -73.124945 ], [ -92.460938, -73.175897 ], [ -92.285156, -73.175897 ], [ -92.285156, -73.226700 ], [ -92.109375, -73.226700 ], [ -92.109375, -73.277353 ], [ -91.933594, -73.277353 ], [ -91.933594, -73.327858 ], [ -91.757812, -73.327858 ], [ -91.757812, -73.378215 ], [ -91.054688, -73.378215 ], [ -91.054688, -73.327858 ], [ -90.351562, -73.327858 ], [ -90.351562, -73.277353 ], [ -90.175781, -73.277353 ], [ -90.175781, -73.226700 ], [ -90.000000, -73.226700 ], [ -90.000000, -73.073844 ], [ -89.824219, -73.073844 ], [ -89.824219, -72.919635 ], [ -89.648438, -72.919635 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ] ] ], [ [ [ -122.167969, -73.327858 ], [ -122.167969, -73.378215 ], [ -121.816406, -73.378215 ], [ -121.816406, -73.428424 ], [ -121.464844, -73.428424 ], [ -121.464844, -73.478485 ], [ -121.113281, -73.478485 ], [ -121.113281, -73.528399 ], [ -120.761719, -73.528399 ], [ -120.761719, -73.578167 ], [ -120.410156, -73.578167 ], [ -120.410156, -73.627789 ], [ -119.707031, -73.627789 ], [ -119.707031, -73.578167 ], [ -119.355469, -73.578167 ], [ -119.355469, -73.528399 ], [ -119.003906, -73.528399 ], [ -119.003906, -73.478485 ], [ -118.828125, -73.478485 ], [ -118.828125, -73.578167 ], [ -119.003906, -73.578167 ], [ -119.003906, -73.677264 ], [ -119.179688, -73.677264 ], [ -119.179688, -73.775780 ], [ -119.355469, -73.775780 ], [ -119.355469, -73.873717 ], [ -119.531250, -73.873717 ], [ -119.531250, -73.922469 ], [ -119.707031, -73.922469 ], [ -119.707031, -73.971078 ], [ -119.882812, -73.971078 ], [ -119.882812, -74.019543 ], [ -120.058594, -74.019543 ], [ -120.058594, -74.067866 ], [ -120.761719, -74.067866 ], [ -120.761719, -74.019543 ], [ -121.464844, -74.019543 ], [ -121.464844, -73.971078 ], [ -121.816406, -73.971078 ], [ -121.816406, -73.922469 ], [ -121.992188, -73.922469 ], [ -121.992188, -73.873717 ], [ -122.167969, -73.873717 ], [ -122.167969, -73.775780 ], [ -122.343750, -73.775780 ], [ -122.343750, -73.726595 ], [ -122.519531, -73.726595 ], [ -122.519531, -73.677264 ], [ -122.695312, -73.677264 ], [ -122.695312, -73.478485 ], [ -122.519531, -73.478485 ], [ -122.519531, -73.327858 ], [ -122.167969, -73.327858 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -125.156250, -73.824820 ], [ -125.156250, -73.775780 ], [ -125.859375, -73.775780 ], [ -125.859375, -73.726595 ], [ -126.210938, -73.726595 ], [ -126.210938, -73.677264 ], [ -126.562500, -73.677264 ], [ -126.562500, -73.627789 ], [ -126.738281, -73.627789 ], [ -126.738281, -73.578167 ], [ -126.914062, -73.578167 ], [ -126.914062, -73.528399 ], [ -127.265625, -73.528399 ], [ -127.265625, -73.478485 ], [ -127.441406, -73.478485 ], [ -127.441406, -73.428424 ], [ -127.265625, -73.428424 ], [ -127.265625, -73.378215 ], [ -127.089844, -73.378215 ], [ -127.089844, -73.327858 ], [ -126.738281, -73.327858 ], [ -126.738281, -73.277353 ], [ -126.386719, -73.277353 ], [ -126.386719, -73.327858 ], [ -126.210938, -73.327858 ], [ -126.210938, -73.378215 ], [ -126.035156, -73.378215 ], [ -126.035156, -73.428424 ], [ -125.859375, -73.428424 ], [ -125.859375, -73.478485 ], [ -125.683594, -73.478485 ], [ -125.683594, -73.528399 ], [ -125.507812, -73.528399 ], [ -125.507812, -73.578167 ], [ -125.332031, -73.578167 ], [ -125.332031, -73.627789 ], [ -125.156250, -73.627789 ], [ -125.156250, -73.677264 ], [ -124.804688, -73.677264 ], [ -124.804688, -73.726595 ], [ -124.628906, -73.726595 ], [ -124.628906, -73.775780 ], [ -124.453125, -73.775780 ], [ -124.453125, -73.824820 ] ] ], [ [ [ -101.601562, -71.691293 ], [ -101.601562, -71.746432 ], [ -100.898438, -71.746432 ], [ -100.898438, -71.801410 ], [ -100.371094, -71.801410 ], [ -100.371094, -71.856229 ], [ -99.667969, -71.856229 ], [ -99.667969, -71.910888 ], [ -98.964844, -71.910888 ], [ -98.964844, -71.965388 ], [ -98.261719, -71.965388 ], [ -98.261719, -72.019729 ], [ -97.558594, -72.019729 ], [ -97.558594, -71.965388 ], [ -97.031250, -71.965388 ], [ -97.031250, -71.910888 ], [ -96.855469, -71.910888 ], [ -96.855469, -72.019729 ], [ -96.679688, -72.019729 ], [ -96.679688, -72.235514 ], [ -96.503906, -72.235514 ], [ -96.503906, -72.448792 ], [ -96.328125, -72.448792 ], [ -96.328125, -72.501722 ], [ -96.679688, -72.501722 ], [ -96.679688, -72.448792 ], [ -97.031250, -72.448792 ], [ -97.031250, -72.395706 ], [ -97.558594, -72.395706 ], [ -97.558594, -72.448792 ], [ -98.964844, -72.448792 ], [ -98.964844, -72.395706 ], [ -99.667969, -72.395706 ], [ -99.667969, -72.448792 ], [ -100.371094, -72.448792 ], [ -100.371094, -72.501722 ], [ -101.074219, -72.501722 ], [ -101.074219, -72.448792 ], [ -101.425781, -72.448792 ], [ -101.425781, -72.395706 ], [ -101.601562, -72.395706 ], [ -101.601562, -72.342464 ], [ -101.953125, -72.342464 ], [ -101.953125, -72.235514 ], [ -102.128906, -72.235514 ], [ -102.128906, -72.073911 ], [ -102.304688, -72.073911 ], [ -102.304688, -71.965388 ], [ -102.480469, -71.965388 ], [ -102.480469, -71.856229 ], [ -102.304688, -71.856229 ], [ -102.304688, -71.801410 ], [ -101.953125, -71.801410 ], [ -101.953125, -71.746432 ], [ -101.777344, -71.746432 ], [ -101.777344, -71.691293 ], [ -101.601562, -71.691293 ] ] ], [ [ [ -124.453125, -73.824820 ], [ -124.277344, -73.824820 ], [ -124.277344, -73.873717 ], [ -124.453125, -73.873717 ], [ -124.453125, -73.824820 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -91.054688, 29.075375 ], [ -91.054688, 29.228890 ], [ -91.230469, 29.228890 ], [ -91.230469, 29.382175 ], [ -91.406250, 29.382175 ], [ -91.406250, 29.535230 ], [ -91.582031, 29.535230 ], [ -91.582031, 29.688053 ], [ -91.933594, 29.688053 ], [ -91.933594, 29.535230 ], [ -92.812500, 29.535230 ], [ -92.812500, 29.688053 ], [ -93.164062, 29.688053 ], [ -93.164062, 29.840644 ], [ -93.339844, 29.840644 ], [ -93.339844, 29.688053 ], [ -94.218750, 29.688053 ], [ -94.218750, 29.535230 ], [ -94.746094, 29.535230 ], [ -94.746094, 29.382175 ], [ -94.921875, 29.382175 ], [ -94.921875, 29.228890 ], [ -95.097656, 29.228890 ], [ -95.097656, 29.075375 ], [ -95.273438, 29.075375 ], [ -95.273438, 28.921631 ], [ -95.449219, 28.921631 ], [ -95.449219, 28.767659 ], [ -95.625000, 28.767659 ], [ -95.625000, 28.613459 ], [ -95.976562, 28.613459 ], [ -95.976562, 28.459033 ], [ -96.328125, 28.459033 ], [ -96.328125, 28.304381 ], [ -96.679688, 28.304381 ], [ -96.679688, 28.149503 ], [ -96.855469, 28.149503 ], [ -96.855469, 27.994401 ], [ -97.031250, 27.994401 ], [ -97.031250, 27.839076 ], [ -97.207031, 27.839076 ], [ -97.207031, 27.527758 ], [ -97.382812, 27.527758 ], [ -97.382812, 25.958045 ], [ -97.207031, 25.958045 ], [ -97.207031, 25.799891 ], [ -97.910156, 25.799891 ], [ -97.910156, 25.958045 ], [ -98.261719, 25.958045 ], [ -98.261719, 26.115986 ], [ -98.613281, 26.115986 ], [ -98.613281, 26.273714 ], [ -98.964844, 26.273714 ], [ -98.964844, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 26.745610 ], [ -99.316406, 26.745610 ], [ -99.316406, 27.215556 ], [ -99.492188, 27.215556 ], [ -99.492188, 27.527758 ], [ -99.667969, 27.527758 ], [ -99.667969, 27.683528 ], [ -99.843750, 27.683528 ], [ -99.843750, 27.839076 ], [ -100.019531, 27.839076 ], [ -100.019531, 27.994401 ], [ -100.195312, 27.994401 ], [ -100.195312, 28.459033 ], [ -100.371094, 28.459033 ], [ -100.371094, 28.767659 ], [ -100.546875, 28.767659 ], [ -100.546875, 29.075375 ], [ -100.722656, 29.075375 ], [ -100.722656, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 29.382175 ], [ -101.074219, 29.382175 ], [ -101.074219, 29.535230 ], [ -101.425781, 29.535230 ], [ -101.425781, 29.688053 ], [ -101.601562, 29.688053 ], [ -101.601562, 29.840644 ], [ -101.953125, 29.840644 ], [ -101.953125, 29.688053 ], [ -102.480469, 29.688053 ], [ -102.480469, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 29.382175 ], [ -102.832031, 29.382175 ], [ -102.832031, 29.075375 ], [ -103.007812, 29.075375 ], [ -103.007812, 28.921631 ], [ -103.535156, 28.921631 ], [ -103.535156, 29.075375 ], [ -103.886719, 29.075375 ], [ -103.886719, 29.228890 ], [ -104.062500, 29.228890 ], [ -104.062500, 29.382175 ], [ -104.414062, 29.382175 ], [ -104.414062, 29.688053 ], [ -104.589844, 29.688053 ], [ -104.589844, 29.993002 ], [ -104.765625, 29.993002 ], [ -104.765625, 30.145127 ], [ -104.941406, 30.145127 ], [ -104.941406, 30.448674 ], [ -105.117188, 30.448674 ], [ -105.117188, 30.600094 ], [ -105.292969, 30.600094 ], [ -105.292969, 30.751278 ], [ -105.468750, 30.751278 ], [ -105.468750, 30.902225 ], [ -105.644531, 30.902225 ], [ -105.644531, 31.052934 ], [ -105.820312, 31.052934 ], [ -105.820312, 31.203405 ], [ -106.171875, 31.203405 ], [ -106.171875, 31.353637 ], [ -106.347656, 31.353637 ], [ -106.347656, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.445312, 31.353637 ], [ -111.445312, 31.503629 ], [ -111.796875, 31.503629 ], [ -111.796875, 31.653381 ], [ -112.324219, 31.653381 ], [ -112.324219, 31.802893 ], [ -112.851562, 31.802893 ], [ -112.851562, 31.952162 ], [ -113.203125, 31.952162 ], [ -113.203125, 32.101190 ], [ -113.730469, 32.101190 ], [ -113.730469, 32.249974 ], [ -114.257812, 32.249974 ], [ -114.257812, 32.398516 ], [ -114.609375, 32.398516 ], [ -114.609375, 32.546813 ], [ -114.785156, 32.546813 ], [ -114.785156, 32.694866 ], [ -115.312500, 32.694866 ], [ -115.312500, 32.546813 ], [ -117.070312, 32.546813 ], [ -117.070312, 32.694866 ], [ -117.246094, 32.694866 ], [ -117.246094, 32.990236 ], [ -117.421875, 32.990236 ], [ -117.421875, 33.137551 ], [ -117.597656, 33.137551 ], [ -117.597656, 33.284620 ], [ -117.773438, 33.284620 ], [ -117.773438, 33.431441 ], [ -117.949219, 33.431441 ], [ -117.949219, 33.578015 ], [ -118.300781, 33.578015 ], [ -118.300781, 33.724340 ], [ -118.476562, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.179688, 34.016242 ], [ -119.179688, 34.161818 ], [ -119.355469, 34.161818 ], [ -119.355469, 34.307144 ], [ -120.058594, 34.307144 ], [ -120.058594, 34.452218 ], [ -120.585938, 34.452218 ], [ -120.585938, 34.885931 ], [ -120.761719, 34.885931 ], [ -120.761719, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.460670 ], [ -121.113281, 35.460670 ], [ -121.113281, 35.603719 ], [ -121.289062, 35.603719 ], [ -121.289062, 35.746512 ], [ -121.464844, 35.746512 ], [ -121.464844, 36.031332 ], [ -121.640625, 36.031332 ], [ -121.640625, 36.315125 ], [ -121.816406, 36.315125 ], [ -121.816406, 36.597889 ], [ -121.992188, 36.597889 ], [ -121.992188, 36.879621 ], [ -122.167969, 36.879621 ], [ -122.167969, 37.160317 ], [ -122.343750, 37.160317 ], [ -122.343750, 37.439974 ], [ -122.519531, 37.439974 ], [ -122.519531, 37.718590 ], [ -122.695312, 37.718590 ], [ -122.695312, 37.996163 ], [ -122.871094, 37.996163 ], [ -122.871094, 38.134557 ], [ -123.046875, 38.134557 ], [ -123.046875, 38.272689 ], [ -123.222656, 38.272689 ], [ -123.222656, 38.548165 ], [ -123.398438, 38.548165 ], [ -123.398438, 38.685510 ], [ -123.574219, 38.685510 ], [ -123.574219, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -123.925781, 39.368279 ], [ -123.925781, 39.774769 ], [ -124.101562, 39.774769 ], [ -124.101562, 40.044438 ], [ -124.277344, 40.044438 ], [ -124.277344, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.446947 ], [ -124.277344, 40.446947 ], [ -124.277344, 40.847060 ], [ -124.101562, 40.847060 ], [ -124.101562, 41.376809 ], [ -124.277344, 41.376809 ], [ -124.277344, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.297018 ], [ -89.648438, 30.297018 ], [ -89.648438, 30.145127 ], [ -89.472656, 30.145127 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -91.054688, 29.228890 ], [ -91.054688, 29.382175 ], [ -91.406250, 29.382175 ], [ -91.406250, 29.535230 ], [ -91.757812, 29.535230 ], [ -91.757812, 29.688053 ], [ -93.164062, 29.688053 ], [ -93.164062, 29.840644 ], [ -94.042969, 29.840644 ], [ -94.042969, 29.688053 ], [ -94.394531, 29.688053 ], [ -94.394531, 29.535230 ], [ -94.746094, 29.535230 ], [ -94.746094, 29.382175 ], [ -94.921875, 29.382175 ], [ -94.921875, 29.228890 ], [ -95.097656, 29.228890 ], [ -95.097656, 29.075375 ], [ -95.273438, 29.075375 ], [ -95.273438, 28.921631 ], [ -95.449219, 28.921631 ], [ -95.449219, 28.767659 ], [ -95.800781, 28.767659 ], [ -95.800781, 28.613459 ], [ -96.328125, 28.613459 ], [ -96.328125, 28.459033 ], [ -96.679688, 28.459033 ], [ -96.679688, 28.304381 ], [ -96.855469, 28.304381 ], [ -96.855469, 28.149503 ], [ -97.031250, 28.149503 ], [ -97.031250, 27.839076 ], [ -97.207031, 27.839076 ], [ -97.207031, 27.683528 ], [ -97.382812, 27.683528 ], [ -97.382812, 26.115986 ], [ -97.207031, 26.115986 ], [ -97.207031, 25.958045 ], [ -98.085938, 25.958045 ], [ -98.085938, 26.115986 ], [ -98.613281, 26.115986 ], [ -98.613281, 26.273714 ], [ -98.964844, 26.273714 ], [ -98.964844, 26.431228 ], [ -99.140625, 26.431228 ], [ -99.140625, 26.588527 ], [ -99.316406, 26.588527 ], [ -99.316406, 27.059126 ], [ -99.492188, 27.059126 ], [ -99.492188, 27.371767 ], [ -99.667969, 27.371767 ], [ -99.667969, 27.683528 ], [ -99.843750, 27.683528 ], [ -99.843750, 27.839076 ], [ -100.019531, 27.839076 ], [ -100.019531, 27.994401 ], [ -100.195312, 27.994401 ], [ -100.195312, 28.304381 ], [ -100.371094, 28.304381 ], [ -100.371094, 28.613459 ], [ -100.546875, 28.613459 ], [ -100.546875, 28.767659 ], [ -100.722656, 28.767659 ], [ -100.722656, 29.075375 ], [ -100.898438, 29.075375 ], [ -100.898438, 29.228890 ], [ -101.074219, 29.228890 ], [ -101.074219, 29.382175 ], [ -101.250000, 29.382175 ], [ -101.250000, 29.535230 ], [ -101.601562, 29.535230 ], [ -101.601562, 29.688053 ], [ -101.777344, 29.688053 ], [ -101.777344, 29.840644 ], [ -102.480469, 29.840644 ], [ -102.480469, 29.688053 ], [ -102.656250, 29.688053 ], [ -102.656250, 29.535230 ], [ -102.832031, 29.535230 ], [ -102.832031, 29.228890 ], [ -103.007812, 29.228890 ], [ -103.007812, 29.075375 ], [ -103.535156, 29.075375 ], [ -103.535156, 29.228890 ], [ -103.886719, 29.228890 ], [ -103.886719, 29.382175 ], [ -104.238281, 29.382175 ], [ -104.238281, 29.535230 ], [ -104.589844, 29.535230 ], [ -104.589844, 29.840644 ], [ -104.765625, 29.840644 ], [ -104.765625, 30.297018 ], [ -104.941406, 30.297018 ], [ -104.941406, 30.600094 ], [ -105.117188, 30.600094 ], [ -105.117188, 30.751278 ], [ -105.292969, 30.751278 ], [ -105.292969, 30.902225 ], [ -105.468750, 30.902225 ], [ -105.468750, 31.052934 ], [ -105.644531, 31.052934 ], [ -105.644531, 31.203405 ], [ -105.820312, 31.203405 ], [ -105.820312, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.503629 ], [ -106.347656, 31.503629 ], [ -106.347656, 31.653381 ], [ -106.523438, 31.653381 ], [ -106.523438, 31.802893 ], [ -108.281250, 31.802893 ], [ -108.281250, 31.353637 ], [ -111.445312, 31.353637 ], [ -111.445312, 31.503629 ], [ -111.796875, 31.503629 ], [ -111.796875, 31.653381 ], [ -112.324219, 31.653381 ], [ -112.324219, 31.802893 ], [ -112.851562, 31.802893 ], [ -112.851562, 31.952162 ], [ -113.203125, 31.952162 ], [ -113.203125, 32.101190 ], [ -113.730469, 32.101190 ], [ -113.730469, 32.249974 ], [ -114.257812, 32.249974 ], [ -114.257812, 32.398516 ], [ -114.785156, 32.398516 ], [ -114.785156, 32.546813 ], [ -114.960938, 32.546813 ], [ -114.960938, 32.694866 ], [ -114.785156, 32.694866 ], [ -114.785156, 32.842674 ], [ -115.312500, 32.842674 ], [ -115.312500, 32.694866 ], [ -116.542969, 32.694866 ], [ -116.542969, 32.546813 ], [ -117.246094, 32.546813 ], [ -117.246094, 32.842674 ], [ -117.421875, 32.842674 ], [ -117.421875, 33.137551 ], [ -117.597656, 33.137551 ], [ -117.597656, 33.431441 ], [ -117.773438, 33.431441 ], [ -117.773438, 33.578015 ], [ -117.949219, 33.578015 ], [ -117.949219, 33.724340 ], [ -118.300781, 33.724340 ], [ -118.300781, 33.870416 ], [ -118.476562, 33.870416 ], [ -118.476562, 34.016242 ], [ -118.652344, 34.016242 ], [ -118.652344, 34.161818 ], [ -119.355469, 34.161818 ], [ -119.355469, 34.307144 ], [ -119.531250, 34.307144 ], [ -119.531250, 34.452218 ], [ -120.585938, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 34.597042 ], [ -120.761719, 35.173808 ], [ -120.937500, 35.173808 ], [ -120.937500, 35.317366 ], [ -121.113281, 35.317366 ], [ -121.113281, 35.460670 ], [ -121.289062, 35.460670 ], [ -121.289062, 35.746512 ], [ -121.464844, 35.746512 ], [ -121.464844, 35.889050 ], [ -121.640625, 35.889050 ], [ -121.640625, 36.031332 ], [ -121.816406, 36.031332 ], [ -121.816406, 36.315125 ], [ -121.992188, 36.315125 ], [ -121.992188, 36.597889 ], [ -122.167969, 36.597889 ], [ -122.167969, 36.879621 ], [ -122.343750, 36.879621 ], [ -122.343750, 37.160317 ], [ -122.519531, 37.160317 ], [ -122.519531, 37.439974 ], [ -122.695312, 37.439974 ], [ -122.695312, 37.718590 ], [ -122.519531, 37.718590 ], [ -122.519531, 37.857507 ], [ -122.695312, 37.857507 ], [ -122.695312, 37.996163 ], [ -123.046875, 37.996163 ], [ -123.046875, 38.134557 ], [ -123.222656, 38.134557 ], [ -123.222656, 38.410558 ], [ -123.398438, 38.410558 ], [ -123.398438, 38.548165 ], [ -123.574219, 38.548165 ], [ -123.574219, 38.822591 ], [ -123.750000, 38.822591 ], [ -123.750000, 39.368279 ], [ -123.925781, 39.368279 ], [ -123.925781, 39.774769 ], [ -124.101562, 39.774769 ], [ -124.101562, 40.044438 ], [ -124.277344, 40.044438 ], [ -124.277344, 40.178873 ], [ -124.453125, 40.178873 ], [ -124.453125, 40.713956 ], [ -124.277344, 40.713956 ], [ -124.277344, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.694866 ], [ -114.785156, 32.546813 ], [ -114.609375, 32.546813 ], [ -114.609375, 32.398516 ], [ -114.257812, 32.398516 ], [ -114.257812, 32.249974 ], [ -113.730469, 32.249974 ], [ -113.730469, 32.101190 ], [ -113.203125, 32.101190 ], [ -113.203125, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.802893 ], [ -112.324219, 31.802893 ], [ -112.324219, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.503629 ], [ -111.445312, 31.503629 ], [ -111.445312, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -106.523438, 31.653381 ], [ -106.347656, 31.653381 ], [ -106.347656, 31.353637 ], [ -106.171875, 31.353637 ], [ -106.171875, 31.203405 ], [ -105.820312, 31.203405 ], [ -105.820312, 31.052934 ], [ -105.644531, 31.052934 ], [ -105.644531, 30.902225 ], [ -105.468750, 30.902225 ], [ -105.468750, 30.751278 ], [ -105.292969, 30.751278 ], [ -105.292969, 30.600094 ], [ -105.117188, 30.600094 ], [ -105.117188, 30.448674 ], [ -104.941406, 30.448674 ], [ -104.941406, 30.145127 ], [ -104.765625, 30.145127 ], [ -104.765625, 29.993002 ], [ -104.589844, 29.993002 ], [ -104.589844, 29.688053 ], [ -104.414062, 29.688053 ], [ -104.414062, 29.382175 ], [ -104.062500, 29.382175 ], [ -104.062500, 29.228890 ], [ -103.886719, 29.228890 ], [ -103.886719, 29.075375 ], [ -103.535156, 29.075375 ], [ -103.535156, 28.921631 ], [ -103.007812, 28.921631 ], [ -103.007812, 29.075375 ], [ -102.832031, 29.075375 ], [ -102.832031, 29.382175 ], [ -102.656250, 29.382175 ], [ -102.656250, 29.535230 ], [ -102.480469, 29.535230 ], [ -102.480469, 29.688053 ], [ -101.953125, 29.688053 ], [ -101.953125, 29.840644 ], [ -101.601562, 29.840644 ], [ -101.601562, 29.688053 ], [ -101.425781, 29.688053 ], [ -101.425781, 29.535230 ], [ -101.074219, 29.535230 ], [ -101.074219, 29.382175 ], [ -100.898438, 29.382175 ], [ -100.898438, 29.228890 ], [ -100.722656, 29.228890 ], [ -100.722656, 29.075375 ], [ -100.546875, 29.075375 ], [ -100.546875, 28.767659 ], [ -100.371094, 28.767659 ], [ -100.371094, 28.459033 ], [ -100.195312, 28.459033 ], [ -100.195312, 27.994401 ], [ -100.019531, 27.994401 ], [ -100.019531, 27.839076 ], [ -99.843750, 27.839076 ], [ -99.843750, 27.683528 ], [ -99.667969, 27.683528 ], [ -99.667969, 27.527758 ], [ -99.492188, 27.527758 ], [ -99.492188, 27.215556 ], [ -99.316406, 27.215556 ], [ -99.316406, 26.745610 ], [ -99.140625, 26.745610 ], [ -99.140625, 26.431228 ], [ -98.964844, 26.431228 ], [ -98.964844, 26.273714 ], [ -98.613281, 26.273714 ], [ -98.613281, 26.115986 ], [ -98.261719, 26.115986 ], [ -98.261719, 25.958045 ], [ -97.910156, 25.958045 ], [ -97.910156, 25.799891 ], [ -97.207031, 25.799891 ], [ -97.207031, 25.482951 ], [ -97.382812, 25.482951 ], [ -97.382812, 25.165173 ], [ -97.558594, 25.165173 ], [ -97.558594, 24.527135 ], [ -97.734375, 24.527135 ], [ -97.734375, 22.593726 ], [ -97.910156, 22.593726 ], [ -97.910156, 22.105999 ], [ -97.734375, 22.105999 ], [ -97.734375, 21.779905 ], [ -97.558594, 21.779905 ], [ -97.558594, 21.453069 ], [ -97.382812, 21.453069 ], [ -97.382812, 20.961440 ], [ -97.207031, 20.961440 ], [ -97.207031, 20.468189 ], [ -97.031250, 20.468189 ], [ -97.031250, 20.303418 ], [ -96.855469, 20.303418 ], [ -96.855469, 20.138470 ], [ -96.679688, 20.138470 ], [ -96.679688, 19.973349 ], [ -96.503906, 19.973349 ], [ -96.503906, 19.642588 ], [ -96.328125, 19.642588 ], [ -96.328125, 19.145168 ], [ -96.152344, 19.145168 ], [ -96.152344, 18.812718 ], [ -95.800781, 18.812718 ], [ -95.800781, 18.646245 ], [ -95.273438, 18.646245 ], [ -95.273438, 18.479609 ], [ -94.921875, 18.479609 ], [ -94.921875, 18.312811 ], [ -94.570312, 18.312811 ], [ -94.570312, 18.145852 ], [ -94.042969, 18.145852 ], [ -94.042969, 18.312811 ], [ -93.691406, 18.312811 ], [ -93.691406, 18.479609 ], [ -92.285156, 18.479609 ], [ -92.285156, 18.646245 ], [ -91.582031, 18.646245 ], [ -91.582031, 18.812718 ], [ -91.230469, 18.812718 ], [ -91.230469, 18.979026 ], [ -90.878906, 18.979026 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -89.121094, 21.289374 ], [ -89.121094, 17.811456 ], [ -91.054688, 17.811456 ], [ -91.054688, 17.308688 ], [ -91.406250, 17.308688 ], [ -91.406250, 17.140790 ], [ -91.230469, 17.140790 ], [ -91.230469, 16.972741 ], [ -91.054688, 16.972741 ], [ -91.054688, 16.804541 ], [ -90.878906, 16.804541 ], [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.351562, 16.467695 ], [ -90.351562, 16.299051 ], [ -90.527344, 16.299051 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -91.757812, 15.961329 ], [ -91.933594, 15.961329 ], [ -91.933594, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 15.284185 ], [ -92.285156, 15.284185 ], [ -92.285156, 15.114553 ], [ -92.109375, 15.114553 ], [ -92.109375, 14.944785 ], [ -92.285156, 14.944785 ], [ -92.285156, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.774883 ], [ -92.636719, 14.774883 ], [ -92.636719, 14.944785 ], [ -92.812500, 14.944785 ], [ -92.812500, 15.114553 ], [ -92.988281, 15.114553 ], [ -92.988281, 15.284185 ], [ -93.164062, 15.284185 ], [ -93.164062, 15.453680 ], [ -93.339844, 15.453680 ], [ -93.339844, 15.623037 ], [ -93.515625, 15.623037 ], [ -93.515625, 15.792254 ], [ -93.867188, 15.792254 ], [ -93.867188, 15.961329 ], [ -94.394531, 15.961329 ], [ -94.394531, 16.130262 ], [ -95.273438, 16.130262 ], [ -95.273438, 15.961329 ], [ -95.625000, 15.961329 ], [ -95.625000, 15.792254 ], [ -96.152344, 15.792254 ], [ -96.152344, 15.623037 ], [ -96.855469, 15.623037 ], [ -96.855469, 15.792254 ], [ -97.207031, 15.792254 ], [ -97.207031, 15.961329 ], [ -97.734375, 15.961329 ], [ -97.734375, 16.130262 ], [ -98.261719, 16.130262 ], [ -98.261719, 16.299051 ], [ -98.613281, 16.299051 ], [ -98.613281, 16.467695 ], [ -98.964844, 16.467695 ], [ -98.964844, 16.636192 ], [ -100.019531, 16.636192 ], [ -100.019531, 16.804541 ], [ -100.371094, 16.804541 ], [ -100.371094, 16.972741 ], [ -100.722656, 16.972741 ], [ -100.722656, 17.140790 ], [ -101.074219, 17.140790 ], [ -101.074219, 17.308688 ], [ -101.425781, 17.308688 ], [ -101.425781, 17.476432 ], [ -101.601562, 17.476432 ], [ -101.601562, 17.644022 ], [ -101.777344, 17.644022 ], [ -101.777344, 17.811456 ], [ -101.953125, 17.811456 ], [ -101.953125, 17.978733 ], [ -102.832031, 17.978733 ], [ -102.832031, 18.145852 ], [ -103.359375, 18.145852 ], [ -103.359375, 18.312811 ], [ -103.710938, 18.312811 ], [ -103.710938, 18.646245 ], [ -103.886719, 18.646245 ], [ -103.886719, 18.812718 ], [ -104.238281, 18.812718 ], [ -104.238281, 18.979026 ], [ -104.589844, 18.979026 ], [ -104.589844, 19.145168 ], [ -104.941406, 19.145168 ], [ -104.941406, 19.311143 ], [ -105.117188, 19.311143 ], [ -105.117188, 19.642588 ], [ -105.292969, 19.642588 ], [ -105.292969, 19.808054 ], [ -105.468750, 19.808054 ], [ -105.468750, 20.138470 ], [ -105.644531, 20.138470 ], [ -105.644531, 20.468189 ], [ -105.468750, 20.468189 ], [ -105.468750, 20.961440 ], [ -105.292969, 20.961440 ], [ -105.292969, 21.453069 ], [ -105.468750, 21.453069 ], [ -105.468750, 21.779905 ], [ -105.644531, 21.779905 ], [ -105.644531, 22.268764 ], [ -105.820312, 22.268764 ], [ -105.820312, 22.593726 ], [ -105.996094, 22.593726 ], [ -105.996094, 22.755921 ], [ -106.171875, 22.755921 ], [ -106.171875, 22.917923 ], [ -106.347656, 22.917923 ], [ -106.347656, 23.241346 ], [ -106.523438, 23.241346 ], [ -106.523438, 23.402765 ], [ -106.699219, 23.402765 ], [ -106.699219, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.725012 ], [ -107.050781, 23.725012 ], [ -107.050781, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.046464 ], [ -107.578125, 24.046464 ], [ -107.578125, 24.206890 ], [ -107.753906, 24.206890 ], [ -107.753906, 24.367114 ], [ -107.929688, 24.367114 ], [ -107.929688, 24.527135 ], [ -108.105469, 24.527135 ], [ -108.105469, 24.846565 ], [ -108.281250, 24.846565 ], [ -108.281250, 25.005973 ], [ -108.457031, 25.005973 ], [ -108.457031, 25.165173 ], [ -108.632812, 25.165173 ], [ -108.632812, 25.324167 ], [ -108.984375, 25.324167 ], [ -108.984375, 25.482951 ], [ -109.335938, 25.482951 ], [ -109.335938, 25.641526 ], [ -109.511719, 25.641526 ], [ -109.511719, 26.115986 ], [ -109.335938, 26.115986 ], [ -109.335938, 26.431228 ], [ -109.511719, 26.431228 ], [ -109.511719, 26.588527 ], [ -109.863281, 26.588527 ], [ -109.863281, 26.745610 ], [ -110.039062, 26.745610 ], [ -110.039062, 26.902477 ], [ -110.214844, 26.902477 ], [ -110.214844, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.527758 ], [ -110.566406, 27.527758 ], [ -110.566406, 27.839076 ], [ -110.917969, 27.839076 ], [ -110.917969, 27.994401 ], [ -111.269531, 27.994401 ], [ -111.269531, 28.149503 ], [ -111.621094, 28.149503 ], [ -111.621094, 28.304381 ], [ -111.796875, 28.304381 ], [ -111.796875, 28.459033 ], [ -111.972656, 28.459033 ], [ -111.972656, 28.767659 ], [ -112.148438, 28.767659 ], [ -112.148438, 29.075375 ], [ -112.324219, 29.075375 ], [ -112.324219, 29.228890 ], [ -112.500000, 29.228890 ], [ -112.500000, 29.535230 ], [ -112.675781, 29.535230 ], [ -112.675781, 29.840644 ], [ -112.851562, 29.840644 ], [ -112.851562, 30.145127 ], [ -113.027344, 30.145127 ], [ -113.027344, 30.448674 ], [ -113.203125, 30.448674 ], [ -113.203125, 31.203405 ], [ -113.554688, 31.203405 ], [ -113.554688, 31.353637 ], [ -113.906250, 31.353637 ], [ -113.906250, 31.503629 ], [ -114.433594, 31.503629 ], [ -114.433594, 31.653381 ], [ -114.785156, 31.653381 ], [ -114.785156, 31.503629 ], [ -114.960938, 31.503629 ], [ -114.960938, 31.052934 ], [ -114.785156, 31.052934 ], [ -114.785156, 30.448674 ], [ -114.609375, 30.448674 ], [ -114.609375, 29.993002 ], [ -114.433594, 29.993002 ], [ -114.433594, 29.688053 ], [ -114.257812, 29.688053 ], [ -114.257812, 29.535230 ], [ -114.082031, 29.535230 ], [ -114.082031, 29.382175 ], [ -113.906250, 29.382175 ], [ -113.906250, 29.228890 ], [ -113.730469, 29.228890 ], [ -113.730469, 29.075375 ], [ -113.554688, 29.075375 ], [ -113.554688, 28.921631 ], [ -113.378906, 28.921631 ], [ -113.378906, 28.767659 ], [ -113.203125, 28.767659 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -113.027344, 28.304381 ], [ -112.851562, 28.304381 ], [ -112.851562, 27.994401 ], [ -112.675781, 27.994401 ], [ -112.675781, 27.683528 ], [ -112.500000, 27.683528 ], [ -112.500000, 27.371767 ], [ -112.324219, 27.371767 ], [ -112.324219, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.902477 ], [ -111.972656, 26.902477 ], [ -111.972656, 26.745610 ], [ -111.796875, 26.745610 ], [ -111.796875, 26.588527 ], [ -111.621094, 26.588527 ], [ -111.621094, 26.273714 ], [ -111.445312, 26.273714 ], [ -111.445312, 25.958045 ], [ -111.269531, 25.958045 ], [ -111.269531, 25.641526 ], [ -111.093750, 25.641526 ], [ -111.093750, 25.324167 ], [ -110.917969, 25.324167 ], [ -110.917969, 25.005973 ], [ -110.742188, 25.005973 ], [ -110.742188, 24.367114 ], [ -110.566406, 24.367114 ], [ -110.566406, 24.206890 ], [ -110.214844, 24.206890 ], [ -110.214844, 24.046464 ], [ -109.863281, 24.046464 ], [ -109.863281, 23.885838 ], [ -109.687500, 23.885838 ], [ -109.687500, 23.725012 ], [ -109.511719, 23.725012 ], [ -109.511719, 23.402765 ], [ -109.335938, 23.402765 ], [ -109.335938, 23.241346 ], [ -109.511719, 23.241346 ], [ -109.511719, 23.079732 ], [ -109.687500, 23.079732 ], [ -109.687500, 22.755921 ], [ -110.039062, 22.755921 ], [ -110.039062, 23.079732 ], [ -110.214844, 23.079732 ], [ -110.214844, 23.402765 ], [ -110.390625, 23.402765 ], [ -110.390625, 23.563987 ], [ -110.566406, 23.563987 ], [ -110.566406, 23.725012 ], [ -110.742188, 23.725012 ], [ -110.742188, 23.885838 ], [ -110.917969, 23.885838 ], [ -110.917969, 24.046464 ], [ -111.093750, 24.046464 ], [ -111.093750, 24.206890 ], [ -111.445312, 24.206890 ], [ -111.445312, 24.367114 ], [ -111.621094, 24.367114 ], [ -111.621094, 24.527135 ], [ -111.972656, 24.527135 ], [ -111.972656, 24.686952 ], [ -112.148438, 24.686952 ], [ -112.148438, 25.641526 ], [ -112.324219, 25.641526 ], [ -112.324219, 25.958045 ], [ -112.500000, 25.958045 ], [ -112.500000, 26.115986 ], [ -112.851562, 26.115986 ], [ -112.851562, 26.273714 ], [ -113.027344, 26.273714 ], [ -113.027344, 26.431228 ], [ -113.203125, 26.431228 ], [ -113.203125, 26.588527 ], [ -113.730469, 26.588527 ], [ -113.730469, 26.745610 ], [ -113.906250, 26.745610 ], [ -113.906250, 26.902477 ], [ -114.082031, 26.902477 ], [ -114.082031, 27.059126 ], [ -114.433594, 27.059126 ], [ -114.433594, 27.215556 ], [ -114.609375, 27.215556 ], [ -114.609375, 27.371767 ], [ -114.960938, 27.371767 ], [ -114.960938, 27.527758 ], [ -115.136719, 27.527758 ], [ -115.136719, 27.683528 ], [ -114.433594, 27.683528 ], [ -114.433594, 27.994401 ], [ -114.257812, 27.994401 ], [ -114.257812, 28.304381 ], [ -114.082031, 28.304381 ], [ -114.082031, 28.613459 ], [ -114.257812, 28.613459 ], [ -114.257812, 28.767659 ], [ -114.433594, 28.767659 ], [ -114.433594, 28.921631 ], [ -114.785156, 28.921631 ], [ -114.785156, 29.075375 ], [ -114.960938, 29.075375 ], [ -114.960938, 29.228890 ], [ -115.136719, 29.228890 ], [ -115.136719, 29.382175 ], [ -115.488281, 29.382175 ], [ -115.488281, 29.688053 ], [ -115.664062, 29.688053 ], [ -115.664062, 29.993002 ], [ -115.839844, 29.993002 ], [ -115.839844, 30.297018 ], [ -116.015625, 30.297018 ], [ -116.015625, 30.600094 ], [ -116.191406, 30.600094 ], [ -116.191406, 30.902225 ], [ -116.367188, 30.902225 ], [ -116.367188, 31.203405 ], [ -116.542969, 31.203405 ], [ -116.542969, 31.503629 ], [ -116.718750, 31.503629 ], [ -116.718750, 31.802893 ], [ -116.894531, 31.802893 ], [ -116.894531, 32.249974 ], [ -117.070312, 32.249974 ], [ -117.070312, 32.546813 ], [ -115.312500, 32.546813 ], [ -115.312500, 32.694866 ], [ -114.785156, 32.694866 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.785156, 32.842674 ], [ -114.785156, 32.694866 ], [ -114.960938, 32.694866 ], [ -114.960938, 32.546813 ], [ -114.785156, 32.546813 ], [ -114.785156, 32.398516 ], [ -114.257812, 32.398516 ], [ -114.257812, 32.249974 ], [ -113.730469, 32.249974 ], [ -113.730469, 32.101190 ], [ -113.203125, 32.101190 ], [ -113.203125, 31.952162 ], [ -112.851562, 31.952162 ], [ -112.851562, 31.802893 ], [ -112.324219, 31.802893 ], [ -112.324219, 31.653381 ], [ -111.796875, 31.653381 ], [ -111.796875, 31.503629 ], [ -111.445312, 31.503629 ], [ -111.445312, 31.353637 ], [ -108.281250, 31.353637 ], [ -108.281250, 31.802893 ], [ -106.523438, 31.802893 ], [ -106.523438, 31.653381 ], [ -106.347656, 31.653381 ], [ -106.347656, 31.503629 ], [ -106.171875, 31.503629 ], [ -106.171875, 31.353637 ], [ -105.820312, 31.353637 ], [ -105.820312, 31.203405 ], [ -105.644531, 31.203405 ], [ -105.644531, 31.052934 ], [ -105.468750, 31.052934 ], [ -105.468750, 30.902225 ], [ -105.292969, 30.902225 ], [ -105.292969, 30.751278 ], [ -105.117188, 30.751278 ], [ -105.117188, 30.600094 ], [ -104.941406, 30.600094 ], [ -104.941406, 30.297018 ], [ -104.765625, 30.297018 ], [ -104.765625, 29.840644 ], [ -104.589844, 29.840644 ], [ -104.589844, 29.535230 ], [ -104.238281, 29.535230 ], [ -104.238281, 29.382175 ], [ -103.886719, 29.382175 ], [ -103.886719, 29.228890 ], [ -103.535156, 29.228890 ], [ -103.535156, 29.075375 ], [ -103.007812, 29.075375 ], [ -103.007812, 29.228890 ], [ -102.832031, 29.228890 ], [ -102.832031, 29.535230 ], [ -102.656250, 29.535230 ], [ -102.656250, 29.688053 ], [ -102.480469, 29.688053 ], [ -102.480469, 29.840644 ], [ -101.777344, 29.840644 ], [ -101.777344, 29.688053 ], [ -101.601562, 29.688053 ], [ -101.601562, 29.535230 ], [ -101.250000, 29.535230 ], [ -101.250000, 29.382175 ], [ -101.074219, 29.382175 ], [ -101.074219, 29.228890 ], [ -100.898438, 29.228890 ], [ -100.898438, 29.075375 ], [ -100.722656, 29.075375 ], [ -100.722656, 28.767659 ], [ -100.546875, 28.767659 ], [ -100.546875, 28.613459 ], [ -100.371094, 28.613459 ], [ -100.371094, 28.304381 ], [ -100.195312, 28.304381 ], [ -100.195312, 27.994401 ], [ -100.019531, 27.994401 ], [ -100.019531, 27.839076 ], [ -99.843750, 27.839076 ], [ -99.843750, 27.683528 ], [ -99.667969, 27.683528 ], [ -99.667969, 27.371767 ], [ -99.492188, 27.371767 ], [ -99.492188, 27.059126 ], [ -99.316406, 27.059126 ], [ -99.316406, 26.588527 ], [ -99.140625, 26.588527 ], [ -99.140625, 26.431228 ], [ -98.964844, 26.431228 ], [ -98.964844, 26.273714 ], [ -98.613281, 26.273714 ], [ -98.613281, 26.115986 ], [ -98.085938, 26.115986 ], [ -98.085938, 25.958045 ], [ -97.207031, 25.958045 ], [ -97.207031, 25.641526 ], [ -97.382812, 25.641526 ], [ -97.382812, 25.165173 ], [ -97.558594, 25.165173 ], [ -97.558594, 24.686952 ], [ -97.734375, 24.686952 ], [ -97.734375, 23.725012 ], [ -97.910156, 23.725012 ], [ -97.910156, 22.268764 ], [ -97.734375, 22.268764 ], [ -97.734375, 21.616579 ], [ -97.558594, 21.616579 ], [ -97.558594, 21.289374 ], [ -97.382812, 21.289374 ], [ -97.382812, 20.961440 ], [ -97.207031, 20.961440 ], [ -97.207031, 20.632784 ], [ -97.031250, 20.632784 ], [ -97.031250, 20.303418 ], [ -96.855469, 20.303418 ], [ -96.855469, 19.973349 ], [ -96.679688, 19.973349 ], [ -96.679688, 19.808054 ], [ -96.503906, 19.808054 ], [ -96.503906, 19.476950 ], [ -96.328125, 19.476950 ], [ -96.328125, 19.311143 ], [ -96.152344, 19.311143 ], [ -96.152344, 18.979026 ], [ -95.800781, 18.979026 ], [ -95.800781, 18.812718 ], [ -95.273438, 18.812718 ], [ -95.273438, 18.646245 ], [ -94.921875, 18.646245 ], [ -94.921875, 18.479609 ], [ -94.746094, 18.479609 ], [ -94.746094, 18.145852 ], [ -94.218750, 18.145852 ], [ -94.218750, 18.312811 ], [ -93.867188, 18.312811 ], [ -93.867188, 18.479609 ], [ -93.164062, 18.479609 ], [ -93.164062, 18.646245 ], [ -92.285156, 18.646245 ], [ -92.285156, 18.812718 ], [ -91.582031, 18.812718 ], [ -91.582031, 18.979026 ], [ -91.230469, 18.979026 ], [ -91.230469, 19.145168 ], [ -90.878906, 19.145168 ], [ -90.878906, 19.642588 ], [ -90.703125, 19.642588 ], [ -90.703125, 20.303418 ], [ -90.527344, 20.303418 ], [ -90.527344, 20.961440 ], [ -90.351562, 20.961440 ], [ -90.351562, 21.125498 ], [ -89.824219, 21.125498 ], [ -89.824219, 21.289374 ], [ -89.296875, 21.289374 ], [ -89.296875, 21.453069 ], [ -89.121094, 21.453069 ], [ -89.121094, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.811456 ], [ -89.824219, 17.811456 ], [ -89.824219, 17.978733 ], [ -91.054688, 17.978733 ], [ -91.054688, 17.308688 ], [ -91.582031, 17.308688 ], [ -91.582031, 17.140790 ], [ -91.406250, 17.140790 ], [ -91.406250, 16.972741 ], [ -91.230469, 16.972741 ], [ -91.230469, 16.804541 ], [ -90.878906, 16.804541 ], [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -91.757812, 16.130262 ], [ -91.757812, 15.961329 ], [ -91.933594, 15.961329 ], [ -91.933594, 15.623037 ], [ -92.109375, 15.623037 ], [ -92.109375, 15.284185 ], [ -92.285156, 15.284185 ], [ -92.285156, 15.114553 ], [ -92.109375, 15.114553 ], [ -92.109375, 14.944785 ], [ -92.285156, 14.944785 ], [ -92.285156, 14.604847 ], [ -92.460938, 14.604847 ], [ -92.460938, 14.774883 ], [ -92.636719, 14.774883 ], [ -92.636719, 14.944785 ], [ -92.812500, 14.944785 ], [ -92.812500, 15.114553 ], [ -93.164062, 15.114553 ], [ -93.164062, 15.284185 ], [ -93.339844, 15.284185 ], [ -93.339844, 15.453680 ], [ -93.515625, 15.453680 ], [ -93.515625, 15.623037 ], [ -93.691406, 15.623037 ], [ -93.691406, 15.792254 ], [ -94.042969, 15.792254 ], [ -94.042969, 15.961329 ], [ -94.394531, 15.961329 ], [ -94.394531, 16.130262 ], [ -94.746094, 16.130262 ], [ -94.746094, 16.299051 ], [ -94.921875, 16.299051 ], [ -94.921875, 16.130262 ], [ -95.449219, 16.130262 ], [ -95.449219, 15.961329 ], [ -95.800781, 15.961329 ], [ -95.800781, 15.792254 ], [ -97.207031, 15.792254 ], [ -97.207031, 15.961329 ], [ -97.910156, 15.961329 ], [ -97.910156, 16.130262 ], [ -98.261719, 16.130262 ], [ -98.261719, 16.299051 ], [ -98.613281, 16.299051 ], [ -98.613281, 16.467695 ], [ -98.964844, 16.467695 ], [ -98.964844, 16.636192 ], [ -99.492188, 16.636192 ], [ -99.492188, 16.804541 ], [ -100.195312, 16.804541 ], [ -100.195312, 16.972741 ], [ -100.546875, 16.972741 ], [ -100.546875, 17.140790 ], [ -100.898438, 17.140790 ], [ -100.898438, 17.308688 ], [ -101.074219, 17.308688 ], [ -101.074219, 17.476432 ], [ -101.425781, 17.476432 ], [ -101.425781, 17.644022 ], [ -101.777344, 17.644022 ], [ -101.777344, 17.811456 ], [ -101.953125, 17.811456 ], [ -101.953125, 17.978733 ], [ -102.832031, 17.978733 ], [ -102.832031, 18.145852 ], [ -103.359375, 18.145852 ], [ -103.359375, 18.312811 ], [ -103.710938, 18.312811 ], [ -103.710938, 18.479609 ], [ -103.886719, 18.479609 ], [ -103.886719, 18.646245 ], [ -104.062500, 18.646245 ], [ -104.062500, 18.812718 ], [ -104.238281, 18.812718 ], [ -104.238281, 18.979026 ], [ -104.589844, 18.979026 ], [ -104.589844, 19.145168 ], [ -104.765625, 19.145168 ], [ -104.765625, 19.311143 ], [ -105.117188, 19.311143 ], [ -105.117188, 19.476950 ], [ -105.292969, 19.476950 ], [ -105.292969, 19.642588 ], [ -105.468750, 19.642588 ], [ -105.468750, 19.808054 ], [ -105.644531, 19.808054 ], [ -105.644531, 20.138470 ], [ -105.820312, 20.138470 ], [ -105.820312, 20.468189 ], [ -105.468750, 20.468189 ], [ -105.468750, 20.797201 ], [ -105.644531, 20.797201 ], [ -105.644531, 20.961440 ], [ -105.292969, 20.961440 ], [ -105.292969, 21.453069 ], [ -105.468750, 21.453069 ], [ -105.468750, 21.779905 ], [ -105.644531, 21.779905 ], [ -105.644531, 22.105999 ], [ -105.820312, 22.105999 ], [ -105.820312, 22.431340 ], [ -105.996094, 22.431340 ], [ -105.996094, 22.755921 ], [ -106.171875, 22.755921 ], [ -106.171875, 22.917923 ], [ -106.347656, 22.917923 ], [ -106.347656, 23.079732 ], [ -106.523438, 23.079732 ], [ -106.523438, 23.402765 ], [ -106.699219, 23.402765 ], [ -106.699219, 23.563987 ], [ -106.875000, 23.563987 ], [ -106.875000, 23.725012 ], [ -107.050781, 23.725012 ], [ -107.050781, 23.885838 ], [ -107.226562, 23.885838 ], [ -107.226562, 24.046464 ], [ -107.402344, 24.046464 ], [ -107.402344, 24.206890 ], [ -107.578125, 24.206890 ], [ -107.578125, 24.367114 ], [ -107.753906, 24.367114 ], [ -107.753906, 24.527135 ], [ -107.929688, 24.527135 ], [ -107.929688, 24.686952 ], [ -108.105469, 24.686952 ], [ -108.105469, 25.005973 ], [ -108.281250, 25.005973 ], [ -108.281250, 25.165173 ], [ -108.457031, 25.165173 ], [ -108.457031, 25.324167 ], [ -108.808594, 25.324167 ], [ -108.808594, 25.482951 ], [ -109.160156, 25.482951 ], [ -109.160156, 25.641526 ], [ -109.335938, 25.641526 ], [ -109.335938, 25.799891 ], [ -109.511719, 25.799891 ], [ -109.511719, 26.273714 ], [ -109.335938, 26.273714 ], [ -109.335938, 26.588527 ], [ -109.687500, 26.588527 ], [ -109.687500, 26.745610 ], [ -110.039062, 26.745610 ], [ -110.039062, 26.902477 ], [ -110.214844, 26.902477 ], [ -110.214844, 27.059126 ], [ -110.390625, 27.059126 ], [ -110.390625, 27.371767 ], [ -110.566406, 27.371767 ], [ -110.566406, 27.683528 ], [ -110.742188, 27.683528 ], [ -110.742188, 27.994401 ], [ -111.445312, 27.994401 ], [ -111.445312, 28.304381 ], [ -111.621094, 28.304381 ], [ -111.621094, 28.459033 ], [ -111.796875, 28.459033 ], [ -111.796875, 28.613459 ], [ -111.972656, 28.613459 ], [ -111.972656, 28.767659 ], [ -112.148438, 28.767659 ], [ -112.148438, 28.921631 ], [ -112.324219, 28.921631 ], [ -112.324219, 29.382175 ], [ -112.500000, 29.382175 ], [ -112.500000, 29.688053 ], [ -112.675781, 29.688053 ], [ -112.675781, 29.993002 ], [ -112.851562, 29.993002 ], [ -112.851562, 30.297018 ], [ -113.027344, 30.297018 ], [ -113.027344, 30.600094 ], [ -113.203125, 30.600094 ], [ -113.203125, 31.203405 ], [ -113.378906, 31.203405 ], [ -113.378906, 31.353637 ], [ -113.730469, 31.353637 ], [ -113.730469, 31.503629 ], [ -113.906250, 31.503629 ], [ -113.906250, 31.653381 ], [ -114.609375, 31.653381 ], [ -114.609375, 31.802893 ], [ -114.785156, 31.802893 ], [ -114.785156, 31.653381 ], [ -114.960938, 31.653381 ], [ -114.960938, 31.203405 ], [ -114.785156, 31.203405 ], [ -114.785156, 30.145127 ], [ -114.609375, 30.145127 ], [ -114.609375, 29.840644 ], [ -114.433594, 29.840644 ], [ -114.433594, 29.688053 ], [ -114.257812, 29.688053 ], [ -114.257812, 29.535230 ], [ -114.082031, 29.535230 ], [ -114.082031, 29.228890 ], [ -113.906250, 29.228890 ], [ -113.906250, 29.075375 ], [ -113.730469, 29.075375 ], [ -113.730469, 28.921631 ], [ -113.554688, 28.921631 ], [ -113.554688, 28.767659 ], [ -113.378906, 28.767659 ], [ -113.378906, 28.613459 ], [ -113.203125, 28.613459 ], [ -113.203125, 28.459033 ], [ -113.027344, 28.459033 ], [ -113.027344, 28.149503 ], [ -112.851562, 28.149503 ], [ -112.851562, 27.683528 ], [ -112.675781, 27.683528 ], [ -112.675781, 27.527758 ], [ -112.500000, 27.527758 ], [ -112.500000, 27.371767 ], [ -112.324219, 27.371767 ], [ -112.324219, 27.059126 ], [ -112.148438, 27.059126 ], [ -112.148438, 26.902477 ], [ -111.796875, 26.902477 ], [ -111.796875, 26.745610 ], [ -111.621094, 26.745610 ], [ -111.621094, 26.273714 ], [ -111.445312, 26.273714 ], [ -111.445312, 25.641526 ], [ -111.269531, 25.641526 ], [ -111.269531, 25.324167 ], [ -111.093750, 25.324167 ], [ -111.093750, 25.165173 ], [ -110.917969, 25.165173 ], [ -110.917969, 24.846565 ], [ -110.742188, 24.846565 ], [ -110.742188, 24.367114 ], [ -110.214844, 24.367114 ], [ -110.214844, 24.206890 ], [ -110.039062, 24.206890 ], [ -110.039062, 23.885838 ], [ -109.863281, 23.885838 ], [ -109.863281, 23.725012 ], [ -109.687500, 23.725012 ], [ -109.687500, 23.402765 ], [ -109.511719, 23.402765 ], [ -109.511719, 23.079732 ], [ -109.687500, 23.079732 ], [ -109.687500, 22.917923 ], [ -110.039062, 22.917923 ], [ -110.039062, 23.079732 ], [ -110.214844, 23.079732 ], [ -110.214844, 23.402765 ], [ -110.390625, 23.402765 ], [ -110.390625, 23.563987 ], [ -110.566406, 23.563987 ], [ -110.566406, 23.725012 ], [ -110.917969, 23.725012 ], [ -110.917969, 23.885838 ], [ -111.093750, 23.885838 ], [ -111.093750, 24.046464 ], [ -111.269531, 24.046464 ], [ -111.269531, 24.206890 ], [ -111.621094, 24.206890 ], [ -111.621094, 24.367114 ], [ -111.796875, 24.367114 ], [ -111.796875, 24.527135 ], [ -111.972656, 24.527135 ], [ -111.972656, 24.686952 ], [ -112.324219, 24.686952 ], [ -112.324219, 25.165173 ], [ -112.148438, 25.165173 ], [ -112.148438, 25.799891 ], [ -112.324219, 25.799891 ], [ -112.324219, 26.115986 ], [ -112.500000, 26.115986 ], [ -112.500000, 26.273714 ], [ -112.851562, 26.273714 ], [ -112.851562, 26.431228 ], [ -113.027344, 26.431228 ], [ -113.027344, 26.588527 ], [ -113.378906, 26.588527 ], [ -113.378906, 26.745610 ], [ -113.906250, 26.745610 ], [ -113.906250, 26.902477 ], [ -114.257812, 26.902477 ], [ -114.257812, 27.059126 ], [ -114.609375, 27.059126 ], [ -114.609375, 27.215556 ], [ -114.785156, 27.215556 ], [ -114.785156, 27.527758 ], [ -114.960938, 27.527758 ], [ -114.960938, 27.683528 ], [ -115.136719, 27.683528 ], [ -115.136719, 27.839076 ], [ -114.433594, 27.839076 ], [ -114.433594, 27.994401 ], [ -114.257812, 27.994401 ], [ -114.257812, 28.613459 ], [ -114.433594, 28.613459 ], [ -114.433594, 28.767659 ], [ -114.609375, 28.767659 ], [ -114.609375, 29.075375 ], [ -114.785156, 29.075375 ], [ -114.785156, 29.228890 ], [ -114.960938, 29.228890 ], [ -114.960938, 29.382175 ], [ -115.312500, 29.382175 ], [ -115.312500, 29.535230 ], [ -115.664062, 29.535230 ], [ -115.664062, 29.840644 ], [ -115.839844, 29.840644 ], [ -115.839844, 30.145127 ], [ -116.015625, 30.145127 ], [ -116.015625, 30.448674 ], [ -116.191406, 30.448674 ], [ -116.191406, 30.751278 ], [ -116.367188, 30.751278 ], [ -116.367188, 30.902225 ], [ -116.542969, 30.902225 ], [ -116.542969, 31.203405 ], [ -116.718750, 31.203405 ], [ -116.718750, 31.503629 ], [ -116.894531, 31.503629 ], [ -116.894531, 31.802893 ], [ -117.070312, 31.802893 ], [ -117.070312, 32.249974 ], [ -117.246094, 32.249974 ], [ -117.246094, 32.546813 ], [ -116.542969, 32.546813 ], [ -116.542969, 32.694866 ], [ -115.312500, 32.694866 ], [ -115.312500, 32.842674 ], [ -114.785156, 32.842674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.811456 ], [ -89.121094, 16.467695 ], [ -89.296875, 16.467695 ], [ -89.296875, 15.961329 ], [ -89.121094, 15.961329 ], [ -89.121094, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.472656, 14.264383 ], [ -89.472656, 14.093957 ], [ -89.648438, 14.093957 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -91.582031, 13.923404 ], [ -91.582031, 14.093957 ], [ -91.933594, 14.093957 ], [ -91.933594, 14.264383 ], [ -92.109375, 14.264383 ], [ -92.109375, 14.434680 ], [ -92.285156, 14.434680 ], [ -92.285156, 14.944785 ], [ -92.109375, 14.944785 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.114553 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 15.623037 ], [ -91.933594, 15.623037 ], [ -91.933594, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.299051 ], [ -90.351562, 16.299051 ], [ -90.351562, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 16.804541 ], [ -91.054688, 16.804541 ], [ -91.054688, 16.972741 ], [ -91.230469, 16.972741 ], [ -91.230469, 17.140790 ], [ -91.406250, 17.140790 ], [ -91.406250, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.811456 ], [ -89.121094, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.824219, 17.978733 ], [ -89.824219, 17.811456 ], [ -89.296875, 17.811456 ], [ -89.296875, 15.961329 ], [ -89.121094, 15.961329 ], [ -89.121094, 15.114553 ], [ -89.296875, 15.114553 ], [ -89.296875, 14.604847 ], [ -89.472656, 14.604847 ], [ -89.472656, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.824219, 14.264383 ], [ -89.824219, 14.093957 ], [ -90.000000, 14.093957 ], [ -90.000000, 13.923404 ], [ -90.175781, 13.923404 ], [ -90.175781, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -91.054688, 13.923404 ], [ -91.054688, 14.093957 ], [ -91.582031, 14.093957 ], [ -91.582031, 14.264383 ], [ -91.933594, 14.264383 ], [ -91.933594, 14.434680 ], [ -92.285156, 14.434680 ], [ -92.285156, 14.944785 ], [ -92.109375, 14.944785 ], [ -92.109375, 15.114553 ], [ -92.285156, 15.114553 ], [ -92.285156, 15.284185 ], [ -92.109375, 15.284185 ], [ -92.109375, 15.623037 ], [ -91.933594, 15.623037 ], [ -91.933594, 15.961329 ], [ -91.757812, 15.961329 ], [ -91.757812, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 16.804541 ], [ -91.230469, 16.804541 ], [ -91.230469, 16.972741 ], [ -91.406250, 16.972741 ], [ -91.406250, 17.140790 ], [ -91.582031, 17.140790 ], [ -91.582031, 17.308688 ], [ -91.054688, 17.308688 ], [ -91.054688, 17.978733 ], [ -89.824219, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 16.467695 ], [ -89.121094, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 16.467695 ], [ -89.121094, 16.467695 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.978733 ], [ -89.121094, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -89.121094, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.434680 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.434680 ], [ -89.121094, 13.410994 ], [ -89.296875, 13.410994 ], [ -89.296875, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.093957 ], [ -89.824219, 14.093957 ], [ -89.824219, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.944785 ], [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.114553 ], [ -89.121094, 14.434680 ], [ -89.472656, 14.434680 ], [ -89.472656, 14.604847 ], [ -89.296875, 14.604847 ], [ -89.296875, 15.114553 ], [ -89.121094, 15.114553 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.091408 ], [ -89.472656, 64.091408 ], [ -89.472656, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.937372 ], [ -90.175781, 63.937372 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.704722 ], [ -90.527344, 63.704722 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 62.995158 ], [ -90.878906, 62.995158 ], [ -90.878906, 62.915233 ], [ -91.582031, 62.915233 ], [ -91.582031, 62.835089 ], [ -91.933594, 62.835089 ], [ -91.933594, 62.754726 ], [ -92.109375, 62.754726 ], [ -92.109375, 62.593341 ], [ -92.285156, 62.593341 ], [ -92.285156, 62.512318 ], [ -92.460938, 62.512318 ], [ -92.460938, 62.431074 ], [ -92.636719, 62.431074 ], [ -92.636719, 62.267923 ], [ -92.812500, 62.267923 ], [ -92.812500, 62.186014 ], [ -92.988281, 62.186014 ], [ -92.988281, 62.021528 ], [ -93.164062, 62.021528 ], [ -93.164062, 61.856149 ], [ -93.339844, 61.856149 ], [ -93.339844, 61.689872 ], [ -93.515625, 61.689872 ], [ -93.515625, 61.522695 ], [ -93.691406, 61.522695 ], [ -93.691406, 61.354614 ], [ -93.867188, 61.354614 ], [ -93.867188, 61.185625 ], [ -94.042969, 61.185625 ], [ -94.042969, 61.015725 ], [ -94.218750, 61.015725 ], [ -94.218750, 60.673179 ], [ -94.394531, 60.673179 ], [ -94.394531, 60.326948 ], [ -94.570312, 60.326948 ], [ -94.570312, 59.534318 ], [ -94.746094, 59.534318 ], [ -94.746094, 58.904646 ], [ -94.042969, 58.904646 ], [ -94.042969, 58.813742 ], [ -93.164062, 58.813742 ], [ -93.164062, 58.539595 ], [ -92.988281, 58.539595 ], [ -92.988281, 58.077876 ], [ -92.812500, 58.077876 ], [ -92.812500, 57.704147 ], [ -92.636719, 57.704147 ], [ -92.636719, 57.421294 ], [ -92.460938, 57.421294 ], [ -92.460938, 57.136239 ], [ -92.285156, 57.136239 ], [ -92.285156, 57.040730 ], [ -91.933594, 57.040730 ], [ -91.933594, 57.136239 ], [ -91.406250, 57.136239 ], [ -91.406250, 57.231503 ], [ -91.054688, 57.231503 ], [ -91.054688, 57.326521 ], [ -90.878906, 57.326521 ], [ -90.878906, 57.231503 ], [ -90.527344, 57.231503 ], [ -90.527344, 57.136239 ], [ -90.175781, 57.136239 ], [ -90.175781, 57.040730 ], [ -89.824219, 57.040730 ], [ -89.824219, 56.944974 ], [ -89.472656, 56.944974 ], [ -89.472656, 56.848972 ], [ -89.121094, 56.848972 ], [ -89.121094, 47.989922 ], [ -90.000000, 47.989922 ], [ -90.000000, 48.107431 ], [ -90.703125, 48.107431 ], [ -90.703125, 48.224673 ], [ -91.054688, 48.224673 ], [ -91.054688, 48.107431 ], [ -91.933594, 48.107431 ], [ -91.933594, 48.224673 ], [ -92.285156, 48.224673 ], [ -92.285156, 48.341646 ], [ -92.636719, 48.341646 ], [ -92.636719, 48.458352 ], [ -93.339844, 48.458352 ], [ -93.339844, 48.574790 ], [ -94.218750, 48.574790 ], [ -94.218750, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 49.037868 ], [ -94.746094, 49.037868 ], [ -94.746094, 49.382373 ], [ -95.097656, 49.382373 ], [ -95.097656, 49.037868 ], [ -123.222656, 49.037868 ], [ -123.222656, 49.152970 ], [ -123.574219, 49.152970 ], [ -123.574219, 49.267805 ], [ -123.750000, 49.267805 ], [ -123.750000, 49.382373 ], [ -123.925781, 49.382373 ], [ -123.925781, 49.496675 ], [ -124.277344, 49.496675 ], [ -124.277344, 49.610710 ], [ -124.453125, 49.610710 ], [ -124.453125, 49.724479 ], [ -124.628906, 49.724479 ], [ -124.628906, 49.837982 ], [ -124.980469, 49.837982 ], [ -124.980469, 49.951220 ], [ -125.156250, 49.951220 ], [ -125.156250, 50.064192 ], [ -125.332031, 50.064192 ], [ -125.332031, 50.176898 ], [ -125.507812, 50.176898 ], [ -125.507812, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.401515 ], [ -126.035156, 50.401515 ], [ -126.035156, 50.513427 ], [ -126.386719, 50.513427 ], [ -126.386719, 50.625073 ], [ -126.914062, 50.625073 ], [ -126.914062, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.847573 ], [ -127.441406, 50.847573 ], [ -127.441406, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.289406 ], [ -127.792969, 51.289406 ], [ -127.792969, 51.508742 ], [ -127.968750, 51.508742 ], [ -127.968750, 52.052490 ], [ -127.792969, 52.052490 ], [ -127.792969, 52.375599 ], [ -128.144531, 52.375599 ], [ -128.144531, 52.482780 ], [ -128.496094, 52.482780 ], [ -128.496094, 52.589701 ], [ -128.847656, 52.589701 ], [ -128.847656, 52.696361 ], [ -129.199219, 52.696361 ], [ -129.199219, 53.120405 ], [ -129.375000, 53.120405 ], [ -129.375000, 53.540307 ], [ -129.550781, 53.540307 ], [ -129.550781, 53.644638 ], [ -129.726562, 53.644638 ], [ -129.726562, 53.748711 ], [ -129.902344, 53.748711 ], [ -129.902344, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.059388 ], [ -130.253906, 54.059388 ], [ -130.253906, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.470038 ], [ -130.605469, 54.470038 ], [ -130.605469, 54.775346 ], [ -130.429688, 54.775346 ], [ -130.429688, 54.876607 ], [ -130.253906, 54.876607 ], [ -130.253906, 55.078367 ], [ -130.078125, 55.078367 ], [ -130.078125, 55.178868 ], [ -129.902344, 55.178868 ], [ -129.902344, 55.578345 ], [ -130.078125, 55.578345 ], [ -130.078125, 55.875311 ], [ -130.253906, 55.875311 ], [ -130.253906, 55.973798 ], [ -130.429688, 55.973798 ], [ -130.429688, 56.072035 ], [ -130.781250, 56.072035 ], [ -130.781250, 56.170023 ], [ -130.957031, 56.170023 ], [ -130.957031, 56.267761 ], [ -131.132812, 56.267761 ], [ -131.132812, 56.365250 ], [ -131.484375, 56.365250 ], [ -131.484375, 56.462490 ], [ -131.660156, 56.462490 ], [ -131.660156, 56.656226 ], [ -131.835938, 56.656226 ], [ -131.835938, 56.848972 ], [ -132.011719, 56.848972 ], [ -132.011719, 57.040730 ], [ -132.187500, 57.040730 ], [ -132.187500, 57.231503 ], [ -132.363281, 57.231503 ], [ -132.363281, 57.421294 ], [ -132.539062, 57.421294 ], [ -132.539062, 57.610107 ], [ -132.714844, 57.610107 ], [ -132.714844, 57.797944 ], [ -132.890625, 57.797944 ], [ -132.890625, 57.984808 ], [ -133.066406, 57.984808 ], [ -133.066406, 58.170702 ], [ -133.242188, 58.170702 ], [ -133.242188, 58.355630 ], [ -133.417969, 58.355630 ], [ -133.417969, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.539595 ], [ -133.769531, 58.539595 ], [ -133.769531, 58.631217 ], [ -133.945312, 58.631217 ], [ -133.945312, 58.722599 ], [ -134.121094, 58.722599 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.085739 ], [ -134.824219, 59.085739 ], [ -134.824219, 59.175928 ], [ -135.000000, 59.175928 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.703125, 59.712097 ], [ -135.703125, 59.623325 ], [ -135.878906, 59.623325 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.144531, 50.736455 ], [ -128.144531, 50.625073 ], [ -127.617188, 50.625073 ], [ -127.617188, 50.513427 ], [ -127.089844, 50.513427 ], [ -127.089844, 50.401515 ], [ -126.386719, 50.401515 ], [ -126.386719, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.176898 ], [ -125.507812, 50.176898 ], [ -125.507812, 49.951220 ], [ -125.332031, 49.951220 ], [ -125.332031, 49.837982 ], [ -125.156250, 49.837982 ], [ -125.156250, 49.610710 ], [ -124.980469, 49.610710 ], [ -124.980469, 49.382373 ], [ -124.628906, 49.382373 ], [ -124.628906, 49.267805 ], [ -124.453125, 49.267805 ], [ -124.453125, 49.152970 ], [ -124.101562, 49.152970 ], [ -124.101562, 49.037868 ], [ -123.925781, 49.037868 ], [ -123.925781, 48.806863 ], [ -123.750000, 48.806863 ], [ -123.750000, 48.574790 ], [ -123.574219, 48.574790 ], [ -123.574219, 48.341646 ], [ -124.277344, 48.341646 ], [ -124.277344, 48.458352 ], [ -124.628906, 48.458352 ], [ -124.628906, 48.574790 ], [ -125.156250, 48.574790 ], [ -125.156250, 48.690960 ], [ -125.507812, 48.690960 ], [ -125.507812, 48.806863 ], [ -125.859375, 48.806863 ], [ -125.859375, 49.037868 ], [ -126.035156, 49.037868 ], [ -126.035156, 49.152970 ], [ -126.210938, 49.152970 ], [ -126.210938, 49.267805 ], [ -126.562500, 49.267805 ], [ -126.562500, 49.382373 ], [ -126.914062, 49.382373 ], [ -126.914062, 49.610710 ], [ -127.089844, 49.610710 ], [ -127.089844, 49.837982 ], [ -127.792969, 49.837982 ], [ -127.792969, 49.951220 ], [ -128.144531, 49.951220 ], [ -128.144531, 50.064192 ], [ -128.320312, 50.064192 ], [ -128.320312, 50.289339 ], [ -128.496094, 50.289339 ], [ -128.496094, 50.625073 ], [ -128.320312, 50.625073 ], [ -128.320312, 50.736455 ], [ -128.144531, 50.736455 ] ] ], [ [ [ -131.835938, 54.162434 ], [ -131.835938, 53.540307 ], [ -132.011719, 53.540307 ], [ -132.011719, 52.908902 ], [ -131.835938, 52.908902 ], [ -131.835938, 52.696361 ], [ -131.660156, 52.696361 ], [ -131.660156, 52.589701 ], [ -131.484375, 52.589701 ], [ -131.484375, 52.375599 ], [ -131.308594, 52.375599 ], [ -131.308594, 52.160455 ], [ -131.835938, 52.160455 ], [ -131.835938, 52.375599 ], [ -132.011719, 52.375599 ], [ -132.011719, 52.482780 ], [ -132.187500, 52.482780 ], [ -132.187500, 52.696361 ], [ -132.363281, 52.696361 ], [ -132.363281, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.120405 ], [ -132.714844, 53.120405 ], [ -132.714844, 53.225768 ], [ -132.890625, 53.225768 ], [ -132.890625, 53.330873 ], [ -133.066406, 53.330873 ], [ -133.066406, 53.644638 ], [ -133.242188, 53.644638 ], [ -133.242188, 54.162434 ], [ -133.066406, 54.162434 ], [ -133.066406, 54.059388 ], [ -132.187500, 54.059388 ], [ -132.187500, 54.162434 ], [ -131.835938, 54.162434 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.091408 ], [ -90.000000, 64.091408 ], [ -90.000000, 64.014496 ], [ -90.175781, 64.014496 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.782486 ], [ -90.527344, 63.782486 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 63.312683 ], [ -90.878906, 63.312683 ], [ -90.878906, 62.995158 ], [ -91.054688, 62.995158 ], [ -91.054688, 62.915233 ], [ -91.582031, 62.915233 ], [ -91.582031, 62.835089 ], [ -91.933594, 62.835089 ], [ -91.933594, 62.754726 ], [ -92.109375, 62.754726 ], [ -92.109375, 62.674143 ], [ -92.285156, 62.674143 ], [ -92.285156, 62.512318 ], [ -92.460938, 62.512318 ], [ -92.460938, 62.431074 ], [ -92.636719, 62.431074 ], [ -92.636719, 62.349609 ], [ -92.812500, 62.349609 ], [ -92.812500, 62.186014 ], [ -92.988281, 62.186014 ], [ -92.988281, 62.103883 ], [ -93.164062, 62.103883 ], [ -93.164062, 62.021528 ], [ -93.339844, 62.021528 ], [ -93.339844, 61.856149 ], [ -93.515625, 61.856149 ], [ -93.515625, 61.689872 ], [ -93.691406, 61.689872 ], [ -93.691406, 61.522695 ], [ -93.867188, 61.522695 ], [ -93.867188, 61.354614 ], [ -94.042969, 61.354614 ], [ -94.042969, 61.185625 ], [ -94.218750, 61.185625 ], [ -94.218750, 61.015725 ], [ -94.394531, 61.015725 ], [ -94.394531, 60.673179 ], [ -94.570312, 60.673179 ], [ -94.570312, 60.326948 ], [ -94.746094, 60.326948 ], [ -94.746094, 58.995311 ], [ -94.570312, 58.995311 ], [ -94.570312, 58.904646 ], [ -93.867188, 58.904646 ], [ -93.867188, 58.813742 ], [ -93.339844, 58.813742 ], [ -93.339844, 58.631217 ], [ -93.164062, 58.631217 ], [ -93.164062, 58.355630 ], [ -92.988281, 58.355630 ], [ -92.988281, 57.984808 ], [ -92.812500, 57.984808 ], [ -92.812500, 57.704147 ], [ -92.636719, 57.704147 ], [ -92.636719, 57.326521 ], [ -92.460938, 57.326521 ], [ -92.460938, 57.136239 ], [ -91.933594, 57.136239 ], [ -91.933594, 57.231503 ], [ -91.230469, 57.231503 ], [ -91.230469, 57.326521 ], [ -90.878906, 57.326521 ], [ -90.878906, 57.231503 ], [ -90.351562, 57.231503 ], [ -90.351562, 57.136239 ], [ -90.000000, 57.136239 ], [ -90.000000, 57.040730 ], [ -89.472656, 57.040730 ], [ -89.472656, 56.944974 ], [ -89.121094, 56.944974 ], [ -89.121094, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.341646 ], [ -91.230469, 48.341646 ], [ -91.230469, 48.224673 ], [ -92.109375, 48.224673 ], [ -92.109375, 48.341646 ], [ -92.460938, 48.341646 ], [ -92.460938, 48.458352 ], [ -92.988281, 48.458352 ], [ -92.988281, 48.574790 ], [ -93.515625, 48.574790 ], [ -93.515625, 48.690960 ], [ -94.570312, 48.690960 ], [ -94.570312, 48.806863 ], [ -94.746094, 48.806863 ], [ -94.746094, 49.152970 ], [ -94.921875, 49.152970 ], [ -94.921875, 49.496675 ], [ -95.273438, 49.496675 ], [ -95.273438, 49.037868 ], [ -123.222656, 49.037868 ], [ -123.222656, 49.152970 ], [ -123.398438, 49.152970 ], [ -123.398438, 49.267805 ], [ -123.750000, 49.267805 ], [ -123.750000, 49.382373 ], [ -123.925781, 49.382373 ], [ -123.925781, 49.496675 ], [ -124.101562, 49.496675 ], [ -124.101562, 49.610710 ], [ -124.277344, 49.610710 ], [ -124.277344, 49.724479 ], [ -124.453125, 49.724479 ], [ -124.453125, 49.837982 ], [ -124.804688, 49.837982 ], [ -124.804688, 49.951220 ], [ -124.980469, 49.951220 ], [ -124.980469, 50.064192 ], [ -125.156250, 50.064192 ], [ -125.156250, 50.176898 ], [ -125.332031, 50.176898 ], [ -125.332031, 50.289339 ], [ -125.507812, 50.289339 ], [ -125.507812, 50.401515 ], [ -125.683594, 50.401515 ], [ -125.683594, 50.513427 ], [ -126.035156, 50.513427 ], [ -126.035156, 50.625073 ], [ -126.738281, 50.625073 ], [ -126.738281, 50.736455 ], [ -127.265625, 50.736455 ], [ -127.265625, 50.847573 ], [ -127.441406, 50.847573 ], [ -127.441406, 50.958427 ], [ -127.617188, 50.958427 ], [ -127.617188, 51.179343 ], [ -127.792969, 51.179343 ], [ -127.792969, 51.399206 ], [ -127.968750, 51.399206 ], [ -127.968750, 51.618017 ], [ -128.144531, 51.618017 ], [ -128.144531, 52.052490 ], [ -127.968750, 52.052490 ], [ -127.968750, 52.375599 ], [ -128.144531, 52.375599 ], [ -128.144531, 52.482780 ], [ -128.496094, 52.482780 ], [ -128.496094, 52.589701 ], [ -128.847656, 52.589701 ], [ -128.847656, 52.696361 ], [ -129.199219, 52.696361 ], [ -129.199219, 53.225768 ], [ -129.375000, 53.225768 ], [ -129.375000, 53.644638 ], [ -129.550781, 53.644638 ], [ -129.550781, 53.748711 ], [ -129.726562, 53.748711 ], [ -129.726562, 53.852527 ], [ -129.902344, 53.852527 ], [ -129.902344, 53.956086 ], [ -130.078125, 53.956086 ], [ -130.078125, 54.059388 ], [ -130.253906, 54.059388 ], [ -130.253906, 54.162434 ], [ -130.429688, 54.162434 ], [ -130.429688, 54.265224 ], [ -130.605469, 54.265224 ], [ -130.605469, 54.876607 ], [ -130.429688, 54.876607 ], [ -130.429688, 55.078367 ], [ -130.253906, 55.078367 ], [ -130.253906, 55.279115 ], [ -130.078125, 55.279115 ], [ -130.078125, 55.973798 ], [ -130.253906, 55.973798 ], [ -130.253906, 56.072035 ], [ -130.605469, 56.072035 ], [ -130.605469, 56.170023 ], [ -130.957031, 56.170023 ], [ -130.957031, 56.267761 ], [ -131.132812, 56.267761 ], [ -131.132812, 56.365250 ], [ -131.484375, 56.365250 ], [ -131.484375, 56.462490 ], [ -131.835938, 56.462490 ], [ -131.835938, 56.656226 ], [ -132.011719, 56.656226 ], [ -132.011719, 56.848972 ], [ -132.187500, 56.848972 ], [ -132.187500, 57.040730 ], [ -132.363281, 57.040730 ], [ -132.363281, 57.231503 ], [ -132.539062, 57.231503 ], [ -132.539062, 57.421294 ], [ -132.714844, 57.421294 ], [ -132.714844, 57.610107 ], [ -132.890625, 57.610107 ], [ -132.890625, 57.797944 ], [ -133.066406, 57.797944 ], [ -133.066406, 58.077876 ], [ -133.242188, 58.077876 ], [ -133.242188, 58.263287 ], [ -133.417969, 58.263287 ], [ -133.417969, 58.447733 ], [ -133.593750, 58.447733 ], [ -133.593750, 58.539595 ], [ -133.769531, 58.539595 ], [ -133.769531, 58.631217 ], [ -133.945312, 58.631217 ], [ -133.945312, 58.722599 ], [ -134.121094, 58.722599 ], [ -134.121094, 58.813742 ], [ -134.296875, 58.813742 ], [ -134.296875, 58.904646 ], [ -134.472656, 58.904646 ], [ -134.472656, 58.995311 ], [ -134.648438, 58.995311 ], [ -134.648438, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.265881 ], [ -135.000000, 59.265881 ], [ -135.000000, 59.355596 ], [ -135.175781, 59.355596 ], [ -135.175781, 59.534318 ], [ -135.351562, 59.534318 ], [ -135.351562, 59.712097 ], [ -135.878906, 59.712097 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.320312, 50.847573 ], [ -128.320312, 50.736455 ], [ -127.792969, 50.736455 ], [ -127.792969, 50.625073 ], [ -127.441406, 50.625073 ], [ -127.441406, 50.513427 ], [ -127.089844, 50.513427 ], [ -127.089844, 50.401515 ], [ -125.859375, 50.401515 ], [ -125.859375, 50.289339 ], [ -125.683594, 50.289339 ], [ -125.683594, 50.064192 ], [ -125.507812, 50.064192 ], [ -125.507812, 49.837982 ], [ -125.332031, 49.837982 ], [ -125.332031, 49.724479 ], [ -125.156250, 49.724479 ], [ -125.156250, 49.496675 ], [ -124.980469, 49.496675 ], [ -124.980469, 49.382373 ], [ -124.628906, 49.382373 ], [ -124.628906, 49.267805 ], [ -124.277344, 49.267805 ], [ -124.277344, 49.152970 ], [ -123.925781, 49.152970 ], [ -123.925781, 48.922499 ], [ -123.750000, 48.922499 ], [ -123.750000, 48.690960 ], [ -123.574219, 48.690960 ], [ -123.574219, 48.574790 ], [ -123.750000, 48.574790 ], [ -123.750000, 48.458352 ], [ -124.453125, 48.458352 ], [ -124.453125, 48.574790 ], [ -124.804688, 48.574790 ], [ -124.804688, 48.690960 ], [ -125.156250, 48.690960 ], [ -125.156250, 48.806863 ], [ -125.507812, 48.806863 ], [ -125.507812, 48.922499 ], [ -125.859375, 48.922499 ], [ -125.859375, 49.152970 ], [ -126.035156, 49.152970 ], [ -126.035156, 49.267805 ], [ -126.210938, 49.267805 ], [ -126.210938, 49.382373 ], [ -126.562500, 49.382373 ], [ -126.562500, 49.496675 ], [ -126.914062, 49.496675 ], [ -126.914062, 49.724479 ], [ -127.089844, 49.724479 ], [ -127.089844, 49.837982 ], [ -127.441406, 49.837982 ], [ -127.441406, 49.951220 ], [ -127.968750, 49.951220 ], [ -127.968750, 50.064192 ], [ -128.144531, 50.064192 ], [ -128.144531, 50.176898 ], [ -128.320312, 50.176898 ], [ -128.320312, 50.401515 ], [ -128.496094, 50.401515 ], [ -128.496094, 50.847573 ], [ -128.320312, 50.847573 ] ] ], [ [ [ -131.835938, 54.162434 ], [ -131.835938, 53.852527 ], [ -132.011719, 53.852527 ], [ -132.011719, 53.225768 ], [ -132.187500, 53.225768 ], [ -132.187500, 52.908902 ], [ -132.011719, 52.908902 ], [ -132.011719, 52.696361 ], [ -131.835938, 52.696361 ], [ -131.835938, 52.589701 ], [ -131.660156, 52.589701 ], [ -131.660156, 52.482780 ], [ -131.484375, 52.482780 ], [ -131.484375, 52.268157 ], [ -131.835938, 52.268157 ], [ -131.835938, 52.482780 ], [ -132.011719, 52.482780 ], [ -132.011719, 52.589701 ], [ -132.187500, 52.589701 ], [ -132.187500, 52.696361 ], [ -132.363281, 52.696361 ], [ -132.363281, 52.908902 ], [ -132.539062, 52.908902 ], [ -132.539062, 53.014783 ], [ -132.714844, 53.014783 ], [ -132.714844, 53.120405 ], [ -132.890625, 53.120405 ], [ -132.890625, 53.330873 ], [ -133.066406, 53.330873 ], [ -133.066406, 53.644638 ], [ -133.242188, 53.644638 ], [ -133.242188, 54.162434 ], [ -132.890625, 54.162434 ], [ -132.890625, 54.059388 ], [ -132.187500, 54.059388 ], [ -132.187500, 54.162434 ], [ -131.835938, 54.162434 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.746094, 49.382373 ], [ -94.746094, 49.037868 ], [ -94.570312, 49.037868 ], [ -94.570312, 48.690960 ], [ -94.218750, 48.690960 ], [ -94.218750, 48.574790 ], [ -93.339844, 48.574790 ], [ -93.339844, 48.458352 ], [ -92.636719, 48.458352 ], [ -92.636719, 48.341646 ], [ -92.285156, 48.341646 ], [ -92.285156, 48.224673 ], [ -91.933594, 48.224673 ], [ -91.933594, 48.107431 ], [ -91.054688, 48.107431 ], [ -91.054688, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 47.989922 ], [ -89.121094, 47.989922 ], [ -89.121094, 40.313043 ], [ -124.453125, 40.313043 ], [ -124.453125, 40.446947 ], [ -124.277344, 40.446947 ], [ -124.277344, 40.847060 ], [ -124.101562, 40.847060 ], [ -124.101562, 41.508577 ], [ -124.277344, 41.508577 ], [ -124.277344, 42.423457 ], [ -124.453125, 42.423457 ], [ -124.453125, 42.940339 ], [ -124.277344, 42.940339 ], [ -124.277344, 43.452919 ], [ -124.101562, 43.452919 ], [ -124.101562, 45.089036 ], [ -123.925781, 45.089036 ], [ -123.925781, 46.195042 ], [ -124.101562, 46.195042 ], [ -124.101562, 47.040182 ], [ -124.277344, 47.040182 ], [ -124.277344, 47.517201 ], [ -124.453125, 47.517201 ], [ -124.453125, 47.989922 ], [ -124.628906, 47.989922 ], [ -124.628906, 48.341646 ], [ -124.453125, 48.341646 ], [ -124.453125, 48.224673 ], [ -123.925781, 48.224673 ], [ -123.925781, 48.107431 ], [ -123.398438, 48.107431 ], [ -123.398438, 47.989922 ], [ -123.046875, 47.989922 ], [ -123.046875, 47.754098 ], [ -122.871094, 47.754098 ], [ -122.871094, 47.517201 ], [ -122.695312, 47.517201 ], [ -122.695312, 47.159840 ], [ -122.343750, 47.159840 ], [ -122.343750, 47.754098 ], [ -122.519531, 47.754098 ], [ -122.519531, 48.341646 ], [ -122.695312, 48.341646 ], [ -122.695312, 48.806863 ], [ -122.871094, 48.806863 ], [ -122.871094, 49.037868 ], [ -95.097656, 49.037868 ], [ -95.097656, 49.382373 ], [ -94.746094, 49.382373 ] ] ], [ [ [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.175928 ], [ -134.824219, 59.175928 ], [ -134.824219, 59.085739 ], [ -134.648438, 59.085739 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.722599 ], [ -133.945312, 58.722599 ], [ -133.945312, 58.631217 ], [ -133.769531, 58.631217 ], [ -133.769531, 58.539595 ], [ -133.593750, 58.539595 ], [ -133.593750, 58.447733 ], [ -133.417969, 58.447733 ], [ -133.417969, 58.355630 ], [ -133.242188, 58.355630 ], [ -133.242188, 58.170702 ], [ -133.066406, 58.170702 ], [ -133.066406, 57.984808 ], [ -132.890625, 57.984808 ], [ -132.890625, 57.797944 ], [ -132.714844, 57.797944 ], [ -132.714844, 57.610107 ], [ -132.539062, 57.610107 ], [ -132.539062, 57.421294 ], [ -132.363281, 57.421294 ], [ -132.363281, 57.231503 ], [ -132.187500, 57.231503 ], [ -132.187500, 57.040730 ], [ -132.011719, 57.040730 ], [ -132.011719, 56.848972 ], [ -131.835938, 56.848972 ], [ -131.835938, 56.656226 ], [ -131.660156, 56.656226 ], [ -131.660156, 56.462490 ], [ -131.484375, 56.462490 ], [ -131.484375, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.267761 ], [ -130.957031, 56.267761 ], [ -130.957031, 56.170023 ], [ -130.781250, 56.170023 ], [ -130.781250, 56.072035 ], [ -130.429688, 56.072035 ], [ -130.429688, 55.973798 ], [ -130.253906, 55.973798 ], [ -130.253906, 55.875311 ], [ -130.078125, 55.875311 ], [ -130.078125, 55.578345 ], [ -129.902344, 55.578345 ], [ -129.902344, 55.178868 ], [ -130.078125, 55.178868 ], [ -130.078125, 55.078367 ], [ -130.253906, 55.078367 ], [ -130.253906, 54.876607 ], [ -130.429688, 54.876607 ], [ -130.429688, 54.775346 ], [ -130.781250, 54.775346 ], [ -130.781250, 54.977614 ], [ -130.957031, 54.977614 ], [ -130.957031, 55.078367 ], [ -131.132812, 55.078367 ], [ -131.132812, 55.178868 ], [ -131.308594, 55.178868 ], [ -131.308594, 55.279115 ], [ -131.660156, 55.279115 ], [ -131.660156, 55.379110 ], [ -132.011719, 55.379110 ], [ -132.011719, 55.875311 ], [ -132.187500, 55.875311 ], [ -132.187500, 56.365250 ], [ -132.363281, 56.365250 ], [ -132.363281, 56.462490 ], [ -132.539062, 56.462490 ], [ -132.539062, 56.559482 ], [ -132.714844, 56.559482 ], [ -132.714844, 56.656226 ], [ -132.890625, 56.656226 ], [ -132.890625, 56.752723 ], [ -133.066406, 56.752723 ], [ -133.066406, 56.848972 ], [ -133.242188, 56.848972 ], [ -133.242188, 56.944974 ], [ -133.417969, 56.944974 ], [ -133.417969, 57.040730 ], [ -133.593750, 57.040730 ], [ -133.593750, 57.231503 ], [ -133.769531, 57.231503 ], [ -133.769531, 57.610107 ], [ -133.945312, 57.610107 ], [ -133.945312, 57.891497 ], [ -134.121094, 57.891497 ], [ -134.121094, 58.077876 ], [ -134.648438, 58.077876 ], [ -134.648438, 58.170702 ], [ -135.878906, 58.170702 ], [ -135.878906, 59.623325 ], [ -135.703125, 59.623325 ], [ -135.703125, 59.712097 ], [ -135.351562, 59.712097 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.921875, 49.496675 ], [ -94.921875, 49.152970 ], [ -94.746094, 49.152970 ], [ -94.746094, 48.806863 ], [ -94.570312, 48.806863 ], [ -94.570312, 48.690960 ], [ -93.515625, 48.690960 ], [ -93.515625, 48.574790 ], [ -92.988281, 48.574790 ], [ -92.988281, 48.458352 ], [ -92.460938, 48.458352 ], [ -92.460938, 48.341646 ], [ -92.109375, 48.341646 ], [ -92.109375, 48.224673 ], [ -91.230469, 48.224673 ], [ -91.230469, 48.341646 ], [ -90.703125, 48.341646 ], [ -90.703125, 48.224673 ], [ -90.000000, 48.224673 ], [ -90.000000, 48.107431 ], [ -89.121094, 48.107431 ], [ -89.121094, 40.313043 ], [ -124.453125, 40.313043 ], [ -124.453125, 40.713956 ], [ -124.277344, 40.713956 ], [ -124.277344, 42.163403 ], [ -124.453125, 42.163403 ], [ -124.453125, 42.553080 ], [ -124.628906, 42.553080 ], [ -124.628906, 42.940339 ], [ -124.453125, 42.940339 ], [ -124.453125, 43.452919 ], [ -124.277344, 43.452919 ], [ -124.277344, 44.213710 ], [ -124.101562, 44.213710 ], [ -124.101562, 45.089036 ], [ -123.925781, 45.089036 ], [ -123.925781, 46.195042 ], [ -124.101562, 46.195042 ], [ -124.101562, 47.040182 ], [ -124.277344, 47.040182 ], [ -124.277344, 47.517201 ], [ -124.453125, 47.517201 ], [ -124.453125, 47.872144 ], [ -124.628906, 47.872144 ], [ -124.628906, 48.107431 ], [ -124.804688, 48.107431 ], [ -124.804688, 48.341646 ], [ -124.628906, 48.341646 ], [ -124.628906, 48.458352 ], [ -124.453125, 48.458352 ], [ -124.453125, 48.341646 ], [ -124.101562, 48.341646 ], [ -124.101562, 48.224673 ], [ -123.574219, 48.224673 ], [ -123.574219, 48.107431 ], [ -123.222656, 48.107431 ], [ -123.222656, 47.872144 ], [ -123.046875, 47.872144 ], [ -123.046875, 47.635784 ], [ -122.871094, 47.635784 ], [ -122.871094, 47.279229 ], [ -122.695312, 47.279229 ], [ -122.695312, 47.159840 ], [ -122.519531, 47.159840 ], [ -122.519531, 47.279229 ], [ -122.343750, 47.279229 ], [ -122.343750, 47.754098 ], [ -122.519531, 47.754098 ], [ -122.519531, 48.341646 ], [ -122.695312, 48.341646 ], [ -122.695312, 48.806863 ], [ -122.871094, 48.806863 ], [ -122.871094, 49.037868 ], [ -95.273438, 49.037868 ], [ -95.273438, 49.496675 ], [ -94.921875, 49.496675 ] ] ], [ [ [ -135.351562, 59.712097 ], [ -135.351562, 59.534318 ], [ -135.175781, 59.534318 ], [ -135.175781, 59.355596 ], [ -135.000000, 59.355596 ], [ -135.000000, 59.265881 ], [ -134.824219, 59.265881 ], [ -134.824219, 59.175928 ], [ -134.648438, 59.175928 ], [ -134.648438, 58.995311 ], [ -134.472656, 58.995311 ], [ -134.472656, 58.904646 ], [ -134.296875, 58.904646 ], [ -134.296875, 58.813742 ], [ -134.121094, 58.813742 ], [ -134.121094, 58.722599 ], [ -133.945312, 58.722599 ], [ -133.945312, 58.631217 ], [ -133.769531, 58.631217 ], [ -133.769531, 58.539595 ], [ -133.593750, 58.539595 ], [ -133.593750, 58.447733 ], [ -133.417969, 58.447733 ], [ -133.417969, 58.263287 ], [ -133.242188, 58.263287 ], [ -133.242188, 58.077876 ], [ -133.066406, 58.077876 ], [ -133.066406, 57.797944 ], [ -132.890625, 57.797944 ], [ -132.890625, 57.610107 ], [ -132.714844, 57.610107 ], [ -132.714844, 57.421294 ], [ -132.539062, 57.421294 ], [ -132.539062, 57.231503 ], [ -132.363281, 57.231503 ], [ -132.363281, 57.040730 ], [ -132.187500, 57.040730 ], [ -132.187500, 56.848972 ], [ -132.011719, 56.848972 ], [ -132.011719, 56.656226 ], [ -131.835938, 56.656226 ], [ -131.835938, 56.462490 ], [ -131.484375, 56.462490 ], [ -131.484375, 56.365250 ], [ -131.132812, 56.365250 ], [ -131.132812, 56.267761 ], [ -130.957031, 56.267761 ], [ -130.957031, 56.170023 ], [ -130.605469, 56.170023 ], [ -130.605469, 56.072035 ], [ -130.253906, 56.072035 ], [ -130.253906, 55.973798 ], [ -130.078125, 55.973798 ], [ -130.078125, 55.279115 ], [ -130.253906, 55.279115 ], [ -130.253906, 55.078367 ], [ -130.429688, 55.078367 ], [ -130.429688, 54.876607 ], [ -130.781250, 54.876607 ], [ -130.781250, 54.977614 ], [ -130.957031, 54.977614 ], [ -130.957031, 55.078367 ], [ -131.132812, 55.078367 ], [ -131.132812, 55.178868 ], [ -131.308594, 55.178868 ], [ -131.308594, 55.279115 ], [ -131.484375, 55.279115 ], [ -131.484375, 55.379110 ], [ -131.835938, 55.379110 ], [ -131.835938, 55.478853 ], [ -132.011719, 55.478853 ], [ -132.011719, 55.776573 ], [ -132.187500, 55.776573 ], [ -132.187500, 56.170023 ], [ -132.363281, 56.170023 ], [ -132.363281, 56.462490 ], [ -132.539062, 56.462490 ], [ -132.539062, 56.559482 ], [ -132.714844, 56.559482 ], [ -132.714844, 56.656226 ], [ -132.890625, 56.656226 ], [ -132.890625, 56.848972 ], [ -133.066406, 56.848972 ], [ -133.066406, 56.944974 ], [ -133.242188, 56.944974 ], [ -133.242188, 57.040730 ], [ -133.417969, 57.040730 ], [ -133.417969, 57.136239 ], [ -133.593750, 57.136239 ], [ -133.593750, 57.326521 ], [ -133.769531, 57.326521 ], [ -133.769531, 57.704147 ], [ -133.945312, 57.704147 ], [ -133.945312, 57.984808 ], [ -134.121094, 57.984808 ], [ -134.121094, 58.170702 ], [ -134.824219, 58.170702 ], [ -134.824219, 58.263287 ], [ -135.878906, 58.263287 ], [ -135.878906, 59.712097 ], [ -135.351562, 59.712097 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.097656, 71.910888 ], [ -95.097656, 71.856229 ], [ -94.746094, 71.856229 ], [ -94.746094, 71.801410 ], [ -94.218750, 71.801410 ], [ -94.218750, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.691293 ], [ -93.691406, 71.691293 ], [ -93.691406, 71.635993 ], [ -93.515625, 71.635993 ], [ -93.515625, 71.524909 ], [ -93.339844, 71.524909 ], [ -93.339844, 71.469124 ], [ -93.164062, 71.469124 ], [ -93.164062, 71.413177 ], [ -92.988281, 71.413177 ], [ -92.988281, 71.300793 ], [ -92.812500, 71.300793 ], [ -92.812500, 71.187754 ], [ -92.636719, 71.187754 ], [ -92.636719, 71.016960 ], [ -92.460938, 71.016960 ], [ -92.460938, 70.902268 ], [ -92.285156, 70.902268 ], [ -92.285156, 70.728979 ], [ -92.109375, 70.728979 ], [ -92.109375, 70.554179 ], [ -91.933594, 70.554179 ], [ -91.933594, 70.436799 ], [ -91.757812, 70.436799 ], [ -91.757812, 70.259452 ], [ -91.582031, 70.259452 ], [ -91.582031, 70.140364 ], [ -91.757812, 70.140364 ], [ -91.757812, 70.020587 ], [ -91.933594, 70.020587 ], [ -91.933594, 69.960439 ], [ -92.109375, 69.960439 ], [ -92.109375, 69.839622 ], [ -92.285156, 69.839622 ], [ -92.285156, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.595890 ], [ -91.406250, 69.595890 ], [ -91.406250, 69.534518 ], [ -90.878906, 69.534518 ], [ -90.878906, 69.472969 ], [ -90.527344, 69.472969 ], [ -90.527344, 68.463800 ], [ -90.351562, 68.463800 ], [ -90.351562, 68.592487 ], [ -90.175781, 68.592487 ], [ -90.175781, 68.720441 ], [ -90.000000, 68.720441 ], [ -90.000000, 68.847665 ], [ -89.824219, 68.847665 ], [ -89.824219, 68.974164 ], [ -89.648438, 68.974164 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.224997 ], [ -135.703125, 69.224997 ], [ -135.703125, 69.287257 ], [ -135.527344, 69.287257 ], [ -135.527344, 69.349339 ], [ -135.351562, 69.349339 ], [ -135.351562, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -134.824219, 69.472969 ], [ -134.824219, 69.534518 ], [ -134.648438, 69.534518 ], [ -134.648438, 69.595890 ], [ -134.472656, 69.595890 ], [ -134.472656, 69.657086 ], [ -134.121094, 69.657086 ], [ -134.121094, 69.595890 ], [ -133.417969, 69.595890 ], [ -133.417969, 69.534518 ], [ -132.714844, 69.534518 ], [ -132.714844, 69.595890 ], [ -132.539062, 69.595890 ], [ -132.539062, 69.657086 ], [ -132.363281, 69.657086 ], [ -132.363281, 69.718107 ], [ -132.011719, 69.718107 ], [ -132.011719, 69.778952 ], [ -131.835938, 69.778952 ], [ -131.835938, 69.839622 ], [ -131.660156, 69.839622 ], [ -131.660156, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 69.960439 ], [ -131.132812, 69.960439 ], [ -131.132812, 70.020587 ], [ -130.781250, 70.020587 ], [ -130.781250, 70.080562 ], [ -130.253906, 70.080562 ], [ -130.253906, 70.140364 ], [ -129.902344, 70.140364 ], [ -129.902344, 70.199994 ], [ -129.726562, 70.199994 ], [ -129.726562, 70.140364 ], [ -129.550781, 70.140364 ], [ -129.550781, 70.020587 ], [ -129.375000, 70.020587 ], [ -129.375000, 69.900118 ], [ -129.199219, 69.900118 ], [ -129.199219, 69.778952 ], [ -128.847656, 69.778952 ], [ -128.847656, 69.839622 ], [ -128.671875, 69.839622 ], [ -128.671875, 69.900118 ], [ -128.496094, 69.900118 ], [ -128.496094, 69.960439 ], [ -128.320312, 69.960439 ], [ -128.320312, 70.259452 ], [ -128.144531, 70.259452 ], [ -128.144531, 70.436799 ], [ -127.792969, 70.436799 ], [ -127.792969, 70.377854 ], [ -127.441406, 70.377854 ], [ -127.441406, 70.318738 ], [ -127.265625, 70.318738 ], [ -127.265625, 70.199994 ], [ -127.089844, 70.199994 ], [ -127.089844, 70.140364 ], [ -126.914062, 70.140364 ], [ -126.914062, 70.020587 ], [ -126.738281, 70.020587 ], [ -126.738281, 69.960439 ], [ -126.562500, 69.960439 ], [ -126.562500, 69.839622 ], [ -126.386719, 69.839622 ], [ -126.386719, 69.778952 ], [ -126.210938, 69.778952 ], [ -126.210938, 69.657086 ], [ -126.035156, 69.657086 ], [ -126.035156, 69.595890 ], [ -125.859375, 69.595890 ], [ -125.859375, 69.472969 ], [ -125.507812, 69.472969 ], [ -125.507812, 69.595890 ], [ -125.332031, 69.595890 ], [ -125.332031, 69.657086 ], [ -125.156250, 69.657086 ], [ -125.156250, 69.778952 ], [ -124.980469, 69.778952 ], [ -124.980469, 69.900118 ], [ -124.804688, 69.900118 ], [ -124.804688, 69.960439 ], [ -124.628906, 69.960439 ], [ -124.628906, 70.080562 ], [ -124.453125, 70.080562 ], [ -124.453125, 69.778952 ], [ -124.277344, 69.778952 ], [ -124.277344, 69.411242 ], [ -123.925781, 69.411242 ], [ -123.925781, 69.472969 ], [ -123.222656, 69.472969 ], [ -123.222656, 69.534518 ], [ -123.046875, 69.534518 ], [ -123.046875, 69.595890 ], [ -122.871094, 69.595890 ], [ -122.871094, 69.718107 ], [ -122.695312, 69.718107 ], [ -122.695312, 69.839622 ], [ -122.167969, 69.839622 ], [ -122.167969, 69.778952 ], [ -121.464844, 69.778952 ], [ -121.464844, 69.718107 ], [ -121.289062, 69.718107 ], [ -121.289062, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.595890 ], [ -120.761719, 69.595890 ], [ -120.761719, 69.534518 ], [ -120.585938, 69.534518 ], [ -120.585938, 69.472969 ], [ -120.234375, 69.472969 ], [ -120.234375, 69.411242 ], [ -120.058594, 69.411242 ], [ -120.058594, 69.349339 ], [ -119.707031, 69.349339 ], [ -119.707031, 69.287257 ], [ -119.355469, 69.287257 ], [ -119.355469, 69.224997 ], [ -118.828125, 69.224997 ], [ -118.828125, 69.162558 ], [ -118.300781, 69.162558 ], [ -118.300781, 69.099940 ], [ -117.949219, 69.099940 ], [ -117.949219, 69.037142 ], [ -117.421875, 69.037142 ], [ -117.421875, 68.974164 ], [ -117.070312, 68.974164 ], [ -117.070312, 68.911005 ], [ -116.542969, 68.911005 ], [ -116.542969, 68.847665 ], [ -115.664062, 68.847665 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.847665 ], [ -115.136719, 68.847665 ], [ -115.136719, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.720441 ], [ -114.785156, 68.720441 ], [ -114.785156, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.592487 ], [ -114.433594, 68.592487 ], [ -114.433594, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.463800 ], [ -114.082031, 68.463800 ], [ -114.082031, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.334376 ], [ -114.082031, 68.334376 ], [ -114.082031, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.204212 ], [ -114.433594, 68.204212 ], [ -114.433594, 68.138852 ], [ -114.609375, 68.138852 ], [ -114.609375, 68.073305 ], [ -114.785156, 68.073305 ], [ -114.785156, 68.007571 ], [ -114.960938, 68.007571 ], [ -114.960938, 67.941650 ], [ -115.136719, 67.941650 ], [ -115.136719, 67.809245 ], [ -114.609375, 67.809245 ], [ -114.609375, 67.742759 ], [ -113.906250, 67.742759 ], [ -113.906250, 67.676085 ], [ -112.675781, 67.676085 ], [ -112.675781, 67.742759 ], [ -111.269531, 67.742759 ], [ -111.269531, 67.809245 ], [ -110.566406, 67.809245 ], [ -110.566406, 67.875541 ], [ -110.214844, 67.875541 ], [ -110.214844, 67.941650 ], [ -109.687500, 67.941650 ], [ -109.687500, 67.809245 ], [ -109.511719, 67.809245 ], [ -109.511719, 67.742759 ], [ -109.335938, 67.742759 ], [ -109.335938, 67.609221 ], [ -109.160156, 67.609221 ], [ -109.160156, 67.542167 ], [ -108.984375, 67.542167 ], [ -108.984375, 67.407487 ], [ -108.632812, 67.407487 ], [ -108.632812, 67.474922 ], [ -108.457031, 67.474922 ], [ -108.457031, 67.542167 ], [ -108.281250, 67.542167 ], [ -108.281250, 67.676085 ], [ -108.105469, 67.676085 ], [ -108.105469, 67.742759 ], [ -107.929688, 67.742759 ], [ -107.929688, 67.809245 ], [ -107.753906, 67.809245 ], [ -107.753906, 67.875541 ], [ -107.929688, 67.875541 ], [ -107.929688, 67.941650 ], [ -108.105469, 67.941650 ], [ -108.105469, 68.007571 ], [ -108.281250, 68.007571 ], [ -108.281250, 68.138852 ], [ -108.457031, 68.138852 ], [ -108.457031, 68.204212 ], [ -108.632812, 68.204212 ], [ -108.632812, 68.269387 ], [ -108.808594, 68.269387 ], [ -108.808594, 68.334376 ], [ -108.632812, 68.334376 ], [ -108.632812, 68.399180 ], [ -108.457031, 68.399180 ], [ -108.457031, 68.528235 ], [ -108.281250, 68.528235 ], [ -108.281250, 68.592487 ], [ -108.105469, 68.592487 ], [ -108.105469, 68.656555 ], [ -107.402344, 68.656555 ], [ -107.402344, 68.720441 ], [ -106.347656, 68.720441 ], [ -106.347656, 68.784144 ], [ -106.171875, 68.784144 ], [ -106.171875, 68.720441 ], [ -105.820312, 68.720441 ], [ -105.820312, 68.656555 ], [ -105.468750, 68.656555 ], [ -105.468750, 68.592487 ], [ -105.292969, 68.592487 ], [ -105.292969, 68.528235 ], [ -105.117188, 68.528235 ], [ -105.117188, 68.399180 ], [ -104.941406, 68.399180 ], [ -104.941406, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.138852 ], [ -104.589844, 68.138852 ], [ -104.589844, 68.007571 ], [ -103.710938, 68.007571 ], [ -103.710938, 68.073305 ], [ -103.183594, 68.073305 ], [ -103.183594, 68.007571 ], [ -102.832031, 68.007571 ], [ -102.832031, 67.941650 ], [ -102.480469, 67.941650 ], [ -102.480469, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.809245 ], [ -101.953125, 67.809245 ], [ -101.953125, 67.742759 ], [ -101.601562, 67.742759 ], [ -101.601562, 67.676085 ], [ -100.898438, 67.676085 ], [ -100.898438, 67.742759 ], [ -100.195312, 67.742759 ], [ -100.195312, 67.809245 ], [ -98.437500, 67.809245 ], [ -98.437500, 68.073305 ], [ -98.613281, 68.073305 ], [ -98.613281, 68.399180 ], [ -98.437500, 68.399180 ], [ -98.437500, 68.463800 ], [ -98.085938, 68.463800 ], [ -98.085938, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.463800 ], [ -97.031250, 68.463800 ], [ -97.031250, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.334376 ], [ -96.328125, 68.334376 ], [ -96.328125, 68.269387 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.339861 ], [ -95.976562, 67.339861 ], [ -95.976562, 67.542167 ], [ -95.800781, 67.542167 ], [ -95.800781, 67.742759 ], [ -95.625000, 67.742759 ], [ -95.625000, 67.941650 ], [ -95.449219, 67.941650 ], [ -95.449219, 68.073305 ], [ -94.746094, 68.073305 ], [ -94.746094, 68.204212 ], [ -94.570312, 68.204212 ], [ -94.570312, 68.592487 ], [ -94.394531, 68.592487 ], [ -94.394531, 68.911005 ], [ -94.218750, 68.911005 ], [ -94.218750, 69.099940 ], [ -94.394531, 69.099940 ], [ -94.394531, 69.224997 ], [ -94.570312, 69.224997 ], [ -94.570312, 69.287257 ], [ -94.746094, 69.287257 ], [ -94.746094, 69.411242 ], [ -94.921875, 69.411242 ], [ -94.921875, 69.472969 ], [ -95.097656, 69.472969 ], [ -95.097656, 69.595890 ], [ -95.273438, 69.595890 ], [ -95.273438, 69.657086 ], [ -95.449219, 69.657086 ], [ -95.449219, 69.718107 ], [ -95.625000, 69.718107 ], [ -95.625000, 69.778952 ], [ -95.800781, 69.778952 ], [ -95.800781, 69.839622 ], [ -95.976562, 69.839622 ], [ -95.976562, 69.900118 ], [ -96.152344, 69.900118 ], [ -96.152344, 69.960439 ], [ -96.328125, 69.960439 ], [ -96.328125, 70.020587 ], [ -96.503906, 70.020587 ], [ -96.503906, 70.612614 ], [ -96.328125, 70.612614 ], [ -96.328125, 71.244356 ], [ -96.152344, 71.244356 ], [ -96.152344, 71.357067 ], [ -95.976562, 71.357067 ], [ -95.976562, 71.469124 ], [ -95.800781, 71.469124 ], [ -95.800781, 71.580532 ], [ -95.625000, 71.580532 ], [ -95.625000, 71.691293 ], [ -95.449219, 71.691293 ], [ -95.449219, 71.801410 ], [ -95.273438, 71.801410 ], [ -95.273438, 71.910888 ], [ -95.097656, 71.910888 ] ] ], [ [ [ -98.085938, 70.080562 ], [ -98.085938, 70.020587 ], [ -97.910156, 70.020587 ], [ -97.910156, 69.960439 ], [ -97.558594, 69.960439 ], [ -97.558594, 69.900118 ], [ -97.382812, 69.900118 ], [ -97.382812, 69.839622 ], [ -97.207031, 69.839622 ], [ -97.207031, 69.778952 ], [ -97.031250, 69.778952 ], [ -97.031250, 69.718107 ], [ -96.679688, 69.718107 ], [ -96.679688, 69.657086 ], [ -96.503906, 69.657086 ], [ -96.503906, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.411242 ], [ -96.152344, 69.411242 ], [ -96.152344, 69.287257 ], [ -95.976562, 69.287257 ], [ -95.976562, 69.224997 ], [ -95.800781, 69.224997 ], [ -95.800781, 69.099940 ], [ -95.625000, 69.099940 ], [ -95.625000, 69.037142 ], [ -95.800781, 69.037142 ], [ -95.800781, 68.974164 ], [ -95.976562, 68.974164 ], [ -95.976562, 68.847665 ], [ -96.152344, 68.847665 ], [ -96.152344, 68.784144 ], [ -96.503906, 68.784144 ], [ -96.503906, 68.847665 ], [ -96.855469, 68.847665 ], [ -96.855469, 68.911005 ], [ -97.207031, 68.911005 ], [ -97.207031, 68.974164 ], [ -97.558594, 68.974164 ], [ -97.558594, 69.037142 ], [ -97.910156, 69.037142 ], [ -97.910156, 68.974164 ], [ -98.613281, 68.974164 ], [ -98.613281, 69.037142 ], [ -98.789062, 69.037142 ], [ -98.789062, 69.099940 ], [ -98.964844, 69.099940 ], [ -98.964844, 69.162558 ], [ -99.316406, 69.162558 ], [ -99.316406, 69.224997 ], [ -99.492188, 69.224997 ], [ -99.492188, 69.287257 ], [ -99.667969, 69.287257 ], [ -99.667969, 69.349339 ], [ -99.843750, 69.349339 ], [ -99.843750, 69.411242 ], [ -99.667969, 69.411242 ], [ -99.667969, 69.472969 ], [ -99.492188, 69.472969 ], [ -99.492188, 69.534518 ], [ -99.316406, 69.534518 ], [ -99.316406, 69.595890 ], [ -99.140625, 69.595890 ], [ -99.140625, 69.657086 ], [ -98.964844, 69.657086 ], [ -98.964844, 69.718107 ], [ -98.789062, 69.718107 ], [ -98.789062, 69.839622 ], [ -98.613281, 69.839622 ], [ -98.613281, 69.960439 ], [ -98.437500, 69.960439 ], [ -98.437500, 70.080562 ], [ -98.085938, 70.080562 ] ] ], [ [ [ -114.785156, 73.277353 ], [ -114.785156, 73.226700 ], [ -114.609375, 73.226700 ], [ -114.609375, 73.175897 ], [ -114.257812, 73.175897 ], [ -114.257812, 73.124945 ], [ -114.082031, 73.124945 ], [ -114.082031, 73.022592 ], [ -114.257812, 73.022592 ], [ -114.257812, 72.867930 ], [ -114.433594, 72.867930 ], [ -114.433594, 72.711903 ], [ -114.609375, 72.711903 ], [ -114.609375, 72.659588 ], [ -114.257812, 72.659588 ], [ -114.257812, 72.711903 ], [ -113.906250, 72.711903 ], [ -113.906250, 72.764065 ], [ -113.554688, 72.764065 ], [ -113.554688, 72.816074 ], [ -113.203125, 72.816074 ], [ -113.203125, 72.867930 ], [ -112.851562, 72.867930 ], [ -112.851562, 72.919635 ], [ -112.324219, 72.919635 ], [ -112.324219, 72.867930 ], [ -112.148438, 72.867930 ], [ -112.148438, 72.764065 ], [ -111.972656, 72.764065 ], [ -111.972656, 72.711903 ], [ -111.796875, 72.711903 ], [ -111.796875, 72.659588 ], [ -111.621094, 72.659588 ], [ -111.621094, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.501722 ], [ -111.269531, 72.501722 ], [ -111.269531, 72.448792 ], [ -110.917969, 72.448792 ], [ -110.917969, 72.554498 ], [ -110.742188, 72.554498 ], [ -110.742188, 72.607120 ], [ -110.566406, 72.607120 ], [ -110.566406, 72.711903 ], [ -110.390625, 72.711903 ], [ -110.390625, 72.764065 ], [ -110.214844, 72.764065 ], [ -110.214844, 72.816074 ], [ -110.039062, 72.816074 ], [ -110.039062, 72.919635 ], [ -109.687500, 72.919635 ], [ -109.687500, 72.816074 ], [ -109.511719, 72.816074 ], [ -109.511719, 72.764065 ], [ -109.335938, 72.764065 ], [ -109.335938, 72.711903 ], [ -109.160156, 72.711903 ], [ -109.160156, 72.607120 ], [ -108.984375, 72.607120 ], [ -108.984375, 72.501722 ], [ -108.808594, 72.501722 ], [ -108.808594, 72.289067 ], [ -108.632812, 72.289067 ], [ -108.632812, 72.127936 ], [ -108.457031, 72.127936 ], [ -108.457031, 71.910888 ], [ -108.281250, 71.910888 ], [ -108.281250, 71.691293 ], [ -108.105469, 71.691293 ], [ -108.105469, 71.746432 ], [ -107.929688, 71.746432 ], [ -107.929688, 71.965388 ], [ -107.753906, 71.965388 ], [ -107.753906, 72.181804 ], [ -107.929688, 72.181804 ], [ -107.929688, 72.448792 ], [ -108.105469, 72.448792 ], [ -108.105469, 72.659588 ], [ -108.281250, 72.659588 ], [ -108.281250, 72.919635 ], [ -108.457031, 72.919635 ], [ -108.457031, 73.073844 ], [ -108.281250, 73.073844 ], [ -108.281250, 73.124945 ], [ -107.929688, 73.124945 ], [ -107.929688, 73.175897 ], [ -107.226562, 73.175897 ], [ -107.226562, 73.124945 ], [ -106.875000, 73.124945 ], [ -106.875000, 73.073844 ], [ -106.523438, 73.073844 ], [ -106.523438, 73.022592 ], [ -106.347656, 73.022592 ], [ -106.347656, 72.971189 ], [ -106.171875, 72.971189 ], [ -106.171875, 72.867930 ], [ -105.996094, 72.867930 ], [ -105.996094, 72.816074 ], [ -105.820312, 72.816074 ], [ -105.820312, 72.764065 ], [ -105.644531, 72.764065 ], [ -105.644531, 72.659588 ], [ -105.468750, 72.659588 ], [ -105.468750, 72.501722 ], [ -105.292969, 72.501722 ], [ -105.292969, 72.289067 ], [ -105.117188, 72.289067 ], [ -105.117188, 72.019729 ], [ -104.941406, 72.019729 ], [ -104.941406, 71.801410 ], [ -104.765625, 71.801410 ], [ -104.765625, 71.524909 ], [ -104.589844, 71.524909 ], [ -104.589844, 71.187754 ], [ -104.414062, 71.187754 ], [ -104.414062, 70.959697 ], [ -104.238281, 70.959697 ], [ -104.238281, 70.902268 ], [ -104.062500, 70.902268 ], [ -104.062500, 70.844673 ], [ -103.886719, 70.844673 ], [ -103.886719, 70.786910 ], [ -103.710938, 70.786910 ], [ -103.710938, 70.728979 ], [ -103.535156, 70.728979 ], [ -103.535156, 70.670881 ], [ -103.359375, 70.670881 ], [ -103.359375, 70.612614 ], [ -103.183594, 70.612614 ], [ -103.183594, 70.554179 ], [ -103.007812, 70.554179 ], [ -103.007812, 70.495574 ], [ -102.832031, 70.495574 ], [ -102.832031, 70.436799 ], [ -102.480469, 70.436799 ], [ -102.480469, 70.377854 ], [ -102.304688, 70.377854 ], [ -102.304688, 70.318738 ], [ -102.128906, 70.318738 ], [ -102.128906, 70.259452 ], [ -101.777344, 70.259452 ], [ -101.777344, 70.199994 ], [ -101.601562, 70.199994 ], [ -101.601562, 70.140364 ], [ -101.425781, 70.140364 ], [ -101.425781, 70.080562 ], [ -101.074219, 70.080562 ], [ -101.074219, 70.020587 ], [ -100.898438, 70.020587 ], [ -100.898438, 69.778952 ], [ -101.074219, 69.778952 ], [ -101.074219, 69.595890 ], [ -101.777344, 69.595890 ], [ -101.777344, 69.534518 ], [ -102.656250, 69.534518 ], [ -102.656250, 69.411242 ], [ -102.480469, 69.411242 ], [ -102.480469, 69.287257 ], [ -102.304688, 69.287257 ], [ -102.304688, 69.162558 ], [ -102.128906, 69.162558 ], [ -102.128906, 68.974164 ], [ -102.304688, 68.974164 ], [ -102.304688, 68.847665 ], [ -102.480469, 68.847665 ], [ -102.480469, 68.784144 ], [ -103.007812, 68.784144 ], [ -103.007812, 68.847665 ], [ -103.886719, 68.847665 ], [ -103.886719, 68.911005 ], [ -104.589844, 68.911005 ], [ -104.589844, 68.974164 ], [ -104.941406, 68.974164 ], [ -104.941406, 69.037142 ], [ -105.468750, 69.037142 ], [ -105.468750, 69.099940 ], [ -105.820312, 69.099940 ], [ -105.820312, 69.162558 ], [ -106.347656, 69.162558 ], [ -106.347656, 69.099940 ], [ -107.226562, 69.099940 ], [ -107.226562, 69.037142 ], [ -107.578125, 69.037142 ], [ -107.578125, 68.974164 ], [ -107.929688, 68.974164 ], [ -107.929688, 68.911005 ], [ -108.281250, 68.911005 ], [ -108.281250, 68.847665 ], [ -108.632812, 68.847665 ], [ -108.632812, 68.784144 ], [ -109.511719, 68.784144 ], [ -109.511719, 68.720441 ], [ -110.917969, 68.720441 ], [ -110.917969, 68.656555 ], [ -111.972656, 68.656555 ], [ -111.972656, 68.592487 ], [ -112.851562, 68.592487 ], [ -112.851562, 68.528235 ], [ -113.378906, 68.528235 ], [ -113.378906, 68.592487 ], [ -113.554688, 68.592487 ], [ -113.554688, 68.784144 ], [ -113.730469, 68.784144 ], [ -113.730469, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.082031, 69.037142 ], [ -114.082031, 69.099940 ], [ -114.433594, 69.099940 ], [ -114.433594, 69.162558 ], [ -114.785156, 69.162558 ], [ -114.785156, 69.224997 ], [ -115.136719, 69.224997 ], [ -115.136719, 69.287257 ], [ -115.312500, 69.287257 ], [ -115.312500, 69.224997 ], [ -115.839844, 69.224997 ], [ -115.839844, 69.162558 ], [ -116.367188, 69.162558 ], [ -116.367188, 69.287257 ], [ -116.542969, 69.287257 ], [ -116.542969, 69.411242 ], [ -116.718750, 69.411242 ], [ -116.718750, 69.534518 ], [ -116.894531, 69.534518 ], [ -116.894531, 69.657086 ], [ -117.070312, 69.657086 ], [ -117.070312, 69.778952 ], [ -117.246094, 69.778952 ], [ -117.246094, 69.900118 ], [ -117.421875, 69.900118 ], [ -117.421875, 69.960439 ], [ -117.070312, 69.960439 ], [ -117.070312, 70.020587 ], [ -116.718750, 70.020587 ], [ -116.718750, 70.080562 ], [ -116.367188, 70.080562 ], [ -116.367188, 70.140364 ], [ -115.839844, 70.140364 ], [ -115.839844, 70.199994 ], [ -115.312500, 70.199994 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.199994 ], [ -113.378906, 70.199994 ], [ -113.378906, 70.259452 ], [ -113.027344, 70.259452 ], [ -113.027344, 70.318738 ], [ -112.675781, 70.318738 ], [ -112.675781, 70.377854 ], [ -112.851562, 70.377854 ], [ -112.851562, 70.436799 ], [ -113.378906, 70.436799 ], [ -113.378906, 70.495574 ], [ -113.730469, 70.495574 ], [ -113.730469, 70.554179 ], [ -114.257812, 70.554179 ], [ -114.257812, 70.612614 ], [ -114.785156, 70.612614 ], [ -114.785156, 70.554179 ], [ -115.839844, 70.554179 ], [ -115.839844, 70.495574 ], [ -117.421875, 70.495574 ], [ -117.421875, 70.554179 ], [ -117.949219, 70.554179 ], [ -117.949219, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.728979 ], [ -118.300781, 70.728979 ], [ -118.300781, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.902268 ], [ -118.300781, 70.902268 ], [ -118.300781, 70.959697 ], [ -117.949219, 70.959697 ], [ -117.949219, 71.016960 ], [ -117.597656, 71.016960 ], [ -117.597656, 71.074056 ], [ -117.246094, 71.074056 ], [ -117.246094, 71.130988 ], [ -116.894531, 71.130988 ], [ -116.894531, 71.187754 ], [ -116.542969, 71.187754 ], [ -116.542969, 71.244356 ], [ -116.191406, 71.244356 ], [ -116.191406, 71.300793 ], [ -117.949219, 71.300793 ], [ -117.949219, 71.357067 ], [ -118.300781, 71.357067 ], [ -118.300781, 71.413177 ], [ -118.652344, 71.413177 ], [ -118.652344, 71.469124 ], [ -119.003906, 71.469124 ], [ -119.003906, 71.524909 ], [ -119.355469, 71.524909 ], [ -119.355469, 71.635993 ], [ -119.179688, 71.635993 ], [ -119.179688, 71.746432 ], [ -119.003906, 71.746432 ], [ -119.003906, 71.910888 ], [ -118.828125, 71.910888 ], [ -118.828125, 72.073911 ], [ -118.652344, 72.073911 ], [ -118.652344, 72.181804 ], [ -118.476562, 72.181804 ], [ -118.476562, 72.342464 ], [ -118.300781, 72.342464 ], [ -118.300781, 72.501722 ], [ -118.125000, 72.501722 ], [ -118.125000, 72.607120 ], [ -117.949219, 72.607120 ], [ -117.949219, 72.711903 ], [ -117.773438, 72.711903 ], [ -117.773438, 72.764065 ], [ -117.421875, 72.764065 ], [ -117.421875, 72.816074 ], [ -117.246094, 72.816074 ], [ -117.246094, 72.867930 ], [ -117.070312, 72.867930 ], [ -117.070312, 72.919635 ], [ -116.718750, 72.919635 ], [ -116.718750, 72.971189 ], [ -116.542969, 72.971189 ], [ -116.542969, 73.022592 ], [ -116.367188, 73.022592 ], [ -116.367188, 73.073844 ], [ -116.015625, 73.073844 ], [ -116.015625, 73.124945 ], [ -115.839844, 73.124945 ], [ -115.839844, 73.175897 ], [ -115.664062, 73.175897 ], [ -115.664062, 73.226700 ], [ -115.312500, 73.226700 ], [ -115.312500, 73.277353 ], [ -114.785156, 73.277353 ] ] ], [ [ [ -121.464844, 74.449358 ], [ -121.464844, 74.402163 ], [ -121.113281, 74.402163 ], [ -121.113281, 74.354828 ], [ -120.761719, 74.354828 ], [ -120.761719, 74.307353 ], [ -120.410156, 74.307353 ], [ -120.410156, 74.259738 ], [ -119.531250, 74.259738 ], [ -119.531250, 74.211983 ], [ -118.300781, 74.211983 ], [ -118.300781, 74.164085 ], [ -117.597656, 74.164085 ], [ -117.597656, 74.116047 ], [ -117.421875, 74.116047 ], [ -117.421875, 74.067866 ], [ -117.246094, 74.067866 ], [ -117.246094, 74.019543 ], [ -117.070312, 74.019543 ], [ -117.070312, 73.971078 ], [ -116.894531, 73.971078 ], [ -116.894531, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.873717 ], [ -116.542969, 73.873717 ], [ -116.542969, 73.824820 ], [ -116.367188, 73.824820 ], [ -116.367188, 73.775780 ], [ -116.191406, 73.775780 ], [ -116.191406, 73.677264 ], [ -116.015625, 73.677264 ], [ -116.015625, 73.627789 ], [ -115.839844, 73.627789 ], [ -115.839844, 73.578167 ], [ -115.664062, 73.578167 ], [ -115.664062, 73.478485 ], [ -115.488281, 73.478485 ], [ -115.488281, 73.428424 ], [ -115.839844, 73.428424 ], [ -115.839844, 73.378215 ], [ -116.015625, 73.378215 ], [ -116.015625, 73.327858 ], [ -116.191406, 73.327858 ], [ -116.191406, 73.277353 ], [ -116.542969, 73.277353 ], [ -116.542969, 73.226700 ], [ -116.718750, 73.226700 ], [ -116.718750, 73.175897 ], [ -116.894531, 73.175897 ], [ -116.894531, 73.124945 ], [ -117.070312, 73.124945 ], [ -117.070312, 73.073844 ], [ -117.246094, 73.073844 ], [ -117.246094, 73.022592 ], [ -117.421875, 73.022592 ], [ -117.421875, 72.971189 ], [ -117.597656, 72.971189 ], [ -117.597656, 72.919635 ], [ -117.773438, 72.919635 ], [ -117.773438, 72.867930 ], [ -117.949219, 72.867930 ], [ -117.949219, 72.816074 ], [ -118.125000, 72.816074 ], [ -118.125000, 72.764065 ], [ -118.300781, 72.764065 ], [ -118.300781, 72.711903 ], [ -118.476562, 72.711903 ], [ -118.476562, 72.659588 ], [ -118.652344, 72.659588 ], [ -118.652344, 72.607120 ], [ -118.828125, 72.607120 ], [ -118.828125, 72.554498 ], [ -119.003906, 72.554498 ], [ -119.003906, 72.501722 ], [ -119.179688, 72.501722 ], [ -119.179688, 72.448792 ], [ -119.355469, 72.448792 ], [ -119.355469, 72.342464 ], [ -119.531250, 72.342464 ], [ -119.531250, 72.235514 ], [ -119.707031, 72.235514 ], [ -119.707031, 72.127936 ], [ -119.882812, 72.127936 ], [ -119.882812, 72.019729 ], [ -120.058594, 72.019729 ], [ -120.058594, 71.910888 ], [ -120.234375, 71.910888 ], [ -120.234375, 71.801410 ], [ -120.410156, 71.801410 ], [ -120.410156, 71.300793 ], [ -120.761719, 71.300793 ], [ -120.761719, 71.244356 ], [ -121.113281, 71.244356 ], [ -121.113281, 71.187754 ], [ -121.464844, 71.187754 ], [ -121.464844, 71.130988 ], [ -121.816406, 71.130988 ], [ -121.816406, 71.074056 ], [ -122.167969, 71.074056 ], [ -122.167969, 71.016960 ], [ -122.519531, 71.016960 ], [ -122.519531, 70.959697 ], [ -122.871094, 70.959697 ], [ -122.871094, 70.902268 ], [ -123.046875, 70.902268 ], [ -123.046875, 70.959697 ], [ -123.222656, 70.959697 ], [ -123.222656, 71.130988 ], [ -123.398438, 71.130988 ], [ -123.398438, 71.244356 ], [ -123.574219, 71.244356 ], [ -123.574219, 71.357067 ], [ -123.750000, 71.357067 ], [ -123.750000, 71.413177 ], [ -124.101562, 71.413177 ], [ -124.101562, 71.469124 ], [ -124.277344, 71.469124 ], [ -124.277344, 71.524909 ], [ -124.628906, 71.524909 ], [ -124.628906, 71.580532 ], [ -124.804688, 71.580532 ], [ -124.804688, 71.635993 ], [ -124.980469, 71.635993 ], [ -124.980469, 71.691293 ], [ -125.332031, 71.691293 ], [ -125.332031, 71.746432 ], [ -125.507812, 71.746432 ], [ -125.507812, 71.801410 ], [ -125.859375, 71.801410 ], [ -125.859375, 71.965388 ], [ -125.683594, 71.965388 ], [ -125.683594, 72.181804 ], [ -125.507812, 72.181804 ], [ -125.507812, 72.342464 ], [ -125.332031, 72.342464 ], [ -125.332031, 72.554498 ], [ -125.156250, 72.554498 ], [ -125.156250, 72.711903 ], [ -124.980469, 72.711903 ], [ -124.980469, 72.919635 ], [ -124.804688, 72.919635 ], [ -124.804688, 73.073844 ], [ -124.628906, 73.073844 ], [ -124.628906, 73.175897 ], [ -124.453125, 73.175897 ], [ -124.453125, 73.327858 ], [ -124.277344, 73.327858 ], [ -124.277344, 73.478485 ], [ -124.101562, 73.478485 ], [ -124.101562, 73.578167 ], [ -123.925781, 73.578167 ], [ -123.925781, 73.726595 ], [ -124.101562, 73.726595 ], [ -124.101562, 73.824820 ], [ -124.277344, 73.824820 ], [ -124.277344, 73.922469 ], [ -124.453125, 73.922469 ], [ -124.453125, 74.019543 ], [ -124.628906, 74.019543 ], [ -124.628906, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.211983 ], [ -124.980469, 74.211983 ], [ -124.980469, 74.307353 ], [ -124.277344, 74.307353 ], [ -124.277344, 74.354828 ], [ -123.046875, 74.354828 ], [ -123.046875, 74.402163 ], [ -121.992188, 74.402163 ], [ -121.992188, 74.449358 ], [ -121.464844, 74.449358 ] ] ], [ [ [ -89.121094, 70.902268 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.728979 ], [ -89.472656, 70.728979 ], [ -89.472656, 70.786910 ], [ -89.296875, 70.786910 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ] ] ], [ [ [ -109.160156, 76.760541 ], [ -109.160156, 76.720223 ], [ -108.808594, 76.720223 ], [ -108.808594, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.557743 ], [ -108.457031, 76.557743 ], [ -108.457031, 76.310358 ], [ -108.281250, 76.310358 ], [ -108.281250, 76.100796 ], [ -108.105469, 76.100796 ], [ -108.105469, 76.016094 ], [ -107.929688, 76.016094 ], [ -107.929688, 75.888091 ], [ -107.753906, 75.888091 ], [ -107.753906, 75.845169 ], [ -107.578125, 75.845169 ], [ -107.578125, 75.888091 ], [ -107.402344, 75.888091 ], [ -107.402344, 75.930885 ], [ -107.050781, 75.930885 ], [ -107.050781, 75.973553 ], [ -106.875000, 75.973553 ], [ -106.875000, 76.016094 ], [ -106.523438, 76.016094 ], [ -106.523438, 75.973553 ], [ -105.820312, 75.973553 ], [ -105.820312, 75.715633 ], [ -105.644531, 75.715633 ], [ -105.644531, 75.408854 ], [ -105.820312, 75.408854 ], [ -105.820312, 75.275413 ], [ -105.996094, 75.275413 ], [ -105.996094, 75.185789 ], [ -106.171875, 75.185789 ], [ -106.171875, 75.050354 ], [ -106.347656, 75.050354 ], [ -106.347656, 75.004940 ], [ -106.875000, 75.004940 ], [ -106.875000, 74.959392 ], [ -107.929688, 74.959392 ], [ -107.929688, 74.913708 ], [ -108.984375, 74.913708 ], [ -108.984375, 74.867889 ], [ -109.687500, 74.867889 ], [ -109.687500, 74.821934 ], [ -110.039062, 74.821934 ], [ -110.039062, 74.775843 ], [ -110.214844, 74.775843 ], [ -110.214844, 74.729615 ], [ -110.390625, 74.729615 ], [ -110.390625, 74.683250 ], [ -110.742188, 74.683250 ], [ -110.742188, 74.636748 ], [ -110.917969, 74.636748 ], [ -110.917969, 74.590108 ], [ -111.269531, 74.590108 ], [ -111.269531, 74.543330 ], [ -111.445312, 74.543330 ], [ -111.445312, 74.496413 ], [ -111.621094, 74.496413 ], [ -111.621094, 74.449358 ], [ -111.972656, 74.449358 ], [ -111.972656, 74.402163 ], [ -113.730469, 74.402163 ], [ -113.730469, 74.543330 ], [ -113.906250, 74.543330 ], [ -113.906250, 74.729615 ], [ -113.730469, 74.729615 ], [ -113.730469, 74.775843 ], [ -113.378906, 74.775843 ], [ -113.378906, 74.821934 ], [ -113.203125, 74.821934 ], [ -113.203125, 74.867889 ], [ -113.027344, 74.867889 ], [ -113.027344, 74.913708 ], [ -112.675781, 74.913708 ], [ -112.675781, 74.959392 ], [ -112.500000, 74.959392 ], [ -112.500000, 75.004940 ], [ -112.324219, 75.004940 ], [ -112.324219, 75.050354 ], [ -111.972656, 75.050354 ], [ -111.972656, 75.095633 ], [ -111.796875, 75.095633 ], [ -111.796875, 75.140778 ], [ -112.851562, 75.140778 ], [ -112.851562, 75.095633 ], [ -115.136719, 75.095633 ], [ -115.136719, 75.050354 ], [ -116.718750, 75.050354 ], [ -116.718750, 75.095633 ], [ -117.070312, 75.095633 ], [ -117.070312, 75.140778 ], [ -117.421875, 75.140778 ], [ -117.421875, 75.185789 ], [ -117.773438, 75.185789 ], [ -117.773438, 75.275413 ], [ -117.597656, 75.275413 ], [ -117.597656, 75.408854 ], [ -117.421875, 75.408854 ], [ -117.421875, 75.497157 ], [ -117.246094, 75.497157 ], [ -117.246094, 75.628632 ], [ -117.070312, 75.628632 ], [ -117.070312, 75.758940 ], [ -116.894531, 75.758940 ], [ -116.894531, 75.888091 ], [ -116.718750, 75.888091 ], [ -116.718750, 75.973553 ], [ -116.542969, 75.973553 ], [ -116.542969, 76.100796 ], [ -116.367188, 76.100796 ], [ -116.367188, 76.184995 ], [ -116.191406, 76.184995 ], [ -116.191406, 76.268695 ], [ -116.015625, 76.268695 ], [ -116.015625, 76.310358 ], [ -115.839844, 76.310358 ], [ -115.839844, 76.351896 ], [ -115.664062, 76.351896 ], [ -115.664062, 76.434604 ], [ -115.136719, 76.434604 ], [ -115.136719, 76.393312 ], [ -114.785156, 76.393312 ], [ -114.785156, 76.351896 ], [ -114.433594, 76.351896 ], [ -114.433594, 76.310358 ], [ -114.082031, 76.310358 ], [ -114.082031, 76.268695 ], [ -113.730469, 76.268695 ], [ -113.730469, 76.226907 ], [ -113.378906, 76.226907 ], [ -113.378906, 76.184995 ], [ -113.027344, 76.184995 ], [ -113.027344, 76.142958 ], [ -112.675781, 76.142958 ], [ -112.675781, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.058508 ], [ -112.324219, 76.058508 ], [ -112.324219, 75.973553 ], [ -112.148438, 75.973553 ], [ -112.148438, 75.930885 ], [ -111.972656, 75.930885 ], [ -111.972656, 75.888091 ], [ -111.796875, 75.888091 ], [ -111.796875, 75.845169 ], [ -111.621094, 75.845169 ], [ -111.621094, 75.758940 ], [ -111.445312, 75.758940 ], [ -111.445312, 75.715633 ], [ -111.269531, 75.715633 ], [ -111.269531, 75.672197 ], [ -111.093750, 75.672197 ], [ -111.093750, 75.584937 ], [ -110.917969, 75.584937 ], [ -110.917969, 75.541113 ], [ -110.390625, 75.541113 ], [ -110.390625, 75.497157 ], [ -109.511719, 75.497157 ], [ -109.511719, 75.453071 ], [ -108.984375, 75.453071 ], [ -108.984375, 75.497157 ], [ -109.160156, 75.497157 ], [ -109.160156, 75.584937 ], [ -109.335938, 75.584937 ], [ -109.335938, 75.715633 ], [ -109.511719, 75.715633 ], [ -109.511719, 75.802118 ], [ -109.687500, 75.802118 ], [ -109.687500, 75.930885 ], [ -109.863281, 75.930885 ], [ -109.863281, 76.058508 ], [ -110.039062, 76.058508 ], [ -110.039062, 76.142958 ], [ -110.214844, 76.142958 ], [ -110.214844, 76.268695 ], [ -110.390625, 76.268695 ], [ -110.390625, 76.351896 ], [ -110.566406, 76.351896 ], [ -110.566406, 76.434604 ], [ -110.390625, 76.434604 ], [ -110.390625, 76.516819 ], [ -110.214844, 76.516819 ], [ -110.214844, 76.557743 ], [ -110.039062, 76.557743 ], [ -110.039062, 76.639226 ], [ -109.863281, 76.639226 ], [ -109.863281, 76.679785 ], [ -109.687500, 76.679785 ], [ -109.687500, 76.760541 ], [ -109.160156, 76.760541 ] ] ], [ [ [ -89.121094, 71.244356 ], [ -89.824219, 71.244356 ], [ -89.824219, 71.469124 ], [ -90.000000, 71.469124 ], [ -90.000000, 71.965388 ], [ -90.175781, 71.965388 ], [ -90.175781, 72.342464 ], [ -90.000000, 72.342464 ], [ -90.000000, 72.554498 ], [ -89.824219, 72.554498 ], [ -89.824219, 72.764065 ], [ -89.648438, 72.764065 ], [ -89.648438, 72.971189 ], [ -89.472656, 72.971189 ], [ -89.472656, 73.124945 ], [ -89.296875, 73.124945 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 71.244356 ] ] ], [ [ [ -97.382812, 73.775780 ], [ -97.382812, 73.627789 ], [ -97.207031, 73.627789 ], [ -97.207031, 73.428424 ], [ -97.382812, 73.428424 ], [ -97.382812, 73.327858 ], [ -97.558594, 73.327858 ], [ -97.558594, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.124945 ], [ -97.910156, 73.124945 ], [ -97.910156, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.919635 ], [ -97.910156, 72.919635 ], [ -97.910156, 72.867930 ], [ -97.734375, 72.867930 ], [ -97.734375, 72.816074 ], [ -97.558594, 72.816074 ], [ -97.558594, 72.764065 ], [ -97.207031, 72.764065 ], [ -97.207031, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.659588 ], [ -96.855469, 72.659588 ], [ -96.855469, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 72.554498 ], [ -96.503906, 72.554498 ], [ -96.503906, 72.073911 ], [ -96.679688, 72.073911 ], [ -96.679688, 71.580532 ], [ -97.031250, 71.580532 ], [ -97.031250, 71.524909 ], [ -97.382812, 71.524909 ], [ -97.382812, 71.469124 ], [ -97.558594, 71.469124 ], [ -97.558594, 71.413177 ], [ -97.910156, 71.413177 ], [ -97.910156, 71.357067 ], [ -98.261719, 71.357067 ], [ -98.261719, 71.300793 ], [ -98.964844, 71.300793 ], [ -98.964844, 71.357067 ], [ -99.492188, 71.357067 ], [ -99.492188, 71.469124 ], [ -99.667969, 71.469124 ], [ -99.667969, 71.580532 ], [ -99.843750, 71.580532 ], [ -99.843750, 71.691293 ], [ -100.019531, 71.691293 ], [ -100.019531, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.801410 ], [ -100.371094, 71.801410 ], [ -100.371094, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.910888 ], [ -100.722656, 71.910888 ], [ -100.722656, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.019729 ], [ -101.074219, 72.019729 ], [ -101.074219, 72.073911 ], [ -101.250000, 72.073911 ], [ -101.250000, 72.127936 ], [ -101.425781, 72.127936 ], [ -101.425781, 72.181804 ], [ -101.601562, 72.181804 ], [ -101.601562, 72.235514 ], [ -101.777344, 72.235514 ], [ -101.777344, 72.289067 ], [ -101.953125, 72.289067 ], [ -101.953125, 72.342464 ], [ -102.128906, 72.342464 ], [ -102.128906, 72.395706 ], [ -102.304688, 72.395706 ], [ -102.304688, 72.448792 ], [ -102.480469, 72.448792 ], [ -102.480469, 72.816074 ], [ -102.128906, 72.816074 ], [ -102.128906, 72.764065 ], [ -101.074219, 72.764065 ], [ -101.074219, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.816074 ], [ -100.722656, 72.816074 ], [ -100.722656, 72.919635 ], [ -100.898438, 72.919635 ], [ -100.898438, 73.022592 ], [ -101.074219, 73.022592 ], [ -101.074219, 73.124945 ], [ -101.250000, 73.124945 ], [ -101.250000, 73.226700 ], [ -101.425781, 73.226700 ], [ -101.425781, 73.327858 ], [ -101.601562, 73.327858 ], [ -101.601562, 73.378215 ], [ -101.425781, 73.378215 ], [ -101.425781, 73.428424 ], [ -101.250000, 73.428424 ], [ -101.250000, 73.528399 ], [ -101.074219, 73.528399 ], [ -101.074219, 73.578167 ], [ -100.898438, 73.578167 ], [ -100.898438, 73.627789 ], [ -100.722656, 73.627789 ], [ -100.722656, 73.726595 ], [ -100.546875, 73.726595 ], [ -100.546875, 73.775780 ], [ -100.019531, 73.775780 ], [ -100.019531, 73.726595 ], [ -99.667969, 73.726595 ], [ -99.667969, 73.677264 ], [ -99.316406, 73.677264 ], [ -99.316406, 73.627789 ], [ -98.789062, 73.627789 ], [ -98.789062, 73.677264 ], [ -98.085938, 73.677264 ], [ -98.085938, 73.726595 ], [ -97.558594, 73.726595 ], [ -97.558594, 73.775780 ], [ -97.382812, 73.775780 ] ] ], [ [ [ -92.285156, 74.116047 ], [ -92.285156, 74.067866 ], [ -91.933594, 74.067866 ], [ -91.933594, 74.019543 ], [ -91.582031, 74.019543 ], [ -91.582031, 73.971078 ], [ -91.230469, 73.971078 ], [ -91.230469, 73.922469 ], [ -90.878906, 73.922469 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ], [ -90.527344, 73.775780 ], [ -90.703125, 73.775780 ], [ -90.703125, 73.677264 ], [ -90.878906, 73.677264 ], [ -90.878906, 73.578167 ], [ -91.054688, 73.578167 ], [ -91.054688, 73.478485 ], [ -91.230469, 73.478485 ], [ -91.230469, 73.327858 ], [ -91.406250, 73.327858 ], [ -91.406250, 73.226700 ], [ -91.582031, 73.226700 ], [ -91.582031, 73.124945 ], [ -91.757812, 73.124945 ], [ -91.757812, 73.022592 ], [ -91.933594, 73.022592 ], [ -91.933594, 72.919635 ], [ -92.285156, 72.919635 ], [ -92.285156, 72.867930 ], [ -92.636719, 72.867930 ], [ -92.636719, 72.816074 ], [ -92.988281, 72.816074 ], [ -92.988281, 72.764065 ], [ -93.164062, 72.764065 ], [ -93.164062, 72.659588 ], [ -93.339844, 72.659588 ], [ -93.339844, 72.554498 ], [ -93.515625, 72.554498 ], [ -93.515625, 72.448792 ], [ -93.691406, 72.448792 ], [ -93.691406, 72.289067 ], [ -93.867188, 72.289067 ], [ -93.867188, 72.181804 ], [ -94.042969, 72.181804 ], [ -94.042969, 72.073911 ], [ -94.218750, 72.073911 ], [ -94.218750, 72.019729 ], [ -94.921875, 72.019729 ], [ -94.921875, 72.073911 ], [ -95.449219, 72.073911 ], [ -95.449219, 72.181804 ], [ -95.625000, 72.181804 ], [ -95.625000, 72.501722 ], [ -95.800781, 72.501722 ], [ -95.800781, 72.764065 ], [ -95.976562, 72.764065 ], [ -95.976562, 73.478485 ], [ -95.800781, 73.478485 ], [ -95.800781, 73.627789 ], [ -95.625000, 73.627789 ], [ -95.625000, 73.775780 ], [ -95.449219, 73.775780 ], [ -95.449219, 73.873717 ], [ -95.273438, 73.873717 ], [ -95.273438, 73.922469 ], [ -95.097656, 73.922469 ], [ -95.097656, 73.971078 ], [ -94.921875, 73.971078 ], [ -94.921875, 74.019543 ], [ -94.746094, 74.019543 ], [ -94.746094, 74.067866 ], [ -94.570312, 74.067866 ], [ -94.570312, 74.116047 ], [ -92.285156, 74.116047 ] ] ], [ [ [ -105.292969, 73.627789 ], [ -105.292969, 73.578167 ], [ -105.117188, 73.578167 ], [ -105.117188, 73.528399 ], [ -104.765625, 73.528399 ], [ -104.765625, 73.478485 ], [ -104.589844, 73.478485 ], [ -104.589844, 73.428424 ], [ -104.414062, 73.428424 ], [ -104.414062, 73.327858 ], [ -104.589844, 73.327858 ], [ -104.589844, 73.226700 ], [ -104.765625, 73.226700 ], [ -104.765625, 73.073844 ], [ -104.941406, 73.073844 ], [ -104.941406, 72.919635 ], [ -105.117188, 72.919635 ], [ -105.117188, 72.816074 ], [ -105.292969, 72.816074 ], [ -105.292969, 72.764065 ], [ -105.468750, 72.764065 ], [ -105.468750, 72.867930 ], [ -105.644531, 72.867930 ], [ -105.644531, 72.919635 ], [ -105.820312, 72.919635 ], [ -105.820312, 73.022592 ], [ -105.996094, 73.022592 ], [ -105.996094, 73.124945 ], [ -106.171875, 73.124945 ], [ -106.171875, 73.175897 ], [ -106.347656, 73.175897 ], [ -106.347656, 73.277353 ], [ -106.523438, 73.277353 ], [ -106.523438, 73.327858 ], [ -106.699219, 73.327858 ], [ -106.699219, 73.428424 ], [ -106.875000, 73.428424 ], [ -106.875000, 73.478485 ], [ -106.699219, 73.478485 ], [ -106.699219, 73.528399 ], [ -106.523438, 73.528399 ], [ -106.523438, 73.578167 ], [ -105.820312, 73.578167 ], [ -105.820312, 73.627789 ], [ -105.292969, 73.627789 ] ] ], [ [ [ -96.328125, 77.157163 ], [ -96.328125, 77.118032 ], [ -95.273438, 77.118032 ], [ -95.273438, 77.078784 ], [ -94.746094, 77.078784 ], [ -94.746094, 77.039418 ], [ -94.570312, 77.039418 ], [ -94.570312, 76.999935 ], [ -94.394531, 76.999935 ], [ -94.394531, 76.960334 ], [ -94.218750, 76.960334 ], [ -94.218750, 76.920614 ], [ -94.042969, 76.920614 ], [ -94.042969, 76.840816 ], [ -93.867188, 76.840816 ], [ -93.867188, 76.800739 ], [ -93.691406, 76.800739 ], [ -93.691406, 76.760541 ], [ -91.582031, 76.760541 ], [ -91.582031, 76.720223 ], [ -91.406250, 76.720223 ], [ -91.406250, 76.639226 ], [ -91.230469, 76.639226 ], [ -91.230469, 76.598545 ], [ -91.054688, 76.598545 ], [ -91.054688, 76.516819 ], [ -90.878906, 76.516819 ], [ -90.878906, 76.434604 ], [ -90.703125, 76.434604 ], [ -90.703125, 76.310358 ], [ -90.878906, 76.310358 ], [ -90.878906, 76.142958 ], [ -91.054688, 76.142958 ], [ -91.054688, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.973553 ], [ -90.527344, 75.973553 ], [ -90.527344, 75.930885 ], [ -90.351562, 75.930885 ], [ -90.351562, 75.888091 ], [ -90.000000, 75.888091 ], [ -90.000000, 75.845169 ], [ -89.824219, 75.845169 ], [ -89.824219, 75.802118 ], [ -89.648438, 75.802118 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -89.121094, 75.628632 ], [ -89.121094, 74.449358 ], [ -89.648438, 74.449358 ], [ -89.648438, 74.496413 ], [ -90.175781, 74.496413 ], [ -90.175781, 74.543330 ], [ -90.527344, 74.543330 ], [ -90.527344, 74.590108 ], [ -90.878906, 74.590108 ], [ -90.878906, 74.636748 ], [ -91.230469, 74.636748 ], [ -91.230469, 74.683250 ], [ -91.582031, 74.683250 ], [ -91.582031, 74.729615 ], [ -91.933594, 74.729615 ], [ -91.933594, 74.775843 ], [ -92.285156, 74.775843 ], [ -92.285156, 74.821934 ], [ -92.460938, 74.821934 ], [ -92.460938, 74.959392 ], [ -92.636719, 74.959392 ], [ -92.636719, 75.230667 ], [ -92.812500, 75.230667 ], [ -92.812500, 75.888091 ], [ -92.988281, 75.888091 ], [ -92.988281, 75.973553 ], [ -93.164062, 75.973553 ], [ -93.164062, 76.058508 ], [ -93.339844, 76.058508 ], [ -93.339844, 76.100796 ], [ -93.515625, 76.100796 ], [ -93.515625, 76.184995 ], [ -93.691406, 76.184995 ], [ -93.691406, 76.268695 ], [ -93.867188, 76.268695 ], [ -93.867188, 76.310358 ], [ -94.394531, 76.310358 ], [ -94.394531, 76.351896 ], [ -95.097656, 76.351896 ], [ -95.097656, 76.393312 ], [ -95.800781, 76.393312 ], [ -95.800781, 76.434604 ], [ -96.152344, 76.434604 ], [ -96.152344, 76.475773 ], [ -96.328125, 76.475773 ], [ -96.328125, 76.516819 ], [ -96.503906, 76.516819 ], [ -96.503906, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.639226 ], [ -96.855469, 76.639226 ], [ -96.855469, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.720223 ], [ -97.207031, 76.720223 ], [ -97.207031, 76.800739 ], [ -97.031250, 76.800739 ], [ -97.031250, 76.960334 ], [ -96.855469, 76.960334 ], [ -96.855469, 77.078784 ], [ -96.679688, 77.078784 ], [ -96.679688, 77.157163 ], [ -96.328125, 77.157163 ] ] ], [ [ [ -116.191406, 77.617709 ], [ -116.191406, 77.273855 ], [ -116.367188, 77.273855 ], [ -116.367188, 76.800739 ], [ -116.542969, 76.800739 ], [ -116.542969, 76.720223 ], [ -116.718750, 76.720223 ], [ -116.718750, 76.639226 ], [ -116.894531, 76.639226 ], [ -116.894531, 76.557743 ], [ -117.070312, 76.557743 ], [ -117.070312, 76.516819 ], [ -117.421875, 76.516819 ], [ -117.421875, 76.475773 ], [ -118.125000, 76.475773 ], [ -118.125000, 76.434604 ], [ -118.300781, 76.434604 ], [ -118.300781, 76.393312 ], [ -118.476562, 76.393312 ], [ -118.476562, 76.351896 ], [ -118.652344, 76.351896 ], [ -118.652344, 76.310358 ], [ -118.828125, 76.310358 ], [ -118.828125, 76.268695 ], [ -119.003906, 76.268695 ], [ -119.003906, 76.226907 ], [ -119.179688, 76.226907 ], [ -119.179688, 76.184995 ], [ -119.355469, 76.184995 ], [ -119.355469, 76.142958 ], [ -119.531250, 76.142958 ], [ -119.531250, 76.100796 ], [ -119.707031, 76.100796 ], [ -119.707031, 76.058508 ], [ -120.058594, 76.058508 ], [ -120.058594, 76.016094 ], [ -120.410156, 76.016094 ], [ -120.410156, 75.973553 ], [ -120.761719, 75.973553 ], [ -120.761719, 75.930885 ], [ -121.113281, 75.930885 ], [ -121.113281, 75.888091 ], [ -121.640625, 75.888091 ], [ -121.640625, 75.930885 ], [ -121.992188, 75.930885 ], [ -121.992188, 75.973553 ], [ -122.343750, 75.973553 ], [ -122.343750, 76.016094 ], [ -122.519531, 76.016094 ], [ -122.519531, 76.058508 ], [ -122.871094, 76.058508 ], [ -122.871094, 76.100796 ], [ -122.695312, 76.100796 ], [ -122.695312, 76.184995 ], [ -122.519531, 76.184995 ], [ -122.519531, 76.268695 ], [ -122.343750, 76.268695 ], [ -122.343750, 76.351896 ], [ -122.167969, 76.351896 ], [ -122.167969, 76.434604 ], [ -121.992188, 76.434604 ], [ -121.992188, 76.516819 ], [ -121.816406, 76.516819 ], [ -121.816406, 76.598545 ], [ -121.640625, 76.598545 ], [ -121.640625, 76.679785 ], [ -121.464844, 76.679785 ], [ -121.464844, 76.760541 ], [ -121.289062, 76.760541 ], [ -121.289062, 76.840816 ], [ -121.113281, 76.840816 ], [ -121.113281, 76.880775 ], [ -120.937500, 76.880775 ], [ -120.937500, 76.960334 ], [ -120.761719, 76.960334 ], [ -120.761719, 76.999935 ], [ -120.585938, 76.999935 ], [ -120.585938, 77.078784 ], [ -120.410156, 77.078784 ], [ -120.410156, 77.118032 ], [ -120.234375, 77.118032 ], [ -120.234375, 77.196176 ], [ -120.058594, 77.196176 ], [ -120.058594, 77.235074 ], [ -119.882812, 77.235074 ], [ -119.882812, 77.273855 ], [ -119.707031, 77.273855 ], [ -119.707031, 77.351070 ], [ -119.531250, 77.351070 ], [ -119.531250, 77.389504 ], [ -119.355469, 77.389504 ], [ -119.355469, 77.466028 ], [ -119.179688, 77.466028 ], [ -119.179688, 77.504119 ], [ -117.246094, 77.504119 ], [ -117.246094, 77.542096 ], [ -116.894531, 77.542096 ], [ -116.894531, 77.579959 ], [ -116.542969, 77.579959 ], [ -116.542969, 77.617709 ], [ -116.191406, 77.617709 ] ] ], [ [ [ -94.746094, 75.584937 ], [ -94.746094, 75.497157 ], [ -94.570312, 75.497157 ], [ -94.570312, 75.453071 ], [ -94.394531, 75.453071 ], [ -94.394531, 75.364506 ], [ -94.218750, 75.364506 ], [ -94.218750, 75.275413 ], [ -94.042969, 75.275413 ], [ -94.042969, 75.185789 ], [ -93.867188, 75.185789 ], [ -93.867188, 75.004940 ], [ -93.691406, 75.004940 ], [ -93.691406, 74.867889 ], [ -93.867188, 74.867889 ], [ -93.867188, 74.775843 ], [ -94.042969, 74.775843 ], [ -94.042969, 74.636748 ], [ -94.218750, 74.636748 ], [ -94.218750, 74.590108 ], [ -94.746094, 74.590108 ], [ -94.746094, 74.636748 ], [ -95.449219, 74.636748 ], [ -95.449219, 74.683250 ], [ -95.800781, 74.683250 ], [ -95.800781, 74.729615 ], [ -96.152344, 74.729615 ], [ -96.152344, 74.775843 ], [ -96.328125, 74.775843 ], [ -96.328125, 74.821934 ], [ -96.503906, 74.821934 ], [ -96.503906, 74.867889 ], [ -96.855469, 74.867889 ], [ -96.855469, 74.959392 ], [ -96.679688, 74.959392 ], [ -96.679688, 75.140778 ], [ -96.503906, 75.140778 ], [ -96.503906, 75.275413 ], [ -96.328125, 75.275413 ], [ -96.328125, 75.364506 ], [ -96.152344, 75.364506 ], [ -96.152344, 75.408854 ], [ -95.800781, 75.408854 ], [ -95.800781, 75.453071 ], [ -95.625000, 75.453071 ], [ -95.625000, 75.497157 ], [ -95.449219, 75.497157 ], [ -95.449219, 75.541113 ], [ -95.097656, 75.541113 ], [ -95.097656, 75.584937 ], [ -94.746094, 75.584937 ] ] ], [ [ [ -98.261719, 76.639226 ], [ -98.261719, 76.516819 ], [ -98.085938, 76.516819 ], [ -98.085938, 76.434604 ], [ -97.910156, 76.434604 ], [ -97.910156, 76.310358 ], [ -97.734375, 76.310358 ], [ -97.734375, 75.541113 ], [ -97.910156, 75.541113 ], [ -97.910156, 75.185789 ], [ -98.085938, 75.185789 ], [ -98.085938, 75.004940 ], [ -98.437500, 75.004940 ], [ -98.437500, 74.959392 ], [ -99.316406, 74.959392 ], [ -99.316406, 74.913708 ], [ -100.195312, 74.913708 ], [ -100.195312, 74.959392 ], [ -100.546875, 74.959392 ], [ -100.546875, 75.004940 ], [ -100.898438, 75.004940 ], [ -100.898438, 75.628632 ], [ -101.601562, 75.628632 ], [ -101.601562, 75.584937 ], [ -102.480469, 75.584937 ], [ -102.480469, 76.351896 ], [ -102.128906, 76.351896 ], [ -102.128906, 76.310358 ], [ -101.250000, 76.310358 ], [ -101.250000, 76.351896 ], [ -101.074219, 76.351896 ], [ -101.074219, 76.393312 ], [ -100.898438, 76.393312 ], [ -100.898438, 76.434604 ], [ -100.722656, 76.434604 ], [ -100.722656, 76.475773 ], [ -100.546875, 76.475773 ], [ -100.546875, 76.516819 ], [ -100.371094, 76.516819 ], [ -100.371094, 76.557743 ], [ -100.195312, 76.557743 ], [ -100.195312, 76.598545 ], [ -100.019531, 76.598545 ], [ -100.019531, 76.639226 ], [ -99.492188, 76.639226 ], [ -99.492188, 76.598545 ], [ -98.613281, 76.598545 ], [ -98.613281, 76.639226 ], [ -98.261719, 76.639226 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.278201 ], [ -89.472656, 78.278201 ], [ -89.472656, 78.242436 ], [ -90.351562, 78.242436 ], [ -90.351562, 78.206563 ], [ -91.230469, 78.206563 ], [ -91.230469, 78.242436 ], [ -91.757812, 78.242436 ], [ -91.757812, 78.278201 ], [ -92.109375, 78.278201 ], [ -92.109375, 78.313860 ], [ -92.636719, 78.313860 ], [ -92.636719, 78.349411 ], [ -92.812500, 78.349411 ], [ -92.812500, 78.384855 ], [ -92.988281, 78.384855 ], [ -92.988281, 78.455425 ], [ -93.164062, 78.455425 ], [ -93.164062, 78.525573 ], [ -93.339844, 78.525573 ], [ -93.339844, 78.595299 ], [ -93.515625, 78.595299 ], [ -93.515625, 78.664608 ], [ -93.691406, 78.664608 ], [ -93.691406, 78.733501 ], [ -93.867188, 78.733501 ], [ -93.867188, 79.138260 ], [ -93.691406, 79.138260 ], [ -93.691406, 79.204309 ], [ -93.515625, 79.204309 ], [ -93.515625, 79.269962 ], [ -93.339844, 79.269962 ], [ -93.339844, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -105.292969, 79.302640 ], [ -105.292969, 79.269962 ], [ -104.765625, 79.269962 ], [ -104.765625, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -102.304688, 79.004962 ], [ -102.304688, 78.971386 ], [ -102.128906, 78.971386 ], [ -102.128906, 78.937708 ], [ -101.777344, 78.937708 ], [ -101.777344, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.870048 ], [ -101.425781, 78.870048 ], [ -101.425781, 78.836065 ], [ -101.074219, 78.836065 ], [ -101.074219, 78.801980 ], [ -100.898438, 78.801980 ], [ -100.898438, 78.733501 ], [ -100.722656, 78.733501 ], [ -100.722656, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.560488 ], [ -100.371094, 78.560488 ], [ -100.371094, 78.455425 ], [ -100.195312, 78.455425 ], [ -100.195312, 78.349411 ], [ -100.019531, 78.349411 ], [ -100.019531, 78.206563 ], [ -99.843750, 78.206563 ], [ -99.843750, 77.989049 ], [ -99.667969, 77.989049 ], [ -99.667969, 77.915669 ], [ -100.019531, 77.915669 ], [ -100.019531, 77.952414 ], [ -100.546875, 77.952414 ], [ -100.546875, 77.989049 ], [ -101.074219, 77.989049 ], [ -101.074219, 78.025574 ], [ -101.425781, 78.025574 ], [ -101.425781, 78.061989 ], [ -101.601562, 78.061989 ], [ -101.601562, 78.098296 ], [ -101.777344, 78.098296 ], [ -101.777344, 78.134493 ], [ -101.953125, 78.134493 ], [ -101.953125, 78.170582 ], [ -102.304688, 78.170582 ], [ -102.304688, 78.206563 ], [ -102.480469, 78.206563 ], [ -102.480469, 78.242436 ], [ -102.656250, 78.242436 ], [ -102.656250, 78.278201 ], [ -102.832031, 78.278201 ], [ -102.832031, 78.313860 ], [ -103.007812, 78.313860 ], [ -103.007812, 78.349411 ], [ -104.238281, 78.349411 ], [ -104.238281, 78.384855 ], [ -104.941406, 78.384855 ], [ -104.941406, 78.455425 ], [ -104.765625, 78.455425 ], [ -104.765625, 78.525573 ], [ -104.589844, 78.525573 ], [ -104.589844, 78.560488 ], [ -104.414062, 78.560488 ], [ -104.414062, 78.630006 ], [ -104.238281, 78.630006 ], [ -104.238281, 78.664608 ], [ -104.414062, 78.664608 ], [ -104.414062, 78.699106 ], [ -104.589844, 78.699106 ], [ -104.589844, 78.733501 ], [ -104.765625, 78.733501 ], [ -104.765625, 78.767792 ], [ -104.941406, 78.767792 ], [ -104.941406, 78.801980 ], [ -105.117188, 78.801980 ], [ -105.117188, 78.836065 ], [ -105.292969, 78.836065 ], [ -105.292969, 78.870048 ], [ -105.468750, 78.870048 ], [ -105.468750, 79.302640 ], [ -105.292969, 79.302640 ] ] ], [ [ [ -98.085938, 78.870048 ], [ -98.085938, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.801980 ], [ -97.031250, 78.801980 ], [ -97.031250, 78.767792 ], [ -96.679688, 78.767792 ], [ -96.679688, 78.733501 ], [ -96.503906, 78.733501 ], [ -96.503906, 78.664608 ], [ -96.328125, 78.664608 ], [ -96.328125, 78.595299 ], [ -96.152344, 78.595299 ], [ -96.152344, 78.560488 ], [ -95.976562, 78.560488 ], [ -95.976562, 78.490552 ], [ -95.800781, 78.490552 ], [ -95.800781, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.242436 ], [ -95.800781, 78.242436 ], [ -95.800781, 78.025574 ], [ -96.152344, 78.025574 ], [ -96.152344, 77.989049 ], [ -96.328125, 77.989049 ], [ -96.328125, 77.952414 ], [ -96.679688, 77.952414 ], [ -96.679688, 77.915669 ], [ -96.855469, 77.915669 ], [ -96.855469, 77.878814 ], [ -97.207031, 77.878814 ], [ -97.207031, 77.841848 ], [ -97.558594, 77.841848 ], [ -97.558594, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 77.989049 ], [ -97.910156, 77.989049 ], [ -97.910156, 78.061989 ], [ -98.085938, 78.061989 ], [ -98.085938, 78.134493 ], [ -98.261719, 78.134493 ], [ -98.261719, 78.278201 ], [ -98.437500, 78.278201 ], [ -98.437500, 78.384855 ], [ -98.613281, 78.384855 ], [ -98.613281, 78.870048 ], [ -98.085938, 78.870048 ] ] ], [ [ [ -89.121094, 76.999935 ], [ -89.121094, 76.475773 ], [ -89.472656, 76.475773 ], [ -89.472656, 76.720223 ], [ -89.648438, 76.720223 ], [ -89.648438, 76.960334 ], [ -89.296875, 76.960334 ], [ -89.296875, 76.999935 ], [ -89.121094, 76.999935 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -111.269531, 78.134493 ], [ -110.917969, 78.134493 ], [ -110.917969, 78.098296 ], [ -110.742188, 78.098296 ], [ -110.742188, 78.061989 ], [ -110.390625, 78.061989 ], [ -110.390625, 78.025574 ], [ -110.039062, 78.025574 ], [ -110.039062, 77.989049 ], [ -109.863281, 77.989049 ], [ -109.863281, 77.915669 ], [ -110.039062, 77.915669 ], [ -110.039062, 77.767582 ], [ -110.214844, 77.767582 ], [ -110.214844, 77.655346 ], [ -110.566406, 77.655346 ], [ -110.566406, 77.617709 ], [ -110.742188, 77.617709 ], [ -110.742188, 77.579959 ], [ -110.917969, 77.579959 ], [ -110.917969, 77.542096 ], [ -111.269531, 77.542096 ], [ -111.269531, 77.504119 ], [ -111.445312, 77.504119 ], [ -111.445312, 77.466028 ], [ -111.796875, 77.466028 ], [ -111.796875, 77.427824 ], [ -112.148438, 77.427824 ], [ -112.148438, 77.466028 ], [ -112.324219, 77.466028 ], [ -112.324219, 77.504119 ], [ -112.500000, 77.504119 ], [ -112.500000, 77.542096 ], [ -112.675781, 77.542096 ], [ -112.675781, 77.579959 ], [ -113.027344, 77.579959 ], [ -113.027344, 77.617709 ], [ -113.203125, 77.617709 ], [ -113.203125, 77.655346 ], [ -113.378906, 77.655346 ], [ -113.378906, 77.692870 ], [ -113.554688, 77.692870 ], [ -113.554688, 77.730282 ], [ -113.378906, 77.730282 ], [ -113.378906, 77.804771 ], [ -113.203125, 77.804771 ], [ -113.203125, 77.878814 ], [ -113.027344, 77.878814 ], [ -113.027344, 77.952414 ], [ -112.851562, 77.952414 ], [ -112.851562, 78.025574 ], [ -112.675781, 78.025574 ], [ -112.675781, 78.061989 ], [ -112.324219, 78.061989 ], [ -112.324219, 78.098296 ], [ -111.796875, 78.098296 ], [ -111.796875, 78.134493 ], [ -111.445312, 78.134493 ], [ -111.445312, 78.170582 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -95.625000, 77.841848 ], [ -95.625000, 77.804771 ], [ -94.394531, 77.804771 ], [ -94.394531, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.730282 ], [ -94.042969, 77.730282 ], [ -94.042969, 77.655346 ], [ -93.867188, 77.655346 ], [ -93.867188, 77.617709 ], [ -93.691406, 77.617709 ], [ -93.691406, 77.542096 ], [ -93.867188, 77.542096 ], [ -93.867188, 77.504119 ], [ -95.273438, 77.504119 ], [ -95.273438, 77.542096 ], [ -96.152344, 77.542096 ], [ -96.152344, 77.617709 ], [ -96.328125, 77.617709 ], [ -96.328125, 77.767582 ], [ -96.503906, 77.767582 ], [ -96.503906, 77.841848 ], [ -95.625000, 77.841848 ] ] ], [ [ [ -111.269531, 78.836065 ], [ -111.269531, 78.801980 ], [ -110.917969, 78.801980 ], [ -110.917969, 78.767792 ], [ -110.742188, 78.767792 ], [ -110.742188, 78.733501 ], [ -110.566406, 78.733501 ], [ -110.566406, 78.699106 ], [ -110.214844, 78.699106 ], [ -110.214844, 78.664608 ], [ -110.039062, 78.664608 ], [ -110.039062, 78.630006 ], [ -109.863281, 78.630006 ], [ -109.863281, 78.595299 ], [ -109.687500, 78.595299 ], [ -109.687500, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.525573 ], [ -110.214844, 78.525573 ], [ -110.214844, 78.490552 ], [ -110.390625, 78.490552 ], [ -110.390625, 78.455425 ], [ -110.742188, 78.455425 ], [ -110.742188, 78.420193 ], [ -112.500000, 78.420193 ], [ -112.500000, 78.560488 ], [ -112.324219, 78.560488 ], [ -112.324219, 78.630006 ], [ -112.148438, 78.630006 ], [ -112.148438, 78.664608 ], [ -111.972656, 78.664608 ], [ -111.972656, 78.699106 ], [ -111.796875, 78.699106 ], [ -111.796875, 78.767792 ], [ -111.621094, 78.767792 ], [ -111.621094, 78.801980 ], [ -111.445312, 78.801980 ], [ -111.445312, 78.836065 ], [ -111.269531, 78.836065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.097656, 71.965388 ], [ -95.097656, 71.910888 ], [ -94.746094, 71.910888 ], [ -94.746094, 71.856229 ], [ -94.394531, 71.856229 ], [ -94.394531, 71.801410 ], [ -94.042969, 71.801410 ], [ -94.042969, 71.746432 ], [ -93.867188, 71.746432 ], [ -93.867188, 71.691293 ], [ -93.691406, 71.691293 ], [ -93.691406, 71.580532 ], [ -93.515625, 71.580532 ], [ -93.515625, 71.524909 ], [ -93.339844, 71.524909 ], [ -93.339844, 71.469124 ], [ -93.164062, 71.469124 ], [ -93.164062, 71.357067 ], [ -92.988281, 71.357067 ], [ -92.988281, 71.244356 ], [ -92.812500, 71.244356 ], [ -92.812500, 71.130988 ], [ -92.636719, 71.130988 ], [ -92.636719, 70.959697 ], [ -92.460938, 70.959697 ], [ -92.460938, 70.844673 ], [ -92.285156, 70.844673 ], [ -92.285156, 70.670881 ], [ -92.109375, 70.670881 ], [ -92.109375, 70.554179 ], [ -91.933594, 70.554179 ], [ -91.933594, 70.377854 ], [ -91.757812, 70.377854 ], [ -91.757812, 70.259452 ], [ -91.582031, 70.259452 ], [ -91.582031, 70.140364 ], [ -91.757812, 70.140364 ], [ -91.757812, 70.020587 ], [ -91.933594, 70.020587 ], [ -91.933594, 69.960439 ], [ -92.109375, 69.960439 ], [ -92.109375, 69.839622 ], [ -92.285156, 69.839622 ], [ -92.285156, 69.657086 ], [ -91.757812, 69.657086 ], [ -91.757812, 69.595890 ], [ -91.054688, 69.595890 ], [ -91.054688, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.527344, 68.528235 ], [ -90.527344, 68.656555 ], [ -90.351562, 68.656555 ], [ -90.351562, 68.720441 ], [ -90.175781, 68.720441 ], [ -90.175781, 68.847665 ], [ -90.000000, 68.847665 ], [ -90.000000, 68.911005 ], [ -89.824219, 68.911005 ], [ -89.824219, 69.037142 ], [ -89.648438, 69.037142 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 66.160511 ], [ -135.878906, 66.160511 ], [ -135.878906, 69.287257 ], [ -135.703125, 69.287257 ], [ -135.703125, 69.349339 ], [ -135.527344, 69.349339 ], [ -135.527344, 69.411242 ], [ -135.175781, 69.411242 ], [ -135.175781, 69.472969 ], [ -135.000000, 69.472969 ], [ -135.000000, 69.534518 ], [ -134.824219, 69.534518 ], [ -134.824219, 69.595890 ], [ -134.472656, 69.595890 ], [ -134.472656, 69.657086 ], [ -134.296875, 69.657086 ], [ -134.296875, 69.595890 ], [ -133.593750, 69.595890 ], [ -133.593750, 69.534518 ], [ -132.890625, 69.534518 ], [ -132.890625, 69.595890 ], [ -132.714844, 69.595890 ], [ -132.714844, 69.657086 ], [ -132.363281, 69.657086 ], [ -132.363281, 69.718107 ], [ -132.187500, 69.718107 ], [ -132.187500, 69.778952 ], [ -132.011719, 69.778952 ], [ -132.011719, 69.839622 ], [ -131.660156, 69.839622 ], [ -131.660156, 69.900118 ], [ -131.484375, 69.900118 ], [ -131.484375, 69.960439 ], [ -131.132812, 69.960439 ], [ -131.132812, 70.020587 ], [ -130.781250, 70.020587 ], [ -130.781250, 70.080562 ], [ -130.429688, 70.080562 ], [ -130.429688, 70.140364 ], [ -130.078125, 70.140364 ], [ -130.078125, 70.199994 ], [ -129.902344, 70.199994 ], [ -129.902344, 70.140364 ], [ -129.726562, 70.140364 ], [ -129.726562, 70.020587 ], [ -129.550781, 70.020587 ], [ -129.550781, 69.900118 ], [ -129.375000, 69.900118 ], [ -129.375000, 69.778952 ], [ -129.023438, 69.778952 ], [ -129.023438, 69.839622 ], [ -128.847656, 69.839622 ], [ -128.847656, 69.900118 ], [ -128.671875, 69.900118 ], [ -128.671875, 69.960439 ], [ -128.496094, 69.960439 ], [ -128.496094, 70.140364 ], [ -128.320312, 70.140364 ], [ -128.320312, 70.377854 ], [ -128.144531, 70.377854 ], [ -128.144531, 70.436799 ], [ -127.792969, 70.436799 ], [ -127.792969, 70.377854 ], [ -127.617188, 70.377854 ], [ -127.617188, 70.318738 ], [ -127.441406, 70.318738 ], [ -127.441406, 70.199994 ], [ -127.265625, 70.199994 ], [ -127.265625, 70.140364 ], [ -127.089844, 70.140364 ], [ -127.089844, 70.080562 ], [ -126.914062, 70.080562 ], [ -126.914062, 69.960439 ], [ -126.738281, 69.960439 ], [ -126.738281, 69.900118 ], [ -126.562500, 69.900118 ], [ -126.562500, 69.778952 ], [ -126.386719, 69.778952 ], [ -126.386719, 69.718107 ], [ -126.210938, 69.718107 ], [ -126.210938, 69.657086 ], [ -126.035156, 69.657086 ], [ -126.035156, 69.534518 ], [ -125.683594, 69.534518 ], [ -125.683594, 69.657086 ], [ -125.507812, 69.657086 ], [ -125.507812, 69.718107 ], [ -125.332031, 69.718107 ], [ -125.332031, 69.778952 ], [ -125.156250, 69.778952 ], [ -125.156250, 69.900118 ], [ -124.980469, 69.900118 ], [ -124.980469, 69.960439 ], [ -124.804688, 69.960439 ], [ -124.804688, 70.020587 ], [ -124.628906, 70.020587 ], [ -124.628906, 70.140364 ], [ -124.453125, 70.140364 ], [ -124.453125, 69.411242 ], [ -124.101562, 69.411242 ], [ -124.101562, 69.472969 ], [ -123.750000, 69.472969 ], [ -123.750000, 69.534518 ], [ -123.398438, 69.534518 ], [ -123.398438, 69.595890 ], [ -123.046875, 69.595890 ], [ -123.046875, 69.718107 ], [ -122.871094, 69.718107 ], [ -122.871094, 69.839622 ], [ -122.695312, 69.839622 ], [ -122.695312, 69.900118 ], [ -122.343750, 69.900118 ], [ -122.343750, 69.839622 ], [ -121.640625, 69.839622 ], [ -121.640625, 69.778952 ], [ -121.464844, 69.778952 ], [ -121.464844, 69.718107 ], [ -121.113281, 69.718107 ], [ -121.113281, 69.657086 ], [ -120.937500, 69.657086 ], [ -120.937500, 69.595890 ], [ -120.761719, 69.595890 ], [ -120.761719, 69.534518 ], [ -120.410156, 69.534518 ], [ -120.410156, 69.472969 ], [ -120.234375, 69.472969 ], [ -120.234375, 69.411242 ], [ -119.882812, 69.411242 ], [ -119.882812, 69.349339 ], [ -119.531250, 69.349339 ], [ -119.531250, 69.287257 ], [ -119.179688, 69.287257 ], [ -119.179688, 69.224997 ], [ -118.828125, 69.224997 ], [ -118.828125, 69.162558 ], [ -118.476562, 69.162558 ], [ -118.476562, 69.099940 ], [ -118.125000, 69.099940 ], [ -118.125000, 69.037142 ], [ -117.597656, 69.037142 ], [ -117.597656, 68.974164 ], [ -117.246094, 68.974164 ], [ -117.246094, 68.911005 ], [ -116.718750, 68.911005 ], [ -116.718750, 68.847665 ], [ -115.664062, 68.847665 ], [ -115.664062, 68.911005 ], [ -115.312500, 68.911005 ], [ -115.312500, 68.847665 ], [ -115.136719, 68.847665 ], [ -115.136719, 68.784144 ], [ -114.960938, 68.784144 ], [ -114.960938, 68.720441 ], [ -114.785156, 68.720441 ], [ -114.785156, 68.656555 ], [ -114.609375, 68.656555 ], [ -114.609375, 68.592487 ], [ -114.433594, 68.592487 ], [ -114.433594, 68.528235 ], [ -114.257812, 68.528235 ], [ -114.257812, 68.463800 ], [ -114.082031, 68.463800 ], [ -114.082031, 68.399180 ], [ -113.906250, 68.399180 ], [ -113.906250, 68.334376 ], [ -114.082031, 68.334376 ], [ -114.082031, 68.269387 ], [ -114.257812, 68.269387 ], [ -114.257812, 68.204212 ], [ -114.433594, 68.204212 ], [ -114.433594, 68.138852 ], [ -114.785156, 68.138852 ], [ -114.785156, 68.073305 ], [ -114.960938, 68.073305 ], [ -114.960938, 68.007571 ], [ -115.136719, 68.007571 ], [ -115.136719, 67.875541 ], [ -114.609375, 67.875541 ], [ -114.609375, 67.809245 ], [ -113.906250, 67.809245 ], [ -113.906250, 67.742759 ], [ -112.148438, 67.742759 ], [ -112.148438, 67.809245 ], [ -110.742188, 67.809245 ], [ -110.742188, 67.875541 ], [ -110.390625, 67.875541 ], [ -110.390625, 67.941650 ], [ -109.863281, 67.941650 ], [ -109.863281, 67.809245 ], [ -109.687500, 67.809245 ], [ -109.687500, 67.742759 ], [ -109.511719, 67.742759 ], [ -109.511719, 67.609221 ], [ -109.335938, 67.609221 ], [ -109.335938, 67.542167 ], [ -109.160156, 67.542167 ], [ -109.160156, 67.407487 ], [ -108.808594, 67.407487 ], [ -108.808594, 67.542167 ], [ -108.632812, 67.542167 ], [ -108.632812, 67.609221 ], [ -108.457031, 67.609221 ], [ -108.457031, 67.676085 ], [ -108.281250, 67.676085 ], [ -108.281250, 67.809245 ], [ -108.105469, 67.809245 ], [ -108.105469, 67.875541 ], [ -107.929688, 67.875541 ], [ -107.929688, 67.941650 ], [ -108.105469, 67.941650 ], [ -108.105469, 68.007571 ], [ -108.281250, 68.007571 ], [ -108.281250, 68.073305 ], [ -108.457031, 68.073305 ], [ -108.457031, 68.138852 ], [ -108.632812, 68.138852 ], [ -108.632812, 68.204212 ], [ -108.808594, 68.204212 ], [ -108.808594, 68.269387 ], [ -108.984375, 68.269387 ], [ -108.984375, 68.334376 ], [ -108.808594, 68.334376 ], [ -108.808594, 68.399180 ], [ -108.632812, 68.399180 ], [ -108.632812, 68.528235 ], [ -108.457031, 68.528235 ], [ -108.457031, 68.592487 ], [ -108.281250, 68.592487 ], [ -108.281250, 68.656555 ], [ -107.578125, 68.656555 ], [ -107.578125, 68.720441 ], [ -106.699219, 68.720441 ], [ -106.699219, 68.784144 ], [ -106.347656, 68.784144 ], [ -106.347656, 68.847665 ], [ -106.171875, 68.847665 ], [ -106.171875, 68.784144 ], [ -105.996094, 68.784144 ], [ -105.996094, 68.720441 ], [ -105.820312, 68.720441 ], [ -105.820312, 68.656555 ], [ -105.644531, 68.656555 ], [ -105.644531, 68.592487 ], [ -105.468750, 68.592487 ], [ -105.468750, 68.528235 ], [ -105.292969, 68.528235 ], [ -105.292969, 68.463800 ], [ -105.117188, 68.463800 ], [ -105.117188, 68.334376 ], [ -104.941406, 68.334376 ], [ -104.941406, 68.269387 ], [ -104.765625, 68.269387 ], [ -104.765625, 68.204212 ], [ -104.589844, 68.204212 ], [ -104.589844, 68.073305 ], [ -103.710938, 68.073305 ], [ -103.710938, 68.138852 ], [ -103.359375, 68.138852 ], [ -103.359375, 68.073305 ], [ -103.007812, 68.073305 ], [ -103.007812, 68.007571 ], [ -102.832031, 68.007571 ], [ -102.832031, 67.941650 ], [ -102.656250, 67.941650 ], [ -102.656250, 67.875541 ], [ -102.304688, 67.875541 ], [ -102.304688, 67.809245 ], [ -102.128906, 67.809245 ], [ -102.128906, 67.742759 ], [ -101.777344, 67.742759 ], [ -101.777344, 67.676085 ], [ -101.074219, 67.676085 ], [ -101.074219, 67.742759 ], [ -100.371094, 67.742759 ], [ -100.371094, 67.809245 ], [ -98.613281, 67.809245 ], [ -98.613281, 68.463800 ], [ -98.261719, 68.463800 ], [ -98.261719, 68.528235 ], [ -97.910156, 68.528235 ], [ -97.910156, 68.592487 ], [ -97.734375, 68.592487 ], [ -97.734375, 68.528235 ], [ -97.382812, 68.528235 ], [ -97.382812, 68.463800 ], [ -97.031250, 68.463800 ], [ -97.031250, 68.399180 ], [ -96.679688, 68.399180 ], [ -96.679688, 68.334376 ], [ -96.328125, 68.334376 ], [ -96.328125, 68.269387 ], [ -96.152344, 68.269387 ], [ -96.152344, 67.474922 ], [ -95.976562, 67.474922 ], [ -95.976562, 67.742759 ], [ -95.800781, 67.742759 ], [ -95.800781, 68.007571 ], [ -95.625000, 68.007571 ], [ -95.625000, 68.138852 ], [ -95.273438, 68.138852 ], [ -95.273438, 68.073305 ], [ -94.746094, 68.073305 ], [ -94.746094, 68.334376 ], [ -94.570312, 68.334376 ], [ -94.570312, 68.847665 ], [ -94.394531, 68.847665 ], [ -94.394531, 69.099940 ], [ -94.570312, 69.099940 ], [ -94.570312, 69.224997 ], [ -94.746094, 69.224997 ], [ -94.746094, 69.349339 ], [ -94.921875, 69.349339 ], [ -94.921875, 69.411242 ], [ -95.097656, 69.411242 ], [ -95.097656, 69.534518 ], [ -95.273438, 69.534518 ], [ -95.273438, 69.657086 ], [ -95.449219, 69.657086 ], [ -95.449219, 69.718107 ], [ -95.625000, 69.718107 ], [ -95.625000, 69.778952 ], [ -95.800781, 69.778952 ], [ -95.800781, 69.839622 ], [ -95.976562, 69.839622 ], [ -95.976562, 69.960439 ], [ -96.152344, 69.960439 ], [ -96.152344, 70.020587 ], [ -96.328125, 70.020587 ], [ -96.328125, 70.080562 ], [ -96.503906, 70.080562 ], [ -96.503906, 71.244356 ], [ -96.328125, 71.244356 ], [ -96.328125, 71.357067 ], [ -96.152344, 71.357067 ], [ -96.152344, 71.469124 ], [ -95.976562, 71.469124 ], [ -95.976562, 71.580532 ], [ -95.800781, 71.580532 ], [ -95.800781, 71.691293 ], [ -95.625000, 71.691293 ], [ -95.625000, 71.801410 ], [ -95.449219, 71.801410 ], [ -95.449219, 71.910888 ], [ -95.273438, 71.910888 ], [ -95.273438, 71.965388 ], [ -95.097656, 71.965388 ] ] ], [ [ [ -106.171875, 73.022592 ], [ -106.171875, 73.124945 ], [ -106.347656, 73.124945 ], [ -106.347656, 73.175897 ], [ -106.523438, 73.175897 ], [ -106.523438, 73.277353 ], [ -106.699219, 73.277353 ], [ -106.699219, 73.327858 ], [ -106.875000, 73.327858 ], [ -106.875000, 73.428424 ], [ -107.050781, 73.428424 ], [ -107.050781, 73.478485 ], [ -106.875000, 73.478485 ], [ -106.875000, 73.578167 ], [ -106.699219, 73.578167 ], [ -106.699219, 73.627789 ], [ -105.820312, 73.627789 ], [ -105.820312, 73.677264 ], [ -105.292969, 73.677264 ], [ -105.292969, 73.627789 ], [ -105.117188, 73.627789 ], [ -105.117188, 73.578167 ], [ -104.941406, 73.578167 ], [ -104.941406, 73.478485 ], [ -104.765625, 73.478485 ], [ -104.765625, 73.428424 ], [ -104.589844, 73.428424 ], [ -104.589844, 73.327858 ], [ -104.765625, 73.327858 ], [ -104.765625, 73.226700 ], [ -104.941406, 73.226700 ], [ -104.941406, 73.073844 ], [ -105.117188, 73.073844 ], [ -105.117188, 72.919635 ], [ -105.292969, 72.919635 ], [ -105.292969, 72.816074 ], [ -105.468750, 72.816074 ], [ -105.468750, 72.764065 ], [ -105.644531, 72.764065 ], [ -105.644531, 72.711903 ], [ -105.468750, 72.711903 ], [ -105.468750, 72.554498 ], [ -105.292969, 72.554498 ], [ -105.292969, 72.235514 ], [ -105.117188, 72.235514 ], [ -105.117188, 71.910888 ], [ -104.941406, 71.910888 ], [ -104.941406, 71.524909 ], [ -104.765625, 71.524909 ], [ -104.765625, 71.187754 ], [ -104.589844, 71.187754 ], [ -104.589844, 70.959697 ], [ -104.414062, 70.959697 ], [ -104.414062, 70.902268 ], [ -104.062500, 70.902268 ], [ -104.062500, 70.844673 ], [ -103.886719, 70.844673 ], [ -103.886719, 70.786910 ], [ -103.710938, 70.786910 ], [ -103.710938, 70.728979 ], [ -103.535156, 70.728979 ], [ -103.535156, 70.670881 ], [ -103.183594, 70.670881 ], [ -103.183594, 70.612614 ], [ -103.007812, 70.612614 ], [ -103.007812, 70.554179 ], [ -102.832031, 70.554179 ], [ -102.832031, 70.495574 ], [ -102.656250, 70.495574 ], [ -102.656250, 70.436799 ], [ -102.304688, 70.436799 ], [ -102.304688, 70.377854 ], [ -102.128906, 70.377854 ], [ -102.128906, 70.318738 ], [ -101.953125, 70.318738 ], [ -101.953125, 70.259452 ], [ -101.777344, 70.259452 ], [ -101.777344, 70.199994 ], [ -101.425781, 70.199994 ], [ -101.425781, 70.140364 ], [ -101.250000, 70.140364 ], [ -101.250000, 70.080562 ], [ -101.074219, 70.080562 ], [ -101.074219, 69.839622 ], [ -101.250000, 69.839622 ], [ -101.250000, 69.595890 ], [ -101.953125, 69.595890 ], [ -101.953125, 69.534518 ], [ -102.832031, 69.534518 ], [ -102.832031, 69.472969 ], [ -102.656250, 69.472969 ], [ -102.656250, 69.349339 ], [ -102.480469, 69.349339 ], [ -102.480469, 69.287257 ], [ -102.304688, 69.287257 ], [ -102.304688, 69.162558 ], [ -102.128906, 69.162558 ], [ -102.128906, 69.037142 ], [ -102.304688, 69.037142 ], [ -102.304688, 68.847665 ], [ -102.480469, 68.847665 ], [ -102.480469, 68.784144 ], [ -103.007812, 68.784144 ], [ -103.007812, 68.847665 ], [ -103.886719, 68.847665 ], [ -103.886719, 68.911005 ], [ -104.589844, 68.911005 ], [ -104.589844, 68.974164 ], [ -104.941406, 68.974164 ], [ -104.941406, 69.037142 ], [ -105.292969, 69.037142 ], [ -105.292969, 69.099940 ], [ -105.644531, 69.099940 ], [ -105.644531, 69.162558 ], [ -105.996094, 69.162558 ], [ -105.996094, 69.224997 ], [ -106.523438, 69.224997 ], [ -106.523438, 69.162558 ], [ -107.226562, 69.162558 ], [ -107.226562, 69.099940 ], [ -107.578125, 69.099940 ], [ -107.578125, 69.037142 ], [ -107.929688, 69.037142 ], [ -107.929688, 68.974164 ], [ -108.281250, 68.974164 ], [ -108.281250, 68.911005 ], [ -108.632812, 68.911005 ], [ -108.632812, 68.847665 ], [ -108.984375, 68.847665 ], [ -108.984375, 68.784144 ], [ -109.687500, 68.784144 ], [ -109.687500, 68.720441 ], [ -110.917969, 68.720441 ], [ -110.917969, 68.656555 ], [ -112.324219, 68.656555 ], [ -112.324219, 68.592487 ], [ -113.378906, 68.592487 ], [ -113.378906, 68.656555 ], [ -113.554688, 68.656555 ], [ -113.554688, 68.784144 ], [ -113.730469, 68.784144 ], [ -113.730469, 68.911005 ], [ -113.906250, 68.911005 ], [ -113.906250, 69.037142 ], [ -114.257812, 69.037142 ], [ -114.257812, 69.099940 ], [ -114.609375, 69.099940 ], [ -114.609375, 69.162558 ], [ -114.960938, 69.162558 ], [ -114.960938, 69.224997 ], [ -115.312500, 69.224997 ], [ -115.312500, 69.287257 ], [ -115.664062, 69.287257 ], [ -115.664062, 69.224997 ], [ -116.367188, 69.224997 ], [ -116.367188, 69.349339 ], [ -116.542969, 69.349339 ], [ -116.542969, 69.472969 ], [ -116.718750, 69.472969 ], [ -116.718750, 69.595890 ], [ -116.894531, 69.595890 ], [ -116.894531, 69.657086 ], [ -117.070312, 69.657086 ], [ -117.070312, 69.778952 ], [ -117.246094, 69.778952 ], [ -117.246094, 69.900118 ], [ -117.421875, 69.900118 ], [ -117.421875, 69.960439 ], [ -117.070312, 69.960439 ], [ -117.070312, 70.020587 ], [ -116.718750, 70.020587 ], [ -116.718750, 70.080562 ], [ -116.367188, 70.080562 ], [ -116.367188, 70.140364 ], [ -115.839844, 70.140364 ], [ -115.839844, 70.199994 ], [ -115.312500, 70.199994 ], [ -115.312500, 70.259452 ], [ -114.609375, 70.259452 ], [ -114.609375, 70.199994 ], [ -113.378906, 70.199994 ], [ -113.378906, 70.259452 ], [ -113.027344, 70.259452 ], [ -113.027344, 70.318738 ], [ -112.675781, 70.318738 ], [ -112.675781, 70.377854 ], [ -112.851562, 70.377854 ], [ -112.851562, 70.436799 ], [ -113.378906, 70.436799 ], [ -113.378906, 70.495574 ], [ -113.730469, 70.495574 ], [ -113.730469, 70.554179 ], [ -114.257812, 70.554179 ], [ -114.257812, 70.612614 ], [ -115.312500, 70.612614 ], [ -115.312500, 70.554179 ], [ -117.949219, 70.554179 ], [ -117.949219, 70.612614 ], [ -118.125000, 70.612614 ], [ -118.125000, 70.728979 ], [ -118.300781, 70.728979 ], [ -118.300781, 70.844673 ], [ -118.476562, 70.844673 ], [ -118.476562, 70.959697 ], [ -118.300781, 70.959697 ], [ -118.300781, 71.016960 ], [ -117.949219, 71.016960 ], [ -117.949219, 71.074056 ], [ -117.597656, 71.074056 ], [ -117.597656, 71.130988 ], [ -117.246094, 71.130988 ], [ -117.246094, 71.187754 ], [ -116.894531, 71.187754 ], [ -116.894531, 71.244356 ], [ -116.542969, 71.244356 ], [ -116.542969, 71.300793 ], [ -116.191406, 71.300793 ], [ -116.191406, 71.357067 ], [ -116.894531, 71.357067 ], [ -116.894531, 71.300793 ], [ -118.125000, 71.300793 ], [ -118.125000, 71.357067 ], [ -118.476562, 71.357067 ], [ -118.476562, 71.413177 ], [ -118.828125, 71.413177 ], [ -118.828125, 71.469124 ], [ -119.179688, 71.469124 ], [ -119.179688, 71.524909 ], [ -119.531250, 71.524909 ], [ -119.531250, 71.635993 ], [ -119.355469, 71.635993 ], [ -119.355469, 71.801410 ], [ -119.179688, 71.801410 ], [ -119.179688, 71.965388 ], [ -119.003906, 71.965388 ], [ -119.003906, 72.073911 ], [ -118.828125, 72.073911 ], [ -118.828125, 72.235514 ], [ -118.652344, 72.235514 ], [ -118.652344, 72.342464 ], [ -118.476562, 72.342464 ], [ -118.476562, 72.448792 ], [ -118.300781, 72.448792 ], [ -118.300781, 72.554498 ], [ -118.125000, 72.554498 ], [ -118.125000, 72.659588 ], [ -117.949219, 72.659588 ], [ -117.949219, 72.711903 ], [ -117.773438, 72.711903 ], [ -117.773438, 72.764065 ], [ -117.597656, 72.764065 ], [ -117.597656, 72.816074 ], [ -117.246094, 72.816074 ], [ -117.246094, 72.867930 ], [ -117.070312, 72.867930 ], [ -117.070312, 72.919635 ], [ -116.894531, 72.919635 ], [ -116.894531, 72.971189 ], [ -116.718750, 72.971189 ], [ -116.718750, 73.022592 ], [ -116.367188, 73.022592 ], [ -116.367188, 73.073844 ], [ -116.191406, 73.073844 ], [ -116.191406, 73.124945 ], [ -116.015625, 73.124945 ], [ -116.015625, 73.175897 ], [ -115.839844, 73.175897 ], [ -115.839844, 73.226700 ], [ -115.488281, 73.226700 ], [ -115.488281, 73.277353 ], [ -114.960938, 73.277353 ], [ -114.960938, 73.226700 ], [ -114.785156, 73.226700 ], [ -114.785156, 73.175897 ], [ -114.433594, 73.175897 ], [ -114.433594, 73.124945 ], [ -114.257812, 73.124945 ], [ -114.257812, 73.022592 ], [ -114.433594, 73.022592 ], [ -114.433594, 72.867930 ], [ -114.609375, 72.867930 ], [ -114.609375, 72.711903 ], [ -114.785156, 72.711903 ], [ -114.785156, 72.659588 ], [ -114.433594, 72.659588 ], [ -114.433594, 72.711903 ], [ -114.082031, 72.711903 ], [ -114.082031, 72.764065 ], [ -113.730469, 72.764065 ], [ -113.730469, 72.816074 ], [ -113.378906, 72.816074 ], [ -113.378906, 72.867930 ], [ -113.027344, 72.867930 ], [ -113.027344, 72.919635 ], [ -112.675781, 72.919635 ], [ -112.675781, 72.971189 ], [ -112.500000, 72.971189 ], [ -112.500000, 72.919635 ], [ -112.324219, 72.919635 ], [ -112.324219, 72.867930 ], [ -112.148438, 72.867930 ], [ -112.148438, 72.816074 ], [ -111.972656, 72.816074 ], [ -111.972656, 72.764065 ], [ -111.796875, 72.764065 ], [ -111.796875, 72.659588 ], [ -111.621094, 72.659588 ], [ -111.621094, 72.607120 ], [ -111.445312, 72.607120 ], [ -111.445312, 72.554498 ], [ -111.269531, 72.554498 ], [ -111.269531, 72.501722 ], [ -110.917969, 72.501722 ], [ -110.917969, 72.607120 ], [ -110.742188, 72.607120 ], [ -110.742188, 72.659588 ], [ -110.566406, 72.659588 ], [ -110.566406, 72.764065 ], [ -110.390625, 72.764065 ], [ -110.390625, 72.816074 ], [ -110.214844, 72.816074 ], [ -110.214844, 72.919635 ], [ -109.863281, 72.919635 ], [ -109.863281, 72.867930 ], [ -109.687500, 72.867930 ], [ -109.687500, 72.816074 ], [ -109.511719, 72.816074 ], [ -109.511719, 72.711903 ], [ -109.335938, 72.711903 ], [ -109.335938, 72.659588 ], [ -109.160156, 72.659588 ], [ -109.160156, 72.554498 ], [ -108.984375, 72.554498 ], [ -108.984375, 72.342464 ], [ -108.808594, 72.342464 ], [ -108.808594, 72.181804 ], [ -108.632812, 72.181804 ], [ -108.632812, 71.965388 ], [ -108.457031, 71.965388 ], [ -108.457031, 71.746432 ], [ -108.105469, 71.746432 ], [ -108.105469, 71.856229 ], [ -107.929688, 71.856229 ], [ -107.929688, 71.965388 ], [ -107.753906, 71.965388 ], [ -107.753906, 72.181804 ], [ -107.929688, 72.181804 ], [ -107.929688, 72.448792 ], [ -108.105469, 72.448792 ], [ -108.105469, 72.711903 ], [ -108.281250, 72.711903 ], [ -108.281250, 72.971189 ], [ -108.457031, 72.971189 ], [ -108.457031, 73.124945 ], [ -108.281250, 73.124945 ], [ -108.281250, 73.175897 ], [ -107.929688, 73.175897 ], [ -107.929688, 73.226700 ], [ -107.226562, 73.226700 ], [ -107.226562, 73.175897 ], [ -106.875000, 73.175897 ], [ -106.875000, 73.124945 ], [ -106.523438, 73.124945 ], [ -106.523438, 73.073844 ], [ -106.347656, 73.073844 ], [ -106.347656, 73.022592 ], [ -106.171875, 73.022592 ] ], [ [ -106.171875, 73.022592 ], [ -106.171875, 72.919635 ], [ -105.996094, 72.919635 ], [ -105.996094, 73.022592 ], [ -106.171875, 73.022592 ] ], [ [ -105.820312, 72.867930 ], [ -105.820312, 72.816074 ], [ -105.644531, 72.816074 ], [ -105.644531, 72.867930 ], [ -105.820312, 72.867930 ] ], [ [ -105.996094, 72.919635 ], [ -105.996094, 72.867930 ], [ -105.820312, 72.867930 ], [ -105.820312, 72.919635 ], [ -105.996094, 72.919635 ] ] ], [ [ [ -98.085938, 70.140364 ], [ -98.085938, 70.080562 ], [ -97.910156, 70.080562 ], [ -97.910156, 70.020587 ], [ -97.558594, 70.020587 ], [ -97.558594, 69.960439 ], [ -97.382812, 69.960439 ], [ -97.382812, 69.900118 ], [ -97.207031, 69.900118 ], [ -97.207031, 69.839622 ], [ -97.031250, 69.839622 ], [ -97.031250, 69.778952 ], [ -96.855469, 69.778952 ], [ -96.855469, 69.718107 ], [ -96.679688, 69.718107 ], [ -96.679688, 69.657086 ], [ -96.503906, 69.657086 ], [ -96.503906, 69.534518 ], [ -96.328125, 69.534518 ], [ -96.328125, 69.472969 ], [ -96.152344, 69.472969 ], [ -96.152344, 69.349339 ], [ -95.976562, 69.349339 ], [ -95.976562, 69.224997 ], [ -95.800781, 69.224997 ], [ -95.800781, 69.099940 ], [ -95.976562, 69.099940 ], [ -95.976562, 68.974164 ], [ -96.152344, 68.974164 ], [ -96.152344, 68.847665 ], [ -96.328125, 68.847665 ], [ -96.328125, 68.784144 ], [ -96.503906, 68.784144 ], [ -96.503906, 68.847665 ], [ -96.855469, 68.847665 ], [ -96.855469, 68.911005 ], [ -97.207031, 68.911005 ], [ -97.207031, 68.974164 ], [ -97.382812, 68.974164 ], [ -97.382812, 69.037142 ], [ -98.085938, 69.037142 ], [ -98.085938, 68.974164 ], [ -98.613281, 68.974164 ], [ -98.613281, 69.037142 ], [ -98.789062, 69.037142 ], [ -98.789062, 69.099940 ], [ -98.964844, 69.099940 ], [ -98.964844, 69.162558 ], [ -99.316406, 69.162558 ], [ -99.316406, 69.224997 ], [ -99.492188, 69.224997 ], [ -99.492188, 69.287257 ], [ -99.667969, 69.287257 ], [ -99.667969, 69.349339 ], [ -99.843750, 69.349339 ], [ -99.843750, 69.411242 ], [ -99.667969, 69.411242 ], [ -99.667969, 69.472969 ], [ -99.492188, 69.472969 ], [ -99.492188, 69.534518 ], [ -99.316406, 69.534518 ], [ -99.316406, 69.595890 ], [ -99.140625, 69.595890 ], [ -99.140625, 69.657086 ], [ -98.964844, 69.657086 ], [ -98.964844, 69.778952 ], [ -98.789062, 69.778952 ], [ -98.789062, 69.900118 ], [ -98.613281, 69.900118 ], [ -98.613281, 70.020587 ], [ -98.437500, 70.020587 ], [ -98.437500, 70.140364 ], [ -98.085938, 70.140364 ] ] ], [ [ [ -121.640625, 74.449358 ], [ -121.640625, 74.402163 ], [ -121.289062, 74.402163 ], [ -121.289062, 74.354828 ], [ -120.937500, 74.354828 ], [ -120.937500, 74.307353 ], [ -120.585938, 74.307353 ], [ -120.585938, 74.259738 ], [ -119.003906, 74.259738 ], [ -119.003906, 74.211983 ], [ -117.597656, 74.211983 ], [ -117.597656, 74.164085 ], [ -117.421875, 74.164085 ], [ -117.421875, 74.116047 ], [ -117.246094, 74.116047 ], [ -117.246094, 74.067866 ], [ -117.070312, 74.067866 ], [ -117.070312, 73.971078 ], [ -116.894531, 73.971078 ], [ -116.894531, 73.922469 ], [ -116.718750, 73.922469 ], [ -116.718750, 73.873717 ], [ -116.542969, 73.873717 ], [ -116.542969, 73.775780 ], [ -116.367188, 73.775780 ], [ -116.367188, 73.726595 ], [ -116.191406, 73.726595 ], [ -116.191406, 73.627789 ], [ -116.015625, 73.627789 ], [ -116.015625, 73.578167 ], [ -115.839844, 73.578167 ], [ -115.839844, 73.478485 ], [ -115.664062, 73.478485 ], [ -115.664062, 73.428424 ], [ -116.015625, 73.428424 ], [ -116.015625, 73.378215 ], [ -116.191406, 73.378215 ], [ -116.191406, 73.327858 ], [ -116.367188, 73.327858 ], [ -116.367188, 73.277353 ], [ -116.718750, 73.277353 ], [ -116.718750, 73.226700 ], [ -116.894531, 73.226700 ], [ -116.894531, 73.175897 ], [ -117.070312, 73.175897 ], [ -117.070312, 73.124945 ], [ -117.246094, 73.124945 ], [ -117.246094, 73.073844 ], [ -117.421875, 73.073844 ], [ -117.421875, 73.022592 ], [ -117.597656, 73.022592 ], [ -117.597656, 72.971189 ], [ -117.773438, 72.971189 ], [ -117.773438, 72.919635 ], [ -117.949219, 72.919635 ], [ -117.949219, 72.867930 ], [ -118.300781, 72.867930 ], [ -118.300781, 72.816074 ], [ -118.476562, 72.816074 ], [ -118.476562, 72.764065 ], [ -118.652344, 72.764065 ], [ -118.652344, 72.711903 ], [ -118.828125, 72.711903 ], [ -118.828125, 72.659588 ], [ -119.003906, 72.659588 ], [ -119.003906, 72.607120 ], [ -119.179688, 72.607120 ], [ -119.179688, 72.554498 ], [ -119.355469, 72.554498 ], [ -119.355469, 72.501722 ], [ -119.531250, 72.501722 ], [ -119.531250, 72.395706 ], [ -119.707031, 72.395706 ], [ -119.707031, 72.289067 ], [ -119.882812, 72.289067 ], [ -119.882812, 72.181804 ], [ -120.058594, 72.181804 ], [ -120.058594, 72.073911 ], [ -120.234375, 72.073911 ], [ -120.234375, 71.965388 ], [ -120.410156, 71.965388 ], [ -120.410156, 71.856229 ], [ -120.585938, 71.856229 ], [ -120.585938, 71.357067 ], [ -120.937500, 71.357067 ], [ -120.937500, 71.300793 ], [ -121.289062, 71.300793 ], [ -121.289062, 71.244356 ], [ -121.464844, 71.244356 ], [ -121.464844, 71.187754 ], [ -121.816406, 71.187754 ], [ -121.816406, 71.130988 ], [ -122.167969, 71.130988 ], [ -122.167969, 71.074056 ], [ -122.343750, 71.074056 ], [ -122.343750, 71.016960 ], [ -122.695312, 71.016960 ], [ -122.695312, 70.959697 ], [ -123.046875, 70.959697 ], [ -123.046875, 70.902268 ], [ -123.222656, 70.902268 ], [ -123.222656, 70.959697 ], [ -123.398438, 70.959697 ], [ -123.398438, 71.130988 ], [ -123.574219, 71.130988 ], [ -123.574219, 71.244356 ], [ -123.750000, 71.244356 ], [ -123.750000, 71.357067 ], [ -123.925781, 71.357067 ], [ -123.925781, 71.413177 ], [ -124.101562, 71.413177 ], [ -124.101562, 71.469124 ], [ -124.453125, 71.469124 ], [ -124.453125, 71.524909 ], [ -124.628906, 71.524909 ], [ -124.628906, 71.580532 ], [ -124.804688, 71.580532 ], [ -124.804688, 71.635993 ], [ -125.156250, 71.635993 ], [ -125.156250, 71.691293 ], [ -125.332031, 71.691293 ], [ -125.332031, 71.746432 ], [ -125.507812, 71.746432 ], [ -125.507812, 71.801410 ], [ -125.859375, 71.801410 ], [ -125.859375, 71.856229 ], [ -126.035156, 71.856229 ], [ -126.035156, 71.965388 ], [ -125.859375, 71.965388 ], [ -125.859375, 72.127936 ], [ -125.683594, 72.127936 ], [ -125.683594, 72.235514 ], [ -125.507812, 72.235514 ], [ -125.507812, 72.395706 ], [ -125.332031, 72.395706 ], [ -125.332031, 72.554498 ], [ -125.156250, 72.554498 ], [ -125.156250, 72.764065 ], [ -124.980469, 72.764065 ], [ -124.980469, 72.919635 ], [ -124.804688, 72.919635 ], [ -124.804688, 73.073844 ], [ -124.628906, 73.073844 ], [ -124.628906, 73.277353 ], [ -124.453125, 73.277353 ], [ -124.453125, 73.428424 ], [ -124.277344, 73.428424 ], [ -124.277344, 73.627789 ], [ -124.101562, 73.627789 ], [ -124.101562, 73.775780 ], [ -124.277344, 73.775780 ], [ -124.277344, 73.873717 ], [ -124.453125, 73.873717 ], [ -124.453125, 74.019543 ], [ -124.628906, 74.019543 ], [ -124.628906, 74.116047 ], [ -124.804688, 74.116047 ], [ -124.804688, 74.211983 ], [ -124.980469, 74.211983 ], [ -124.980469, 74.307353 ], [ -124.277344, 74.307353 ], [ -124.277344, 74.354828 ], [ -123.222656, 74.354828 ], [ -123.222656, 74.402163 ], [ -122.167969, 74.402163 ], [ -122.167969, 74.449358 ], [ -121.640625, 74.449358 ] ] ], [ [ [ -89.121094, 70.902268 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.670881 ], [ -89.472656, 70.670881 ], [ -89.472656, 70.728979 ], [ -89.648438, 70.728979 ], [ -89.648438, 70.786910 ], [ -89.472656, 70.786910 ], [ -89.472656, 70.844673 ], [ -89.296875, 70.844673 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ] ] ], [ [ [ -109.335938, 76.760541 ], [ -109.335938, 76.720223 ], [ -108.984375, 76.720223 ], [ -108.984375, 76.679785 ], [ -108.632812, 76.679785 ], [ -108.632812, 76.557743 ], [ -108.457031, 76.557743 ], [ -108.457031, 76.310358 ], [ -108.281250, 76.310358 ], [ -108.281250, 76.100796 ], [ -108.105469, 76.100796 ], [ -108.105469, 75.930885 ], [ -107.929688, 75.930885 ], [ -107.929688, 75.845169 ], [ -107.753906, 75.845169 ], [ -107.753906, 75.888091 ], [ -107.578125, 75.888091 ], [ -107.578125, 75.930885 ], [ -107.226562, 75.930885 ], [ -107.226562, 75.973553 ], [ -107.050781, 75.973553 ], [ -107.050781, 76.016094 ], [ -106.699219, 76.016094 ], [ -106.699219, 75.973553 ], [ -105.996094, 75.973553 ], [ -105.996094, 75.715633 ], [ -105.820312, 75.715633 ], [ -105.820312, 75.408854 ], [ -105.996094, 75.408854 ], [ -105.996094, 75.230667 ], [ -106.171875, 75.230667 ], [ -106.171875, 75.050354 ], [ -106.347656, 75.050354 ], [ -106.347656, 75.004940 ], [ -106.875000, 75.004940 ], [ -106.875000, 74.959392 ], [ -107.929688, 74.959392 ], [ -107.929688, 74.913708 ], [ -109.160156, 74.913708 ], [ -109.160156, 74.867889 ], [ -109.863281, 74.867889 ], [ -109.863281, 74.821934 ], [ -110.214844, 74.821934 ], [ -110.214844, 74.775843 ], [ -110.390625, 74.775843 ], [ -110.390625, 74.729615 ], [ -110.742188, 74.729615 ], [ -110.742188, 74.683250 ], [ -110.917969, 74.683250 ], [ -110.917969, 74.636748 ], [ -111.269531, 74.636748 ], [ -111.269531, 74.590108 ], [ -111.621094, 74.590108 ], [ -111.621094, 74.543330 ], [ -111.796875, 74.543330 ], [ -111.796875, 74.496413 ], [ -112.148438, 74.496413 ], [ -112.148438, 74.449358 ], [ -113.027344, 74.449358 ], [ -113.027344, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.729615 ], [ -113.730469, 74.729615 ], [ -113.730469, 74.775843 ], [ -113.554688, 74.775843 ], [ -113.554688, 74.821934 ], [ -113.203125, 74.821934 ], [ -113.203125, 74.867889 ], [ -113.027344, 74.867889 ], [ -113.027344, 74.913708 ], [ -112.851562, 74.913708 ], [ -112.851562, 74.959392 ], [ -112.675781, 74.959392 ], [ -112.675781, 75.004940 ], [ -112.500000, 75.004940 ], [ -112.500000, 75.050354 ], [ -112.148438, 75.050354 ], [ -112.148438, 75.095633 ], [ -111.972656, 75.095633 ], [ -111.972656, 75.140778 ], [ -111.796875, 75.140778 ], [ -111.796875, 75.185789 ], [ -112.500000, 75.185789 ], [ -112.500000, 75.140778 ], [ -113.906250, 75.140778 ], [ -113.906250, 75.095633 ], [ -115.488281, 75.095633 ], [ -115.488281, 75.050354 ], [ -116.718750, 75.050354 ], [ -116.718750, 75.095633 ], [ -117.070312, 75.095633 ], [ -117.070312, 75.140778 ], [ -117.421875, 75.140778 ], [ -117.421875, 75.185789 ], [ -117.773438, 75.185789 ], [ -117.773438, 75.275413 ], [ -117.597656, 75.275413 ], [ -117.597656, 75.408854 ], [ -117.421875, 75.408854 ], [ -117.421875, 75.541113 ], [ -117.246094, 75.541113 ], [ -117.246094, 75.672197 ], [ -117.070312, 75.672197 ], [ -117.070312, 75.758940 ], [ -116.894531, 75.758940 ], [ -116.894531, 75.888091 ], [ -116.718750, 75.888091 ], [ -116.718750, 76.016094 ], [ -116.542969, 76.016094 ], [ -116.542969, 76.142958 ], [ -116.367188, 76.142958 ], [ -116.367188, 76.226907 ], [ -116.191406, 76.226907 ], [ -116.191406, 76.310358 ], [ -116.015625, 76.310358 ], [ -116.015625, 76.351896 ], [ -115.839844, 76.351896 ], [ -115.839844, 76.393312 ], [ -115.664062, 76.393312 ], [ -115.664062, 76.475773 ], [ -115.136719, 76.475773 ], [ -115.136719, 76.434604 ], [ -114.785156, 76.434604 ], [ -114.785156, 76.393312 ], [ -114.433594, 76.393312 ], [ -114.433594, 76.351896 ], [ -114.257812, 76.351896 ], [ -114.257812, 76.310358 ], [ -113.906250, 76.310358 ], [ -113.906250, 76.268695 ], [ -113.554688, 76.268695 ], [ -113.554688, 76.226907 ], [ -113.203125, 76.226907 ], [ -113.203125, 76.184995 ], [ -112.851562, 76.184995 ], [ -112.851562, 76.142958 ], [ -112.675781, 76.142958 ], [ -112.675781, 76.100796 ], [ -112.500000, 76.100796 ], [ -112.500000, 76.058508 ], [ -112.324219, 76.058508 ], [ -112.324219, 75.973553 ], [ -112.148438, 75.973553 ], [ -112.148438, 75.930885 ], [ -111.972656, 75.930885 ], [ -111.972656, 75.888091 ], [ -111.796875, 75.888091 ], [ -111.796875, 75.802118 ], [ -111.621094, 75.802118 ], [ -111.621094, 75.758940 ], [ -111.445312, 75.758940 ], [ -111.445312, 75.715633 ], [ -111.269531, 75.715633 ], [ -111.269531, 75.628632 ], [ -111.093750, 75.628632 ], [ -111.093750, 75.584937 ], [ -110.566406, 75.584937 ], [ -110.566406, 75.541113 ], [ -109.687500, 75.541113 ], [ -109.687500, 75.497157 ], [ -109.160156, 75.497157 ], [ -109.160156, 75.541113 ], [ -109.335938, 75.541113 ], [ -109.335938, 75.672197 ], [ -109.511719, 75.672197 ], [ -109.511719, 75.758940 ], [ -109.687500, 75.758940 ], [ -109.687500, 75.888091 ], [ -109.863281, 75.888091 ], [ -109.863281, 76.016094 ], [ -110.039062, 76.016094 ], [ -110.039062, 76.142958 ], [ -110.214844, 76.142958 ], [ -110.214844, 76.226907 ], [ -110.390625, 76.226907 ], [ -110.390625, 76.351896 ], [ -110.566406, 76.351896 ], [ -110.566406, 76.434604 ], [ -110.390625, 76.434604 ], [ -110.390625, 76.516819 ], [ -110.214844, 76.516819 ], [ -110.214844, 76.598545 ], [ -110.039062, 76.598545 ], [ -110.039062, 76.679785 ], [ -109.863281, 76.679785 ], [ -109.863281, 76.760541 ], [ -109.335938, 76.760541 ] ] ], [ [ [ -89.121094, 71.244356 ], [ -90.000000, 71.244356 ], [ -90.000000, 71.469124 ], [ -90.175781, 71.469124 ], [ -90.175781, 71.965388 ], [ -90.351562, 71.965388 ], [ -90.351562, 72.289067 ], [ -90.175781, 72.289067 ], [ -90.175781, 72.501722 ], [ -90.000000, 72.501722 ], [ -90.000000, 72.711903 ], [ -89.824219, 72.711903 ], [ -89.824219, 72.867930 ], [ -89.648438, 72.867930 ], [ -89.648438, 73.073844 ], [ -89.472656, 73.073844 ], [ -89.472656, 73.175897 ], [ -89.296875, 73.175897 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 71.244356 ] ] ], [ [ [ -96.503906, 77.196176 ], [ -96.503906, 77.157163 ], [ -95.449219, 77.157163 ], [ -95.449219, 77.118032 ], [ -94.746094, 77.118032 ], [ -94.746094, 77.078784 ], [ -94.570312, 77.078784 ], [ -94.570312, 77.039418 ], [ -94.394531, 77.039418 ], [ -94.394531, 76.960334 ], [ -94.218750, 76.960334 ], [ -94.218750, 76.920614 ], [ -94.042969, 76.920614 ], [ -94.042969, 76.880775 ], [ -93.867188, 76.880775 ], [ -93.867188, 76.800739 ], [ -91.757812, 76.800739 ], [ -91.757812, 76.760541 ], [ -91.582031, 76.760541 ], [ -91.582031, 76.679785 ], [ -91.406250, 76.679785 ], [ -91.406250, 76.639226 ], [ -91.230469, 76.639226 ], [ -91.230469, 76.557743 ], [ -91.054688, 76.557743 ], [ -91.054688, 76.475773 ], [ -90.878906, 76.475773 ], [ -90.878906, 76.268695 ], [ -91.054688, 76.268695 ], [ -91.054688, 76.058508 ], [ -90.703125, 76.058508 ], [ -90.703125, 76.016094 ], [ -90.527344, 76.016094 ], [ -90.527344, 75.973553 ], [ -90.351562, 75.973553 ], [ -90.351562, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.888091 ], [ -89.824219, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -89.121094, 75.628632 ], [ -89.121094, 74.496413 ], [ -89.648438, 74.496413 ], [ -89.648438, 74.543330 ], [ -90.175781, 74.543330 ], [ -90.175781, 74.590108 ], [ -90.527344, 74.590108 ], [ -90.527344, 74.636748 ], [ -90.878906, 74.636748 ], [ -90.878906, 74.683250 ], [ -91.230469, 74.683250 ], [ -91.230469, 74.729615 ], [ -91.582031, 74.729615 ], [ -91.582031, 74.775843 ], [ -91.933594, 74.775843 ], [ -91.933594, 74.821934 ], [ -92.285156, 74.821934 ], [ -92.285156, 74.867889 ], [ -92.460938, 74.867889 ], [ -92.460938, 75.004940 ], [ -92.636719, 75.004940 ], [ -92.636719, 75.275413 ], [ -92.812500, 75.275413 ], [ -92.812500, 75.628632 ], [ -92.988281, 75.628632 ], [ -92.988281, 75.888091 ], [ -93.164062, 75.888091 ], [ -93.164062, 75.973553 ], [ -93.339844, 75.973553 ], [ -93.339844, 76.058508 ], [ -93.515625, 76.058508 ], [ -93.515625, 76.142958 ], [ -93.691406, 76.142958 ], [ -93.691406, 76.226907 ], [ -93.867188, 76.226907 ], [ -93.867188, 76.310358 ], [ -94.042969, 76.310358 ], [ -94.042969, 76.351896 ], [ -94.394531, 76.351896 ], [ -94.394531, 76.393312 ], [ -95.097656, 76.393312 ], [ -95.097656, 76.434604 ], [ -95.800781, 76.434604 ], [ -95.800781, 76.475773 ], [ -96.152344, 76.475773 ], [ -96.152344, 76.516819 ], [ -96.328125, 76.516819 ], [ -96.328125, 76.557743 ], [ -96.503906, 76.557743 ], [ -96.503906, 76.598545 ], [ -96.679688, 76.598545 ], [ -96.679688, 76.639226 ], [ -96.855469, 76.639226 ], [ -96.855469, 76.679785 ], [ -97.031250, 76.679785 ], [ -97.031250, 76.720223 ], [ -97.207031, 76.720223 ], [ -97.207031, 76.840816 ], [ -97.031250, 76.840816 ], [ -97.031250, 77.078784 ], [ -96.855469, 77.078784 ], [ -96.855469, 77.196176 ], [ -96.503906, 77.196176 ] ] ], [ [ [ -100.019531, 73.824820 ], [ -100.019531, 73.775780 ], [ -99.843750, 73.775780 ], [ -99.843750, 73.726595 ], [ -99.492188, 73.726595 ], [ -99.492188, 73.677264 ], [ -98.789062, 73.677264 ], [ -98.789062, 73.726595 ], [ -97.734375, 73.726595 ], [ -97.734375, 73.775780 ], [ -97.382812, 73.775780 ], [ -97.382812, 73.627789 ], [ -97.207031, 73.627789 ], [ -97.207031, 73.428424 ], [ -97.382812, 73.428424 ], [ -97.382812, 73.327858 ], [ -97.558594, 73.327858 ], [ -97.558594, 73.226700 ], [ -97.734375, 73.226700 ], [ -97.734375, 73.124945 ], [ -97.910156, 73.124945 ], [ -97.910156, 73.022592 ], [ -98.085938, 73.022592 ], [ -98.085938, 72.971189 ], [ -97.910156, 72.971189 ], [ -97.910156, 72.919635 ], [ -97.734375, 72.919635 ], [ -97.734375, 72.867930 ], [ -97.558594, 72.867930 ], [ -97.558594, 72.816074 ], [ -97.382812, 72.816074 ], [ -97.382812, 72.764065 ], [ -97.207031, 72.764065 ], [ -97.207031, 72.711903 ], [ -97.031250, 72.711903 ], [ -97.031250, 72.659588 ], [ -96.855469, 72.659588 ], [ -96.855469, 72.607120 ], [ -96.679688, 72.607120 ], [ -96.679688, 72.127936 ], [ -96.855469, 72.127936 ], [ -96.855469, 71.635993 ], [ -97.031250, 71.635993 ], [ -97.031250, 71.580532 ], [ -97.382812, 71.580532 ], [ -97.382812, 71.524909 ], [ -97.558594, 71.524909 ], [ -97.558594, 71.469124 ], [ -97.734375, 71.469124 ], [ -97.734375, 71.413177 ], [ -98.085938, 71.413177 ], [ -98.085938, 71.357067 ], [ -98.261719, 71.357067 ], [ -98.261719, 71.300793 ], [ -99.140625, 71.300793 ], [ -99.140625, 71.357067 ], [ -99.492188, 71.357067 ], [ -99.492188, 71.413177 ], [ -99.667969, 71.413177 ], [ -99.667969, 71.524909 ], [ -99.843750, 71.524909 ], [ -99.843750, 71.635993 ], [ -100.019531, 71.635993 ], [ -100.019531, 71.746432 ], [ -100.195312, 71.746432 ], [ -100.195312, 71.801410 ], [ -100.371094, 71.801410 ], [ -100.371094, 71.856229 ], [ -100.546875, 71.856229 ], [ -100.546875, 71.910888 ], [ -100.722656, 71.910888 ], [ -100.722656, 71.965388 ], [ -100.898438, 71.965388 ], [ -100.898438, 72.019729 ], [ -101.074219, 72.019729 ], [ -101.074219, 72.073911 ], [ -101.250000, 72.073911 ], [ -101.250000, 72.127936 ], [ -101.425781, 72.127936 ], [ -101.425781, 72.181804 ], [ -101.601562, 72.181804 ], [ -101.601562, 72.235514 ], [ -101.777344, 72.235514 ], [ -101.777344, 72.289067 ], [ -101.953125, 72.289067 ], [ -101.953125, 72.342464 ], [ -102.128906, 72.342464 ], [ -102.128906, 72.395706 ], [ -102.304688, 72.395706 ], [ -102.304688, 72.448792 ], [ -102.480469, 72.448792 ], [ -102.480469, 72.501722 ], [ -102.656250, 72.501722 ], [ -102.656250, 72.711903 ], [ -102.480469, 72.711903 ], [ -102.480469, 72.867930 ], [ -102.304688, 72.867930 ], [ -102.304688, 72.816074 ], [ -101.601562, 72.816074 ], [ -101.601562, 72.764065 ], [ -100.898438, 72.764065 ], [ -100.898438, 72.711903 ], [ -100.546875, 72.711903 ], [ -100.546875, 72.764065 ], [ -100.722656, 72.764065 ], [ -100.722656, 72.867930 ], [ -100.898438, 72.867930 ], [ -100.898438, 72.971189 ], [ -101.074219, 72.971189 ], [ -101.074219, 73.073844 ], [ -101.250000, 73.073844 ], [ -101.250000, 73.175897 ], [ -101.425781, 73.175897 ], [ -101.425781, 73.277353 ], [ -101.601562, 73.277353 ], [ -101.601562, 73.378215 ], [ -101.425781, 73.378215 ], [ -101.425781, 73.478485 ], [ -101.250000, 73.478485 ], [ -101.250000, 73.528399 ], [ -101.074219, 73.528399 ], [ -101.074219, 73.627789 ], [ -100.898438, 73.627789 ], [ -100.898438, 73.677264 ], [ -100.722656, 73.677264 ], [ -100.722656, 73.726595 ], [ -100.546875, 73.726595 ], [ -100.546875, 73.824820 ], [ -100.019531, 73.824820 ] ] ], [ [ [ -93.691406, 74.164085 ], [ -93.691406, 74.116047 ], [ -92.285156, 74.116047 ], [ -92.285156, 74.067866 ], [ -91.933594, 74.067866 ], [ -91.933594, 74.019543 ], [ -91.582031, 74.019543 ], [ -91.582031, 73.971078 ], [ -91.230469, 73.971078 ], [ -91.230469, 73.922469 ], [ -90.878906, 73.922469 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ], [ -90.527344, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.726595 ], [ -90.878906, 73.726595 ], [ -90.878906, 73.627789 ], [ -91.054688, 73.627789 ], [ -91.054688, 73.528399 ], [ -91.230469, 73.528399 ], [ -91.230469, 73.428424 ], [ -91.406250, 73.428424 ], [ -91.406250, 73.327858 ], [ -91.582031, 73.327858 ], [ -91.582031, 73.226700 ], [ -91.757812, 73.226700 ], [ -91.757812, 73.124945 ], [ -91.933594, 73.124945 ], [ -91.933594, 73.022592 ], [ -92.109375, 73.022592 ], [ -92.109375, 72.971189 ], [ -92.285156, 72.971189 ], [ -92.285156, 72.919635 ], [ -92.636719, 72.919635 ], [ -92.636719, 72.867930 ], [ -92.988281, 72.867930 ], [ -92.988281, 72.816074 ], [ -93.339844, 72.816074 ], [ -93.339844, 72.711903 ], [ -93.515625, 72.711903 ], [ -93.515625, 72.607120 ], [ -93.691406, 72.607120 ], [ -93.691406, 72.501722 ], [ -93.867188, 72.501722 ], [ -93.867188, 72.342464 ], [ -94.042969, 72.342464 ], [ -94.042969, 72.235514 ], [ -94.218750, 72.235514 ], [ -94.218750, 72.127936 ], [ -94.394531, 72.127936 ], [ -94.394531, 72.073911 ], [ -95.449219, 72.073911 ], [ -95.449219, 72.181804 ], [ -95.625000, 72.181804 ], [ -95.625000, 72.395706 ], [ -95.800781, 72.395706 ], [ -95.800781, 72.607120 ], [ -95.976562, 72.607120 ], [ -95.976562, 72.816074 ], [ -96.152344, 72.816074 ], [ -96.152344, 73.528399 ], [ -95.976562, 73.528399 ], [ -95.976562, 73.677264 ], [ -95.800781, 73.677264 ], [ -95.800781, 73.775780 ], [ -95.625000, 73.775780 ], [ -95.625000, 73.873717 ], [ -95.449219, 73.873717 ], [ -95.449219, 73.922469 ], [ -95.273438, 73.922469 ], [ -95.273438, 73.971078 ], [ -95.097656, 73.971078 ], [ -95.097656, 74.019543 ], [ -94.921875, 74.019543 ], [ -94.921875, 74.067866 ], [ -94.746094, 74.067866 ], [ -94.746094, 74.116047 ], [ -94.570312, 74.116047 ], [ -94.570312, 74.164085 ], [ -93.691406, 74.164085 ] ] ], [ [ [ -116.367188, 77.617709 ], [ -116.367188, 76.840816 ], [ -116.542969, 76.840816 ], [ -116.542969, 76.760541 ], [ -116.718750, 76.760541 ], [ -116.718750, 76.720223 ], [ -116.894531, 76.720223 ], [ -116.894531, 76.639226 ], [ -117.070312, 76.639226 ], [ -117.070312, 76.557743 ], [ -117.597656, 76.557743 ], [ -117.597656, 76.516819 ], [ -118.125000, 76.516819 ], [ -118.125000, 76.475773 ], [ -118.300781, 76.475773 ], [ -118.300781, 76.434604 ], [ -118.476562, 76.434604 ], [ -118.476562, 76.393312 ], [ -118.652344, 76.393312 ], [ -118.652344, 76.351896 ], [ -118.828125, 76.351896 ], [ -118.828125, 76.310358 ], [ -119.003906, 76.310358 ], [ -119.003906, 76.268695 ], [ -119.179688, 76.268695 ], [ -119.179688, 76.226907 ], [ -119.355469, 76.226907 ], [ -119.355469, 76.184995 ], [ -119.531250, 76.184995 ], [ -119.531250, 76.142958 ], [ -119.707031, 76.142958 ], [ -119.707031, 76.100796 ], [ -119.882812, 76.100796 ], [ -119.882812, 76.058508 ], [ -120.234375, 76.058508 ], [ -120.234375, 76.016094 ], [ -120.761719, 76.016094 ], [ -120.761719, 75.973553 ], [ -121.289062, 75.973553 ], [ -121.289062, 75.930885 ], [ -121.816406, 75.930885 ], [ -121.816406, 75.973553 ], [ -122.167969, 75.973553 ], [ -122.167969, 76.016094 ], [ -122.343750, 76.016094 ], [ -122.343750, 76.058508 ], [ -122.519531, 76.058508 ], [ -122.519531, 76.100796 ], [ -122.871094, 76.100796 ], [ -122.871094, 76.184995 ], [ -122.695312, 76.184995 ], [ -122.695312, 76.268695 ], [ -122.519531, 76.268695 ], [ -122.519531, 76.351896 ], [ -122.343750, 76.351896 ], [ -122.343750, 76.434604 ], [ -122.167969, 76.434604 ], [ -122.167969, 76.516819 ], [ -121.992188, 76.516819 ], [ -121.992188, 76.598545 ], [ -121.816406, 76.598545 ], [ -121.816406, 76.679785 ], [ -121.640625, 76.679785 ], [ -121.640625, 76.760541 ], [ -121.464844, 76.760541 ], [ -121.464844, 76.840816 ], [ -121.289062, 76.840816 ], [ -121.289062, 76.880775 ], [ -121.113281, 76.880775 ], [ -121.113281, 76.960334 ], [ -120.937500, 76.960334 ], [ -120.937500, 76.999935 ], [ -120.761719, 76.999935 ], [ -120.761719, 77.039418 ], [ -120.585938, 77.039418 ], [ -120.585938, 77.118032 ], [ -120.410156, 77.118032 ], [ -120.410156, 77.157163 ], [ -120.234375, 77.157163 ], [ -120.234375, 77.235074 ], [ -120.058594, 77.235074 ], [ -120.058594, 77.273855 ], [ -119.882812, 77.273855 ], [ -119.882812, 77.351070 ], [ -119.707031, 77.351070 ], [ -119.707031, 77.389504 ], [ -119.531250, 77.389504 ], [ -119.531250, 77.427824 ], [ -119.355469, 77.427824 ], [ -119.355469, 77.504119 ], [ -119.179688, 77.504119 ], [ -119.179688, 77.542096 ], [ -118.476562, 77.542096 ], [ -118.476562, 77.504119 ], [ -117.421875, 77.504119 ], [ -117.421875, 77.542096 ], [ -117.070312, 77.542096 ], [ -117.070312, 77.579959 ], [ -116.718750, 77.579959 ], [ -116.718750, 77.617709 ], [ -116.367188, 77.617709 ] ] ], [ [ [ -99.843750, 76.679785 ], [ -99.843750, 76.639226 ], [ -99.140625, 76.639226 ], [ -99.140625, 76.598545 ], [ -98.613281, 76.598545 ], [ -98.613281, 76.639226 ], [ -98.437500, 76.639226 ], [ -98.437500, 76.557743 ], [ -98.261719, 76.557743 ], [ -98.261719, 76.475773 ], [ -98.085938, 76.475773 ], [ -98.085938, 76.393312 ], [ -97.910156, 76.393312 ], [ -97.910156, 76.310358 ], [ -97.734375, 76.310358 ], [ -97.734375, 75.628632 ], [ -97.910156, 75.628632 ], [ -97.910156, 75.364506 ], [ -98.085938, 75.364506 ], [ -98.085938, 75.095633 ], [ -98.261719, 75.095633 ], [ -98.261719, 75.004940 ], [ -98.613281, 75.004940 ], [ -98.613281, 74.959392 ], [ -99.316406, 74.959392 ], [ -99.316406, 74.913708 ], [ -100.019531, 74.913708 ], [ -100.019531, 74.959392 ], [ -100.371094, 74.959392 ], [ -100.371094, 75.004940 ], [ -100.546875, 75.004940 ], [ -100.546875, 75.050354 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.672197 ], [ -101.250000, 75.672197 ], [ -101.250000, 75.628632 ], [ -102.128906, 75.628632 ], [ -102.128906, 75.584937 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -102.304688, 76.351896 ], [ -102.304688, 76.310358 ], [ -101.425781, 76.310358 ], [ -101.425781, 76.351896 ], [ -101.250000, 76.351896 ], [ -101.250000, 76.393312 ], [ -101.074219, 76.393312 ], [ -101.074219, 76.434604 ], [ -100.898438, 76.434604 ], [ -100.898438, 76.475773 ], [ -100.722656, 76.475773 ], [ -100.722656, 76.516819 ], [ -100.546875, 76.516819 ], [ -100.546875, 76.557743 ], [ -100.371094, 76.557743 ], [ -100.371094, 76.598545 ], [ -100.195312, 76.598545 ], [ -100.195312, 76.639226 ], [ -100.019531, 76.639226 ], [ -100.019531, 76.679785 ], [ -99.843750, 76.679785 ] ] ], [ [ [ -89.121094, 79.335219 ], [ -89.121094, 78.313860 ], [ -89.472656, 78.313860 ], [ -89.472656, 78.278201 ], [ -90.351562, 78.278201 ], [ -90.351562, 78.242436 ], [ -91.406250, 78.242436 ], [ -91.406250, 78.278201 ], [ -92.109375, 78.278201 ], [ -92.109375, 78.313860 ], [ -92.812500, 78.313860 ], [ -92.812500, 78.349411 ], [ -92.988281, 78.349411 ], [ -92.988281, 78.384855 ], [ -93.164062, 78.384855 ], [ -93.164062, 78.455425 ], [ -93.339844, 78.455425 ], [ -93.339844, 78.525573 ], [ -93.515625, 78.525573 ], [ -93.515625, 78.595299 ], [ -93.691406, 78.595299 ], [ -93.691406, 78.664608 ], [ -93.867188, 78.664608 ], [ -93.867188, 78.733501 ], [ -94.042969, 78.733501 ], [ -94.042969, 79.138260 ], [ -93.867188, 79.138260 ], [ -93.867188, 79.204309 ], [ -93.691406, 79.204309 ], [ -93.691406, 79.237185 ], [ -93.515625, 79.237185 ], [ -93.515625, 79.302640 ], [ -93.339844, 79.302640 ], [ -93.339844, 79.335219 ], [ -89.121094, 79.335219 ] ] ], [ [ [ -94.746094, 75.628632 ], [ -94.746094, 75.541113 ], [ -94.570312, 75.541113 ], [ -94.570312, 75.497157 ], [ -94.394531, 75.497157 ], [ -94.394531, 75.408854 ], [ -94.218750, 75.408854 ], [ -94.218750, 75.320025 ], [ -94.042969, 75.320025 ], [ -94.042969, 75.230667 ], [ -93.867188, 75.230667 ], [ -93.867188, 75.050354 ], [ -93.691406, 75.050354 ], [ -93.691406, 74.913708 ], [ -93.867188, 74.913708 ], [ -93.867188, 74.821934 ], [ -94.042969, 74.821934 ], [ -94.042969, 74.683250 ], [ -94.218750, 74.683250 ], [ -94.218750, 74.636748 ], [ -95.097656, 74.636748 ], [ -95.097656, 74.683250 ], [ -95.800781, 74.683250 ], [ -95.800781, 74.729615 ], [ -95.976562, 74.729615 ], [ -95.976562, 74.775843 ], [ -96.152344, 74.775843 ], [ -96.152344, 74.821934 ], [ -96.503906, 74.821934 ], [ -96.503906, 74.867889 ], [ -96.679688, 74.867889 ], [ -96.679688, 74.913708 ], [ -96.855469, 74.913708 ], [ -96.855469, 75.004940 ], [ -96.679688, 75.004940 ], [ -96.679688, 75.185789 ], [ -96.503906, 75.185789 ], [ -96.503906, 75.320025 ], [ -96.328125, 75.320025 ], [ -96.328125, 75.408854 ], [ -96.152344, 75.408854 ], [ -96.152344, 75.453071 ], [ -95.800781, 75.453071 ], [ -95.800781, 75.497157 ], [ -95.625000, 75.497157 ], [ -95.625000, 75.541113 ], [ -95.449219, 75.541113 ], [ -95.449219, 75.584937 ], [ -95.097656, 75.584937 ], [ -95.097656, 75.628632 ], [ -94.746094, 75.628632 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -105.468750, 79.269962 ], [ -104.941406, 79.269962 ], [ -104.941406, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -102.304688, 79.004962 ], [ -102.304688, 78.971386 ], [ -102.128906, 78.971386 ], [ -102.128906, 78.937708 ], [ -101.777344, 78.937708 ], [ -101.777344, 78.903929 ], [ -101.601562, 78.903929 ], [ -101.601562, 78.870048 ], [ -101.425781, 78.870048 ], [ -101.425781, 78.836065 ], [ -101.074219, 78.836065 ], [ -101.074219, 78.801980 ], [ -100.898438, 78.801980 ], [ -100.898438, 78.733501 ], [ -100.722656, 78.733501 ], [ -100.722656, 78.630006 ], [ -100.546875, 78.630006 ], [ -100.546875, 78.490552 ], [ -100.371094, 78.490552 ], [ -100.371094, 78.384855 ], [ -100.195312, 78.384855 ], [ -100.195312, 78.242436 ], [ -100.019531, 78.242436 ], [ -100.019531, 78.025574 ], [ -99.843750, 78.025574 ], [ -99.843750, 77.915669 ], [ -100.195312, 77.915669 ], [ -100.195312, 77.952414 ], [ -100.722656, 77.952414 ], [ -100.722656, 77.989049 ], [ -101.250000, 77.989049 ], [ -101.250000, 78.025574 ], [ -101.601562, 78.025574 ], [ -101.601562, 78.061989 ], [ -101.777344, 78.061989 ], [ -101.777344, 78.098296 ], [ -101.953125, 78.098296 ], [ -101.953125, 78.134493 ], [ -102.128906, 78.134493 ], [ -102.128906, 78.170582 ], [ -102.304688, 78.170582 ], [ -102.304688, 78.206563 ], [ -102.480469, 78.206563 ], [ -102.480469, 78.242436 ], [ -102.656250, 78.242436 ], [ -102.656250, 78.278201 ], [ -102.832031, 78.278201 ], [ -102.832031, 78.313860 ], [ -103.007812, 78.313860 ], [ -103.007812, 78.349411 ], [ -104.238281, 78.349411 ], [ -104.238281, 78.384855 ], [ -105.117188, 78.384855 ], [ -105.117188, 78.455425 ], [ -104.941406, 78.455425 ], [ -104.941406, 78.490552 ], [ -104.765625, 78.490552 ], [ -104.765625, 78.560488 ], [ -104.589844, 78.560488 ], [ -104.589844, 78.595299 ], [ -104.414062, 78.595299 ], [ -104.414062, 78.664608 ], [ -104.238281, 78.664608 ], [ -104.238281, 78.699106 ], [ -104.414062, 78.699106 ], [ -104.414062, 78.733501 ], [ -104.589844, 78.733501 ], [ -104.589844, 78.767792 ], [ -104.765625, 78.767792 ], [ -104.765625, 78.801980 ], [ -104.941406, 78.801980 ], [ -104.941406, 78.836065 ], [ -105.117188, 78.836065 ], [ -105.117188, 78.870048 ], [ -105.292969, 78.870048 ], [ -105.292969, 78.903929 ], [ -105.468750, 78.903929 ], [ -105.468750, 79.105086 ], [ -105.644531, 79.105086 ], [ -105.644531, 79.302640 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -98.613281, 78.903929 ], [ -98.613281, 78.870048 ], [ -97.910156, 78.870048 ], [ -97.910156, 78.836065 ], [ -97.382812, 78.836065 ], [ -97.382812, 78.801980 ], [ -97.031250, 78.801980 ], [ -97.031250, 78.767792 ], [ -96.855469, 78.767792 ], [ -96.855469, 78.733501 ], [ -96.679688, 78.733501 ], [ -96.679688, 78.664608 ], [ -96.503906, 78.664608 ], [ -96.503906, 78.630006 ], [ -96.328125, 78.630006 ], [ -96.328125, 78.595299 ], [ -96.152344, 78.595299 ], [ -96.152344, 78.525573 ], [ -95.976562, 78.525573 ], [ -95.976562, 78.490552 ], [ -95.800781, 78.490552 ], [ -95.800781, 78.420193 ], [ -95.625000, 78.420193 ], [ -95.625000, 78.313860 ], [ -95.800781, 78.313860 ], [ -95.800781, 78.134493 ], [ -95.976562, 78.134493 ], [ -95.976562, 78.025574 ], [ -96.328125, 78.025574 ], [ -96.328125, 77.989049 ], [ -96.503906, 77.989049 ], [ -96.503906, 77.952414 ], [ -96.855469, 77.952414 ], [ -96.855469, 77.915669 ], [ -97.207031, 77.915669 ], [ -97.207031, 77.878814 ], [ -97.558594, 77.878814 ], [ -97.558594, 77.915669 ], [ -97.734375, 77.915669 ], [ -97.734375, 77.989049 ], [ -97.910156, 77.989049 ], [ -97.910156, 78.025574 ], [ -98.085938, 78.025574 ], [ -98.085938, 78.061989 ], [ -98.261719, 78.061989 ], [ -98.261719, 78.170582 ], [ -98.437500, 78.170582 ], [ -98.437500, 78.384855 ], [ -98.613281, 78.384855 ], [ -98.613281, 78.699106 ], [ -98.789062, 78.699106 ], [ -98.789062, 78.903929 ], [ -98.613281, 78.903929 ] ] ], [ [ [ -111.269531, 78.170582 ], [ -111.269531, 78.134493 ], [ -110.917969, 78.134493 ], [ -110.917969, 78.098296 ], [ -110.566406, 78.098296 ], [ -110.566406, 78.061989 ], [ -110.214844, 78.061989 ], [ -110.214844, 78.025574 ], [ -109.863281, 78.025574 ], [ -109.863281, 77.952414 ], [ -110.039062, 77.952414 ], [ -110.039062, 77.804771 ], [ -110.214844, 77.804771 ], [ -110.214844, 77.692870 ], [ -110.566406, 77.692870 ], [ -110.566406, 77.655346 ], [ -110.742188, 77.655346 ], [ -110.742188, 77.617709 ], [ -110.917969, 77.617709 ], [ -110.917969, 77.579959 ], [ -111.269531, 77.579959 ], [ -111.269531, 77.542096 ], [ -111.445312, 77.542096 ], [ -111.445312, 77.504119 ], [ -111.621094, 77.504119 ], [ -111.621094, 77.466028 ], [ -111.972656, 77.466028 ], [ -111.972656, 77.427824 ], [ -112.324219, 77.427824 ], [ -112.324219, 77.466028 ], [ -112.500000, 77.466028 ], [ -112.500000, 77.504119 ], [ -112.675781, 77.504119 ], [ -112.675781, 77.542096 ], [ -112.851562, 77.542096 ], [ -112.851562, 77.617709 ], [ -113.027344, 77.617709 ], [ -113.027344, 77.655346 ], [ -113.203125, 77.655346 ], [ -113.203125, 77.692870 ], [ -113.378906, 77.692870 ], [ -113.378906, 77.730282 ], [ -113.554688, 77.730282 ], [ -113.554688, 77.804771 ], [ -113.378906, 77.804771 ], [ -113.378906, 77.878814 ], [ -113.203125, 77.878814 ], [ -113.203125, 77.952414 ], [ -113.027344, 77.952414 ], [ -113.027344, 78.025574 ], [ -112.851562, 78.025574 ], [ -112.851562, 78.061989 ], [ -112.500000, 78.061989 ], [ -112.500000, 78.098296 ], [ -111.972656, 78.098296 ], [ -111.972656, 78.134493 ], [ -111.445312, 78.134493 ], [ -111.445312, 78.170582 ], [ -111.269531, 78.170582 ] ] ], [ [ [ -111.445312, 78.870048 ], [ -111.445312, 78.836065 ], [ -111.093750, 78.836065 ], [ -111.093750, 78.801980 ], [ -110.917969, 78.801980 ], [ -110.917969, 78.767792 ], [ -110.566406, 78.767792 ], [ -110.566406, 78.733501 ], [ -110.390625, 78.733501 ], [ -110.390625, 78.699106 ], [ -110.214844, 78.699106 ], [ -110.214844, 78.664608 ], [ -109.863281, 78.664608 ], [ -109.863281, 78.630006 ], [ -109.687500, 78.630006 ], [ -109.687500, 78.595299 ], [ -109.863281, 78.595299 ], [ -109.863281, 78.560488 ], [ -110.039062, 78.560488 ], [ -110.039062, 78.525573 ], [ -110.390625, 78.525573 ], [ -110.390625, 78.490552 ], [ -110.566406, 78.490552 ], [ -110.566406, 78.455425 ], [ -110.742188, 78.455425 ], [ -110.742188, 78.420193 ], [ -112.675781, 78.420193 ], [ -112.675781, 78.560488 ], [ -112.500000, 78.560488 ], [ -112.500000, 78.630006 ], [ -112.324219, 78.630006 ], [ -112.324219, 78.664608 ], [ -112.148438, 78.664608 ], [ -112.148438, 78.733501 ], [ -111.972656, 78.733501 ], [ -111.972656, 78.767792 ], [ -111.796875, 78.767792 ], [ -111.796875, 78.836065 ], [ -111.621094, 78.836065 ], [ -111.621094, 78.870048 ], [ -111.445312, 78.870048 ] ] ], [ [ [ -89.121094, 76.999935 ], [ -89.121094, 76.475773 ], [ -89.648438, 76.475773 ], [ -89.648438, 76.960334 ], [ -89.472656, 76.960334 ], [ -89.472656, 76.999935 ], [ -89.121094, 76.999935 ] ] ], [ [ [ -94.570312, 77.841848 ], [ -94.570312, 77.804771 ], [ -94.394531, 77.804771 ], [ -94.394531, 77.767582 ], [ -94.218750, 77.767582 ], [ -94.218750, 77.692870 ], [ -94.042969, 77.692870 ], [ -94.042969, 77.655346 ], [ -93.867188, 77.655346 ], [ -93.867188, 77.542096 ], [ -94.042969, 77.542096 ], [ -94.042969, 77.504119 ], [ -94.921875, 77.504119 ], [ -94.921875, 77.542096 ], [ -95.976562, 77.542096 ], [ -95.976562, 77.579959 ], [ -96.328125, 77.579959 ], [ -96.328125, 77.692870 ], [ -96.503906, 77.692870 ], [ -96.503906, 77.841848 ], [ -94.570312, 77.841848 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.292969, 79.302640 ], [ -105.292969, 79.269962 ], [ -104.765625, 79.269962 ], [ -104.765625, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.183594, 79.138260 ], [ -103.183594, 79.105086 ], [ -103.007812, 79.105086 ], [ -103.007812, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.480469, 79.038437 ], [ -102.480469, 79.004962 ], [ -105.468750, 79.004962 ], [ -105.468750, 79.302640 ], [ -105.292969, 79.302640 ] ] ], [ [ [ -92.460938, 81.255032 ], [ -92.460938, 81.201420 ], [ -92.285156, 81.201420 ], [ -92.285156, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.093214 ], [ -91.933594, 81.093214 ], [ -91.933594, 81.011194 ], [ -91.757812, 81.011194 ], [ -91.757812, 80.956099 ], [ -91.582031, 80.956099 ], [ -91.582031, 80.872827 ], [ -91.406250, 80.872827 ], [ -91.406250, 80.816891 ], [ -91.230469, 80.816891 ], [ -91.230469, 80.760615 ], [ -91.054688, 80.760615 ], [ -91.054688, 80.703997 ], [ -90.878906, 80.703997 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.175781, 80.618424 ], [ -90.175781, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.824219, 80.560943 ], [ -89.824219, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.503112 ], [ -89.472656, 80.503112 ], [ -89.472656, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 79.004962 ], [ -93.867188, 79.004962 ], [ -93.867188, 79.138260 ], [ -93.691406, 79.138260 ], [ -93.691406, 79.204309 ], [ -93.515625, 79.204309 ], [ -93.515625, 79.269962 ], [ -93.339844, 79.269962 ], [ -93.339844, 79.335219 ], [ -93.164062, 79.335219 ], [ -93.164062, 79.367701 ], [ -95.097656, 79.367701 ], [ -95.097656, 79.432371 ], [ -95.273438, 79.432371 ], [ -95.273438, 79.464560 ], [ -95.449219, 79.464560 ], [ -95.449219, 79.528647 ], [ -95.625000, 79.528647 ], [ -95.625000, 79.592349 ], [ -95.800781, 79.592349 ], [ -95.800781, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.687184 ], [ -96.152344, 79.687184 ], [ -96.152344, 79.781164 ], [ -96.328125, 79.781164 ], [ -96.328125, 79.935918 ], [ -96.503906, 79.935918 ], [ -96.503906, 80.058050 ], [ -96.679688, 80.058050 ], [ -96.679688, 80.178713 ], [ -96.503906, 80.178713 ], [ -96.503906, 80.297927 ], [ -96.328125, 80.297927 ], [ -96.328125, 80.415707 ], [ -96.152344, 80.415707 ], [ -96.152344, 80.532071 ], [ -95.976562, 80.532071 ], [ -95.976562, 80.618424 ], [ -95.800781, 80.618424 ], [ -95.800781, 80.703997 ], [ -95.625000, 80.703997 ], [ -95.625000, 80.760615 ], [ -95.449219, 80.760615 ], [ -95.449219, 80.844901 ], [ -95.273438, 80.844901 ], [ -95.273438, 80.900669 ], [ -94.921875, 80.900669 ], [ -94.921875, 80.928426 ], [ -94.570312, 80.928426 ], [ -94.570312, 80.956099 ], [ -94.218750, 80.956099 ], [ -94.218750, 81.011194 ], [ -94.394531, 81.011194 ], [ -94.394531, 81.093214 ], [ -94.570312, 81.093214 ], [ -94.570312, 81.147481 ], [ -94.746094, 81.147481 ], [ -94.746094, 81.201420 ], [ -94.042969, 81.201420 ], [ -94.042969, 81.228267 ], [ -92.988281, 81.228267 ], [ -92.988281, 81.255032 ], [ -92.460938, 81.255032 ] ] ], [ [ [ -89.121094, 82.118384 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.872827 ], [ -89.472656, 80.872827 ], [ -89.472656, 80.956099 ], [ -89.648438, 80.956099 ], [ -89.648438, 81.038617 ], [ -89.824219, 81.038617 ], [ -89.824219, 81.120388 ], [ -90.000000, 81.120388 ], [ -90.000000, 81.201420 ], [ -90.175781, 81.201420 ], [ -90.175781, 81.255032 ], [ -90.351562, 81.255032 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.334844 ], [ -90.703125, 81.334844 ], [ -90.703125, 81.387650 ], [ -90.878906, 81.387650 ], [ -90.878906, 81.440137 ], [ -91.054688, 81.440137 ], [ -91.054688, 81.466261 ], [ -91.230469, 81.466261 ], [ -91.230469, 81.518272 ], [ -91.406250, 81.518272 ], [ -91.406250, 81.723188 ], [ -91.582031, 81.723188 ], [ -91.582031, 81.898451 ], [ -91.406250, 81.898451 ], [ -91.406250, 81.923186 ], [ -91.230469, 81.923186 ], [ -91.230469, 81.947846 ], [ -91.054688, 81.947846 ], [ -91.054688, 81.972431 ], [ -90.878906, 81.972431 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -89.121094, 82.118384 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.468750, 79.302640 ], [ -105.468750, 79.269962 ], [ -104.941406, 79.269962 ], [ -104.941406, 79.237185 ], [ -104.414062, 79.237185 ], [ -104.414062, 79.204309 ], [ -103.886719, 79.204309 ], [ -103.886719, 79.171335 ], [ -103.535156, 79.171335 ], [ -103.535156, 79.138260 ], [ -103.359375, 79.138260 ], [ -103.359375, 79.105086 ], [ -103.183594, 79.105086 ], [ -103.183594, 79.071812 ], [ -102.832031, 79.071812 ], [ -102.832031, 79.038437 ], [ -102.656250, 79.038437 ], [ -102.656250, 79.004962 ], [ -105.468750, 79.004962 ], [ -105.468750, 79.138260 ], [ -105.644531, 79.138260 ], [ -105.644531, 79.302640 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -92.460938, 81.281717 ], [ -92.460938, 81.228267 ], [ -92.285156, 81.228267 ], [ -92.285156, 81.147481 ], [ -92.109375, 81.147481 ], [ -92.109375, 81.065957 ], [ -91.933594, 81.065957 ], [ -91.933594, 81.011194 ], [ -91.757812, 81.011194 ], [ -91.757812, 80.928426 ], [ -91.582031, 80.928426 ], [ -91.582031, 80.844901 ], [ -91.406250, 80.844901 ], [ -91.406250, 80.760615 ], [ -91.230469, 80.760615 ], [ -91.230469, 80.703997 ], [ -90.878906, 80.703997 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.175781, 80.618424 ], [ -90.175781, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.648438, 80.560943 ], [ -89.648438, 80.532071 ], [ -89.472656, 80.532071 ], [ -89.472656, 80.503112 ], [ -89.296875, 80.503112 ], [ -89.296875, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 79.004962 ], [ -94.042969, 79.004962 ], [ -94.042969, 79.138260 ], [ -93.867188, 79.138260 ], [ -93.867188, 79.204309 ], [ -93.691406, 79.204309 ], [ -93.691406, 79.269962 ], [ -93.515625, 79.269962 ], [ -93.515625, 79.302640 ], [ -93.339844, 79.302640 ], [ -93.339844, 79.367701 ], [ -93.164062, 79.367701 ], [ -93.164062, 79.400085 ], [ -95.273438, 79.400085 ], [ -95.273438, 79.464560 ], [ -95.449219, 79.464560 ], [ -95.449219, 79.528647 ], [ -95.625000, 79.528647 ], [ -95.625000, 79.560546 ], [ -95.800781, 79.560546 ], [ -95.800781, 79.624056 ], [ -95.976562, 79.624056 ], [ -95.976562, 79.687184 ], [ -96.152344, 79.687184 ], [ -96.152344, 79.749932 ], [ -96.328125, 79.749932 ], [ -96.328125, 79.874297 ], [ -96.503906, 79.874297 ], [ -96.503906, 79.997168 ], [ -96.679688, 79.997168 ], [ -96.679688, 80.118564 ], [ -96.855469, 80.118564 ], [ -96.855469, 80.208652 ], [ -96.679688, 80.208652 ], [ -96.679688, 80.327506 ], [ -96.503906, 80.327506 ], [ -96.503906, 80.444931 ], [ -96.328125, 80.444931 ], [ -96.328125, 80.560943 ], [ -96.152344, 80.560943 ], [ -96.152344, 80.647035 ], [ -95.976562, 80.647035 ], [ -95.976562, 80.732349 ], [ -95.800781, 80.732349 ], [ -95.800781, 80.788795 ], [ -95.625000, 80.788795 ], [ -95.625000, 80.872827 ], [ -95.449219, 80.872827 ], [ -95.449219, 80.928426 ], [ -95.097656, 80.928426 ], [ -95.097656, 80.956099 ], [ -94.570312, 80.956099 ], [ -94.570312, 80.983688 ], [ -94.394531, 80.983688 ], [ -94.394531, 81.038617 ], [ -94.570312, 81.038617 ], [ -94.570312, 81.147481 ], [ -94.746094, 81.147481 ], [ -94.746094, 81.228267 ], [ -94.042969, 81.228267 ], [ -94.042969, 81.255032 ], [ -92.988281, 81.255032 ], [ -92.988281, 81.281717 ], [ -92.460938, 81.281717 ] ] ], [ [ [ -89.121094, 82.118384 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.844901 ], [ -89.472656, 80.844901 ], [ -89.472656, 80.900669 ], [ -89.648438, 80.900669 ], [ -89.648438, 80.983688 ], [ -89.824219, 80.983688 ], [ -89.824219, 81.065957 ], [ -90.000000, 81.065957 ], [ -90.000000, 81.147481 ], [ -90.175781, 81.147481 ], [ -90.175781, 81.228267 ], [ -90.351562, 81.228267 ], [ -90.351562, 81.281717 ], [ -90.527344, 81.281717 ], [ -90.527344, 81.334844 ], [ -90.703125, 81.334844 ], [ -90.703125, 81.387650 ], [ -90.878906, 81.387650 ], [ -90.878906, 81.440137 ], [ -91.054688, 81.440137 ], [ -91.054688, 81.492306 ], [ -91.230469, 81.492306 ], [ -91.230469, 81.544159 ], [ -91.406250, 81.544159 ], [ -91.406250, 81.646927 ], [ -91.582031, 81.646927 ], [ -91.582031, 81.798757 ], [ -91.757812, 81.798757 ], [ -91.757812, 81.898451 ], [ -91.582031, 81.898451 ], [ -91.582031, 81.923186 ], [ -91.406250, 81.923186 ], [ -91.406250, 81.947846 ], [ -91.230469, 81.947846 ], [ -91.230469, 81.972431 ], [ -91.054688, 81.972431 ], [ -91.054688, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -89.121094, 82.118384 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, -79.004962 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.302640 ], [ -77.519531, -79.302640 ], [ -77.519531, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.432371 ], [ -77.167969, -79.432371 ], [ -77.167969, -79.464560 ], [ -76.992188, -79.464560 ], [ -76.992188, -79.528647 ], [ -76.816406, -79.528647 ], [ -76.816406, -79.718605 ], [ -76.640625, -79.718605 ], [ -76.640625, -79.905154 ], [ -76.464844, -79.905154 ], [ -76.464844, -79.966590 ], [ -76.289062, -79.966590 ], [ -76.289062, -80.027655 ], [ -76.113281, -80.027655 ], [ -76.113281, -80.088352 ], [ -75.937500, -80.088352 ], [ -75.937500, -80.148684 ], [ -75.761719, -80.148684 ], [ -75.761719, -80.208652 ], [ -75.585938, -80.208652 ], [ -75.585938, -80.268259 ], [ -75.234375, -80.268259 ], [ -75.234375, -80.297927 ], [ -74.882812, -80.297927 ], [ -74.882812, -80.327506 ], [ -74.531250, -80.327506 ], [ -74.531250, -80.356995 ], [ -74.003906, -80.356995 ], [ -74.003906, -80.386396 ], [ -73.652344, -80.386396 ], [ -73.652344, -80.415707 ], [ -73.300781, -80.415707 ], [ -73.300781, -80.444931 ], [ -73.125000, -80.444931 ], [ -73.125000, -80.474065 ], [ -72.949219, -80.474065 ], [ -72.949219, -80.503112 ], [ -72.773438, -80.503112 ], [ -72.773438, -80.532071 ], [ -72.597656, -80.532071 ], [ -72.597656, -80.560943 ], [ -72.246094, -80.560943 ], [ -72.246094, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.618424 ], [ -71.894531, -80.618424 ], [ -71.894531, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.675559 ], [ -71.542969, -80.675559 ], [ -71.542969, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.732349 ], [ -71.191406, -80.732349 ], [ -71.191406, -80.788795 ], [ -71.015625, -80.788795 ], [ -71.015625, -80.816891 ], [ -70.839844, -80.816891 ], [ -70.839844, -80.844901 ], [ -70.664062, -80.844901 ], [ -70.664062, -80.900669 ], [ -70.488281, -80.900669 ], [ -70.488281, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.956099 ], [ -70.136719, -80.956099 ], [ -70.136719, -81.011194 ], [ -69.960938, -81.011194 ], [ -69.960938, -81.038617 ], [ -69.785156, -81.038617 ], [ -69.785156, -81.065957 ], [ -69.609375, -81.065957 ], [ -69.609375, -81.093214 ], [ -69.433594, -81.093214 ], [ -69.433594, -81.120388 ], [ -69.257812, -81.120388 ], [ -69.257812, -81.147481 ], [ -69.082031, -81.147481 ], [ -69.082031, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.228267 ], [ -68.730469, -81.228267 ], [ -68.730469, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.281717 ], [ -68.378906, -81.281717 ], [ -68.378906, -81.308321 ], [ -68.027344, -81.308321 ], [ -68.027344, -81.334844 ], [ -67.675781, -81.334844 ], [ -67.675781, -81.361287 ], [ -67.324219, -81.361287 ], [ -67.324219, -81.387650 ], [ -66.796875, -81.387650 ], [ -66.796875, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.440137 ], [ -66.093750, -81.440137 ], [ -66.093750, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.492306 ], [ -65.566406, -81.492306 ], [ -65.566406, -81.518272 ], [ -65.214844, -81.518272 ], [ -65.214844, -81.544159 ], [ -65.039062, -81.544159 ], [ -65.039062, -81.569968 ], [ -64.863281, -81.569968 ], [ -64.863281, -81.595699 ], [ -64.687500, -81.595699 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.646927 ], [ -64.160156, -81.646927 ], [ -64.160156, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.697844 ], [ -63.632812, -81.697844 ], [ -63.632812, -81.723188 ], [ -63.457031, -81.723188 ], [ -63.457031, -81.748454 ], [ -63.281250, -81.748454 ], [ -63.281250, -81.773644 ], [ -63.105469, -81.773644 ], [ -63.105469, -81.798757 ], [ -62.929688, -81.798757 ], [ -62.929688, -81.823794 ], [ -62.753906, -81.823794 ], [ -62.753906, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.898451 ], [ -62.402344, -81.898451 ], [ -62.402344, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.947846 ], [ -62.050781, -81.947846 ], [ -62.050781, -81.972431 ], [ -61.875000, -81.972431 ], [ -61.875000, -82.021378 ], [ -61.699219, -82.021378 ], [ -61.699219, -82.045740 ], [ -61.523438, -82.045740 ], [ -61.523438, -82.070028 ], [ -61.347656, -82.070028 ], [ -61.347656, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.142451 ], [ -60.996094, -82.142451 ], [ -60.996094, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.214217 ], [ -60.644531, -82.214217 ], [ -60.644531, -82.237994 ], [ -60.468750, -82.237994 ], [ -60.468750, -82.285331 ], [ -60.292969, -82.285331 ], [ -60.292969, -82.308893 ], [ -60.117188, -82.308893 ], [ -60.117188, -82.332382 ], [ -59.941406, -82.332382 ], [ -59.941406, -82.379147 ], [ -59.765625, -82.379147 ], [ -59.765625, -82.425629 ], [ -59.589844, -82.425629 ], [ -59.589844, -82.517749 ], [ -59.414062, -82.517749 ], [ -59.414062, -82.586106 ], [ -59.238281, -82.586106 ], [ -59.238281, -82.676285 ], [ -59.062500, -82.676285 ], [ -59.062500, -82.743202 ], [ -58.886719, -82.743202 ], [ -58.886719, -82.831480 ], [ -58.710938, -82.831480 ], [ -58.710938, -82.918690 ], [ -58.535156, -82.918690 ], [ -58.535156, -83.047529 ], [ -58.359375, -83.047529 ], [ -58.359375, -83.174035 ], [ -58.183594, -83.174035 ], [ -58.183594, -83.194896 ], [ -58.007812, -83.194896 ], [ -58.007812, -83.153111 ], [ -57.832031, -83.153111 ], [ -57.832031, -83.111071 ], [ -57.656250, -83.111071 ], [ -57.656250, -83.047529 ], [ -57.480469, -83.047529 ], [ -57.480469, -83.004844 ], [ -57.304688, -83.004844 ], [ -57.304688, -82.961898 ], [ -57.128906, -82.961898 ], [ -57.128906, -82.918690 ], [ -56.953125, -82.918690 ], [ -56.953125, -82.875218 ], [ -56.777344, -82.875218 ], [ -56.777344, -82.831480 ], [ -56.601562, -82.831480 ], [ -56.601562, -82.809511 ], [ -56.425781, -82.809511 ], [ -56.425781, -82.765373 ], [ -56.250000, -82.765373 ], [ -56.250000, -82.720964 ], [ -56.074219, -82.720964 ], [ -56.074219, -82.698659 ], [ -55.898438, -82.698659 ], [ -55.898438, -82.653843 ], [ -55.722656, -82.653843 ], [ -55.722656, -82.631333 ], [ -55.546875, -82.631333 ], [ -55.546875, -82.586106 ], [ -55.371094, -82.586106 ], [ -55.371094, -82.563390 ], [ -55.195312, -82.563390 ], [ -55.195312, -82.540604 ], [ -55.019531, -82.540604 ], [ -55.019531, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.471829 ], [ -54.667969, -82.471829 ], [ -54.667969, -82.448764 ], [ -54.492188, -82.448764 ], [ -54.492188, -82.402423 ], [ -54.316406, -82.402423 ], [ -54.316406, -82.379147 ], [ -54.140625, -82.379147 ], [ -54.140625, -82.355800 ], [ -53.964844, -82.355800 ], [ -53.964844, -82.308893 ], [ -53.789062, -82.308893 ], [ -53.789062, -82.285331 ], [ -53.613281, -82.285331 ], [ -53.613281, -82.261699 ], [ -53.437500, -82.261699 ], [ -53.437500, -82.237994 ], [ -53.261719, -82.237994 ], [ -53.261719, -82.214217 ], [ -53.085938, -82.214217 ], [ -53.085938, -82.190368 ], [ -52.910156, -82.190368 ], [ -52.910156, -82.166446 ], [ -52.734375, -82.166446 ], [ -52.734375, -82.142451 ], [ -52.382812, -82.142451 ], [ -52.382812, -82.118384 ], [ -52.207031, -82.118384 ], [ -52.207031, -82.094243 ], [ -52.031250, -82.094243 ], [ -52.031250, -82.070028 ], [ -51.855469, -82.070028 ], [ -51.855469, -82.045740 ], [ -51.679688, -82.045740 ], [ -51.679688, -82.021378 ], [ -51.503906, -82.021378 ], [ -51.503906, -81.996942 ], [ -51.328125, -81.996942 ], [ -51.328125, -81.972431 ], [ -51.152344, -81.972431 ], [ -51.152344, -81.947846 ], [ -50.976562, -81.947846 ], [ -50.976562, -81.923186 ], [ -50.800781, -81.923186 ], [ -50.800781, -81.898451 ], [ -50.625000, -81.898451 ], [ -50.625000, -81.848756 ], [ -50.449219, -81.848756 ], [ -50.449219, -81.823794 ], [ -50.273438, -81.823794 ], [ -50.273438, -81.798757 ], [ -50.097656, -81.798757 ], [ -50.097656, -81.773644 ], [ -49.921875, -81.773644 ], [ -49.921875, -81.748454 ], [ -49.746094, -81.748454 ], [ -49.746094, -81.723188 ], [ -48.339844, -81.723188 ], [ -48.339844, -81.697844 ], [ -47.109375, -81.697844 ], [ -47.109375, -81.723188 ], [ -46.757812, -81.723188 ], [ -46.757812, -81.748454 ], [ -46.406250, -81.748454 ], [ -46.406250, -81.773644 ], [ -45.878906, -81.773644 ], [ -45.878906, -81.798757 ], [ -45.527344, -81.798757 ], [ -45.527344, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.046875, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -80.503112 ], [ -46.054688, -80.503112 ], [ -46.054688, -80.532071 ], [ -46.230469, -80.532071 ], [ -46.230469, -80.560943 ], [ -46.406250, -80.560943 ], [ -46.406250, -80.589727 ], [ -46.582031, -80.589727 ], [ -46.582031, -80.618424 ], [ -46.757812, -80.618424 ], [ -46.757812, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.675559 ], [ -47.285156, -80.675559 ], [ -47.285156, -80.703997 ], [ -47.460938, -80.703997 ], [ -47.460938, -80.732349 ], [ -47.636719, -80.732349 ], [ -47.636719, -80.760615 ], [ -47.988281, -80.760615 ], [ -47.988281, -80.788795 ], [ -48.164062, -80.788795 ], [ -48.164062, -80.816891 ], [ -48.339844, -80.816891 ], [ -48.339844, -80.844901 ], [ -48.691406, -80.844901 ], [ -48.691406, -80.872827 ], [ -48.867188, -80.872827 ], [ -48.867188, -80.900669 ], [ -49.218750, -80.900669 ], [ -49.218750, -80.928426 ], [ -49.394531, -80.928426 ], [ -49.394531, -80.956099 ], [ -49.746094, -80.956099 ], [ -49.746094, -80.983688 ], [ -49.921875, -80.983688 ], [ -49.921875, -81.011194 ], [ -50.273438, -81.011194 ], [ -50.273438, -81.038617 ], [ -50.976562, -81.038617 ], [ -50.976562, -81.011194 ], [ -51.855469, -81.011194 ], [ -51.855469, -80.983688 ], [ -52.558594, -80.983688 ], [ -52.558594, -80.956099 ], [ -53.085938, -80.956099 ], [ -53.085938, -80.900669 ], [ -53.261719, -80.900669 ], [ -53.261719, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.613281, -80.816891 ], [ -53.613281, -80.760615 ], [ -53.789062, -80.760615 ], [ -53.789062, -80.732349 ], [ -53.964844, -80.732349 ], [ -53.964844, -80.675559 ], [ -54.140625, -80.675559 ], [ -54.140625, -80.444931 ], [ -53.964844, -80.444931 ], [ -53.964844, -80.208652 ], [ -53.789062, -80.208652 ], [ -53.789062, -80.178713 ], [ -53.437500, -80.178713 ], [ -53.437500, -80.148684 ], [ -53.261719, -80.148684 ], [ -53.261719, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.088352 ], [ -52.734375, -80.088352 ], [ -52.734375, -80.058050 ], [ -52.558594, -80.058050 ], [ -52.558594, -80.027655 ], [ -52.382812, -80.027655 ], [ -52.382812, -79.997168 ], [ -52.031250, -79.997168 ], [ -52.031250, -79.966590 ], [ -51.855469, -79.966590 ], [ -51.855469, -79.905154 ], [ -51.679688, -79.905154 ], [ -51.679688, -79.843346 ], [ -51.503906, -79.843346 ], [ -51.503906, -79.781164 ], [ -51.328125, -79.781164 ], [ -51.328125, -79.718605 ], [ -51.152344, -79.718605 ], [ -51.152344, -79.655668 ], [ -50.976562, -79.655668 ], [ -50.976562, -79.560546 ], [ -50.800781, -79.560546 ], [ -50.800781, -79.400085 ], [ -50.625000, -79.400085 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.071812 ], [ -50.097656, -79.071812 ], [ -50.097656, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.749932 ], [ -60.292969, -79.749932 ], [ -60.292969, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.874297 ], [ -59.941406, -79.874297 ], [ -59.941406, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -79.997168 ], [ -59.589844, -79.997168 ], [ -59.589844, -80.178713 ], [ -59.765625, -80.178713 ], [ -59.765625, -80.444931 ], [ -59.941406, -80.444931 ], [ -59.941406, -80.788795 ], [ -60.117188, -80.788795 ], [ -60.117188, -81.011194 ], [ -60.468750, -81.011194 ], [ -60.468750, -80.983688 ], [ -60.820312, -80.983688 ], [ -60.820312, -80.956099 ], [ -61.347656, -80.956099 ], [ -61.347656, -80.928426 ], [ -61.699219, -80.928426 ], [ -61.699219, -80.900669 ], [ -62.050781, -80.900669 ], [ -62.050781, -80.872827 ], [ -62.753906, -80.872827 ], [ -62.753906, -80.900669 ], [ -63.808594, -80.900669 ], [ -63.808594, -80.928426 ], [ -64.687500, -80.928426 ], [ -64.687500, -80.872827 ], [ -64.863281, -80.872827 ], [ -64.863281, -80.816891 ], [ -65.039062, -80.816891 ], [ -65.039062, -80.760615 ], [ -65.214844, -80.760615 ], [ -65.214844, -80.732349 ], [ -65.390625, -80.732349 ], [ -65.390625, -80.675559 ], [ -65.566406, -80.675559 ], [ -65.566406, -80.618424 ], [ -65.742188, -80.618424 ], [ -65.742188, -80.532071 ], [ -65.917969, -80.532071 ], [ -65.917969, -80.415707 ], [ -66.093750, -80.415707 ], [ -66.093750, -80.327506 ], [ -66.269531, -80.327506 ], [ -66.269531, -80.268259 ], [ -65.214844, -80.268259 ], [ -65.214844, -80.297927 ], [ -63.808594, -80.297927 ], [ -63.808594, -80.327506 ], [ -63.105469, -80.327506 ], [ -63.105469, -80.356995 ], [ -62.402344, -80.356995 ], [ -62.402344, -80.386396 ], [ -61.875000, -80.386396 ], [ -61.875000, -80.356995 ], [ -61.699219, -80.356995 ], [ -61.699219, -80.238501 ], [ -61.523438, -80.238501 ], [ -61.523438, -80.148684 ], [ -61.347656, -80.148684 ], [ -61.347656, -80.027655 ], [ -61.171875, -80.027655 ], [ -61.171875, -79.935918 ], [ -60.996094, -79.935918 ], [ -60.996094, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, -79.004962 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.335219 ], [ -77.519531, -79.335219 ], [ -77.519531, -79.367701 ], [ -77.343750, -79.367701 ], [ -77.343750, -79.432371 ], [ -77.167969, -79.432371 ], [ -77.167969, -79.496652 ], [ -76.992188, -79.496652 ], [ -76.992188, -79.592349 ], [ -76.816406, -79.592349 ], [ -76.816406, -79.781164 ], [ -76.640625, -79.781164 ], [ -76.640625, -79.905154 ], [ -76.464844, -79.905154 ], [ -76.464844, -79.966590 ], [ -76.289062, -79.966590 ], [ -76.289062, -80.027655 ], [ -76.113281, -80.027655 ], [ -76.113281, -80.058050 ], [ -75.937500, -80.058050 ], [ -75.937500, -80.118564 ], [ -75.761719, -80.118564 ], [ -75.761719, -80.178713 ], [ -75.585938, -80.178713 ], [ -75.585938, -80.238501 ], [ -75.410156, -80.238501 ], [ -75.410156, -80.268259 ], [ -75.058594, -80.268259 ], [ -75.058594, -80.297927 ], [ -74.707031, -80.297927 ], [ -74.707031, -80.327506 ], [ -74.355469, -80.327506 ], [ -74.355469, -80.356995 ], [ -74.003906, -80.356995 ], [ -74.003906, -80.386396 ], [ -73.652344, -80.386396 ], [ -73.652344, -80.415707 ], [ -73.300781, -80.415707 ], [ -73.300781, -80.444931 ], [ -73.125000, -80.444931 ], [ -73.125000, -80.474065 ], [ -72.949219, -80.474065 ], [ -72.949219, -80.503112 ], [ -72.773438, -80.503112 ], [ -72.773438, -80.532071 ], [ -72.597656, -80.532071 ], [ -72.597656, -80.560943 ], [ -72.246094, -80.560943 ], [ -72.246094, -80.589727 ], [ -72.070312, -80.589727 ], [ -72.070312, -80.618424 ], [ -71.894531, -80.618424 ], [ -71.894531, -80.647035 ], [ -71.718750, -80.647035 ], [ -71.718750, -80.675559 ], [ -71.542969, -80.675559 ], [ -71.542969, -80.703997 ], [ -71.367188, -80.703997 ], [ -71.367188, -80.760615 ], [ -71.191406, -80.760615 ], [ -71.191406, -80.788795 ], [ -71.015625, -80.788795 ], [ -71.015625, -80.816891 ], [ -70.839844, -80.816891 ], [ -70.839844, -80.872827 ], [ -70.664062, -80.872827 ], [ -70.664062, -80.900669 ], [ -70.488281, -80.900669 ], [ -70.488281, -80.928426 ], [ -70.312500, -80.928426 ], [ -70.312500, -80.983688 ], [ -70.136719, -80.983688 ], [ -70.136719, -81.011194 ], [ -69.960938, -81.011194 ], [ -69.960938, -81.038617 ], [ -69.785156, -81.038617 ], [ -69.785156, -81.065957 ], [ -69.609375, -81.065957 ], [ -69.609375, -81.093214 ], [ -69.433594, -81.093214 ], [ -69.433594, -81.120388 ], [ -69.257812, -81.120388 ], [ -69.257812, -81.147481 ], [ -69.082031, -81.147481 ], [ -69.082031, -81.201420 ], [ -68.906250, -81.201420 ], [ -68.906250, -81.228267 ], [ -68.730469, -81.228267 ], [ -68.730469, -81.255032 ], [ -68.554688, -81.255032 ], [ -68.554688, -81.281717 ], [ -68.378906, -81.281717 ], [ -68.378906, -81.308321 ], [ -68.027344, -81.308321 ], [ -68.027344, -81.334844 ], [ -67.675781, -81.334844 ], [ -67.675781, -81.361287 ], [ -67.324219, -81.361287 ], [ -67.324219, -81.387650 ], [ -66.796875, -81.387650 ], [ -66.796875, -81.413933 ], [ -66.445312, -81.413933 ], [ -66.445312, -81.440137 ], [ -66.093750, -81.440137 ], [ -66.093750, -81.466261 ], [ -65.742188, -81.466261 ], [ -65.742188, -81.492306 ], [ -65.566406, -81.492306 ], [ -65.566406, -81.518272 ], [ -65.214844, -81.518272 ], [ -65.214844, -81.544159 ], [ -65.039062, -81.544159 ], [ -65.039062, -81.569968 ], [ -64.863281, -81.569968 ], [ -64.863281, -81.595699 ], [ -64.687500, -81.595699 ], [ -64.687500, -81.621352 ], [ -64.335938, -81.621352 ], [ -64.335938, -81.646927 ], [ -64.160156, -81.646927 ], [ -64.160156, -81.672424 ], [ -63.984375, -81.672424 ], [ -63.984375, -81.697844 ], [ -63.632812, -81.697844 ], [ -63.632812, -81.723188 ], [ -63.457031, -81.723188 ], [ -63.457031, -81.748454 ], [ -63.281250, -81.748454 ], [ -63.281250, -81.773644 ], [ -63.105469, -81.773644 ], [ -63.105469, -81.798757 ], [ -62.929688, -81.798757 ], [ -62.929688, -81.848756 ], [ -62.753906, -81.848756 ], [ -62.753906, -81.873641 ], [ -62.578125, -81.873641 ], [ -62.578125, -81.898451 ], [ -62.402344, -81.898451 ], [ -62.402344, -81.923186 ], [ -62.226562, -81.923186 ], [ -62.226562, -81.947846 ], [ -62.050781, -81.947846 ], [ -62.050781, -81.996942 ], [ -61.875000, -81.996942 ], [ -61.875000, -82.021378 ], [ -61.699219, -82.021378 ], [ -61.699219, -82.045740 ], [ -61.523438, -82.045740 ], [ -61.523438, -82.070028 ], [ -61.347656, -82.070028 ], [ -61.347656, -82.118384 ], [ -61.171875, -82.118384 ], [ -61.171875, -82.142451 ], [ -60.996094, -82.142451 ], [ -60.996094, -82.166446 ], [ -60.820312, -82.166446 ], [ -60.820312, -82.190368 ], [ -60.644531, -82.190368 ], [ -60.644531, -82.237994 ], [ -60.468750, -82.237994 ], [ -60.468750, -82.261699 ], [ -60.292969, -82.261699 ], [ -60.292969, -82.285331 ], [ -60.117188, -82.285331 ], [ -60.117188, -82.332382 ], [ -59.941406, -82.332382 ], [ -59.941406, -82.355800 ], [ -59.765625, -82.355800 ], [ -59.765625, -82.402423 ], [ -59.589844, -82.402423 ], [ -59.589844, -82.494824 ], [ -59.414062, -82.494824 ], [ -59.414062, -82.563390 ], [ -59.238281, -82.563390 ], [ -59.238281, -82.653843 ], [ -59.062500, -82.653843 ], [ -59.062500, -82.720964 ], [ -58.886719, -82.720964 ], [ -58.886719, -82.809511 ], [ -58.710938, -82.809511 ], [ -58.710938, -82.940327 ], [ -58.535156, -82.940327 ], [ -58.535156, -83.132123 ], [ -58.359375, -83.132123 ], [ -58.359375, -83.194896 ], [ -58.183594, -83.194896 ], [ -58.183594, -83.153111 ], [ -58.007812, -83.153111 ], [ -58.007812, -83.089955 ], [ -57.832031, -83.089955 ], [ -57.832031, -83.047529 ], [ -57.656250, -83.047529 ], [ -57.656250, -83.004844 ], [ -57.480469, -83.004844 ], [ -57.480469, -82.940327 ], [ -57.304688, -82.940327 ], [ -57.304688, -82.896987 ], [ -57.128906, -82.896987 ], [ -57.128906, -82.853382 ], [ -56.953125, -82.853382 ], [ -56.953125, -82.831480 ], [ -56.777344, -82.831480 ], [ -56.777344, -82.787476 ], [ -56.601562, -82.787476 ], [ -56.601562, -82.765373 ], [ -56.425781, -82.765373 ], [ -56.425781, -82.743202 ], [ -56.250000, -82.743202 ], [ -56.250000, -82.698659 ], [ -56.074219, -82.698659 ], [ -56.074219, -82.676285 ], [ -55.898438, -82.676285 ], [ -55.898438, -82.653843 ], [ -55.722656, -82.653843 ], [ -55.722656, -82.608754 ], [ -55.546875, -82.608754 ], [ -55.546875, -82.586106 ], [ -55.371094, -82.586106 ], [ -55.371094, -82.563390 ], [ -55.195312, -82.563390 ], [ -55.195312, -82.517749 ], [ -55.019531, -82.517749 ], [ -55.019531, -82.494824 ], [ -54.843750, -82.494824 ], [ -54.843750, -82.448764 ], [ -54.667969, -82.448764 ], [ -54.667969, -82.402423 ], [ -54.492188, -82.402423 ], [ -54.492188, -82.379147 ], [ -54.316406, -82.379147 ], [ -54.316406, -82.332382 ], [ -54.140625, -82.332382 ], [ -54.140625, -82.308893 ], [ -53.964844, -82.308893 ], [ -53.964844, -82.261699 ], [ -53.789062, -82.261699 ], [ -53.789062, -82.237994 ], [ -53.613281, -82.237994 ], [ -53.613281, -82.214217 ], [ -53.437500, -82.214217 ], [ -53.437500, -82.190368 ], [ -53.085938, -82.190368 ], [ -53.085938, -82.166446 ], [ -52.910156, -82.166446 ], [ -52.910156, -82.142451 ], [ -52.734375, -82.142451 ], [ -52.734375, -82.118384 ], [ -52.558594, -82.118384 ], [ -52.558594, -82.094243 ], [ -52.382812, -82.094243 ], [ -52.382812, -82.070028 ], [ -52.031250, -82.070028 ], [ -52.031250, -82.045740 ], [ -51.855469, -82.045740 ], [ -51.855469, -82.021378 ], [ -51.679688, -82.021378 ], [ -51.679688, -81.996942 ], [ -51.503906, -81.996942 ], [ -51.503906, -81.972431 ], [ -51.328125, -81.972431 ], [ -51.328125, -81.947846 ], [ -51.152344, -81.947846 ], [ -51.152344, -81.923186 ], [ -50.976562, -81.923186 ], [ -50.976562, -81.898451 ], [ -50.800781, -81.898451 ], [ -50.800781, -81.848756 ], [ -50.625000, -81.848756 ], [ -50.625000, -81.823794 ], [ -50.449219, -81.823794 ], [ -50.449219, -81.798757 ], [ -50.273438, -81.798757 ], [ -50.273438, -81.773644 ], [ -50.097656, -81.773644 ], [ -50.097656, -81.748454 ], [ -49.921875, -81.748454 ], [ -49.921875, -81.723188 ], [ -48.515625, -81.723188 ], [ -48.515625, -81.697844 ], [ -47.109375, -81.697844 ], [ -47.109375, -81.723188 ], [ -46.582031, -81.723188 ], [ -46.582031, -81.748454 ], [ -46.230469, -81.748454 ], [ -46.230469, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.798757 ], [ -45.175781, -81.798757 ], [ -45.175781, -81.823794 ], [ -44.824219, -81.823794 ], [ -44.824219, -81.848756 ], [ -44.648438, -81.848756 ], [ -44.648438, -81.873641 ], [ -44.472656, -81.873641 ], [ -44.472656, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -85.126373 ], [ -90.878906, -85.126373 ], [ -90.878906, -79.004962 ], [ -78.046875, -79.004962 ] ] ], [ [ [ -44.121094, -79.004962 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.268259 ], [ -44.648438, -80.268259 ], [ -44.648438, -80.297927 ], [ -44.824219, -80.297927 ], [ -44.824219, -80.327506 ], [ -45.000000, -80.327506 ], [ -45.000000, -80.356995 ], [ -45.175781, -80.356995 ], [ -45.175781, -80.386396 ], [ -45.351562, -80.386396 ], [ -45.351562, -80.415707 ], [ -45.527344, -80.415707 ], [ -45.527344, -80.444931 ], [ -45.703125, -80.444931 ], [ -45.703125, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -80.503112 ], [ -46.054688, -80.503112 ], [ -46.054688, -80.532071 ], [ -46.230469, -80.532071 ], [ -46.230469, -80.560943 ], [ -46.406250, -80.560943 ], [ -46.406250, -80.589727 ], [ -46.582031, -80.589727 ], [ -46.582031, -80.618424 ], [ -46.933594, -80.618424 ], [ -46.933594, -80.647035 ], [ -47.109375, -80.647035 ], [ -47.109375, -80.675559 ], [ -47.285156, -80.675559 ], [ -47.285156, -80.703997 ], [ -47.636719, -80.703997 ], [ -47.636719, -80.732349 ], [ -47.812500, -80.732349 ], [ -47.812500, -80.760615 ], [ -47.988281, -80.760615 ], [ -47.988281, -80.788795 ], [ -48.339844, -80.788795 ], [ -48.339844, -80.816891 ], [ -48.515625, -80.816891 ], [ -48.515625, -80.844901 ], [ -48.867188, -80.844901 ], [ -48.867188, -80.872827 ], [ -49.218750, -80.872827 ], [ -49.218750, -80.900669 ], [ -49.394531, -80.900669 ], [ -49.394531, -80.928426 ], [ -49.746094, -80.928426 ], [ -49.746094, -80.956099 ], [ -50.097656, -80.956099 ], [ -50.097656, -80.983688 ], [ -50.449219, -80.983688 ], [ -50.449219, -81.011194 ], [ -51.328125, -81.011194 ], [ -51.328125, -80.983688 ], [ -52.382812, -80.983688 ], [ -52.382812, -80.956099 ], [ -53.085938, -80.956099 ], [ -53.085938, -80.900669 ], [ -53.261719, -80.900669 ], [ -53.261719, -80.872827 ], [ -53.437500, -80.872827 ], [ -53.437500, -80.816891 ], [ -53.613281, -80.816891 ], [ -53.613281, -80.788795 ], [ -53.789062, -80.788795 ], [ -53.789062, -80.732349 ], [ -53.964844, -80.732349 ], [ -53.964844, -80.703997 ], [ -54.140625, -80.703997 ], [ -54.140625, -80.647035 ], [ -54.316406, -80.647035 ], [ -54.316406, -80.415707 ], [ -54.140625, -80.415707 ], [ -54.140625, -80.208652 ], [ -53.964844, -80.208652 ], [ -53.964844, -80.178713 ], [ -53.613281, -80.178713 ], [ -53.613281, -80.148684 ], [ -53.437500, -80.148684 ], [ -53.437500, -80.118564 ], [ -53.085938, -80.118564 ], [ -53.085938, -80.088352 ], [ -52.910156, -80.088352 ], [ -52.910156, -80.058050 ], [ -52.734375, -80.058050 ], [ -52.734375, -80.027655 ], [ -52.382812, -80.027655 ], [ -52.382812, -79.997168 ], [ -52.207031, -79.997168 ], [ -52.207031, -79.966590 ], [ -51.855469, -79.966590 ], [ -51.855469, -79.905154 ], [ -51.679688, -79.905154 ], [ -51.679688, -79.812302 ], [ -51.503906, -79.812302 ], [ -51.503906, -79.749932 ], [ -51.328125, -79.749932 ], [ -51.328125, -79.655668 ], [ -51.152344, -79.655668 ], [ -51.152344, -79.560546 ], [ -50.976562, -79.560546 ], [ -50.976562, -79.464560 ], [ -50.800781, -79.464560 ], [ -50.800781, -79.335219 ], [ -50.625000, -79.335219 ], [ -50.625000, -79.237185 ], [ -50.449219, -79.237185 ], [ -50.449219, -79.105086 ], [ -50.273438, -79.105086 ], [ -50.273438, -79.004962 ], [ -44.121094, -79.004962 ] ] ], [ [ [ -60.468750, -79.687184 ], [ -60.468750, -79.749932 ], [ -60.292969, -79.749932 ], [ -60.292969, -79.812302 ], [ -60.117188, -79.812302 ], [ -60.117188, -79.874297 ], [ -59.941406, -79.874297 ], [ -59.941406, -79.935918 ], [ -59.765625, -79.935918 ], [ -59.765625, -79.997168 ], [ -59.589844, -79.997168 ], [ -59.589844, -80.178713 ], [ -59.765625, -80.178713 ], [ -59.765625, -80.415707 ], [ -59.941406, -80.415707 ], [ -59.941406, -80.647035 ], [ -60.117188, -80.647035 ], [ -60.117188, -80.872827 ], [ -60.292969, -80.872827 ], [ -60.292969, -80.983688 ], [ -60.644531, -80.983688 ], [ -60.644531, -80.956099 ], [ -60.996094, -80.956099 ], [ -60.996094, -80.928426 ], [ -61.523438, -80.928426 ], [ -61.523438, -80.900669 ], [ -61.875000, -80.900669 ], [ -61.875000, -80.872827 ], [ -62.226562, -80.872827 ], [ -62.226562, -80.844901 ], [ -62.753906, -80.844901 ], [ -62.753906, -80.872827 ], [ -63.808594, -80.872827 ], [ -63.808594, -80.900669 ], [ -64.687500, -80.900669 ], [ -64.687500, -80.844901 ], [ -64.863281, -80.844901 ], [ -64.863281, -80.788795 ], [ -65.039062, -80.788795 ], [ -65.039062, -80.732349 ], [ -65.214844, -80.732349 ], [ -65.214844, -80.703997 ], [ -65.390625, -80.703997 ], [ -65.390625, -80.647035 ], [ -65.566406, -80.647035 ], [ -65.566406, -80.589727 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.503112 ], [ -65.917969, -80.503112 ], [ -65.917969, -80.444931 ], [ -66.093750, -80.444931 ], [ -66.093750, -80.356995 ], [ -66.269531, -80.356995 ], [ -66.269531, -80.297927 ], [ -66.445312, -80.297927 ], [ -66.445312, -80.238501 ], [ -65.390625, -80.238501 ], [ -65.390625, -80.268259 ], [ -63.984375, -80.268259 ], [ -63.984375, -80.297927 ], [ -63.457031, -80.297927 ], [ -63.457031, -80.327506 ], [ -62.929688, -80.327506 ], [ -62.929688, -80.356995 ], [ -62.402344, -80.356995 ], [ -62.402344, -80.386396 ], [ -62.050781, -80.386396 ], [ -62.050781, -80.356995 ], [ -61.875000, -80.356995 ], [ -61.875000, -80.268259 ], [ -61.699219, -80.268259 ], [ -61.699219, -80.178713 ], [ -61.523438, -80.178713 ], [ -61.523438, -80.118564 ], [ -61.347656, -80.118564 ], [ -61.347656, -80.027655 ], [ -61.171875, -80.027655 ], [ -61.171875, -79.935918 ], [ -60.996094, -79.935918 ], [ -60.996094, -79.812302 ], [ -60.820312, -79.812302 ], [ -60.820312, -79.687184 ], [ -60.468750, -79.687184 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.406250, -77.878814 ], [ -46.406250, -77.915669 ], [ -46.054688, -77.915669 ], [ -46.054688, -77.952414 ], [ -45.878906, -77.952414 ], [ -45.878906, -77.989049 ], [ -45.703125, -77.989049 ], [ -45.703125, -78.025574 ], [ -45.351562, -78.025574 ], [ -45.351562, -78.061989 ], [ -45.175781, -78.061989 ], [ -45.175781, -78.098296 ], [ -45.000000, -78.098296 ], [ -45.000000, -78.170582 ], [ -44.824219, -78.170582 ], [ -44.824219, -78.242436 ], [ -44.648438, -78.242436 ], [ -44.648438, -78.278201 ], [ -44.472656, -78.278201 ], [ -44.472656, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.420193 ], [ -44.121094, -78.420193 ], [ -44.121094, -79.335219 ], [ -50.625000, -79.335219 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.004962 ], [ -50.097656, -79.004962 ], [ -50.097656, -78.870048 ], [ -49.921875, -78.870048 ], [ -49.921875, -78.767792 ], [ -49.746094, -78.767792 ], [ -49.746094, -78.630006 ], [ -49.570312, -78.630006 ], [ -49.570312, -78.525573 ], [ -49.394531, -78.525573 ], [ -49.394531, -78.420193 ], [ -49.218750, -78.420193 ], [ -49.218750, -78.313860 ], [ -49.042969, -78.313860 ], [ -49.042969, -78.242436 ], [ -48.867188, -78.242436 ], [ -48.867188, -78.134493 ], [ -48.691406, -78.134493 ], [ -48.691406, -78.061989 ], [ -47.988281, -78.061989 ], [ -47.988281, -78.025574 ], [ -47.636719, -78.025574 ], [ -47.636719, -77.989049 ], [ -47.460938, -77.989049 ], [ -47.460938, -77.952414 ], [ -47.109375, -77.952414 ], [ -47.109375, -77.915669 ], [ -46.933594, -77.915669 ], [ -46.933594, -77.878814 ], [ -46.406250, -77.878814 ] ] ], [ [ [ -62.050781, -66.160511 ], [ -62.050781, -66.231457 ], [ -62.226562, -66.231457 ], [ -62.226562, -66.302205 ], [ -62.402344, -66.302205 ], [ -62.402344, -66.372755 ], [ -62.578125, -66.372755 ], [ -62.578125, -66.443107 ], [ -63.105469, -66.443107 ], [ -63.105469, -66.513260 ], [ -63.808594, -66.513260 ], [ -63.808594, -66.583217 ], [ -63.984375, -66.583217 ], [ -63.984375, -66.722541 ], [ -64.160156, -66.722541 ], [ -64.160156, -66.861082 ], [ -64.335938, -66.861082 ], [ -64.335938, -66.930060 ], [ -64.511719, -66.930060 ], [ -64.511719, -66.998844 ], [ -64.687500, -66.998844 ], [ -64.687500, -67.135829 ], [ -64.863281, -67.135829 ], [ -64.863281, -67.204032 ], [ -65.039062, -67.204032 ], [ -65.039062, -67.339861 ], [ -65.214844, -67.339861 ], [ -65.214844, -67.474922 ], [ -65.390625, -67.474922 ], [ -65.390625, -67.609221 ], [ -65.566406, -67.609221 ], [ -65.566406, -67.809245 ], [ -65.742188, -67.809245 ], [ -65.742188, -68.073305 ], [ -65.566406, -68.073305 ], [ -65.566406, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.399180 ], [ -65.214844, -68.399180 ], [ -65.214844, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.863281, -68.656555 ], [ -64.863281, -68.720441 ], [ -64.687500, -68.720441 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.847665 ], [ -64.160156, -68.847665 ], [ -64.160156, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -68.974164 ], [ -63.808594, -68.974164 ], [ -63.808594, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.162558 ], [ -63.457031, -69.162558 ], [ -63.457031, -69.224997 ], [ -63.281250, -69.224997 ], [ -63.281250, -69.287257 ], [ -63.105469, -69.287257 ], [ -63.105469, -69.411242 ], [ -62.929688, -69.411242 ], [ -62.929688, -69.534518 ], [ -62.753906, -69.534518 ], [ -62.753906, -69.839622 ], [ -62.578125, -69.839622 ], [ -62.578125, -70.140364 ], [ -62.402344, -70.140364 ], [ -62.402344, -70.318738 ], [ -62.226562, -70.318738 ], [ -62.226562, -70.495574 ], [ -62.050781, -70.495574 ], [ -62.050781, -70.670881 ], [ -61.875000, -70.670881 ], [ -61.875000, -70.844673 ], [ -61.699219, -70.844673 ], [ -61.699219, -71.016960 ], [ -61.523438, -71.016960 ], [ -61.523438, -71.580532 ], [ -61.347656, -71.580532 ], [ -61.347656, -72.127936 ], [ -61.171875, -72.127936 ], [ -61.171875, -72.342464 ], [ -60.996094, -72.342464 ], [ -60.996094, -72.867930 ], [ -60.820312, -72.867930 ], [ -60.820312, -73.073844 ], [ -60.644531, -73.073844 ], [ -60.644531, -73.428424 ], [ -60.820312, -73.428424 ], [ -60.820312, -73.775780 ], [ -60.996094, -73.775780 ], [ -60.996094, -73.922469 ], [ -61.171875, -73.922469 ], [ -61.171875, -74.067866 ], [ -61.347656, -74.067866 ], [ -61.347656, -74.164085 ], [ -61.523438, -74.164085 ], [ -61.523438, -74.259738 ], [ -61.699219, -74.259738 ], [ -61.699219, -74.354828 ], [ -61.875000, -74.354828 ], [ -61.875000, -74.449358 ], [ -62.226562, -74.449358 ], [ -62.226562, -74.496413 ], [ -62.578125, -74.496413 ], [ -62.578125, -74.543330 ], [ -62.929688, -74.543330 ], [ -62.929688, -74.590108 ], [ -63.281250, -74.590108 ], [ -63.281250, -74.683250 ], [ -63.457031, -74.683250 ], [ -63.457031, -74.775843 ], [ -63.632812, -74.775843 ], [ -63.632812, -74.867889 ], [ -63.808594, -74.867889 ], [ -63.808594, -75.004940 ], [ -63.984375, -75.004940 ], [ -63.984375, -75.095633 ], [ -64.160156, -75.095633 ], [ -64.160156, -75.230667 ], [ -64.335938, -75.230667 ], [ -64.335938, -75.320025 ], [ -64.511719, -75.320025 ], [ -64.511719, -75.364506 ], [ -64.687500, -75.364506 ], [ -64.687500, -75.408854 ], [ -64.863281, -75.408854 ], [ -64.863281, -75.453071 ], [ -65.214844, -75.453071 ], [ -65.214844, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.541113 ], [ -65.566406, -75.541113 ], [ -65.566406, -75.584937 ], [ -65.742188, -75.584937 ], [ -65.742188, -75.628632 ], [ -65.917969, -75.628632 ], [ -65.917969, -75.672197 ], [ -66.269531, -75.672197 ], [ -66.269531, -75.715633 ], [ -66.621094, -75.715633 ], [ -66.621094, -75.758940 ], [ -66.972656, -75.758940 ], [ -66.972656, -75.802118 ], [ -67.148438, -75.802118 ], [ -67.148438, -75.845169 ], [ -67.500000, -75.845169 ], [ -67.500000, -75.888091 ], [ -67.675781, -75.888091 ], [ -67.675781, -75.930885 ], [ -67.851562, -75.930885 ], [ -67.851562, -75.973553 ], [ -68.203125, -75.973553 ], [ -68.203125, -76.016094 ], [ -68.378906, -76.016094 ], [ -68.378906, -76.058508 ], [ -68.730469, -76.058508 ], [ -68.730469, -76.100796 ], [ -68.906250, -76.100796 ], [ -68.906250, -76.142958 ], [ -69.257812, -76.142958 ], [ -69.257812, -76.184995 ], [ -69.609375, -76.184995 ], [ -69.609375, -76.226907 ], [ -69.785156, -76.226907 ], [ -69.785156, -76.268695 ], [ -69.960938, -76.268695 ], [ -69.960938, -76.351896 ], [ -70.136719, -76.351896 ], [ -70.136719, -76.434604 ], [ -70.312500, -76.434604 ], [ -70.312500, -76.516819 ], [ -70.488281, -76.516819 ], [ -70.488281, -76.598545 ], [ -70.664062, -76.598545 ], [ -70.664062, -76.639226 ], [ -71.367188, -76.639226 ], [ -71.367188, -76.679785 ], [ -73.300781, -76.679785 ], [ -73.300781, -76.639226 ], [ -74.355469, -76.639226 ], [ -74.355469, -76.679785 ], [ -75.058594, -76.679785 ], [ -75.058594, -76.720223 ], [ -77.167969, -76.720223 ], [ -77.167969, -76.920614 ], [ -76.992188, -76.920614 ], [ -76.992188, -77.118032 ], [ -76.816406, -77.118032 ], [ -76.816406, -77.157163 ], [ -76.464844, -77.157163 ], [ -76.464844, -77.196176 ], [ -76.113281, -77.196176 ], [ -76.113281, -77.235074 ], [ -75.761719, -77.235074 ], [ -75.761719, -77.273855 ], [ -75.410156, -77.273855 ], [ -75.410156, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.351070 ], [ -75.058594, -77.351070 ], [ -75.058594, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.707031, -77.466028 ], [ -74.707031, -77.504119 ], [ -74.531250, -77.504119 ], [ -74.531250, -77.542096 ], [ -74.355469, -77.542096 ], [ -74.355469, -77.617709 ], [ -74.179688, -77.617709 ], [ -74.179688, -77.692870 ], [ -74.003906, -77.692870 ], [ -74.003906, -77.804771 ], [ -73.828125, -77.804771 ], [ -73.828125, -77.878814 ], [ -73.652344, -77.878814 ], [ -73.652344, -77.952414 ], [ -73.828125, -77.952414 ], [ -73.828125, -77.989049 ], [ -74.003906, -77.989049 ], [ -74.003906, -78.061989 ], [ -74.179688, -78.061989 ], [ -74.179688, -78.098296 ], [ -74.355469, -78.098296 ], [ -74.355469, -78.134493 ], [ -74.531250, -78.134493 ], [ -74.531250, -78.206563 ], [ -75.234375, -78.206563 ], [ -75.234375, -78.170582 ], [ -76.113281, -78.170582 ], [ -76.113281, -78.134493 ], [ -76.464844, -78.134493 ], [ -76.464844, -78.170582 ], [ -76.640625, -78.170582 ], [ -76.640625, -78.206563 ], [ -76.816406, -78.206563 ], [ -76.816406, -78.242436 ], [ -76.992188, -78.242436 ], [ -76.992188, -78.278201 ], [ -77.343750, -78.278201 ], [ -77.343750, -78.313860 ], [ -77.519531, -78.313860 ], [ -77.519531, -78.349411 ], [ -77.695312, -78.349411 ], [ -77.695312, -78.384855 ], [ -77.871094, -78.384855 ], [ -77.871094, -78.595299 ], [ -78.046875, -78.595299 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.378215 ], [ -90.351562, -73.378215 ], [ -90.351562, -73.327858 ], [ -90.175781, -73.327858 ], [ -90.175781, -73.277353 ], [ -90.000000, -73.277353 ], [ -90.000000, -73.124945 ], [ -89.824219, -73.124945 ], [ -89.824219, -72.971189 ], [ -89.648438, -72.971189 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ], [ -89.121094, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.816074 ], [ -88.769531, -72.816074 ], [ -88.769531, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -73.073844 ], [ -87.890625, -73.073844 ], [ -87.890625, -73.124945 ], [ -87.539062, -73.124945 ], [ -87.539062, -73.175897 ], [ -86.835938, -73.175897 ], [ -86.835938, -73.124945 ], [ -86.132812, -73.124945 ], [ -86.132812, -73.073844 ], [ -85.957031, -73.073844 ], [ -85.957031, -73.124945 ], [ -85.781250, -73.124945 ], [ -85.781250, -73.226700 ], [ -85.605469, -73.226700 ], [ -85.605469, -73.327858 ], [ -85.429688, -73.327858 ], [ -85.429688, -73.428424 ], [ -85.253906, -73.428424 ], [ -85.253906, -73.478485 ], [ -84.726562, -73.478485 ], [ -84.726562, -73.528399 ], [ -83.671875, -73.528399 ], [ -83.671875, -73.578167 ], [ -82.968750, -73.578167 ], [ -82.968750, -73.627789 ], [ -82.617188, -73.627789 ], [ -82.617188, -73.677264 ], [ -82.265625, -73.677264 ], [ -82.265625, -73.726595 ], [ -82.089844, -73.726595 ], [ -82.089844, -73.775780 ], [ -81.914062, -73.775780 ], [ -81.914062, -73.824820 ], [ -81.562500, -73.824820 ], [ -81.562500, -73.873717 ], [ -81.386719, -73.873717 ], [ -81.386719, -73.824820 ], [ -81.210938, -73.824820 ], [ -81.210938, -73.726595 ], [ -81.035156, -73.726595 ], [ -81.035156, -73.627789 ], [ -80.859375, -73.627789 ], [ -80.859375, -73.528399 ], [ -80.683594, -73.528399 ], [ -80.683594, -73.428424 ], [ -80.507812, -73.428424 ], [ -80.507812, -73.226700 ], [ -80.332031, -73.226700 ], [ -80.332031, -73.175897 ], [ -80.156250, -73.175897 ], [ -80.156250, -73.226700 ], [ -79.980469, -73.226700 ], [ -79.980469, -73.327858 ], [ -79.804688, -73.327858 ], [ -79.804688, -73.378215 ], [ -79.628906, -73.378215 ], [ -79.628906, -73.428424 ], [ -79.453125, -73.428424 ], [ -79.453125, -73.528399 ], [ -78.750000, -73.528399 ], [ -78.750000, -73.478485 ], [ -78.046875, -73.478485 ], [ -78.046875, -73.428424 ], [ -77.871094, -73.428424 ], [ -77.871094, -73.478485 ], [ -77.695312, -73.478485 ], [ -77.695312, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.578167 ], [ -77.167969, -73.578167 ], [ -77.167969, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.677264 ], [ -76.816406, -73.677264 ], [ -76.816406, -73.775780 ], [ -76.640625, -73.775780 ], [ -76.640625, -73.873717 ], [ -76.464844, -73.873717 ], [ -76.464844, -73.971078 ], [ -75.761719, -73.971078 ], [ -75.761719, -73.922469 ], [ -75.058594, -73.922469 ], [ -75.058594, -73.873717 ], [ -74.707031, -73.873717 ], [ -74.707031, -73.824820 ], [ -74.355469, -73.824820 ], [ -74.355469, -73.775780 ], [ -74.179688, -73.775780 ], [ -74.179688, -73.726595 ], [ -73.828125, -73.726595 ], [ -73.828125, -73.677264 ], [ -73.652344, -73.677264 ], [ -73.652344, -73.627789 ], [ -73.476562, -73.627789 ], [ -73.476562, -73.578167 ], [ -73.300781, -73.578167 ], [ -73.300781, -73.528399 ], [ -73.125000, -73.528399 ], [ -73.125000, -73.478485 ], [ -72.949219, -73.478485 ], [ -72.949219, -73.428424 ], [ -72.773438, -73.428424 ], [ -72.773438, -73.378215 ], [ -72.421875, -73.378215 ], [ -72.421875, -73.327858 ], [ -71.718750, -73.327858 ], [ -71.718750, -73.277353 ], [ -71.191406, -73.277353 ], [ -71.191406, -73.226700 ], [ -70.664062, -73.226700 ], [ -70.664062, -73.175897 ], [ -70.312500, -73.175897 ], [ -70.312500, -73.124945 ], [ -69.785156, -73.124945 ], [ -69.785156, -73.073844 ], [ -69.082031, -73.073844 ], [ -69.082031, -73.022592 ], [ -68.730469, -73.022592 ], [ -68.730469, -72.971189 ], [ -68.554688, -72.971189 ], [ -68.554688, -72.919635 ], [ -68.203125, -72.919635 ], [ -68.203125, -72.867930 ], [ -68.027344, -72.867930 ], [ -68.027344, -72.816074 ], [ -67.851562, -72.816074 ], [ -67.851562, -72.711903 ], [ -67.675781, -72.711903 ], [ -67.675781, -72.659588 ], [ -67.500000, -72.659588 ], [ -67.500000, -72.554498 ], [ -67.324219, -72.554498 ], [ -67.324219, -72.289067 ], [ -67.148438, -72.289067 ], [ -67.148438, -71.856229 ], [ -67.324219, -71.856229 ], [ -67.324219, -71.469124 ], [ -67.500000, -71.469124 ], [ -67.500000, -71.187754 ], [ -67.675781, -71.187754 ], [ -67.675781, -70.959697 ], [ -67.851562, -70.959697 ], [ -67.851562, -70.786910 ], [ -68.027344, -70.786910 ], [ -68.027344, -70.554179 ], [ -68.203125, -70.554179 ], [ -68.203125, -70.377854 ], [ -68.378906, -70.377854 ], [ -68.378906, -70.199994 ], [ -68.554688, -70.199994 ], [ -68.554688, -69.534518 ], [ -68.378906, -69.534518 ], [ -68.378906, -69.287257 ], [ -68.203125, -69.287257 ], [ -68.203125, -69.099940 ], [ -68.027344, -69.099940 ], [ -68.027344, -68.911005 ], [ -67.851562, -68.911005 ], [ -67.851562, -68.784144 ], [ -67.675781, -68.784144 ], [ -67.675781, -68.656555 ], [ -67.500000, -68.656555 ], [ -67.500000, -67.941650 ], [ -67.675781, -67.941650 ], [ -67.675781, -67.272043 ], [ -67.500000, -67.272043 ], [ -67.500000, -66.998844 ], [ -67.324219, -66.998844 ], [ -67.324219, -66.861082 ], [ -67.148438, -66.861082 ], [ -67.148438, -66.791909 ], [ -66.972656, -66.791909 ], [ -66.972656, -66.722541 ], [ -66.796875, -66.722541 ], [ -66.796875, -66.652977 ], [ -66.621094, -66.652977 ], [ -66.621094, -66.583217 ], [ -66.445312, -66.583217 ], [ -66.445312, -66.443107 ], [ -66.269531, -66.443107 ], [ -66.269531, -66.302205 ], [ -66.093750, -66.302205 ], [ -66.093750, -66.231457 ], [ -65.917969, -66.231457 ], [ -65.917969, -66.160511 ], [ -62.050781, -66.160511 ] ] ], [ [ [ -70.136719, -68.911005 ], [ -70.136719, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.162558 ], [ -69.785156, -69.162558 ], [ -69.785156, -69.349339 ], [ -69.609375, -69.349339 ], [ -69.609375, -69.534518 ], [ -69.433594, -69.534518 ], [ -69.433594, -69.718107 ], [ -69.257812, -69.718107 ], [ -69.257812, -69.960439 ], [ -69.082031, -69.960439 ], [ -69.082031, -70.199994 ], [ -68.906250, -70.199994 ], [ -68.906250, -70.436799 ], [ -68.730469, -70.436799 ], [ -68.730469, -70.612614 ], [ -68.554688, -70.612614 ], [ -68.554688, -70.844673 ], [ -68.378906, -70.844673 ], [ -68.378906, -71.635993 ], [ -68.554688, -71.635993 ], [ -68.554688, -72.019729 ], [ -68.730469, -72.019729 ], [ -68.730469, -72.181804 ], [ -68.906250, -72.181804 ], [ -68.906250, -72.235514 ], [ -69.609375, -72.235514 ], [ -69.609375, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.342464 ], [ -70.312500, -72.342464 ], [ -70.312500, -72.395706 ], [ -70.488281, -72.395706 ], [ -70.488281, -72.448792 ], [ -70.839844, -72.448792 ], [ -70.839844, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.421875, -72.448792 ], [ -72.246094, -72.448792 ], [ -72.246094, -72.289067 ], [ -72.070312, -72.289067 ], [ -72.070312, -72.181804 ], [ -71.894531, -72.181804 ], [ -71.894531, -72.073911 ], [ -72.070312, -72.073911 ], [ -72.070312, -72.127936 ], [ -72.421875, -72.127936 ], [ -72.421875, -72.181804 ], [ -72.773438, -72.181804 ], [ -72.773438, -72.235514 ], [ -73.300781, -72.235514 ], [ -73.300781, -72.289067 ], [ -73.828125, -72.289067 ], [ -73.828125, -72.342464 ], [ -74.355469, -72.342464 ], [ -74.355469, -72.289067 ], [ -74.531250, -72.289067 ], [ -74.531250, -72.181804 ], [ -74.707031, -72.181804 ], [ -74.707031, -72.127936 ], [ -74.882812, -72.127936 ], [ -74.882812, -71.856229 ], [ -75.058594, -71.856229 ], [ -75.058594, -71.635993 ], [ -74.882812, -71.635993 ], [ -74.882812, -71.580532 ], [ -74.707031, -71.580532 ], [ -74.707031, -71.524909 ], [ -74.531250, -71.524909 ], [ -74.531250, -71.469124 ], [ -74.355469, -71.469124 ], [ -74.355469, -71.413177 ], [ -74.179688, -71.413177 ], [ -74.179688, -71.357067 ], [ -74.003906, -71.357067 ], [ -74.003906, -71.300793 ], [ -73.828125, -71.300793 ], [ -73.828125, -71.244356 ], [ -73.652344, -71.244356 ], [ -73.652344, -71.187754 ], [ -73.300781, -71.187754 ], [ -73.300781, -71.130988 ], [ -72.773438, -71.130988 ], [ -72.773438, -71.187754 ], [ -72.070312, -71.187754 ], [ -72.070312, -71.074056 ], [ -71.894531, -71.074056 ], [ -71.894531, -70.844673 ], [ -71.718750, -70.844673 ], [ -71.718750, -69.472969 ], [ -71.542969, -69.472969 ], [ -71.542969, -69.287257 ], [ -71.367188, -69.287257 ], [ -71.367188, -69.162558 ], [ -71.191406, -69.162558 ], [ -71.191406, -69.037142 ], [ -71.015625, -69.037142 ], [ -71.015625, -68.974164 ], [ -70.664062, -68.974164 ], [ -70.664062, -68.911005 ], [ -70.136719, -68.911005 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.406250, -77.841848 ], [ -46.406250, -77.878814 ], [ -46.230469, -77.878814 ], [ -46.230469, -77.915669 ], [ -45.878906, -77.915669 ], [ -45.878906, -77.952414 ], [ -45.703125, -77.952414 ], [ -45.703125, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.025574 ], [ -45.175781, -78.025574 ], [ -45.175781, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.134493 ], [ -44.824219, -78.134493 ], [ -44.824219, -78.206563 ], [ -44.648438, -78.206563 ], [ -44.648438, -78.242436 ], [ -44.472656, -78.242436 ], [ -44.472656, -78.313860 ], [ -44.296875, -78.313860 ], [ -44.296875, -78.384855 ], [ -44.121094, -78.384855 ], [ -44.121094, -79.335219 ], [ -50.625000, -79.335219 ], [ -50.625000, -79.269962 ], [ -50.449219, -79.269962 ], [ -50.449219, -79.138260 ], [ -50.273438, -79.138260 ], [ -50.273438, -79.004962 ], [ -50.097656, -79.004962 ], [ -50.097656, -78.870048 ], [ -49.921875, -78.870048 ], [ -49.921875, -78.767792 ], [ -49.746094, -78.767792 ], [ -49.746094, -78.630006 ], [ -49.570312, -78.630006 ], [ -49.570312, -78.525573 ], [ -49.394531, -78.525573 ], [ -49.394531, -78.420193 ], [ -49.218750, -78.420193 ], [ -49.218750, -78.313860 ], [ -49.042969, -78.313860 ], [ -49.042969, -78.206563 ], [ -48.867188, -78.206563 ], [ -48.867188, -78.098296 ], [ -48.691406, -78.098296 ], [ -48.691406, -78.025574 ], [ -47.988281, -78.025574 ], [ -47.988281, -77.989049 ], [ -47.636719, -77.989049 ], [ -47.636719, -77.952414 ], [ -47.460938, -77.952414 ], [ -47.460938, -77.915669 ], [ -47.285156, -77.915669 ], [ -47.285156, -77.878814 ], [ -46.933594, -77.878814 ], [ -46.933594, -77.841848 ], [ -46.406250, -77.841848 ] ] ], [ [ [ -62.226562, -66.160511 ], [ -62.226562, -66.231457 ], [ -62.402344, -66.231457 ], [ -62.402344, -66.302205 ], [ -62.753906, -66.302205 ], [ -62.753906, -66.372755 ], [ -63.281250, -66.372755 ], [ -63.281250, -66.443107 ], [ -63.808594, -66.443107 ], [ -63.808594, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -66.652977 ], [ -64.160156, -66.652977 ], [ -64.160156, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.861082 ], [ -64.511719, -66.861082 ], [ -64.511719, -66.930060 ], [ -64.687500, -66.930060 ], [ -64.687500, -67.067433 ], [ -64.863281, -67.067433 ], [ -64.863281, -67.135829 ], [ -65.039062, -67.135829 ], [ -65.039062, -67.204032 ], [ -65.214844, -67.204032 ], [ -65.214844, -67.339861 ], [ -65.390625, -67.339861 ], [ -65.390625, -67.474922 ], [ -65.566406, -67.474922 ], [ -65.566406, -67.742759 ], [ -65.742188, -67.742759 ], [ -65.742188, -68.073305 ], [ -65.566406, -68.073305 ], [ -65.566406, -68.269387 ], [ -65.390625, -68.269387 ], [ -65.390625, -68.399180 ], [ -65.214844, -68.399180 ], [ -65.214844, -68.528235 ], [ -65.039062, -68.528235 ], [ -65.039062, -68.656555 ], [ -64.863281, -68.656555 ], [ -64.863281, -68.720441 ], [ -64.687500, -68.720441 ], [ -64.687500, -68.784144 ], [ -64.335938, -68.784144 ], [ -64.335938, -68.847665 ], [ -64.160156, -68.847665 ], [ -64.160156, -68.911005 ], [ -63.984375, -68.911005 ], [ -63.984375, -68.974164 ], [ -63.808594, -68.974164 ], [ -63.808594, -69.037142 ], [ -63.632812, -69.037142 ], [ -63.632812, -69.162558 ], [ -63.457031, -69.162558 ], [ -63.457031, -69.224997 ], [ -63.281250, -69.224997 ], [ -63.281250, -69.349339 ], [ -63.105469, -69.349339 ], [ -63.105469, -69.534518 ], [ -62.929688, -69.534518 ], [ -62.929688, -69.718107 ], [ -62.753906, -69.718107 ], [ -62.753906, -69.900118 ], [ -62.578125, -69.900118 ], [ -62.578125, -70.199994 ], [ -62.402344, -70.199994 ], [ -62.402344, -70.436799 ], [ -62.226562, -70.436799 ], [ -62.226562, -70.554179 ], [ -62.050781, -70.554179 ], [ -62.050781, -70.670881 ], [ -61.875000, -70.670881 ], [ -61.875000, -70.786910 ], [ -61.699219, -70.786910 ], [ -61.699219, -71.016960 ], [ -61.523438, -71.016960 ], [ -61.523438, -72.073911 ], [ -61.347656, -72.073911 ], [ -61.347656, -72.289067 ], [ -61.171875, -72.289067 ], [ -61.171875, -72.867930 ], [ -60.996094, -72.867930 ], [ -60.996094, -73.073844 ], [ -60.820312, -73.073844 ], [ -60.820312, -73.428424 ], [ -60.996094, -73.428424 ], [ -60.996094, -73.775780 ], [ -61.171875, -73.775780 ], [ -61.171875, -73.873717 ], [ -61.347656, -73.873717 ], [ -61.347656, -74.019543 ], [ -61.523438, -74.019543 ], [ -61.523438, -74.164085 ], [ -61.699219, -74.164085 ], [ -61.699219, -74.259738 ], [ -61.875000, -74.259738 ], [ -61.875000, -74.354828 ], [ -62.050781, -74.354828 ], [ -62.050781, -74.402163 ], [ -62.226562, -74.402163 ], [ -62.226562, -74.449358 ], [ -62.578125, -74.449358 ], [ -62.578125, -74.496413 ], [ -63.105469, -74.496413 ], [ -63.105469, -74.543330 ], [ -63.457031, -74.543330 ], [ -63.457031, -74.636748 ], [ -63.632812, -74.636748 ], [ -63.632812, -74.821934 ], [ -63.808594, -74.821934 ], [ -63.808594, -74.959392 ], [ -63.984375, -74.959392 ], [ -63.984375, -75.050354 ], [ -64.160156, -75.050354 ], [ -64.160156, -75.140778 ], [ -64.335938, -75.140778 ], [ -64.335938, -75.230667 ], [ -64.511719, -75.230667 ], [ -64.511719, -75.275413 ], [ -64.687500, -75.275413 ], [ -64.687500, -75.320025 ], [ -64.863281, -75.320025 ], [ -64.863281, -75.364506 ], [ -65.039062, -75.364506 ], [ -65.039062, -75.408854 ], [ -65.214844, -75.408854 ], [ -65.214844, -75.497157 ], [ -65.390625, -75.497157 ], [ -65.390625, -75.541113 ], [ -65.566406, -75.541113 ], [ -65.566406, -75.584937 ], [ -65.742188, -75.584937 ], [ -65.742188, -75.628632 ], [ -66.093750, -75.628632 ], [ -66.093750, -75.672197 ], [ -66.445312, -75.672197 ], [ -66.445312, -75.715633 ], [ -66.972656, -75.715633 ], [ -66.972656, -75.758940 ], [ -67.324219, -75.758940 ], [ -67.324219, -75.802118 ], [ -67.675781, -75.802118 ], [ -67.675781, -75.845169 ], [ -67.851562, -75.845169 ], [ -67.851562, -75.888091 ], [ -68.027344, -75.888091 ], [ -68.027344, -75.930885 ], [ -68.378906, -75.930885 ], [ -68.378906, -75.973553 ], [ -68.554688, -75.973553 ], [ -68.554688, -76.016094 ], [ -68.906250, -76.016094 ], [ -68.906250, -76.058508 ], [ -69.082031, -76.058508 ], [ -69.082031, -76.100796 ], [ -69.433594, -76.100796 ], [ -69.433594, -76.142958 ], [ -69.785156, -76.142958 ], [ -69.785156, -76.184995 ], [ -69.960938, -76.184995 ], [ -69.960938, -76.268695 ], [ -70.136719, -76.268695 ], [ -70.136719, -76.351896 ], [ -70.312500, -76.351896 ], [ -70.312500, -76.475773 ], [ -70.488281, -76.475773 ], [ -70.488281, -76.557743 ], [ -70.664062, -76.557743 ], [ -70.664062, -76.598545 ], [ -71.367188, -76.598545 ], [ -71.367188, -76.639226 ], [ -73.300781, -76.639226 ], [ -73.300781, -76.598545 ], [ -74.355469, -76.598545 ], [ -74.355469, -76.639226 ], [ -75.058594, -76.639226 ], [ -75.058594, -76.679785 ], [ -77.343750, -76.679785 ], [ -77.343750, -76.800739 ], [ -77.167969, -76.800739 ], [ -77.167969, -76.999935 ], [ -76.992188, -76.999935 ], [ -76.992188, -77.118032 ], [ -76.640625, -77.118032 ], [ -76.640625, -77.157163 ], [ -76.289062, -77.157163 ], [ -76.289062, -77.196176 ], [ -75.937500, -77.196176 ], [ -75.937500, -77.235074 ], [ -75.585938, -77.235074 ], [ -75.585938, -77.273855 ], [ -75.410156, -77.273855 ], [ -75.410156, -77.312520 ], [ -75.234375, -77.312520 ], [ -75.234375, -77.351070 ], [ -75.058594, -77.351070 ], [ -75.058594, -77.389504 ], [ -74.882812, -77.389504 ], [ -74.882812, -77.466028 ], [ -74.707031, -77.466028 ], [ -74.707031, -77.504119 ], [ -74.531250, -77.504119 ], [ -74.531250, -77.542096 ], [ -74.355469, -77.542096 ], [ -74.355469, -77.617709 ], [ -74.179688, -77.617709 ], [ -74.179688, -77.730282 ], [ -74.003906, -77.730282 ], [ -74.003906, -77.841848 ], [ -73.828125, -77.841848 ], [ -73.828125, -77.915669 ], [ -74.003906, -77.915669 ], [ -74.003906, -77.989049 ], [ -74.179688, -77.989049 ], [ -74.179688, -78.025574 ], [ -74.355469, -78.025574 ], [ -74.355469, -78.098296 ], [ -74.531250, -78.098296 ], [ -74.531250, -78.134493 ], [ -74.707031, -78.134493 ], [ -74.707031, -78.206563 ], [ -75.234375, -78.206563 ], [ -75.234375, -78.170582 ], [ -75.937500, -78.170582 ], [ -75.937500, -78.134493 ], [ -76.464844, -78.134493 ], [ -76.464844, -78.098296 ], [ -76.640625, -78.098296 ], [ -76.640625, -78.134493 ], [ -76.816406, -78.134493 ], [ -76.816406, -78.170582 ], [ -76.992188, -78.170582 ], [ -76.992188, -78.206563 ], [ -77.167969, -78.206563 ], [ -77.167969, -78.242436 ], [ -77.519531, -78.242436 ], [ -77.519531, -78.278201 ], [ -77.695312, -78.278201 ], [ -77.695312, -78.313860 ], [ -77.871094, -78.313860 ], [ -77.871094, -78.349411 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.204309 ], [ -77.871094, -79.204309 ], [ -77.871094, -79.269962 ], [ -77.695312, -79.269962 ], [ -77.695312, -79.335219 ], [ -90.878906, -79.335219 ], [ -90.878906, -73.327858 ], [ -90.351562, -73.327858 ], [ -90.351562, -73.277353 ], [ -90.175781, -73.277353 ], [ -90.175781, -73.226700 ], [ -90.000000, -73.226700 ], [ -90.000000, -73.073844 ], [ -89.824219, -73.073844 ], [ -89.824219, -72.919635 ], [ -89.648438, -72.919635 ], [ -89.648438, -72.816074 ], [ -89.472656, -72.816074 ], [ -89.472656, -72.659588 ], [ -89.296875, -72.659588 ], [ -89.296875, -72.607120 ], [ -89.121094, -72.607120 ], [ -89.121094, -72.711903 ], [ -88.945312, -72.711903 ], [ -88.945312, -72.816074 ], [ -88.769531, -72.816074 ], [ -88.769531, -72.919635 ], [ -88.593750, -72.919635 ], [ -88.593750, -73.022592 ], [ -88.242188, -73.022592 ], [ -88.242188, -73.073844 ], [ -87.890625, -73.073844 ], [ -87.890625, -73.124945 ], [ -87.539062, -73.124945 ], [ -87.539062, -73.175897 ], [ -87.011719, -73.175897 ], [ -87.011719, -73.124945 ], [ -86.308594, -73.124945 ], [ -86.308594, -73.073844 ], [ -86.132812, -73.073844 ], [ -86.132812, -73.124945 ], [ -85.957031, -73.124945 ], [ -85.957031, -73.226700 ], [ -85.781250, -73.226700 ], [ -85.781250, -73.277353 ], [ -85.605469, -73.277353 ], [ -85.605469, -73.378215 ], [ -85.429688, -73.378215 ], [ -85.429688, -73.478485 ], [ -83.847656, -73.478485 ], [ -83.847656, -73.528399 ], [ -83.496094, -73.528399 ], [ -83.496094, -73.578167 ], [ -83.144531, -73.578167 ], [ -83.144531, -73.627789 ], [ -82.792969, -73.627789 ], [ -82.792969, -73.677264 ], [ -82.441406, -73.677264 ], [ -82.441406, -73.726595 ], [ -82.089844, -73.726595 ], [ -82.089844, -73.775780 ], [ -81.738281, -73.775780 ], [ -81.738281, -73.824820 ], [ -81.386719, -73.824820 ], [ -81.386719, -73.726595 ], [ -81.210938, -73.726595 ], [ -81.210938, -73.627789 ], [ -81.035156, -73.627789 ], [ -81.035156, -73.528399 ], [ -80.859375, -73.528399 ], [ -80.859375, -73.428424 ], [ -80.683594, -73.428424 ], [ -80.683594, -73.327858 ], [ -80.507812, -73.327858 ], [ -80.507812, -73.226700 ], [ -80.332031, -73.226700 ], [ -80.332031, -73.175897 ], [ -80.156250, -73.175897 ], [ -80.156250, -73.277353 ], [ -79.980469, -73.277353 ], [ -79.980469, -73.327858 ], [ -79.804688, -73.327858 ], [ -79.804688, -73.378215 ], [ -79.628906, -73.378215 ], [ -79.628906, -73.478485 ], [ -78.925781, -73.478485 ], [ -78.925781, -73.428424 ], [ -78.222656, -73.428424 ], [ -78.222656, -73.378215 ], [ -78.046875, -73.378215 ], [ -78.046875, -73.428424 ], [ -77.871094, -73.428424 ], [ -77.871094, -73.478485 ], [ -77.695312, -73.478485 ], [ -77.695312, -73.528399 ], [ -77.343750, -73.528399 ], [ -77.343750, -73.578167 ], [ -77.167969, -73.578167 ], [ -77.167969, -73.627789 ], [ -76.992188, -73.627789 ], [ -76.992188, -73.677264 ], [ -76.816406, -73.677264 ], [ -76.816406, -73.775780 ], [ -76.640625, -73.775780 ], [ -76.640625, -73.824820 ], [ -76.464844, -73.824820 ], [ -76.464844, -73.922469 ], [ -75.937500, -73.922469 ], [ -75.937500, -73.873717 ], [ -75.234375, -73.873717 ], [ -75.234375, -73.824820 ], [ -74.882812, -73.824820 ], [ -74.882812, -73.775780 ], [ -74.531250, -73.775780 ], [ -74.531250, -73.726595 ], [ -74.355469, -73.726595 ], [ -74.355469, -73.677264 ], [ -74.003906, -73.677264 ], [ -74.003906, -73.627789 ], [ -73.828125, -73.627789 ], [ -73.828125, -73.578167 ], [ -73.652344, -73.578167 ], [ -73.652344, -73.528399 ], [ -73.300781, -73.528399 ], [ -73.300781, -73.478485 ], [ -73.125000, -73.478485 ], [ -73.125000, -73.428424 ], [ -72.949219, -73.428424 ], [ -72.949219, -73.378215 ], [ -72.597656, -73.378215 ], [ -72.597656, -73.327858 ], [ -72.246094, -73.327858 ], [ -72.246094, -73.277353 ], [ -71.894531, -73.277353 ], [ -71.894531, -73.226700 ], [ -71.191406, -73.226700 ], [ -71.191406, -73.175897 ], [ -70.488281, -73.175897 ], [ -70.488281, -73.124945 ], [ -69.960938, -73.124945 ], [ -69.960938, -73.073844 ], [ -69.609375, -73.073844 ], [ -69.609375, -73.022592 ], [ -69.257812, -73.022592 ], [ -69.257812, -72.971189 ], [ -68.906250, -72.971189 ], [ -68.906250, -72.919635 ], [ -68.554688, -72.919635 ], [ -68.554688, -72.867930 ], [ -68.378906, -72.867930 ], [ -68.378906, -72.816074 ], [ -68.027344, -72.816074 ], [ -68.027344, -72.711903 ], [ -67.851562, -72.711903 ], [ -67.851562, -72.607120 ], [ -67.675781, -72.607120 ], [ -67.675781, -72.501722 ], [ -67.500000, -72.501722 ], [ -67.500000, -72.342464 ], [ -67.324219, -72.342464 ], [ -67.324219, -72.127936 ], [ -67.148438, -72.127936 ], [ -67.148438, -71.856229 ], [ -67.324219, -71.856229 ], [ -67.324219, -71.580532 ], [ -67.500000, -71.580532 ], [ -67.500000, -71.357067 ], [ -67.675781, -71.357067 ], [ -67.675781, -71.187754 ], [ -67.851562, -71.187754 ], [ -67.851562, -70.959697 ], [ -68.027344, -70.959697 ], [ -68.027344, -70.786910 ], [ -68.203125, -70.786910 ], [ -68.203125, -70.554179 ], [ -68.378906, -70.554179 ], [ -68.378906, -70.259452 ], [ -68.554688, -70.259452 ], [ -68.554688, -69.224997 ], [ -68.378906, -69.224997 ], [ -68.378906, -69.099940 ], [ -68.203125, -69.099940 ], [ -68.203125, -68.974164 ], [ -68.027344, -68.974164 ], [ -68.027344, -68.847665 ], [ -67.851562, -68.847665 ], [ -67.851562, -68.656555 ], [ -67.675781, -68.656555 ], [ -67.675781, -68.334376 ], [ -67.500000, -68.334376 ], [ -67.500000, -67.941650 ], [ -67.675781, -67.941650 ], [ -67.675781, -67.474922 ], [ -67.851562, -67.474922 ], [ -67.851562, -67.204032 ], [ -67.675781, -67.204032 ], [ -67.675781, -67.067433 ], [ -67.500000, -67.067433 ], [ -67.500000, -66.930060 ], [ -67.324219, -66.930060 ], [ -67.324219, -66.861082 ], [ -67.148438, -66.861082 ], [ -67.148438, -66.722541 ], [ -66.972656, -66.722541 ], [ -66.972656, -66.652977 ], [ -66.796875, -66.652977 ], [ -66.796875, -66.583217 ], [ -66.621094, -66.583217 ], [ -66.621094, -66.443107 ], [ -66.445312, -66.443107 ], [ -66.445312, -66.372755 ], [ -66.269531, -66.372755 ], [ -66.269531, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -66.160511 ], [ -62.226562, -66.160511 ] ] ], [ [ [ -70.312500, -68.847665 ], [ -70.312500, -68.911005 ], [ -70.136719, -68.911005 ], [ -70.136719, -69.037142 ], [ -69.960938, -69.037142 ], [ -69.960938, -69.162558 ], [ -69.785156, -69.162558 ], [ -69.785156, -69.411242 ], [ -69.609375, -69.411242 ], [ -69.609375, -69.718107 ], [ -69.433594, -69.718107 ], [ -69.433594, -69.839622 ], [ -69.257812, -69.839622 ], [ -69.257812, -69.960439 ], [ -69.082031, -69.960439 ], [ -69.082031, -70.140364 ], [ -68.906250, -70.140364 ], [ -68.906250, -70.377854 ], [ -68.730469, -70.377854 ], [ -68.730469, -70.728979 ], [ -68.554688, -70.728979 ], [ -68.554688, -71.130988 ], [ -68.378906, -71.130988 ], [ -68.378906, -71.580532 ], [ -68.554688, -71.580532 ], [ -68.554688, -71.856229 ], [ -68.730469, -71.856229 ], [ -68.730469, -72.073911 ], [ -68.906250, -72.073911 ], [ -68.906250, -72.181804 ], [ -69.257812, -72.181804 ], [ -69.257812, -72.235514 ], [ -69.609375, -72.235514 ], [ -69.609375, -72.289067 ], [ -69.960938, -72.289067 ], [ -69.960938, -72.342464 ], [ -70.312500, -72.342464 ], [ -70.312500, -72.395706 ], [ -70.664062, -72.395706 ], [ -70.664062, -72.448792 ], [ -71.015625, -72.448792 ], [ -71.015625, -72.501722 ], [ -71.894531, -72.501722 ], [ -71.894531, -72.448792 ], [ -72.421875, -72.448792 ], [ -72.421875, -72.395706 ], [ -72.246094, -72.395706 ], [ -72.246094, -72.181804 ], [ -72.070312, -72.181804 ], [ -72.070312, -72.073911 ], [ -72.246094, -72.073911 ], [ -72.246094, -72.127936 ], [ -72.773438, -72.127936 ], [ -72.773438, -72.181804 ], [ -73.300781, -72.181804 ], [ -73.300781, -72.235514 ], [ -73.652344, -72.235514 ], [ -73.652344, -72.289067 ], [ -74.003906, -72.289067 ], [ -74.003906, -72.342464 ], [ -74.531250, -72.342464 ], [ -74.531250, -72.235514 ], [ -74.707031, -72.235514 ], [ -74.707031, -72.181804 ], [ -74.882812, -72.181804 ], [ -74.882812, -72.073911 ], [ -75.058594, -72.073911 ], [ -75.058594, -71.635993 ], [ -74.882812, -71.635993 ], [ -74.882812, -71.580532 ], [ -74.707031, -71.580532 ], [ -74.707031, -71.524909 ], [ -74.531250, -71.524909 ], [ -74.531250, -71.413177 ], [ -74.355469, -71.413177 ], [ -74.355469, -71.357067 ], [ -74.179688, -71.357067 ], [ -74.179688, -71.300793 ], [ -74.003906, -71.300793 ], [ -74.003906, -71.244356 ], [ -73.652344, -71.244356 ], [ -73.652344, -71.187754 ], [ -73.300781, -71.187754 ], [ -73.300781, -71.130988 ], [ -72.949219, -71.130988 ], [ -72.949219, -71.187754 ], [ -72.246094, -71.187754 ], [ -72.246094, -71.074056 ], [ -72.070312, -71.074056 ], [ -72.070312, -70.844673 ], [ -71.894531, -70.844673 ], [ -71.894531, -69.411242 ], [ -71.718750, -69.411242 ], [ -71.718750, -69.287257 ], [ -71.542969, -69.287257 ], [ -71.542969, -69.162558 ], [ -71.367188, -69.162558 ], [ -71.367188, -69.037142 ], [ -71.191406, -69.037142 ], [ -71.191406, -68.974164 ], [ -70.839844, -68.974164 ], [ -70.839844, -68.911005 ], [ -70.488281, -68.911005 ], [ -70.488281, -68.847665 ], [ -70.312500, -68.847665 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.015625, -53.852527 ], [ -71.718750, -53.852527 ], [ -71.718750, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.644638 ], [ -72.421875, -53.644638 ], [ -72.421875, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.330873 ], [ -73.125000, -53.330873 ], [ -73.125000, -53.120405 ], [ -73.300781, -53.120405 ], [ -73.300781, -53.014783 ], [ -73.476562, -53.014783 ], [ -73.476562, -52.908902 ], [ -73.652344, -52.908902 ], [ -73.652344, -52.802761 ], [ -73.828125, -52.802761 ], [ -73.828125, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.589701 ], [ -74.355469, -52.589701 ], [ -74.355469, -52.482780 ], [ -74.531250, -52.482780 ], [ -74.531250, -52.375599 ], [ -74.882812, -52.375599 ], [ -74.882812, -52.160455 ], [ -75.058594, -52.160455 ], [ -75.058594, -51.835778 ], [ -75.234375, -51.835778 ], [ -75.234375, -51.399206 ], [ -75.058594, -51.399206 ], [ -75.058594, -50.958427 ], [ -75.234375, -50.958427 ], [ -75.234375, -50.625073 ], [ -75.410156, -50.625073 ], [ -75.410156, -49.610710 ], [ -75.585938, -49.610710 ], [ -75.585938, -48.458352 ], [ -75.410156, -48.458352 ], [ -75.410156, -47.989922 ], [ -75.234375, -47.989922 ], [ -75.234375, -47.754098 ], [ -75.058594, -47.754098 ], [ -75.058594, -47.635784 ], [ -74.882812, -47.635784 ], [ -74.882812, -47.517201 ], [ -74.707031, -47.517201 ], [ -74.707031, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.159840 ], [ -74.355469, -47.159840 ], [ -74.355469, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.920255 ], [ -74.707031, -46.920255 ], [ -74.707031, -46.800059 ], [ -75.410156, -46.800059 ], [ -75.410156, -46.437857 ], [ -75.234375, -46.437857 ], [ -75.234375, -46.195042 ], [ -75.058594, -46.195042 ], [ -75.058594, -46.073231 ], [ -74.882812, -46.073231 ], [ -74.882812, -45.828799 ], [ -74.707031, -45.828799 ], [ -74.707031, -45.336702 ], [ -74.531250, -45.336702 ], [ -74.531250, -44.590467 ], [ -74.355469, -44.590467 ], [ -74.355469, -44.213710 ], [ -74.003906, -44.213710 ], [ -74.003906, -44.339565 ], [ -73.652344, -44.339565 ], [ -73.652344, -44.465151 ], [ -73.300781, -44.465151 ], [ -73.300781, -44.213710 ], [ -73.125000, -44.213710 ], [ -73.125000, -43.452919 ], [ -72.949219, -43.452919 ], [ -72.949219, -42.811522 ], [ -72.773438, -42.811522 ], [ -72.773438, -42.423457 ], [ -73.125000, -42.423457 ], [ -73.125000, -42.293564 ], [ -73.476562, -42.293564 ], [ -73.476562, -42.811522 ], [ -73.652344, -42.811522 ], [ -73.652344, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -43.197167 ], [ -74.355469, -43.197167 ], [ -74.355469, -42.940339 ], [ -74.179688, -42.940339 ], [ -74.179688, -42.163403 ], [ -74.003906, -42.163403 ], [ -74.003906, -41.112469 ], [ -73.828125, -41.112469 ], [ -73.828125, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -41.508577 ], [ -71.718750, -41.508577 ], [ -71.718750, -42.163403 ], [ -71.894531, -42.163403 ], [ -71.894531, -42.293564 ], [ -72.070312, -42.293564 ], [ -72.070312, -42.940339 ], [ -71.894531, -42.940339 ], [ -71.894531, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.834527 ], [ -71.542969, -43.834527 ], [ -71.542969, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -44.339565 ], [ -71.542969, -44.339565 ], [ -71.542969, -44.465151 ], [ -71.367188, -44.465151 ], [ -71.367188, -44.715514 ], [ -71.191406, -44.715514 ], [ -71.191406, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.964798 ], [ -71.718750, -44.964798 ], [ -71.718750, -45.336702 ], [ -71.542969, -45.336702 ], [ -71.542969, -45.951150 ], [ -71.718750, -45.951150 ], [ -71.718750, -46.679594 ], [ -71.894531, -46.679594 ], [ -71.894531, -47.159840 ], [ -72.070312, -47.159840 ], [ -72.070312, -47.398349 ], [ -72.246094, -47.398349 ], [ -72.246094, -47.635784 ], [ -72.421875, -47.635784 ], [ -72.421875, -47.989922 ], [ -72.246094, -47.989922 ], [ -72.246094, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -48.806863 ], [ -72.597656, -48.806863 ], [ -72.597656, -49.037868 ], [ -72.949219, -49.037868 ], [ -72.949219, -49.152970 ], [ -73.300781, -49.152970 ], [ -73.300781, -49.267805 ], [ -73.476562, -49.267805 ], [ -73.476562, -49.837982 ], [ -73.300781, -49.837982 ], [ -73.300781, -50.513427 ], [ -73.125000, -50.513427 ], [ -73.125000, -50.736455 ], [ -72.421875, -50.736455 ], [ -72.421875, -50.625073 ], [ -72.246094, -50.625073 ], [ -72.246094, -51.618017 ], [ -72.070312, -51.618017 ], [ -72.070312, -51.944265 ], [ -71.894531, -51.944265 ], [ -71.894531, -52.052490 ], [ -70.839844, -52.052490 ], [ -70.839844, -52.160455 ], [ -69.082031, -52.160455 ], [ -69.082031, -52.268157 ], [ -69.433594, -52.268157 ], [ -69.433594, -52.375599 ], [ -69.609375, -52.375599 ], [ -69.609375, -52.482780 ], [ -69.785156, -52.482780 ], [ -69.785156, -52.589701 ], [ -69.960938, -52.589701 ], [ -69.960938, -52.696361 ], [ -70.312500, -52.696361 ], [ -70.312500, -52.802761 ], [ -70.664062, -52.802761 ], [ -70.664062, -52.908902 ], [ -70.839844, -52.908902 ], [ -70.839844, -53.435719 ], [ -71.015625, -53.435719 ], [ -71.015625, -53.852527 ] ] ], [ [ [ -74.531250, -52.908902 ], [ -74.179688, -52.908902 ], [ -74.179688, -53.014783 ], [ -73.828125, -53.014783 ], [ -73.828125, -53.120405 ], [ -73.652344, -53.120405 ], [ -73.652344, -53.225768 ], [ -73.476562, -53.225768 ], [ -73.476562, -53.330873 ], [ -73.300781, -53.330873 ], [ -73.300781, -53.435719 ], [ -72.949219, -53.435719 ], [ -72.949219, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.644638 ], [ -72.597656, -53.644638 ], [ -72.597656, -53.748711 ], [ -72.246094, -53.748711 ], [ -72.246094, -53.852527 ], [ -71.894531, -53.852527 ], [ -71.894531, -53.956086 ], [ -71.542969, -53.956086 ], [ -71.542969, -54.059388 ], [ -71.015625, -54.059388 ], [ -71.015625, -53.852527 ], [ -70.839844, -53.852527 ], [ -70.839844, -53.748711 ], [ -70.664062, -53.748711 ], [ -70.664062, -53.540307 ], [ -70.488281, -53.540307 ], [ -70.488281, -53.120405 ], [ -70.312500, -53.120405 ], [ -70.312500, -52.908902 ], [ -70.136719, -52.908902 ], [ -70.136719, -52.802761 ], [ -69.785156, -52.802761 ], [ -69.785156, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.589701 ], [ -69.257812, -52.589701 ], [ -69.257812, -52.482780 ], [ -69.082031, -52.482780 ], [ -69.082031, -52.589701 ], [ -68.554688, -52.589701 ], [ -68.554688, -54.876607 ], [ -66.972656, -54.876607 ], [ -66.972656, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -55.178868 ], [ -67.324219, -55.178868 ], [ -67.324219, -55.379110 ], [ -67.675781, -55.379110 ], [ -67.675781, -55.478853 ], [ -68.027344, -55.478853 ], [ -68.027344, -55.578345 ], [ -69.082031, -55.578345 ], [ -69.082031, -55.478853 ], [ -69.433594, -55.478853 ], [ -69.433594, -55.379110 ], [ -69.785156, -55.379110 ], [ -69.785156, -55.279115 ], [ -69.960938, -55.279115 ], [ -69.960938, -55.178868 ], [ -70.664062, -55.178868 ], [ -70.664062, -55.078367 ], [ -71.191406, -55.078367 ], [ -71.191406, -54.977614 ], [ -71.367188, -54.977614 ], [ -71.367188, -54.876607 ], [ -71.542969, -54.876607 ], [ -71.542969, -54.775346 ], [ -71.894531, -54.775346 ], [ -71.894531, -54.673831 ], [ -72.070312, -54.673831 ], [ -72.070312, -54.572062 ], [ -72.246094, -54.572062 ], [ -72.246094, -54.470038 ], [ -72.421875, -54.470038 ], [ -72.421875, -54.367759 ], [ -72.597656, -54.367759 ], [ -72.597656, -54.265224 ], [ -72.949219, -54.265224 ], [ -72.949219, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -54.059388 ], [ -73.300781, -54.059388 ], [ -73.300781, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.652344, -53.748711 ], [ -73.652344, -53.644638 ], [ -73.828125, -53.644638 ], [ -73.828125, -53.540307 ], [ -74.003906, -53.540307 ], [ -74.003906, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.225768 ], [ -74.355469, -53.225768 ], [ -74.355469, -53.120405 ], [ -74.531250, -53.120405 ], [ -74.531250, -52.908902 ] ] ], [ [ [ -74.531250, -52.908902 ], [ -74.707031, -52.908902 ], [ -74.707031, -52.802761 ], [ -74.531250, -52.802761 ], [ -74.531250, -52.908902 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.257812, -52.482780 ], [ -69.257812, -52.589701 ], [ -68.730469, -52.589701 ], [ -68.730469, -54.775346 ], [ -67.500000, -54.775346 ], [ -67.500000, -54.876607 ], [ -66.972656, -54.876607 ], [ -66.972656, -54.977614 ], [ -67.148438, -54.977614 ], [ -67.148438, -55.178868 ], [ -67.324219, -55.178868 ], [ -67.324219, -55.379110 ], [ -67.675781, -55.379110 ], [ -67.675781, -55.478853 ], [ -68.027344, -55.478853 ], [ -68.027344, -55.578345 ], [ -69.082031, -55.578345 ], [ -69.082031, -55.478853 ], [ -69.433594, -55.478853 ], [ -69.433594, -55.379110 ], [ -69.785156, -55.379110 ], [ -69.785156, -55.279115 ], [ -69.960938, -55.279115 ], [ -69.960938, -55.178868 ], [ -70.312500, -55.178868 ], [ -70.312500, -55.078367 ], [ -70.839844, -55.078367 ], [ -70.839844, -54.977614 ], [ -71.191406, -54.977614 ], [ -71.191406, -54.876607 ], [ -71.542969, -54.876607 ], [ -71.542969, -54.775346 ], [ -71.894531, -54.775346 ], [ -71.894531, -54.673831 ], [ -72.070312, -54.673831 ], [ -72.070312, -54.572062 ], [ -72.421875, -54.572062 ], [ -72.421875, -54.470038 ], [ -72.597656, -54.470038 ], [ -72.597656, -54.367759 ], [ -72.773438, -54.367759 ], [ -72.773438, -54.265224 ], [ -72.949219, -54.265224 ], [ -72.949219, -54.162434 ], [ -73.125000, -54.162434 ], [ -73.125000, -54.059388 ], [ -73.300781, -54.059388 ], [ -73.300781, -53.956086 ], [ -73.476562, -53.956086 ], [ -73.476562, -53.748711 ], [ -73.652344, -53.748711 ], [ -73.652344, -53.644638 ], [ -73.828125, -53.644638 ], [ -73.828125, -53.540307 ], [ -74.003906, -53.540307 ], [ -74.003906, -53.330873 ], [ -74.179688, -53.330873 ], [ -74.179688, -53.225768 ], [ -74.355469, -53.225768 ], [ -74.355469, -53.120405 ], [ -74.531250, -53.120405 ], [ -74.531250, -52.908902 ], [ -74.355469, -52.908902 ], [ -74.355469, -53.014783 ], [ -74.003906, -53.014783 ], [ -74.003906, -53.120405 ], [ -73.828125, -53.120405 ], [ -73.828125, -53.225768 ], [ -73.476562, -53.225768 ], [ -73.476562, -53.330873 ], [ -73.300781, -53.330873 ], [ -73.300781, -53.435719 ], [ -73.125000, -53.435719 ], [ -73.125000, -53.540307 ], [ -72.773438, -53.540307 ], [ -72.773438, -53.644638 ], [ -72.597656, -53.644638 ], [ -72.597656, -53.748711 ], [ -72.246094, -53.748711 ], [ -72.246094, -53.852527 ], [ -71.894531, -53.852527 ], [ -71.894531, -53.956086 ], [ -71.542969, -53.956086 ], [ -71.542969, -54.059388 ], [ -71.015625, -54.059388 ], [ -71.015625, -53.852527 ], [ -70.839844, -53.852527 ], [ -70.839844, -53.644638 ], [ -70.664062, -53.644638 ], [ -70.664062, -53.435719 ], [ -70.488281, -53.435719 ], [ -70.488281, -53.120405 ], [ -70.312500, -53.120405 ], [ -70.312500, -52.908902 ], [ -70.136719, -52.908902 ], [ -70.136719, -52.802761 ], [ -69.960938, -52.802761 ], [ -69.960938, -52.696361 ], [ -69.609375, -52.696361 ], [ -69.609375, -52.589701 ], [ -69.433594, -52.589701 ], [ -69.433594, -52.482780 ], [ -69.257812, -52.482780 ] ] ], [ [ [ -71.894531, -40.313043 ], [ -71.894531, -40.580585 ], [ -72.070312, -40.580585 ], [ -72.070312, -41.376809 ], [ -71.894531, -41.376809 ], [ -71.894531, -42.163403 ], [ -72.246094, -42.163403 ], [ -72.246094, -42.811522 ], [ -72.070312, -42.811522 ], [ -72.070312, -43.452919 ], [ -71.894531, -43.452919 ], [ -71.894531, -43.580391 ], [ -71.718750, -43.580391 ], [ -71.718750, -43.707594 ], [ -71.542969, -43.707594 ], [ -71.542969, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -44.087585 ], [ -71.894531, -44.087585 ], [ -71.894531, -44.213710 ], [ -71.542969, -44.213710 ], [ -71.542969, -44.339565 ], [ -71.367188, -44.339565 ], [ -71.367188, -44.840291 ], [ -71.542969, -44.840291 ], [ -71.542969, -44.964798 ], [ -71.718750, -44.964798 ], [ -71.718750, -45.828799 ], [ -71.894531, -45.828799 ], [ -71.894531, -46.558860 ], [ -72.070312, -46.558860 ], [ -72.070312, -47.040182 ], [ -72.246094, -47.040182 ], [ -72.246094, -47.279229 ], [ -72.421875, -47.279229 ], [ -72.421875, -47.517201 ], [ -72.597656, -47.517201 ], [ -72.597656, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -48.458352 ], [ -72.597656, -48.458352 ], [ -72.597656, -48.690960 ], [ -72.773438, -48.690960 ], [ -72.773438, -48.922499 ], [ -72.949219, -48.922499 ], [ -72.949219, -49.037868 ], [ -73.125000, -49.037868 ], [ -73.125000, -49.152970 ], [ -73.300781, -49.152970 ], [ -73.300781, -49.267805 ], [ -73.476562, -49.267805 ], [ -73.476562, -50.401515 ], [ -73.300781, -50.401515 ], [ -73.300781, -50.625073 ], [ -73.125000, -50.625073 ], [ -73.125000, -50.736455 ], [ -72.597656, -50.736455 ], [ -72.597656, -50.625073 ], [ -72.421875, -50.625073 ], [ -72.421875, -51.618017 ], [ -72.246094, -51.618017 ], [ -72.246094, -51.835778 ], [ -72.070312, -51.835778 ], [ -72.070312, -51.944265 ], [ -71.015625, -51.944265 ], [ -71.015625, -52.052490 ], [ -69.433594, -52.052490 ], [ -69.433594, -52.160455 ], [ -69.082031, -52.160455 ], [ -69.082031, -52.268157 ], [ -69.609375, -52.268157 ], [ -69.609375, -52.375599 ], [ -69.785156, -52.375599 ], [ -69.785156, -52.482780 ], [ -69.960938, -52.482780 ], [ -69.960938, -52.589701 ], [ -70.312500, -52.589701 ], [ -70.312500, -52.696361 ], [ -70.664062, -52.696361 ], [ -70.664062, -52.802761 ], [ -71.015625, -52.802761 ], [ -71.015625, -53.748711 ], [ -71.191406, -53.748711 ], [ -71.191406, -53.852527 ], [ -71.718750, -53.852527 ], [ -71.718750, -53.748711 ], [ -72.070312, -53.748711 ], [ -72.070312, -53.644638 ], [ -72.246094, -53.644638 ], [ -72.246094, -53.540307 ], [ -72.597656, -53.540307 ], [ -72.597656, -53.435719 ], [ -72.773438, -53.435719 ], [ -72.773438, -53.330873 ], [ -72.949219, -53.330873 ], [ -72.949219, -53.225768 ], [ -73.125000, -53.225768 ], [ -73.125000, -53.120405 ], [ -73.476562, -53.120405 ], [ -73.476562, -53.014783 ], [ -73.652344, -53.014783 ], [ -73.652344, -52.908902 ], [ -73.828125, -52.908902 ], [ -73.828125, -52.802761 ], [ -74.003906, -52.802761 ], [ -74.003906, -52.696361 ], [ -74.179688, -52.696361 ], [ -74.179688, -52.589701 ], [ -74.355469, -52.589701 ], [ -74.355469, -52.482780 ], [ -74.707031, -52.482780 ], [ -74.707031, -52.375599 ], [ -74.882812, -52.375599 ], [ -74.882812, -52.268157 ], [ -75.058594, -52.268157 ], [ -75.058594, -52.052490 ], [ -75.234375, -52.052490 ], [ -75.234375, -51.835778 ], [ -75.410156, -51.835778 ], [ -75.410156, -51.508742 ], [ -75.234375, -51.508742 ], [ -75.234375, -51.179343 ], [ -75.058594, -51.179343 ], [ -75.058594, -50.847573 ], [ -75.234375, -50.847573 ], [ -75.234375, -50.625073 ], [ -75.410156, -50.625073 ], [ -75.410156, -50.401515 ], [ -75.585938, -50.401515 ], [ -75.585938, -49.496675 ], [ -75.761719, -49.496675 ], [ -75.761719, -48.458352 ], [ -75.585938, -48.458352 ], [ -75.585938, -48.107431 ], [ -75.410156, -48.107431 ], [ -75.410156, -47.872144 ], [ -75.234375, -47.872144 ], [ -75.234375, -47.635784 ], [ -75.058594, -47.635784 ], [ -75.058594, -47.517201 ], [ -74.882812, -47.517201 ], [ -74.882812, -47.398349 ], [ -74.707031, -47.398349 ], [ -74.707031, -47.279229 ], [ -74.531250, -47.279229 ], [ -74.531250, -47.159840 ], [ -74.355469, -47.159840 ], [ -74.355469, -47.040182 ], [ -74.179688, -47.040182 ], [ -74.179688, -46.920255 ], [ -74.531250, -46.920255 ], [ -74.531250, -46.800059 ], [ -75.058594, -46.800059 ], [ -75.058594, -46.679594 ], [ -75.585938, -46.679594 ], [ -75.585938, -46.437857 ], [ -75.410156, -46.437857 ], [ -75.410156, -46.316584 ], [ -75.234375, -46.316584 ], [ -75.234375, -46.073231 ], [ -75.058594, -46.073231 ], [ -75.058594, -45.951150 ], [ -74.882812, -45.951150 ], [ -74.882812, -45.828799 ], [ -74.707031, -45.828799 ], [ -74.707031, -45.336702 ], [ -74.531250, -45.336702 ], [ -74.531250, -44.590467 ], [ -74.355469, -44.590467 ], [ -74.355469, -44.087585 ], [ -74.179688, -44.087585 ], [ -74.179688, -44.213710 ], [ -73.652344, -44.213710 ], [ -73.652344, -44.339565 ], [ -73.300781, -44.339565 ], [ -73.300781, -44.087585 ], [ -73.125000, -44.087585 ], [ -73.125000, -43.325178 ], [ -72.949219, -43.325178 ], [ -72.949219, -42.682435 ], [ -72.773438, -42.682435 ], [ -72.773438, -42.293564 ], [ -73.125000, -42.293564 ], [ -73.125000, -42.163403 ], [ -73.476562, -42.163403 ], [ -73.476562, -42.423457 ], [ -73.652344, -42.423457 ], [ -73.652344, -43.068888 ], [ -73.828125, -43.068888 ], [ -73.828125, -43.325178 ], [ -74.179688, -43.325178 ], [ -74.179688, -43.197167 ], [ -74.355469, -43.197167 ], [ -74.355469, -42.553080 ], [ -74.179688, -42.553080 ], [ -74.179688, -41.508577 ], [ -74.003906, -41.508577 ], [ -74.003906, -40.713956 ], [ -73.828125, -40.713956 ], [ -73.828125, -40.313043 ], [ -71.894531, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.378906, -52.802761 ], [ -68.378906, -53.014783 ], [ -68.203125, -53.014783 ], [ -68.203125, -53.330873 ], [ -68.027344, -53.330873 ], [ -68.027344, -53.540307 ], [ -67.851562, -53.540307 ], [ -67.851562, -53.748711 ], [ -67.675781, -53.748711 ], [ -67.675781, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.059388 ], [ -67.324219, -54.059388 ], [ -67.324219, -54.162434 ], [ -66.972656, -54.162434 ], [ -66.972656, -54.265224 ], [ -66.796875, -54.265224 ], [ -66.796875, -54.367759 ], [ -66.621094, -54.367759 ], [ -66.621094, -54.470038 ], [ -66.269531, -54.470038 ], [ -66.269531, -54.572062 ], [ -65.566406, -54.572062 ], [ -65.566406, -54.673831 ], [ -65.039062, -54.673831 ], [ -65.039062, -54.775346 ], [ -65.214844, -54.775346 ], [ -65.214844, -54.977614 ], [ -65.390625, -54.977614 ], [ -65.390625, -55.178868 ], [ -65.917969, -55.178868 ], [ -65.917969, -55.279115 ], [ -66.621094, -55.279115 ], [ -66.621094, -55.078367 ], [ -66.796875, -55.078367 ], [ -66.796875, -54.977614 ], [ -66.972656, -54.977614 ], [ -66.972656, -54.876607 ], [ -68.554688, -54.876607 ], [ -68.554688, -52.802761 ], [ -68.378906, -52.802761 ] ] ], [ [ [ -62.226562, -40.313043 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -42.163403 ], [ -64.863281, -42.163403 ], [ -64.863281, -42.293564 ], [ -64.511719, -42.293564 ], [ -64.511719, -42.423457 ], [ -64.160156, -42.423457 ], [ -64.160156, -42.293564 ], [ -63.984375, -42.293564 ], [ -63.984375, -42.163403 ], [ -63.632812, -42.163403 ], [ -63.632812, -42.423457 ], [ -63.457031, -42.423457 ], [ -63.457031, -42.553080 ], [ -63.632812, -42.553080 ], [ -63.632812, -42.682435 ], [ -63.984375, -42.682435 ], [ -63.984375, -42.811522 ], [ -64.335938, -42.811522 ], [ -64.335938, -42.940339 ], [ -64.511719, -42.940339 ], [ -64.511719, -43.068888 ], [ -64.687500, -43.068888 ], [ -64.687500, -43.197167 ], [ -64.863281, -43.197167 ], [ -64.863281, -43.325178 ], [ -65.039062, -43.325178 ], [ -65.039062, -43.452919 ], [ -65.214844, -43.452919 ], [ -65.214844, -43.961191 ], [ -65.390625, -43.961191 ], [ -65.390625, -44.840291 ], [ -65.566406, -44.840291 ], [ -65.566406, -45.089036 ], [ -66.445312, -45.089036 ], [ -66.445312, -45.213004 ], [ -66.621094, -45.213004 ], [ -66.621094, -45.336702 ], [ -66.972656, -45.336702 ], [ -66.972656, -45.460131 ], [ -67.148438, -45.460131 ], [ -67.148438, -45.583290 ], [ -67.324219, -45.583290 ], [ -67.324219, -45.951150 ], [ -67.500000, -45.951150 ], [ -67.500000, -46.437857 ], [ -67.324219, -46.437857 ], [ -67.324219, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.679594 ], [ -66.972656, -46.679594 ], [ -66.972656, -46.920255 ], [ -66.796875, -46.920255 ], [ -66.796875, -47.040182 ], [ -66.445312, -47.040182 ], [ -66.445312, -47.159840 ], [ -65.917969, -47.159840 ], [ -65.917969, -47.279229 ], [ -65.566406, -47.279229 ], [ -65.566406, -47.517201 ], [ -65.742188, -47.517201 ], [ -65.742188, -47.989922 ], [ -65.917969, -47.989922 ], [ -65.917969, -48.224673 ], [ -66.269531, -48.224673 ], [ -66.269531, -48.341646 ], [ -66.445312, -48.341646 ], [ -66.445312, -48.458352 ], [ -66.621094, -48.458352 ], [ -66.621094, -48.574790 ], [ -66.972656, -48.574790 ], [ -66.972656, -48.690960 ], [ -67.148438, -48.690960 ], [ -67.148438, -48.922499 ], [ -67.324219, -48.922499 ], [ -67.324219, -49.152970 ], [ -67.500000, -49.152970 ], [ -67.500000, -49.496675 ], [ -67.675781, -49.496675 ], [ -67.675781, -49.724479 ], [ -67.851562, -49.724479 ], [ -67.851562, -49.951220 ], [ -68.027344, -49.951220 ], [ -68.027344, -50.064192 ], [ -68.378906, -50.064192 ], [ -68.378906, -50.176898 ], [ -68.554688, -50.176898 ], [ -68.554688, -50.289339 ], [ -68.730469, -50.289339 ], [ -68.730469, -50.401515 ], [ -68.906250, -50.401515 ], [ -68.906250, -50.625073 ], [ -69.082031, -50.625073 ], [ -69.082031, -51.069017 ], [ -68.906250, -51.069017 ], [ -68.906250, -51.508742 ], [ -68.730469, -51.508742 ], [ -68.730469, -51.835778 ], [ -68.554688, -51.835778 ], [ -68.554688, -52.052490 ], [ -68.378906, -52.052490 ], [ -68.378906, -52.268157 ], [ -68.203125, -52.268157 ], [ -68.203125, -52.375599 ], [ -68.554688, -52.375599 ], [ -68.554688, -52.268157 ], [ -69.082031, -52.268157 ], [ -69.082031, -52.160455 ], [ -70.839844, -52.160455 ], [ -70.839844, -52.052490 ], [ -71.894531, -52.052490 ], [ -71.894531, -51.944265 ], [ -72.070312, -51.944265 ], [ -72.070312, -51.618017 ], [ -72.246094, -51.618017 ], [ -72.246094, -50.625073 ], [ -72.421875, -50.625073 ], [ -72.421875, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.513427 ], [ -73.300781, -50.513427 ], [ -73.300781, -49.837982 ], [ -73.476562, -49.837982 ], [ -73.476562, -49.267805 ], [ -73.300781, -49.267805 ], [ -73.300781, -49.152970 ], [ -72.949219, -49.152970 ], [ -72.949219, -49.037868 ], [ -72.597656, -49.037868 ], [ -72.597656, -48.806863 ], [ -72.421875, -48.806863 ], [ -72.421875, -48.458352 ], [ -72.246094, -48.458352 ], [ -72.246094, -47.989922 ], [ -72.421875, -47.989922 ], [ -72.421875, -47.635784 ], [ -72.246094, -47.635784 ], [ -72.246094, -47.398349 ], [ -72.070312, -47.398349 ], [ -72.070312, -47.159840 ], [ -71.894531, -47.159840 ], [ -71.894531, -46.679594 ], [ -71.718750, -46.679594 ], [ -71.718750, -45.951150 ], [ -71.542969, -45.951150 ], [ -71.542969, -45.336702 ], [ -71.718750, -45.336702 ], [ -71.718750, -44.964798 ], [ -71.367188, -44.964798 ], [ -71.367188, -44.840291 ], [ -71.191406, -44.840291 ], [ -71.191406, -44.715514 ], [ -71.367188, -44.715514 ], [ -71.367188, -44.465151 ], [ -71.542969, -44.465151 ], [ -71.542969, -44.339565 ], [ -71.718750, -44.339565 ], [ -71.718750, -44.087585 ], [ -71.542969, -44.087585 ], [ -71.542969, -43.834527 ], [ -71.718750, -43.834527 ], [ -71.718750, -43.580391 ], [ -71.894531, -43.580391 ], [ -71.894531, -42.940339 ], [ -72.070312, -42.940339 ], [ -72.070312, -42.293564 ], [ -71.894531, -42.293564 ], [ -71.894531, -42.163403 ], [ -71.718750, -42.163403 ], [ -71.718750, -41.508577 ], [ -71.894531, -41.508577 ], [ -71.894531, -40.580585 ], [ -71.718750, -40.580585 ], [ -71.718750, -40.313043 ], [ -62.226562, -40.313043 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.554688, -52.696361 ], [ -68.554688, -52.908902 ], [ -68.378906, -52.908902 ], [ -68.378906, -53.225768 ], [ -68.203125, -53.225768 ], [ -68.203125, -53.435719 ], [ -68.027344, -53.435719 ], [ -68.027344, -53.644638 ], [ -67.851562, -53.644638 ], [ -67.851562, -53.852527 ], [ -67.675781, -53.852527 ], [ -67.675781, -53.956086 ], [ -67.500000, -53.956086 ], [ -67.500000, -54.059388 ], [ -67.148438, -54.059388 ], [ -67.148438, -54.162434 ], [ -66.972656, -54.162434 ], [ -66.972656, -54.265224 ], [ -66.796875, -54.265224 ], [ -66.796875, -54.367759 ], [ -66.445312, -54.367759 ], [ -66.445312, -54.470038 ], [ -66.093750, -54.470038 ], [ -66.093750, -54.572062 ], [ -65.566406, -54.572062 ], [ -65.566406, -54.673831 ], [ -65.214844, -54.673831 ], [ -65.214844, -54.876607 ], [ -65.390625, -54.876607 ], [ -65.390625, -55.078367 ], [ -65.566406, -55.078367 ], [ -65.566406, -55.178868 ], [ -66.796875, -55.178868 ], [ -66.796875, -54.977614 ], [ -66.972656, -54.977614 ], [ -66.972656, -54.876607 ], [ -67.500000, -54.876607 ], [ -67.500000, -54.775346 ], [ -68.730469, -54.775346 ], [ -68.730469, -52.696361 ], [ -68.554688, -52.696361 ] ] ], [ [ [ -62.402344, -40.313043 ], [ -62.402344, -40.446947 ], [ -62.226562, -40.446947 ], [ -62.226562, -40.713956 ], [ -62.402344, -40.713956 ], [ -62.402344, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -65.039062, -40.847060 ], [ -65.039062, -40.979898 ], [ -65.214844, -40.979898 ], [ -65.214844, -41.508577 ], [ -65.039062, -41.508577 ], [ -65.039062, -42.163403 ], [ -64.687500, -42.163403 ], [ -64.687500, -42.293564 ], [ -64.160156, -42.293564 ], [ -64.160156, -42.163403 ], [ -63.632812, -42.163403 ], [ -63.632812, -42.423457 ], [ -63.457031, -42.423457 ], [ -63.457031, -42.553080 ], [ -63.632812, -42.553080 ], [ -63.632812, -42.682435 ], [ -64.160156, -42.682435 ], [ -64.160156, -42.811522 ], [ -64.511719, -42.811522 ], [ -64.511719, -42.940339 ], [ -64.687500, -42.940339 ], [ -64.687500, -43.068888 ], [ -64.863281, -43.068888 ], [ -64.863281, -43.325178 ], [ -65.039062, -43.325178 ], [ -65.039062, -43.452919 ], [ -65.214844, -43.452919 ], [ -65.214844, -43.961191 ], [ -65.390625, -43.961191 ], [ -65.390625, -44.715514 ], [ -65.566406, -44.715514 ], [ -65.566406, -44.964798 ], [ -66.621094, -44.964798 ], [ -66.621094, -45.089036 ], [ -66.796875, -45.089036 ], [ -66.796875, -45.213004 ], [ -66.972656, -45.213004 ], [ -66.972656, -45.336702 ], [ -67.148438, -45.336702 ], [ -67.148438, -45.460131 ], [ -67.324219, -45.460131 ], [ -67.324219, -45.706179 ], [ -67.500000, -45.706179 ], [ -67.500000, -46.073231 ], [ -67.675781, -46.073231 ], [ -67.675781, -46.316584 ], [ -67.500000, -46.316584 ], [ -67.500000, -46.437857 ], [ -67.324219, -46.437857 ], [ -67.324219, -46.558860 ], [ -67.148438, -46.558860 ], [ -67.148438, -46.679594 ], [ -66.972656, -46.679594 ], [ -66.972656, -46.800059 ], [ -66.796875, -46.800059 ], [ -66.796875, -46.920255 ], [ -66.445312, -46.920255 ], [ -66.445312, -47.040182 ], [ -66.093750, -47.040182 ], [ -66.093750, -47.159840 ], [ -65.742188, -47.159840 ], [ -65.742188, -47.398349 ], [ -65.917969, -47.398349 ], [ -65.917969, -47.872144 ], [ -66.093750, -47.872144 ], [ -66.093750, -48.224673 ], [ -66.445312, -48.224673 ], [ -66.445312, -48.341646 ], [ -66.621094, -48.341646 ], [ -66.621094, -48.458352 ], [ -66.796875, -48.458352 ], [ -66.796875, -48.574790 ], [ -67.148438, -48.574790 ], [ -67.148438, -48.690960 ], [ -67.324219, -48.690960 ], [ -67.324219, -48.922499 ], [ -67.500000, -48.922499 ], [ -67.500000, -49.267805 ], [ -67.675781, -49.267805 ], [ -67.675781, -49.724479 ], [ -67.851562, -49.724479 ], [ -67.851562, -49.951220 ], [ -68.203125, -49.951220 ], [ -68.203125, -50.064192 ], [ -68.554688, -50.064192 ], [ -68.554688, -50.176898 ], [ -68.730469, -50.176898 ], [ -68.730469, -50.289339 ], [ -68.906250, -50.289339 ], [ -68.906250, -50.401515 ], [ -69.082031, -50.401515 ], [ -69.082031, -50.625073 ], [ -69.257812, -50.625073 ], [ -69.257812, -50.958427 ], [ -69.082031, -50.958427 ], [ -69.082031, -51.508742 ], [ -68.906250, -51.508742 ], [ -68.906250, -51.835778 ], [ -68.730469, -51.835778 ], [ -68.730469, -51.944265 ], [ -68.554688, -51.944265 ], [ -68.554688, -52.160455 ], [ -68.378906, -52.160455 ], [ -68.378906, -52.268157 ], [ -69.082031, -52.268157 ], [ -69.082031, -52.160455 ], [ -69.433594, -52.160455 ], [ -69.433594, -52.052490 ], [ -71.015625, -52.052490 ], [ -71.015625, -51.944265 ], [ -72.070312, -51.944265 ], [ -72.070312, -51.835778 ], [ -72.246094, -51.835778 ], [ -72.246094, -51.618017 ], [ -72.421875, -51.618017 ], [ -72.421875, -50.625073 ], [ -72.597656, -50.625073 ], [ -72.597656, -50.736455 ], [ -73.125000, -50.736455 ], [ -73.125000, -50.625073 ], [ -73.300781, -50.625073 ], [ -73.300781, -50.401515 ], [ -73.476562, -50.401515 ], [ -73.476562, -49.267805 ], [ -73.300781, -49.267805 ], [ -73.300781, -49.152970 ], [ -73.125000, -49.152970 ], [ -73.125000, -49.037868 ], [ -72.949219, -49.037868 ], [ -72.949219, -48.922499 ], [ -72.773438, -48.922499 ], [ -72.773438, -48.690960 ], [ -72.597656, -48.690960 ], [ -72.597656, -48.458352 ], [ -72.421875, -48.458352 ], [ -72.421875, -47.989922 ], [ -72.597656, -47.989922 ], [ -72.597656, -47.517201 ], [ -72.421875, -47.517201 ], [ -72.421875, -47.279229 ], [ -72.246094, -47.279229 ], [ -72.246094, -47.040182 ], [ -72.070312, -47.040182 ], [ -72.070312, -46.558860 ], [ -71.894531, -46.558860 ], [ -71.894531, -45.828799 ], [ -71.718750, -45.828799 ], [ -71.718750, -44.964798 ], [ -71.542969, -44.964798 ], [ -71.542969, -44.840291 ], [ -71.367188, -44.840291 ], [ -71.367188, -44.339565 ], [ -71.542969, -44.339565 ], [ -71.542969, -44.213710 ], [ -71.894531, -44.213710 ], [ -71.894531, -44.087585 ], [ -71.718750, -44.087585 ], [ -71.718750, -43.834527 ], [ -71.542969, -43.834527 ], [ -71.542969, -43.707594 ], [ -71.718750, -43.707594 ], [ -71.718750, -43.580391 ], [ -71.894531, -43.580391 ], [ -71.894531, -43.452919 ], [ -72.070312, -43.452919 ], [ -72.070312, -42.811522 ], [ -72.246094, -42.811522 ], [ -72.246094, -42.163403 ], [ -71.894531, -42.163403 ], [ -71.894531, -41.376809 ], [ -72.070312, -41.376809 ], [ -72.070312, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -40.313043 ], [ -62.402344, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.359375, -51.179343 ], [ -58.359375, -51.289406 ], [ -58.183594, -51.289406 ], [ -58.183594, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.508742 ], [ -57.832031, -51.508742 ], [ -57.832031, -51.727028 ], [ -58.007812, -51.727028 ], [ -58.007812, -51.944265 ], [ -58.183594, -51.944265 ], [ -58.183594, -52.052490 ], [ -58.886719, -52.052490 ], [ -58.886719, -52.160455 ], [ -59.589844, -52.160455 ], [ -59.589844, -51.944265 ], [ -59.941406, -51.944265 ], [ -59.941406, -52.052490 ], [ -60.292969, -52.052490 ], [ -60.292969, -52.160455 ], [ -60.468750, -52.160455 ], [ -60.468750, -52.268157 ], [ -60.820312, -52.268157 ], [ -60.820312, -52.052490 ], [ -60.996094, -52.052490 ], [ -60.996094, -51.944265 ], [ -61.171875, -51.944265 ], [ -61.171875, -51.835778 ], [ -60.996094, -51.835778 ], [ -60.996094, -51.727028 ], [ -60.644531, -51.727028 ], [ -60.644531, -51.618017 ], [ -60.468750, -51.618017 ], [ -60.468750, -51.508742 ], [ -60.292969, -51.508742 ], [ -60.292969, -51.399206 ], [ -59.941406, -51.399206 ], [ -59.941406, -51.289406 ], [ -59.765625, -51.289406 ], [ -59.765625, -51.399206 ], [ -59.414062, -51.399206 ], [ -59.414062, -51.508742 ], [ -58.886719, -51.508742 ], [ -58.886719, -51.289406 ], [ -58.710938, -51.289406 ], [ -58.710938, -51.179343 ], [ -58.359375, -51.179343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.535156, -51.179343 ], [ -58.535156, -51.289406 ], [ -58.183594, -51.289406 ], [ -58.183594, -51.399206 ], [ -58.007812, -51.399206 ], [ -58.007812, -51.508742 ], [ -57.832031, -51.508742 ], [ -57.832031, -51.618017 ], [ -58.007812, -51.618017 ], [ -58.007812, -51.835778 ], [ -58.359375, -51.835778 ], [ -58.359375, -51.944265 ], [ -58.710938, -51.944265 ], [ -58.710938, -52.052490 ], [ -59.062500, -52.052490 ], [ -59.062500, -52.160455 ], [ -59.589844, -52.160455 ], [ -59.589844, -52.052490 ], [ -59.765625, -52.052490 ], [ -59.765625, -51.944265 ], [ -60.117188, -51.944265 ], [ -60.117188, -52.052490 ], [ -60.468750, -52.052490 ], [ -60.468750, -52.160455 ], [ -60.644531, -52.160455 ], [ -60.644531, -52.268157 ], [ -60.996094, -52.268157 ], [ -60.996094, -52.052490 ], [ -61.171875, -52.052490 ], [ -61.171875, -51.944265 ], [ -61.347656, -51.944265 ], [ -61.347656, -51.835778 ], [ -61.171875, -51.835778 ], [ -61.171875, -51.727028 ], [ -60.996094, -51.727028 ], [ -60.996094, -51.618017 ], [ -60.820312, -51.618017 ], [ -60.820312, -51.508742 ], [ -60.468750, -51.508742 ], [ -60.468750, -51.399206 ], [ -60.292969, -51.399206 ], [ -60.292969, -51.289406 ], [ -60.117188, -51.289406 ], [ -60.117188, -51.179343 ], [ -59.941406, -51.179343 ], [ -59.941406, -51.289406 ], [ -59.589844, -51.289406 ], [ -59.589844, -51.399206 ], [ -59.062500, -51.399206 ], [ -59.062500, -51.289406 ], [ -58.886719, -51.289406 ], [ -58.886719, -51.179343 ], [ -58.535156, -51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -63.312683 ], [ -57.656250, -63.391522 ], [ -57.480469, -63.391522 ], [ -57.480469, -63.548552 ], [ -57.304688, -63.548552 ], [ -57.304688, -63.626745 ], [ -57.480469, -63.626745 ], [ -57.480469, -63.782486 ], [ -57.656250, -63.782486 ], [ -57.656250, -63.937372 ], [ -57.832031, -63.937372 ], [ -57.832031, -64.014496 ], [ -58.183594, -64.014496 ], [ -58.183594, -64.091408 ], [ -58.359375, -64.091408 ], [ -58.359375, -64.168107 ], [ -58.535156, -64.168107 ], [ -58.535156, -64.244595 ], [ -58.710938, -64.244595 ], [ -58.710938, -64.320872 ], [ -58.886719, -64.320872 ], [ -58.886719, -64.396938 ], [ -59.414062, -64.396938 ], [ -59.414062, -64.320872 ], [ -59.765625, -64.320872 ], [ -59.765625, -64.244595 ], [ -60.117188, -64.244595 ], [ -60.117188, -64.320872 ], [ -60.644531, -64.320872 ], [ -60.644531, -64.396938 ], [ -60.820312, -64.396938 ], [ -60.820312, -64.472794 ], [ -61.171875, -64.472794 ], [ -61.171875, -64.548440 ], [ -61.347656, -64.548440 ], [ -61.347656, -64.623877 ], [ -61.523438, -64.623877 ], [ -61.523438, -64.699105 ], [ -61.875000, -64.699105 ], [ -61.875000, -64.774125 ], [ -62.050781, -64.774125 ], [ -62.050781, -64.848937 ], [ -62.226562, -64.848937 ], [ -62.226562, -64.923542 ], [ -62.402344, -64.923542 ], [ -62.402344, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -65.946472 ], [ -62.402344, -65.946472 ], [ -62.402344, -66.018018 ], [ -62.226562, -66.018018 ], [ -62.226562, -66.160511 ], [ -62.050781, -66.160511 ], [ -62.050781, -66.231457 ], [ -62.226562, -66.231457 ], [ -62.226562, -66.302205 ], [ -62.402344, -66.302205 ], [ -62.402344, -66.372755 ], [ -62.578125, -66.372755 ], [ -62.578125, -66.443107 ], [ -63.105469, -66.443107 ], [ -63.105469, -66.513260 ], [ -63.808594, -66.513260 ], [ -63.808594, -66.583217 ], [ -63.984375, -66.583217 ], [ -63.984375, -66.722541 ], [ -64.160156, -66.722541 ], [ -64.160156, -66.861082 ], [ -66.972656, -66.861082 ], [ -66.972656, -66.722541 ], [ -66.796875, -66.722541 ], [ -66.796875, -66.652977 ], [ -66.621094, -66.652977 ], [ -66.621094, -66.583217 ], [ -66.445312, -66.583217 ], [ -66.445312, -66.443107 ], [ -66.269531, -66.443107 ], [ -66.269531, -66.302205 ], [ -66.093750, -66.302205 ], [ -66.093750, -66.231457 ], [ -65.917969, -66.231457 ], [ -65.917969, -66.160511 ], [ -65.742188, -66.160511 ], [ -65.742188, -66.018018 ], [ -65.566406, -66.018018 ], [ -65.566406, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.874725 ], [ -65.214844, -65.874725 ], [ -65.214844, -65.802776 ], [ -65.039062, -65.802776 ], [ -65.039062, -65.730626 ], [ -64.687500, -65.730626 ], [ -64.687500, -65.658275 ], [ -64.511719, -65.658275 ], [ -64.511719, -65.512963 ], [ -64.335938, -65.512963 ], [ -64.335938, -65.293468 ], [ -64.160156, -65.293468 ], [ -64.160156, -65.146115 ], [ -63.984375, -65.146115 ], [ -63.984375, -65.072130 ], [ -63.808594, -65.072130 ], [ -63.808594, -64.997939 ], [ -63.632812, -64.997939 ], [ -63.632812, -64.923542 ], [ -63.457031, -64.923542 ], [ -63.457031, -64.848937 ], [ -63.281250, -64.848937 ], [ -63.281250, -64.774125 ], [ -63.105469, -64.774125 ], [ -63.105469, -64.699105 ], [ -62.929688, -64.699105 ], [ -62.929688, -64.623877 ], [ -62.402344, -64.623877 ], [ -62.402344, -64.548440 ], [ -61.875000, -64.548440 ], [ -61.875000, -64.472794 ], [ -61.699219, -64.472794 ], [ -61.699219, -64.396938 ], [ -61.523438, -64.396938 ], [ -61.523438, -64.320872 ], [ -61.347656, -64.320872 ], [ -61.347656, -64.244595 ], [ -60.996094, -64.244595 ], [ -60.996094, -64.168107 ], [ -60.644531, -64.168107 ], [ -60.644531, -64.091408 ], [ -60.292969, -64.091408 ], [ -60.292969, -64.014496 ], [ -59.941406, -64.014496 ], [ -59.941406, -63.937372 ], [ -59.765625, -63.937372 ], [ -59.765625, -63.860036 ], [ -59.414062, -63.860036 ], [ -59.414062, -63.782486 ], [ -59.238281, -63.782486 ], [ -59.238281, -63.704722 ], [ -59.062500, -63.704722 ], [ -59.062500, -63.626745 ], [ -58.886719, -63.626745 ], [ -58.886719, -63.548552 ], [ -58.710938, -63.548552 ], [ -58.710938, -63.470145 ], [ -58.535156, -63.470145 ], [ -58.535156, -63.391522 ], [ -58.183594, -63.391522 ], [ -58.183594, -63.312683 ], [ -57.656250, -63.312683 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.832031, -63.233627 ], [ -57.832031, -63.312683 ], [ -57.656250, -63.312683 ], [ -57.656250, -63.391522 ], [ -57.480469, -63.391522 ], [ -57.480469, -63.470145 ], [ -57.304688, -63.470145 ], [ -57.304688, -63.548552 ], [ -57.480469, -63.548552 ], [ -57.480469, -63.704722 ], [ -57.656250, -63.704722 ], [ -57.656250, -63.860036 ], [ -58.007812, -63.860036 ], [ -58.007812, -63.937372 ], [ -58.183594, -63.937372 ], [ -58.183594, -64.014496 ], [ -58.535156, -64.014496 ], [ -58.535156, -64.091408 ], [ -58.710938, -64.091408 ], [ -58.710938, -64.168107 ], [ -58.886719, -64.168107 ], [ -58.886719, -64.320872 ], [ -59.414062, -64.320872 ], [ -59.414062, -64.244595 ], [ -59.765625, -64.244595 ], [ -59.765625, -64.168107 ], [ -60.117188, -64.168107 ], [ -60.117188, -64.244595 ], [ -60.644531, -64.244595 ], [ -60.644531, -64.320872 ], [ -60.820312, -64.320872 ], [ -60.820312, -64.396938 ], [ -61.171875, -64.396938 ], [ -61.171875, -64.472794 ], [ -61.347656, -64.472794 ], [ -61.347656, -64.548440 ], [ -61.523438, -64.548440 ], [ -61.523438, -64.623877 ], [ -61.699219, -64.623877 ], [ -61.699219, -64.699105 ], [ -61.875000, -64.699105 ], [ -61.875000, -64.774125 ], [ -62.050781, -64.774125 ], [ -62.050781, -64.848937 ], [ -62.226562, -64.848937 ], [ -62.226562, -64.923542 ], [ -62.402344, -64.923542 ], [ -62.402344, -65.072130 ], [ -62.578125, -65.072130 ], [ -62.578125, -65.293468 ], [ -62.753906, -65.293468 ], [ -62.753906, -65.874725 ], [ -62.578125, -65.874725 ], [ -62.578125, -66.018018 ], [ -62.402344, -66.018018 ], [ -62.402344, -66.160511 ], [ -62.226562, -66.160511 ], [ -62.226562, -66.231457 ], [ -62.402344, -66.231457 ], [ -62.402344, -66.302205 ], [ -62.753906, -66.302205 ], [ -62.753906, -66.372755 ], [ -63.281250, -66.372755 ], [ -63.281250, -66.443107 ], [ -63.808594, -66.443107 ], [ -63.808594, -66.513260 ], [ -63.984375, -66.513260 ], [ -63.984375, -66.652977 ], [ -64.160156, -66.652977 ], [ -64.160156, -66.791909 ], [ -64.335938, -66.791909 ], [ -64.335938, -66.861082 ], [ -67.148438, -66.861082 ], [ -67.148438, -66.722541 ], [ -66.972656, -66.722541 ], [ -66.972656, -66.652977 ], [ -66.796875, -66.652977 ], [ -66.796875, -66.583217 ], [ -66.621094, -66.583217 ], [ -66.621094, -66.443107 ], [ -66.445312, -66.443107 ], [ -66.445312, -66.372755 ], [ -66.269531, -66.372755 ], [ -66.269531, -66.231457 ], [ -66.093750, -66.231457 ], [ -66.093750, -66.160511 ], [ -65.917969, -66.160511 ], [ -65.917969, -66.089364 ], [ -65.742188, -66.089364 ], [ -65.742188, -66.018018 ], [ -65.566406, -66.018018 ], [ -65.566406, -65.946472 ], [ -65.390625, -65.946472 ], [ -65.390625, -65.874725 ], [ -65.214844, -65.874725 ], [ -65.214844, -65.802776 ], [ -65.039062, -65.802776 ], [ -65.039062, -65.730626 ], [ -64.863281, -65.730626 ], [ -64.863281, -65.658275 ], [ -64.687500, -65.658275 ], [ -64.687500, -65.512963 ], [ -64.511719, -65.512963 ], [ -64.511719, -65.293468 ], [ -64.335938, -65.293468 ], [ -64.335938, -65.146115 ], [ -64.160156, -65.146115 ], [ -64.160156, -65.072130 ], [ -63.984375, -65.072130 ], [ -63.984375, -64.997939 ], [ -63.808594, -64.997939 ], [ -63.808594, -64.923542 ], [ -63.632812, -64.923542 ], [ -63.632812, -64.848937 ], [ -63.457031, -64.848937 ], [ -63.457031, -64.774125 ], [ -63.281250, -64.774125 ], [ -63.281250, -64.699105 ], [ -63.105469, -64.699105 ], [ -63.105469, -64.623877 ], [ -62.402344, -64.623877 ], [ -62.402344, -64.548440 ], [ -61.875000, -64.548440 ], [ -61.875000, -64.396938 ], [ -61.699219, -64.396938 ], [ -61.699219, -64.320872 ], [ -61.523438, -64.320872 ], [ -61.523438, -64.244595 ], [ -61.347656, -64.244595 ], [ -61.347656, -64.168107 ], [ -60.996094, -64.168107 ], [ -60.996094, -64.091408 ], [ -60.820312, -64.091408 ], [ -60.820312, -64.014496 ], [ -60.292969, -64.014496 ], [ -60.292969, -63.937372 ], [ -59.765625, -63.937372 ], [ -59.765625, -63.860036 ], [ -59.589844, -63.860036 ], [ -59.589844, -63.782486 ], [ -59.414062, -63.782486 ], [ -59.414062, -63.704722 ], [ -59.238281, -63.704722 ], [ -59.238281, -63.626745 ], [ -59.062500, -63.626745 ], [ -59.062500, -63.470145 ], [ -58.886719, -63.470145 ], [ -58.886719, -63.391522 ], [ -58.710938, -63.391522 ], [ -58.710938, -63.312683 ], [ -58.183594, -63.312683 ], [ -58.183594, -63.233627 ], [ -57.832031, -63.233627 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.257812, 0.878872 ], [ -69.257812, 0.527336 ], [ -69.433594, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.527336 ], [ -69.960938, 0.527336 ], [ -69.960938, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -2.108899 ], [ -69.609375, -2.108899 ], [ -69.609375, -2.986927 ], [ -69.785156, -2.986927 ], [ -69.785156, -3.864255 ], [ -69.960938, -3.864255 ], [ -69.960938, -4.214943 ], [ -70.136719, -4.214943 ], [ -70.136719, -3.864255 ], [ -70.312500, -3.864255 ], [ -70.312500, -3.688855 ], [ -70.488281, -3.688855 ], [ -70.488281, -3.513421 ], [ -70.312500, -3.513421 ], [ -70.312500, -3.162456 ], [ -70.136719, -3.162456 ], [ -70.136719, -2.986927 ], [ -69.960938, -2.986927 ], [ -69.960938, -2.811371 ], [ -70.136719, -2.811371 ], [ -70.136719, -2.635789 ], [ -70.488281, -2.635789 ], [ -70.488281, -2.460181 ], [ -70.839844, -2.460181 ], [ -70.839844, -2.284551 ], [ -72.070312, -2.284551 ], [ -72.070312, -2.460181 ], [ -72.773438, -2.460181 ], [ -72.773438, -2.284551 ], [ -73.125000, -2.284551 ], [ -73.125000, -2.108899 ], [ -73.300781, -2.108899 ], [ -73.300781, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -1.406109 ], [ -73.652344, -1.406109 ], [ -73.652344, -1.230374 ], [ -74.003906, -1.230374 ], [ -74.003906, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.878872 ], [ -74.355469, -0.878872 ], [ -74.355469, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.175781 ], [ -75.585938, -0.175781 ], [ -75.585938, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, 0.175781 ], [ -76.113281, 0.175781 ], [ -76.113281, 0.351560 ], [ -76.289062, 0.351560 ], [ -76.289062, 0.175781 ], [ -77.167969, 0.175781 ], [ -77.167969, 0.351560 ], [ -77.519531, 0.351560 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -69.257812, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 0.878872 ], [ -69.785156, 0.703107 ], [ -70.136719, 0.703107 ], [ -70.136719, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -1.230374 ], [ -69.609375, -1.230374 ], [ -69.609375, -2.108899 ], [ -69.785156, -2.108899 ], [ -69.785156, -3.513421 ], [ -69.960938, -3.513421 ], [ -69.960938, -4.214943 ], [ -70.136719, -4.214943 ], [ -70.136719, -4.039618 ], [ -70.312500, -4.039618 ], [ -70.312500, -3.864255 ], [ -70.488281, -3.864255 ], [ -70.488281, -3.688855 ], [ -70.664062, -3.688855 ], [ -70.664062, -3.337954 ], [ -70.488281, -3.337954 ], [ -70.488281, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -2.811371 ], [ -70.136719, -2.811371 ], [ -70.136719, -2.635789 ], [ -70.312500, -2.635789 ], [ -70.312500, -2.460181 ], [ -70.664062, -2.460181 ], [ -70.664062, -2.284551 ], [ -70.839844, -2.284551 ], [ -70.839844, -2.108899 ], [ -71.015625, -2.108899 ], [ -71.015625, -2.284551 ], [ -71.894531, -2.284551 ], [ -71.894531, -2.108899 ], [ -72.070312, -2.108899 ], [ -72.070312, -2.284551 ], [ -73.300781, -2.284551 ], [ -73.300781, -1.933227 ], [ -73.476562, -1.933227 ], [ -73.476562, -1.757537 ], [ -73.652344, -1.757537 ], [ -73.652344, -1.406109 ], [ -73.828125, -1.406109 ], [ -73.828125, -1.230374 ], [ -74.003906, -1.230374 ], [ -74.003906, -1.054628 ], [ -74.179688, -1.054628 ], [ -74.179688, -0.878872 ], [ -74.355469, -0.878872 ], [ -74.355469, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -0.527336 ], [ -74.707031, -0.527336 ], [ -74.707031, -0.351560 ], [ -75.058594, -0.351560 ], [ -75.058594, -0.175781 ], [ -75.234375, -0.175781 ], [ -75.234375, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, 0.175781 ], [ -76.113281, 0.175781 ], [ -76.113281, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.527336 ], [ -77.519531, 0.527336 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -69.785156, 0.878872 ] ] ], [ [ [ -69.257812, 0.878872 ], [ -69.257812, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.878872 ], [ -69.257812, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.742188, 0.878872 ], [ -65.742188, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 0.878872 ], [ -65.742188, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.527336 ], [ -77.167969, 0.527336 ], [ -77.167969, 0.351560 ], [ -76.113281, 0.351560 ], [ -76.113281, 0.175781 ], [ -75.761719, 0.175781 ], [ -75.761719, 0.000000 ], [ -75.410156, 0.000000 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -1.054628 ], [ -75.410156, -1.054628 ], [ -75.410156, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.581830 ], [ -75.761719, -1.581830 ], [ -75.761719, -1.757537 ], [ -75.937500, -1.757537 ], [ -75.937500, -1.933227 ], [ -76.113281, -1.933227 ], [ -76.113281, -2.108899 ], [ -76.289062, -2.108899 ], [ -76.289062, -2.284551 ], [ -76.464844, -2.284551 ], [ -76.464844, -2.460181 ], [ -76.816406, -2.460181 ], [ -76.816406, -2.635789 ], [ -77.167969, -2.635789 ], [ -77.167969, -2.811371 ], [ -77.519531, -2.811371 ], [ -77.519531, -2.986927 ], [ -77.871094, -2.986927 ], [ -77.871094, -3.162456 ], [ -78.046875, -3.162456 ], [ -78.046875, -3.337954 ], [ -78.222656, -3.337954 ], [ -78.222656, -3.688855 ], [ -78.398438, -3.688855 ], [ -78.398438, -3.864255 ], [ -78.574219, -3.864255 ], [ -78.574219, -4.214943 ], [ -78.750000, -4.214943 ], [ -78.750000, -4.565474 ], [ -78.925781, -4.565474 ], [ -78.925781, -4.740675 ], [ -79.101562, -4.740675 ], [ -79.101562, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -79.628906, -4.565474 ], [ -79.628906, -4.390229 ], [ -79.980469, -4.390229 ], [ -79.980469, -4.214943 ], [ -80.156250, -4.214943 ], [ -80.156250, -4.390229 ], [ -80.507812, -4.390229 ], [ -80.507812, -3.864255 ], [ -80.332031, -3.864255 ], [ -80.332031, -3.337954 ], [ -80.156250, -3.337954 ], [ -80.156250, -2.986927 ], [ -79.980469, -2.986927 ], [ -79.980469, -2.811371 ], [ -79.804688, -2.811371 ], [ -79.804688, -2.635789 ], [ -79.980469, -2.635789 ], [ -79.980469, -2.284551 ], [ -80.332031, -2.284551 ], [ -80.332031, -2.635789 ], [ -80.683594, -2.635789 ], [ -80.683594, -2.460181 ], [ -80.859375, -2.460181 ], [ -80.859375, -2.284551 ], [ -81.035156, -2.284551 ], [ -81.035156, -2.108899 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.581830 ], [ -81.035156, -1.581830 ], [ -81.035156, -1.054628 ], [ -80.683594, -1.054628 ], [ -80.683594, -0.527336 ], [ -80.507812, -0.527336 ], [ -80.507812, 0.000000 ], [ -80.332031, 0.000000 ], [ -80.332031, 0.351560 ], [ -80.156250, 0.351560 ], [ -80.156250, 0.878872 ], [ -77.695312, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.175781 ], [ -76.289062, 0.175781 ], [ -76.289062, 0.351560 ], [ -76.113281, 0.351560 ], [ -76.113281, 0.175781 ], [ -75.761719, 0.175781 ], [ -75.761719, 0.000000 ], [ -75.585938, 0.000000 ], [ -75.585938, -0.175781 ], [ -75.410156, -0.175781 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -1.054628 ], [ -75.410156, -1.054628 ], [ -75.410156, -1.406109 ], [ -75.585938, -1.406109 ], [ -75.585938, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.761719, -1.933227 ], [ -75.937500, -1.933227 ], [ -75.937500, -2.108899 ], [ -76.113281, -2.108899 ], [ -76.113281, -2.284551 ], [ -76.289062, -2.284551 ], [ -76.289062, -2.460181 ], [ -76.464844, -2.460181 ], [ -76.464844, -2.635789 ], [ -76.816406, -2.635789 ], [ -76.816406, -2.811371 ], [ -77.519531, -2.811371 ], [ -77.519531, -2.986927 ], [ -77.871094, -2.986927 ], [ -77.871094, -3.162456 ], [ -78.046875, -3.162456 ], [ -78.046875, -3.513421 ], [ -78.222656, -3.513421 ], [ -78.222656, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -4.214943 ], [ -78.574219, -4.214943 ], [ -78.574219, -4.740675 ], [ -78.925781, -4.740675 ], [ -78.925781, -4.915833 ], [ -79.453125, -4.915833 ], [ -79.453125, -4.565474 ], [ -79.628906, -4.565474 ], [ -79.628906, -4.390229 ], [ -80.507812, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -4.039618 ], [ -80.156250, -3.688855 ], [ -80.332031, -3.688855 ], [ -80.332031, -3.337954 ], [ -80.156250, -3.337954 ], [ -80.156250, -2.986927 ], [ -79.980469, -2.986927 ], [ -79.980469, -2.811371 ], [ -79.804688, -2.811371 ], [ -79.804688, -2.460181 ], [ -80.156250, -2.460181 ], [ -80.156250, -2.635789 ], [ -80.683594, -2.635789 ], [ -80.683594, -2.460181 ], [ -81.035156, -2.460181 ], [ -81.035156, -2.284551 ], [ -80.859375, -2.284551 ], [ -80.859375, -2.108899 ], [ -80.683594, -2.108899 ], [ -80.683594, -1.581830 ], [ -80.859375, -1.581830 ], [ -80.859375, -1.054628 ], [ -80.507812, -1.054628 ], [ -80.507812, -0.703107 ], [ -80.332031, -0.703107 ], [ -80.332031, -0.175781 ], [ -80.156250, -0.175781 ], [ -80.156250, 0.175781 ], [ -79.980469, 0.175781 ], [ -79.980469, 0.527336 ], [ -80.156250, 0.527336 ], [ -80.156250, 0.703107 ], [ -79.804688, 0.703107 ], [ -79.804688, 0.878872 ], [ -77.695312, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, 0.000000 ], [ -75.234375, -0.175781 ], [ -75.058594, -0.175781 ], [ -75.058594, -0.351560 ], [ -74.707031, -0.351560 ], [ -74.707031, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.703107 ], [ -74.355469, -0.703107 ], [ -74.355469, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -1.054628 ], [ -74.003906, -1.054628 ], [ -74.003906, -1.230374 ], [ -73.828125, -1.230374 ], [ -73.828125, -1.406109 ], [ -73.652344, -1.406109 ], [ -73.652344, -1.757537 ], [ -73.476562, -1.757537 ], [ -73.476562, -1.933227 ], [ -73.300781, -1.933227 ], [ -73.300781, -2.284551 ], [ -72.070312, -2.284551 ], [ -72.070312, -2.108899 ], [ -71.894531, -2.108899 ], [ -71.894531, -2.284551 ], [ -71.015625, -2.284551 ], [ -71.015625, -2.108899 ], [ -70.839844, -2.108899 ], [ -70.839844, -2.284551 ], [ -70.664062, -2.284551 ], [ -70.664062, -2.460181 ], [ -70.312500, -2.460181 ], [ -70.312500, -2.635789 ], [ -70.136719, -2.635789 ], [ -70.136719, -2.811371 ], [ -70.312500, -2.811371 ], [ -70.312500, -3.162456 ], [ -70.488281, -3.162456 ], [ -70.488281, -3.337954 ], [ -70.664062, -3.337954 ], [ -70.664062, -3.688855 ], [ -70.488281, -3.688855 ], [ -70.488281, -3.864255 ], [ -70.312500, -3.864255 ], [ -70.312500, -4.039618 ], [ -70.136719, -4.039618 ], [ -70.136719, -4.214943 ], [ -70.839844, -4.214943 ], [ -70.839844, -4.390229 ], [ -71.367188, -4.390229 ], [ -71.367188, -4.565474 ], [ -71.894531, -4.565474 ], [ -71.894531, -4.740675 ], [ -72.246094, -4.740675 ], [ -72.246094, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.090944 ], [ -72.773438, -5.090944 ], [ -72.773438, -5.266008 ], [ -72.949219, -5.266008 ], [ -72.949219, -5.441022 ], [ -73.125000, -5.441022 ], [ -73.125000, -5.790897 ], [ -73.300781, -5.790897 ], [ -73.300781, -6.315299 ], [ -73.125000, -6.315299 ], [ -73.125000, -6.664608 ], [ -73.476562, -6.664608 ], [ -73.476562, -6.839170 ], [ -73.828125, -6.839170 ], [ -73.828125, -7.362467 ], [ -74.003906, -7.362467 ], [ -74.003906, -7.710992 ], [ -73.828125, -7.710992 ], [ -73.828125, -8.233237 ], [ -73.652344, -8.233237 ], [ -73.652344, -8.581021 ], [ -73.476562, -8.581021 ], [ -73.476562, -8.754795 ], [ -73.300781, -8.754795 ], [ -73.300781, -8.928487 ], [ -73.125000, -8.928487 ], [ -73.125000, -9.275622 ], [ -73.300781, -9.275622 ], [ -73.300781, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.597656, -9.622414 ], [ -72.421875, -9.622414 ], [ -72.421875, -9.968851 ], [ -71.191406, -9.968851 ], [ -71.191406, -9.795678 ], [ -70.839844, -9.795678 ], [ -70.839844, -9.622414 ], [ -70.488281, -9.622414 ], [ -70.488281, -10.314919 ], [ -70.664062, -10.314919 ], [ -70.664062, -11.005904 ], [ -69.785156, -11.005904 ], [ -69.785156, -10.833306 ], [ -69.609375, -10.833306 ], [ -69.609375, -11.005904 ], [ -69.433594, -11.005904 ], [ -69.433594, -11.350797 ], [ -69.257812, -11.350797 ], [ -69.257812, -11.695273 ], [ -69.082031, -11.695273 ], [ -69.082031, -12.039321 ], [ -68.906250, -12.039321 ], [ -68.906250, -12.382928 ], [ -68.730469, -12.382928 ], [ -68.730469, -12.726084 ], [ -68.906250, -12.726084 ], [ -68.906250, -13.239945 ], [ -69.082031, -13.239945 ], [ -69.082031, -14.604847 ], [ -69.257812, -14.604847 ], [ -69.257812, -14.944785 ], [ -69.433594, -14.944785 ], [ -69.433594, -15.114553 ], [ -69.257812, -15.114553 ], [ -69.257812, -15.453680 ], [ -69.433594, -15.453680 ], [ -69.433594, -15.961329 ], [ -69.257812, -15.961329 ], [ -69.257812, -16.299051 ], [ -69.082031, -16.299051 ], [ -69.082031, -16.636192 ], [ -69.257812, -16.636192 ], [ -69.257812, -16.972741 ], [ -69.433594, -16.972741 ], [ -69.433594, -17.308688 ], [ -69.609375, -17.308688 ], [ -69.609375, -17.644022 ], [ -69.785156, -17.644022 ], [ -69.785156, -17.978733 ], [ -69.960938, -17.978733 ], [ -69.960938, -18.145852 ], [ -70.312500, -18.145852 ], [ -70.312500, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -18.145852 ], [ -71.015625, -18.145852 ], [ -71.015625, -17.978733 ], [ -71.191406, -17.978733 ], [ -71.191406, -17.811456 ], [ -71.542969, -17.811456 ], [ -71.542969, -17.308688 ], [ -71.718750, -17.308688 ], [ -71.718750, -17.140790 ], [ -72.070312, -17.140790 ], [ -72.070312, -16.972741 ], [ -72.421875, -16.972741 ], [ -72.421875, -16.804541 ], [ -72.773438, -16.804541 ], [ -72.773438, -16.636192 ], [ -73.125000, -16.636192 ], [ -73.125000, -16.467695 ], [ -73.476562, -16.467695 ], [ -73.476562, -16.299051 ], [ -73.652344, -16.299051 ], [ -73.652344, -16.130262 ], [ -74.003906, -16.130262 ], [ -74.003906, -15.961329 ], [ -74.179688, -15.961329 ], [ -74.179688, -15.792254 ], [ -74.531250, -15.792254 ], [ -74.531250, -15.623037 ], [ -74.882812, -15.623037 ], [ -74.882812, -15.453680 ], [ -75.058594, -15.453680 ], [ -75.058594, -15.284185 ], [ -75.410156, -15.284185 ], [ -75.410156, -15.114553 ], [ -75.585938, -15.114553 ], [ -75.585938, -14.944785 ], [ -75.937500, -14.944785 ], [ -75.937500, -14.774883 ], [ -76.113281, -14.774883 ], [ -76.113281, -14.434680 ], [ -76.289062, -14.434680 ], [ -76.289062, -14.093957 ], [ -76.464844, -14.093957 ], [ -76.464844, -13.581921 ], [ -76.289062, -13.581921 ], [ -76.289062, -13.410994 ], [ -76.464844, -13.410994 ], [ -76.464844, -13.068777 ], [ -76.640625, -13.068777 ], [ -76.640625, -12.897489 ], [ -76.816406, -12.897489 ], [ -76.816406, -12.726084 ], [ -76.992188, -12.726084 ], [ -76.992188, -12.382928 ], [ -77.167969, -12.382928 ], [ -77.167969, -12.211180 ], [ -77.343750, -12.211180 ], [ -77.343750, -11.867351 ], [ -77.519531, -11.867351 ], [ -77.519531, -11.523088 ], [ -77.695312, -11.523088 ], [ -77.695312, -11.178402 ], [ -77.871094, -11.178402 ], [ -77.871094, -10.833306 ], [ -78.046875, -10.833306 ], [ -78.046875, -10.487812 ], [ -78.222656, -10.487812 ], [ -78.222656, -10.141932 ], [ -78.398438, -10.141932 ], [ -78.398438, -9.795678 ], [ -78.574219, -9.795678 ], [ -78.574219, -9.275622 ], [ -78.750000, -9.275622 ], [ -78.750000, -8.928487 ], [ -78.925781, -8.928487 ], [ -78.925781, -8.581021 ], [ -79.101562, -8.581021 ], [ -79.101562, -8.233237 ], [ -79.277344, -8.233237 ], [ -79.277344, -8.059230 ], [ -79.453125, -8.059230 ], [ -79.453125, -7.710992 ], [ -79.628906, -7.710992 ], [ -79.628906, -7.362467 ], [ -79.804688, -7.362467 ], [ -79.804688, -7.188101 ], [ -79.980469, -7.188101 ], [ -79.980469, -7.013668 ], [ -80.156250, -7.013668 ], [ -80.156250, -6.839170 ], [ -80.507812, -6.839170 ], [ -80.507812, -6.664608 ], [ -80.683594, -6.664608 ], [ -80.683594, -6.489983 ], [ -80.859375, -6.489983 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -6.140555 ], [ -81.386719, -6.140555 ], [ -81.386719, -5.965754 ], [ -81.210938, -5.965754 ], [ -81.210938, -5.790897 ], [ -81.035156, -5.790897 ], [ -81.035156, -5.441022 ], [ -81.210938, -5.441022 ], [ -81.210938, -5.090944 ], [ -81.386719, -5.090944 ], [ -81.386719, -4.740675 ], [ -81.562500, -4.740675 ], [ -81.562500, -4.390229 ], [ -81.386719, -4.390229 ], [ -81.386719, -4.039618 ], [ -81.210938, -4.039618 ], [ -81.210938, -3.864255 ], [ -81.035156, -3.864255 ], [ -81.035156, -3.688855 ], [ -80.683594, -3.688855 ], [ -80.683594, -3.513421 ], [ -80.332031, -3.513421 ], [ -80.332031, -3.864255 ], [ -80.507812, -3.864255 ], [ -80.507812, -4.390229 ], [ -80.156250, -4.390229 ], [ -80.156250, -4.214943 ], [ -79.980469, -4.214943 ], [ -79.980469, -4.390229 ], [ -79.628906, -4.390229 ], [ -79.628906, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -79.101562, -4.915833 ], [ -79.101562, -4.740675 ], [ -78.925781, -4.740675 ], [ -78.925781, -4.565474 ], [ -78.750000, -4.565474 ], [ -78.750000, -4.214943 ], [ -78.574219, -4.214943 ], [ -78.574219, -3.864255 ], [ -78.398438, -3.864255 ], [ -78.398438, -3.688855 ], [ -78.222656, -3.688855 ], [ -78.222656, -3.337954 ], [ -78.046875, -3.337954 ], [ -78.046875, -3.162456 ], [ -77.871094, -3.162456 ], [ -77.871094, -2.986927 ], [ -77.519531, -2.986927 ], [ -77.519531, -2.811371 ], [ -77.167969, -2.811371 ], [ -77.167969, -2.635789 ], [ -76.816406, -2.635789 ], [ -76.816406, -2.460181 ], [ -76.464844, -2.460181 ], [ -76.464844, -2.284551 ], [ -76.289062, -2.284551 ], [ -76.289062, -2.108899 ], [ -76.113281, -2.108899 ], [ -76.113281, -1.933227 ], [ -75.937500, -1.933227 ], [ -75.937500, -1.757537 ], [ -75.761719, -1.757537 ], [ -75.761719, -1.581830 ], [ -75.585938, -1.581830 ], [ -75.585938, -1.406109 ], [ -75.410156, -1.406109 ], [ -75.410156, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, 0.000000 ], [ -75.234375, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.175781 ], [ -74.882812, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.527336 ], [ -74.355469, -0.527336 ], [ -74.355469, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -1.054628 ], [ -74.003906, -1.054628 ], [ -74.003906, -1.230374 ], [ -73.652344, -1.230374 ], [ -73.652344, -1.406109 ], [ -73.476562, -1.406109 ], [ -73.476562, -1.757537 ], [ -73.300781, -1.757537 ], [ -73.300781, -2.108899 ], [ -73.125000, -2.108899 ], [ -73.125000, -2.284551 ], [ -72.773438, -2.284551 ], [ -72.773438, -2.460181 ], [ -72.070312, -2.460181 ], [ -72.070312, -2.284551 ], [ -70.839844, -2.284551 ], [ -70.839844, -2.460181 ], [ -70.488281, -2.460181 ], [ -70.488281, -2.635789 ], [ -70.136719, -2.635789 ], [ -70.136719, -2.811371 ], [ -69.960938, -2.811371 ], [ -69.960938, -2.986927 ], [ -70.136719, -2.986927 ], [ -70.136719, -3.162456 ], [ -70.312500, -3.162456 ], [ -70.312500, -3.513421 ], [ -70.488281, -3.513421 ], [ -70.488281, -3.688855 ], [ -70.312500, -3.688855 ], [ -70.312500, -3.864255 ], [ -70.136719, -3.864255 ], [ -70.136719, -4.214943 ], [ -70.839844, -4.214943 ], [ -70.839844, -4.390229 ], [ -71.191406, -4.390229 ], [ -71.191406, -4.565474 ], [ -71.718750, -4.565474 ], [ -71.718750, -4.740675 ], [ -72.070312, -4.740675 ], [ -72.070312, -4.915833 ], [ -72.421875, -4.915833 ], [ -72.421875, -5.090944 ], [ -72.773438, -5.090944 ], [ -72.773438, -5.266008 ], [ -72.949219, -5.266008 ], [ -72.949219, -5.965754 ], [ -73.125000, -5.965754 ], [ -73.125000, -6.140555 ], [ -73.300781, -6.140555 ], [ -73.300781, -6.489983 ], [ -73.125000, -6.489983 ], [ -73.125000, -6.664608 ], [ -73.300781, -6.664608 ], [ -73.300781, -6.839170 ], [ -73.652344, -6.839170 ], [ -73.652344, -7.536764 ], [ -74.003906, -7.536764 ], [ -74.003906, -7.885147 ], [ -73.828125, -7.885147 ], [ -73.828125, -8.233237 ], [ -73.652344, -8.233237 ], [ -73.652344, -8.581021 ], [ -73.476562, -8.581021 ], [ -73.476562, -8.754795 ], [ -73.300781, -8.754795 ], [ -73.300781, -8.928487 ], [ -73.125000, -8.928487 ], [ -73.125000, -9.102097 ], [ -72.949219, -9.102097 ], [ -72.949219, -9.275622 ], [ -73.125000, -9.275622 ], [ -73.125000, -9.449062 ], [ -72.597656, -9.449062 ], [ -72.597656, -9.622414 ], [ -72.421875, -9.622414 ], [ -72.421875, -9.968851 ], [ -71.894531, -9.968851 ], [ -71.894531, -10.141932 ], [ -71.191406, -10.141932 ], [ -71.191406, -9.968851 ], [ -71.015625, -9.968851 ], [ -71.015625, -9.795678 ], [ -70.664062, -9.795678 ], [ -70.664062, -9.622414 ], [ -70.488281, -9.622414 ], [ -70.488281, -11.178402 ], [ -69.785156, -11.178402 ], [ -69.785156, -11.005904 ], [ -69.609375, -11.005904 ], [ -69.609375, -11.178402 ], [ -69.433594, -11.178402 ], [ -69.433594, -11.523088 ], [ -69.257812, -11.523088 ], [ -69.257812, -11.867351 ], [ -69.082031, -11.867351 ], [ -69.082031, -12.211180 ], [ -68.906250, -12.211180 ], [ -68.906250, -12.554564 ], [ -68.730469, -12.554564 ], [ -68.730469, -12.726084 ], [ -68.906250, -12.726084 ], [ -68.906250, -14.604847 ], [ -69.082031, -14.604847 ], [ -69.082031, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -15.114553 ], [ -69.082031, -15.114553 ], [ -69.082031, -15.453680 ], [ -69.257812, -15.453680 ], [ -69.257812, -15.623037 ], [ -69.433594, -15.623037 ], [ -69.433594, -15.792254 ], [ -69.257812, -15.792254 ], [ -69.257812, -16.130262 ], [ -69.082031, -16.130262 ], [ -69.082031, -16.467695 ], [ -68.906250, -16.467695 ], [ -68.906250, -16.636192 ], [ -69.082031, -16.636192 ], [ -69.082031, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -17.308688 ], [ -69.433594, -17.308688 ], [ -69.433594, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.978733 ], [ -69.785156, -17.978733 ], [ -69.785156, -18.145852 ], [ -69.960938, -18.145852 ], [ -69.960938, -18.312811 ], [ -70.664062, -18.312811 ], [ -70.664062, -18.145852 ], [ -71.015625, -18.145852 ], [ -71.015625, -17.978733 ], [ -71.367188, -17.978733 ], [ -71.367188, -17.644022 ], [ -71.542969, -17.644022 ], [ -71.542969, -17.308688 ], [ -71.718750, -17.308688 ], [ -71.718750, -17.140790 ], [ -72.070312, -17.140790 ], [ -72.070312, -16.972741 ], [ -72.421875, -16.972741 ], [ -72.421875, -16.804541 ], [ -72.773438, -16.804541 ], [ -72.773438, -16.636192 ], [ -73.125000, -16.636192 ], [ -73.125000, -16.467695 ], [ -73.476562, -16.467695 ], [ -73.476562, -16.299051 ], [ -73.652344, -16.299051 ], [ -73.652344, -16.130262 ], [ -74.003906, -16.130262 ], [ -74.003906, -15.961329 ], [ -74.355469, -15.961329 ], [ -74.355469, -15.792254 ], [ -74.531250, -15.792254 ], [ -74.531250, -15.623037 ], [ -74.882812, -15.623037 ], [ -74.882812, -15.453680 ], [ -75.234375, -15.453680 ], [ -75.234375, -15.284185 ], [ -75.410156, -15.284185 ], [ -75.410156, -15.114553 ], [ -75.585938, -15.114553 ], [ -75.585938, -14.944785 ], [ -75.761719, -14.944785 ], [ -75.761719, -14.774883 ], [ -75.937500, -14.774883 ], [ -75.937500, -14.604847 ], [ -76.113281, -14.604847 ], [ -76.113281, -14.264383 ], [ -76.289062, -14.264383 ], [ -76.289062, -13.923404 ], [ -76.464844, -13.923404 ], [ -76.464844, -13.752725 ], [ -76.289062, -13.752725 ], [ -76.289062, -13.581921 ], [ -76.464844, -13.581921 ], [ -76.464844, -13.239945 ], [ -76.640625, -13.239945 ], [ -76.640625, -12.897489 ], [ -76.816406, -12.897489 ], [ -76.816406, -12.726084 ], [ -76.992188, -12.726084 ], [ -76.992188, -12.382928 ], [ -77.167969, -12.382928 ], [ -77.167969, -12.039321 ], [ -77.343750, -12.039321 ], [ -77.343750, -11.695273 ], [ -77.519531, -11.695273 ], [ -77.519531, -11.350797 ], [ -77.695312, -11.350797 ], [ -77.695312, -11.005904 ], [ -77.871094, -11.005904 ], [ -77.871094, -10.660608 ], [ -78.046875, -10.660608 ], [ -78.046875, -10.314919 ], [ -78.222656, -10.314919 ], [ -78.222656, -9.968851 ], [ -78.398438, -9.968851 ], [ -78.398438, -9.622414 ], [ -78.574219, -9.622414 ], [ -78.574219, -9.275622 ], [ -78.750000, -9.275622 ], [ -78.750000, -8.928487 ], [ -78.925781, -8.928487 ], [ -78.925781, -8.581021 ], [ -79.101562, -8.581021 ], [ -79.101562, -8.407168 ], [ -79.277344, -8.407168 ], [ -79.277344, -8.059230 ], [ -79.453125, -8.059230 ], [ -79.453125, -7.710992 ], [ -79.628906, -7.710992 ], [ -79.628906, -7.362467 ], [ -79.804688, -7.362467 ], [ -79.804688, -7.188101 ], [ -79.980469, -7.188101 ], [ -79.980469, -7.013668 ], [ -80.156250, -7.013668 ], [ -80.156250, -6.839170 ], [ -80.332031, -6.839170 ], [ -80.332031, -6.664608 ], [ -80.507812, -6.664608 ], [ -80.507812, -6.489983 ], [ -80.859375, -6.489983 ], [ -80.859375, -6.315299 ], [ -81.210938, -6.315299 ], [ -81.210938, -6.140555 ], [ -81.035156, -6.140555 ], [ -81.035156, -5.790897 ], [ -80.859375, -5.790897 ], [ -80.859375, -5.615986 ], [ -81.035156, -5.615986 ], [ -81.035156, -5.266008 ], [ -81.210938, -5.266008 ], [ -81.210938, -4.915833 ], [ -81.386719, -4.915833 ], [ -81.386719, -4.565474 ], [ -81.210938, -4.565474 ], [ -81.210938, -4.214943 ], [ -81.035156, -4.214943 ], [ -81.035156, -4.039618 ], [ -80.859375, -4.039618 ], [ -80.859375, -3.864255 ], [ -80.683594, -3.864255 ], [ -80.683594, -3.688855 ], [ -80.507812, -3.688855 ], [ -80.507812, -3.513421 ], [ -80.332031, -3.513421 ], [ -80.332031, -3.688855 ], [ -80.156250, -3.688855 ], [ -80.156250, -4.039618 ], [ -80.507812, -4.039618 ], [ -80.507812, -4.390229 ], [ -79.628906, -4.390229 ], [ -79.628906, -4.565474 ], [ -79.453125, -4.565474 ], [ -79.453125, -4.915833 ], [ -78.925781, -4.915833 ], [ -78.925781, -4.740675 ], [ -78.574219, -4.740675 ], [ -78.574219, -4.214943 ], [ -78.398438, -4.214943 ], [ -78.398438, -3.864255 ], [ -78.222656, -3.864255 ], [ -78.222656, -3.513421 ], [ -78.046875, -3.513421 ], [ -78.046875, -3.162456 ], [ -77.871094, -3.162456 ], [ -77.871094, -2.986927 ], [ -77.519531, -2.986927 ], [ -77.519531, -2.811371 ], [ -76.816406, -2.811371 ], [ -76.816406, -2.635789 ], [ -76.464844, -2.635789 ], [ -76.464844, -2.460181 ], [ -76.289062, -2.460181 ], [ -76.289062, -2.284551 ], [ -76.113281, -2.284551 ], [ -76.113281, -2.108899 ], [ -75.937500, -2.108899 ], [ -75.937500, -1.933227 ], [ -75.761719, -1.933227 ], [ -75.761719, -1.757537 ], [ -75.585938, -1.757537 ], [ -75.585938, -1.406109 ], [ -75.410156, -1.406109 ], [ -75.410156, -1.054628 ], [ -75.234375, -1.054628 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, -0.175781 ], [ -74.882812, -0.175781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.433594, -17.644022 ], [ -69.433594, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.646245 ], [ -69.082031, -18.646245 ], [ -69.082031, -19.145168 ], [ -68.730469, -19.145168 ], [ -68.730469, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.642588 ], [ -68.730469, -19.642588 ], [ -68.730469, -20.138470 ], [ -68.906250, -20.138470 ], [ -68.906250, -20.632784 ], [ -68.730469, -20.632784 ], [ -68.730469, -20.961440 ], [ -68.554688, -20.961440 ], [ -68.554688, -21.289374 ], [ -68.378906, -21.289374 ], [ -68.378906, -21.779905 ], [ -68.203125, -21.779905 ], [ -68.203125, -22.105999 ], [ -68.027344, -22.105999 ], [ -68.027344, -22.593726 ], [ -67.851562, -22.593726 ], [ -67.851562, -22.755921 ], [ -67.324219, -22.755921 ], [ -67.324219, -22.593726 ], [ -67.148438, -22.593726 ], [ -67.148438, -23.241346 ], [ -67.324219, -23.241346 ], [ -67.324219, -23.725012 ], [ -67.500000, -23.725012 ], [ -67.500000, -24.046464 ], [ -67.851562, -24.046464 ], [ -67.851562, -24.206890 ], [ -68.203125, -24.206890 ], [ -68.203125, -24.367114 ], [ -68.554688, -24.367114 ], [ -68.554688, -26.273714 ], [ -68.730469, -26.273714 ], [ -68.730469, -26.588527 ], [ -68.554688, -26.588527 ], [ -68.554688, -26.745610 ], [ -68.378906, -26.745610 ], [ -68.378906, -26.902477 ], [ -68.554688, -26.902477 ], [ -68.554688, -27.059126 ], [ -68.730469, -27.059126 ], [ -68.730469, -27.215556 ], [ -68.906250, -27.215556 ], [ -68.906250, -27.371767 ], [ -69.082031, -27.371767 ], [ -69.082031, -27.527758 ], [ -69.257812, -27.527758 ], [ -69.257812, -27.839076 ], [ -69.433594, -27.839076 ], [ -69.433594, -28.149503 ], [ -69.609375, -28.149503 ], [ -69.609375, -28.459033 ], [ -69.785156, -28.459033 ], [ -69.785156, -28.767659 ], [ -69.960938, -28.767659 ], [ -69.960938, -29.075375 ], [ -70.136719, -29.075375 ], [ -70.136719, -29.840644 ], [ -69.960938, -29.840644 ], [ -69.960938, -30.448674 ], [ -70.136719, -30.448674 ], [ -70.136719, -30.751278 ], [ -70.312500, -30.751278 ], [ -70.312500, -31.052934 ], [ -70.488281, -31.052934 ], [ -70.488281, -31.353637 ], [ -70.664062, -31.353637 ], [ -70.664062, -31.653381 ], [ -70.488281, -31.653381 ], [ -70.488281, -32.249974 ], [ -70.312500, -32.249974 ], [ -70.312500, -32.842674 ], [ -70.136719, -32.842674 ], [ -70.136719, -33.137551 ], [ -69.960938, -33.137551 ], [ -69.960938, -34.307144 ], [ -70.136719, -34.307144 ], [ -70.136719, -34.597042 ], [ -70.312500, -34.597042 ], [ -70.312500, -34.885931 ], [ -70.488281, -34.885931 ], [ -70.488281, -36.031332 ], [ -70.664062, -36.031332 ], [ -70.664062, -36.173357 ], [ -70.839844, -36.173357 ], [ -70.839844, -36.456636 ], [ -71.015625, -36.456636 ], [ -71.015625, -36.597889 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.718590 ], [ -71.015625, -37.718590 ], [ -71.015625, -38.272689 ], [ -70.839844, -38.272689 ], [ -70.839844, -38.685510 ], [ -71.191406, -38.685510 ], [ -71.191406, -38.822591 ], [ -71.542969, -38.822591 ], [ -71.542969, -39.368279 ], [ -71.718750, -39.368279 ], [ -71.718750, -40.044438 ], [ -71.894531, -40.044438 ], [ -71.894531, -40.580585 ], [ -72.070312, -40.580585 ], [ -72.070312, -41.244772 ], [ -71.894531, -41.244772 ], [ -71.894531, -41.640078 ], [ -74.003906, -41.640078 ], [ -74.003906, -40.847060 ], [ -73.828125, -40.847060 ], [ -73.828125, -39.909736 ], [ -73.652344, -39.909736 ], [ -73.652344, -39.639538 ], [ -73.476562, -39.639538 ], [ -73.476562, -39.368279 ], [ -73.300781, -39.368279 ], [ -73.300781, -39.095963 ], [ -73.476562, -39.095963 ], [ -73.476562, -38.548165 ], [ -73.652344, -38.548165 ], [ -73.652344, -37.020098 ], [ -73.300781, -37.020098 ], [ -73.300781, -36.879621 ], [ -73.125000, -36.879621 ], [ -73.125000, -36.456636 ], [ -72.949219, -36.456636 ], [ -72.949219, -36.173357 ], [ -72.773438, -36.173357 ], [ -72.773438, -35.746512 ], [ -72.597656, -35.746512 ], [ -72.597656, -35.317366 ], [ -72.421875, -35.317366 ], [ -72.421875, -34.885931 ], [ -72.246094, -34.885931 ], [ -72.246094, -34.597042 ], [ -72.070312, -34.597042 ], [ -72.070312, -34.161818 ], [ -71.894531, -34.161818 ], [ -71.894531, -33.578015 ], [ -71.718750, -33.578015 ], [ -71.718750, -32.842674 ], [ -71.542969, -32.842674 ], [ -71.542969, -31.653381 ], [ -71.718750, -31.653381 ], [ -71.718750, -30.448674 ], [ -71.542969, -30.448674 ], [ -71.542969, -28.613459 ], [ -71.367188, -28.613459 ], [ -71.367188, -28.149503 ], [ -71.191406, -28.149503 ], [ -71.191406, -27.839076 ], [ -71.015625, -27.839076 ], [ -71.015625, -26.588527 ], [ -70.839844, -26.588527 ], [ -70.839844, -25.165173 ], [ -70.664062, -25.165173 ], [ -70.664062, -24.206890 ], [ -70.488281, -24.206890 ], [ -70.488281, -23.079732 ], [ -70.312500, -23.079732 ], [ -70.312500, -21.943046 ], [ -70.136719, -21.943046 ], [ -70.136719, -20.468189 ], [ -70.312500, -20.468189 ], [ -70.312500, -18.979026 ], [ -70.488281, -18.979026 ], [ -70.488281, -18.312811 ], [ -70.312500, -18.312811 ], [ -70.312500, -18.145852 ], [ -69.960938, -18.145852 ], [ -69.960938, -17.978733 ], [ -69.785156, -17.978733 ], [ -69.785156, -17.644022 ], [ -69.433594, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.433594, -17.811456 ], [ -69.433594, -17.978733 ], [ -69.257812, -17.978733 ], [ -69.257812, -18.312811 ], [ -69.082031, -18.312811 ], [ -69.082031, -18.646245 ], [ -68.906250, -18.646245 ], [ -68.906250, -19.145168 ], [ -68.730469, -19.145168 ], [ -68.730469, -19.311143 ], [ -68.554688, -19.311143 ], [ -68.554688, -19.476950 ], [ -68.378906, -19.476950 ], [ -68.378906, -19.808054 ], [ -68.554688, -19.808054 ], [ -68.554688, -20.138470 ], [ -68.730469, -20.138470 ], [ -68.730469, -20.632784 ], [ -68.554688, -20.632784 ], [ -68.554688, -20.961440 ], [ -68.378906, -20.961440 ], [ -68.378906, -21.289374 ], [ -68.203125, -21.289374 ], [ -68.203125, -21.943046 ], [ -68.027344, -21.943046 ], [ -68.027344, -22.593726 ], [ -67.851562, -22.593726 ], [ -67.851562, -22.917923 ], [ -67.324219, -22.917923 ], [ -67.324219, -22.755921 ], [ -67.148438, -22.755921 ], [ -67.148438, -22.917923 ], [ -66.972656, -22.917923 ], [ -66.972656, -23.241346 ], [ -67.148438, -23.241346 ], [ -67.148438, -23.885838 ], [ -67.324219, -23.885838 ], [ -67.324219, -24.206890 ], [ -67.675781, -24.206890 ], [ -67.675781, -24.367114 ], [ -68.027344, -24.367114 ], [ -68.027344, -24.527135 ], [ -68.378906, -24.527135 ], [ -68.378906, -26.273714 ], [ -68.554688, -26.273714 ], [ -68.554688, -26.745610 ], [ -68.378906, -26.745610 ], [ -68.378906, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -27.215556 ], [ -68.730469, -27.215556 ], [ -68.730469, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.527758 ], [ -69.082031, -27.527758 ], [ -69.082031, -27.683528 ], [ -69.257812, -27.683528 ], [ -69.257812, -27.994401 ], [ -69.433594, -27.994401 ], [ -69.433594, -28.304381 ], [ -69.609375, -28.304381 ], [ -69.609375, -28.767659 ], [ -69.785156, -28.767659 ], [ -69.785156, -29.228890 ], [ -69.960938, -29.228890 ], [ -69.960938, -30.600094 ], [ -70.136719, -30.600094 ], [ -70.136719, -30.902225 ], [ -70.312500, -30.902225 ], [ -70.312500, -31.203405 ], [ -70.488281, -31.203405 ], [ -70.488281, -31.802893 ], [ -70.312500, -31.802893 ], [ -70.312500, -32.694866 ], [ -70.136719, -32.694866 ], [ -70.136719, -33.284620 ], [ -69.785156, -33.284620 ], [ -69.785156, -34.452218 ], [ -69.960938, -34.452218 ], [ -69.960938, -34.741612 ], [ -70.136719, -34.741612 ], [ -70.136719, -35.029996 ], [ -70.312500, -35.029996 ], [ -70.312500, -36.173357 ], [ -70.488281, -36.173357 ], [ -70.488281, -36.315125 ], [ -70.839844, -36.315125 ], [ -70.839844, -36.456636 ], [ -71.015625, -36.456636 ], [ -71.015625, -36.597889 ], [ -71.191406, -36.597889 ], [ -71.191406, -37.857507 ], [ -71.015625, -37.857507 ], [ -71.015625, -38.410558 ], [ -70.839844, -38.410558 ], [ -70.839844, -38.685510 ], [ -71.015625, -38.685510 ], [ -71.015625, -38.822591 ], [ -71.191406, -38.822591 ], [ -71.191406, -38.959409 ], [ -71.367188, -38.959409 ], [ -71.367188, -39.232253 ], [ -71.542969, -39.232253 ], [ -71.542969, -39.639538 ], [ -71.718750, -39.639538 ], [ -71.718750, -40.313043 ], [ -71.894531, -40.313043 ], [ -71.894531, -41.640078 ], [ -74.003906, -41.640078 ], [ -74.003906, -41.244772 ], [ -73.828125, -41.244772 ], [ -73.828125, -40.446947 ], [ -73.652344, -40.446947 ], [ -73.652344, -39.774769 ], [ -73.476562, -39.774769 ], [ -73.476562, -39.504041 ], [ -73.300781, -39.504041 ], [ -73.300781, -38.822591 ], [ -73.476562, -38.822591 ], [ -73.476562, -37.718590 ], [ -73.652344, -37.718590 ], [ -73.652344, -37.160317 ], [ -73.125000, -37.160317 ], [ -73.125000, -36.879621 ], [ -72.949219, -36.879621 ], [ -72.949219, -36.315125 ], [ -72.773438, -36.315125 ], [ -72.773438, -35.746512 ], [ -72.597656, -35.746512 ], [ -72.597656, -35.317366 ], [ -72.421875, -35.317366 ], [ -72.421875, -34.885931 ], [ -72.246094, -34.885931 ], [ -72.246094, -34.597042 ], [ -72.070312, -34.597042 ], [ -72.070312, -34.161818 ], [ -71.894531, -34.161818 ], [ -71.894531, -33.724340 ], [ -71.718750, -33.724340 ], [ -71.718750, -33.137551 ], [ -71.542969, -33.137551 ], [ -71.542969, -32.694866 ], [ -71.367188, -32.694866 ], [ -71.367188, -32.101190 ], [ -71.542969, -32.101190 ], [ -71.542969, -31.353637 ], [ -71.718750, -31.353637 ], [ -71.718750, -30.751278 ], [ -71.542969, -30.751278 ], [ -71.542969, -30.448674 ], [ -71.367188, -30.448674 ], [ -71.367188, -29.535230 ], [ -71.542969, -29.535230 ], [ -71.542969, -28.767659 ], [ -71.367188, -28.767659 ], [ -71.367188, -28.459033 ], [ -71.191406, -28.459033 ], [ -71.191406, -28.149503 ], [ -71.015625, -28.149503 ], [ -71.015625, -27.839076 ], [ -70.839844, -27.839076 ], [ -70.839844, -26.745610 ], [ -70.664062, -26.745610 ], [ -70.664062, -24.686952 ], [ -70.488281, -24.686952 ], [ -70.488281, -23.079732 ], [ -70.312500, -23.079732 ], [ -70.312500, -22.105999 ], [ -70.136719, -22.105999 ], [ -70.136719, -19.145168 ], [ -70.312500, -19.145168 ], [ -70.312500, -18.312811 ], [ -69.960938, -18.312811 ], [ -69.960938, -18.145852 ], [ -69.785156, -18.145852 ], [ -69.785156, -17.978733 ], [ -69.609375, -17.978733 ], [ -69.609375, -17.811456 ], [ -69.433594, -17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.433594, -11.005904 ], [ -68.378906, -11.005904 ], [ -68.378906, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -10.660608 ], [ -68.027344, -10.660608 ], [ -68.027344, -10.487812 ], [ -67.675781, -10.487812 ], [ -67.675781, -10.314919 ], [ -67.324219, -10.314919 ], [ -67.324219, -10.141932 ], [ -67.148438, -10.141932 ], [ -67.148438, -9.968851 ], [ -66.796875, -9.968851 ], [ -66.796875, -9.795678 ], [ -65.917969, -9.795678 ], [ -65.917969, -9.622414 ], [ -65.390625, -9.622414 ], [ -65.390625, -10.141932 ], [ -65.566406, -10.141932 ], [ -65.566406, -10.660608 ], [ -65.390625, -10.660608 ], [ -65.390625, -11.178402 ], [ -65.566406, -11.178402 ], [ -65.566406, -11.695273 ], [ -65.214844, -11.695273 ], [ -65.214844, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.039321 ], [ -64.863281, -12.039321 ], [ -64.863281, -12.211180 ], [ -64.511719, -12.211180 ], [ -64.511719, -12.382928 ], [ -63.984375, -12.382928 ], [ -63.984375, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.726084 ], [ -63.105469, -12.726084 ], [ -63.105469, -12.897489 ], [ -62.753906, -12.897489 ], [ -62.753906, -13.068777 ], [ -62.226562, -13.068777 ], [ -62.226562, -13.239945 ], [ -62.050781, -13.239945 ], [ -62.050781, -13.410994 ], [ -61.171875, -13.410994 ], [ -61.171875, -13.581921 ], [ -60.820312, -13.581921 ], [ -60.820312, -13.752725 ], [ -60.644531, -13.752725 ], [ -60.644531, -14.093957 ], [ -60.468750, -14.093957 ], [ -60.468750, -14.434680 ], [ -60.292969, -14.434680 ], [ -60.292969, -14.944785 ], [ -60.644531, -14.944785 ], [ -60.644531, -15.284185 ], [ -60.468750, -15.284185 ], [ -60.468750, -15.961329 ], [ -60.292969, -15.961329 ], [ -60.292969, -16.130262 ], [ -59.414062, -16.130262 ], [ -59.414062, -16.299051 ], [ -58.359375, -16.299051 ], [ -58.359375, -16.636192 ], [ -58.535156, -16.636192 ], [ -58.535156, -16.972741 ], [ -58.359375, -16.972741 ], [ -58.359375, -17.308688 ], [ -58.007812, -17.308688 ], [ -58.007812, -17.476432 ], [ -57.832031, -17.476432 ], [ -57.832031, -17.811456 ], [ -57.656250, -17.811456 ], [ -57.656250, -18.479609 ], [ -57.832031, -18.479609 ], [ -57.832031, -19.145168 ], [ -58.007812, -19.145168 ], [ -58.007812, -19.973349 ], [ -58.183594, -19.973349 ], [ -58.183594, -19.808054 ], [ -58.535156, -19.808054 ], [ -58.535156, -19.642588 ], [ -58.886719, -19.642588 ], [ -58.886719, -19.476950 ], [ -59.238281, -19.476950 ], [ -59.238281, -19.311143 ], [ -60.820312, -19.311143 ], [ -60.820312, -19.476950 ], [ -61.875000, -19.476950 ], [ -61.875000, -19.642588 ], [ -62.050781, -19.642588 ], [ -62.050781, -19.973349 ], [ -62.226562, -19.973349 ], [ -62.226562, -20.303418 ], [ -62.402344, -20.303418 ], [ -62.402344, -21.289374 ], [ -62.578125, -21.289374 ], [ -62.578125, -21.943046 ], [ -62.753906, -21.943046 ], [ -62.753906, -22.105999 ], [ -62.929688, -22.105999 ], [ -62.929688, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.105999 ], [ -64.160156, -22.105999 ], [ -64.160156, -22.431340 ], [ -64.335938, -22.431340 ], [ -64.335938, -22.755921 ], [ -64.687500, -22.755921 ], [ -64.687500, -22.431340 ], [ -64.863281, -22.431340 ], [ -64.863281, -22.105999 ], [ -65.039062, -22.105999 ], [ -65.039062, -21.943046 ], [ -65.917969, -21.943046 ], [ -65.917969, -21.779905 ], [ -66.445312, -21.779905 ], [ -66.445312, -21.943046 ], [ -66.621094, -21.943046 ], [ -66.621094, -22.105999 ], [ -66.796875, -22.105999 ], [ -66.796875, -22.431340 ], [ -66.972656, -22.431340 ], [ -66.972656, -22.593726 ], [ -67.324219, -22.593726 ], [ -67.324219, -22.755921 ], [ -67.851562, -22.755921 ], [ -67.851562, -22.593726 ], [ -68.027344, -22.593726 ], [ -68.027344, -22.105999 ], [ -68.203125, -22.105999 ], [ -68.203125, -21.779905 ], [ -68.378906, -21.779905 ], [ -68.378906, -21.289374 ], [ -68.554688, -21.289374 ], [ -68.554688, -20.961440 ], [ -68.730469, -20.961440 ], [ -68.730469, -20.632784 ], [ -68.906250, -20.632784 ], [ -68.906250, -20.138470 ], [ -68.730469, -20.138470 ], [ -68.730469, -19.642588 ], [ -68.554688, -19.642588 ], [ -68.554688, -19.311143 ], [ -68.730469, -19.311143 ], [ -68.730469, -19.145168 ], [ -69.082031, -19.145168 ], [ -69.082031, -18.646245 ], [ -69.257812, -18.646245 ], [ -69.257812, -17.978733 ], [ -69.433594, -17.978733 ], [ -69.433594, -17.644022 ], [ -69.609375, -17.644022 ], [ -69.609375, -17.308688 ], [ -69.433594, -17.308688 ], [ -69.433594, -16.972741 ], [ -69.257812, -16.972741 ], [ -69.257812, -16.636192 ], [ -69.082031, -16.636192 ], [ -69.082031, -16.299051 ], [ -69.257812, -16.299051 ], [ -69.257812, -15.961329 ], [ -69.433594, -15.961329 ], [ -69.433594, -15.453680 ], [ -69.257812, -15.453680 ], [ -69.257812, -15.114553 ], [ -69.433594, -15.114553 ], [ -69.433594, -14.944785 ], [ -69.257812, -14.944785 ], [ -69.257812, -14.604847 ], [ -69.082031, -14.604847 ], [ -69.082031, -13.239945 ], [ -68.906250, -13.239945 ], [ -68.906250, -12.726084 ], [ -68.730469, -12.726084 ], [ -68.730469, -12.382928 ], [ -68.906250, -12.382928 ], [ -68.906250, -12.039321 ], [ -69.082031, -12.039321 ], [ -69.082031, -11.695273 ], [ -69.257812, -11.695273 ], [ -69.257812, -11.350797 ], [ -69.433594, -11.350797 ], [ -69.433594, -11.005904 ] ] ], [ [ [ -69.433594, -11.005904 ], [ -69.609375, -11.005904 ], [ -69.609375, -10.833306 ], [ -69.433594, -10.833306 ], [ -69.433594, -11.005904 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.390625, -9.795678 ], [ -65.390625, -11.695273 ], [ -65.214844, -11.695273 ], [ -65.214844, -11.867351 ], [ -65.039062, -11.867351 ], [ -65.039062, -12.039321 ], [ -64.687500, -12.039321 ], [ -64.687500, -12.211180 ], [ -64.511719, -12.211180 ], [ -64.511719, -12.382928 ], [ -63.984375, -12.382928 ], [ -63.984375, -12.554564 ], [ -63.281250, -12.554564 ], [ -63.281250, -12.726084 ], [ -63.105469, -12.726084 ], [ -63.105469, -12.897489 ], [ -62.929688, -12.897489 ], [ -62.929688, -13.068777 ], [ -62.578125, -13.068777 ], [ -62.578125, -13.239945 ], [ -62.050781, -13.239945 ], [ -62.050781, -13.410994 ], [ -61.171875, -13.410994 ], [ -61.171875, -13.581921 ], [ -60.820312, -13.581921 ], [ -60.820312, -13.752725 ], [ -60.468750, -13.752725 ], [ -60.468750, -14.604847 ], [ -60.292969, -14.604847 ], [ -60.292969, -15.114553 ], [ -60.468750, -15.114553 ], [ -60.468750, -15.453680 ], [ -60.292969, -15.453680 ], [ -60.292969, -16.130262 ], [ -60.117188, -16.130262 ], [ -60.117188, -16.299051 ], [ -58.183594, -16.299051 ], [ -58.183594, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -17.308688 ], [ -58.183594, -17.308688 ], [ -58.183594, -17.476432 ], [ -57.656250, -17.476432 ], [ -57.656250, -17.811456 ], [ -57.480469, -17.811456 ], [ -57.480469, -18.646245 ], [ -57.656250, -18.646245 ], [ -57.656250, -19.145168 ], [ -57.832031, -19.145168 ], [ -57.832031, -19.476950 ], [ -58.007812, -19.476950 ], [ -58.007812, -19.808054 ], [ -57.832031, -19.808054 ], [ -57.832031, -20.138470 ], [ -58.183594, -20.138470 ], [ -58.183594, -19.808054 ], [ -58.359375, -19.808054 ], [ -58.359375, -19.642588 ], [ -58.710938, -19.642588 ], [ -58.710938, -19.476950 ], [ -59.062500, -19.476950 ], [ -59.062500, -19.311143 ], [ -60.468750, -19.311143 ], [ -60.468750, -19.476950 ], [ -61.171875, -19.476950 ], [ -61.171875, -19.642588 ], [ -61.699219, -19.642588 ], [ -61.699219, -19.808054 ], [ -61.875000, -19.808054 ], [ -61.875000, -20.138470 ], [ -62.050781, -20.138470 ], [ -62.050781, -20.468189 ], [ -62.226562, -20.468189 ], [ -62.226562, -21.453069 ], [ -62.402344, -21.453069 ], [ -62.402344, -21.779905 ], [ -62.578125, -21.779905 ], [ -62.578125, -22.105999 ], [ -62.753906, -22.105999 ], [ -62.753906, -22.268764 ], [ -62.929688, -22.268764 ], [ -62.929688, -22.105999 ], [ -63.632812, -22.105999 ], [ -63.632812, -21.943046 ], [ -63.984375, -21.943046 ], [ -63.984375, -22.268764 ], [ -64.160156, -22.268764 ], [ -64.160156, -22.593726 ], [ -64.335938, -22.593726 ], [ -64.335938, -22.755921 ], [ -64.511719, -22.755921 ], [ -64.511719, -22.593726 ], [ -64.687500, -22.593726 ], [ -64.687500, -22.431340 ], [ -64.863281, -22.431340 ], [ -64.863281, -22.268764 ], [ -65.039062, -22.268764 ], [ -65.039062, -22.105999 ], [ -65.390625, -22.105999 ], [ -65.390625, -21.943046 ], [ -66.093750, -21.943046 ], [ -66.093750, -21.779905 ], [ -66.269531, -21.779905 ], [ -66.269531, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -22.105999 ], [ -66.621094, -22.105999 ], [ -66.621094, -22.268764 ], [ -66.796875, -22.268764 ], [ -66.796875, -22.593726 ], [ -66.972656, -22.593726 ], [ -66.972656, -22.755921 ], [ -67.324219, -22.755921 ], [ -67.324219, -22.917923 ], [ -67.851562, -22.917923 ], [ -67.851562, -22.593726 ], [ -68.027344, -22.593726 ], [ -68.027344, -21.943046 ], [ -68.203125, -21.943046 ], [ -68.203125, -21.289374 ], [ -68.378906, -21.289374 ], [ -68.378906, -20.961440 ], [ -68.554688, -20.961440 ], [ -68.554688, -20.632784 ], [ -68.730469, -20.632784 ], [ -68.730469, -20.138470 ], [ -68.554688, -20.138470 ], [ -68.554688, -19.808054 ], [ -68.378906, -19.808054 ], [ -68.378906, -19.476950 ], [ -68.554688, -19.476950 ], [ -68.554688, -19.311143 ], [ -68.730469, -19.311143 ], [ -68.730469, -19.145168 ], [ -68.906250, -19.145168 ], [ -68.906250, -18.646245 ], [ -69.082031, -18.646245 ], [ -69.082031, -18.312811 ], [ -69.257812, -18.312811 ], [ -69.257812, -17.978733 ], [ -69.433594, -17.978733 ], [ -69.433594, -17.811456 ], [ -69.609375, -17.811456 ], [ -69.609375, -17.644022 ], [ -69.433594, -17.644022 ], [ -69.433594, -17.308688 ], [ -69.257812, -17.308688 ], [ -69.257812, -16.972741 ], [ -69.082031, -16.972741 ], [ -69.082031, -16.636192 ], [ -68.906250, -16.636192 ], [ -68.906250, -16.467695 ], [ -69.082031, -16.467695 ], [ -69.082031, -16.130262 ], [ -69.257812, -16.130262 ], [ -69.257812, -15.792254 ], [ -69.433594, -15.792254 ], [ -69.433594, -15.623037 ], [ -69.257812, -15.623037 ], [ -69.257812, -15.453680 ], [ -69.082031, -15.453680 ], [ -69.082031, -15.114553 ], [ -69.257812, -15.114553 ], [ -69.257812, -14.944785 ], [ -69.082031, -14.944785 ], [ -69.082031, -14.604847 ], [ -68.906250, -14.604847 ], [ -68.906250, -12.726084 ], [ -68.730469, -12.726084 ], [ -68.730469, -12.554564 ], [ -68.906250, -12.554564 ], [ -68.906250, -12.211180 ], [ -69.082031, -12.211180 ], [ -69.082031, -11.867351 ], [ -69.257812, -11.867351 ], [ -69.257812, -11.523088 ], [ -69.433594, -11.523088 ], [ -69.433594, -11.178402 ], [ -69.609375, -11.178402 ], [ -69.609375, -11.005904 ], [ -68.203125, -11.005904 ], [ -68.203125, -10.833306 ], [ -68.027344, -10.833306 ], [ -68.027344, -10.660608 ], [ -67.675781, -10.660608 ], [ -67.675781, -10.487812 ], [ -67.324219, -10.487812 ], [ -67.324219, -10.314919 ], [ -66.972656, -10.314919 ], [ -66.972656, -10.141932 ], [ -66.621094, -10.141932 ], [ -66.621094, -9.968851 ], [ -65.917969, -9.968851 ], [ -65.917969, -9.795678 ], [ -65.390625, -9.795678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.273438, 0.878872 ], [ -50.273438, 0.703107 ], [ -50.449219, 0.703107 ], [ -50.449219, 0.527336 ], [ -50.625000, 0.527336 ], [ -50.625000, 0.351560 ], [ -50.800781, 0.351560 ], [ -50.800781, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -1.230374 ], [ -48.515625, -1.230374 ], [ -48.515625, -1.054628 ], [ -48.339844, -1.054628 ], [ -48.339844, -0.878872 ], [ -48.164062, -0.878872 ], [ -48.164062, -0.703107 ], [ -47.988281, -0.703107 ], [ -47.988281, -0.527336 ], [ -47.812500, -0.527336 ], [ -47.812500, -0.703107 ], [ -47.109375, -0.703107 ], [ -47.109375, -0.878872 ], [ -46.406250, -0.878872 ], [ -46.406250, -1.054628 ], [ -45.878906, -1.054628 ], [ -45.878906, -1.230374 ], [ -45.351562, -1.230374 ], [ -45.351562, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -44.296875, -2.635789 ], [ -44.296875, -2.460181 ], [ -44.121094, -2.460181 ], [ -44.121094, -23.079732 ], [ -44.296875, -23.079732 ], [ -44.296875, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.402765 ], [ -44.824219, -23.402765 ], [ -44.824219, -23.563987 ], [ -45.175781, -23.563987 ], [ -45.175781, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -46.230469, -23.885838 ], [ -46.230469, -24.046464 ], [ -46.582031, -24.046464 ], [ -46.582031, -24.206890 ], [ -46.933594, -24.206890 ], [ -46.933594, -24.367114 ], [ -47.109375, -24.367114 ], [ -47.109375, -24.527135 ], [ -47.285156, -24.527135 ], [ -47.285156, -24.686952 ], [ -47.636719, -24.686952 ], [ -47.636719, -24.846565 ], [ -47.812500, -24.846565 ], [ -47.812500, -25.005973 ], [ -47.988281, -25.005973 ], [ -47.988281, -25.324167 ], [ -48.164062, -25.324167 ], [ -48.164062, -25.482951 ], [ -48.339844, -25.482951 ], [ -48.339844, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -26.273714 ], [ -48.691406, -26.273714 ], [ -48.691406, -26.902477 ], [ -48.515625, -26.902477 ], [ -48.515625, -27.683528 ], [ -48.691406, -27.683528 ], [ -48.691406, -28.304381 ], [ -48.867188, -28.304381 ], [ -48.867188, -28.613459 ], [ -49.042969, -28.613459 ], [ -49.042969, -28.767659 ], [ -49.218750, -28.767659 ], [ -49.218750, -28.921631 ], [ -49.570312, -28.921631 ], [ -49.570312, -29.075375 ], [ -49.746094, -29.075375 ], [ -49.746094, -29.228890 ], [ -49.921875, -29.228890 ], [ -49.921875, -29.535230 ], [ -50.097656, -29.535230 ], [ -50.097656, -29.840644 ], [ -50.273438, -29.840644 ], [ -50.273438, -30.145127 ], [ -50.449219, -30.145127 ], [ -50.449219, -30.448674 ], [ -50.625000, -30.448674 ], [ -50.625000, -30.751278 ], [ -50.800781, -30.751278 ], [ -50.800781, -31.052934 ], [ -50.976562, -31.052934 ], [ -50.976562, -31.203405 ], [ -51.152344, -31.203405 ], [ -51.152344, -31.353637 ], [ -51.328125, -31.353637 ], [ -51.328125, -31.503629 ], [ -51.503906, -31.503629 ], [ -51.503906, -31.653381 ], [ -51.679688, -31.653381 ], [ -51.679688, -31.802893 ], [ -51.855469, -31.802893 ], [ -51.855469, -31.952162 ], [ -52.207031, -31.952162 ], [ -52.207031, -32.101190 ], [ -52.382812, -32.101190 ], [ -52.382812, -32.398516 ], [ -52.558594, -32.398516 ], [ -52.558594, -32.990236 ], [ -52.734375, -32.990236 ], [ -52.734375, -33.284620 ], [ -52.910156, -33.284620 ], [ -52.910156, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.578015 ], [ -53.261719, -33.578015 ], [ -53.261719, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.578015 ], [ -53.613281, -33.578015 ], [ -53.613281, -33.284620 ], [ -53.789062, -33.284620 ], [ -53.789062, -33.137551 ], [ -53.613281, -33.137551 ], [ -53.613281, -32.990236 ], [ -53.437500, -32.990236 ], [ -53.437500, -32.842674 ], [ -53.261719, -32.842674 ], [ -53.261719, -32.694866 ], [ -53.437500, -32.694866 ], [ -53.437500, -32.398516 ], [ -53.613281, -32.398516 ], [ -53.613281, -32.101190 ], [ -53.789062, -32.101190 ], [ -53.789062, -31.952162 ], [ -53.964844, -31.952162 ], [ -53.964844, -31.802893 ], [ -54.140625, -31.802893 ], [ -54.140625, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.503629 ], [ -54.667969, -31.503629 ], [ -54.667969, -31.353637 ], [ -54.843750, -31.353637 ], [ -54.843750, -31.203405 ], [ -55.195312, -31.203405 ], [ -55.195312, -31.052934 ], [ -55.371094, -31.052934 ], [ -55.371094, -30.902225 ], [ -55.722656, -30.902225 ], [ -55.722656, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.600094 ], [ -56.425781, -30.600094 ], [ -56.425781, -30.448674 ], [ -56.777344, -30.448674 ], [ -56.777344, -30.297018 ], [ -56.953125, -30.297018 ], [ -56.953125, -30.145127 ], [ -57.128906, -30.145127 ], [ -57.128906, -29.993002 ], [ -57.304688, -29.993002 ], [ -57.304688, -29.688053 ], [ -57.128906, -29.688053 ], [ -57.128906, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.382175 ], [ -56.777344, -29.382175 ], [ -56.777344, -29.075375 ], [ -56.601562, -29.075375 ], [ -56.601562, -28.921631 ], [ -56.425781, -28.921631 ], [ -56.425781, -28.767659 ], [ -56.250000, -28.767659 ], [ -56.250000, -28.613459 ], [ -56.074219, -28.613459 ], [ -56.074219, -28.459033 ], [ -55.898438, -28.459033 ], [ -55.898438, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.149503 ], [ -55.371094, -28.149503 ], [ -55.371094, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -27.839076 ], [ -55.019531, -27.839076 ], [ -55.019531, -27.683528 ], [ -54.667969, -27.683528 ], [ -54.667969, -27.527758 ], [ -54.492188, -27.527758 ], [ -54.492188, -27.371767 ], [ -54.316406, -27.371767 ], [ -54.316406, -27.215556 ], [ -53.964844, -27.215556 ], [ -53.964844, -27.059126 ], [ -53.789062, -27.059126 ], [ -53.789062, -25.958045 ], [ -53.964844, -25.958045 ], [ -53.964844, -25.641526 ], [ -54.140625, -25.641526 ], [ -54.140625, -25.482951 ], [ -54.316406, -25.482951 ], [ -54.316406, -25.641526 ], [ -54.667969, -25.641526 ], [ -54.667969, -25.324167 ], [ -54.492188, -25.324167 ], [ -54.492188, -24.846565 ], [ -54.316406, -24.846565 ], [ -54.316406, -23.885838 ], [ -54.667969, -23.885838 ], [ -54.667969, -23.725012 ], [ -54.843750, -23.725012 ], [ -54.843750, -23.885838 ], [ -55.546875, -23.885838 ], [ -55.546875, -23.079732 ], [ -55.722656, -23.079732 ], [ -55.722656, -22.431340 ], [ -55.898438, -22.431340 ], [ -55.898438, -22.268764 ], [ -56.250000, -22.268764 ], [ -56.250000, -22.105999 ], [ -56.777344, -22.105999 ], [ -56.777344, -22.268764 ], [ -57.304688, -22.268764 ], [ -57.304688, -22.105999 ], [ -57.832031, -22.105999 ], [ -57.832031, -21.943046 ], [ -58.007812, -21.943046 ], [ -58.007812, -20.468189 ], [ -58.183594, -20.468189 ], [ -58.183594, -19.973349 ], [ -58.007812, -19.973349 ], [ -58.007812, -19.145168 ], [ -57.832031, -19.145168 ], [ -57.832031, -18.479609 ], [ -57.656250, -18.479609 ], [ -57.656250, -17.811456 ], [ -57.832031, -17.811456 ], [ -57.832031, -17.476432 ], [ -58.007812, -17.476432 ], [ -58.007812, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.972741 ], [ -58.535156, -16.972741 ], [ -58.535156, -16.636192 ], [ -58.359375, -16.636192 ], [ -58.359375, -16.299051 ], [ -59.414062, -16.299051 ], [ -59.414062, -16.130262 ], [ -60.292969, -16.130262 ], [ -60.292969, -15.961329 ], [ -60.468750, -15.961329 ], [ -60.468750, -15.284185 ], [ -60.644531, -15.284185 ], [ -60.644531, -14.944785 ], [ -60.292969, -14.944785 ], [ -60.292969, -14.434680 ], [ -60.468750, -14.434680 ], [ -60.468750, -14.093957 ], [ -60.644531, -14.093957 ], [ -60.644531, -13.752725 ], [ -60.820312, -13.752725 ], [ -60.820312, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.410994 ], [ -62.050781, -13.410994 ], [ -62.050781, -13.239945 ], [ -62.226562, -13.239945 ], [ -62.226562, -13.068777 ], [ -62.753906, -13.068777 ], [ -62.753906, -12.897489 ], [ -63.105469, -12.897489 ], [ -63.105469, -12.726084 ], [ -63.281250, -12.726084 ], [ -63.281250, -12.554564 ], [ -63.984375, -12.554564 ], [ -63.984375, -12.382928 ], [ -64.511719, -12.382928 ], [ -64.511719, -12.211180 ], [ -64.863281, -12.211180 ], [ -64.863281, -12.039321 ], [ -65.039062, -12.039321 ], [ -65.039062, -11.867351 ], [ -65.214844, -11.867351 ], [ -65.214844, -11.695273 ], [ -65.566406, -11.695273 ], [ -65.566406, -11.178402 ], [ -65.390625, -11.178402 ], [ -65.390625, -10.660608 ], [ -65.566406, -10.660608 ], [ -65.566406, -10.141932 ], [ -65.390625, -10.141932 ], [ -65.390625, -9.622414 ], [ -65.917969, -9.622414 ], [ -65.917969, -9.795678 ], [ -66.796875, -9.795678 ], [ -66.796875, -9.968851 ], [ -67.148438, -9.968851 ], [ -67.148438, -10.141932 ], [ -67.324219, -10.141932 ], [ -67.324219, -10.314919 ], [ -67.675781, -10.314919 ], [ -67.675781, -10.487812 ], [ -68.027344, -10.487812 ], [ -68.027344, -10.660608 ], [ -68.203125, -10.660608 ], [ -68.203125, -10.833306 ], [ -68.378906, -10.833306 ], [ -68.378906, -11.005904 ], [ -69.433594, -11.005904 ], [ -69.433594, -10.833306 ], [ -69.785156, -10.833306 ], [ -69.785156, -11.005904 ], [ -70.664062, -11.005904 ], [ -70.664062, -10.314919 ], [ -70.488281, -10.314919 ], [ -70.488281, -9.622414 ], [ -70.839844, -9.622414 ], [ -70.839844, -9.795678 ], [ -71.191406, -9.795678 ], [ -71.191406, -9.968851 ], [ -72.421875, -9.968851 ], [ -72.421875, -9.622414 ], [ -72.597656, -9.622414 ], [ -72.597656, -9.449062 ], [ -73.300781, -9.449062 ], [ -73.300781, -9.275622 ], [ -73.125000, -9.275622 ], [ -73.125000, -8.928487 ], [ -73.300781, -8.928487 ], [ -73.300781, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.581021 ], [ -73.652344, -8.581021 ], [ -73.652344, -8.233237 ], [ -73.828125, -8.233237 ], [ -73.828125, -7.710992 ], [ -74.003906, -7.710992 ], [ -74.003906, -7.362467 ], [ -73.828125, -7.362467 ], [ -73.828125, -6.839170 ], [ -73.476562, -6.839170 ], [ -73.476562, -6.664608 ], [ -73.125000, -6.664608 ], [ -73.125000, -6.315299 ], [ -73.300781, -6.315299 ], [ -73.300781, -5.790897 ], [ -73.125000, -5.790897 ], [ -73.125000, -5.441022 ], [ -72.949219, -5.441022 ], [ -72.949219, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.090944 ], [ -72.421875, -5.090944 ], [ -72.421875, -4.915833 ], [ -72.246094, -4.915833 ], [ -72.246094, -4.740675 ], [ -71.894531, -4.740675 ], [ -71.894531, -4.565474 ], [ -71.367188, -4.565474 ], [ -71.367188, -4.390229 ], [ -70.839844, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.785156, -2.108899 ], [ -69.609375, -2.108899 ], [ -69.609375, -1.230374 ], [ -69.433594, -1.230374 ], [ -69.433594, -0.878872 ], [ -69.609375, -0.878872 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -70.136719, -0.351560 ], [ -70.136719, 0.703107 ], [ -69.785156, 0.703107 ], [ -69.785156, 0.878872 ], [ -69.609375, 0.878872 ], [ -69.609375, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 0.878872 ], [ -50.273438, 0.878872 ] ] ], [ [ [ -57.304688, -29.993002 ], [ -57.304688, -30.145127 ], [ -57.480469, -30.145127 ], [ -57.480469, -29.993002 ], [ -57.304688, -29.993002 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.097656, 0.878872 ], [ -50.097656, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.527336 ], [ -50.449219, 0.527336 ], [ -50.449219, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.703107 ], [ -48.515625, -0.703107 ], [ -48.515625, -1.230374 ], [ -48.339844, -1.230374 ], [ -48.339844, -1.054628 ], [ -48.164062, -1.054628 ], [ -48.164062, -0.878872 ], [ -47.988281, -0.878872 ], [ -47.988281, -0.703107 ], [ -47.812500, -0.703107 ], [ -47.812500, -0.527336 ], [ -47.636719, -0.527336 ], [ -47.636719, -0.703107 ], [ -46.933594, -0.703107 ], [ -46.933594, -0.878872 ], [ -46.406250, -0.878872 ], [ -46.406250, -1.054628 ], [ -46.054688, -1.054628 ], [ -46.054688, -1.230374 ], [ -45.527344, -1.230374 ], [ -45.527344, -1.406109 ], [ -45.175781, -1.406109 ], [ -45.175781, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -44.121094, -2.635789 ], [ -44.121094, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.402765 ], [ -44.648438, -23.402765 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -46.054688, -23.885838 ], [ -46.054688, -24.046464 ], [ -46.406250, -24.046464 ], [ -46.406250, -24.206890 ], [ -46.757812, -24.206890 ], [ -46.757812, -24.367114 ], [ -46.933594, -24.367114 ], [ -46.933594, -24.527135 ], [ -47.109375, -24.527135 ], [ -47.109375, -24.686952 ], [ -47.460938, -24.686952 ], [ -47.460938, -24.846565 ], [ -47.636719, -24.846565 ], [ -47.636719, -25.005973 ], [ -47.812500, -25.005973 ], [ -47.812500, -25.165173 ], [ -47.988281, -25.165173 ], [ -47.988281, -25.324167 ], [ -48.164062, -25.324167 ], [ -48.164062, -25.641526 ], [ -48.339844, -25.641526 ], [ -48.339844, -25.799891 ], [ -48.515625, -25.799891 ], [ -48.515625, -26.273714 ], [ -48.691406, -26.273714 ], [ -48.691406, -26.902477 ], [ -48.515625, -26.902477 ], [ -48.515625, -27.683528 ], [ -48.691406, -27.683528 ], [ -48.691406, -28.459033 ], [ -48.867188, -28.459033 ], [ -48.867188, -28.767659 ], [ -49.042969, -28.767659 ], [ -49.042969, -28.921631 ], [ -49.218750, -28.921631 ], [ -49.218750, -29.075375 ], [ -49.394531, -29.075375 ], [ -49.394531, -29.228890 ], [ -49.570312, -29.228890 ], [ -49.570312, -29.382175 ], [ -49.746094, -29.382175 ], [ -49.746094, -29.688053 ], [ -49.921875, -29.688053 ], [ -49.921875, -29.993002 ], [ -50.097656, -29.993002 ], [ -50.097656, -30.297018 ], [ -50.273438, -30.297018 ], [ -50.273438, -30.600094 ], [ -50.449219, -30.600094 ], [ -50.449219, -30.902225 ], [ -50.625000, -30.902225 ], [ -50.625000, -31.203405 ], [ -50.800781, -31.203405 ], [ -50.800781, -31.353637 ], [ -50.976562, -31.353637 ], [ -50.976562, -31.503629 ], [ -51.152344, -31.503629 ], [ -51.152344, -31.653381 ], [ -51.328125, -31.653381 ], [ -51.328125, -31.802893 ], [ -51.503906, -31.802893 ], [ -51.503906, -31.952162 ], [ -51.679688, -31.952162 ], [ -51.679688, -32.101190 ], [ -52.031250, -32.101190 ], [ -52.031250, -32.249974 ], [ -52.207031, -32.249974 ], [ -52.207031, -32.398516 ], [ -52.382812, -32.398516 ], [ -52.382812, -32.694866 ], [ -52.558594, -32.694866 ], [ -52.558594, -32.990236 ], [ -52.734375, -32.990236 ], [ -52.734375, -33.284620 ], [ -52.910156, -33.284620 ], [ -52.910156, -33.431441 ], [ -53.085938, -33.431441 ], [ -53.085938, -33.578015 ], [ -53.261719, -33.578015 ], [ -53.261719, -33.724340 ], [ -53.437500, -33.724340 ], [ -53.437500, -33.431441 ], [ -53.613281, -33.431441 ], [ -53.613281, -33.137551 ], [ -53.437500, -33.137551 ], [ -53.437500, -32.842674 ], [ -53.261719, -32.842674 ], [ -53.261719, -32.694866 ], [ -53.437500, -32.694866 ], [ -53.437500, -32.398516 ], [ -53.613281, -32.398516 ], [ -53.613281, -32.249974 ], [ -53.789062, -32.249974 ], [ -53.789062, -32.101190 ], [ -53.964844, -32.101190 ], [ -53.964844, -31.952162 ], [ -54.140625, -31.952162 ], [ -54.140625, -31.802893 ], [ -54.316406, -31.802893 ], [ -54.316406, -31.653381 ], [ -54.492188, -31.653381 ], [ -54.492188, -31.503629 ], [ -54.667969, -31.503629 ], [ -54.667969, -31.353637 ], [ -55.019531, -31.353637 ], [ -55.019531, -31.203405 ], [ -55.195312, -31.203405 ], [ -55.195312, -31.052934 ], [ -55.546875, -31.052934 ], [ -55.546875, -30.902225 ], [ -56.074219, -30.902225 ], [ -56.074219, -30.751278 ], [ -56.250000, -30.751278 ], [ -56.250000, -30.600094 ], [ -56.601562, -30.600094 ], [ -56.601562, -30.448674 ], [ -56.777344, -30.448674 ], [ -56.777344, -30.297018 ], [ -56.953125, -30.297018 ], [ -56.953125, -30.145127 ], [ -57.480469, -30.145127 ], [ -57.480469, -29.993002 ], [ -57.304688, -29.993002 ], [ -57.304688, -29.840644 ], [ -57.128906, -29.840644 ], [ -57.128906, -29.688053 ], [ -56.953125, -29.688053 ], [ -56.953125, -29.535230 ], [ -56.777344, -29.535230 ], [ -56.777344, -29.382175 ], [ -56.601562, -29.382175 ], [ -56.601562, -29.228890 ], [ -56.425781, -29.228890 ], [ -56.425781, -29.075375 ], [ -56.250000, -29.075375 ], [ -56.250000, -28.921631 ], [ -56.074219, -28.921631 ], [ -56.074219, -28.767659 ], [ -55.898438, -28.767659 ], [ -55.898438, -28.613459 ], [ -55.722656, -28.613459 ], [ -55.722656, -28.304381 ], [ -55.546875, -28.304381 ], [ -55.546875, -28.149503 ], [ -55.371094, -28.149503 ], [ -55.371094, -27.994401 ], [ -55.195312, -27.994401 ], [ -55.195312, -27.839076 ], [ -54.843750, -27.839076 ], [ -54.843750, -27.683528 ], [ -54.492188, -27.683528 ], [ -54.492188, -27.527758 ], [ -54.316406, -27.527758 ], [ -54.316406, -27.371767 ], [ -54.140625, -27.371767 ], [ -54.140625, -27.215556 ], [ -53.789062, -27.215556 ], [ -53.789062, -27.059126 ], [ -53.613281, -27.059126 ], [ -53.613281, -26.115986 ], [ -53.789062, -26.115986 ], [ -53.789062, -25.799891 ], [ -53.964844, -25.799891 ], [ -53.964844, -25.641526 ], [ -54.492188, -25.641526 ], [ -54.492188, -25.799891 ], [ -54.667969, -25.799891 ], [ -54.667969, -25.482951 ], [ -54.492188, -25.482951 ], [ -54.492188, -24.846565 ], [ -54.316406, -24.846565 ], [ -54.316406, -24.046464 ], [ -55.371094, -24.046464 ], [ -55.371094, -23.725012 ], [ -55.546875, -23.725012 ], [ -55.546875, -22.593726 ], [ -55.722656, -22.593726 ], [ -55.722656, -22.431340 ], [ -56.074219, -22.431340 ], [ -56.074219, -22.268764 ], [ -56.425781, -22.268764 ], [ -56.425781, -22.105999 ], [ -56.601562, -22.105999 ], [ -56.601562, -22.268764 ], [ -57.656250, -22.268764 ], [ -57.656250, -22.105999 ], [ -58.007812, -22.105999 ], [ -58.007812, -21.453069 ], [ -57.832031, -21.453069 ], [ -57.832031, -20.632784 ], [ -58.007812, -20.632784 ], [ -58.007812, -20.303418 ], [ -58.183594, -20.303418 ], [ -58.183594, -20.138470 ], [ -57.832031, -20.138470 ], [ -57.832031, -19.808054 ], [ -58.007812, -19.808054 ], [ -58.007812, -19.476950 ], [ -57.832031, -19.476950 ], [ -57.832031, -19.145168 ], [ -57.656250, -19.145168 ], [ -57.656250, -18.646245 ], [ -57.480469, -18.646245 ], [ -57.480469, -17.811456 ], [ -57.656250, -17.811456 ], [ -57.656250, -17.476432 ], [ -58.183594, -17.476432 ], [ -58.183594, -17.308688 ], [ -58.359375, -17.308688 ], [ -58.359375, -16.636192 ], [ -58.183594, -16.636192 ], [ -58.183594, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.117188, -16.130262 ], [ -60.292969, -16.130262 ], [ -60.292969, -15.453680 ], [ -60.468750, -15.453680 ], [ -60.468750, -15.114553 ], [ -60.292969, -15.114553 ], [ -60.292969, -14.604847 ], [ -60.468750, -14.604847 ], [ -60.468750, -13.752725 ], [ -60.820312, -13.752725 ], [ -60.820312, -13.581921 ], [ -61.171875, -13.581921 ], [ -61.171875, -13.410994 ], [ -62.050781, -13.410994 ], [ -62.050781, -13.239945 ], [ -62.578125, -13.239945 ], [ -62.578125, -13.068777 ], [ -62.929688, -13.068777 ], [ -62.929688, -12.897489 ], [ -63.105469, -12.897489 ], [ -63.105469, -12.726084 ], [ -63.281250, -12.726084 ], [ -63.281250, -12.554564 ], [ -63.984375, -12.554564 ], [ -63.984375, -12.382928 ], [ -64.511719, -12.382928 ], [ -64.511719, -12.211180 ], [ -64.687500, -12.211180 ], [ -64.687500, -12.039321 ], [ -65.039062, -12.039321 ], [ -65.039062, -11.867351 ], [ -65.214844, -11.867351 ], [ -65.214844, -11.695273 ], [ -65.390625, -11.695273 ], [ -65.390625, -9.795678 ], [ -65.917969, -9.795678 ], [ -65.917969, -9.968851 ], [ -66.621094, -9.968851 ], [ -66.621094, -10.141932 ], [ -66.972656, -10.141932 ], [ -66.972656, -10.314919 ], [ -67.324219, -10.314919 ], [ -67.324219, -10.487812 ], [ -67.675781, -10.487812 ], [ -67.675781, -10.660608 ], [ -68.027344, -10.660608 ], [ -68.027344, -10.833306 ], [ -68.203125, -10.833306 ], [ -68.203125, -11.005904 ], [ -69.785156, -11.005904 ], [ -69.785156, -11.178402 ], [ -70.488281, -11.178402 ], [ -70.488281, -9.622414 ], [ -70.664062, -9.622414 ], [ -70.664062, -9.795678 ], [ -71.015625, -9.795678 ], [ -71.015625, -9.968851 ], [ -71.191406, -9.968851 ], [ -71.191406, -10.141932 ], [ -71.894531, -10.141932 ], [ -71.894531, -9.968851 ], [ -72.421875, -9.968851 ], [ -72.421875, -9.622414 ], [ -72.597656, -9.622414 ], [ -72.597656, -9.449062 ], [ -73.125000, -9.449062 ], [ -73.125000, -9.275622 ], [ -72.949219, -9.275622 ], [ -72.949219, -9.102097 ], [ -73.125000, -9.102097 ], [ -73.125000, -8.928487 ], [ -73.300781, -8.928487 ], [ -73.300781, -8.754795 ], [ -73.476562, -8.754795 ], [ -73.476562, -8.581021 ], [ -73.652344, -8.581021 ], [ -73.652344, -8.233237 ], [ -73.828125, -8.233237 ], [ -73.828125, -7.885147 ], [ -74.003906, -7.885147 ], [ -74.003906, -7.536764 ], [ -73.652344, -7.536764 ], [ -73.652344, -6.839170 ], [ -73.300781, -6.839170 ], [ -73.300781, -6.664608 ], [ -73.125000, -6.664608 ], [ -73.125000, -6.489983 ], [ -73.300781, -6.489983 ], [ -73.300781, -6.140555 ], [ -73.125000, -6.140555 ], [ -73.125000, -5.965754 ], [ -72.949219, -5.965754 ], [ -72.949219, -5.266008 ], [ -72.773438, -5.266008 ], [ -72.773438, -5.090944 ], [ -72.421875, -5.090944 ], [ -72.421875, -4.915833 ], [ -72.070312, -4.915833 ], [ -72.070312, -4.740675 ], [ -71.718750, -4.740675 ], [ -71.718750, -4.565474 ], [ -71.191406, -4.565474 ], [ -71.191406, -4.390229 ], [ -70.839844, -4.390229 ], [ -70.839844, -4.214943 ], [ -69.960938, -4.214943 ], [ -69.960938, -3.864255 ], [ -69.785156, -3.864255 ], [ -69.785156, -2.986927 ], [ -69.609375, -2.986927 ], [ -69.609375, -2.108899 ], [ -69.433594, -2.108899 ], [ -69.433594, -0.878872 ], [ -69.609375, -0.878872 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -69.960938, -0.351560 ], [ -69.960938, 0.527336 ], [ -69.609375, 0.527336 ], [ -69.609375, 0.703107 ], [ -69.433594, 0.703107 ], [ -69.433594, 0.527336 ], [ -69.257812, 0.527336 ], [ -69.257812, 0.878872 ], [ -66.445312, 0.878872 ], [ -66.445312, 0.703107 ], [ -65.742188, 0.703107 ], [ -65.742188, 0.878872 ], [ -50.097656, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.238281, -19.311143 ], [ -59.238281, -19.476950 ], [ -58.886719, -19.476950 ], [ -58.886719, -19.642588 ], [ -58.535156, -19.642588 ], [ -58.535156, -19.808054 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.468189 ], [ -58.007812, -20.468189 ], [ -58.007812, -21.943046 ], [ -57.832031, -21.943046 ], [ -57.832031, -22.105999 ], [ -57.304688, -22.105999 ], [ -57.304688, -22.268764 ], [ -56.777344, -22.268764 ], [ -56.777344, -22.105999 ], [ -56.250000, -22.105999 ], [ -56.250000, -22.268764 ], [ -55.898438, -22.268764 ], [ -55.898438, -22.431340 ], [ -55.722656, -22.431340 ], [ -55.722656, -23.079732 ], [ -55.546875, -23.079732 ], [ -55.546875, -23.885838 ], [ -54.843750, -23.885838 ], [ -54.843750, -23.725012 ], [ -54.667969, -23.725012 ], [ -54.667969, -23.885838 ], [ -54.316406, -23.885838 ], [ -54.316406, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -25.324167 ], [ -54.667969, -25.324167 ], [ -54.667969, -26.115986 ], [ -54.843750, -26.115986 ], [ -54.843750, -26.745610 ], [ -55.019531, -26.745610 ], [ -55.019531, -26.902477 ], [ -55.195312, -26.902477 ], [ -55.195312, -27.059126 ], [ -55.371094, -27.059126 ], [ -55.371094, -27.215556 ], [ -55.546875, -27.215556 ], [ -55.546875, -27.371767 ], [ -56.074219, -27.371767 ], [ -56.074219, -27.527758 ], [ -57.304688, -27.527758 ], [ -57.304688, -27.371767 ], [ -58.007812, -27.371767 ], [ -58.007812, -27.215556 ], [ -58.535156, -27.215556 ], [ -58.535156, -26.745610 ], [ -58.359375, -26.745610 ], [ -58.359375, -26.431228 ], [ -58.183594, -26.431228 ], [ -58.183594, -26.273714 ], [ -58.007812, -26.273714 ], [ -58.007812, -25.958045 ], [ -57.832031, -25.958045 ], [ -57.832031, -25.641526 ], [ -57.656250, -25.641526 ], [ -57.656250, -25.324167 ], [ -57.832031, -25.324167 ], [ -57.832031, -25.005973 ], [ -58.183594, -25.005973 ], [ -58.183594, -24.846565 ], [ -58.710938, -24.846565 ], [ -58.710938, -24.686952 ], [ -59.062500, -24.686952 ], [ -59.062500, -24.527135 ], [ -59.414062, -24.527135 ], [ -59.414062, -24.367114 ], [ -59.589844, -24.367114 ], [ -59.589844, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.046464 ], [ -60.117188, -24.046464 ], [ -60.117188, -23.885838 ], [ -60.644531, -23.885838 ], [ -60.644531, -23.725012 ], [ -61.171875, -23.725012 ], [ -61.171875, -23.563987 ], [ -61.347656, -23.563987 ], [ -61.347656, -23.402765 ], [ -61.523438, -23.402765 ], [ -61.523438, -23.241346 ], [ -61.699219, -23.241346 ], [ -61.699219, -23.079732 ], [ -61.875000, -23.079732 ], [ -61.875000, -22.917923 ], [ -62.050781, -22.917923 ], [ -62.050781, -22.755921 ], [ -62.226562, -22.755921 ], [ -62.226562, -22.593726 ], [ -62.402344, -22.593726 ], [ -62.402344, -22.431340 ], [ -62.578125, -22.431340 ], [ -62.578125, -22.268764 ], [ -62.753906, -22.268764 ], [ -62.753906, -21.943046 ], [ -62.578125, -21.943046 ], [ -62.578125, -21.289374 ], [ -62.402344, -21.289374 ], [ -62.402344, -20.303418 ], [ -62.226562, -20.303418 ], [ -62.226562, -19.973349 ], [ -62.050781, -19.973349 ], [ -62.050781, -19.642588 ], [ -61.875000, -19.642588 ], [ -61.875000, -19.476950 ], [ -60.820312, -19.476950 ], [ -60.820312, -19.311143 ], [ -59.238281, -19.311143 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.062500, -19.311143 ], [ -59.062500, -19.476950 ], [ -58.710938, -19.476950 ], [ -58.710938, -19.642588 ], [ -58.359375, -19.642588 ], [ -58.359375, -19.808054 ], [ -58.183594, -19.808054 ], [ -58.183594, -20.303418 ], [ -58.007812, -20.303418 ], [ -58.007812, -20.632784 ], [ -57.832031, -20.632784 ], [ -57.832031, -21.453069 ], [ -58.007812, -21.453069 ], [ -58.007812, -22.105999 ], [ -57.656250, -22.105999 ], [ -57.656250, -22.268764 ], [ -56.601562, -22.268764 ], [ -56.601562, -22.105999 ], [ -56.425781, -22.105999 ], [ -56.425781, -22.268764 ], [ -56.074219, -22.268764 ], [ -56.074219, -22.431340 ], [ -55.722656, -22.431340 ], [ -55.722656, -22.593726 ], [ -55.546875, -22.593726 ], [ -55.546875, -23.725012 ], [ -55.371094, -23.725012 ], [ -55.371094, -24.046464 ], [ -54.316406, -24.046464 ], [ -54.316406, -24.846565 ], [ -54.492188, -24.846565 ], [ -54.492188, -25.482951 ], [ -54.667969, -25.482951 ], [ -54.667969, -26.273714 ], [ -54.843750, -26.273714 ], [ -54.843750, -26.745610 ], [ -55.019531, -26.745610 ], [ -55.019531, -26.902477 ], [ -55.195312, -26.902477 ], [ -55.195312, -27.059126 ], [ -55.371094, -27.059126 ], [ -55.371094, -27.215556 ], [ -55.546875, -27.215556 ], [ -55.546875, -27.371767 ], [ -55.898438, -27.371767 ], [ -55.898438, -27.527758 ], [ -57.128906, -27.527758 ], [ -57.128906, -27.371767 ], [ -58.007812, -27.371767 ], [ -58.007812, -27.215556 ], [ -58.359375, -27.215556 ], [ -58.359375, -26.745610 ], [ -58.183594, -26.745610 ], [ -58.183594, -26.431228 ], [ -58.007812, -26.431228 ], [ -58.007812, -26.115986 ], [ -57.832031, -26.115986 ], [ -57.832031, -25.799891 ], [ -57.656250, -25.799891 ], [ -57.656250, -25.482951 ], [ -57.832031, -25.482951 ], [ -57.832031, -25.165173 ], [ -58.183594, -25.165173 ], [ -58.183594, -25.005973 ], [ -58.710938, -25.005973 ], [ -58.710938, -24.846565 ], [ -59.062500, -24.846565 ], [ -59.062500, -24.686952 ], [ -59.238281, -24.686952 ], [ -59.238281, -24.527135 ], [ -59.589844, -24.527135 ], [ -59.589844, -24.367114 ], [ -59.765625, -24.367114 ], [ -59.765625, -24.206890 ], [ -59.941406, -24.206890 ], [ -59.941406, -24.046464 ], [ -60.468750, -24.046464 ], [ -60.468750, -23.885838 ], [ -60.996094, -23.885838 ], [ -60.996094, -23.725012 ], [ -61.171875, -23.725012 ], [ -61.171875, -23.563987 ], [ -61.347656, -23.563987 ], [ -61.347656, -23.402765 ], [ -61.523438, -23.402765 ], [ -61.523438, -23.241346 ], [ -61.699219, -23.241346 ], [ -61.699219, -23.079732 ], [ -62.050781, -23.079732 ], [ -62.050781, -22.917923 ], [ -62.226562, -22.917923 ], [ -62.226562, -22.755921 ], [ -62.402344, -22.755921 ], [ -62.402344, -22.593726 ], [ -62.578125, -22.593726 ], [ -62.578125, -22.431340 ], [ -62.753906, -22.431340 ], [ -62.753906, -22.105999 ], [ -62.578125, -22.105999 ], [ -62.578125, -21.779905 ], [ -62.402344, -21.779905 ], [ -62.402344, -21.453069 ], [ -62.226562, -21.453069 ], [ -62.226562, -20.468189 ], [ -62.050781, -20.468189 ], [ -62.050781, -20.138470 ], [ -61.875000, -20.138470 ], [ -61.875000, -19.808054 ], [ -61.699219, -19.808054 ], [ -61.699219, -19.642588 ], [ -61.171875, -19.642588 ], [ -61.171875, -19.476950 ], [ -60.468750, -19.476950 ], [ -60.468750, -19.311143 ], [ -59.062500, -19.311143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.917969, -21.779905 ], [ -65.917969, -21.943046 ], [ -65.039062, -21.943046 ], [ -65.039062, -22.105999 ], [ -64.863281, -22.105999 ], [ -64.863281, -22.431340 ], [ -64.687500, -22.431340 ], [ -64.687500, -22.755921 ], [ -64.335938, -22.755921 ], [ -64.335938, -22.431340 ], [ -64.160156, -22.431340 ], [ -64.160156, -22.105999 ], [ -63.984375, -22.105999 ], [ -63.984375, -21.943046 ], [ -62.929688, -21.943046 ], [ -62.929688, -22.105999 ], [ -62.753906, -22.105999 ], [ -62.753906, -22.268764 ], [ -62.578125, -22.268764 ], [ -62.578125, -22.431340 ], [ -62.402344, -22.431340 ], [ -62.402344, -22.593726 ], [ -62.226562, -22.593726 ], [ -62.226562, -22.755921 ], [ -62.050781, -22.755921 ], [ -62.050781, -22.917923 ], [ -61.875000, -22.917923 ], [ -61.875000, -23.079732 ], [ -61.699219, -23.079732 ], [ -61.699219, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.402765 ], [ -61.347656, -23.402765 ], [ -61.347656, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.725012 ], [ -60.644531, -23.725012 ], [ -60.644531, -23.885838 ], [ -60.117188, -23.885838 ], [ -60.117188, -24.046464 ], [ -59.765625, -24.046464 ], [ -59.765625, -24.206890 ], [ -59.589844, -24.206890 ], [ -59.589844, -24.367114 ], [ -59.414062, -24.367114 ], [ -59.414062, -24.527135 ], [ -59.062500, -24.527135 ], [ -59.062500, -24.686952 ], [ -58.710938, -24.686952 ], [ -58.710938, -24.846565 ], [ -58.183594, -24.846565 ], [ -58.183594, -25.005973 ], [ -57.832031, -25.005973 ], [ -57.832031, -25.324167 ], [ -57.656250, -25.324167 ], [ -57.656250, -25.641526 ], [ -57.832031, -25.641526 ], [ -57.832031, -25.958045 ], [ -58.007812, -25.958045 ], [ -58.007812, -26.273714 ], [ -58.183594, -26.273714 ], [ -58.183594, -26.431228 ], [ -58.359375, -26.431228 ], [ -58.359375, -26.745610 ], [ -58.535156, -26.745610 ], [ -58.535156, -27.215556 ], [ -58.007812, -27.215556 ], [ -58.007812, -27.371767 ], [ -57.304688, -27.371767 ], [ -57.304688, -27.527758 ], [ -56.074219, -27.527758 ], [ -56.074219, -27.371767 ], [ -55.546875, -27.371767 ], [ -55.546875, -27.215556 ], [ -55.371094, -27.215556 ], [ -55.371094, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -26.902477 ], [ -55.019531, -26.902477 ], [ -55.019531, -26.745610 ], [ -54.843750, -26.745610 ], [ -54.843750, -26.115986 ], [ -54.667969, -26.115986 ], [ -54.667969, -25.641526 ], [ -54.316406, -25.641526 ], [ -54.316406, -25.482951 ], [ -54.140625, -25.482951 ], [ -54.140625, -25.641526 ], [ -53.964844, -25.641526 ], [ -53.964844, -25.958045 ], [ -53.789062, -25.958045 ], [ -53.789062, -27.059126 ], [ -53.964844, -27.059126 ], [ -53.964844, -27.215556 ], [ -54.316406, -27.215556 ], [ -54.316406, -27.371767 ], [ -54.492188, -27.371767 ], [ -54.492188, -27.527758 ], [ -54.667969, -27.527758 ], [ -54.667969, -27.683528 ], [ -55.019531, -27.683528 ], [ -55.019531, -27.839076 ], [ -55.195312, -27.839076 ], [ -55.195312, -27.994401 ], [ -55.371094, -27.994401 ], [ -55.371094, -28.149503 ], [ -55.546875, -28.149503 ], [ -55.546875, -28.304381 ], [ -55.898438, -28.304381 ], [ -55.898438, -28.459033 ], [ -56.074219, -28.459033 ], [ -56.074219, -28.613459 ], [ -56.250000, -28.613459 ], [ -56.250000, -28.767659 ], [ -56.425781, -28.767659 ], [ -56.425781, -28.921631 ], [ -56.601562, -28.921631 ], [ -56.601562, -29.075375 ], [ -56.777344, -29.075375 ], [ -56.777344, -29.382175 ], [ -56.953125, -29.382175 ], [ -56.953125, -29.535230 ], [ -57.128906, -29.535230 ], [ -57.128906, -29.688053 ], [ -57.304688, -29.688053 ], [ -57.304688, -29.993002 ], [ -57.480469, -29.993002 ], [ -57.480469, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.448674 ], [ -57.832031, -30.448674 ], [ -57.832031, -30.751278 ], [ -58.007812, -30.751278 ], [ -58.007812, -31.503629 ], [ -58.183594, -31.503629 ], [ -58.183594, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -33.578015 ], [ -58.535156, -33.578015 ], [ -58.535156, -34.452218 ], [ -58.359375, -34.452218 ], [ -58.359375, -34.597042 ], [ -58.183594, -34.597042 ], [ -58.183594, -34.741612 ], [ -57.832031, -34.741612 ], [ -57.832031, -34.885931 ], [ -57.656250, -34.885931 ], [ -57.656250, -35.029996 ], [ -57.480469, -35.029996 ], [ -57.480469, -35.173808 ], [ -57.304688, -35.173808 ], [ -57.304688, -35.603719 ], [ -57.480469, -35.603719 ], [ -57.480469, -36.031332 ], [ -57.304688, -36.031332 ], [ -57.304688, -36.173357 ], [ -56.953125, -36.173357 ], [ -56.953125, -36.315125 ], [ -56.777344, -36.315125 ], [ -56.777344, -36.597889 ], [ -56.953125, -36.597889 ], [ -56.953125, -37.020098 ], [ -57.128906, -37.020098 ], [ -57.128906, -37.300275 ], [ -57.304688, -37.300275 ], [ -57.304688, -37.579413 ], [ -57.480469, -37.579413 ], [ -57.480469, -37.857507 ], [ -57.656250, -37.857507 ], [ -57.656250, -38.134557 ], [ -57.832031, -38.134557 ], [ -57.832031, -38.272689 ], [ -58.183594, -38.272689 ], [ -58.183594, -38.410558 ], [ -58.535156, -38.410558 ], [ -58.535156, -38.548165 ], [ -58.886719, -38.548165 ], [ -58.886719, -38.685510 ], [ -60.117188, -38.685510 ], [ -60.117188, -38.822591 ], [ -62.402344, -38.822591 ], [ -62.402344, -39.095963 ], [ -62.226562, -39.095963 ], [ -62.226562, -39.774769 ], [ -62.402344, -39.774769 ], [ -62.402344, -40.313043 ], [ -62.226562, -40.313043 ], [ -62.226562, -40.713956 ], [ -62.402344, -40.713956 ], [ -62.402344, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -65.039062, -40.847060 ], [ -65.039062, -40.979898 ], [ -65.214844, -40.979898 ], [ -65.214844, -41.376809 ], [ -65.039062, -41.376809 ], [ -65.039062, -41.640078 ], [ -71.894531, -41.640078 ], [ -71.894531, -41.244772 ], [ -72.070312, -41.244772 ], [ -72.070312, -40.580585 ], [ -71.894531, -40.580585 ], [ -71.894531, -40.044438 ], [ -71.718750, -40.044438 ], [ -71.718750, -39.368279 ], [ -71.542969, -39.368279 ], [ -71.542969, -38.822591 ], [ -71.191406, -38.822591 ], [ -71.191406, -38.685510 ], [ -70.839844, -38.685510 ], [ -70.839844, -38.272689 ], [ -71.015625, -38.272689 ], [ -71.015625, -37.718590 ], [ -71.191406, -37.718590 ], [ -71.191406, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -36.456636 ], [ -70.839844, -36.456636 ], [ -70.839844, -36.173357 ], [ -70.664062, -36.173357 ], [ -70.664062, -36.031332 ], [ -70.488281, -36.031332 ], [ -70.488281, -34.885931 ], [ -70.312500, -34.885931 ], [ -70.312500, -34.597042 ], [ -70.136719, -34.597042 ], [ -70.136719, -34.307144 ], [ -69.960938, -34.307144 ], [ -69.960938, -33.137551 ], [ -70.136719, -33.137551 ], [ -70.136719, -32.842674 ], [ -70.312500, -32.842674 ], [ -70.312500, -32.249974 ], [ -70.488281, -32.249974 ], [ -70.488281, -31.653381 ], [ -70.664062, -31.653381 ], [ -70.664062, -31.353637 ], [ -70.488281, -31.353637 ], [ -70.488281, -31.052934 ], [ -70.312500, -31.052934 ], [ -70.312500, -30.751278 ], [ -70.136719, -30.751278 ], [ -70.136719, -30.448674 ], [ -69.960938, -30.448674 ], [ -69.960938, -29.840644 ], [ -70.136719, -29.840644 ], [ -70.136719, -29.075375 ], [ -69.960938, -29.075375 ], [ -69.960938, -28.767659 ], [ -69.785156, -28.767659 ], [ -69.785156, -28.459033 ], [ -69.609375, -28.459033 ], [ -69.609375, -28.149503 ], [ -69.433594, -28.149503 ], [ -69.433594, -27.839076 ], [ -69.257812, -27.839076 ], [ -69.257812, -27.527758 ], [ -69.082031, -27.527758 ], [ -69.082031, -27.371767 ], [ -68.906250, -27.371767 ], [ -68.906250, -27.215556 ], [ -68.730469, -27.215556 ], [ -68.730469, -27.059126 ], [ -68.554688, -27.059126 ], [ -68.554688, -26.902477 ], [ -68.378906, -26.902477 ], [ -68.378906, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -26.588527 ], [ -68.730469, -26.588527 ], [ -68.730469, -26.273714 ], [ -68.554688, -26.273714 ], [ -68.554688, -24.367114 ], [ -68.203125, -24.367114 ], [ -68.203125, -24.206890 ], [ -67.851562, -24.206890 ], [ -67.851562, -24.046464 ], [ -67.500000, -24.046464 ], [ -67.500000, -23.725012 ], [ -67.324219, -23.725012 ], [ -67.324219, -23.241346 ], [ -67.148438, -23.241346 ], [ -67.148438, -22.593726 ], [ -66.972656, -22.593726 ], [ -66.972656, -22.431340 ], [ -66.796875, -22.431340 ], [ -66.796875, -22.105999 ], [ -66.621094, -22.105999 ], [ -66.621094, -21.943046 ], [ -66.445312, -21.943046 ], [ -66.445312, -21.779905 ], [ -65.917969, -21.779905 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.093750, -21.779905 ], [ -66.093750, -21.943046 ], [ -65.390625, -21.943046 ], [ -65.390625, -22.105999 ], [ -65.039062, -22.105999 ], [ -65.039062, -22.268764 ], [ -64.863281, -22.268764 ], [ -64.863281, -22.431340 ], [ -64.687500, -22.431340 ], [ -64.687500, -22.593726 ], [ -64.511719, -22.593726 ], [ -64.511719, -22.755921 ], [ -64.335938, -22.755921 ], [ -64.335938, -22.593726 ], [ -64.160156, -22.593726 ], [ -64.160156, -22.268764 ], [ -63.984375, -22.268764 ], [ -63.984375, -21.943046 ], [ -63.632812, -21.943046 ], [ -63.632812, -22.105999 ], [ -62.929688, -22.105999 ], [ -62.929688, -22.268764 ], [ -62.753906, -22.268764 ], [ -62.753906, -22.431340 ], [ -62.578125, -22.431340 ], [ -62.578125, -22.593726 ], [ -62.402344, -22.593726 ], [ -62.402344, -22.755921 ], [ -62.226562, -22.755921 ], [ -62.226562, -22.917923 ], [ -62.050781, -22.917923 ], [ -62.050781, -23.079732 ], [ -61.699219, -23.079732 ], [ -61.699219, -23.241346 ], [ -61.523438, -23.241346 ], [ -61.523438, -23.402765 ], [ -61.347656, -23.402765 ], [ -61.347656, -23.563987 ], [ -61.171875, -23.563987 ], [ -61.171875, -23.725012 ], [ -60.996094, -23.725012 ], [ -60.996094, -23.885838 ], [ -60.468750, -23.885838 ], [ -60.468750, -24.046464 ], [ -59.941406, -24.046464 ], [ -59.941406, -24.206890 ], [ -59.765625, -24.206890 ], [ -59.765625, -24.367114 ], [ -59.589844, -24.367114 ], [ -59.589844, -24.527135 ], [ -59.238281, -24.527135 ], [ -59.238281, -24.686952 ], [ -59.062500, -24.686952 ], [ -59.062500, -24.846565 ], [ -58.710938, -24.846565 ], [ -58.710938, -25.005973 ], [ -58.183594, -25.005973 ], [ -58.183594, -25.165173 ], [ -57.832031, -25.165173 ], [ -57.832031, -25.482951 ], [ -57.656250, -25.482951 ], [ -57.656250, -25.799891 ], [ -57.832031, -25.799891 ], [ -57.832031, -26.115986 ], [ -58.007812, -26.115986 ], [ -58.007812, -26.431228 ], [ -58.183594, -26.431228 ], [ -58.183594, -26.745610 ], [ -58.359375, -26.745610 ], [ -58.359375, -27.215556 ], [ -58.007812, -27.215556 ], [ -58.007812, -27.371767 ], [ -57.128906, -27.371767 ], [ -57.128906, -27.527758 ], [ -55.898438, -27.527758 ], [ -55.898438, -27.371767 ], [ -55.546875, -27.371767 ], [ -55.546875, -27.215556 ], [ -55.371094, -27.215556 ], [ -55.371094, -27.059126 ], [ -55.195312, -27.059126 ], [ -55.195312, -26.902477 ], [ -55.019531, -26.902477 ], [ -55.019531, -26.745610 ], [ -54.843750, -26.745610 ], [ -54.843750, -26.273714 ], [ -54.667969, -26.273714 ], [ -54.667969, -25.799891 ], [ -54.492188, -25.799891 ], [ -54.492188, -25.641526 ], [ -53.964844, -25.641526 ], [ -53.964844, -25.799891 ], [ -53.789062, -25.799891 ], [ -53.789062, -26.115986 ], [ -53.613281, -26.115986 ], [ -53.613281, -27.059126 ], [ -53.789062, -27.059126 ], [ -53.789062, -27.215556 ], [ -54.140625, -27.215556 ], [ -54.140625, -27.371767 ], [ -54.316406, -27.371767 ], [ -54.316406, -27.527758 ], [ -54.492188, -27.527758 ], [ -54.492188, -27.683528 ], [ -54.843750, -27.683528 ], [ -54.843750, -27.839076 ], [ -55.195312, -27.839076 ], [ -55.195312, -27.994401 ], [ -55.371094, -27.994401 ], [ -55.371094, -28.149503 ], [ -55.546875, -28.149503 ], [ -55.546875, -28.304381 ], [ -55.722656, -28.304381 ], [ -55.722656, -28.613459 ], [ -55.898438, -28.613459 ], [ -55.898438, -28.767659 ], [ -56.074219, -28.767659 ], [ -56.074219, -28.921631 ], [ -56.250000, -28.921631 ], [ -56.250000, -29.075375 ], [ -56.425781, -29.075375 ], [ -56.425781, -29.228890 ], [ -56.601562, -29.228890 ], [ -56.601562, -29.382175 ], [ -56.777344, -29.382175 ], [ -56.777344, -29.535230 ], [ -56.953125, -29.535230 ], [ -56.953125, -29.688053 ], [ -57.128906, -29.688053 ], [ -57.128906, -29.840644 ], [ -57.304688, -29.840644 ], [ -57.304688, -29.993002 ], [ -57.480469, -29.993002 ], [ -57.480469, -30.145127 ], [ -57.656250, -30.145127 ], [ -57.656250, -30.600094 ], [ -57.832031, -30.600094 ], [ -57.832031, -31.353637 ], [ -58.007812, -31.353637 ], [ -58.007812, -31.952162 ], [ -58.183594, -31.952162 ], [ -58.183594, -33.137551 ], [ -58.359375, -33.137551 ], [ -58.359375, -34.161818 ], [ -58.535156, -34.161818 ], [ -58.535156, -34.597042 ], [ -58.359375, -34.597042 ], [ -58.359375, -34.741612 ], [ -58.183594, -34.741612 ], [ -58.183594, -34.885931 ], [ -57.832031, -34.885931 ], [ -57.832031, -35.029996 ], [ -57.656250, -35.029996 ], [ -57.656250, -35.173808 ], [ -57.480469, -35.173808 ], [ -57.480469, -35.317366 ], [ -57.304688, -35.317366 ], [ -57.304688, -36.173357 ], [ -57.128906, -36.173357 ], [ -57.128906, -36.315125 ], [ -56.953125, -36.315125 ], [ -56.953125, -36.456636 ], [ -56.777344, -36.456636 ], [ -56.777344, -37.020098 ], [ -56.953125, -37.020098 ], [ -56.953125, -37.300275 ], [ -57.128906, -37.300275 ], [ -57.128906, -37.439974 ], [ -57.304688, -37.439974 ], [ -57.304688, -37.718590 ], [ -57.480469, -37.718590 ], [ -57.480469, -37.857507 ], [ -57.656250, -37.857507 ], [ -57.656250, -38.134557 ], [ -57.832031, -38.134557 ], [ -57.832031, -38.272689 ], [ -58.183594, -38.272689 ], [ -58.183594, -38.410558 ], [ -58.535156, -38.410558 ], [ -58.535156, -38.548165 ], [ -58.886719, -38.548165 ], [ -58.886719, -38.685510 ], [ -59.589844, -38.685510 ], [ -59.589844, -38.822591 ], [ -60.644531, -38.822591 ], [ -60.644531, -38.959409 ], [ -61.875000, -38.959409 ], [ -61.875000, -38.822591 ], [ -62.402344, -38.822591 ], [ -62.402344, -38.959409 ], [ -62.226562, -38.959409 ], [ -62.226562, -39.232253 ], [ -62.050781, -39.232253 ], [ -62.050781, -39.639538 ], [ -62.226562, -39.639538 ], [ -62.226562, -40.044438 ], [ -62.402344, -40.044438 ], [ -62.402344, -40.446947 ], [ -62.226562, -40.446947 ], [ -62.226562, -40.847060 ], [ -62.578125, -40.847060 ], [ -62.578125, -40.979898 ], [ -63.105469, -40.979898 ], [ -63.105469, -41.112469 ], [ -64.160156, -41.112469 ], [ -64.160156, -40.979898 ], [ -64.511719, -40.979898 ], [ -64.511719, -40.847060 ], [ -64.687500, -40.847060 ], [ -64.687500, -40.979898 ], [ -64.863281, -40.979898 ], [ -64.863281, -41.112469 ], [ -65.039062, -41.112469 ], [ -65.039062, -41.640078 ], [ -71.894531, -41.640078 ], [ -71.894531, -40.313043 ], [ -71.718750, -40.313043 ], [ -71.718750, -39.639538 ], [ -71.542969, -39.639538 ], [ -71.542969, -39.232253 ], [ -71.367188, -39.232253 ], [ -71.367188, -38.959409 ], [ -71.191406, -38.959409 ], [ -71.191406, -38.822591 ], [ -71.015625, -38.822591 ], [ -71.015625, -38.685510 ], [ -70.839844, -38.685510 ], [ -70.839844, -38.410558 ], [ -71.015625, -38.410558 ], [ -71.015625, -37.857507 ], [ -71.191406, -37.857507 ], [ -71.191406, -36.597889 ], [ -71.015625, -36.597889 ], [ -71.015625, -36.456636 ], [ -70.839844, -36.456636 ], [ -70.839844, -36.315125 ], [ -70.488281, -36.315125 ], [ -70.488281, -36.173357 ], [ -70.312500, -36.173357 ], [ -70.312500, -35.029996 ], [ -70.136719, -35.029996 ], [ -70.136719, -34.741612 ], [ -69.960938, -34.741612 ], [ -69.960938, -34.452218 ], [ -69.785156, -34.452218 ], [ -69.785156, -33.284620 ], [ -70.136719, -33.284620 ], [ -70.136719, -32.694866 ], [ -70.312500, -32.694866 ], [ -70.312500, -31.802893 ], [ -70.488281, -31.802893 ], [ -70.488281, -31.203405 ], [ -70.312500, -31.203405 ], [ -70.312500, -30.902225 ], [ -70.136719, -30.902225 ], [ -70.136719, -30.600094 ], [ -69.960938, -30.600094 ], [ -69.960938, -29.228890 ], [ -69.785156, -29.228890 ], [ -69.785156, -28.767659 ], [ -69.609375, -28.767659 ], [ -69.609375, -28.304381 ], [ -69.433594, -28.304381 ], [ -69.433594, -27.994401 ], [ -69.257812, -27.994401 ], [ -69.257812, -27.683528 ], [ -69.082031, -27.683528 ], [ -69.082031, -27.527758 ], [ -68.906250, -27.527758 ], [ -68.906250, -27.371767 ], [ -68.730469, -27.371767 ], [ -68.730469, -27.215556 ], [ -68.554688, -27.215556 ], [ -68.554688, -27.059126 ], [ -68.378906, -27.059126 ], [ -68.378906, -26.745610 ], [ -68.554688, -26.745610 ], [ -68.554688, -26.273714 ], [ -68.378906, -26.273714 ], [ -68.378906, -24.527135 ], [ -68.027344, -24.527135 ], [ -68.027344, -24.367114 ], [ -67.675781, -24.367114 ], [ -67.675781, -24.206890 ], [ -67.324219, -24.206890 ], [ -67.324219, -23.885838 ], [ -67.148438, -23.885838 ], [ -67.148438, -23.241346 ], [ -66.972656, -23.241346 ], [ -66.972656, -22.917923 ], [ -67.148438, -22.917923 ], [ -67.148438, -22.755921 ], [ -66.972656, -22.755921 ], [ -66.972656, -22.593726 ], [ -66.796875, -22.593726 ], [ -66.796875, -22.268764 ], [ -66.621094, -22.268764 ], [ -66.621094, -22.105999 ], [ -66.445312, -22.105999 ], [ -66.445312, -21.943046 ], [ -66.269531, -21.943046 ], [ -66.269531, -21.779905 ], [ -66.093750, -21.779905 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.953125, -30.145127 ], [ -56.953125, -30.297018 ], [ -56.777344, -30.297018 ], [ -56.777344, -30.448674 ], [ -56.601562, -30.448674 ], [ -56.601562, -30.600094 ], [ -56.250000, -30.600094 ], [ -56.250000, -30.751278 ], [ -56.074219, -30.751278 ], [ -56.074219, -30.902225 ], [ -55.546875, -30.902225 ], [ -55.546875, -31.052934 ], [ -55.195312, -31.052934 ], [ -55.195312, -31.203405 ], [ -55.019531, -31.203405 ], [ -55.019531, -31.353637 ], [ -54.667969, -31.353637 ], [ -54.667969, -31.503629 ], [ -54.492188, -31.503629 ], [ -54.492188, -31.653381 ], [ -54.316406, -31.653381 ], [ -54.316406, -31.802893 ], [ -54.140625, -31.802893 ], [ -54.140625, -31.952162 ], [ -53.964844, -31.952162 ], [ -53.964844, -32.101190 ], [ -53.789062, -32.101190 ], [ -53.789062, -32.249974 ], [ -53.613281, -32.249974 ], [ -53.613281, -32.398516 ], [ -53.437500, -32.398516 ], [ -53.437500, -32.694866 ], [ -53.261719, -32.694866 ], [ -53.261719, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -33.137551 ], [ -53.613281, -33.137551 ], [ -53.613281, -33.431441 ], [ -53.437500, -33.431441 ], [ -53.437500, -34.016242 ], [ -53.613281, -34.016242 ], [ -53.613281, -34.307144 ], [ -53.789062, -34.307144 ], [ -53.789062, -34.452218 ], [ -53.964844, -34.452218 ], [ -53.964844, -34.597042 ], [ -54.316406, -34.597042 ], [ -54.316406, -34.741612 ], [ -54.667969, -34.741612 ], [ -54.667969, -34.885931 ], [ -55.546875, -34.885931 ], [ -55.546875, -34.741612 ], [ -55.898438, -34.741612 ], [ -55.898438, -34.885931 ], [ -56.425781, -34.885931 ], [ -56.425781, -34.741612 ], [ -56.777344, -34.741612 ], [ -56.777344, -34.597042 ], [ -57.128906, -34.597042 ], [ -57.128906, -34.452218 ], [ -58.007812, -34.452218 ], [ -58.007812, -34.161818 ], [ -58.183594, -34.161818 ], [ -58.183594, -34.016242 ], [ -58.359375, -34.016242 ], [ -58.359375, -33.137551 ], [ -58.183594, -33.137551 ], [ -58.183594, -31.952162 ], [ -58.007812, -31.952162 ], [ -58.007812, -31.353637 ], [ -57.832031, -31.353637 ], [ -57.832031, -30.600094 ], [ -57.656250, -30.600094 ], [ -57.656250, -30.145127 ], [ -56.953125, -30.145127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.128906, -29.993002 ], [ -57.128906, -30.145127 ], [ -56.953125, -30.145127 ], [ -56.953125, -30.297018 ], [ -56.777344, -30.297018 ], [ -56.777344, -30.448674 ], [ -56.425781, -30.448674 ], [ -56.425781, -30.600094 ], [ -56.250000, -30.600094 ], [ -56.250000, -30.751278 ], [ -55.722656, -30.751278 ], [ -55.722656, -30.902225 ], [ -55.371094, -30.902225 ], [ -55.371094, -31.052934 ], [ -55.195312, -31.052934 ], [ -55.195312, -31.203405 ], [ -54.843750, -31.203405 ], [ -54.843750, -31.353637 ], [ -54.667969, -31.353637 ], [ -54.667969, -31.503629 ], [ -54.492188, -31.503629 ], [ -54.492188, -31.653381 ], [ -54.140625, -31.653381 ], [ -54.140625, -31.802893 ], [ -53.964844, -31.802893 ], [ -53.964844, -31.952162 ], [ -53.789062, -31.952162 ], [ -53.789062, -32.101190 ], [ -53.613281, -32.101190 ], [ -53.613281, -32.398516 ], [ -53.437500, -32.398516 ], [ -53.437500, -32.694866 ], [ -53.261719, -32.694866 ], [ -53.261719, -32.842674 ], [ -53.437500, -32.842674 ], [ -53.437500, -32.990236 ], [ -53.613281, -32.990236 ], [ -53.613281, -33.137551 ], [ -53.789062, -33.137551 ], [ -53.789062, -33.284620 ], [ -53.613281, -33.284620 ], [ -53.613281, -33.578015 ], [ -53.437500, -33.578015 ], [ -53.437500, -33.870416 ], [ -53.613281, -33.870416 ], [ -53.613281, -34.016242 ], [ -53.789062, -34.016242 ], [ -53.789062, -34.307144 ], [ -53.964844, -34.307144 ], [ -53.964844, -34.452218 ], [ -54.316406, -34.452218 ], [ -54.316406, -34.597042 ], [ -54.492188, -34.597042 ], [ -54.492188, -34.741612 ], [ -54.843750, -34.741612 ], [ -54.843750, -34.885931 ], [ -55.546875, -34.885931 ], [ -55.546875, -34.741612 ], [ -56.601562, -34.741612 ], [ -56.601562, -34.597042 ], [ -56.953125, -34.597042 ], [ -56.953125, -34.452218 ], [ -57.304688, -34.452218 ], [ -57.304688, -34.307144 ], [ -57.480469, -34.307144 ], [ -57.480469, -34.452218 ], [ -58.007812, -34.452218 ], [ -58.007812, -34.307144 ], [ -58.183594, -34.307144 ], [ -58.183594, -34.161818 ], [ -58.359375, -34.161818 ], [ -58.359375, -34.016242 ], [ -58.535156, -34.016242 ], [ -58.535156, -33.578015 ], [ -58.359375, -33.578015 ], [ -58.359375, -33.137551 ], [ -58.183594, -33.137551 ], [ -58.183594, -31.503629 ], [ -58.007812, -31.503629 ], [ -58.007812, -30.751278 ], [ -57.832031, -30.751278 ], [ -57.832031, -30.448674 ], [ -57.656250, -30.448674 ], [ -57.656250, -30.145127 ], [ -57.304688, -30.145127 ], [ -57.304688, -29.993002 ], [ -57.128906, -29.993002 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 38.134557 ], [ -76.816406, 37.996163 ], [ -76.464844, 37.996163 ], [ -76.464844, 37.857507 ], [ -76.289062, 37.857507 ], [ -76.289062, 36.879621 ], [ -75.937500, 36.879621 ], [ -75.937500, 36.031332 ], [ -75.761719, 36.031332 ], [ -75.761719, 35.460670 ], [ -75.937500, 35.460670 ], [ -75.937500, 35.173808 ], [ -76.113281, 35.173808 ], [ -76.113281, 34.885931 ], [ -76.289062, 34.885931 ], [ -76.289062, 34.741612 ], [ -76.464844, 34.741612 ], [ -76.464844, 34.597042 ], [ -76.992188, 34.597042 ], [ -76.992188, 34.452218 ], [ -77.343750, 34.452218 ], [ -77.343750, 34.307144 ], [ -77.519531, 34.307144 ], [ -77.519531, 34.161818 ], [ -77.695312, 34.161818 ], [ -77.695312, 34.016242 ], [ -77.871094, 34.016242 ], [ -77.871094, 33.870416 ], [ -78.574219, 33.870416 ], [ -78.574219, 33.724340 ], [ -78.750000, 33.724340 ], [ -78.750000, 33.578015 ], [ -78.925781, 33.578015 ], [ -78.925781, 33.431441 ], [ -79.101562, 33.431441 ], [ -79.101562, 33.284620 ], [ -79.277344, 33.284620 ], [ -79.277344, 32.990236 ], [ -79.628906, 32.990236 ], [ -79.628906, 32.842674 ], [ -79.804688, 32.842674 ], [ -79.804688, 32.694866 ], [ -80.156250, 32.694866 ], [ -80.156250, 32.546813 ], [ -80.332031, 32.546813 ], [ -80.332031, 32.398516 ], [ -80.507812, 32.398516 ], [ -80.507812, 32.249974 ], [ -80.683594, 32.249974 ], [ -80.683594, 32.101190 ], [ -80.859375, 32.101190 ], [ -80.859375, 31.952162 ], [ -81.035156, 31.952162 ], [ -81.035156, 31.802893 ], [ -81.210938, 31.802893 ], [ -81.210938, 31.503629 ], [ -81.386719, 31.503629 ], [ -81.386719, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.297018 ], [ -81.386719, 30.297018 ], [ -81.386719, 29.688053 ], [ -81.210938, 29.688053 ], [ -81.210938, 29.382175 ], [ -81.035156, 29.382175 ], [ -81.035156, 29.075375 ], [ -80.859375, 29.075375 ], [ -80.859375, 28.767659 ], [ -80.683594, 28.767659 ], [ -80.683594, 28.459033 ], [ -80.507812, 28.459033 ], [ -80.507812, 27.683528 ], [ -80.332031, 27.683528 ], [ -80.332031, 27.371767 ], [ -80.156250, 27.371767 ], [ -80.156250, 27.059126 ], [ -79.980469, 27.059126 ], [ -79.980469, 26.588527 ], [ -80.156250, 26.588527 ], [ -80.156250, 25.482951 ], [ -80.332031, 25.482951 ], [ -80.332031, 25.005973 ], [ -81.035156, 25.005973 ], [ -81.035156, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.210938, 25.324167 ], [ -81.386719, 25.324167 ], [ -81.386719, 25.641526 ], [ -81.738281, 25.641526 ], [ -81.738281, 25.958045 ], [ -81.914062, 25.958045 ], [ -81.914062, 26.273714 ], [ -82.089844, 26.273714 ], [ -82.089844, 26.588527 ], [ -82.265625, 26.588527 ], [ -82.265625, 26.745610 ], [ -82.441406, 26.745610 ], [ -82.441406, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.371767 ], [ -82.792969, 27.371767 ], [ -82.792969, 28.149503 ], [ -82.617188, 28.149503 ], [ -82.617188, 28.613459 ], [ -82.792969, 28.613459 ], [ -82.792969, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.075375 ], [ -83.144531, 29.075375 ], [ -83.144531, 29.382175 ], [ -83.320312, 29.382175 ], [ -83.320312, 29.535230 ], [ -83.496094, 29.535230 ], [ -83.496094, 29.840644 ], [ -83.671875, 29.840644 ], [ -83.671875, 29.993002 ], [ -84.375000, 29.993002 ], [ -84.375000, 29.840644 ], [ -84.726562, 29.840644 ], [ -84.726562, 29.688053 ], [ -85.429688, 29.688053 ], [ -85.429688, 29.840644 ], [ -85.605469, 29.840644 ], [ -85.605469, 29.993002 ], [ -85.781250, 29.993002 ], [ -85.781250, 30.145127 ], [ -86.132812, 30.145127 ], [ -86.132812, 30.297018 ], [ -86.484375, 30.297018 ], [ -86.484375, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.297018 ], [ -88.066406, 30.297018 ], [ -88.066406, 30.448674 ], [ -88.593750, 30.448674 ], [ -88.593750, 30.297018 ], [ -89.296875, 30.297018 ], [ -89.296875, 30.145127 ], [ -89.648438, 30.145127 ], [ -89.648438, 29.993002 ], [ -89.472656, 29.993002 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.000000, 29.228890 ], [ -90.000000, 29.075375 ], [ -90.878906, 29.075375 ], [ -90.878906, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.044438 ], [ -74.179688, 40.044438 ], [ -74.179688, 39.639538 ], [ -74.355469, 39.639538 ], [ -74.355469, 39.368279 ], [ -74.531250, 39.368279 ], [ -74.531250, 39.232253 ], [ -74.707031, 39.232253 ], [ -74.707031, 38.959409 ], [ -74.882812, 38.959409 ], [ -74.882812, 39.095963 ], [ -75.058594, 39.095963 ], [ -75.058594, 39.232253 ], [ -75.410156, 39.232253 ], [ -75.410156, 39.095963 ], [ -75.234375, 39.095963 ], [ -75.234375, 38.822591 ], [ -75.058594, 38.822591 ], [ -75.058594, 38.272689 ], [ -75.234375, 38.272689 ], [ -75.234375, 37.996163 ], [ -75.410156, 37.996163 ], [ -75.410156, 37.857507 ], [ -75.585938, 37.857507 ], [ -75.585938, 37.579413 ], [ -75.761719, 37.579413 ], [ -75.761719, 37.300275 ], [ -75.937500, 37.300275 ], [ -75.937500, 37.160317 ], [ -76.113281, 37.160317 ], [ -76.113281, 37.439974 ], [ -75.937500, 37.439974 ], [ -75.937500, 37.718590 ], [ -75.761719, 37.718590 ], [ -75.761719, 37.996163 ], [ -75.937500, 37.996163 ], [ -75.937500, 38.134557 ], [ -76.289062, 38.134557 ], [ -76.816406, 38.134557 ] ], [ [ -76.464844, 38.822591 ], [ -76.464844, 38.410558 ], [ -76.289062, 38.410558 ], [ -76.289062, 38.822591 ], [ -76.464844, 38.822591 ] ], [ [ -76.816406, 38.134557 ], [ -76.816406, 38.272689 ], [ -76.992188, 38.272689 ], [ -76.992188, 38.134557 ], [ -76.816406, 38.134557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -70.312500, 41.640078 ], [ -70.312500, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -72.597656, 41.376809 ], [ -72.597656, 41.244772 ], [ -72.246094, 41.244772 ], [ -72.246094, 41.112469 ], [ -72.070312, 41.112469 ], [ -72.070312, 40.979898 ], [ -72.246094, 40.979898 ], [ -72.246094, 40.847060 ], [ -72.949219, 40.847060 ], [ -72.949219, 40.713956 ], [ -74.179688, 40.713956 ], [ -74.179688, 40.580585 ], [ -74.355469, 40.580585 ], [ -74.355469, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.044438 ], [ -74.179688, 40.044438 ], [ -74.179688, 39.639538 ], [ -74.355469, 39.639538 ], [ -74.355469, 39.504041 ], [ -74.531250, 39.504041 ], [ -74.531250, 39.368279 ], [ -74.707031, 39.368279 ], [ -74.707031, 39.095963 ], [ -74.882812, 39.095963 ], [ -74.882812, 38.959409 ], [ -75.058594, 38.959409 ], [ -75.058594, 39.232253 ], [ -75.234375, 39.232253 ], [ -75.234375, 39.368279 ], [ -75.585938, 39.368279 ], [ -75.585938, 39.232253 ], [ -75.410156, 39.232253 ], [ -75.410156, 38.822591 ], [ -75.234375, 38.822591 ], [ -75.234375, 38.548165 ], [ -75.058594, 38.548165 ], [ -75.058594, 38.272689 ], [ -75.234375, 38.272689 ], [ -75.234375, 38.134557 ], [ -75.410156, 38.134557 ], [ -75.410156, 37.996163 ], [ -75.585938, 37.996163 ], [ -75.585938, 37.718590 ], [ -75.761719, 37.718590 ], [ -75.761719, 37.996163 ], [ -75.937500, 37.996163 ], [ -75.937500, 38.134557 ], [ -76.113281, 38.134557 ], [ -76.113281, 38.272689 ], [ -76.289062, 38.272689 ], [ -76.289062, 38.822591 ], [ -76.464844, 38.822591 ], [ -76.464844, 38.959409 ], [ -76.640625, 38.959409 ], [ -76.640625, 38.410558 ], [ -76.464844, 38.410558 ], [ -76.464844, 38.134557 ], [ -76.640625, 38.134557 ], [ -76.640625, 37.996163 ], [ -76.464844, 37.996163 ], [ -76.464844, 37.439974 ], [ -76.289062, 37.439974 ], [ -76.289062, 37.020098 ], [ -76.113281, 37.020098 ], [ -76.113281, 36.738884 ], [ -75.937500, 36.738884 ], [ -75.937500, 36.031332 ], [ -75.761719, 36.031332 ], [ -75.761719, 35.460670 ], [ -75.937500, 35.460670 ], [ -75.937500, 35.317366 ], [ -76.113281, 35.317366 ], [ -76.113281, 35.029996 ], [ -76.289062, 35.029996 ], [ -76.289062, 34.885931 ], [ -76.640625, 34.885931 ], [ -76.640625, 34.741612 ], [ -77.167969, 34.741612 ], [ -77.167969, 34.597042 ], [ -77.519531, 34.597042 ], [ -77.519531, 34.452218 ], [ -77.695312, 34.452218 ], [ -77.695312, 34.307144 ], [ -77.871094, 34.307144 ], [ -77.871094, 34.161818 ], [ -78.046875, 34.161818 ], [ -78.046875, 34.016242 ], [ -78.222656, 34.016242 ], [ -78.222656, 33.870416 ], [ -78.574219, 33.870416 ], [ -78.574219, 33.724340 ], [ -78.925781, 33.724340 ], [ -78.925781, 33.578015 ], [ -79.101562, 33.578015 ], [ -79.101562, 33.431441 ], [ -79.277344, 33.431441 ], [ -79.277344, 33.137551 ], [ -79.453125, 33.137551 ], [ -79.453125, 32.990236 ], [ -79.628906, 32.990236 ], [ -79.628906, 32.842674 ], [ -79.980469, 32.842674 ], [ -79.980469, 32.694866 ], [ -80.156250, 32.694866 ], [ -80.156250, 32.546813 ], [ -80.332031, 32.546813 ], [ -80.332031, 32.398516 ], [ -80.507812, 32.398516 ], [ -80.507812, 32.249974 ], [ -80.859375, 32.249974 ], [ -80.859375, 32.101190 ], [ -81.035156, 32.101190 ], [ -81.035156, 31.952162 ], [ -81.210938, 31.952162 ], [ -81.210938, 31.653381 ], [ -81.386719, 31.653381 ], [ -81.386719, 31.052934 ], [ -81.562500, 31.052934 ], [ -81.562500, 30.448674 ], [ -81.386719, 30.448674 ], [ -81.386719, 29.840644 ], [ -81.210938, 29.840644 ], [ -81.210938, 29.382175 ], [ -81.035156, 29.382175 ], [ -81.035156, 29.075375 ], [ -80.859375, 29.075375 ], [ -80.859375, 28.767659 ], [ -80.683594, 28.767659 ], [ -80.683594, 27.839076 ], [ -80.507812, 27.839076 ], [ -80.507812, 27.527758 ], [ -80.332031, 27.527758 ], [ -80.332031, 27.059126 ], [ -80.156250, 27.059126 ], [ -80.156250, 25.799891 ], [ -80.332031, 25.799891 ], [ -80.332031, 25.482951 ], [ -80.507812, 25.482951 ], [ -80.507812, 25.165173 ], [ -81.035156, 25.165173 ], [ -81.035156, 25.324167 ], [ -81.210938, 25.324167 ], [ -81.210938, 25.482951 ], [ -81.386719, 25.482951 ], [ -81.386719, 25.641526 ], [ -81.562500, 25.641526 ], [ -81.562500, 25.799891 ], [ -81.738281, 25.799891 ], [ -81.738281, 25.958045 ], [ -81.914062, 25.958045 ], [ -81.914062, 26.273714 ], [ -82.089844, 26.273714 ], [ -82.089844, 26.588527 ], [ -82.265625, 26.588527 ], [ -82.265625, 26.745610 ], [ -82.441406, 26.745610 ], [ -82.441406, 27.059126 ], [ -82.617188, 27.059126 ], [ -82.617188, 27.371767 ], [ -82.792969, 27.371767 ], [ -82.792969, 27.683528 ], [ -82.968750, 27.683528 ], [ -82.968750, 28.304381 ], [ -82.792969, 28.304381 ], [ -82.792969, 28.921631 ], [ -82.968750, 28.921631 ], [ -82.968750, 29.228890 ], [ -83.144531, 29.228890 ], [ -83.144531, 29.382175 ], [ -83.320312, 29.382175 ], [ -83.320312, 29.535230 ], [ -83.496094, 29.535230 ], [ -83.496094, 29.688053 ], [ -83.671875, 29.688053 ], [ -83.671875, 29.840644 ], [ -83.847656, 29.840644 ], [ -83.847656, 29.993002 ], [ -84.550781, 29.993002 ], [ -84.550781, 29.840644 ], [ -84.902344, 29.840644 ], [ -84.902344, 29.688053 ], [ -85.429688, 29.688053 ], [ -85.429688, 29.840644 ], [ -85.605469, 29.840644 ], [ -85.605469, 30.145127 ], [ -85.781250, 30.145127 ], [ -85.781250, 30.297018 ], [ -86.308594, 30.297018 ], [ -86.308594, 30.448674 ], [ -86.835938, 30.448674 ], [ -86.835938, 30.297018 ], [ -88.066406, 30.297018 ], [ -88.066406, 30.448674 ], [ -89.296875, 30.448674 ], [ -89.296875, 30.297018 ], [ -89.648438, 30.297018 ], [ -89.648438, 30.145127 ], [ -89.472656, 30.145127 ], [ -89.472656, 29.382175 ], [ -89.296875, 29.382175 ], [ -89.296875, 29.228890 ], [ -90.878906, 29.228890 ], [ -90.878906, 41.640078 ], [ -70.312500, 41.640078 ] ], [ [ -76.992188, 38.272689 ], [ -76.992188, 38.134557 ], [ -76.816406, 38.134557 ], [ -76.816406, 38.272689 ], [ -76.992188, 38.272689 ] ], [ [ -73.300781, 41.112469 ], [ -73.476562, 41.112469 ], [ -73.476562, 40.979898 ], [ -73.300781, 40.979898 ], [ -73.300781, 41.112469 ] ], [ [ -72.597656, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 41.112469 ], [ -72.597656, 41.112469 ], [ -72.597656, 41.244772 ] ] ], [ [ [ -75.761719, 37.718590 ], [ -75.761719, 37.439974 ], [ -75.937500, 37.439974 ], [ -75.937500, 37.718590 ], [ -75.761719, 37.718590 ] ] ], [ [ [ -75.937500, 37.439974 ], [ -75.937500, 37.300275 ], [ -76.113281, 37.300275 ], [ -76.113281, 37.439974 ], [ -75.937500, 37.439974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -90.878906, 16.130262 ], [ -90.878906, 16.636192 ] ] ], [ [ [ -87.011719, 21.453069 ], [ -86.835938, 21.453069 ], [ -86.835938, 20.632784 ], [ -87.011719, 20.632784 ], [ -87.011719, 20.468189 ], [ -87.187500, 20.468189 ], [ -87.187500, 20.303418 ], [ -87.363281, 20.303418 ], [ -87.363281, 19.973349 ], [ -87.539062, 19.973349 ], [ -87.539062, 19.476950 ], [ -87.363281, 19.476950 ], [ -87.363281, 19.145168 ], [ -87.539062, 19.145168 ], [ -87.539062, 18.812718 ], [ -87.714844, 18.812718 ], [ -87.714844, 18.479609 ], [ -87.890625, 18.479609 ], [ -87.890625, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 18.479609 ], [ -88.417969, 18.479609 ], [ -88.417969, 18.312811 ], [ -88.593750, 18.312811 ], [ -88.593750, 17.978733 ], [ -88.769531, 17.978733 ], [ -88.769531, 17.811456 ], [ -88.945312, 17.811456 ], [ -88.945312, 17.978733 ], [ -89.121094, 17.978733 ], [ -89.121094, 17.811456 ], [ -90.878906, 17.811456 ], [ -90.878906, 19.145168 ], [ -90.703125, 19.145168 ], [ -90.703125, 19.476950 ], [ -90.527344, 19.476950 ], [ -90.527344, 20.797201 ], [ -90.351562, 20.797201 ], [ -90.351562, 20.961440 ], [ -90.000000, 20.961440 ], [ -90.000000, 21.125498 ], [ -89.648438, 21.125498 ], [ -89.648438, 21.289374 ], [ -88.945312, 21.289374 ], [ -88.945312, 21.453069 ], [ -87.187500, 21.453069 ], [ -87.187500, 21.616579 ], [ -87.011719, 21.616579 ], [ -87.011719, 21.453069 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 16.636192 ], [ -90.703125, 16.636192 ], [ -90.703125, 16.467695 ], [ -90.527344, 16.467695 ], [ -90.527344, 16.130262 ], [ -90.878906, 16.130262 ], [ -90.878906, 16.636192 ] ] ], [ [ [ -87.187500, 21.616579 ], [ -87.187500, 21.453069 ], [ -86.835938, 21.453069 ], [ -86.835938, 21.125498 ], [ -87.011719, 21.125498 ], [ -87.011719, 20.797201 ], [ -87.187500, 20.797201 ], [ -87.187500, 20.632784 ], [ -87.363281, 20.632784 ], [ -87.363281, 20.303418 ], [ -87.539062, 20.303418 ], [ -87.539062, 19.973349 ], [ -87.714844, 19.973349 ], [ -87.714844, 19.642588 ], [ -87.539062, 19.642588 ], [ -87.539062, 19.311143 ], [ -87.714844, 19.311143 ], [ -87.714844, 18.646245 ], [ -87.890625, 18.646245 ], [ -87.890625, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 18.479609 ], [ -88.242188, 18.479609 ], [ -88.242188, 18.646245 ], [ -88.593750, 18.646245 ], [ -88.593750, 18.479609 ], [ -88.769531, 18.479609 ], [ -88.769531, 18.145852 ], [ -88.945312, 18.145852 ], [ -88.945312, 17.978733 ], [ -89.296875, 17.978733 ], [ -89.296875, 17.811456 ], [ -89.824219, 17.811456 ], [ -89.824219, 17.978733 ], [ -90.878906, 17.978733 ], [ -90.878906, 19.642588 ], [ -90.703125, 19.642588 ], [ -90.703125, 20.303418 ], [ -90.527344, 20.303418 ], [ -90.527344, 20.961440 ], [ -90.351562, 20.961440 ], [ -90.351562, 21.125498 ], [ -89.824219, 21.125498 ], [ -89.824219, 21.289374 ], [ -89.296875, 21.289374 ], [ -89.296875, 21.453069 ], [ -88.769531, 21.453069 ], [ -88.769531, 21.616579 ], [ -87.187500, 21.616579 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.811456 ], [ -89.121094, 16.467695 ], [ -89.296875, 16.467695 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.792254 ], [ -88.769531, 15.792254 ], [ -88.769531, 15.623037 ], [ -88.593750, 15.623037 ], [ -88.593750, 15.792254 ], [ -88.242188, 15.792254 ], [ -88.242188, 15.623037 ], [ -88.417969, 15.623037 ], [ -88.417969, 15.284185 ], [ -88.769531, 15.284185 ], [ -88.769531, 15.114553 ], [ -89.121094, 15.114553 ], [ -89.121094, 14.944785 ], [ -89.296875, 14.944785 ], [ -89.296875, 14.774883 ], [ -89.121094, 14.774883 ], [ -89.121094, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.472656, 14.264383 ], [ -89.472656, 14.093957 ], [ -89.648438, 14.093957 ], [ -89.648438, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 17.811456 ], [ -89.121094, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.824219, 17.978733 ], [ -89.824219, 17.811456 ], [ -89.296875, 17.811456 ], [ -89.296875, 15.961329 ], [ -88.945312, 15.961329 ], [ -88.945312, 15.792254 ], [ -88.242188, 15.792254 ], [ -88.242188, 15.623037 ], [ -88.593750, 15.623037 ], [ -88.593750, 15.453680 ], [ -88.769531, 15.453680 ], [ -88.769531, 15.284185 ], [ -89.121094, 15.284185 ], [ -89.121094, 15.114553 ], [ -89.296875, 15.114553 ], [ -89.296875, 14.604847 ], [ -89.472656, 14.604847 ], [ -89.472656, 14.434680 ], [ -89.648438, 14.434680 ], [ -89.648438, 14.264383 ], [ -89.824219, 14.264383 ], [ -89.824219, 14.093957 ], [ -90.000000, 14.093957 ], [ -90.000000, 13.923404 ], [ -90.175781, 13.923404 ], [ -90.175781, 13.752725 ], [ -90.527344, 13.752725 ], [ -90.527344, 13.923404 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.130262 ], [ -90.527344, 16.130262 ], [ -90.527344, 16.467695 ], [ -90.703125, 16.467695 ], [ -90.703125, 16.636192 ], [ -90.878906, 16.636192 ], [ -90.878906, 17.978733 ], [ -89.824219, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.871094, 25.165173 ], [ -77.871094, 24.846565 ], [ -77.695312, 24.846565 ], [ -77.695312, 24.527135 ], [ -77.519531, 24.527135 ], [ -77.519531, 23.725012 ], [ -77.871094, 23.725012 ], [ -77.871094, 24.046464 ], [ -78.046875, 24.046464 ], [ -78.046875, 24.206890 ], [ -78.222656, 24.206890 ], [ -78.222656, 24.367114 ], [ -78.398438, 24.367114 ], [ -78.398438, 24.846565 ], [ -78.222656, 24.846565 ], [ -78.222656, 25.165173 ], [ -77.871094, 25.165173 ] ] ], [ [ [ -77.519531, 26.745610 ], [ -77.871094, 26.745610 ], [ -77.871094, 26.588527 ], [ -78.222656, 26.588527 ], [ -78.222656, 26.431228 ], [ -78.925781, 26.431228 ], [ -78.925781, 26.745610 ], [ -78.574219, 26.745610 ], [ -78.574219, 26.902477 ], [ -77.871094, 26.902477 ], [ -77.519531, 26.902477 ], [ -77.519531, 26.745610 ] ] ], [ [ [ -77.519531, 26.745610 ], [ -77.167969, 26.745610 ], [ -77.167969, 26.588527 ], [ -76.992188, 26.588527 ], [ -76.992188, 26.273714 ], [ -77.167969, 26.273714 ], [ -77.167969, 25.958045 ], [ -77.343750, 25.958045 ], [ -77.343750, 26.588527 ], [ -77.519531, 26.588527 ], [ -77.519531, 26.745610 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.046875, 25.324167 ], [ -78.046875, 25.005973 ], [ -77.871094, 25.005973 ], [ -77.871094, 24.527135 ], [ -77.695312, 24.527135 ], [ -77.695312, 23.725012 ], [ -77.871094, 23.725012 ], [ -77.871094, 24.046464 ], [ -78.046875, 24.046464 ], [ -78.046875, 24.367114 ], [ -78.222656, 24.367114 ], [ -78.222656, 24.527135 ], [ -78.574219, 24.527135 ], [ -78.574219, 24.846565 ], [ -78.398438, 24.846565 ], [ -78.398438, 25.165173 ], [ -78.222656, 25.165173 ], [ -78.222656, 25.324167 ], [ -78.046875, 25.324167 ] ] ], [ [ [ -77.343750, 26.273714 ], [ -77.343750, 25.958045 ], [ -77.519531, 25.958045 ], [ -77.519531, 26.273714 ], [ -77.343750, 26.273714 ] ] ], [ [ [ -77.343750, 26.588527 ], [ -77.167969, 26.588527 ], [ -77.167969, 26.273714 ], [ -77.343750, 26.273714 ], [ -77.343750, 26.588527 ] ] ], [ [ [ -77.871094, 26.902477 ], [ -77.871094, 26.588527 ], [ -78.222656, 26.588527 ], [ -78.222656, 26.431228 ], [ -78.925781, 26.431228 ], [ -78.925781, 26.588527 ], [ -79.101562, 26.588527 ], [ -79.101562, 26.902477 ], [ -77.871094, 26.902477 ] ] ], [ [ [ -77.343750, 26.588527 ], [ -77.519531, 26.588527 ], [ -77.519531, 26.745610 ], [ -77.343750, 26.745610 ], [ -77.343750, 26.588527 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.242188, 18.479609 ], [ -88.242188, 18.312811 ], [ -88.066406, 18.312811 ], [ -88.066406, 17.811456 ], [ -88.242188, 17.811456 ], [ -88.242188, 16.636192 ], [ -88.417969, 16.636192 ], [ -88.417969, 16.299051 ], [ -88.769531, 16.299051 ], [ -88.769531, 16.130262 ], [ -88.945312, 16.130262 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 16.467695 ], [ -89.121094, 16.467695 ], [ -89.121094, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 17.811456 ], [ -88.769531, 17.811456 ], [ -88.769531, 17.978733 ], [ -88.593750, 17.978733 ], [ -88.593750, 18.312811 ], [ -88.417969, 18.312811 ], [ -88.417969, 18.479609 ], [ -88.242188, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.417969, 18.646245 ], [ -88.417969, 18.479609 ], [ -88.242188, 18.479609 ], [ -88.242188, 17.811456 ], [ -88.417969, 17.811456 ], [ -88.417969, 17.644022 ], [ -88.242188, 17.644022 ], [ -88.242188, 17.308688 ], [ -88.417969, 17.308688 ], [ -88.417969, 17.140790 ], [ -88.242188, 17.140790 ], [ -88.242188, 16.804541 ], [ -88.417969, 16.804541 ], [ -88.417969, 16.467695 ], [ -88.593750, 16.467695 ], [ -88.593750, 16.299051 ], [ -88.769531, 16.299051 ], [ -88.769531, 16.130262 ], [ -88.945312, 16.130262 ], [ -88.945312, 15.961329 ], [ -89.296875, 15.961329 ], [ -89.296875, 17.978733 ], [ -88.945312, 17.978733 ], [ -88.945312, 18.145852 ], [ -88.769531, 18.145852 ], [ -88.769531, 18.479609 ], [ -88.593750, 18.479609 ], [ -88.593750, 18.646245 ], [ -88.417969, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.296875, 14.434680 ], [ -89.296875, 14.264383 ], [ -89.121094, 14.264383 ], [ -89.121094, 14.093957 ], [ -88.769531, 14.093957 ], [ -88.769531, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.752725 ], [ -87.714844, 13.752725 ], [ -87.714844, 13.239945 ], [ -87.890625, 13.239945 ], [ -87.890625, 13.068777 ], [ -88.242188, 13.068777 ], [ -88.242188, 13.239945 ], [ -89.121094, 13.239945 ], [ -89.121094, 13.410994 ], [ -89.648438, 13.410994 ], [ -89.648438, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.752725 ], [ -90.000000, 13.752725 ], [ -90.000000, 13.923404 ], [ -89.648438, 13.923404 ], [ -89.648438, 14.093957 ], [ -89.472656, 14.093957 ], [ -89.472656, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.296875, 14.434680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 14.434680 ], [ -89.121094, 14.264383 ], [ -88.945312, 14.264383 ], [ -88.945312, 14.093957 ], [ -88.593750, 14.093957 ], [ -88.593750, 13.923404 ], [ -88.242188, 13.923404 ], [ -88.242188, 14.093957 ], [ -88.066406, 14.093957 ], [ -88.066406, 13.923404 ], [ -87.890625, 13.923404 ], [ -87.890625, 13.239945 ], [ -88.945312, 13.239945 ], [ -88.945312, 13.410994 ], [ -89.296875, 13.410994 ], [ -89.296875, 13.581921 ], [ -90.175781, 13.581921 ], [ -90.175781, 13.923404 ], [ -90.000000, 13.923404 ], [ -90.000000, 14.093957 ], [ -89.824219, 14.093957 ], [ -89.824219, 14.264383 ], [ -89.648438, 14.264383 ], [ -89.648438, 14.434680 ], [ -89.121094, 14.434680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.902344, 15.961329 ], [ -84.902344, 15.792254 ], [ -84.375000, 15.792254 ], [ -84.375000, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.453680 ], [ -83.847656, 15.453680 ], [ -83.847656, 15.284185 ], [ -83.496094, 15.284185 ], [ -83.496094, 15.114553 ], [ -83.320312, 15.114553 ], [ -83.320312, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.774883 ], [ -84.199219, 14.774883 ], [ -84.199219, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 14.264383 ], [ -85.253906, 14.264383 ], [ -85.253906, 14.093957 ], [ -85.429688, 14.093957 ], [ -85.429688, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 13.752725 ], [ -85.957031, 13.752725 ], [ -85.957031, 13.923404 ], [ -86.308594, 13.923404 ], [ -86.308594, 13.752725 ], [ -86.835938, 13.752725 ], [ -86.835938, 13.410994 ], [ -86.660156, 13.410994 ], [ -86.660156, 13.239945 ], [ -86.835938, 13.239945 ], [ -86.835938, 13.068777 ], [ -87.539062, 13.068777 ], [ -87.539062, 13.239945 ], [ -87.714844, 13.239945 ], [ -87.714844, 13.752725 ], [ -87.890625, 13.752725 ], [ -87.890625, 13.923404 ], [ -88.769531, 13.923404 ], [ -88.769531, 14.093957 ], [ -89.121094, 14.093957 ], [ -89.121094, 14.264383 ], [ -89.296875, 14.264383 ], [ -89.296875, 14.434680 ], [ -89.121094, 14.434680 ], [ -89.121094, 14.774883 ], [ -89.296875, 14.774883 ], [ -89.296875, 14.944785 ], [ -89.121094, 14.944785 ], [ -89.121094, 15.114553 ], [ -88.769531, 15.114553 ], [ -88.769531, 15.284185 ], [ -88.417969, 15.284185 ], [ -88.417969, 15.623037 ], [ -87.890625, 15.623037 ], [ -87.890625, 15.792254 ], [ -86.132812, 15.792254 ], [ -86.132812, 15.961329 ], [ -84.902344, 15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.902344, 16.130262 ], [ -84.902344, 15.961329 ], [ -84.375000, 15.961329 ], [ -84.375000, 15.792254 ], [ -84.199219, 15.792254 ], [ -84.199219, 15.623037 ], [ -84.023438, 15.623037 ], [ -84.023438, 15.453680 ], [ -83.847656, 15.453680 ], [ -83.847656, 15.284185 ], [ -83.496094, 15.284185 ], [ -83.496094, 14.944785 ], [ -83.671875, 14.944785 ], [ -83.671875, 14.774883 ], [ -84.902344, 14.774883 ], [ -84.902344, 14.944785 ], [ -85.078125, 14.944785 ], [ -85.078125, 14.604847 ], [ -85.253906, 14.604847 ], [ -85.253906, 14.264383 ], [ -85.429688, 14.264383 ], [ -85.429688, 14.093957 ], [ -85.781250, 14.093957 ], [ -85.781250, 13.923404 ], [ -86.660156, 13.923404 ], [ -86.660156, 13.752725 ], [ -86.835938, 13.752725 ], [ -86.835938, 13.410994 ], [ -87.011719, 13.410994 ], [ -87.011719, 13.068777 ], [ -87.363281, 13.068777 ], [ -87.363281, 13.239945 ], [ -87.539062, 13.239945 ], [ -87.539062, 13.410994 ], [ -87.890625, 13.410994 ], [ -87.890625, 13.923404 ], [ -88.066406, 13.923404 ], [ -88.066406, 14.093957 ], [ -88.242188, 14.093957 ], [ -88.242188, 13.923404 ], [ -88.593750, 13.923404 ], [ -88.593750, 14.093957 ], [ -88.945312, 14.093957 ], [ -88.945312, 14.264383 ], [ -89.121094, 14.264383 ], [ -89.121094, 14.434680 ], [ -89.472656, 14.434680 ], [ -89.472656, 14.604847 ], [ -89.296875, 14.604847 ], [ -89.296875, 15.114553 ], [ -89.121094, 15.114553 ], [ -89.121094, 15.284185 ], [ -88.769531, 15.284185 ], [ -88.769531, 15.453680 ], [ -88.593750, 15.453680 ], [ -88.593750, 15.623037 ], [ -88.242188, 15.623037 ], [ -88.242188, 15.792254 ], [ -88.066406, 15.792254 ], [ -88.066406, 15.961329 ], [ -87.363281, 15.961329 ], [ -87.363281, 15.792254 ], [ -86.132812, 15.792254 ], [ -86.132812, 15.961329 ], [ -85.078125, 15.961329 ], [ -85.078125, 16.130262 ], [ -84.902344, 16.130262 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.320312, 14.944785 ], [ -83.320312, 14.434680 ], [ -83.144531, 14.434680 ], [ -83.144531, 14.093957 ], [ -83.320312, 14.093957 ], [ -83.320312, 13.923404 ], [ -83.496094, 13.923404 ], [ -83.496094, 12.382928 ], [ -83.671875, 12.382928 ], [ -83.671875, 11.523088 ], [ -83.847656, 11.523088 ], [ -83.847656, 11.005904 ], [ -83.671875, 11.005904 ], [ -83.671875, 10.833306 ], [ -83.847656, 10.833306 ], [ -83.847656, 10.660608 ], [ -84.199219, 10.660608 ], [ -84.199219, 10.833306 ], [ -84.375000, 10.833306 ], [ -84.375000, 11.005904 ], [ -85.429688, 11.005904 ], [ -85.429688, 11.178402 ], [ -85.605469, 11.178402 ], [ -85.605469, 11.005904 ], [ -85.957031, 11.005904 ], [ -85.957031, 11.178402 ], [ -86.132812, 11.178402 ], [ -86.132812, 11.350797 ], [ -86.308594, 11.350797 ], [ -86.308594, 11.695273 ], [ -86.484375, 11.695273 ], [ -86.484375, 12.039321 ], [ -86.660156, 12.039321 ], [ -86.660156, 12.211180 ], [ -87.011719, 12.211180 ], [ -87.011719, 12.382928 ], [ -87.363281, 12.382928 ], [ -87.363281, 12.554564 ], [ -87.539062, 12.554564 ], [ -87.539062, 12.726084 ], [ -87.714844, 12.726084 ], [ -87.714844, 12.897489 ], [ -87.363281, 12.897489 ], [ -87.363281, 13.068777 ], [ -86.835938, 13.068777 ], [ -86.835938, 13.239945 ], [ -86.660156, 13.239945 ], [ -86.660156, 13.410994 ], [ -86.835938, 13.410994 ], [ -86.835938, 13.752725 ], [ -86.308594, 13.752725 ], [ -86.308594, 13.923404 ], [ -85.957031, 13.923404 ], [ -85.957031, 13.752725 ], [ -85.781250, 13.752725 ], [ -85.781250, 13.923404 ], [ -85.429688, 13.923404 ], [ -85.429688, 14.093957 ], [ -85.253906, 14.093957 ], [ -85.253906, 14.264383 ], [ -85.078125, 14.264383 ], [ -85.078125, 14.604847 ], [ -84.199219, 14.604847 ], [ -84.199219, 14.774883 ], [ -83.671875, 14.774883 ], [ -83.671875, 14.944785 ], [ -83.320312, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.144531, 15.114553 ], [ -83.144531, 14.944785 ], [ -83.320312, 14.944785 ], [ -83.320312, 14.264383 ], [ -83.496094, 14.264383 ], [ -83.496094, 13.752725 ], [ -83.671875, 13.752725 ], [ -83.671875, 13.068777 ], [ -83.496094, 13.068777 ], [ -83.496094, 12.382928 ], [ -83.671875, 12.382928 ], [ -83.671875, 12.211180 ], [ -83.847656, 12.211180 ], [ -83.847656, 11.867351 ], [ -83.671875, 11.867351 ], [ -83.671875, 11.523088 ], [ -84.023438, 11.523088 ], [ -84.023438, 11.350797 ], [ -83.847656, 11.350797 ], [ -83.847656, 11.005904 ], [ -83.671875, 11.005904 ], [ -83.671875, 10.833306 ], [ -84.375000, 10.833306 ], [ -84.375000, 11.005904 ], [ -85.253906, 11.005904 ], [ -85.253906, 11.178402 ], [ -85.957031, 11.178402 ], [ -85.957031, 11.350797 ], [ -86.132812, 11.350797 ], [ -86.132812, 11.523088 ], [ -86.308594, 11.523088 ], [ -86.308594, 11.695273 ], [ -86.660156, 11.695273 ], [ -86.660156, 12.039321 ], [ -86.835938, 12.039321 ], [ -86.835938, 12.211180 ], [ -87.011719, 12.211180 ], [ -87.011719, 12.382928 ], [ -87.187500, 12.382928 ], [ -87.187500, 12.554564 ], [ -87.363281, 12.554564 ], [ -87.363281, 12.726084 ], [ -87.539062, 12.726084 ], [ -87.539062, 12.897489 ], [ -87.714844, 12.897489 ], [ -87.714844, 13.068777 ], [ -87.011719, 13.068777 ], [ -87.011719, 13.410994 ], [ -86.835938, 13.410994 ], [ -86.835938, 13.752725 ], [ -86.660156, 13.752725 ], [ -86.660156, 13.923404 ], [ -85.781250, 13.923404 ], [ -85.781250, 14.093957 ], [ -85.429688, 14.093957 ], [ -85.429688, 14.264383 ], [ -85.253906, 14.264383 ], [ -85.253906, 14.604847 ], [ -85.078125, 14.604847 ], [ -85.078125, 14.944785 ], [ -84.902344, 14.944785 ], [ -84.902344, 14.774883 ], [ -83.671875, 14.774883 ], [ -83.671875, 14.944785 ], [ -83.496094, 14.944785 ], [ -83.496094, 15.114553 ], [ -83.144531, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.914062, 23.241346 ], [ -81.914062, 23.079732 ], [ -80.507812, 23.079732 ], [ -80.507812, 22.917923 ], [ -79.980469, 22.917923 ], [ -79.980469, 22.755921 ], [ -79.628906, 22.755921 ], [ -79.628906, 22.593726 ], [ -79.453125, 22.593726 ], [ -79.453125, 22.431340 ], [ -78.398438, 22.431340 ], [ -78.398438, 22.268764 ], [ -78.046875, 22.268764 ], [ -78.046875, 22.105999 ], [ -77.871094, 22.105999 ], [ -77.871094, 21.943046 ], [ -77.519531, 21.943046 ], [ -77.519531, 21.779905 ], [ -77.343750, 21.779905 ], [ -77.343750, 21.616579 ], [ -77.167969, 21.616579 ], [ -77.167969, 21.453069 ], [ -76.992188, 21.453069 ], [ -76.992188, 21.289374 ], [ -76.640625, 21.289374 ], [ -76.640625, 21.125498 ], [ -75.761719, 21.125498 ], [ -75.761719, 20.961440 ], [ -75.585938, 20.961440 ], [ -75.585938, 20.797201 ], [ -75.410156, 20.797201 ], [ -75.410156, 20.632784 ], [ -74.882812, 20.632784 ], [ -74.882812, 20.468189 ], [ -74.531250, 20.468189 ], [ -74.531250, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 20.138470 ], [ -74.355469, 20.138470 ], [ -74.355469, 19.973349 ], [ -75.058594, 19.973349 ], [ -75.058594, 19.808054 ], [ -76.113281, 19.808054 ], [ -76.113281, 19.973349 ], [ -76.816406, 19.973349 ], [ -76.816406, 19.808054 ], [ -77.519531, 19.808054 ], [ -77.519531, 20.138470 ], [ -77.343750, 20.138470 ], [ -77.343750, 20.303418 ], [ -77.167969, 20.303418 ], [ -77.167969, 20.468189 ], [ -77.519531, 20.468189 ], [ -77.519531, 20.632784 ], [ -78.046875, 20.632784 ], [ -78.046875, 20.797201 ], [ -78.398438, 20.797201 ], [ -78.398438, 21.125498 ], [ -78.574219, 21.125498 ], [ -78.574219, 21.453069 ], [ -78.750000, 21.453069 ], [ -78.750000, 21.616579 ], [ -79.804688, 21.616579 ], [ -79.804688, 21.779905 ], [ -80.332031, 21.779905 ], [ -80.332031, 21.943046 ], [ -80.507812, 21.943046 ], [ -80.507812, 22.105999 ], [ -81.210938, 22.105999 ], [ -81.210938, 22.268764 ], [ -82.089844, 22.268764 ], [ -82.089844, 22.431340 ], [ -81.738281, 22.431340 ], [ -81.738281, 22.593726 ], [ -82.441406, 22.593726 ], [ -82.441406, 22.755921 ], [ -82.792969, 22.755921 ], [ -82.792969, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 22.431340 ], [ -83.144531, 22.431340 ], [ -83.144531, 22.268764 ], [ -83.320312, 22.268764 ], [ -83.320312, 22.105999 ], [ -83.847656, 22.105999 ], [ -83.847656, 21.943046 ], [ -84.199219, 21.943046 ], [ -84.199219, 21.779905 ], [ -84.902344, 21.779905 ], [ -84.902344, 21.943046 ], [ -84.726562, 21.943046 ], [ -84.726562, 22.105999 ], [ -84.375000, 22.105999 ], [ -84.375000, 22.431340 ], [ -84.199219, 22.431340 ], [ -84.199219, 22.593726 ], [ -83.847656, 22.593726 ], [ -83.847656, 22.755921 ], [ -83.496094, 22.755921 ], [ -83.496094, 22.917923 ], [ -82.792969, 22.917923 ], [ -82.792969, 23.079732 ], [ -82.265625, 23.079732 ], [ -82.265625, 23.241346 ], [ -81.914062, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.507812, 23.241346 ], [ -80.507812, 23.079732 ], [ -80.156250, 23.079732 ], [ -80.156250, 22.917923 ], [ -79.804688, 22.917923 ], [ -79.804688, 22.755921 ], [ -79.628906, 22.755921 ], [ -79.628906, 22.431340 ], [ -78.750000, 22.431340 ], [ -78.750000, 22.593726 ], [ -78.398438, 22.593726 ], [ -78.398438, 22.431340 ], [ -78.046875, 22.431340 ], [ -78.046875, 22.268764 ], [ -77.871094, 22.268764 ], [ -77.871094, 22.105999 ], [ -77.519531, 22.105999 ], [ -77.519531, 21.943046 ], [ -77.343750, 21.943046 ], [ -77.343750, 21.779905 ], [ -77.167969, 21.779905 ], [ -77.167969, 21.616579 ], [ -76.992188, 21.616579 ], [ -76.992188, 21.453069 ], [ -76.816406, 21.453069 ], [ -76.816406, 21.289374 ], [ -76.113281, 21.289374 ], [ -76.113281, 21.125498 ], [ -75.761719, 21.125498 ], [ -75.761719, 20.797201 ], [ -75.058594, 20.797201 ], [ -75.058594, 20.632784 ], [ -74.707031, 20.632784 ], [ -74.707031, 20.468189 ], [ -74.355469, 20.468189 ], [ -74.355469, 20.303418 ], [ -74.179688, 20.303418 ], [ -74.179688, 20.138470 ], [ -74.531250, 20.138470 ], [ -74.531250, 19.973349 ], [ -77.695312, 19.973349 ], [ -77.695312, 20.138470 ], [ -77.343750, 20.138470 ], [ -77.343750, 20.303418 ], [ -77.167969, 20.303418 ], [ -77.167969, 20.468189 ], [ -77.343750, 20.468189 ], [ -77.343750, 20.632784 ], [ -77.519531, 20.632784 ], [ -77.519531, 20.797201 ], [ -78.398438, 20.797201 ], [ -78.398438, 20.961440 ], [ -78.574219, 20.961440 ], [ -78.574219, 21.289374 ], [ -78.750000, 21.289374 ], [ -78.750000, 21.616579 ], [ -79.804688, 21.616579 ], [ -79.804688, 21.779905 ], [ -80.156250, 21.779905 ], [ -80.156250, 21.943046 ], [ -80.683594, 21.943046 ], [ -80.683594, 22.105999 ], [ -81.386719, 22.105999 ], [ -81.386719, 22.268764 ], [ -82.265625, 22.268764 ], [ -82.265625, 22.431340 ], [ -82.089844, 22.431340 ], [ -82.089844, 22.593726 ], [ -81.914062, 22.593726 ], [ -81.914062, 22.755921 ], [ -82.792969, 22.755921 ], [ -82.792969, 22.593726 ], [ -82.968750, 22.593726 ], [ -82.968750, 22.431340 ], [ -83.320312, 22.431340 ], [ -83.320312, 22.268764 ], [ -84.023438, 22.268764 ], [ -84.023438, 22.105999 ], [ -84.199219, 22.105999 ], [ -84.199219, 21.943046 ], [ -84.902344, 21.943046 ], [ -84.902344, 22.105999 ], [ -84.550781, 22.105999 ], [ -84.550781, 22.431340 ], [ -84.375000, 22.431340 ], [ -84.375000, 22.593726 ], [ -84.199219, 22.593726 ], [ -84.199219, 22.755921 ], [ -83.847656, 22.755921 ], [ -83.847656, 22.917923 ], [ -83.496094, 22.917923 ], [ -83.496094, 23.079732 ], [ -82.265625, 23.079732 ], [ -82.265625, 23.241346 ], [ -80.507812, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.429688, 11.178402 ], [ -85.429688, 11.005904 ], [ -84.375000, 11.005904 ], [ -84.375000, 10.833306 ], [ -84.199219, 10.833306 ], [ -84.199219, 10.660608 ], [ -83.847656, 10.660608 ], [ -83.847656, 10.833306 ], [ -83.496094, 10.833306 ], [ -83.496094, 10.487812 ], [ -83.320312, 10.487812 ], [ -83.320312, 10.141932 ], [ -83.144531, 10.141932 ], [ -83.144531, 9.968851 ], [ -82.968750, 9.968851 ], [ -82.968750, 9.795678 ], [ -82.792969, 9.795678 ], [ -82.792969, 9.622414 ], [ -82.617188, 9.622414 ], [ -82.617188, 9.449062 ], [ -82.968750, 9.449062 ], [ -82.968750, 8.928487 ], [ -82.792969, 8.928487 ], [ -82.792969, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 8.233237 ], [ -83.320312, 8.233237 ], [ -83.320312, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 9.102097 ], [ -83.847656, 9.102097 ], [ -83.847656, 9.275622 ], [ -84.199219, 9.275622 ], [ -84.199219, 9.449062 ], [ -84.726562, 9.449062 ], [ -84.726562, 9.968851 ], [ -84.902344, 9.968851 ], [ -84.902344, 9.622414 ], [ -85.253906, 9.622414 ], [ -85.253906, 9.795678 ], [ -85.605469, 9.795678 ], [ -85.605469, 9.968851 ], [ -85.781250, 9.968851 ], [ -85.781250, 10.660608 ], [ -85.605469, 10.660608 ], [ -85.605469, 10.833306 ], [ -85.781250, 10.833306 ], [ -85.781250, 11.005904 ], [ -85.605469, 11.005904 ], [ -85.605469, 11.178402 ], [ -85.429688, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.253906, 11.178402 ], [ -85.253906, 11.005904 ], [ -84.375000, 11.005904 ], [ -84.375000, 10.833306 ], [ -83.671875, 10.833306 ], [ -83.671875, 10.660608 ], [ -83.496094, 10.660608 ], [ -83.496094, 10.314919 ], [ -83.320312, 10.314919 ], [ -83.320312, 10.141932 ], [ -83.144531, 10.141932 ], [ -83.144531, 9.968851 ], [ -82.968750, 9.968851 ], [ -82.968750, 9.795678 ], [ -82.792969, 9.795678 ], [ -82.792969, 9.622414 ], [ -82.968750, 9.622414 ], [ -82.968750, 8.233237 ], [ -83.320312, 8.233237 ], [ -83.320312, 8.407168 ], [ -83.671875, 8.407168 ], [ -83.671875, 8.581021 ], [ -83.847656, 8.581021 ], [ -83.847656, 8.754795 ], [ -83.671875, 8.754795 ], [ -83.671875, 9.102097 ], [ -83.847656, 9.102097 ], [ -83.847656, 9.275622 ], [ -84.023438, 9.275622 ], [ -84.023438, 9.449062 ], [ -84.375000, 9.449062 ], [ -84.375000, 9.622414 ], [ -84.726562, 9.622414 ], [ -84.726562, 9.968851 ], [ -85.078125, 9.968851 ], [ -85.078125, 9.622414 ], [ -85.253906, 9.622414 ], [ -85.253906, 9.795678 ], [ -85.429688, 9.795678 ], [ -85.429688, 9.968851 ], [ -85.957031, 9.968851 ], [ -85.957031, 10.660608 ], [ -85.781250, 10.660608 ], [ -85.781250, 10.833306 ], [ -85.957031, 10.833306 ], [ -85.957031, 11.005904 ], [ -85.781250, 11.005904 ], [ -85.781250, 11.178402 ], [ -85.253906, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.101562, 9.622414 ], [ -79.101562, 9.449062 ], [ -78.398438, 9.449062 ], [ -78.398438, 9.275622 ], [ -78.046875, 9.275622 ], [ -78.046875, 9.102097 ], [ -77.871094, 9.102097 ], [ -77.871094, 8.928487 ], [ -77.695312, 8.928487 ], [ -77.695312, 8.754795 ], [ -77.343750, 8.754795 ], [ -77.343750, 8.581021 ], [ -77.519531, 8.581021 ], [ -77.519531, 8.407168 ], [ -77.343750, 8.407168 ], [ -77.343750, 8.059230 ], [ -77.167969, 8.059230 ], [ -77.167969, 7.710992 ], [ -77.695312, 7.710992 ], [ -77.695312, 7.362467 ], [ -77.871094, 7.362467 ], [ -77.871094, 7.188101 ], [ -78.046875, 7.188101 ], [ -78.046875, 7.362467 ], [ -78.222656, 7.362467 ], [ -78.222656, 7.710992 ], [ -78.398438, 7.710992 ], [ -78.398438, 8.059230 ], [ -78.222656, 8.059230 ], [ -78.222656, 8.233237 ], [ -78.398438, 8.233237 ], [ -78.398438, 8.581021 ], [ -78.574219, 8.581021 ], [ -78.574219, 8.754795 ], [ -78.925781, 8.754795 ], [ -78.925781, 8.928487 ], [ -79.628906, 8.928487 ], [ -79.628906, 8.754795 ], [ -79.804688, 8.754795 ], [ -79.804688, 8.407168 ], [ -80.156250, 8.407168 ], [ -80.156250, 8.233237 ], [ -80.332031, 8.233237 ], [ -80.332031, 8.059230 ], [ -80.507812, 8.059230 ], [ -80.507812, 7.885147 ], [ -80.332031, 7.885147 ], [ -80.332031, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.536764 ], [ -79.980469, 7.536764 ], [ -79.980469, 7.362467 ], [ -80.332031, 7.362467 ], [ -80.332031, 7.188101 ], [ -80.859375, 7.188101 ], [ -80.859375, 7.536764 ], [ -81.035156, 7.536764 ], [ -81.035156, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 7.885147 ], [ -81.738281, 7.885147 ], [ -81.738281, 8.059230 ], [ -82.089844, 8.059230 ], [ -82.089844, 8.233237 ], [ -82.792969, 8.233237 ], [ -82.792969, 8.059230 ], [ -82.968750, 8.059230 ], [ -82.968750, 8.407168 ], [ -82.792969, 8.407168 ], [ -82.792969, 8.928487 ], [ -82.968750, 8.928487 ], [ -82.968750, 9.449062 ], [ -82.441406, 9.449062 ], [ -82.441406, 9.275622 ], [ -82.265625, 9.275622 ], [ -82.265625, 8.928487 ], [ -81.562500, 8.928487 ], [ -81.562500, 8.754795 ], [ -81.035156, 8.754795 ], [ -81.035156, 8.928487 ], [ -80.683594, 8.928487 ], [ -80.683594, 9.102097 ], [ -80.156250, 9.102097 ], [ -80.156250, 9.275622 ], [ -79.804688, 9.275622 ], [ -79.804688, 9.449062 ], [ -79.628906, 9.449062 ], [ -79.628906, 9.622414 ], [ -79.101562, 9.622414 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.925781, 9.622414 ], [ -78.925781, 9.449062 ], [ -78.574219, 9.449062 ], [ -78.574219, 9.275622 ], [ -78.222656, 9.275622 ], [ -78.222656, 9.102097 ], [ -77.871094, 9.102097 ], [ -77.871094, 8.928487 ], [ -77.695312, 8.928487 ], [ -77.695312, 8.754795 ], [ -77.519531, 8.754795 ], [ -77.519531, 8.233237 ], [ -77.343750, 8.233237 ], [ -77.343750, 7.885147 ], [ -77.519531, 7.885147 ], [ -77.519531, 7.710992 ], [ -77.871094, 7.710992 ], [ -77.871094, 7.536764 ], [ -78.046875, 7.536764 ], [ -78.046875, 7.362467 ], [ -78.222656, 7.362467 ], [ -78.222656, 7.536764 ], [ -78.398438, 7.536764 ], [ -78.398438, 7.885147 ], [ -78.574219, 7.885147 ], [ -78.574219, 8.059230 ], [ -78.398438, 8.059230 ], [ -78.398438, 8.233237 ], [ -78.222656, 8.233237 ], [ -78.222656, 8.407168 ], [ -78.574219, 8.407168 ], [ -78.574219, 8.581021 ], [ -78.750000, 8.581021 ], [ -78.750000, 8.754795 ], [ -78.925781, 8.754795 ], [ -78.925781, 8.928487 ], [ -79.277344, 8.928487 ], [ -79.277344, 9.102097 ], [ -79.628906, 9.102097 ], [ -79.628906, 8.928487 ], [ -79.804688, 8.928487 ], [ -79.804688, 8.581021 ], [ -80.156250, 8.581021 ], [ -80.156250, 8.407168 ], [ -80.507812, 8.407168 ], [ -80.507812, 8.059230 ], [ -80.332031, 8.059230 ], [ -80.332031, 7.710992 ], [ -80.156250, 7.710992 ], [ -80.156250, 7.536764 ], [ -80.332031, 7.536764 ], [ -80.332031, 7.362467 ], [ -81.035156, 7.362467 ], [ -81.035156, 7.536764 ], [ -81.210938, 7.536764 ], [ -81.210938, 7.710992 ], [ -81.562500, 7.710992 ], [ -81.562500, 7.885147 ], [ -81.738281, 7.885147 ], [ -81.738281, 8.233237 ], [ -82.441406, 8.233237 ], [ -82.441406, 8.407168 ], [ -82.968750, 8.407168 ], [ -82.968750, 9.622414 ], [ -82.617188, 9.622414 ], [ -82.617188, 9.449062 ], [ -82.441406, 9.449062 ], [ -82.441406, 9.275622 ], [ -82.265625, 9.275622 ], [ -82.265625, 9.102097 ], [ -81.738281, 9.102097 ], [ -81.738281, 8.928487 ], [ -80.859375, 8.928487 ], [ -80.859375, 9.102097 ], [ -80.683594, 9.102097 ], [ -80.683594, 9.275622 ], [ -80.156250, 9.275622 ], [ -80.156250, 9.449062 ], [ -79.628906, 9.449062 ], [ -79.628906, 9.622414 ], [ -78.925781, 9.622414 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.816406, 18.479609 ], [ -76.816406, 18.312811 ], [ -76.464844, 18.312811 ], [ -76.464844, 18.145852 ], [ -76.289062, 18.145852 ], [ -76.289062, 17.978733 ], [ -76.113281, 17.978733 ], [ -76.113281, 17.811456 ], [ -76.816406, 17.811456 ], [ -76.816406, 17.644022 ], [ -77.519531, 17.644022 ], [ -77.519531, 17.811456 ], [ -78.046875, 17.811456 ], [ -78.046875, 17.978733 ], [ -78.398438, 17.978733 ], [ -78.398438, 18.312811 ], [ -78.222656, 18.312811 ], [ -78.222656, 18.479609 ], [ -76.816406, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.519531, 18.646245 ], [ -77.519531, 18.479609 ], [ -76.816406, 18.479609 ], [ -76.816406, 18.312811 ], [ -76.464844, 18.312811 ], [ -76.464844, 18.145852 ], [ -76.289062, 18.145852 ], [ -76.289062, 17.978733 ], [ -76.992188, 17.978733 ], [ -76.992188, 17.811456 ], [ -77.695312, 17.811456 ], [ -77.695312, 17.978733 ], [ -78.046875, 17.978733 ], [ -78.046875, 18.145852 ], [ -78.398438, 18.145852 ], [ -78.398438, 18.312811 ], [ -78.222656, 18.312811 ], [ -78.222656, 18.479609 ], [ -77.871094, 18.479609 ], [ -77.871094, 18.646245 ], [ -77.519531, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.949219, 19.973349 ], [ -72.949219, 19.808054 ], [ -72.246094, 19.808054 ], [ -72.246094, 19.642588 ], [ -71.718750, 19.642588 ], [ -71.718750, 19.311143 ], [ -71.542969, 19.311143 ], [ -71.542969, 18.979026 ], [ -71.718750, 18.979026 ], [ -71.718750, 18.646245 ], [ -71.894531, 18.646245 ], [ -71.894531, 18.479609 ], [ -71.718750, 18.479609 ], [ -71.718750, 17.978733 ], [ -72.246094, 17.978733 ], [ -72.246094, 18.145852 ], [ -73.652344, 18.145852 ], [ -73.652344, 17.978733 ], [ -74.179688, 17.978733 ], [ -74.179688, 18.145852 ], [ -74.531250, 18.145852 ], [ -74.531250, 18.479609 ], [ -74.355469, 18.479609 ], [ -74.355469, 18.646245 ], [ -74.003906, 18.646245 ], [ -74.003906, 18.479609 ], [ -72.421875, 18.479609 ], [ -72.421875, 18.646245 ], [ -72.597656, 18.646245 ], [ -72.597656, 18.979026 ], [ -72.773438, 18.979026 ], [ -72.773438, 19.476950 ], [ -73.300781, 19.476950 ], [ -73.300781, 19.808054 ], [ -73.125000, 19.808054 ], [ -73.125000, 19.973349 ], [ -72.949219, 19.973349 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.246094, 19.973349 ], [ -72.246094, 19.808054 ], [ -71.718750, 19.808054 ], [ -71.718750, 18.646245 ], [ -72.070312, 18.646245 ], [ -72.070312, 18.479609 ], [ -71.718750, 18.479609 ], [ -71.718750, 18.145852 ], [ -72.246094, 18.145852 ], [ -72.246094, 18.312811 ], [ -72.597656, 18.312811 ], [ -72.597656, 18.145852 ], [ -73.300781, 18.145852 ], [ -73.300781, 18.312811 ], [ -73.652344, 18.312811 ], [ -73.652344, 18.145852 ], [ -74.179688, 18.145852 ], [ -74.179688, 18.312811 ], [ -74.531250, 18.312811 ], [ -74.531250, 18.812718 ], [ -74.179688, 18.812718 ], [ -74.179688, 18.646245 ], [ -73.300781, 18.646245 ], [ -73.300781, 18.479609 ], [ -72.597656, 18.479609 ], [ -72.597656, 18.646245 ], [ -72.421875, 18.646245 ], [ -72.421875, 18.812718 ], [ -72.597656, 18.812718 ], [ -72.597656, 18.979026 ], [ -72.949219, 18.979026 ], [ -72.949219, 19.642588 ], [ -73.476562, 19.642588 ], [ -73.476562, 19.808054 ], [ -73.300781, 19.808054 ], [ -73.300781, 19.973349 ], [ -72.246094, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.664062, 19.808054 ], [ -70.664062, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.476950 ], [ -69.785156, 19.476950 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.730469, 18.979026 ], [ -68.730469, 18.812718 ], [ -68.554688, 18.812718 ], [ -68.554688, 18.646245 ], [ -68.378906, 18.646245 ], [ -68.378906, 18.479609 ], [ -68.554688, 18.479609 ], [ -68.554688, 18.145852 ], [ -68.906250, 18.145852 ], [ -68.906250, 18.312811 ], [ -69.082031, 18.312811 ], [ -69.082031, 18.479609 ], [ -69.257812, 18.479609 ], [ -69.257812, 18.312811 ], [ -70.136719, 18.312811 ], [ -70.136719, 18.145852 ], [ -70.488281, 18.145852 ], [ -70.488281, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 18.145852 ], [ -71.191406, 18.145852 ], [ -71.191406, 17.811456 ], [ -71.367188, 17.811456 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.479609 ], [ -71.894531, 18.479609 ], [ -71.894531, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 18.979026 ], [ -71.542969, 18.979026 ], [ -71.542969, 19.311143 ], [ -71.718750, 19.311143 ], [ -71.718750, 19.642588 ], [ -71.542969, 19.642588 ], [ -71.542969, 19.808054 ], [ -70.664062, 19.808054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.839844, 19.973349 ], [ -70.839844, 19.808054 ], [ -70.488281, 19.808054 ], [ -70.488281, 19.642588 ], [ -69.960938, 19.642588 ], [ -69.960938, 19.476950 ], [ -69.785156, 19.476950 ], [ -69.785156, 19.311143 ], [ -69.257812, 19.311143 ], [ -69.257812, 18.979026 ], [ -68.906250, 18.979026 ], [ -68.906250, 18.812718 ], [ -68.554688, 18.812718 ], [ -68.554688, 18.646245 ], [ -68.378906, 18.646245 ], [ -68.378906, 18.479609 ], [ -68.554688, 18.479609 ], [ -68.554688, 18.312811 ], [ -69.082031, 18.312811 ], [ -69.082031, 18.479609 ], [ -69.960938, 18.479609 ], [ -69.960938, 18.312811 ], [ -71.015625, 18.312811 ], [ -71.015625, 18.145852 ], [ -71.191406, 18.145852 ], [ -71.191406, 17.978733 ], [ -71.367188, 17.978733 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.644022 ], [ -71.718750, 18.479609 ], [ -72.070312, 18.479609 ], [ -72.070312, 18.646245 ], [ -71.718750, 18.646245 ], [ -71.718750, 19.973349 ], [ -70.839844, 19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.367188, 12.382928 ], [ -71.367188, 12.211180 ], [ -71.191406, 12.211180 ], [ -71.191406, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.695273 ], [ -71.542969, 11.695273 ], [ -71.542969, 11.523088 ], [ -71.894531, 11.523088 ], [ -71.894531, 11.350797 ], [ -72.070312, 11.350797 ], [ -72.070312, 11.178402 ], [ -72.246094, 11.178402 ], [ -72.246094, 11.005904 ], [ -72.421875, 11.005904 ], [ -72.421875, 10.833306 ], [ -72.597656, 10.833306 ], [ -72.597656, 10.660608 ], [ -72.773438, 10.660608 ], [ -72.773438, 10.487812 ], [ -72.949219, 10.487812 ], [ -72.949219, 9.622414 ], [ -73.125000, 9.622414 ], [ -73.125000, 9.275622 ], [ -73.300781, 9.275622 ], [ -73.300781, 9.102097 ], [ -72.773438, 9.102097 ], [ -72.773438, 8.754795 ], [ -72.597656, 8.754795 ], [ -72.597656, 8.407168 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.362467 ], [ -72.246094, 7.362467 ], [ -72.246094, 7.188101 ], [ -72.070312, 7.188101 ], [ -72.070312, 7.013668 ], [ -70.136719, 7.013668 ], [ -70.136719, 6.839170 ], [ -69.960938, 6.839170 ], [ -69.960938, 6.664608 ], [ -69.785156, 6.664608 ], [ -69.785156, 6.315299 ], [ -69.609375, 6.315299 ], [ -69.609375, 6.140555 ], [ -67.851562, 6.140555 ], [ -67.851562, 6.315299 ], [ -67.675781, 6.315299 ], [ -67.675781, 6.140555 ], [ -67.324219, 6.140555 ], [ -67.324219, 5.790897 ], [ -67.500000, 5.790897 ], [ -67.500000, 5.441022 ], [ -67.675781, 5.441022 ], [ -67.675781, 4.915833 ], [ -67.851562, 4.915833 ], [ -67.851562, 4.214943 ], [ -67.675781, 4.214943 ], [ -67.675781, 3.688855 ], [ -67.500000, 3.688855 ], [ -67.500000, 3.513421 ], [ -67.324219, 3.513421 ], [ -67.324219, 3.162456 ], [ -67.500000, 3.162456 ], [ -67.500000, 2.986927 ], [ -67.675781, 2.986927 ], [ -67.675781, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.635789 ], [ -67.500000, 2.635789 ], [ -67.500000, 2.460181 ], [ -67.324219, 2.460181 ], [ -67.324219, 2.284551 ], [ -67.148438, 2.284551 ], [ -67.148438, 1.933227 ], [ -66.972656, 1.933227 ], [ -66.972656, 1.406109 ], [ -66.796875, 1.406109 ], [ -66.796875, 1.054628 ], [ -67.148438, 1.054628 ], [ -67.148438, 1.406109 ], [ -67.324219, 1.406109 ], [ -67.324219, 1.933227 ], [ -67.675781, 1.933227 ], [ -67.675781, 1.757537 ], [ -69.785156, 1.757537 ], [ -69.785156, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.527336 ], [ -69.433594, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.527336 ], [ -69.960938, 0.527336 ], [ -69.960938, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.703107 ], [ -69.433594, -0.703107 ], [ -69.433594, -0.878872 ], [ -74.179688, -0.878872 ], [ -74.179688, -0.703107 ], [ -74.355469, -0.703107 ], [ -74.355469, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.351560 ], [ -74.882812, -0.351560 ], [ -74.882812, -0.175781 ], [ -75.761719, -0.175781 ], [ -75.761719, 0.000000 ], [ -75.937500, 0.000000 ], [ -75.937500, 0.175781 ], [ -77.167969, 0.175781 ], [ -77.167969, 0.351560 ], [ -77.519531, 0.351560 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -78.222656, 0.878872 ], [ -78.222656, 1.054628 ], [ -78.574219, 1.054628 ], [ -78.574219, 1.230374 ], [ -78.925781, 1.230374 ], [ -78.925781, 1.757537 ], [ -78.574219, 1.757537 ], [ -78.574219, 1.933227 ], [ -78.750000, 1.933227 ], [ -78.750000, 2.284551 ], [ -78.574219, 2.284551 ], [ -78.574219, 2.460181 ], [ -78.398438, 2.460181 ], [ -78.398438, 2.635789 ], [ -77.871094, 2.635789 ], [ -77.871094, 2.811371 ], [ -77.695312, 2.811371 ], [ -77.695312, 3.162456 ], [ -77.519531, 3.162456 ], [ -77.519531, 3.337954 ], [ -77.343750, 3.337954 ], [ -77.343750, 3.688855 ], [ -77.167969, 3.688855 ], [ -77.167969, 3.864255 ], [ -77.519531, 3.864255 ], [ -77.519531, 4.390229 ], [ -77.343750, 4.390229 ], [ -77.343750, 5.090944 ], [ -77.519531, 5.090944 ], [ -77.519531, 5.615986 ], [ -77.343750, 5.615986 ], [ -77.343750, 6.140555 ], [ -77.519531, 6.140555 ], [ -77.519531, 6.664608 ], [ -77.695312, 6.664608 ], [ -77.695312, 7.013668 ], [ -77.871094, 7.013668 ], [ -77.871094, 7.362467 ], [ -77.695312, 7.362467 ], [ -77.695312, 7.710992 ], [ -77.167969, 7.710992 ], [ -77.167969, 8.059230 ], [ -77.343750, 8.059230 ], [ -77.343750, 8.407168 ], [ -77.519531, 8.407168 ], [ -77.519531, 8.581021 ], [ -77.343750, 8.581021 ], [ -77.343750, 8.754795 ], [ -77.167969, 8.754795 ], [ -77.167969, 8.581021 ], [ -76.640625, 8.581021 ], [ -76.640625, 8.754795 ], [ -76.464844, 8.754795 ], [ -76.464844, 8.928487 ], [ -76.289062, 8.928487 ], [ -76.289062, 9.102097 ], [ -76.113281, 9.102097 ], [ -76.113281, 9.275622 ], [ -75.761719, 9.275622 ], [ -75.761719, 9.622414 ], [ -75.585938, 9.622414 ], [ -75.585938, 10.141932 ], [ -75.410156, 10.141932 ], [ -75.410156, 10.660608 ], [ -75.234375, 10.660608 ], [ -75.234375, 10.833306 ], [ -74.882812, 10.833306 ], [ -74.882812, 11.005904 ], [ -74.531250, 11.005904 ], [ -74.531250, 11.178402 ], [ -74.179688, 11.178402 ], [ -74.179688, 11.350797 ], [ -74.003906, 11.350797 ], [ -74.003906, 11.178402 ], [ -73.300781, 11.178402 ], [ -73.300781, 11.350797 ], [ -72.949219, 11.350797 ], [ -72.949219, 11.523088 ], [ -72.597656, 11.523088 ], [ -72.597656, 11.695273 ], [ -72.421875, 11.695273 ], [ -72.421875, 11.867351 ], [ -72.246094, 11.867351 ], [ -72.246094, 12.039321 ], [ -72.070312, 12.039321 ], [ -72.070312, 12.211180 ], [ -71.718750, 12.211180 ], [ -71.718750, 12.382928 ], [ -71.367188, 12.382928 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.542969, 12.382928 ], [ -71.542969, 12.211180 ], [ -71.191406, 12.211180 ], [ -71.191406, 12.039321 ], [ -71.367188, 12.039321 ], [ -71.367188, 11.867351 ], [ -71.542969, 11.867351 ], [ -71.542969, 11.695273 ], [ -72.070312, 11.695273 ], [ -72.070312, 11.350797 ], [ -72.246094, 11.350797 ], [ -72.246094, 11.005904 ], [ -72.597656, 11.005904 ], [ -72.597656, 10.833306 ], [ -72.773438, 10.833306 ], [ -72.773438, 10.660608 ], [ -72.949219, 10.660608 ], [ -72.949219, 10.141932 ], [ -73.125000, 10.141932 ], [ -73.125000, 9.622414 ], [ -73.300781, 9.622414 ], [ -73.300781, 9.102097 ], [ -72.949219, 9.102097 ], [ -72.949219, 8.928487 ], [ -72.773438, 8.928487 ], [ -72.773438, 8.581021 ], [ -72.597656, 8.581021 ], [ -72.597656, 8.233237 ], [ -72.421875, 8.233237 ], [ -72.421875, 7.885147 ], [ -72.597656, 7.885147 ], [ -72.597656, 7.362467 ], [ -72.246094, 7.362467 ], [ -72.246094, 7.188101 ], [ -72.070312, 7.188101 ], [ -72.070312, 7.013668 ], [ -71.367188, 7.013668 ], [ -71.367188, 7.188101 ], [ -70.664062, 7.188101 ], [ -70.664062, 7.013668 ], [ -70.136719, 7.013668 ], [ -70.136719, 6.839170 ], [ -69.960938, 6.839170 ], [ -69.960938, 6.664608 ], [ -69.785156, 6.664608 ], [ -69.785156, 6.315299 ], [ -69.609375, 6.315299 ], [ -69.609375, 6.140555 ], [ -69.082031, 6.140555 ], [ -69.082031, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 6.140555 ], [ -67.500000, 6.140555 ], [ -67.500000, 5.790897 ], [ -67.675781, 5.790897 ], [ -67.675781, 5.441022 ], [ -67.851562, 5.441022 ], [ -67.851562, 4.214943 ], [ -67.675781, 4.214943 ], [ -67.675781, 3.688855 ], [ -67.500000, 3.688855 ], [ -67.500000, 3.513421 ], [ -67.324219, 3.513421 ], [ -67.324219, 3.162456 ], [ -67.675781, 3.162456 ], [ -67.675781, 2.986927 ], [ -67.851562, 2.986927 ], [ -67.851562, 2.811371 ], [ -67.675781, 2.811371 ], [ -67.675781, 2.635789 ], [ -67.500000, 2.635789 ], [ -67.500000, 2.460181 ], [ -67.324219, 2.460181 ], [ -67.324219, 1.933227 ], [ -67.148438, 1.933227 ], [ -67.148438, 1.581830 ], [ -66.972656, 1.581830 ], [ -66.972656, 1.230374 ], [ -67.148438, 1.230374 ], [ -67.148438, 1.406109 ], [ -67.324219, 1.406109 ], [ -67.324219, 1.757537 ], [ -67.500000, 1.757537 ], [ -67.500000, 1.933227 ], [ -67.851562, 1.933227 ], [ -67.851562, 1.757537 ], [ -69.960938, 1.757537 ], [ -69.960938, 1.230374 ], [ -69.785156, 1.230374 ], [ -69.785156, 1.054628 ], [ -69.257812, 1.054628 ], [ -69.257812, 0.703107 ], [ -69.609375, 0.703107 ], [ -69.609375, 0.878872 ], [ -69.785156, 0.878872 ], [ -69.785156, 0.703107 ], [ -70.136719, 0.703107 ], [ -70.136719, -0.351560 ], [ -69.785156, -0.351560 ], [ -69.785156, -0.527336 ], [ -69.609375, -0.527336 ], [ -69.609375, -0.878872 ], [ -74.355469, -0.878872 ], [ -74.355469, -0.703107 ], [ -74.531250, -0.703107 ], [ -74.531250, -0.527336 ], [ -74.707031, -0.527336 ], [ -74.707031, -0.351560 ], [ -75.058594, -0.351560 ], [ -75.058594, -0.175781 ], [ -75.234375, -0.175781 ], [ -75.234375, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, 0.175781 ], [ -76.113281, 0.175781 ], [ -76.113281, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.527336 ], [ -77.519531, 0.527336 ], [ -77.519531, 0.703107 ], [ -77.695312, 0.703107 ], [ -77.695312, 0.878872 ], [ -78.222656, 0.878872 ], [ -78.222656, 1.054628 ], [ -78.574219, 1.054628 ], [ -78.574219, 1.230374 ], [ -78.925781, 1.230374 ], [ -78.925781, 1.581830 ], [ -79.101562, 1.581830 ], [ -79.101562, 1.757537 ], [ -78.750000, 1.757537 ], [ -78.750000, 2.460181 ], [ -78.574219, 2.460181 ], [ -78.574219, 2.635789 ], [ -78.222656, 2.635789 ], [ -78.222656, 2.811371 ], [ -77.871094, 2.811371 ], [ -77.871094, 2.986927 ], [ -77.695312, 2.986927 ], [ -77.695312, 3.162456 ], [ -77.519531, 3.162456 ], [ -77.519531, 3.337954 ], [ -77.343750, 3.337954 ], [ -77.343750, 3.688855 ], [ -77.167969, 3.688855 ], [ -77.167969, 3.864255 ], [ -77.343750, 3.864255 ], [ -77.343750, 4.039618 ], [ -77.519531, 4.039618 ], [ -77.519531, 4.390229 ], [ -77.343750, 4.390229 ], [ -77.343750, 4.915833 ], [ -77.519531, 4.915833 ], [ -77.519531, 5.266008 ], [ -77.695312, 5.266008 ], [ -77.695312, 5.615986 ], [ -77.519531, 5.615986 ], [ -77.519531, 5.790897 ], [ -77.343750, 5.790897 ], [ -77.343750, 6.315299 ], [ -77.519531, 6.315299 ], [ -77.519531, 6.839170 ], [ -77.695312, 6.839170 ], [ -77.695312, 7.013668 ], [ -77.871094, 7.013668 ], [ -77.871094, 7.188101 ], [ -78.046875, 7.188101 ], [ -78.046875, 7.536764 ], [ -77.871094, 7.536764 ], [ -77.871094, 7.710992 ], [ -77.519531, 7.710992 ], [ -77.519531, 7.885147 ], [ -77.343750, 7.885147 ], [ -77.343750, 8.233237 ], [ -77.519531, 8.233237 ], [ -77.519531, 8.754795 ], [ -76.816406, 8.754795 ], [ -76.816406, 8.928487 ], [ -76.640625, 8.928487 ], [ -76.640625, 9.102097 ], [ -76.289062, 9.102097 ], [ -76.289062, 9.275622 ], [ -76.113281, 9.275622 ], [ -76.113281, 9.449062 ], [ -75.761719, 9.449062 ], [ -75.761719, 10.141932 ], [ -75.585938, 10.141932 ], [ -75.585938, 10.660608 ], [ -75.410156, 10.660608 ], [ -75.410156, 10.833306 ], [ -75.234375, 10.833306 ], [ -75.234375, 11.005904 ], [ -75.058594, 11.005904 ], [ -75.058594, 11.178402 ], [ -74.355469, 11.178402 ], [ -74.355469, 11.350797 ], [ -73.300781, 11.350797 ], [ -73.300781, 11.523088 ], [ -72.949219, 11.523088 ], [ -72.949219, 11.695273 ], [ -72.773438, 11.695273 ], [ -72.773438, 11.867351 ], [ -72.421875, 11.867351 ], [ -72.421875, 12.039321 ], [ -72.070312, 12.039321 ], [ -72.070312, 12.382928 ], [ -71.542969, 12.382928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.742188, 18.479609 ], [ -65.742188, 18.312811 ], [ -65.566406, 18.312811 ], [ -65.566406, 17.978733 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.145852 ], [ -67.324219, 18.145852 ], [ -67.324219, 18.312811 ], [ -67.148438, 18.312811 ], [ -67.148438, 18.479609 ], [ -65.742188, 18.479609 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, 18.646245 ], [ -66.269531, 18.479609 ], [ -65.917969, 18.479609 ], [ -65.917969, 18.312811 ], [ -65.742188, 18.312811 ], [ -65.742188, 18.145852 ], [ -65.917969, 18.145852 ], [ -65.917969, 17.978733 ], [ -66.445312, 17.978733 ], [ -66.445312, 18.145852 ], [ -66.796875, 18.145852 ], [ -66.796875, 17.978733 ], [ -67.324219, 17.978733 ], [ -67.324219, 18.479609 ], [ -67.148438, 18.479609 ], [ -67.148438, 18.646245 ], [ -66.269531, 18.646245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 12.039321 ], [ -69.785156, 11.695273 ], [ -69.609375, 11.695273 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.350797 ], [ -68.730469, 11.350797 ], [ -68.730469, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 11.005904 ], [ -68.378906, 11.005904 ], [ -68.378906, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.487812 ], [ -66.621094, 10.487812 ], [ -66.621094, 10.660608 ], [ -66.269531, 10.660608 ], [ -66.269531, 10.487812 ], [ -66.093750, 10.487812 ], [ -66.093750, 10.314919 ], [ -65.917969, 10.314919 ], [ -65.917969, 10.141932 ], [ -64.511719, 10.141932 ], [ -64.511719, 10.314919 ], [ -64.335938, 10.314919 ], [ -64.335938, 10.660608 ], [ -62.226562, 10.660608 ], [ -62.226562, 10.487812 ], [ -62.753906, 10.487812 ], [ -62.753906, 10.314919 ], [ -62.578125, 10.314919 ], [ -62.578125, 9.968851 ], [ -62.050781, 9.968851 ], [ -62.050781, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.622414 ], [ -61.171875, 9.622414 ], [ -61.171875, 9.449062 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.928487 ], [ -60.644531, 8.928487 ], [ -60.644531, 8.581021 ], [ -60.117188, 8.581021 ], [ -60.117188, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.233237 ], [ -59.941406, 8.233237 ], [ -59.941406, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 7.885147 ], [ -60.292969, 7.885147 ], [ -60.292969, 7.710992 ], [ -60.468750, 7.710992 ], [ -60.468750, 7.536764 ], [ -60.644531, 7.536764 ], [ -60.644531, 7.188101 ], [ -60.468750, 7.188101 ], [ -60.468750, 7.013668 ], [ -60.292969, 7.013668 ], [ -60.292969, 6.839170 ], [ -60.644531, 6.839170 ], [ -60.644531, 6.664608 ], [ -61.171875, 6.664608 ], [ -61.171875, 6.140555 ], [ -61.347656, 6.140555 ], [ -61.347656, 5.790897 ], [ -61.171875, 5.790897 ], [ -61.171875, 5.615986 ], [ -60.996094, 5.615986 ], [ -60.996094, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 5.090944 ], [ -60.644531, 5.090944 ], [ -60.644531, 4.740675 ], [ -60.820312, 4.740675 ], [ -60.820312, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.390229 ], [ -61.699219, 4.390229 ], [ -61.699219, 4.214943 ], [ -62.226562, 4.214943 ], [ -62.226562, 4.039618 ], [ -62.753906, 4.039618 ], [ -62.753906, 3.864255 ], [ -62.929688, 3.864255 ], [ -62.929688, 3.688855 ], [ -63.457031, 3.688855 ], [ -63.457031, 3.864255 ], [ -63.808594, 3.864255 ], [ -63.808594, 4.039618 ], [ -64.335938, 4.039618 ], [ -64.335938, 4.214943 ], [ -64.687500, 4.214943 ], [ -64.687500, 3.864255 ], [ -64.335938, 3.864255 ], [ -64.335938, 2.460181 ], [ -63.457031, 2.460181 ], [ -63.457031, 2.108899 ], [ -63.808594, 2.108899 ], [ -63.808594, 1.933227 ], [ -64.160156, 1.933227 ], [ -64.160156, 1.406109 ], [ -64.687500, 1.406109 ], [ -64.687500, 1.230374 ], [ -65.039062, 1.230374 ], [ -65.039062, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 0.878872 ], [ -65.566406, 0.878872 ], [ -65.566406, 0.703107 ], [ -66.445312, 0.703107 ], [ -66.445312, 0.878872 ], [ -66.621094, 0.878872 ], [ -66.621094, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.406109 ], [ -66.972656, 1.406109 ], [ -66.972656, 1.933227 ], [ -67.148438, 1.933227 ], [ -67.148438, 2.284551 ], [ -67.324219, 2.284551 ], [ -67.324219, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.635789 ], [ -67.851562, 2.635789 ], [ -67.851562, 2.811371 ], [ -67.675781, 2.811371 ], [ -67.675781, 2.986927 ], [ -67.500000, 2.986927 ], [ -67.500000, 3.162456 ], [ -67.324219, 3.162456 ], [ -67.324219, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 3.688855 ], [ -67.675781, 3.688855 ], [ -67.675781, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 4.915833 ], [ -67.675781, 4.915833 ], [ -67.675781, 5.441022 ], [ -67.500000, 5.441022 ], [ -67.500000, 5.790897 ], [ -67.324219, 5.790897 ], [ -67.324219, 6.140555 ], [ -67.675781, 6.140555 ], [ -67.675781, 6.315299 ], [ -67.851562, 6.315299 ], [ -67.851562, 6.140555 ], [ -69.609375, 6.140555 ], [ -69.609375, 6.315299 ], [ -69.785156, 6.315299 ], [ -69.785156, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 6.839170 ], [ -70.136719, 6.839170 ], [ -70.136719, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.188101 ], [ -72.246094, 7.188101 ], [ -72.246094, 7.362467 ], [ -72.421875, 7.362467 ], [ -72.421875, 8.407168 ], [ -72.597656, 8.407168 ], [ -72.597656, 8.754795 ], [ -72.773438, 8.754795 ], [ -72.773438, 9.102097 ], [ -73.300781, 9.102097 ], [ -73.300781, 9.275622 ], [ -73.125000, 9.275622 ], [ -73.125000, 9.622414 ], [ -72.949219, 9.622414 ], [ -72.949219, 10.487812 ], [ -72.773438, 10.487812 ], [ -72.773438, 10.660608 ], [ -72.597656, 10.660608 ], [ -72.597656, 10.833306 ], [ -72.421875, 10.833306 ], [ -72.421875, 11.005904 ], [ -72.246094, 11.005904 ], [ -72.246094, 11.178402 ], [ -72.070312, 11.178402 ], [ -72.070312, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.178402 ], [ -71.718750, 11.178402 ], [ -71.718750, 11.005904 ], [ -71.542969, 11.005904 ], [ -71.542969, 10.660608 ], [ -71.718750, 10.660608 ], [ -71.718750, 10.314919 ], [ -71.894531, 10.314919 ], [ -71.894531, 9.968851 ], [ -72.070312, 9.968851 ], [ -72.070312, 9.622414 ], [ -71.894531, 9.622414 ], [ -71.894531, 9.275622 ], [ -71.718750, 9.275622 ], [ -71.718750, 9.102097 ], [ -71.191406, 9.102097 ], [ -71.191406, 9.449062 ], [ -71.015625, 9.449062 ], [ -71.015625, 9.795678 ], [ -71.191406, 9.795678 ], [ -71.191406, 9.968851 ], [ -71.367188, 9.968851 ], [ -71.367188, 11.005904 ], [ -71.015625, 11.005904 ], [ -71.015625, 11.178402 ], [ -70.312500, 11.178402 ], [ -70.312500, 11.350797 ], [ -70.136719, 11.350797 ], [ -70.136719, 11.523088 ], [ -70.312500, 11.523088 ], [ -70.312500, 11.867351 ], [ -70.136719, 11.867351 ], [ -70.136719, 12.039321 ], [ -69.785156, 12.039321 ] ] ], [ [ [ -71.542969, 11.523088 ], [ -71.542969, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.523088 ], [ -71.542969, 11.523088 ] ] ], [ [ [ -71.367188, 11.523088 ], [ -71.542969, 11.523088 ], [ -71.542969, 11.695273 ], [ -71.367188, 11.695273 ], [ -71.367188, 11.523088 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.785156, 12.039321 ], [ -69.785156, 11.695273 ], [ -69.609375, 11.695273 ], [ -69.609375, 11.523088 ], [ -68.906250, 11.523088 ], [ -68.906250, 11.350797 ], [ -68.730469, 11.350797 ], [ -68.730469, 11.178402 ], [ -68.554688, 11.178402 ], [ -68.554688, 11.005904 ], [ -68.378906, 11.005904 ], [ -68.378906, 10.833306 ], [ -68.203125, 10.833306 ], [ -68.203125, 10.660608 ], [ -66.269531, 10.660608 ], [ -66.269531, 10.487812 ], [ -65.917969, 10.487812 ], [ -65.917969, 10.314919 ], [ -65.566406, 10.314919 ], [ -65.566406, 10.141932 ], [ -64.687500, 10.141932 ], [ -64.687500, 10.314919 ], [ -64.335938, 10.314919 ], [ -64.335938, 10.660608 ], [ -63.632812, 10.660608 ], [ -63.632812, 10.833306 ], [ -62.050781, 10.833306 ], [ -62.050781, 10.660608 ], [ -62.402344, 10.660608 ], [ -62.402344, 10.487812 ], [ -62.753906, 10.487812 ], [ -62.753906, 10.314919 ], [ -62.578125, 10.314919 ], [ -62.578125, 9.968851 ], [ -61.699219, 9.968851 ], [ -61.699219, 9.795678 ], [ -61.523438, 9.795678 ], [ -61.523438, 9.622414 ], [ -61.171875, 9.622414 ], [ -61.171875, 9.449062 ], [ -60.996094, 9.449062 ], [ -60.996094, 8.928487 ], [ -60.820312, 8.928487 ], [ -60.820312, 8.581021 ], [ -60.468750, 8.581021 ], [ -60.468750, 8.754795 ], [ -60.292969, 8.754795 ], [ -60.292969, 8.581021 ], [ -59.941406, 8.581021 ], [ -59.941406, 8.407168 ], [ -59.765625, 8.407168 ], [ -59.765625, 8.233237 ], [ -60.117188, 8.233237 ], [ -60.117188, 8.059230 ], [ -60.468750, 8.059230 ], [ -60.468750, 7.885147 ], [ -60.644531, 7.885147 ], [ -60.644531, 7.362467 ], [ -60.468750, 7.362467 ], [ -60.468750, 7.188101 ], [ -60.292969, 7.188101 ], [ -60.292969, 7.013668 ], [ -60.820312, 7.013668 ], [ -60.820312, 6.839170 ], [ -61.171875, 6.839170 ], [ -61.171875, 6.140555 ], [ -61.347656, 6.140555 ], [ -61.347656, 5.965754 ], [ -61.523438, 5.965754 ], [ -61.523438, 5.790897 ], [ -61.347656, 5.790897 ], [ -61.347656, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.441022 ], [ -60.996094, 5.441022 ], [ -60.996094, 5.266008 ], [ -60.820312, 5.266008 ], [ -60.820312, 5.090944 ], [ -60.644531, 5.090944 ], [ -60.644531, 4.740675 ], [ -60.820312, 4.740675 ], [ -60.820312, 4.565474 ], [ -61.171875, 4.565474 ], [ -61.171875, 4.390229 ], [ -61.875000, 4.390229 ], [ -61.875000, 4.214943 ], [ -62.402344, 4.214943 ], [ -62.402344, 4.039618 ], [ -62.929688, 4.039618 ], [ -62.929688, 3.864255 ], [ -63.632812, 3.864255 ], [ -63.632812, 4.039618 ], [ -64.511719, 4.039618 ], [ -64.511719, 4.214943 ], [ -64.863281, 4.214943 ], [ -64.863281, 4.039618 ], [ -64.687500, 4.039618 ], [ -64.687500, 3.864255 ], [ -64.511719, 3.864255 ], [ -64.511719, 2.811371 ], [ -64.335938, 2.811371 ], [ -64.335938, 2.635789 ], [ -63.984375, 2.635789 ], [ -63.984375, 2.460181 ], [ -63.457031, 2.460181 ], [ -63.457031, 2.108899 ], [ -63.808594, 2.108899 ], [ -63.808594, 1.933227 ], [ -64.160156, 1.933227 ], [ -64.160156, 1.757537 ], [ -64.335938, 1.757537 ], [ -64.335938, 1.406109 ], [ -64.863281, 1.406109 ], [ -64.863281, 1.230374 ], [ -65.390625, 1.230374 ], [ -65.390625, 1.054628 ], [ -65.566406, 1.054628 ], [ -65.566406, 0.878872 ], [ -66.621094, 0.878872 ], [ -66.621094, 1.054628 ], [ -66.796875, 1.054628 ], [ -66.796875, 1.230374 ], [ -66.972656, 1.230374 ], [ -66.972656, 1.581830 ], [ -67.148438, 1.581830 ], [ -67.148438, 1.933227 ], [ -67.324219, 1.933227 ], [ -67.324219, 2.460181 ], [ -67.500000, 2.460181 ], [ -67.500000, 2.635789 ], [ -67.675781, 2.635789 ], [ -67.675781, 2.811371 ], [ -67.851562, 2.811371 ], [ -67.851562, 2.986927 ], [ -67.675781, 2.986927 ], [ -67.675781, 3.162456 ], [ -67.324219, 3.162456 ], [ -67.324219, 3.513421 ], [ -67.500000, 3.513421 ], [ -67.500000, 3.688855 ], [ -67.675781, 3.688855 ], [ -67.675781, 4.214943 ], [ -67.851562, 4.214943 ], [ -67.851562, 5.441022 ], [ -67.675781, 5.441022 ], [ -67.675781, 5.790897 ], [ -67.500000, 5.790897 ], [ -67.500000, 6.140555 ], [ -67.851562, 6.140555 ], [ -67.851562, 6.315299 ], [ -69.082031, 6.315299 ], [ -69.082031, 6.140555 ], [ -69.609375, 6.140555 ], [ -69.609375, 6.315299 ], [ -69.785156, 6.315299 ], [ -69.785156, 6.664608 ], [ -69.960938, 6.664608 ], [ -69.960938, 6.839170 ], [ -70.136719, 6.839170 ], [ -70.136719, 7.013668 ], [ -70.664062, 7.013668 ], [ -70.664062, 7.188101 ], [ -71.367188, 7.188101 ], [ -71.367188, 7.013668 ], [ -72.070312, 7.013668 ], [ -72.070312, 7.188101 ], [ -72.246094, 7.188101 ], [ -72.246094, 7.362467 ], [ -72.597656, 7.362467 ], [ -72.597656, 7.885147 ], [ -72.421875, 7.885147 ], [ -72.421875, 8.233237 ], [ -72.597656, 8.233237 ], [ -72.597656, 8.581021 ], [ -72.773438, 8.581021 ], [ -72.773438, 8.928487 ], [ -72.949219, 8.928487 ], [ -72.949219, 9.102097 ], [ -73.300781, 9.102097 ], [ -73.300781, 9.622414 ], [ -73.125000, 9.622414 ], [ -73.125000, 10.141932 ], [ -72.949219, 10.141932 ], [ -72.949219, 10.660608 ], [ -72.773438, 10.660608 ], [ -72.773438, 10.833306 ], [ -72.597656, 10.833306 ], [ -72.597656, 11.005904 ], [ -72.246094, 11.005904 ], [ -72.246094, 11.350797 ], [ -72.070312, 11.350797 ], [ -71.894531, 11.350797 ], [ -71.894531, 11.005904 ], [ -71.718750, 11.005904 ], [ -71.718750, 10.314919 ], [ -71.894531, 10.314919 ], [ -71.894531, 10.141932 ], [ -72.070312, 10.141932 ], [ -72.070312, 9.968851 ], [ -72.246094, 9.968851 ], [ -72.246094, 9.795678 ], [ -72.070312, 9.795678 ], [ -72.070312, 9.449062 ], [ -71.894531, 9.449062 ], [ -71.894531, 9.102097 ], [ -71.367188, 9.102097 ], [ -71.367188, 9.622414 ], [ -71.191406, 9.622414 ], [ -71.191406, 10.141932 ], [ -71.367188, 10.141932 ], [ -71.367188, 10.660608 ], [ -71.542969, 10.660608 ], [ -71.542969, 11.005904 ], [ -71.191406, 11.005904 ], [ -71.191406, 11.178402 ], [ -70.839844, 11.178402 ], [ -70.839844, 11.350797 ], [ -70.488281, 11.350797 ], [ -70.488281, 11.523088 ], [ -70.312500, 11.523088 ], [ -70.312500, 11.867351 ], [ -70.136719, 11.867351 ], [ -70.136719, 12.039321 ], [ -69.785156, 12.039321 ] ] ], [ [ [ -71.542969, 11.695273 ], [ -71.542969, 11.523088 ], [ -72.070312, 11.523088 ], [ -72.070312, 11.695273 ], [ -71.542969, 11.695273 ] ] ], [ [ [ -71.367188, 11.695273 ], [ -71.542969, 11.695273 ], [ -71.542969, 11.867351 ], [ -71.367188, 11.867351 ], [ -71.367188, 11.695273 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.820312, 10.833306 ], [ -60.820312, 10.487812 ], [ -60.996094, 10.487812 ], [ -60.996094, 10.141932 ], [ -61.171875, 10.141932 ], [ -61.171875, 9.968851 ], [ -61.875000, 9.968851 ], [ -61.875000, 10.141932 ], [ -61.699219, 10.141932 ], [ -61.699219, 10.833306 ], [ -60.820312, 10.833306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.996094, 11.005904 ], [ -60.996094, 10.141932 ], [ -61.875000, 10.141932 ], [ -61.875000, 10.314919 ], [ -61.699219, 10.314919 ], [ -61.699219, 10.833306 ], [ -61.347656, 10.833306 ], [ -61.347656, 11.005904 ], [ -60.996094, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.414062, 8.233237 ], [ -59.414062, 8.059230 ], [ -59.062500, 8.059230 ], [ -59.062500, 7.885147 ], [ -58.886719, 7.885147 ], [ -58.886719, 7.710992 ], [ -58.710938, 7.710992 ], [ -58.710938, 7.362467 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.007812, 6.839170 ], [ -58.007812, 6.664608 ], [ -57.832031, 6.664608 ], [ -57.832031, 6.489983 ], [ -57.656250, 6.489983 ], [ -57.656250, 6.315299 ], [ -57.480469, 6.315299 ], [ -57.480469, 6.140555 ], [ -57.304688, 6.140555 ], [ -57.304688, 5.965754 ], [ -57.128906, 5.965754 ], [ -57.128906, 5.441022 ], [ -57.304688, 5.441022 ], [ -57.304688, 4.915833 ], [ -57.656250, 4.915833 ], [ -57.656250, 4.740675 ], [ -57.832031, 4.740675 ], [ -57.832031, 4.214943 ], [ -58.007812, 4.214943 ], [ -58.007812, 3.864255 ], [ -57.832031, 3.864255 ], [ -57.832031, 3.513421 ], [ -57.656250, 3.513421 ], [ -57.656250, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.304688, 2.986927 ], [ -57.128906, 2.986927 ], [ -57.128906, 2.635789 ], [ -56.953125, 2.635789 ], [ -56.953125, 2.284551 ], [ -56.777344, 2.284551 ], [ -56.777344, 1.933227 ], [ -57.304688, 1.933227 ], [ -57.304688, 1.757537 ], [ -57.832031, 1.757537 ], [ -57.832031, 1.581830 ], [ -58.183594, 1.581830 ], [ -58.183594, 1.406109 ], [ -58.359375, 1.406109 ], [ -58.359375, 1.230374 ], [ -59.238281, 1.230374 ], [ -59.238281, 1.406109 ], [ -59.414062, 1.406109 ], [ -59.414062, 1.581830 ], [ -59.589844, 1.581830 ], [ -59.589844, 1.933227 ], [ -59.765625, 1.933227 ], [ -59.765625, 2.460181 ], [ -59.941406, 2.460181 ], [ -59.941406, 3.162456 ], [ -59.765625, 3.162456 ], [ -59.765625, 3.864255 ], [ -59.589844, 3.864255 ], [ -59.589844, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.390229 ], [ -60.117188, 4.390229 ], [ -60.117188, 4.740675 ], [ -59.941406, 4.740675 ], [ -59.941406, 5.090944 ], [ -60.292969, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.996094, 5.266008 ], [ -60.996094, 5.615986 ], [ -61.171875, 5.615986 ], [ -61.171875, 5.790897 ], [ -61.347656, 5.790897 ], [ -61.347656, 6.140555 ], [ -61.171875, 6.140555 ], [ -61.171875, 6.664608 ], [ -60.644531, 6.664608 ], [ -60.644531, 6.839170 ], [ -60.292969, 6.839170 ], [ -60.292969, 7.013668 ], [ -60.468750, 7.013668 ], [ -60.468750, 7.188101 ], [ -60.644531, 7.188101 ], [ -60.644531, 7.536764 ], [ -60.468750, 7.536764 ], [ -60.468750, 7.710992 ], [ -60.292969, 7.710992 ], [ -60.292969, 7.885147 ], [ -60.117188, 7.885147 ], [ -60.117188, 8.059230 ], [ -59.941406, 8.059230 ], [ -59.941406, 8.233237 ], [ -59.414062, 8.233237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.414062, 8.233237 ], [ -59.414062, 8.059230 ], [ -59.238281, 8.059230 ], [ -59.238281, 7.885147 ], [ -59.062500, 7.885147 ], [ -59.062500, 7.710992 ], [ -58.886719, 7.710992 ], [ -58.886719, 7.536764 ], [ -58.710938, 7.536764 ], [ -58.710938, 7.362467 ], [ -58.535156, 7.362467 ], [ -58.535156, 6.839170 ], [ -58.183594, 6.839170 ], [ -58.183594, 6.664608 ], [ -57.832031, 6.664608 ], [ -57.832031, 6.489983 ], [ -57.656250, 6.489983 ], [ -57.656250, 6.315299 ], [ -57.480469, 6.315299 ], [ -57.480469, 6.140555 ], [ -57.304688, 6.140555 ], [ -57.304688, 5.090944 ], [ -57.480469, 5.090944 ], [ -57.480469, 4.915833 ], [ -58.007812, 4.915833 ], [ -58.007812, 4.390229 ], [ -58.183594, 4.390229 ], [ -58.183594, 4.039618 ], [ -58.007812, 4.039618 ], [ -58.007812, 3.688855 ], [ -57.832031, 3.688855 ], [ -57.832031, 3.337954 ], [ -57.304688, 3.337954 ], [ -57.304688, 2.635789 ], [ -57.128906, 2.635789 ], [ -57.128906, 2.460181 ], [ -56.953125, 2.460181 ], [ -56.953125, 2.108899 ], [ -56.777344, 2.108899 ], [ -56.777344, 1.933227 ], [ -57.304688, 1.933227 ], [ -57.304688, 2.108899 ], [ -57.480469, 2.108899 ], [ -57.480469, 1.933227 ], [ -57.656250, 1.933227 ], [ -57.656250, 1.757537 ], [ -57.832031, 1.757537 ], [ -57.832031, 1.581830 ], [ -58.535156, 1.581830 ], [ -58.535156, 1.406109 ], [ -59.238281, 1.406109 ], [ -59.238281, 1.581830 ], [ -59.589844, 1.581830 ], [ -59.589844, 1.757537 ], [ -59.765625, 1.757537 ], [ -59.765625, 2.284551 ], [ -59.941406, 2.284551 ], [ -59.941406, 2.635789 ], [ -60.117188, 2.635789 ], [ -60.117188, 3.162456 ], [ -59.941406, 3.162456 ], [ -59.941406, 3.688855 ], [ -59.765625, 3.688855 ], [ -59.765625, 3.864255 ], [ -59.589844, 3.864255 ], [ -59.589844, 4.214943 ], [ -59.765625, 4.214943 ], [ -59.765625, 4.565474 ], [ -60.117188, 4.565474 ], [ -60.117188, 5.090944 ], [ -60.292969, 5.090944 ], [ -60.292969, 5.266008 ], [ -60.996094, 5.266008 ], [ -60.996094, 5.441022 ], [ -61.171875, 5.441022 ], [ -61.171875, 5.615986 ], [ -61.347656, 5.615986 ], [ -61.347656, 5.790897 ], [ -61.523438, 5.790897 ], [ -61.523438, 5.965754 ], [ -61.347656, 5.965754 ], [ -61.347656, 6.140555 ], [ -61.171875, 6.140555 ], [ -61.171875, 6.839170 ], [ -60.820312, 6.839170 ], [ -60.820312, 7.013668 ], [ -60.292969, 7.013668 ], [ -60.292969, 7.188101 ], [ -60.468750, 7.188101 ], [ -60.468750, 7.362467 ], [ -60.644531, 7.362467 ], [ -60.644531, 7.885147 ], [ -60.468750, 7.885147 ], [ -60.468750, 8.059230 ], [ -60.117188, 8.059230 ], [ -60.117188, 8.233237 ], [ -59.414062, 8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.667969, 5.965754 ], [ -54.667969, 5.790897 ], [ -53.964844, 5.790897 ], [ -53.964844, 5.615986 ], [ -54.140625, 5.615986 ], [ -54.140625, 5.266008 ], [ -54.316406, 5.266008 ], [ -54.316406, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 4.565474 ], [ -54.316406, 4.565474 ], [ -54.316406, 4.039618 ], [ -54.140625, 4.039618 ], [ -54.140625, 3.688855 ], [ -53.964844, 3.688855 ], [ -53.964844, 3.337954 ], [ -54.140625, 3.337954 ], [ -54.140625, 2.986927 ], [ -54.316406, 2.986927 ], [ -54.316406, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.284551 ], [ -54.843750, 2.284551 ], [ -54.843750, 2.460181 ], [ -55.898438, 2.460181 ], [ -55.898438, 2.284551 ], [ -56.074219, 2.284551 ], [ -56.074219, 2.108899 ], [ -55.898438, 2.108899 ], [ -55.898438, 1.933227 ], [ -56.074219, 1.933227 ], [ -56.074219, 1.757537 ], [ -56.425781, 1.757537 ], [ -56.425781, 1.933227 ], [ -56.777344, 1.933227 ], [ -56.777344, 2.284551 ], [ -56.953125, 2.284551 ], [ -56.953125, 2.635789 ], [ -57.128906, 2.635789 ], [ -57.128906, 2.986927 ], [ -57.304688, 2.986927 ], [ -57.304688, 3.337954 ], [ -57.656250, 3.337954 ], [ -57.656250, 3.513421 ], [ -57.832031, 3.513421 ], [ -57.832031, 3.864255 ], [ -58.007812, 3.864255 ], [ -58.007812, 4.214943 ], [ -57.832031, 4.214943 ], [ -57.832031, 4.740675 ], [ -57.656250, 4.740675 ], [ -57.656250, 4.915833 ], [ -57.304688, 4.915833 ], [ -57.304688, 5.441022 ], [ -57.128906, 5.441022 ], [ -57.128906, 5.965754 ], [ -56.601562, 5.965754 ], [ -56.601562, 5.790897 ], [ -55.898438, 5.790897 ], [ -55.898438, 5.965754 ], [ -54.667969, 5.965754 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.019531, 6.140555 ], [ -55.019531, 5.965754 ], [ -54.316406, 5.965754 ], [ -54.316406, 5.790897 ], [ -53.964844, 5.790897 ], [ -53.964844, 5.615986 ], [ -54.140625, 5.615986 ], [ -54.140625, 5.266008 ], [ -54.316406, 5.266008 ], [ -54.316406, 4.915833 ], [ -54.492188, 4.915833 ], [ -54.492188, 4.039618 ], [ -54.316406, 4.039618 ], [ -54.316406, 3.688855 ], [ -54.140625, 3.688855 ], [ -54.140625, 3.513421 ], [ -54.316406, 3.513421 ], [ -54.316406, 2.635789 ], [ -54.492188, 2.635789 ], [ -54.492188, 2.460181 ], [ -55.019531, 2.460181 ], [ -55.019531, 2.635789 ], [ -55.371094, 2.635789 ], [ -55.371094, 2.460181 ], [ -56.074219, 2.460181 ], [ -56.074219, 1.933227 ], [ -56.777344, 1.933227 ], [ -56.777344, 2.108899 ], [ -56.953125, 2.108899 ], [ -56.953125, 2.460181 ], [ -57.128906, 2.460181 ], [ -57.128906, 2.635789 ], [ -57.304688, 2.635789 ], [ -57.304688, 3.337954 ], [ -57.832031, 3.337954 ], [ -57.832031, 3.688855 ], [ -58.007812, 3.688855 ], [ -58.007812, 4.039618 ], [ -58.183594, 4.039618 ], [ -58.183594, 4.390229 ], [ -58.007812, 4.390229 ], [ -58.007812, 4.915833 ], [ -57.480469, 4.915833 ], [ -57.480469, 5.090944 ], [ -57.304688, 5.090944 ], [ -57.304688, 6.140555 ], [ -57.128906, 6.140555 ], [ -57.128906, 5.965754 ], [ -56.425781, 5.965754 ], [ -56.425781, 5.790897 ], [ -55.898438, 5.790897 ], [ -55.898438, 5.965754 ], [ -55.371094, 5.965754 ], [ -55.371094, 6.140555 ], [ -55.019531, 6.140555 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.437500, 5.615986 ], [ -53.437500, 5.441022 ], [ -52.910156, 5.441022 ], [ -52.910156, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 5.090944 ], [ -52.558594, 5.090944 ], [ -52.558594, 4.915833 ], [ -52.207031, 4.915833 ], [ -52.207031, 4.740675 ], [ -52.031250, 4.740675 ], [ -52.031250, 4.565474 ], [ -51.855469, 4.565474 ], [ -51.855469, 4.390229 ], [ -51.679688, 4.390229 ], [ -51.679688, 4.039618 ], [ -51.855469, 4.039618 ], [ -51.855469, 3.688855 ], [ -52.031250, 3.688855 ], [ -52.031250, 3.337954 ], [ -52.207031, 3.337954 ], [ -52.207031, 2.986927 ], [ -52.382812, 2.986927 ], [ -52.382812, 2.635789 ], [ -52.558594, 2.635789 ], [ -52.558594, 2.284551 ], [ -52.734375, 2.284551 ], [ -52.734375, 2.108899 ], [ -53.613281, 2.108899 ], [ -53.613281, 2.284551 ], [ -53.964844, 2.284551 ], [ -53.964844, 2.108899 ], [ -54.492188, 2.108899 ], [ -54.492188, 2.460181 ], [ -54.316406, 2.460181 ], [ -54.316406, 2.986927 ], [ -54.140625, 2.986927 ], [ -54.140625, 3.337954 ], [ -53.964844, 3.337954 ], [ -53.964844, 3.688855 ], [ -54.140625, 3.688855 ], [ -54.140625, 4.039618 ], [ -54.316406, 4.039618 ], [ -54.316406, 4.565474 ], [ -54.492188, 4.565474 ], [ -54.492188, 4.915833 ], [ -54.316406, 4.915833 ], [ -54.316406, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 5.615986 ], [ -53.437500, 5.615986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.613281, 5.790897 ], [ -53.613281, 5.615986 ], [ -53.261719, 5.615986 ], [ -53.261719, 5.441022 ], [ -52.910156, 5.441022 ], [ -52.910156, 5.266008 ], [ -52.734375, 5.266008 ], [ -52.734375, 5.090944 ], [ -52.558594, 5.090944 ], [ -52.558594, 4.915833 ], [ -52.207031, 4.915833 ], [ -52.207031, 4.740675 ], [ -52.031250, 4.740675 ], [ -52.031250, 4.565474 ], [ -51.855469, 4.565474 ], [ -51.855469, 4.390229 ], [ -51.679688, 4.390229 ], [ -51.679688, 4.039618 ], [ -51.855469, 4.039618 ], [ -51.855469, 3.864255 ], [ -52.031250, 3.864255 ], [ -52.031250, 3.513421 ], [ -52.207031, 3.513421 ], [ -52.207031, 3.337954 ], [ -52.382812, 3.337954 ], [ -52.382812, 2.986927 ], [ -52.558594, 2.986927 ], [ -52.558594, 2.460181 ], [ -52.910156, 2.460181 ], [ -52.910156, 2.284551 ], [ -53.085938, 2.284551 ], [ -53.085938, 2.108899 ], [ -53.437500, 2.108899 ], [ -53.437500, 2.284551 ], [ -53.613281, 2.284551 ], [ -53.613281, 2.460181 ], [ -53.789062, 2.460181 ], [ -53.789062, 2.284551 ], [ -53.964844, 2.284551 ], [ -53.964844, 2.108899 ], [ -54.316406, 2.108899 ], [ -54.316406, 2.284551 ], [ -54.667969, 2.284551 ], [ -54.667969, 2.460181 ], [ -54.492188, 2.460181 ], [ -54.492188, 2.635789 ], [ -54.316406, 2.635789 ], [ -54.316406, 3.513421 ], [ -54.140625, 3.513421 ], [ -54.140625, 3.688855 ], [ -54.316406, 3.688855 ], [ -54.316406, 4.039618 ], [ -54.492188, 4.039618 ], [ -54.492188, 4.915833 ], [ -54.316406, 4.915833 ], [ -54.316406, 5.266008 ], [ -54.140625, 5.266008 ], [ -54.140625, 5.615986 ], [ -53.964844, 5.615986 ], [ -53.964844, 5.790897 ], [ -53.613281, 5.790897 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.574219, 1.230374 ], [ -78.574219, 1.054628 ], [ -78.222656, 1.054628 ], [ -78.222656, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.351560 ], [ -77.167969, 0.351560 ], [ -77.167969, 0.175781 ], [ -75.937500, 0.175781 ], [ -75.937500, 0.000000 ], [ -75.761719, 0.000000 ], [ -75.761719, -0.175781 ], [ -75.410156, -0.175781 ], [ -75.410156, -0.527336 ], [ -75.234375, -0.527336 ], [ -75.234375, -0.878872 ], [ -80.507812, -0.878872 ], [ -80.507812, -0.703107 ], [ -80.332031, -0.703107 ], [ -80.332031, -0.175781 ], [ -80.156250, -0.175781 ], [ -80.156250, 0.175781 ], [ -79.980469, 0.175781 ], [ -79.980469, 0.527336 ], [ -80.156250, 0.527336 ], [ -80.156250, 0.703107 ], [ -79.980469, 0.703107 ], [ -79.980469, 0.878872 ], [ -79.628906, 0.878872 ], [ -79.628906, 1.054628 ], [ -79.277344, 1.054628 ], [ -79.277344, 1.230374 ], [ -78.574219, 1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.574219, 1.230374 ], [ -78.574219, 1.054628 ], [ -78.222656, 1.054628 ], [ -78.222656, 0.878872 ], [ -77.695312, 0.878872 ], [ -77.695312, 0.703107 ], [ -77.519531, 0.703107 ], [ -77.519531, 0.527336 ], [ -77.167969, 0.527336 ], [ -77.167969, 0.351560 ], [ -76.113281, 0.351560 ], [ -76.113281, 0.175781 ], [ -75.761719, 0.175781 ], [ -75.761719, 0.000000 ], [ -75.410156, 0.000000 ], [ -75.410156, -0.878872 ], [ -80.683594, -0.878872 ], [ -80.683594, -0.527336 ], [ -80.507812, -0.527336 ], [ -80.507812, 0.000000 ], [ -80.332031, 0.000000 ], [ -80.332031, 0.351560 ], [ -80.156250, 0.351560 ], [ -80.156250, 0.878872 ], [ -79.804688, 0.878872 ], [ -79.804688, 1.054628 ], [ -79.277344, 1.054628 ], [ -79.277344, 1.230374 ], [ -78.574219, 1.230374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.882812, -0.175781 ], [ -74.882812, -0.351560 ], [ -74.531250, -0.351560 ], [ -74.531250, -0.527336 ], [ -74.355469, -0.527336 ], [ -74.355469, -0.703107 ], [ -74.179688, -0.703107 ], [ -74.179688, -0.878872 ], [ -75.234375, -0.878872 ], [ -75.234375, -0.527336 ], [ -75.410156, -0.527336 ], [ -75.410156, -0.175781 ], [ -74.882812, -0.175781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.234375, 0.000000 ], [ -75.234375, -0.175781 ], [ -75.058594, -0.175781 ], [ -75.058594, -0.351560 ], [ -74.707031, -0.351560 ], [ -74.707031, -0.527336 ], [ -74.531250, -0.527336 ], [ -74.531250, -0.703107 ], [ -74.355469, -0.703107 ], [ -74.355469, -0.878872 ], [ -75.410156, -0.878872 ], [ -75.410156, 0.000000 ], [ -75.234375, 0.000000 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.292969, 5.266008 ], [ -60.292969, 5.090944 ], [ -59.941406, 5.090944 ], [ -59.941406, 4.740675 ], [ -60.117188, 4.740675 ], [ -60.117188, 4.390229 ], [ -59.765625, 4.390229 ], [ -59.765625, 4.214943 ], [ -59.589844, 4.214943 ], [ -59.589844, 3.864255 ], [ -59.765625, 3.864255 ], [ -59.765625, 3.162456 ], [ -59.941406, 3.162456 ], [ -59.941406, 2.460181 ], [ -59.765625, 2.460181 ], [ -59.765625, 1.933227 ], [ -59.589844, 1.933227 ], [ -59.589844, 1.581830 ], [ -59.414062, 1.581830 ], [ -59.414062, 1.406109 ], [ -59.238281, 1.406109 ], [ -59.238281, 1.230374 ], [ -58.359375, 1.230374 ], [ -58.359375, 1.406109 ], [ -58.183594, 1.406109 ], [ -58.183594, 1.581830 ], [ -57.832031, 1.581830 ], [ -57.832031, 1.757537 ], [ -57.304688, 1.757537 ], [ -57.304688, 1.933227 ], [ -56.425781, 1.933227 ], [ -56.425781, 1.757537 ], [ -56.074219, 1.757537 ], [ -56.074219, 1.933227 ], [ -55.898438, 1.933227 ], [ -55.898438, 2.108899 ], [ -56.074219, 2.108899 ], [ -56.074219, 2.284551 ], [ -55.898438, 2.284551 ], [ -55.898438, 2.460181 ], [ -54.843750, 2.460181 ], [ -54.843750, 2.284551 ], [ -54.492188, 2.284551 ], [ -54.492188, 2.108899 ], [ -53.964844, 2.108899 ], [ -53.964844, 2.284551 ], [ -53.613281, 2.284551 ], [ -53.613281, 2.108899 ], [ -52.734375, 2.108899 ], [ -52.734375, 2.284551 ], [ -52.558594, 2.284551 ], [ -52.558594, 2.635789 ], [ -52.382812, 2.635789 ], [ -52.382812, 2.986927 ], [ -52.207031, 2.986927 ], [ -52.207031, 3.337954 ], [ -52.031250, 3.337954 ], [ -52.031250, 3.688855 ], [ -51.855469, 3.688855 ], [ -51.855469, 4.039618 ], [ -51.679688, 4.039618 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -51.152344, 3.864255 ], [ -51.152344, 3.337954 ], [ -50.976562, 3.337954 ], [ -50.976562, 2.986927 ], [ -50.800781, 2.986927 ], [ -50.800781, 2.460181 ], [ -50.625000, 2.460181 ], [ -50.625000, 2.108899 ], [ -50.449219, 2.108899 ], [ -50.449219, 1.933227 ], [ -50.273438, 1.933227 ], [ -50.273438, 1.757537 ], [ -49.921875, 1.757537 ], [ -49.921875, 0.878872 ], [ -50.097656, 0.878872 ], [ -50.097656, 0.703107 ], [ -50.273438, 0.703107 ], [ -50.273438, 0.351560 ], [ -50.449219, 0.351560 ], [ -50.449219, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.527336 ], [ -48.515625, -0.527336 ], [ -48.515625, -0.878872 ], [ -69.433594, -0.878872 ], [ -69.433594, -0.703107 ], [ -69.609375, -0.703107 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -69.960938, -0.351560 ], [ -69.960938, 0.527336 ], [ -69.609375, 0.527336 ], [ -69.609375, 0.703107 ], [ -69.433594, 0.703107 ], [ -69.433594, 0.527336 ], [ -69.257812, 0.527336 ], [ -69.257812, 1.054628 ], [ -69.785156, 1.054628 ], [ -69.785156, 1.757537 ], [ -67.675781, 1.757537 ], [ -67.675781, 1.933227 ], [ -67.324219, 1.933227 ], [ -67.324219, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.054628 ], [ -66.621094, 1.054628 ], [ -66.621094, 0.878872 ], [ -66.445312, 0.878872 ], [ -66.445312, 0.703107 ], [ -65.566406, 0.703107 ], [ -65.566406, 0.878872 ], [ -65.390625, 0.878872 ], [ -65.390625, 1.054628 ], [ -65.039062, 1.054628 ], [ -65.039062, 1.230374 ], [ -64.687500, 1.230374 ], [ -64.687500, 1.406109 ], [ -64.160156, 1.406109 ], [ -64.160156, 1.933227 ], [ -63.808594, 1.933227 ], [ -63.808594, 2.108899 ], [ -63.457031, 2.108899 ], [ -63.457031, 2.460181 ], [ -64.335938, 2.460181 ], [ -64.335938, 3.864255 ], [ -64.687500, 3.864255 ], [ -64.687500, 4.214943 ], [ -64.335938, 4.214943 ], [ -64.335938, 4.039618 ], [ -63.808594, 4.039618 ], [ -63.808594, 3.864255 ], [ -63.457031, 3.864255 ], [ -63.457031, 3.688855 ], [ -62.929688, 3.688855 ], [ -62.929688, 3.864255 ], [ -62.753906, 3.864255 ], [ -62.753906, 4.039618 ], [ -62.226562, 4.039618 ], [ -62.226562, 4.214943 ], [ -61.699219, 4.214943 ], [ -61.699219, 4.390229 ], [ -61.171875, 4.390229 ], [ -61.171875, 4.565474 ], [ -60.820312, 4.565474 ], [ -60.820312, 4.740675 ], [ -60.644531, 4.740675 ], [ -60.644531, 5.090944 ], [ -60.820312, 5.090944 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ], [ [ [ -47.988281, -0.878872 ], [ -47.988281, -0.703107 ], [ -47.812500, -0.703107 ], [ -47.812500, -0.527336 ], [ -47.636719, -0.527336 ], [ -47.636719, -0.703107 ], [ -47.109375, -0.703107 ], [ -47.109375, -0.878872 ], [ -47.988281, -0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.292969, 5.266008 ], [ -60.292969, 5.090944 ], [ -60.117188, 5.090944 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.565474 ], [ -59.765625, 4.214943 ], [ -59.589844, 4.214943 ], [ -59.589844, 3.864255 ], [ -59.765625, 3.864255 ], [ -59.765625, 3.688855 ], [ -59.941406, 3.688855 ], [ -59.941406, 3.162456 ], [ -60.117188, 3.162456 ], [ -60.117188, 2.635789 ], [ -59.941406, 2.635789 ], [ -59.941406, 2.284551 ], [ -59.765625, 2.284551 ], [ -59.765625, 1.757537 ], [ -59.589844, 1.757537 ], [ -59.589844, 1.581830 ], [ -59.238281, 1.581830 ], [ -59.238281, 1.406109 ], [ -58.535156, 1.406109 ], [ -58.535156, 1.581830 ], [ -57.832031, 1.581830 ], [ -57.832031, 1.757537 ], [ -57.656250, 1.757537 ], [ -57.656250, 1.933227 ], [ -57.480469, 1.933227 ], [ -57.480469, 2.108899 ], [ -57.304688, 2.108899 ], [ -57.304688, 1.933227 ], [ -56.074219, 1.933227 ], [ -56.074219, 2.460181 ], [ -55.371094, 2.460181 ], [ -55.371094, 2.635789 ], [ -55.019531, 2.635789 ], [ -55.019531, 2.460181 ], [ -54.667969, 2.460181 ], [ -54.667969, 2.284551 ], [ -54.316406, 2.284551 ], [ -54.316406, 2.108899 ], [ -53.964844, 2.108899 ], [ -53.964844, 2.284551 ], [ -53.789062, 2.284551 ], [ -53.789062, 2.460181 ], [ -53.613281, 2.460181 ], [ -53.613281, 2.284551 ], [ -53.437500, 2.284551 ], [ -53.437500, 2.108899 ], [ -53.085938, 2.108899 ], [ -53.085938, 2.284551 ], [ -52.910156, 2.284551 ], [ -52.910156, 2.460181 ], [ -52.558594, 2.460181 ], [ -52.558594, 2.986927 ], [ -52.382812, 2.986927 ], [ -52.382812, 3.337954 ], [ -52.207031, 3.337954 ], [ -52.207031, 3.513421 ], [ -52.031250, 3.513421 ], [ -52.031250, 3.864255 ], [ -51.855469, 3.864255 ], [ -51.855469, 4.039618 ], [ -51.679688, 4.039618 ], [ -51.679688, 4.214943 ], [ -51.328125, 4.214943 ], [ -51.328125, 3.864255 ], [ -51.152344, 3.864255 ], [ -51.152344, 3.337954 ], [ -50.976562, 3.337954 ], [ -50.976562, 2.811371 ], [ -50.800781, 2.811371 ], [ -50.800781, 2.108899 ], [ -50.625000, 2.108899 ], [ -50.625000, 1.933227 ], [ -50.449219, 1.933227 ], [ -50.449219, 1.757537 ], [ -50.097656, 1.757537 ], [ -50.097656, 0.878872 ], [ -50.273438, 0.878872 ], [ -50.273438, 0.703107 ], [ -50.449219, 0.703107 ], [ -50.449219, 0.527336 ], [ -50.625000, 0.527336 ], [ -50.625000, 0.351560 ], [ -50.800781, 0.351560 ], [ -50.800781, 0.175781 ], [ -50.625000, 0.175781 ], [ -50.625000, 0.000000 ], [ -49.746094, 0.000000 ], [ -49.746094, -0.175781 ], [ -48.691406, -0.175781 ], [ -48.691406, -0.878872 ], [ -69.609375, -0.878872 ], [ -69.609375, -0.527336 ], [ -69.785156, -0.527336 ], [ -69.785156, -0.351560 ], [ -70.136719, -0.351560 ], [ -70.136719, 0.703107 ], [ -69.785156, 0.703107 ], [ -69.785156, 0.878872 ], [ -69.609375, 0.878872 ], [ -69.609375, 0.703107 ], [ -69.257812, 0.703107 ], [ -69.257812, 1.054628 ], [ -69.785156, 1.054628 ], [ -69.785156, 1.230374 ], [ -69.960938, 1.230374 ], [ -69.960938, 1.757537 ], [ -67.851562, 1.757537 ], [ -67.851562, 1.933227 ], [ -67.500000, 1.933227 ], [ -67.500000, 1.757537 ], [ -67.324219, 1.757537 ], [ -67.324219, 1.406109 ], [ -67.148438, 1.406109 ], [ -67.148438, 1.230374 ], [ -66.796875, 1.230374 ], [ -66.796875, 1.054628 ], [ -66.621094, 1.054628 ], [ -66.621094, 0.878872 ], [ -65.566406, 0.878872 ], [ -65.566406, 1.054628 ], [ -65.390625, 1.054628 ], [ -65.390625, 1.230374 ], [ -64.863281, 1.230374 ], [ -64.863281, 1.406109 ], [ -64.335938, 1.406109 ], [ -64.335938, 1.757537 ], [ -64.160156, 1.757537 ], [ -64.160156, 1.933227 ], [ -63.808594, 1.933227 ], [ -63.808594, 2.108899 ], [ -63.457031, 2.108899 ], [ -63.457031, 2.460181 ], [ -63.984375, 2.460181 ], [ -63.984375, 2.635789 ], [ -64.335938, 2.635789 ], [ -64.335938, 2.811371 ], [ -64.511719, 2.811371 ], [ -64.511719, 3.864255 ], [ -64.687500, 3.864255 ], [ -64.687500, 4.039618 ], [ -64.863281, 4.039618 ], [ -64.863281, 4.214943 ], [ -64.511719, 4.214943 ], [ -64.511719, 4.039618 ], [ -63.632812, 4.039618 ], [ -63.632812, 3.864255 ], [ -62.929688, 3.864255 ], [ -62.929688, 4.039618 ], [ -62.402344, 4.039618 ], [ -62.402344, 4.214943 ], [ -61.875000, 4.214943 ], [ -61.875000, 4.390229 ], [ -61.171875, 4.390229 ], [ -61.171875, 4.565474 ], [ -60.820312, 4.565474 ], [ -60.820312, 4.740675 ], [ -60.644531, 4.740675 ], [ -60.644531, 5.090944 ], [ -60.820312, 5.090944 ], [ -60.820312, 5.266008 ], [ -60.292969, 5.266008 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -48.164062, -0.703107 ], [ -47.988281, -0.703107 ], [ -47.988281, -0.527336 ], [ -47.812500, -0.527336 ], [ -47.812500, -0.703107 ], [ -47.285156, -0.703107 ], [ -47.285156, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.167969, 62.512318 ], [ -77.167969, 62.431074 ], [ -76.640625, 62.431074 ], [ -76.640625, 62.349609 ], [ -76.113281, 62.349609 ], [ -76.113281, 62.267923 ], [ -75.410156, 62.267923 ], [ -75.410156, 62.186014 ], [ -74.531250, 62.186014 ], [ -74.531250, 62.267923 ], [ -74.179688, 62.267923 ], [ -74.179688, 62.349609 ], [ -73.652344, 62.349609 ], [ -73.652344, 62.267923 ], [ -73.300781, 62.267923 ], [ -73.300781, 62.186014 ], [ -73.125000, 62.186014 ], [ -73.125000, 62.103883 ], [ -72.949219, 62.103883 ], [ -72.949219, 62.021528 ], [ -72.773438, 62.021528 ], [ -72.773438, 61.938950 ], [ -72.597656, 61.938950 ], [ -72.597656, 61.856149 ], [ -72.421875, 61.856149 ], [ -72.421875, 61.773123 ], [ -72.246094, 61.773123 ], [ -72.246094, 61.689872 ], [ -72.070312, 61.689872 ], [ -72.070312, 61.606396 ], [ -71.894531, 61.606396 ], [ -71.894531, 61.522695 ], [ -71.718750, 61.522695 ], [ -71.718750, 61.354614 ], [ -71.542969, 61.354614 ], [ -71.542969, 61.185625 ], [ -71.367188, 61.185625 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 59.888937 ], [ -69.433594, 59.888937 ], [ -69.433594, 59.265881 ], [ -69.257812, 59.265881 ], [ -69.257812, 58.995311 ], [ -69.082031, 58.995311 ], [ -69.082031, 58.904646 ], [ -68.730469, 58.904646 ], [ -68.730469, 58.813742 ], [ -68.378906, 58.813742 ], [ -68.378906, 58.722599 ], [ -68.203125, 58.722599 ], [ -68.203125, 58.539595 ], [ -68.027344, 58.539595 ], [ -68.027344, 58.355630 ], [ -67.851562, 58.355630 ], [ -67.851562, 58.170702 ], [ -67.500000, 58.170702 ], [ -67.500000, 58.263287 ], [ -67.148438, 58.263287 ], [ -67.148438, 58.355630 ], [ -66.972656, 58.355630 ], [ -66.972656, 58.447733 ], [ -66.796875, 58.447733 ], [ -66.796875, 58.539595 ], [ -66.445312, 58.539595 ], [ -66.445312, 58.631217 ], [ -66.269531, 58.631217 ], [ -66.269531, 58.813742 ], [ -66.093750, 58.813742 ], [ -66.093750, 58.995311 ], [ -65.917969, 58.995311 ], [ -65.917969, 59.175928 ], [ -65.742188, 59.175928 ], [ -65.742188, 59.355596 ], [ -65.566406, 59.355596 ], [ -65.566406, 59.534318 ], [ -65.390625, 59.534318 ], [ -65.390625, 59.712097 ], [ -65.214844, 59.712097 ], [ -65.214844, 59.888937 ], [ -65.039062, 59.888937 ], [ -65.039062, 59.977005 ], [ -64.863281, 59.977005 ], [ -64.863281, 60.152442 ], [ -64.687500, 60.152442 ], [ -64.687500, 60.239811 ], [ -64.511719, 60.239811 ], [ -64.511719, 60.152442 ], [ -64.335938, 60.152442 ], [ -64.335938, 59.977005 ], [ -64.160156, 59.977005 ], [ -64.160156, 59.712097 ], [ -63.984375, 59.712097 ], [ -63.984375, 59.534318 ], [ -63.808594, 59.534318 ], [ -63.808594, 59.355596 ], [ -63.632812, 59.355596 ], [ -63.632812, 59.175928 ], [ -63.457031, 59.175928 ], [ -63.457031, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.813742 ], [ -63.105469, 58.813742 ], [ -63.105469, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.447733 ], [ -62.753906, 58.447733 ], [ -62.753906, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 58.077876 ], [ -62.402344, 58.077876 ], [ -62.402344, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.704147 ], [ -62.050781, 57.704147 ], [ -62.050781, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.326521 ], [ -61.699219, 57.326521 ], [ -61.699219, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.944974 ], [ -61.347656, 56.944974 ], [ -61.347656, 56.848972 ], [ -61.523438, 56.848972 ], [ -61.523438, 56.656226 ], [ -61.699219, 56.656226 ], [ -61.699219, 56.462490 ], [ -61.875000, 56.462490 ], [ -61.875000, 56.267761 ], [ -61.699219, 56.267761 ], [ -61.699219, 56.170023 ], [ -61.347656, 56.170023 ], [ -61.347656, 56.072035 ], [ -61.171875, 56.072035 ], [ -61.171875, 55.973798 ], [ -60.996094, 55.973798 ], [ -60.996094, 55.875311 ], [ -60.644531, 55.875311 ], [ -60.644531, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.677584 ], [ -60.292969, 55.677584 ], [ -60.292969, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.478853 ], [ -59.941406, 55.478853 ], [ -59.941406, 55.279115 ], [ -59.765625, 55.279115 ], [ -59.765625, 55.178868 ], [ -59.238281, 55.178868 ], [ -59.238281, 55.078367 ], [ -58.535156, 55.078367 ], [ -58.535156, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.876607 ], [ -57.832031, 54.876607 ], [ -57.832031, 54.775346 ], [ -57.480469, 54.775346 ], [ -57.480469, 54.673831 ], [ -57.304688, 54.673831 ], [ -57.304688, 54.367759 ], [ -57.128906, 54.367759 ], [ -57.128906, 53.956086 ], [ -56.953125, 53.956086 ], [ -56.953125, 53.748711 ], [ -56.601562, 53.748711 ], [ -56.601562, 53.644638 ], [ -56.074219, 53.644638 ], [ -56.074219, 53.540307 ], [ -55.898438, 53.540307 ], [ -55.898438, 53.330873 ], [ -55.722656, 53.330873 ], [ -55.722656, 52.052490 ], [ -55.898438, 52.052490 ], [ -55.898438, 51.944265 ], [ -56.074219, 51.944265 ], [ -56.074219, 51.835778 ], [ -56.250000, 51.835778 ], [ -56.250000, 51.727028 ], [ -56.425781, 51.727028 ], [ -56.425781, 51.618017 ], [ -56.601562, 51.618017 ], [ -56.601562, 51.508742 ], [ -56.953125, 51.508742 ], [ -56.953125, 51.399206 ], [ -57.304688, 51.399206 ], [ -57.304688, 51.289406 ], [ -57.832031, 51.289406 ], [ -57.832031, 51.179343 ], [ -58.359375, 51.179343 ], [ -58.359375, 51.069017 ], [ -58.710938, 51.069017 ], [ -58.710938, 50.958427 ], [ -58.886719, 50.958427 ], [ -58.886719, 50.847573 ], [ -59.062500, 50.847573 ], [ -59.062500, 50.736455 ], [ -59.238281, 50.736455 ], [ -59.238281, 50.625073 ], [ -59.589844, 50.625073 ], [ -59.589844, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.401515 ], [ -59.941406, 50.401515 ], [ -59.941406, 50.289339 ], [ -60.468750, 50.289339 ], [ -60.468750, 50.176898 ], [ -61.171875, 50.176898 ], [ -61.171875, 50.064192 ], [ -62.402344, 50.064192 ], [ -62.402344, 50.176898 ], [ -63.457031, 50.176898 ], [ -63.457031, 50.289339 ], [ -65.742188, 50.289339 ], [ -65.742188, 50.176898 ], [ -66.445312, 50.176898 ], [ -66.445312, 50.064192 ], [ -66.621094, 50.064192 ], [ -66.621094, 49.837982 ], [ -66.796875, 49.837982 ], [ -66.796875, 49.724479 ], [ -66.972656, 49.724479 ], [ -66.972656, 49.496675 ], [ -67.148438, 49.496675 ], [ -67.148438, 49.382373 ], [ -67.500000, 49.382373 ], [ -67.500000, 49.267805 ], [ -67.851562, 49.267805 ], [ -67.851562, 49.152970 ], [ -68.203125, 49.152970 ], [ -68.203125, 49.037868 ], [ -68.554688, 49.037868 ], [ -68.554688, 48.922499 ], [ -68.730469, 48.922499 ], [ -68.730469, 48.690960 ], [ -68.906250, 48.690960 ], [ -68.906250, 48.574790 ], [ -69.082031, 48.574790 ], [ -69.082031, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.224673 ], [ -69.433594, 48.224673 ], [ -69.433594, 48.107431 ], [ -69.609375, 48.107431 ], [ -69.609375, 47.989922 ], [ -69.785156, 47.989922 ], [ -69.785156, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.635784 ], [ -70.136719, 47.635784 ], [ -70.136719, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.398349 ], [ -70.488281, 47.398349 ], [ -70.488281, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 47.040182 ], [ -70.839844, 47.040182 ], [ -70.839844, 46.920255 ], [ -70.488281, 46.920255 ], [ -70.488281, 47.040182 ], [ -70.136719, 47.040182 ], [ -70.136719, 47.159840 ], [ -69.960938, 47.159840 ], [ -69.960938, 47.398349 ], [ -69.785156, 47.398349 ], [ -69.785156, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.635784 ], [ -69.433594, 47.635784 ], [ -69.433594, 47.754098 ], [ -69.257812, 47.754098 ], [ -69.257812, 47.872144 ], [ -69.082031, 47.872144 ], [ -69.082031, 48.107431 ], [ -68.906250, 48.107431 ], [ -68.906250, 48.224673 ], [ -68.730469, 48.224673 ], [ -68.730469, 48.341646 ], [ -68.554688, 48.341646 ], [ -68.554688, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 48.574790 ], [ -67.851562, 48.574790 ], [ -67.851562, 48.690960 ], [ -67.500000, 48.690960 ], [ -67.500000, 48.806863 ], [ -67.324219, 48.806863 ], [ -67.324219, 48.922499 ], [ -66.972656, 48.922499 ], [ -66.972656, 49.037868 ], [ -66.621094, 49.037868 ], [ -66.621094, 49.152970 ], [ -65.742188, 49.152970 ], [ -65.742188, 49.267805 ], [ -65.039062, 49.267805 ], [ -65.039062, 49.152970 ], [ -64.863281, 49.152970 ], [ -64.863281, 49.037868 ], [ -64.687500, 49.037868 ], [ -64.687500, 48.922499 ], [ -64.511719, 48.922499 ], [ -64.511719, 48.806863 ], [ -64.335938, 48.806863 ], [ -64.335938, 48.690960 ], [ -64.160156, 48.690960 ], [ -64.160156, 48.574790 ], [ -64.335938, 48.574790 ], [ -64.335938, 48.458352 ], [ -64.511719, 48.458352 ], [ -64.511719, 48.341646 ], [ -64.687500, 48.341646 ], [ -64.687500, 48.224673 ], [ -64.863281, 48.224673 ], [ -64.863281, 48.107431 ], [ -65.039062, 48.107431 ], [ -65.039062, 47.517201 ], [ -64.863281, 47.517201 ], [ -64.863281, 46.800059 ], [ -64.687500, 46.800059 ], [ -64.687500, 46.316584 ], [ -64.511719, 46.316584 ], [ -64.511719, 46.073231 ], [ -64.160156, 46.073231 ], [ -64.160156, 45.951150 ], [ -63.808594, 45.951150 ], [ -63.808594, 45.828799 ], [ -63.457031, 45.828799 ], [ -63.457031, 45.706179 ], [ -62.226562, 45.706179 ], [ -62.226562, 45.828799 ], [ -61.347656, 45.828799 ], [ -61.347656, 46.073231 ], [ -61.171875, 46.073231 ], [ -61.171875, 46.316584 ], [ -60.996094, 46.316584 ], [ -60.996094, 46.437857 ], [ -60.820312, 46.437857 ], [ -60.820312, 46.679594 ], [ -60.644531, 46.679594 ], [ -60.644531, 46.920255 ], [ -60.468750, 46.920255 ], [ -60.468750, 46.195042 ], [ -60.292969, 46.195042 ], [ -60.292969, 46.073231 ], [ -59.941406, 46.073231 ], [ -59.941406, 45.951150 ], [ -59.765625, 45.951150 ], [ -59.765625, 45.828799 ], [ -59.941406, 45.828799 ], [ -59.941406, 45.706179 ], [ -60.117188, 45.706179 ], [ -60.117188, 45.583290 ], [ -60.468750, 45.583290 ], [ -60.468750, 45.460131 ], [ -60.644531, 45.460131 ], [ -60.644531, 45.336702 ], [ -60.820312, 45.336702 ], [ -60.820312, 45.213004 ], [ -61.171875, 45.213004 ], [ -61.171875, 45.089036 ], [ -61.699219, 45.089036 ], [ -61.699219, 44.964798 ], [ -62.402344, 44.964798 ], [ -62.402344, 44.840291 ], [ -62.929688, 44.840291 ], [ -62.929688, 44.715514 ], [ -63.281250, 44.715514 ], [ -63.281250, 44.590467 ], [ -63.457031, 44.590467 ], [ -63.457031, 44.465151 ], [ -63.808594, 44.465151 ], [ -63.808594, 44.339565 ], [ -63.984375, 44.339565 ], [ -63.984375, 44.213710 ], [ -64.160156, 44.213710 ], [ -64.160156, 44.087585 ], [ -64.511719, 44.087585 ], [ -64.511719, 43.961191 ], [ -64.687500, 43.961191 ], [ -64.687500, 43.834527 ], [ -64.863281, 43.834527 ], [ -64.863281, 43.707594 ], [ -65.214844, 43.707594 ], [ -65.214844, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.465151 ], [ -65.917969, 44.465151 ], [ -65.917969, 44.590467 ], [ -65.742188, 44.590467 ], [ -65.742188, 44.715514 ], [ -65.390625, 44.715514 ], [ -65.390625, 44.840291 ], [ -65.214844, 44.840291 ], [ -65.214844, 44.964798 ], [ -65.039062, 44.964798 ], [ -65.039062, 45.089036 ], [ -64.687500, 45.089036 ], [ -64.687500, 45.213004 ], [ -64.511719, 45.213004 ], [ -64.511719, 45.336702 ], [ -65.214844, 45.336702 ], [ -65.214844, 45.213004 ], [ -66.445312, 45.213004 ], [ -66.445312, 45.089036 ], [ -67.324219, 45.089036 ], [ -67.324219, 45.213004 ], [ -67.500000, 45.213004 ], [ -67.500000, 45.460131 ], [ -67.675781, 45.460131 ], [ -67.675781, 45.583290 ], [ -67.851562, 45.583290 ], [ -67.851562, 47.040182 ], [ -68.027344, 47.040182 ], [ -68.027344, 47.279229 ], [ -68.554688, 47.279229 ], [ -68.554688, 47.159840 ], [ -69.082031, 47.159840 ], [ -69.082031, 47.279229 ], [ -69.433594, 47.279229 ], [ -69.433594, 47.040182 ], [ -69.609375, 47.040182 ], [ -69.609375, 46.920255 ], [ -69.785156, 46.920255 ], [ -69.785156, 46.679594 ], [ -69.960938, 46.679594 ], [ -69.960938, 46.437857 ], [ -70.136719, 46.437857 ], [ -70.136719, 46.073231 ], [ -70.312500, 46.073231 ], [ -70.312500, 45.828799 ], [ -70.488281, 45.828799 ], [ -70.488281, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.336702 ], [ -71.015625, 45.336702 ], [ -71.015625, 45.213004 ], [ -71.367188, 45.213004 ], [ -71.367188, 45.089036 ], [ -71.542969, 45.089036 ], [ -71.542969, 44.964798 ], [ -74.882812, 44.964798 ], [ -74.882812, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.715514 ], [ -75.410156, 44.715514 ], [ -75.410156, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.465151 ], [ -75.761719, 44.465151 ], [ -75.761719, 44.339565 ], [ -75.937500, 44.339565 ], [ -75.937500, 44.213710 ], [ -76.113281, 44.213710 ], [ -76.113281, 44.087585 ], [ -76.289062, 44.087585 ], [ -76.289062, 43.961191 ], [ -76.464844, 43.961191 ], [ -76.464844, 43.834527 ], [ -76.640625, 43.834527 ], [ -76.640625, 43.580391 ], [ -78.750000, 43.580391 ], [ -78.750000, 43.452919 ], [ -79.101562, 43.452919 ], [ -79.101562, 43.325178 ], [ -78.925781, 43.325178 ], [ -78.925781, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.682435 ], [ -79.453125, 42.682435 ], [ -79.453125, 42.553080 ], [ -79.980469, 42.553080 ], [ -79.980469, 42.423457 ], [ -80.507812, 42.423457 ], [ -80.507812, 42.293564 ], [ -80.859375, 42.293564 ], [ -80.859375, 42.163403 ], [ -81.210938, 42.163403 ], [ -81.210938, 42.032974 ], [ -81.562500, 42.032974 ], [ -81.562500, 41.902277 ], [ -81.914062, 41.902277 ], [ -81.914062, 41.771312 ], [ -82.265625, 41.771312 ], [ -82.265625, 41.640078 ], [ -82.968750, 41.640078 ], [ -82.968750, 41.902277 ], [ -83.144531, 41.902277 ], [ -83.144531, 42.163403 ], [ -82.968750, 42.163403 ], [ -82.968750, 42.423457 ], [ -82.792969, 42.423457 ], [ -82.792969, 42.682435 ], [ -82.617188, 42.682435 ], [ -82.617188, 42.811522 ], [ -82.441406, 42.811522 ], [ -82.441406, 43.068888 ], [ -82.265625, 43.068888 ], [ -82.265625, 43.325178 ], [ -82.089844, 43.325178 ], [ -82.089844, 43.961191 ], [ -82.265625, 43.961191 ], [ -82.265625, 44.590467 ], [ -82.441406, 44.590467 ], [ -82.441406, 45.089036 ], [ -82.617188, 45.089036 ], [ -82.617188, 45.336702 ], [ -82.792969, 45.336702 ], [ -82.792969, 45.460131 ], [ -83.144531, 45.460131 ], [ -83.144531, 45.583290 ], [ -83.320312, 45.583290 ], [ -83.320312, 45.706179 ], [ -83.671875, 45.706179 ], [ -83.671875, 45.828799 ], [ -83.496094, 45.828799 ], [ -83.496094, 45.951150 ], [ -83.671875, 45.951150 ], [ -83.671875, 46.073231 ], [ -83.847656, 46.073231 ], [ -83.847656, 46.195042 ], [ -84.023438, 46.195042 ], [ -84.023438, 46.437857 ], [ -84.550781, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.726562, 46.558860 ], [ -84.726562, 46.800059 ], [ -84.902344, 46.800059 ], [ -84.902344, 46.920255 ], [ -85.078125, 46.920255 ], [ -85.078125, 47.040182 ], [ -85.429688, 47.040182 ], [ -85.429688, 47.159840 ], [ -85.605469, 47.159840 ], [ -85.605469, 47.279229 ], [ -85.957031, 47.279229 ], [ -85.957031, 47.398349 ], [ -86.308594, 47.398349 ], [ -86.308594, 47.517201 ], [ -86.660156, 47.517201 ], [ -86.660156, 47.635784 ], [ -86.835938, 47.635784 ], [ -86.835938, 47.754098 ], [ -87.187500, 47.754098 ], [ -87.187500, 47.872144 ], [ -87.363281, 47.872144 ], [ -87.363281, 47.989922 ], [ -87.714844, 47.989922 ], [ -87.714844, 48.107431 ], [ -88.066406, 48.107431 ], [ -88.066406, 48.224673 ], [ -88.769531, 48.224673 ], [ -88.769531, 48.107431 ], [ -89.121094, 48.107431 ], [ -89.121094, 47.989922 ], [ -90.000000, 47.989922 ], [ -90.000000, 48.107431 ], [ -90.703125, 48.107431 ], [ -90.703125, 48.224673 ], [ -90.878906, 48.224673 ], [ -90.878906, 57.231503 ], [ -90.527344, 57.231503 ], [ -90.527344, 57.136239 ], [ -90.175781, 57.136239 ], [ -90.175781, 57.040730 ], [ -89.824219, 57.040730 ], [ -89.824219, 56.944974 ], [ -89.472656, 56.944974 ], [ -89.472656, 56.848972 ], [ -89.121094, 56.848972 ], [ -89.121094, 56.752723 ], [ -88.769531, 56.752723 ], [ -88.769531, 56.656226 ], [ -88.593750, 56.656226 ], [ -88.593750, 56.559482 ], [ -88.242188, 56.559482 ], [ -88.242188, 56.462490 ], [ -88.066406, 56.462490 ], [ -88.066406, 56.365250 ], [ -87.890625, 56.365250 ], [ -87.890625, 56.267761 ], [ -87.714844, 56.267761 ], [ -87.714844, 56.072035 ], [ -87.539062, 56.072035 ], [ -87.539062, 55.973798 ], [ -87.187500, 55.973798 ], [ -87.187500, 55.875311 ], [ -86.835938, 55.875311 ], [ -86.835938, 55.776573 ], [ -86.484375, 55.776573 ], [ -86.484375, 55.677584 ], [ -86.132812, 55.677584 ], [ -86.132812, 55.578345 ], [ -85.781250, 55.578345 ], [ -85.781250, 55.478853 ], [ -85.605469, 55.478853 ], [ -85.605469, 55.379110 ], [ -85.253906, 55.379110 ], [ -85.253906, 55.279115 ], [ -82.968750, 55.279115 ], [ -82.968750, 55.178868 ], [ -82.265625, 55.178868 ], [ -82.265625, 54.673831 ], [ -82.441406, 54.673831 ], [ -82.441406, 53.956086 ], [ -82.265625, 53.956086 ], [ -82.265625, 53.435719 ], [ -82.089844, 53.435719 ], [ -82.089844, 53.014783 ], [ -81.914062, 53.014783 ], [ -81.914062, 52.802761 ], [ -81.738281, 52.802761 ], [ -81.738281, 52.482780 ], [ -81.562500, 52.482780 ], [ -81.562500, 52.268157 ], [ -81.386719, 52.268157 ], [ -81.386719, 52.052490 ], [ -81.210938, 52.052490 ], [ -81.210938, 51.944265 ], [ -81.035156, 51.944265 ], [ -81.035156, 51.835778 ], [ -80.859375, 51.835778 ], [ -80.859375, 51.727028 ], [ -80.683594, 51.727028 ], [ -80.683594, 51.508742 ], [ -80.507812, 51.508742 ], [ -80.507812, 51.399206 ], [ -80.332031, 51.399206 ], [ -80.332031, 51.289406 ], [ -80.156250, 51.289406 ], [ -80.156250, 51.179343 ], [ -79.804688, 51.179343 ], [ -79.804688, 51.289406 ], [ -79.453125, 51.289406 ], [ -79.453125, 51.399206 ], [ -79.101562, 51.399206 ], [ -79.101562, 51.618017 ], [ -78.925781, 51.618017 ], [ -78.925781, 52.052490 ], [ -78.750000, 52.052490 ], [ -78.750000, 52.375599 ], [ -78.574219, 52.375599 ], [ -78.574219, 52.802761 ], [ -78.750000, 52.802761 ], [ -78.750000, 53.330873 ], [ -78.925781, 53.330873 ], [ -78.925781, 53.852527 ], [ -79.101562, 53.852527 ], [ -79.101562, 54.162434 ], [ -79.277344, 54.162434 ], [ -79.277344, 54.265224 ], [ -79.453125, 54.265224 ], [ -79.453125, 54.470038 ], [ -79.628906, 54.470038 ], [ -79.628906, 54.572062 ], [ -79.804688, 54.572062 ], [ -79.804688, 54.673831 ], [ -79.628906, 54.673831 ], [ -79.628906, 54.775346 ], [ -79.277344, 54.775346 ], [ -79.277344, 54.876607 ], [ -78.925781, 54.876607 ], [ -78.925781, 54.977614 ], [ -78.574219, 54.977614 ], [ -78.574219, 55.078367 ], [ -78.222656, 55.078367 ], [ -78.222656, 55.178868 ], [ -78.046875, 55.178868 ], [ -78.046875, 55.279115 ], [ -77.871094, 55.279115 ], [ -77.871094, 55.379110 ], [ -77.695312, 55.379110 ], [ -77.695312, 55.578345 ], [ -77.519531, 55.578345 ], [ -77.519531, 55.677584 ], [ -77.343750, 55.677584 ], [ -77.343750, 55.776573 ], [ -77.167969, 55.776573 ], [ -77.167969, 55.875311 ], [ -76.992188, 55.875311 ], [ -76.992188, 56.072035 ], [ -76.816406, 56.072035 ], [ -76.816406, 56.267761 ], [ -76.640625, 56.267761 ], [ -76.640625, 56.462490 ], [ -76.464844, 56.462490 ], [ -76.464844, 56.848972 ], [ -76.640625, 56.848972 ], [ -76.640625, 57.326521 ], [ -76.816406, 57.326521 ], [ -76.816406, 57.515823 ], [ -76.992188, 57.515823 ], [ -76.992188, 57.704147 ], [ -77.167969, 57.704147 ], [ -77.167969, 57.891497 ], [ -77.343750, 57.891497 ], [ -77.343750, 58.077876 ], [ -77.519531, 58.077876 ], [ -77.519531, 58.170702 ], [ -77.695312, 58.170702 ], [ -77.695312, 58.263287 ], [ -77.871094, 58.263287 ], [ -77.871094, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.539595 ], [ -78.222656, 58.539595 ], [ -78.222656, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.722599 ], [ -78.574219, 58.722599 ], [ -78.574219, 58.813742 ], [ -78.398438, 58.813742 ], [ -78.398438, 58.995311 ], [ -78.222656, 58.995311 ], [ -78.222656, 59.175928 ], [ -78.046875, 59.175928 ], [ -78.046875, 59.355596 ], [ -77.871094, 59.355596 ], [ -77.871094, 59.445075 ], [ -77.695312, 59.445075 ], [ -77.695312, 59.623325 ], [ -77.519531, 59.623325 ], [ -77.519531, 59.800634 ], [ -77.343750, 59.800634 ], [ -77.343750, 60.064840 ], [ -77.519531, 60.064840 ], [ -77.519531, 60.500525 ], [ -77.695312, 60.500525 ], [ -77.695312, 61.100789 ], [ -77.871094, 61.100789 ], [ -77.871094, 61.938950 ], [ -78.046875, 61.938950 ], [ -78.046875, 62.349609 ], [ -77.695312, 62.349609 ], [ -77.695312, 62.431074 ], [ -77.343750, 62.431074 ], [ -77.343750, 62.512318 ], [ -77.167969, 62.512318 ] ], [ [ -70.839844, 46.920255 ], [ -71.015625, 46.920255 ], [ -71.015625, 46.800059 ], [ -70.839844, 46.800059 ], [ -70.839844, 46.920255 ] ] ], [ [ [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.089364 ], [ -62.402344, 66.089364 ], [ -62.402344, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.874725 ], [ -62.753906, 65.874725 ], [ -62.753906, 65.730626 ], [ -62.929688, 65.730626 ], [ -62.929688, 65.585720 ], [ -63.105469, 65.585720 ], [ -63.105469, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.457031, 65.366837 ], [ -63.457031, 65.293468 ], [ -63.632812, 65.293468 ], [ -63.632812, 65.146115 ], [ -63.808594, 65.146115 ], [ -63.808594, 64.997939 ], [ -64.160156, 64.997939 ], [ -64.160156, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.146115 ], [ -64.511719, 65.146115 ], [ -64.511719, 65.219894 ], [ -64.863281, 65.219894 ], [ -64.863281, 65.293468 ], [ -65.039062, 65.293468 ], [ -65.039062, 65.366837 ], [ -65.214844, 65.366837 ], [ -65.214844, 65.440002 ], [ -65.390625, 65.440002 ], [ -65.390625, 65.585720 ], [ -65.566406, 65.585720 ], [ -65.566406, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -65.917969, 65.802776 ], [ -65.917969, 65.874725 ], [ -66.093750, 65.874725 ], [ -66.093750, 65.946472 ], [ -66.269531, 65.946472 ], [ -66.269531, 66.089364 ], [ -66.445312, 66.089364 ], [ -66.445312, 66.160511 ], [ -66.621094, 66.160511 ], [ -66.621094, 66.302205 ], [ -66.796875, 66.302205 ], [ -66.796875, 66.372755 ], [ -66.972656, 66.372755 ], [ -66.972656, 66.302205 ], [ -67.675781, 66.302205 ], [ -67.675781, 66.231457 ], [ -68.027344, 66.231457 ], [ -68.027344, 65.946472 ], [ -68.203125, 65.946472 ], [ -68.203125, 65.585720 ], [ -68.027344, 65.585720 ], [ -68.027344, 65.512963 ], [ -67.851562, 65.512963 ], [ -67.851562, 65.366837 ], [ -67.675781, 65.366837 ], [ -67.675781, 65.293468 ], [ -67.500000, 65.293468 ], [ -67.500000, 65.219894 ], [ -67.324219, 65.219894 ], [ -67.324219, 65.072130 ], [ -67.148438, 65.072130 ], [ -67.148438, 64.997939 ], [ -66.972656, 64.997939 ], [ -66.972656, 64.923542 ], [ -66.621094, 64.923542 ], [ -66.621094, 64.848937 ], [ -66.445312, 64.848937 ], [ -66.445312, 64.774125 ], [ -66.269531, 64.774125 ], [ -66.269531, 64.699105 ], [ -65.917969, 64.699105 ], [ -65.917969, 64.623877 ], [ -65.742188, 64.623877 ], [ -65.742188, 64.548440 ], [ -65.566406, 64.548440 ], [ -65.566406, 64.396938 ], [ -65.390625, 64.396938 ], [ -65.390625, 64.244595 ], [ -65.214844, 64.244595 ], [ -65.214844, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.704722 ], [ -64.863281, 63.704722 ], [ -64.863281, 63.470145 ], [ -64.687500, 63.470145 ], [ -64.687500, 63.154355 ], [ -64.863281, 63.154355 ], [ -64.863281, 62.835089 ], [ -65.039062, 62.835089 ], [ -65.039062, 62.674143 ], [ -65.390625, 62.674143 ], [ -65.390625, 62.754726 ], [ -65.742188, 62.754726 ], [ -65.742188, 62.835089 ], [ -66.093750, 62.835089 ], [ -66.093750, 62.915233 ], [ -66.445312, 62.915233 ], [ -66.445312, 62.995158 ], [ -66.621094, 62.995158 ], [ -66.621094, 63.074866 ], [ -66.972656, 63.074866 ], [ -66.972656, 63.154355 ], [ -67.148438, 63.154355 ], [ -67.148438, 63.233627 ], [ -67.324219, 63.233627 ], [ -67.324219, 63.312683 ], [ -67.675781, 63.312683 ], [ -67.675781, 63.391522 ], [ -67.851562, 63.391522 ], [ -67.851562, 63.470145 ], [ -68.027344, 63.470145 ], [ -68.027344, 63.548552 ], [ -68.203125, 63.548552 ], [ -68.203125, 63.626745 ], [ -68.554688, 63.626745 ], [ -68.554688, 63.548552 ], [ -68.378906, 63.548552 ], [ -68.378906, 63.470145 ], [ -68.203125, 63.470145 ], [ -68.203125, 63.391522 ], [ -68.027344, 63.391522 ], [ -68.027344, 63.233627 ], [ -67.851562, 63.233627 ], [ -67.851562, 63.154355 ], [ -67.675781, 63.154355 ], [ -67.675781, 63.074866 ], [ -67.500000, 63.074866 ], [ -67.500000, 62.915233 ], [ -67.324219, 62.915233 ], [ -67.324219, 62.835089 ], [ -67.148438, 62.835089 ], [ -67.148438, 62.754726 ], [ -66.972656, 62.754726 ], [ -66.972656, 62.593341 ], [ -66.796875, 62.593341 ], [ -66.796875, 62.512318 ], [ -66.621094, 62.512318 ], [ -66.621094, 62.431074 ], [ -66.445312, 62.431074 ], [ -66.445312, 62.267923 ], [ -66.269531, 62.267923 ], [ -66.269531, 62.103883 ], [ -66.093750, 62.103883 ], [ -66.093750, 61.938950 ], [ -66.445312, 61.938950 ], [ -66.445312, 62.021528 ], [ -66.972656, 62.021528 ], [ -66.972656, 62.103883 ], [ -67.675781, 62.103883 ], [ -67.675781, 62.186014 ], [ -68.203125, 62.186014 ], [ -68.203125, 62.267923 ], [ -68.730469, 62.267923 ], [ -68.730469, 62.349609 ], [ -69.082031, 62.349609 ], [ -69.082031, 62.431074 ], [ -69.433594, 62.431074 ], [ -69.433594, 62.512318 ], [ -69.785156, 62.512318 ], [ -69.785156, 62.593341 ], [ -70.136719, 62.593341 ], [ -70.136719, 62.674143 ], [ -70.312500, 62.674143 ], [ -70.312500, 62.754726 ], [ -70.664062, 62.754726 ], [ -70.664062, 62.835089 ], [ -71.015625, 62.835089 ], [ -71.015625, 62.915233 ], [ -71.191406, 62.915233 ], [ -71.191406, 62.995158 ], [ -71.367188, 62.995158 ], [ -71.367188, 63.074866 ], [ -71.542969, 63.074866 ], [ -71.542969, 63.154355 ], [ -71.894531, 63.154355 ], [ -71.894531, 63.233627 ], [ -72.070312, 63.233627 ], [ -72.070312, 63.312683 ], [ -72.246094, 63.312683 ], [ -72.246094, 63.470145 ], [ -72.070312, 63.470145 ], [ -72.070312, 63.626745 ], [ -71.894531, 63.626745 ], [ -71.894531, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.782486 ], [ -72.421875, 63.782486 ], [ -72.421875, 63.860036 ], [ -72.597656, 63.860036 ], [ -72.597656, 63.937372 ], [ -72.773438, 63.937372 ], [ -72.773438, 64.014496 ], [ -73.125000, 64.014496 ], [ -73.125000, 64.091408 ], [ -73.300781, 64.091408 ], [ -73.300781, 64.168107 ], [ -73.476562, 64.168107 ], [ -73.476562, 64.244595 ], [ -73.652344, 64.244595 ], [ -73.652344, 64.320872 ], [ -74.003906, 64.320872 ], [ -74.003906, 64.396938 ], [ -74.179688, 64.396938 ], [ -74.179688, 64.472794 ], [ -74.355469, 64.472794 ], [ -74.355469, 64.548440 ], [ -74.707031, 64.548440 ], [ -74.707031, 64.623877 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.396938 ], [ -75.410156, 64.396938 ], [ -75.410156, 64.320872 ], [ -76.816406, 64.320872 ], [ -76.816406, 64.244595 ], [ -77.871094, 64.244595 ], [ -77.871094, 64.320872 ], [ -78.046875, 64.320872 ], [ -78.046875, 64.396938 ], [ -78.398438, 64.396938 ], [ -78.398438, 64.472794 ], [ -78.574219, 64.472794 ], [ -78.574219, 64.623877 ], [ -78.398438, 64.623877 ], [ -78.398438, 64.774125 ], [ -78.222656, 64.774125 ], [ -78.222656, 64.997939 ], [ -78.046875, 64.997939 ], [ -78.046875, 65.146115 ], [ -77.871094, 65.146115 ], [ -77.871094, 65.293468 ], [ -75.410156, 65.293468 ], [ -75.410156, 65.366837 ], [ -74.355469, 65.366837 ], [ -74.355469, 65.440002 ], [ -74.003906, 65.440002 ], [ -74.003906, 65.512963 ], [ -74.179688, 65.512963 ], [ -74.179688, 65.658275 ], [ -74.355469, 65.658275 ], [ -74.355469, 65.874725 ], [ -74.179688, 65.874725 ], [ -74.179688, 66.160511 ], [ -74.003906, 66.160511 ], [ -74.003906, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.513260 ], [ -73.652344, 66.513260 ], [ -73.652344, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.791909 ], [ -73.300781, 66.791909 ], [ -73.300781, 66.861082 ], [ -61.875000, 66.861082 ] ] ], [ [ [ -63.808594, 46.920255 ], [ -63.808594, 46.679594 ], [ -63.632812, 46.679594 ], [ -63.632812, 46.558860 ], [ -63.457031, 46.558860 ], [ -63.457031, 46.437857 ], [ -62.050781, 46.437857 ], [ -62.050781, 46.316584 ], [ -62.226562, 46.316584 ], [ -62.226562, 46.195042 ], [ -62.402344, 46.195042 ], [ -62.402344, 46.073231 ], [ -62.578125, 46.073231 ], [ -62.578125, 45.951150 ], [ -63.105469, 45.951150 ], [ -63.105469, 46.073231 ], [ -63.457031, 46.073231 ], [ -63.457031, 46.195042 ], [ -63.808594, 46.195042 ], [ -63.808594, 46.316584 ], [ -64.160156, 46.316584 ], [ -64.160156, 46.558860 ], [ -64.335938, 46.558860 ], [ -64.335938, 46.679594 ], [ -64.160156, 46.679594 ], [ -64.160156, 46.920255 ], [ -63.808594, 46.920255 ] ] ], [ [ [ -55.371094, 51.618017 ], [ -55.371094, 51.399206 ], [ -55.546875, 51.399206 ], [ -55.546875, 51.179343 ], [ -55.722656, 51.179343 ], [ -55.722656, 50.958427 ], [ -55.898438, 50.958427 ], [ -55.898438, 50.736455 ], [ -56.074219, 50.736455 ], [ -56.074219, 50.625073 ], [ -56.250000, 50.625073 ], [ -56.250000, 50.401515 ], [ -56.425781, 50.401515 ], [ -56.425781, 50.176898 ], [ -56.601562, 50.176898 ], [ -56.601562, 49.951220 ], [ -56.250000, 49.951220 ], [ -56.250000, 50.064192 ], [ -55.722656, 50.064192 ], [ -55.722656, 49.951220 ], [ -55.546875, 49.951220 ], [ -55.546875, 49.837982 ], [ -55.722656, 49.837982 ], [ -55.722656, 49.610710 ], [ -55.898438, 49.610710 ], [ -55.898438, 49.496675 ], [ -55.546875, 49.496675 ], [ -55.546875, 49.382373 ], [ -55.195312, 49.382373 ], [ -55.195312, 49.267805 ], [ -54.843750, 49.267805 ], [ -54.843750, 49.382373 ], [ -54.667969, 49.382373 ], [ -54.667969, 49.496675 ], [ -54.140625, 49.496675 ], [ -54.140625, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.267805 ], [ -53.437500, 49.267805 ], [ -53.437500, 49.037868 ], [ -53.613281, 49.037868 ], [ -53.613281, 48.690960 ], [ -53.789062, 48.690960 ], [ -53.789062, 48.574790 ], [ -53.261719, 48.574790 ], [ -53.261719, 48.690960 ], [ -53.085938, 48.690960 ], [ -53.085938, 48.341646 ], [ -52.910156, 48.341646 ], [ -52.910156, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.279229 ], [ -52.910156, 47.279229 ], [ -52.910156, 46.800059 ], [ -53.085938, 46.800059 ], [ -53.085938, 46.558860 ], [ -53.789062, 46.558860 ], [ -53.789062, 46.679594 ], [ -54.140625, 46.679594 ], [ -54.140625, 47.159840 ], [ -53.964844, 47.159840 ], [ -53.964844, 47.635784 ], [ -54.492188, 47.635784 ], [ -54.492188, 47.517201 ], [ -54.667969, 47.517201 ], [ -54.667969, 47.398349 ], [ -54.843750, 47.398349 ], [ -54.843750, 47.159840 ], [ -55.019531, 47.159840 ], [ -55.019531, 47.040182 ], [ -55.195312, 47.040182 ], [ -55.195312, 46.920255 ], [ -55.898438, 46.920255 ], [ -55.898438, 47.040182 ], [ -55.722656, 47.040182 ], [ -55.722656, 47.159840 ], [ -55.546875, 47.159840 ], [ -55.546875, 47.279229 ], [ -55.371094, 47.279229 ], [ -55.371094, 47.398349 ], [ -55.722656, 47.398349 ], [ -55.722656, 47.517201 ], [ -56.074219, 47.517201 ], [ -56.074219, 47.635784 ], [ -56.601562, 47.635784 ], [ -56.601562, 47.517201 ], [ -58.359375, 47.517201 ], [ -58.359375, 47.635784 ], [ -59.238281, 47.635784 ], [ -59.238281, 47.754098 ], [ -59.414062, 47.754098 ], [ -59.414062, 47.872144 ], [ -59.238281, 47.872144 ], [ -59.238281, 47.989922 ], [ -58.886719, 47.989922 ], [ -58.886719, 48.107431 ], [ -58.710938, 48.107431 ], [ -58.710938, 48.224673 ], [ -58.886719, 48.224673 ], [ -58.886719, 48.341646 ], [ -59.062500, 48.341646 ], [ -59.062500, 48.458352 ], [ -59.238281, 48.458352 ], [ -59.238281, 48.574790 ], [ -59.062500, 48.574790 ], [ -59.062500, 48.690960 ], [ -58.886719, 48.690960 ], [ -58.886719, 48.806863 ], [ -58.710938, 48.806863 ], [ -58.710938, 48.922499 ], [ -58.535156, 48.922499 ], [ -58.535156, 49.037868 ], [ -58.359375, 49.037868 ], [ -58.359375, 49.267805 ], [ -58.183594, 49.267805 ], [ -58.183594, 49.496675 ], [ -58.007812, 49.496675 ], [ -58.007812, 49.724479 ], [ -57.832031, 49.724479 ], [ -57.832031, 50.064192 ], [ -57.656250, 50.064192 ], [ -57.656250, 50.289339 ], [ -57.480469, 50.289339 ], [ -57.480469, 50.513427 ], [ -57.304688, 50.513427 ], [ -57.304688, 50.736455 ], [ -57.128906, 50.736455 ], [ -57.128906, 50.958427 ], [ -56.953125, 50.958427 ], [ -56.953125, 51.179343 ], [ -56.777344, 51.179343 ], [ -56.777344, 51.289406 ], [ -56.601562, 51.289406 ], [ -56.601562, 51.399206 ], [ -56.250000, 51.399206 ], [ -56.250000, 51.508742 ], [ -55.898438, 51.508742 ], [ -55.898438, 51.618017 ], [ -55.371094, 51.618017 ] ], [ [ -56.601562, 49.951220 ], [ -56.777344, 49.951220 ], [ -56.777344, 49.837982 ], [ -56.601562, 49.837982 ], [ -56.601562, 49.951220 ] ] ], [ [ [ -82.089844, 66.791909 ], [ -82.265625, 66.791909 ], [ -82.265625, 66.722541 ], [ -82.441406, 66.722541 ], [ -82.441406, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -82.968750, 66.583217 ], [ -82.968750, 66.513260 ], [ -83.144531, 66.513260 ], [ -83.144531, 66.443107 ], [ -83.496094, 66.443107 ], [ -83.496094, 66.372755 ], [ -83.847656, 66.372755 ], [ -83.847656, 66.302205 ], [ -84.375000, 66.302205 ], [ -84.375000, 66.231457 ], [ -84.902344, 66.231457 ], [ -84.902344, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.443107 ], [ -85.957031, 66.443107 ], [ -85.957031, 66.160511 ], [ -86.132812, 66.160511 ], [ -86.132812, 65.946472 ], [ -86.308594, 65.946472 ], [ -86.308594, 65.802776 ], [ -86.484375, 65.802776 ], [ -86.484375, 65.658275 ], [ -86.660156, 65.658275 ], [ -86.660156, 65.440002 ], [ -86.835938, 65.440002 ], [ -86.835938, 65.293468 ], [ -87.011719, 65.293468 ], [ -87.011719, 65.072130 ], [ -87.187500, 65.072130 ], [ -87.187500, 64.848937 ], [ -87.363281, 64.848937 ], [ -87.363281, 64.699105 ], [ -87.539062, 64.699105 ], [ -87.539062, 64.548440 ], [ -87.714844, 64.548440 ], [ -87.714844, 64.472794 ], [ -87.890625, 64.472794 ], [ -87.890625, 64.320872 ], [ -88.066406, 64.320872 ], [ -88.066406, 64.244595 ], [ -88.242188, 64.244595 ], [ -88.242188, 64.091408 ], [ -89.121094, 64.091408 ], [ -89.121094, 64.014496 ], [ -90.000000, 64.014496 ], [ -90.000000, 63.937372 ], [ -90.175781, 63.937372 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.704722 ], [ -90.527344, 63.704722 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 62.915233 ], [ -90.878906, 62.915233 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -82.089844, 66.791909 ] ] ], [ [ [ -85.605469, 65.730626 ], [ -85.605469, 65.658275 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.440002 ], [ -84.902344, 65.440002 ], [ -84.902344, 65.219894 ], [ -84.726562, 65.219894 ], [ -84.726562, 65.293468 ], [ -84.375000, 65.293468 ], [ -84.375000, 65.219894 ], [ -84.023438, 65.219894 ], [ -84.023438, 65.146115 ], [ -83.847656, 65.146115 ], [ -83.847656, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.997939 ], [ -83.496094, 64.997939 ], [ -83.496094, 64.923542 ], [ -83.144531, 64.923542 ], [ -83.144531, 64.848937 ], [ -82.968750, 64.848937 ], [ -82.968750, 64.774125 ], [ -82.792969, 64.774125 ], [ -82.792969, 64.699105 ], [ -82.441406, 64.699105 ], [ -82.441406, 64.623877 ], [ -82.089844, 64.623877 ], [ -82.089844, 64.548440 ], [ -81.738281, 64.548440 ], [ -81.738281, 64.472794 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -81.035156, 64.014496 ], [ -81.035156, 64.091408 ], [ -80.859375, 64.091408 ], [ -80.859375, 64.014496 ], [ -80.683594, 64.014496 ], [ -80.683594, 63.937372 ], [ -80.507812, 63.937372 ], [ -80.507812, 63.782486 ], [ -80.332031, 63.782486 ], [ -80.332031, 63.704722 ], [ -80.156250, 63.704722 ], [ -80.156250, 63.626745 ], [ -80.332031, 63.626745 ], [ -80.332031, 63.548552 ], [ -80.683594, 63.548552 ], [ -80.683594, 63.470145 ], [ -80.859375, 63.470145 ], [ -80.859375, 63.391522 ], [ -81.386719, 63.391522 ], [ -81.386719, 63.470145 ], [ -81.914062, 63.470145 ], [ -81.914062, 63.548552 ], [ -82.441406, 63.548552 ], [ -82.441406, 63.626745 ], [ -82.617188, 63.626745 ], [ -82.617188, 63.704722 ], [ -82.792969, 63.704722 ], [ -82.792969, 63.860036 ], [ -82.968750, 63.860036 ], [ -82.968750, 64.014496 ], [ -83.320312, 64.014496 ], [ -83.320312, 63.860036 ], [ -83.496094, 63.860036 ], [ -83.496094, 63.782486 ], [ -83.671875, 63.782486 ], [ -83.671875, 63.704722 ], [ -83.847656, 63.704722 ], [ -83.847656, 63.548552 ], [ -84.023438, 63.548552 ], [ -84.023438, 63.470145 ], [ -84.375000, 63.470145 ], [ -84.375000, 63.391522 ], [ -84.550781, 63.391522 ], [ -84.550781, 63.312683 ], [ -84.902344, 63.312683 ], [ -84.902344, 63.233627 ], [ -85.078125, 63.233627 ], [ -85.078125, 63.154355 ], [ -85.429688, 63.154355 ], [ -85.429688, 63.074866 ], [ -85.605469, 63.074866 ], [ -85.605469, 63.312683 ], [ -85.781250, 63.312683 ], [ -85.781250, 63.626745 ], [ -86.308594, 63.626745 ], [ -86.308594, 63.548552 ], [ -87.011719, 63.548552 ], [ -87.011719, 63.626745 ], [ -86.835938, 63.626745 ], [ -86.835938, 63.782486 ], [ -86.660156, 63.782486 ], [ -86.660156, 63.860036 ], [ -86.484375, 63.860036 ], [ -86.484375, 63.937372 ], [ -86.308594, 63.937372 ], [ -86.308594, 65.072130 ], [ -86.132812, 65.072130 ], [ -86.132812, 65.512963 ], [ -85.957031, 65.512963 ], [ -85.957031, 65.730626 ], [ -85.605469, 65.730626 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.593341 ], [ -82.089844, 62.593341 ], [ -82.089844, 62.512318 ], [ -82.265625, 62.512318 ], [ -82.265625, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.349609 ], [ -82.792969, 62.349609 ], [ -82.792969, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.186014 ], [ -83.847656, 62.186014 ], [ -83.847656, 62.267923 ], [ -84.023438, 62.267923 ], [ -84.023438, 62.431074 ], [ -83.847656, 62.431074 ], [ -83.847656, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.674143 ], [ -83.496094, 62.674143 ], [ -83.496094, 62.835089 ], [ -83.320312, 62.835089 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -63.984375, 49.951220 ], [ -63.984375, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 49.724479 ], [ -62.929688, 49.724479 ], [ -62.929688, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.496675 ], [ -62.402344, 49.496675 ], [ -62.402344, 49.382373 ], [ -62.050781, 49.382373 ], [ -62.050781, 49.267805 ], [ -61.875000, 49.267805 ], [ -61.875000, 49.037868 ], [ -62.578125, 49.037868 ], [ -62.578125, 49.152970 ], [ -63.105469, 49.152970 ], [ -63.105469, 49.267805 ], [ -63.457031, 49.267805 ], [ -63.457031, 49.382373 ], [ -63.808594, 49.382373 ], [ -63.808594, 49.496675 ], [ -63.984375, 49.496675 ], [ -63.984375, 49.610710 ], [ -64.335938, 49.610710 ], [ -64.335938, 49.724479 ], [ -64.511719, 49.724479 ], [ -64.511719, 49.837982 ], [ -64.160156, 49.837982 ], [ -64.160156, 49.951220 ], [ -63.984375, 49.951220 ] ] ], [ [ [ -79.453125, 62.349609 ], [ -79.453125, 62.267923 ], [ -79.277344, 62.267923 ], [ -79.277344, 62.021528 ], [ -79.453125, 62.021528 ], [ -79.453125, 61.689872 ], [ -79.628906, 61.689872 ], [ -79.628906, 61.606396 ], [ -79.980469, 61.606396 ], [ -79.980469, 61.689872 ], [ -80.156250, 61.689872 ], [ -80.156250, 61.856149 ], [ -80.332031, 61.856149 ], [ -80.332031, 62.103883 ], [ -80.156250, 62.103883 ], [ -80.156250, 62.267923 ], [ -79.980469, 62.267923 ], [ -79.980469, 62.349609 ], [ -79.453125, 62.349609 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.343750, 62.593341 ], [ -77.343750, 62.512318 ], [ -76.816406, 62.512318 ], [ -76.816406, 62.431074 ], [ -76.113281, 62.431074 ], [ -76.113281, 62.349609 ], [ -75.585938, 62.349609 ], [ -75.585938, 62.267923 ], [ -75.058594, 62.267923 ], [ -75.058594, 62.186014 ], [ -74.531250, 62.186014 ], [ -74.531250, 62.267923 ], [ -74.355469, 62.267923 ], [ -74.355469, 62.349609 ], [ -74.179688, 62.349609 ], [ -74.179688, 62.431074 ], [ -73.828125, 62.431074 ], [ -73.828125, 62.349609 ], [ -73.652344, 62.349609 ], [ -73.652344, 62.267923 ], [ -73.300781, 62.267923 ], [ -73.300781, 62.186014 ], [ -73.125000, 62.186014 ], [ -73.125000, 62.103883 ], [ -72.949219, 62.103883 ], [ -72.949219, 62.021528 ], [ -72.773438, 62.021528 ], [ -72.773438, 61.938950 ], [ -72.597656, 61.938950 ], [ -72.597656, 61.856149 ], [ -72.246094, 61.856149 ], [ -72.246094, 61.773123 ], [ -72.070312, 61.773123 ], [ -72.070312, 61.689872 ], [ -71.894531, 61.689872 ], [ -71.894531, 61.606396 ], [ -71.718750, 61.606396 ], [ -71.718750, 61.354614 ], [ -71.542969, 61.354614 ], [ -71.542969, 61.185625 ], [ -70.664062, 61.185625 ], [ -70.664062, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.609375, 60.673179 ], [ -69.785156, 60.673179 ], [ -69.785156, 59.888937 ], [ -69.609375, 59.888937 ], [ -69.609375, 59.265881 ], [ -69.433594, 59.265881 ], [ -69.433594, 58.995311 ], [ -69.257812, 58.995311 ], [ -69.257812, 58.904646 ], [ -68.730469, 58.904646 ], [ -68.730469, 58.813742 ], [ -68.378906, 58.813742 ], [ -68.378906, 58.722599 ], [ -68.203125, 58.722599 ], [ -68.203125, 58.539595 ], [ -68.027344, 58.539595 ], [ -68.027344, 58.447733 ], [ -67.851562, 58.447733 ], [ -67.851562, 58.263287 ], [ -67.500000, 58.263287 ], [ -67.500000, 58.355630 ], [ -67.148438, 58.355630 ], [ -67.148438, 58.447733 ], [ -66.972656, 58.447733 ], [ -66.972656, 58.539595 ], [ -66.796875, 58.539595 ], [ -66.796875, 58.631217 ], [ -66.445312, 58.631217 ], [ -66.445312, 58.722599 ], [ -66.269531, 58.722599 ], [ -66.269531, 58.904646 ], [ -66.093750, 58.904646 ], [ -66.093750, 59.085739 ], [ -65.917969, 59.085739 ], [ -65.917969, 59.355596 ], [ -65.742188, 59.355596 ], [ -65.742188, 59.534318 ], [ -65.566406, 59.534318 ], [ -65.566406, 59.712097 ], [ -65.390625, 59.712097 ], [ -65.390625, 59.888937 ], [ -65.214844, 59.888937 ], [ -65.214844, 60.064840 ], [ -65.039062, 60.064840 ], [ -65.039062, 60.152442 ], [ -64.863281, 60.152442 ], [ -64.863281, 60.326948 ], [ -64.687500, 60.326948 ], [ -64.687500, 60.239811 ], [ -64.511719, 60.239811 ], [ -64.511719, 60.064840 ], [ -64.335938, 60.064840 ], [ -64.335938, 59.888937 ], [ -64.160156, 59.888937 ], [ -64.160156, 59.712097 ], [ -63.984375, 59.712097 ], [ -63.984375, 59.534318 ], [ -63.808594, 59.534318 ], [ -63.808594, 59.355596 ], [ -63.632812, 59.355596 ], [ -63.632812, 59.175928 ], [ -63.457031, 59.175928 ], [ -63.457031, 58.995311 ], [ -63.281250, 58.995311 ], [ -63.281250, 58.813742 ], [ -63.105469, 58.813742 ], [ -63.105469, 58.631217 ], [ -62.929688, 58.631217 ], [ -62.929688, 58.447733 ], [ -62.753906, 58.447733 ], [ -62.753906, 58.263287 ], [ -62.578125, 58.263287 ], [ -62.578125, 58.077876 ], [ -62.402344, 58.077876 ], [ -62.402344, 57.891497 ], [ -62.226562, 57.891497 ], [ -62.226562, 57.704147 ], [ -62.050781, 57.704147 ], [ -62.050781, 57.515823 ], [ -61.875000, 57.515823 ], [ -61.875000, 57.326521 ], [ -61.699219, 57.326521 ], [ -61.699219, 57.136239 ], [ -61.523438, 57.136239 ], [ -61.523438, 56.848972 ], [ -61.699219, 56.848972 ], [ -61.699219, 56.462490 ], [ -61.875000, 56.462490 ], [ -61.875000, 56.267761 ], [ -61.699219, 56.267761 ], [ -61.699219, 56.170023 ], [ -61.347656, 56.170023 ], [ -61.347656, 56.072035 ], [ -61.171875, 56.072035 ], [ -61.171875, 55.973798 ], [ -60.996094, 55.973798 ], [ -60.996094, 55.875311 ], [ -60.644531, 55.875311 ], [ -60.644531, 55.776573 ], [ -60.468750, 55.776573 ], [ -60.468750, 55.677584 ], [ -60.292969, 55.677584 ], [ -60.292969, 55.578345 ], [ -60.117188, 55.578345 ], [ -60.117188, 55.478853 ], [ -59.941406, 55.478853 ], [ -59.941406, 55.379110 ], [ -59.765625, 55.379110 ], [ -59.765625, 55.279115 ], [ -59.414062, 55.279115 ], [ -59.414062, 55.178868 ], [ -58.886719, 55.178868 ], [ -58.886719, 55.078367 ], [ -58.359375, 55.078367 ], [ -58.359375, 54.977614 ], [ -58.007812, 54.977614 ], [ -58.007812, 54.876607 ], [ -57.832031, 54.876607 ], [ -57.832031, 54.775346 ], [ -57.656250, 54.775346 ], [ -57.656250, 54.673831 ], [ -57.480469, 54.673831 ], [ -57.480469, 54.470038 ], [ -57.304688, 54.470038 ], [ -57.304688, 54.265224 ], [ -57.128906, 54.265224 ], [ -57.128906, 53.956086 ], [ -56.953125, 53.956086 ], [ -56.953125, 53.852527 ], [ -56.777344, 53.852527 ], [ -56.777344, 53.748711 ], [ -56.250000, 53.748711 ], [ -56.250000, 53.644638 ], [ -56.074219, 53.644638 ], [ -56.074219, 53.435719 ], [ -55.898438, 53.435719 ], [ -55.898438, 52.696361 ], [ -55.722656, 52.696361 ], [ -55.722656, 52.052490 ], [ -55.898438, 52.052490 ], [ -55.898438, 51.944265 ], [ -56.250000, 51.944265 ], [ -56.250000, 51.835778 ], [ -56.425781, 51.835778 ], [ -56.425781, 51.727028 ], [ -56.601562, 51.727028 ], [ -56.601562, 51.618017 ], [ -56.953125, 51.618017 ], [ -56.953125, 51.508742 ], [ -57.304688, 51.508742 ], [ -57.304688, 51.399206 ], [ -57.656250, 51.399206 ], [ -57.656250, 51.289406 ], [ -58.183594, 51.289406 ], [ -58.183594, 51.179343 ], [ -58.535156, 51.179343 ], [ -58.535156, 51.069017 ], [ -58.886719, 51.069017 ], [ -58.886719, 50.958427 ], [ -59.062500, 50.958427 ], [ -59.062500, 50.847573 ], [ -59.238281, 50.847573 ], [ -59.238281, 50.736455 ], [ -59.414062, 50.736455 ], [ -59.414062, 50.625073 ], [ -59.589844, 50.625073 ], [ -59.589844, 50.513427 ], [ -59.765625, 50.513427 ], [ -59.765625, 50.401515 ], [ -59.941406, 50.401515 ], [ -59.941406, 50.289339 ], [ -60.820312, 50.289339 ], [ -60.820312, 50.176898 ], [ -63.105469, 50.176898 ], [ -63.105469, 50.289339 ], [ -64.863281, 50.289339 ], [ -64.863281, 50.401515 ], [ -65.742188, 50.401515 ], [ -65.742188, 50.289339 ], [ -66.445312, 50.289339 ], [ -66.445312, 50.176898 ], [ -66.621094, 50.176898 ], [ -66.621094, 50.064192 ], [ -66.796875, 50.064192 ], [ -66.796875, 49.951220 ], [ -66.972656, 49.951220 ], [ -66.972656, 49.724479 ], [ -67.148438, 49.724479 ], [ -67.148438, 49.610710 ], [ -67.324219, 49.610710 ], [ -67.324219, 49.496675 ], [ -67.675781, 49.496675 ], [ -67.675781, 49.382373 ], [ -68.027344, 49.382373 ], [ -68.027344, 49.267805 ], [ -68.378906, 49.267805 ], [ -68.378906, 49.152970 ], [ -68.554688, 49.152970 ], [ -68.554688, 49.037868 ], [ -68.730469, 49.037868 ], [ -68.730469, 48.806863 ], [ -68.906250, 48.806863 ], [ -68.906250, 48.690960 ], [ -69.082031, 48.690960 ], [ -69.082031, 48.458352 ], [ -69.257812, 48.458352 ], [ -69.257812, 48.341646 ], [ -69.433594, 48.341646 ], [ -69.433594, 48.107431 ], [ -69.609375, 48.107431 ], [ -69.609375, 47.989922 ], [ -69.785156, 47.989922 ], [ -69.785156, 47.754098 ], [ -69.960938, 47.754098 ], [ -69.960938, 47.635784 ], [ -70.136719, 47.635784 ], [ -70.136719, 47.517201 ], [ -70.312500, 47.517201 ], [ -70.312500, 47.398349 ], [ -70.488281, 47.398349 ], [ -70.488281, 47.279229 ], [ -70.664062, 47.279229 ], [ -70.664062, 47.159840 ], [ -70.839844, 47.159840 ], [ -70.839844, 47.040182 ], [ -71.015625, 47.040182 ], [ -71.015625, 46.920255 ], [ -70.664062, 46.920255 ], [ -70.664062, 47.040182 ], [ -70.136719, 47.040182 ], [ -70.136719, 47.159840 ], [ -69.960938, 47.159840 ], [ -69.960938, 47.398349 ], [ -69.785156, 47.398349 ], [ -69.785156, 47.517201 ], [ -69.609375, 47.517201 ], [ -69.609375, 47.635784 ], [ -69.433594, 47.635784 ], [ -69.433594, 47.754098 ], [ -69.257812, 47.754098 ], [ -69.257812, 47.872144 ], [ -69.082031, 47.872144 ], [ -69.082031, 48.107431 ], [ -68.906250, 48.107431 ], [ -68.906250, 48.224673 ], [ -68.730469, 48.224673 ], [ -68.730469, 48.341646 ], [ -68.554688, 48.341646 ], [ -68.554688, 48.458352 ], [ -68.203125, 48.458352 ], [ -68.203125, 48.574790 ], [ -67.851562, 48.574790 ], [ -67.851562, 48.690960 ], [ -67.500000, 48.690960 ], [ -67.500000, 48.806863 ], [ -67.324219, 48.806863 ], [ -67.324219, 48.922499 ], [ -66.972656, 48.922499 ], [ -66.972656, 49.037868 ], [ -66.621094, 49.037868 ], [ -66.621094, 49.152970 ], [ -65.742188, 49.152970 ], [ -65.742188, 49.267805 ], [ -65.214844, 49.267805 ], [ -65.214844, 49.152970 ], [ -65.039062, 49.152970 ], [ -65.039062, 49.037868 ], [ -64.687500, 49.037868 ], [ -64.687500, 48.922499 ], [ -64.511719, 48.922499 ], [ -64.511719, 48.806863 ], [ -64.335938, 48.806863 ], [ -64.335938, 48.690960 ], [ -64.511719, 48.690960 ], [ -64.511719, 48.574790 ], [ -64.687500, 48.574790 ], [ -64.687500, 48.458352 ], [ -64.863281, 48.458352 ], [ -64.863281, 48.224673 ], [ -65.039062, 48.224673 ], [ -65.039062, 48.107431 ], [ -65.214844, 48.107431 ], [ -65.214844, 47.754098 ], [ -65.039062, 47.754098 ], [ -65.039062, 47.279229 ], [ -64.863281, 47.279229 ], [ -64.863281, 46.800059 ], [ -64.687500, 46.800059 ], [ -64.687500, 46.437857 ], [ -64.511719, 46.437857 ], [ -64.511719, 46.195042 ], [ -64.160156, 46.195042 ], [ -64.160156, 46.073231 ], [ -63.808594, 46.073231 ], [ -63.808594, 45.951150 ], [ -63.457031, 45.951150 ], [ -63.457031, 45.828799 ], [ -62.226562, 45.828799 ], [ -62.226562, 45.951150 ], [ -61.347656, 45.951150 ], [ -61.347656, 46.195042 ], [ -61.171875, 46.195042 ], [ -61.171875, 46.437857 ], [ -60.996094, 46.437857 ], [ -60.996094, 46.679594 ], [ -60.820312, 46.679594 ], [ -60.820312, 46.920255 ], [ -60.644531, 46.920255 ], [ -60.644531, 46.679594 ], [ -60.468750, 46.679594 ], [ -60.468750, 46.195042 ], [ -60.292969, 46.195042 ], [ -60.292969, 46.073231 ], [ -60.117188, 46.073231 ], [ -60.117188, 45.951150 ], [ -59.941406, 45.951150 ], [ -59.941406, 45.828799 ], [ -60.292969, 45.828799 ], [ -60.292969, 45.706179 ], [ -60.468750, 45.706179 ], [ -60.468750, 45.583290 ], [ -60.644531, 45.583290 ], [ -60.644531, 45.460131 ], [ -60.996094, 45.460131 ], [ -60.996094, 45.336702 ], [ -61.347656, 45.336702 ], [ -61.347656, 45.213004 ], [ -61.699219, 45.213004 ], [ -61.699219, 45.089036 ], [ -62.050781, 45.089036 ], [ -62.050781, 44.964798 ], [ -62.578125, 44.964798 ], [ -62.578125, 44.840291 ], [ -62.929688, 44.840291 ], [ -62.929688, 44.715514 ], [ -63.281250, 44.715514 ], [ -63.281250, 44.590467 ], [ -63.632812, 44.590467 ], [ -63.632812, 44.465151 ], [ -63.984375, 44.465151 ], [ -63.984375, 44.339565 ], [ -64.335938, 44.339565 ], [ -64.335938, 44.213710 ], [ -64.511719, 44.213710 ], [ -64.511719, 44.087585 ], [ -64.687500, 44.087585 ], [ -64.687500, 43.961191 ], [ -64.863281, 43.961191 ], [ -64.863281, 43.834527 ], [ -65.039062, 43.834527 ], [ -65.039062, 43.707594 ], [ -65.214844, 43.707594 ], [ -65.214844, 43.580391 ], [ -65.917969, 43.580391 ], [ -65.917969, 43.707594 ], [ -66.269531, 43.707594 ], [ -66.269531, 44.465151 ], [ -66.093750, 44.465151 ], [ -66.093750, 44.590467 ], [ -65.742188, 44.590467 ], [ -65.742188, 44.715514 ], [ -65.566406, 44.715514 ], [ -65.566406, 44.840291 ], [ -65.214844, 44.840291 ], [ -65.214844, 44.964798 ], [ -65.039062, 44.964798 ], [ -65.039062, 45.089036 ], [ -64.863281, 45.089036 ], [ -64.863281, 45.213004 ], [ -64.511719, 45.213004 ], [ -64.511719, 45.336702 ], [ -66.445312, 45.336702 ], [ -66.445312, 45.213004 ], [ -67.324219, 45.213004 ], [ -67.324219, 45.336702 ], [ -67.500000, 45.336702 ], [ -67.500000, 45.460131 ], [ -67.675781, 45.460131 ], [ -67.675781, 45.583290 ], [ -67.851562, 45.583290 ], [ -67.851562, 47.159840 ], [ -68.027344, 47.159840 ], [ -68.027344, 47.279229 ], [ -68.378906, 47.279229 ], [ -68.378906, 47.398349 ], [ -68.554688, 47.398349 ], [ -68.554688, 47.279229 ], [ -69.082031, 47.279229 ], [ -69.082031, 47.398349 ], [ -69.433594, 47.398349 ], [ -69.433594, 47.279229 ], [ -69.609375, 47.279229 ], [ -69.609375, 47.159840 ], [ -69.785156, 47.159840 ], [ -69.785156, 46.920255 ], [ -69.960938, 46.920255 ], [ -69.960938, 46.800059 ], [ -70.136719, 46.800059 ], [ -70.136719, 46.316584 ], [ -70.312500, 46.316584 ], [ -70.312500, 45.828799 ], [ -70.488281, 45.828799 ], [ -70.488281, 45.583290 ], [ -70.664062, 45.583290 ], [ -70.664062, 45.460131 ], [ -70.839844, 45.460131 ], [ -70.839844, 45.336702 ], [ -71.542969, 45.336702 ], [ -71.542969, 45.089036 ], [ -74.882812, 45.089036 ], [ -74.882812, 44.964798 ], [ -75.234375, 44.964798 ], [ -75.234375, 44.840291 ], [ -75.410156, 44.840291 ], [ -75.410156, 44.715514 ], [ -75.585938, 44.715514 ], [ -75.585938, 44.590467 ], [ -75.761719, 44.590467 ], [ -75.761719, 44.465151 ], [ -76.113281, 44.465151 ], [ -76.113281, 44.339565 ], [ -76.289062, 44.339565 ], [ -76.289062, 44.213710 ], [ -76.464844, 44.213710 ], [ -76.464844, 44.087585 ], [ -76.640625, 44.087585 ], [ -76.640625, 43.961191 ], [ -76.816406, 43.961191 ], [ -76.816406, 43.707594 ], [ -78.925781, 43.707594 ], [ -78.925781, 43.580391 ], [ -79.277344, 43.580391 ], [ -79.277344, 43.452919 ], [ -79.101562, 43.452919 ], [ -79.101562, 43.197167 ], [ -78.925781, 43.197167 ], [ -78.925781, 42.940339 ], [ -79.101562, 42.940339 ], [ -79.101562, 42.811522 ], [ -79.453125, 42.811522 ], [ -79.453125, 42.682435 ], [ -79.804688, 42.682435 ], [ -79.804688, 42.553080 ], [ -80.156250, 42.553080 ], [ -80.156250, 42.423457 ], [ -80.683594, 42.423457 ], [ -80.683594, 42.293564 ], [ -81.386719, 42.293564 ], [ -81.386719, 42.163403 ], [ -81.738281, 42.163403 ], [ -81.738281, 42.032974 ], [ -81.914062, 42.032974 ], [ -81.914062, 41.902277 ], [ -82.265625, 41.902277 ], [ -82.265625, 41.771312 ], [ -83.144531, 41.771312 ], [ -83.144531, 42.293564 ], [ -82.968750, 42.293564 ], [ -82.968750, 42.553080 ], [ -82.792969, 42.553080 ], [ -82.792969, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.940339 ], [ -82.441406, 42.940339 ], [ -82.441406, 43.325178 ], [ -82.265625, 43.325178 ], [ -82.265625, 43.961191 ], [ -82.441406, 43.961191 ], [ -82.441406, 44.964798 ], [ -82.617188, 44.964798 ], [ -82.617188, 45.460131 ], [ -82.968750, 45.460131 ], [ -82.968750, 45.583290 ], [ -83.320312, 45.583290 ], [ -83.320312, 45.706179 ], [ -83.671875, 45.706179 ], [ -83.671875, 45.951150 ], [ -83.496094, 45.951150 ], [ -83.496094, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 46.195042 ], [ -84.199219, 46.195042 ], [ -84.199219, 46.437857 ], [ -84.550781, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.902344, 46.558860 ], [ -84.902344, 46.920255 ], [ -85.078125, 46.920255 ], [ -85.078125, 47.040182 ], [ -85.429688, 47.040182 ], [ -85.429688, 47.159840 ], [ -85.781250, 47.159840 ], [ -85.781250, 47.279229 ], [ -85.957031, 47.279229 ], [ -85.957031, 47.398349 ], [ -86.308594, 47.398349 ], [ -86.308594, 47.517201 ], [ -86.484375, 47.517201 ], [ -86.484375, 47.635784 ], [ -86.835938, 47.635784 ], [ -86.835938, 47.754098 ], [ -87.187500, 47.754098 ], [ -87.187500, 47.872144 ], [ -87.539062, 47.872144 ], [ -87.539062, 47.989922 ], [ -87.714844, 47.989922 ], [ -87.714844, 48.107431 ], [ -88.066406, 48.107431 ], [ -88.066406, 48.224673 ], [ -88.417969, 48.224673 ], [ -88.417969, 48.341646 ], [ -88.593750, 48.341646 ], [ -88.593750, 48.224673 ], [ -88.945312, 48.224673 ], [ -88.945312, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.341646 ], [ -90.878906, 48.341646 ], [ -90.878906, 57.326521 ], [ -90.703125, 57.326521 ], [ -90.703125, 57.231503 ], [ -90.351562, 57.231503 ], [ -90.351562, 57.136239 ], [ -89.824219, 57.136239 ], [ -89.824219, 57.040730 ], [ -89.472656, 57.040730 ], [ -89.472656, 56.944974 ], [ -89.121094, 56.944974 ], [ -89.121094, 56.848972 ], [ -88.769531, 56.848972 ], [ -88.769531, 56.752723 ], [ -88.593750, 56.752723 ], [ -88.593750, 56.656226 ], [ -88.242188, 56.656226 ], [ -88.242188, 56.559482 ], [ -88.066406, 56.559482 ], [ -88.066406, 56.462490 ], [ -87.890625, 56.462490 ], [ -87.890625, 56.365250 ], [ -87.714844, 56.365250 ], [ -87.714844, 56.170023 ], [ -87.539062, 56.170023 ], [ -87.539062, 56.072035 ], [ -87.187500, 56.072035 ], [ -87.187500, 55.973798 ], [ -86.835938, 55.973798 ], [ -86.835938, 55.875311 ], [ -86.484375, 55.875311 ], [ -86.484375, 55.776573 ], [ -86.132812, 55.776573 ], [ -86.132812, 55.677584 ], [ -85.781250, 55.677584 ], [ -85.781250, 55.578345 ], [ -85.605469, 55.578345 ], [ -85.605469, 55.478853 ], [ -85.253906, 55.478853 ], [ -85.253906, 55.379110 ], [ -84.375000, 55.379110 ], [ -84.375000, 55.279115 ], [ -83.144531, 55.279115 ], [ -83.144531, 55.178868 ], [ -82.441406, 55.178868 ], [ -82.441406, 53.852527 ], [ -82.265625, 53.852527 ], [ -82.265625, 53.120405 ], [ -82.089844, 53.120405 ], [ -82.089844, 52.802761 ], [ -81.914062, 52.802761 ], [ -81.914062, 52.589701 ], [ -81.738281, 52.589701 ], [ -81.738281, 52.268157 ], [ -81.562500, 52.268157 ], [ -81.562500, 52.052490 ], [ -81.386719, 52.052490 ], [ -81.386719, 51.944265 ], [ -81.210938, 51.944265 ], [ -81.210938, 51.835778 ], [ -81.035156, 51.835778 ], [ -81.035156, 51.727028 ], [ -80.683594, 51.727028 ], [ -80.683594, 51.618017 ], [ -80.507812, 51.618017 ], [ -80.507812, 51.508742 ], [ -80.332031, 51.508742 ], [ -80.332031, 51.399206 ], [ -80.156250, 51.399206 ], [ -80.156250, 51.289406 ], [ -79.804688, 51.289406 ], [ -79.804688, 51.399206 ], [ -79.453125, 51.399206 ], [ -79.453125, 51.508742 ], [ -79.277344, 51.508742 ], [ -79.277344, 51.727028 ], [ -79.101562, 51.727028 ], [ -79.101562, 52.052490 ], [ -78.925781, 52.052490 ], [ -78.925781, 52.375599 ], [ -78.750000, 52.375599 ], [ -78.750000, 52.802761 ], [ -78.925781, 52.802761 ], [ -78.925781, 53.330873 ], [ -79.101562, 53.330873 ], [ -79.101562, 53.852527 ], [ -79.277344, 53.852527 ], [ -79.277344, 54.162434 ], [ -79.453125, 54.162434 ], [ -79.453125, 54.265224 ], [ -79.628906, 54.265224 ], [ -79.628906, 54.470038 ], [ -79.804688, 54.470038 ], [ -79.804688, 54.572062 ], [ -79.980469, 54.572062 ], [ -79.980469, 54.673831 ], [ -79.804688, 54.673831 ], [ -79.804688, 54.775346 ], [ -79.453125, 54.775346 ], [ -79.453125, 54.876607 ], [ -79.101562, 54.876607 ], [ -79.101562, 54.977614 ], [ -78.750000, 54.977614 ], [ -78.750000, 55.078367 ], [ -78.398438, 55.078367 ], [ -78.398438, 55.178868 ], [ -78.222656, 55.178868 ], [ -78.222656, 55.279115 ], [ -78.046875, 55.279115 ], [ -78.046875, 55.379110 ], [ -77.871094, 55.379110 ], [ -77.871094, 55.478853 ], [ -77.695312, 55.478853 ], [ -77.695312, 55.578345 ], [ -77.519531, 55.578345 ], [ -77.519531, 55.677584 ], [ -77.343750, 55.677584 ], [ -77.343750, 55.776573 ], [ -77.167969, 55.776573 ], [ -77.167969, 55.973798 ], [ -76.992188, 55.973798 ], [ -76.992188, 56.170023 ], [ -76.816406, 56.170023 ], [ -76.816406, 56.365250 ], [ -76.640625, 56.365250 ], [ -76.640625, 57.326521 ], [ -76.816406, 57.326521 ], [ -76.816406, 57.515823 ], [ -76.992188, 57.515823 ], [ -76.992188, 57.704147 ], [ -77.167969, 57.704147 ], [ -77.167969, 57.891497 ], [ -77.343750, 57.891497 ], [ -77.343750, 58.077876 ], [ -77.519531, 58.077876 ], [ -77.519531, 58.170702 ], [ -77.695312, 58.170702 ], [ -77.695312, 58.263287 ], [ -77.871094, 58.263287 ], [ -77.871094, 58.447733 ], [ -78.046875, 58.447733 ], [ -78.046875, 58.539595 ], [ -78.222656, 58.539595 ], [ -78.222656, 58.631217 ], [ -78.398438, 58.631217 ], [ -78.398438, 58.722599 ], [ -78.574219, 58.722599 ], [ -78.574219, 58.813742 ], [ -78.398438, 58.813742 ], [ -78.398438, 58.995311 ], [ -78.222656, 58.995311 ], [ -78.222656, 59.175928 ], [ -78.046875, 59.175928 ], [ -78.046875, 59.355596 ], [ -77.871094, 59.355596 ], [ -77.871094, 59.445075 ], [ -77.695312, 59.445075 ], [ -77.695312, 59.623325 ], [ -77.519531, 59.623325 ], [ -77.519531, 59.800634 ], [ -77.343750, 59.800634 ], [ -77.343750, 59.977005 ], [ -77.519531, 59.977005 ], [ -77.519531, 60.326948 ], [ -77.695312, 60.326948 ], [ -77.695312, 60.586967 ], [ -77.871094, 60.586967 ], [ -77.871094, 61.100789 ], [ -78.046875, 61.100789 ], [ -78.046875, 61.938950 ], [ -78.222656, 61.938950 ], [ -78.222656, 62.349609 ], [ -78.046875, 62.349609 ], [ -78.046875, 62.431074 ], [ -77.695312, 62.431074 ], [ -77.695312, 62.512318 ], [ -77.519531, 62.512318 ], [ -77.519531, 62.593341 ], [ -77.343750, 62.593341 ] ] ], [ [ [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.089364 ], [ -62.402344, 66.089364 ], [ -62.402344, 65.946472 ], [ -62.578125, 65.946472 ], [ -62.578125, 65.874725 ], [ -62.753906, 65.874725 ], [ -62.753906, 65.730626 ], [ -62.929688, 65.730626 ], [ -62.929688, 65.585720 ], [ -63.105469, 65.585720 ], [ -63.105469, 65.512963 ], [ -63.281250, 65.512963 ], [ -63.281250, 65.366837 ], [ -63.457031, 65.366837 ], [ -63.457031, 65.293468 ], [ -63.632812, 65.293468 ], [ -63.632812, 65.146115 ], [ -63.808594, 65.146115 ], [ -63.808594, 64.997939 ], [ -64.160156, 64.997939 ], [ -64.160156, 65.072130 ], [ -64.335938, 65.072130 ], [ -64.335938, 65.146115 ], [ -64.511719, 65.146115 ], [ -64.511719, 65.219894 ], [ -64.863281, 65.219894 ], [ -64.863281, 65.293468 ], [ -65.039062, 65.293468 ], [ -65.039062, 65.366837 ], [ -65.214844, 65.366837 ], [ -65.214844, 65.440002 ], [ -65.390625, 65.440002 ], [ -65.390625, 65.585720 ], [ -65.566406, 65.585720 ], [ -65.566406, 65.658275 ], [ -65.742188, 65.658275 ], [ -65.742188, 65.802776 ], [ -65.917969, 65.802776 ], [ -65.917969, 65.946472 ], [ -66.093750, 65.946472 ], [ -66.093750, 66.018018 ], [ -66.269531, 66.018018 ], [ -66.269531, 66.160511 ], [ -66.445312, 66.160511 ], [ -66.445312, 66.231457 ], [ -66.621094, 66.231457 ], [ -66.621094, 66.372755 ], [ -66.796875, 66.372755 ], [ -66.796875, 66.443107 ], [ -66.972656, 66.443107 ], [ -66.972656, 66.372755 ], [ -67.675781, 66.372755 ], [ -67.675781, 66.302205 ], [ -68.027344, 66.302205 ], [ -68.027344, 66.018018 ], [ -68.203125, 66.018018 ], [ -68.203125, 65.658275 ], [ -68.027344, 65.658275 ], [ -68.027344, 65.585720 ], [ -67.851562, 65.585720 ], [ -67.851562, 65.440002 ], [ -67.675781, 65.440002 ], [ -67.675781, 65.366837 ], [ -67.500000, 65.366837 ], [ -67.500000, 65.293468 ], [ -67.324219, 65.293468 ], [ -67.324219, 65.146115 ], [ -67.148438, 65.146115 ], [ -67.148438, 65.072130 ], [ -66.972656, 65.072130 ], [ -66.972656, 64.997939 ], [ -66.621094, 64.997939 ], [ -66.621094, 64.923542 ], [ -66.445312, 64.923542 ], [ -66.445312, 64.848937 ], [ -66.269531, 64.848937 ], [ -66.269531, 64.774125 ], [ -65.917969, 64.774125 ], [ -65.917969, 64.699105 ], [ -65.742188, 64.699105 ], [ -65.742188, 64.623877 ], [ -65.566406, 64.623877 ], [ -65.566406, 64.472794 ], [ -65.390625, 64.472794 ], [ -65.390625, 64.244595 ], [ -65.214844, 64.244595 ], [ -65.214844, 64.014496 ], [ -65.039062, 64.014496 ], [ -65.039062, 63.782486 ], [ -64.863281, 63.782486 ], [ -64.863281, 63.548552 ], [ -64.687500, 63.548552 ], [ -64.687500, 63.233627 ], [ -64.863281, 63.233627 ], [ -64.863281, 62.835089 ], [ -65.039062, 62.835089 ], [ -65.039062, 62.674143 ], [ -65.390625, 62.674143 ], [ -65.390625, 62.754726 ], [ -65.742188, 62.754726 ], [ -65.742188, 62.835089 ], [ -66.093750, 62.835089 ], [ -66.093750, 62.915233 ], [ -66.445312, 62.915233 ], [ -66.445312, 62.995158 ], [ -66.621094, 62.995158 ], [ -66.621094, 63.074866 ], [ -66.972656, 63.074866 ], [ -66.972656, 63.154355 ], [ -67.148438, 63.154355 ], [ -67.148438, 63.233627 ], [ -67.324219, 63.233627 ], [ -67.324219, 63.312683 ], [ -67.675781, 63.312683 ], [ -67.675781, 63.391522 ], [ -67.851562, 63.391522 ], [ -67.851562, 63.470145 ], [ -68.203125, 63.470145 ], [ -68.203125, 63.548552 ], [ -68.378906, 63.548552 ], [ -68.378906, 63.626745 ], [ -68.554688, 63.626745 ], [ -68.554688, 63.704722 ], [ -68.730469, 63.704722 ], [ -68.730469, 63.548552 ], [ -68.554688, 63.548552 ], [ -68.554688, 63.470145 ], [ -68.378906, 63.470145 ], [ -68.378906, 63.391522 ], [ -68.203125, 63.391522 ], [ -68.203125, 63.233627 ], [ -68.027344, 63.233627 ], [ -68.027344, 63.154355 ], [ -67.851562, 63.154355 ], [ -67.851562, 63.074866 ], [ -67.675781, 63.074866 ], [ -67.675781, 62.915233 ], [ -67.500000, 62.915233 ], [ -67.500000, 62.835089 ], [ -67.324219, 62.835089 ], [ -67.324219, 62.754726 ], [ -67.148438, 62.754726 ], [ -67.148438, 62.674143 ], [ -66.972656, 62.674143 ], [ -66.972656, 62.512318 ], [ -66.796875, 62.512318 ], [ -66.796875, 62.431074 ], [ -66.621094, 62.431074 ], [ -66.621094, 62.349609 ], [ -66.445312, 62.349609 ], [ -66.445312, 62.103883 ], [ -66.269531, 62.103883 ], [ -66.269531, 61.938950 ], [ -66.621094, 61.938950 ], [ -66.621094, 62.021528 ], [ -67.148438, 62.021528 ], [ -67.148438, 62.103883 ], [ -67.675781, 62.103883 ], [ -67.675781, 62.186014 ], [ -68.203125, 62.186014 ], [ -68.203125, 62.267923 ], [ -68.730469, 62.267923 ], [ -68.730469, 62.349609 ], [ -69.082031, 62.349609 ], [ -69.082031, 62.431074 ], [ -69.433594, 62.431074 ], [ -69.433594, 62.512318 ], [ -69.785156, 62.512318 ], [ -69.785156, 62.593341 ], [ -70.136719, 62.593341 ], [ -70.136719, 62.674143 ], [ -70.488281, 62.674143 ], [ -70.488281, 62.754726 ], [ -70.839844, 62.754726 ], [ -70.839844, 62.835089 ], [ -71.191406, 62.835089 ], [ -71.191406, 62.915233 ], [ -71.367188, 62.915233 ], [ -71.367188, 62.995158 ], [ -71.542969, 62.995158 ], [ -71.542969, 63.074866 ], [ -71.718750, 63.074866 ], [ -71.718750, 63.233627 ], [ -71.894531, 63.233627 ], [ -71.894531, 63.312683 ], [ -72.070312, 63.312683 ], [ -72.070312, 63.391522 ], [ -72.246094, 63.391522 ], [ -72.246094, 63.470145 ], [ -72.070312, 63.470145 ], [ -72.070312, 63.626745 ], [ -71.894531, 63.626745 ], [ -71.894531, 63.704722 ], [ -72.070312, 63.704722 ], [ -72.070312, 63.782486 ], [ -72.246094, 63.782486 ], [ -72.246094, 63.860036 ], [ -72.597656, 63.860036 ], [ -72.597656, 63.937372 ], [ -72.773438, 63.937372 ], [ -72.773438, 64.014496 ], [ -72.949219, 64.014496 ], [ -72.949219, 64.091408 ], [ -73.300781, 64.091408 ], [ -73.300781, 64.168107 ], [ -73.476562, 64.168107 ], [ -73.476562, 64.244595 ], [ -73.652344, 64.244595 ], [ -73.652344, 64.320872 ], [ -74.003906, 64.320872 ], [ -74.003906, 64.396938 ], [ -74.179688, 64.396938 ], [ -74.179688, 64.472794 ], [ -74.355469, 64.472794 ], [ -74.355469, 64.548440 ], [ -74.707031, 64.548440 ], [ -74.707031, 64.623877 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.396938 ], [ -75.585938, 64.396938 ], [ -75.585938, 64.320872 ], [ -76.992188, 64.320872 ], [ -76.992188, 64.244595 ], [ -78.046875, 64.244595 ], [ -78.046875, 64.320872 ], [ -78.222656, 64.320872 ], [ -78.222656, 64.472794 ], [ -78.398438, 64.472794 ], [ -78.398438, 64.548440 ], [ -78.574219, 64.548440 ], [ -78.574219, 64.699105 ], [ -78.398438, 64.699105 ], [ -78.398438, 64.997939 ], [ -78.222656, 64.997939 ], [ -78.222656, 65.219894 ], [ -78.046875, 65.219894 ], [ -78.046875, 65.366837 ], [ -75.410156, 65.366837 ], [ -75.410156, 65.440002 ], [ -74.355469, 65.440002 ], [ -74.355469, 65.512963 ], [ -74.003906, 65.512963 ], [ -74.003906, 65.585720 ], [ -74.179688, 65.585720 ], [ -74.179688, 65.730626 ], [ -74.355469, 65.730626 ], [ -74.355469, 65.946472 ], [ -74.179688, 65.946472 ], [ -74.179688, 66.231457 ], [ -74.003906, 66.231457 ], [ -74.003906, 66.372755 ], [ -73.828125, 66.372755 ], [ -73.828125, 66.513260 ], [ -73.652344, 66.513260 ], [ -73.652344, 66.652977 ], [ -73.476562, 66.652977 ], [ -73.476562, 66.791909 ], [ -73.300781, 66.791909 ], [ -73.300781, 66.861082 ], [ -61.875000, 66.861082 ] ] ], [ [ [ -63.984375, 46.920255 ], [ -63.984375, 46.679594 ], [ -63.808594, 46.679594 ], [ -63.808594, 46.558860 ], [ -63.632812, 46.558860 ], [ -63.632812, 46.437857 ], [ -62.402344, 46.437857 ], [ -62.402344, 46.558860 ], [ -62.050781, 46.558860 ], [ -62.050781, 46.437857 ], [ -62.226562, 46.437857 ], [ -62.226562, 46.316584 ], [ -62.402344, 46.316584 ], [ -62.402344, 46.073231 ], [ -63.281250, 46.073231 ], [ -63.281250, 46.195042 ], [ -63.632812, 46.195042 ], [ -63.632812, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.984375, 46.437857 ], [ -64.335938, 46.437857 ], [ -64.335938, 46.679594 ], [ -64.511719, 46.679594 ], [ -64.511719, 46.800059 ], [ -64.335938, 46.800059 ], [ -64.335938, 46.920255 ], [ -63.984375, 46.920255 ] ] ], [ [ [ -55.546875, 51.618017 ], [ -55.546875, 51.508742 ], [ -55.722656, 51.508742 ], [ -55.722656, 51.289406 ], [ -55.898438, 51.289406 ], [ -55.898438, 51.069017 ], [ -56.074219, 51.069017 ], [ -56.074219, 50.847573 ], [ -56.250000, 50.847573 ], [ -56.250000, 50.625073 ], [ -56.425781, 50.625073 ], [ -56.425781, 50.401515 ], [ -56.601562, 50.401515 ], [ -56.601562, 50.176898 ], [ -56.777344, 50.176898 ], [ -56.777344, 49.951220 ], [ -56.425781, 49.951220 ], [ -56.425781, 50.064192 ], [ -55.898438, 50.064192 ], [ -55.898438, 49.951220 ], [ -55.546875, 49.951220 ], [ -55.546875, 49.837982 ], [ -55.722656, 49.837982 ], [ -55.722656, 49.496675 ], [ -55.371094, 49.496675 ], [ -55.371094, 49.382373 ], [ -54.843750, 49.382373 ], [ -54.843750, 49.496675 ], [ -54.140625, 49.496675 ], [ -54.140625, 49.382373 ], [ -53.789062, 49.382373 ], [ -53.789062, 49.267805 ], [ -53.613281, 49.267805 ], [ -53.613281, 48.922499 ], [ -53.789062, 48.922499 ], [ -53.789062, 48.574790 ], [ -53.261719, 48.574790 ], [ -53.261719, 48.690960 ], [ -53.085938, 48.690960 ], [ -53.085938, 47.989922 ], [ -52.910156, 47.989922 ], [ -52.910156, 47.754098 ], [ -52.734375, 47.754098 ], [ -52.734375, 47.398349 ], [ -52.910156, 47.398349 ], [ -52.910156, 46.920255 ], [ -53.085938, 46.920255 ], [ -53.085938, 46.679594 ], [ -53.964844, 46.679594 ], [ -53.964844, 46.800059 ], [ -54.316406, 46.800059 ], [ -54.316406, 47.040182 ], [ -54.140625, 47.040182 ], [ -54.140625, 47.398349 ], [ -53.964844, 47.398349 ], [ -53.964844, 47.635784 ], [ -54.492188, 47.635784 ], [ -54.492188, 47.517201 ], [ -54.667969, 47.517201 ], [ -54.667969, 47.398349 ], [ -54.843750, 47.398349 ], [ -54.843750, 47.279229 ], [ -55.019531, 47.279229 ], [ -55.019531, 47.159840 ], [ -55.195312, 47.159840 ], [ -55.195312, 47.040182 ], [ -55.371094, 47.040182 ], [ -55.371094, 46.920255 ], [ -55.898438, 46.920255 ], [ -55.898438, 47.040182 ], [ -55.722656, 47.040182 ], [ -55.722656, 47.159840 ], [ -55.546875, 47.159840 ], [ -55.546875, 47.279229 ], [ -55.371094, 47.279229 ], [ -55.371094, 47.398349 ], [ -55.722656, 47.398349 ], [ -55.722656, 47.517201 ], [ -56.074219, 47.517201 ], [ -56.074219, 47.635784 ], [ -59.414062, 47.635784 ], [ -59.414062, 47.754098 ], [ -59.589844, 47.754098 ], [ -59.589844, 47.989922 ], [ -59.414062, 47.989922 ], [ -59.414062, 48.107431 ], [ -59.062500, 48.107431 ], [ -59.062500, 48.224673 ], [ -58.886719, 48.224673 ], [ -58.886719, 48.341646 ], [ -59.062500, 48.341646 ], [ -59.062500, 48.458352 ], [ -59.238281, 48.458352 ], [ -59.238281, 48.574790 ], [ -59.062500, 48.574790 ], [ -59.062500, 48.690960 ], [ -58.886719, 48.690960 ], [ -58.886719, 48.922499 ], [ -58.710938, 48.922499 ], [ -58.710938, 49.037868 ], [ -58.535156, 49.037868 ], [ -58.535156, 49.267805 ], [ -58.359375, 49.267805 ], [ -58.359375, 49.496675 ], [ -58.183594, 49.496675 ], [ -58.183594, 49.724479 ], [ -58.007812, 49.724479 ], [ -58.007812, 50.064192 ], [ -57.832031, 50.064192 ], [ -57.832031, 50.289339 ], [ -57.656250, 50.289339 ], [ -57.656250, 50.513427 ], [ -57.480469, 50.513427 ], [ -57.480469, 50.736455 ], [ -57.304688, 50.736455 ], [ -57.304688, 50.847573 ], [ -57.128906, 50.847573 ], [ -57.128906, 51.069017 ], [ -56.953125, 51.069017 ], [ -56.953125, 51.179343 ], [ -56.777344, 51.179343 ], [ -56.777344, 51.289406 ], [ -56.601562, 51.289406 ], [ -56.601562, 51.399206 ], [ -56.425781, 51.399206 ], [ -56.425781, 51.508742 ], [ -56.074219, 51.508742 ], [ -56.074219, 51.618017 ], [ -55.546875, 51.618017 ] ], [ [ -56.777344, 49.951220 ], [ -56.953125, 49.951220 ], [ -56.953125, 49.837982 ], [ -56.777344, 49.837982 ], [ -56.777344, 49.951220 ] ] ], [ [ [ -82.265625, 66.791909 ], [ -82.441406, 66.791909 ], [ -82.441406, 66.722541 ], [ -82.617188, 66.722541 ], [ -82.617188, 66.652977 ], [ -82.968750, 66.652977 ], [ -82.968750, 66.583217 ], [ -83.144531, 66.583217 ], [ -83.144531, 66.513260 ], [ -83.320312, 66.513260 ], [ -83.320312, 66.443107 ], [ -83.671875, 66.443107 ], [ -83.671875, 66.372755 ], [ -84.375000, 66.372755 ], [ -84.375000, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.253906, 66.372755 ], [ -85.253906, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.443107 ], [ -85.957031, 66.443107 ], [ -85.957031, 66.160511 ], [ -86.132812, 66.160511 ], [ -86.132812, 66.018018 ], [ -86.308594, 66.018018 ], [ -86.308594, 65.874725 ], [ -86.484375, 65.874725 ], [ -86.484375, 65.730626 ], [ -86.660156, 65.730626 ], [ -86.660156, 65.585720 ], [ -86.835938, 65.585720 ], [ -86.835938, 65.440002 ], [ -87.011719, 65.440002 ], [ -87.011719, 65.293468 ], [ -87.187500, 65.293468 ], [ -87.187500, 64.997939 ], [ -87.363281, 64.997939 ], [ -87.363281, 64.774125 ], [ -87.539062, 64.774125 ], [ -87.539062, 64.699105 ], [ -87.714844, 64.699105 ], [ -87.714844, 64.548440 ], [ -87.890625, 64.548440 ], [ -87.890625, 64.472794 ], [ -88.066406, 64.472794 ], [ -88.066406, 64.396938 ], [ -88.242188, 64.396938 ], [ -88.242188, 64.244595 ], [ -88.417969, 64.244595 ], [ -88.417969, 64.168107 ], [ -89.121094, 64.168107 ], [ -89.121094, 64.091408 ], [ -90.000000, 64.091408 ], [ -90.000000, 64.014496 ], [ -90.175781, 64.014496 ], [ -90.175781, 63.860036 ], [ -90.351562, 63.860036 ], [ -90.351562, 63.782486 ], [ -90.527344, 63.782486 ], [ -90.527344, 63.626745 ], [ -90.703125, 63.626745 ], [ -90.703125, 63.312683 ], [ -90.878906, 63.312683 ], [ -90.878906, 66.861082 ], [ -82.265625, 66.861082 ], [ -82.265625, 66.791909 ] ] ], [ [ [ -85.605469, 65.730626 ], [ -85.605469, 65.658275 ], [ -85.253906, 65.658275 ], [ -85.253906, 65.440002 ], [ -85.078125, 65.440002 ], [ -85.078125, 65.219894 ], [ -84.902344, 65.219894 ], [ -84.902344, 65.293468 ], [ -84.726562, 65.293468 ], [ -84.726562, 65.366837 ], [ -84.375000, 65.366837 ], [ -84.375000, 65.293468 ], [ -84.199219, 65.293468 ], [ -84.199219, 65.146115 ], [ -84.023438, 65.146115 ], [ -84.023438, 65.072130 ], [ -83.671875, 65.072130 ], [ -83.671875, 64.997939 ], [ -83.496094, 64.997939 ], [ -83.496094, 64.923542 ], [ -83.320312, 64.923542 ], [ -83.320312, 64.848937 ], [ -82.968750, 64.848937 ], [ -82.968750, 64.774125 ], [ -82.792969, 64.774125 ], [ -82.792969, 64.699105 ], [ -82.441406, 64.699105 ], [ -82.441406, 64.623877 ], [ -82.265625, 64.623877 ], [ -82.265625, 64.548440 ], [ -81.914062, 64.548440 ], [ -81.914062, 64.472794 ], [ -81.738281, 64.472794 ], [ -81.738281, 64.244595 ], [ -81.562500, 64.244595 ], [ -81.562500, 64.014496 ], [ -81.035156, 64.014496 ], [ -81.035156, 64.091408 ], [ -80.859375, 64.091408 ], [ -80.859375, 64.014496 ], [ -80.683594, 64.014496 ], [ -80.683594, 63.937372 ], [ -80.507812, 63.937372 ], [ -80.507812, 63.860036 ], [ -80.332031, 63.860036 ], [ -80.332031, 63.782486 ], [ -80.156250, 63.782486 ], [ -80.156250, 63.704722 ], [ -80.332031, 63.704722 ], [ -80.332031, 63.626745 ], [ -80.683594, 63.626745 ], [ -80.683594, 63.548552 ], [ -80.859375, 63.548552 ], [ -80.859375, 63.470145 ], [ -81.386719, 63.470145 ], [ -81.386719, 63.548552 ], [ -81.914062, 63.548552 ], [ -81.914062, 63.626745 ], [ -82.441406, 63.626745 ], [ -82.441406, 63.704722 ], [ -82.617188, 63.704722 ], [ -82.617188, 63.782486 ], [ -82.792969, 63.782486 ], [ -82.792969, 63.937372 ], [ -82.968750, 63.937372 ], [ -82.968750, 64.091408 ], [ -83.320312, 64.091408 ], [ -83.320312, 64.014496 ], [ -83.496094, 64.014496 ], [ -83.496094, 63.937372 ], [ -83.671875, 63.937372 ], [ -83.671875, 63.782486 ], [ -83.847656, 63.782486 ], [ -83.847656, 63.704722 ], [ -84.023438, 63.704722 ], [ -84.023438, 63.626745 ], [ -84.199219, 63.626745 ], [ -84.199219, 63.548552 ], [ -84.375000, 63.548552 ], [ -84.375000, 63.470145 ], [ -84.550781, 63.470145 ], [ -84.550781, 63.391522 ], [ -84.726562, 63.391522 ], [ -84.726562, 63.312683 ], [ -85.078125, 63.312683 ], [ -85.078125, 63.233627 ], [ -85.253906, 63.233627 ], [ -85.253906, 63.154355 ], [ -85.429688, 63.154355 ], [ -85.429688, 63.074866 ], [ -85.605469, 63.074866 ], [ -85.605469, 63.233627 ], [ -85.781250, 63.233627 ], [ -85.781250, 63.548552 ], [ -85.957031, 63.548552 ], [ -85.957031, 63.704722 ], [ -86.132812, 63.704722 ], [ -86.132812, 63.626745 ], [ -86.835938, 63.626745 ], [ -86.835938, 63.548552 ], [ -87.187500, 63.548552 ], [ -87.187500, 63.704722 ], [ -87.011719, 63.704722 ], [ -87.011719, 63.782486 ], [ -86.835938, 63.782486 ], [ -86.835938, 63.860036 ], [ -86.660156, 63.860036 ], [ -86.660156, 64.014496 ], [ -86.484375, 64.014496 ], [ -86.484375, 64.472794 ], [ -86.308594, 64.472794 ], [ -86.308594, 65.072130 ], [ -86.132812, 65.072130 ], [ -86.132812, 65.512963 ], [ -85.957031, 65.512963 ], [ -85.957031, 65.730626 ], [ -85.605469, 65.730626 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.674143 ], [ -82.089844, 62.674143 ], [ -82.089844, 62.593341 ], [ -82.265625, 62.593341 ], [ -82.265625, 62.512318 ], [ -82.441406, 62.512318 ], [ -82.441406, 62.431074 ], [ -82.617188, 62.431074 ], [ -82.617188, 62.349609 ], [ -82.792969, 62.349609 ], [ -82.792969, 62.267923 ], [ -82.968750, 62.267923 ], [ -82.968750, 62.186014 ], [ -83.847656, 62.186014 ], [ -83.847656, 62.349609 ], [ -84.023438, 62.349609 ], [ -84.023438, 62.512318 ], [ -83.847656, 62.512318 ], [ -83.847656, 62.593341 ], [ -83.671875, 62.593341 ], [ -83.671875, 62.754726 ], [ -83.496094, 62.754726 ], [ -83.496094, 62.835089 ], [ -83.320312, 62.835089 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -64.160156, 50.064192 ], [ -64.160156, 49.951220 ], [ -63.808594, 49.951220 ], [ -63.808594, 49.837982 ], [ -63.281250, 49.837982 ], [ -63.281250, 49.724479 ], [ -62.929688, 49.724479 ], [ -62.929688, 49.610710 ], [ -62.578125, 49.610710 ], [ -62.578125, 49.496675 ], [ -62.226562, 49.496675 ], [ -62.226562, 49.382373 ], [ -61.875000, 49.382373 ], [ -61.875000, 49.152970 ], [ -62.753906, 49.152970 ], [ -62.753906, 49.267805 ], [ -63.105469, 49.267805 ], [ -63.105469, 49.382373 ], [ -63.457031, 49.382373 ], [ -63.457031, 49.496675 ], [ -63.808594, 49.496675 ], [ -63.808594, 49.610710 ], [ -64.160156, 49.610710 ], [ -64.160156, 49.724479 ], [ -64.335938, 49.724479 ], [ -64.335938, 49.837982 ], [ -64.687500, 49.837982 ], [ -64.687500, 49.951220 ], [ -64.335938, 49.951220 ], [ -64.335938, 50.064192 ], [ -64.160156, 50.064192 ] ] ], [ [ [ -79.628906, 62.431074 ], [ -79.628906, 62.349609 ], [ -79.453125, 62.349609 ], [ -79.453125, 62.186014 ], [ -79.277344, 62.186014 ], [ -79.277344, 62.103883 ], [ -79.453125, 62.103883 ], [ -79.453125, 61.938950 ], [ -79.628906, 61.938950 ], [ -79.628906, 61.773123 ], [ -79.804688, 61.773123 ], [ -79.804688, 61.689872 ], [ -80.156250, 61.689872 ], [ -80.156250, 61.773123 ], [ -80.332031, 61.773123 ], [ -80.332031, 61.938950 ], [ -80.507812, 61.938950 ], [ -80.507812, 62.021528 ], [ -80.332031, 62.021528 ], [ -80.332031, 62.186014 ], [ -80.156250, 62.186014 ], [ -80.156250, 62.349609 ], [ -79.980469, 62.349609 ], [ -79.980469, 62.431074 ], [ -79.628906, 62.431074 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.066406, 48.224673 ], [ -88.066406, 48.107431 ], [ -87.714844, 48.107431 ], [ -87.714844, 47.989922 ], [ -87.363281, 47.989922 ], [ -87.363281, 47.872144 ], [ -87.187500, 47.872144 ], [ -87.187500, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.635784 ], [ -86.660156, 47.635784 ], [ -86.660156, 47.517201 ], [ -86.308594, 47.517201 ], [ -86.308594, 47.398349 ], [ -85.957031, 47.398349 ], [ -85.957031, 47.279229 ], [ -85.605469, 47.279229 ], [ -85.605469, 47.159840 ], [ -85.429688, 47.159840 ], [ -85.429688, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.920255 ], [ -84.902344, 46.920255 ], [ -84.902344, 46.800059 ], [ -84.726562, 46.800059 ], [ -84.726562, 46.558860 ], [ -84.550781, 46.558860 ], [ -84.550781, 46.437857 ], [ -84.023438, 46.437857 ], [ -84.023438, 46.195042 ], [ -83.847656, 46.195042 ], [ -83.847656, 46.073231 ], [ -83.671875, 46.073231 ], [ -83.671875, 45.951150 ], [ -83.496094, 45.951150 ], [ -83.496094, 45.828799 ], [ -83.671875, 45.828799 ], [ -83.671875, 45.706179 ], [ -83.320312, 45.706179 ], [ -83.320312, 45.583290 ], [ -83.144531, 45.583290 ], [ -83.144531, 45.460131 ], [ -82.792969, 45.460131 ], [ -82.792969, 45.336702 ], [ -82.617188, 45.336702 ], [ -82.617188, 45.089036 ], [ -82.441406, 45.089036 ], [ -82.441406, 44.590467 ], [ -82.265625, 44.590467 ], [ -82.265625, 43.961191 ], [ -82.089844, 43.961191 ], [ -82.089844, 43.325178 ], [ -82.265625, 43.325178 ], [ -82.265625, 43.068888 ], [ -82.441406, 43.068888 ], [ -82.441406, 42.811522 ], [ -82.617188, 42.811522 ], [ -82.617188, 42.682435 ], [ -82.792969, 42.682435 ], [ -82.792969, 42.423457 ], [ -82.968750, 42.423457 ], [ -82.968750, 42.163403 ], [ -83.144531, 42.163403 ], [ -83.144531, 41.902277 ], [ -82.968750, 41.902277 ], [ -82.968750, 41.640078 ], [ -82.265625, 41.640078 ], [ -82.265625, 41.771312 ], [ -81.914062, 41.771312 ], [ -81.914062, 41.902277 ], [ -81.562500, 41.902277 ], [ -81.562500, 42.032974 ], [ -81.210938, 42.032974 ], [ -81.210938, 42.163403 ], [ -80.859375, 42.163403 ], [ -80.859375, 42.293564 ], [ -80.507812, 42.293564 ], [ -80.507812, 42.423457 ], [ -79.980469, 42.423457 ], [ -79.980469, 42.553080 ], [ -79.453125, 42.553080 ], [ -79.453125, 42.682435 ], [ -79.101562, 42.682435 ], [ -79.101562, 42.811522 ], [ -78.925781, 42.811522 ], [ -78.925781, 43.325178 ], [ -79.101562, 43.325178 ], [ -79.101562, 43.452919 ], [ -78.750000, 43.452919 ], [ -78.750000, 43.580391 ], [ -76.640625, 43.580391 ], [ -76.640625, 43.834527 ], [ -76.464844, 43.834527 ], [ -76.464844, 43.961191 ], [ -76.289062, 43.961191 ], [ -76.289062, 44.087585 ], [ -76.113281, 44.087585 ], [ -76.113281, 44.213710 ], [ -75.937500, 44.213710 ], [ -75.937500, 44.339565 ], [ -75.761719, 44.339565 ], [ -75.761719, 44.465151 ], [ -75.585938, 44.465151 ], [ -75.585938, 44.590467 ], [ -75.410156, 44.590467 ], [ -75.410156, 44.715514 ], [ -75.234375, 44.715514 ], [ -75.234375, 44.840291 ], [ -74.882812, 44.840291 ], [ -74.882812, 44.964798 ], [ -71.542969, 44.964798 ], [ -71.542969, 45.089036 ], [ -71.367188, 45.089036 ], [ -71.367188, 45.213004 ], [ -71.015625, 45.213004 ], [ -71.015625, 45.336702 ], [ -70.664062, 45.336702 ], [ -70.664062, 45.583290 ], [ -70.488281, 45.583290 ], [ -70.488281, 45.828799 ], [ -70.312500, 45.828799 ], [ -70.312500, 46.073231 ], [ -70.136719, 46.073231 ], [ -70.136719, 46.437857 ], [ -69.960938, 46.437857 ], [ -69.960938, 46.679594 ], [ -69.785156, 46.679594 ], [ -69.785156, 46.920255 ], [ -69.609375, 46.920255 ], [ -69.609375, 47.040182 ], [ -69.433594, 47.040182 ], [ -69.433594, 47.279229 ], [ -69.082031, 47.279229 ], [ -69.082031, 47.159840 ], [ -68.554688, 47.159840 ], [ -68.554688, 47.279229 ], [ -68.027344, 47.279229 ], [ -68.027344, 47.040182 ], [ -67.851562, 47.040182 ], [ -67.851562, 45.583290 ], [ -67.675781, 45.583290 ], [ -67.675781, 45.460131 ], [ -67.500000, 45.460131 ], [ -67.500000, 45.213004 ], [ -67.324219, 45.213004 ], [ -67.324219, 45.089036 ], [ -67.148438, 45.089036 ], [ -67.148438, 44.964798 ], [ -66.972656, 44.964798 ], [ -66.972656, 44.715514 ], [ -67.324219, 44.715514 ], [ -67.324219, 44.590467 ], [ -67.500000, 44.590467 ], [ -67.500000, 44.465151 ], [ -67.851562, 44.465151 ], [ -67.851562, 44.339565 ], [ -68.027344, 44.339565 ], [ -68.027344, 44.213710 ], [ -68.378906, 44.213710 ], [ -68.378906, 44.087585 ], [ -68.730469, 44.087585 ], [ -68.730469, 43.961191 ], [ -69.257812, 43.961191 ], [ -69.257812, 43.834527 ], [ -69.785156, 43.834527 ], [ -69.785156, 43.707594 ], [ -70.136719, 43.707594 ], [ -70.136719, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.325178 ], [ -70.488281, 43.325178 ], [ -70.488281, 43.068888 ], [ -70.664062, 43.068888 ], [ -70.664062, 42.940339 ], [ -70.839844, 42.940339 ], [ -70.839844, 42.163403 ], [ -70.664062, 42.163403 ], [ -70.664062, 41.902277 ], [ -70.488281, 41.902277 ], [ -70.488281, 41.771312 ], [ -70.136719, 41.771312 ], [ -70.136719, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.640078 ], [ -70.136719, 41.640078 ], [ -70.136719, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -71.894531, 41.376809 ], [ -71.894531, 41.244772 ], [ -72.949219, 41.244772 ], [ -72.949219, 41.112469 ], [ -73.300781, 41.112469 ], [ -73.300781, 40.979898 ], [ -72.773438, 40.979898 ], [ -72.773438, 41.112469 ], [ -72.246094, 41.112469 ], [ -72.246094, 40.979898 ], [ -72.070312, 40.979898 ], [ -72.070312, 40.847060 ], [ -72.421875, 40.847060 ], [ -72.421875, 40.713956 ], [ -72.949219, 40.713956 ], [ -72.949219, 40.580585 ], [ -74.179688, 40.580585 ], [ -74.179688, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.224673 ], [ -90.703125, 48.224673 ], [ -90.703125, 48.107431 ], [ -90.000000, 48.107431 ], [ -90.000000, 47.989922 ], [ -89.121094, 47.989922 ], [ -89.121094, 48.107431 ], [ -88.769531, 48.107431 ], [ -88.769531, 48.224673 ], [ -88.066406, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.417969, 48.341646 ], [ -88.417969, 48.224673 ], [ -88.066406, 48.224673 ], [ -88.066406, 48.107431 ], [ -87.714844, 48.107431 ], [ -87.714844, 47.989922 ], [ -87.539062, 47.989922 ], [ -87.539062, 47.872144 ], [ -87.187500, 47.872144 ], [ -87.187500, 47.754098 ], [ -86.835938, 47.754098 ], [ -86.835938, 47.635784 ], [ -86.484375, 47.635784 ], [ -86.484375, 47.517201 ], [ -86.308594, 47.517201 ], [ -86.308594, 47.398349 ], [ -85.957031, 47.398349 ], [ -85.957031, 47.279229 ], [ -85.781250, 47.279229 ], [ -85.781250, 47.159840 ], [ -85.429688, 47.159840 ], [ -85.429688, 47.040182 ], [ -85.078125, 47.040182 ], [ -85.078125, 46.920255 ], [ -84.902344, 46.920255 ], [ -84.902344, 46.558860 ], [ -84.550781, 46.558860 ], [ -84.550781, 46.437857 ], [ -84.199219, 46.437857 ], [ -84.199219, 46.195042 ], [ -83.671875, 46.195042 ], [ -83.671875, 46.073231 ], [ -83.496094, 46.073231 ], [ -83.496094, 45.951150 ], [ -83.671875, 45.951150 ], [ -83.671875, 45.706179 ], [ -83.320312, 45.706179 ], [ -83.320312, 45.583290 ], [ -82.968750, 45.583290 ], [ -82.968750, 45.460131 ], [ -82.617188, 45.460131 ], [ -82.617188, 44.964798 ], [ -82.441406, 44.964798 ], [ -82.441406, 43.961191 ], [ -82.265625, 43.961191 ], [ -82.265625, 43.325178 ], [ -82.441406, 43.325178 ], [ -82.441406, 42.940339 ], [ -82.617188, 42.940339 ], [ -82.617188, 42.811522 ], [ -82.792969, 42.811522 ], [ -82.792969, 42.553080 ], [ -82.968750, 42.553080 ], [ -82.968750, 42.293564 ], [ -83.144531, 42.293564 ], [ -83.144531, 41.771312 ], [ -82.265625, 41.771312 ], [ -82.265625, 41.902277 ], [ -81.914062, 41.902277 ], [ -81.914062, 42.032974 ], [ -81.738281, 42.032974 ], [ -81.738281, 42.163403 ], [ -81.386719, 42.163403 ], [ -81.386719, 42.293564 ], [ -80.683594, 42.293564 ], [ -80.683594, 42.423457 ], [ -80.156250, 42.423457 ], [ -80.156250, 42.553080 ], [ -79.804688, 42.553080 ], [ -79.804688, 42.682435 ], [ -79.453125, 42.682435 ], [ -79.453125, 42.811522 ], [ -79.101562, 42.811522 ], [ -79.101562, 42.940339 ], [ -78.925781, 42.940339 ], [ -78.925781, 43.197167 ], [ -79.101562, 43.197167 ], [ -79.101562, 43.452919 ], [ -79.277344, 43.452919 ], [ -79.277344, 43.580391 ], [ -78.925781, 43.580391 ], [ -78.925781, 43.707594 ], [ -76.816406, 43.707594 ], [ -76.816406, 43.961191 ], [ -76.640625, 43.961191 ], [ -76.640625, 44.087585 ], [ -76.464844, 44.087585 ], [ -76.464844, 44.213710 ], [ -76.289062, 44.213710 ], [ -76.289062, 44.339565 ], [ -76.113281, 44.339565 ], [ -76.113281, 44.465151 ], [ -75.761719, 44.465151 ], [ -75.761719, 44.590467 ], [ -75.585938, 44.590467 ], [ -75.585938, 44.715514 ], [ -75.410156, 44.715514 ], [ -75.410156, 44.840291 ], [ -75.234375, 44.840291 ], [ -75.234375, 44.964798 ], [ -74.882812, 44.964798 ], [ -74.882812, 45.089036 ], [ -71.542969, 45.089036 ], [ -71.542969, 45.336702 ], [ -70.839844, 45.336702 ], [ -70.839844, 45.460131 ], [ -70.664062, 45.460131 ], [ -70.664062, 45.583290 ], [ -70.488281, 45.583290 ], [ -70.488281, 45.828799 ], [ -70.312500, 45.828799 ], [ -70.312500, 46.316584 ], [ -70.136719, 46.316584 ], [ -70.136719, 46.800059 ], [ -69.960938, 46.800059 ], [ -69.960938, 46.920255 ], [ -69.785156, 46.920255 ], [ -69.785156, 47.159840 ], [ -69.609375, 47.159840 ], [ -69.609375, 47.279229 ], [ -69.433594, 47.279229 ], [ -69.433594, 47.398349 ], [ -69.082031, 47.398349 ], [ -69.082031, 47.279229 ], [ -68.554688, 47.279229 ], [ -68.554688, 47.398349 ], [ -68.378906, 47.398349 ], [ -68.378906, 47.279229 ], [ -68.027344, 47.279229 ], [ -68.027344, 47.159840 ], [ -67.851562, 47.159840 ], [ -67.851562, 45.583290 ], [ -67.675781, 45.583290 ], [ -67.675781, 45.460131 ], [ -67.500000, 45.460131 ], [ -67.500000, 45.336702 ], [ -67.324219, 45.336702 ], [ -67.324219, 45.213004 ], [ -67.148438, 45.213004 ], [ -67.148438, 44.964798 ], [ -66.972656, 44.964798 ], [ -66.972656, 44.715514 ], [ -67.324219, 44.715514 ], [ -67.324219, 44.590467 ], [ -67.675781, 44.590467 ], [ -67.675781, 44.465151 ], [ -68.027344, 44.465151 ], [ -68.027344, 44.339565 ], [ -68.378906, 44.339565 ], [ -68.378906, 44.213710 ], [ -68.730469, 44.213710 ], [ -68.730469, 44.087585 ], [ -69.082031, 44.087585 ], [ -69.082031, 43.961191 ], [ -69.433594, 43.961191 ], [ -69.433594, 43.834527 ], [ -69.785156, 43.834527 ], [ -69.785156, 43.707594 ], [ -70.136719, 43.707594 ], [ -70.136719, 43.580391 ], [ -70.312500, 43.580391 ], [ -70.312500, 43.452919 ], [ -70.488281, 43.452919 ], [ -70.488281, 43.197167 ], [ -70.664062, 43.197167 ], [ -70.664062, 43.068888 ], [ -70.839844, 43.068888 ], [ -70.839844, 42.163403 ], [ -70.664062, 42.163403 ], [ -70.664062, 41.902277 ], [ -70.136719, 41.902277 ], [ -70.136719, 42.032974 ], [ -69.960938, 42.032974 ], [ -69.960938, 41.771312 ], [ -70.136719, 41.771312 ], [ -70.136719, 41.640078 ], [ -70.312500, 41.640078 ], [ -70.312500, 41.508577 ], [ -71.367188, 41.508577 ], [ -71.367188, 41.376809 ], [ -72.597656, 41.376809 ], [ -72.597656, 41.244772 ], [ -72.246094, 41.244772 ], [ -72.246094, 41.112469 ], [ -72.070312, 41.112469 ], [ -72.070312, 40.979898 ], [ -72.246094, 40.979898 ], [ -72.246094, 40.847060 ], [ -72.949219, 40.847060 ], [ -72.949219, 40.713956 ], [ -74.179688, 40.713956 ], [ -74.179688, 40.580585 ], [ -74.355469, 40.580585 ], [ -74.355469, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.003906, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.341646 ], [ -90.703125, 48.341646 ], [ -90.703125, 48.224673 ], [ -90.000000, 48.224673 ], [ -90.000000, 48.107431 ], [ -88.945312, 48.107431 ], [ -88.945312, 48.224673 ], [ -88.593750, 48.224673 ], [ -88.593750, 48.341646 ], [ -88.417969, 48.341646 ] ], [ [ -73.300781, 41.112469 ], [ -73.476562, 41.112469 ], [ -73.476562, 40.979898 ], [ -73.300781, 40.979898 ], [ -73.300781, 41.112469 ] ], [ [ -72.597656, 41.244772 ], [ -73.125000, 41.244772 ], [ -73.125000, 41.112469 ], [ -72.597656, 41.112469 ], [ -72.597656, 41.244772 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.326948 ], [ -45.527344, 60.326948 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 60.673179 ], [ -46.054688, 60.673179 ], [ -46.054688, 60.759160 ], [ -46.230469, 60.759160 ], [ -46.230469, 60.844911 ], [ -48.515625, 60.844911 ], [ -48.515625, 61.015725 ], [ -48.691406, 61.015725 ], [ -48.691406, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.185625 ], [ -49.042969, 61.185625 ], [ -49.042969, 61.354614 ], [ -49.218750, 61.354614 ], [ -49.218750, 61.522695 ], [ -49.394531, 61.522695 ], [ -49.394531, 61.773123 ], [ -49.570312, 61.773123 ], [ -49.570312, 61.938950 ], [ -49.746094, 61.938950 ], [ -49.746094, 62.186014 ], [ -49.921875, 62.186014 ], [ -49.921875, 62.349609 ], [ -50.097656, 62.349609 ], [ -50.097656, 62.512318 ], [ -50.273438, 62.512318 ], [ -50.273438, 62.674143 ], [ -50.449219, 62.674143 ], [ -50.449219, 62.754726 ], [ -50.625000, 62.754726 ], [ -50.625000, 62.915233 ], [ -50.800781, 62.915233 ], [ -50.800781, 62.995158 ], [ -50.976562, 62.995158 ], [ -50.976562, 63.154355 ], [ -51.152344, 63.154355 ], [ -51.152344, 63.312683 ], [ -51.328125, 63.312683 ], [ -51.328125, 63.391522 ], [ -51.503906, 63.391522 ], [ -51.503906, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 63.704722 ], [ -51.855469, 63.704722 ], [ -51.855469, 63.937372 ], [ -52.031250, 63.937372 ], [ -52.031250, 64.091408 ], [ -52.207031, 64.091408 ], [ -52.207031, 65.146115 ], [ -52.382812, 65.146115 ], [ -52.382812, 65.293468 ], [ -52.558594, 65.293468 ], [ -52.558594, 65.440002 ], [ -52.734375, 65.440002 ], [ -52.734375, 65.512963 ], [ -52.910156, 65.512963 ], [ -52.910156, 65.658275 ], [ -53.085938, 65.658275 ], [ -53.085938, 65.730626 ], [ -53.261719, 65.730626 ], [ -53.261719, 65.874725 ], [ -53.437500, 65.874725 ], [ -53.437500, 66.018018 ], [ -53.613281, 66.018018 ], [ -53.613281, 66.231457 ], [ -53.437500, 66.231457 ], [ -53.437500, 66.652977 ], [ -53.261719, 66.652977 ], [ -53.261719, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.152442 ], [ -44.296875, 60.152442 ], [ -44.296875, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.326948 ], [ -45.527344, 60.326948 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 60.673179 ], [ -46.054688, 60.673179 ], [ -46.054688, 60.759160 ], [ -46.230469, 60.759160 ], [ -46.230469, 60.844911 ], [ -46.406250, 60.844911 ], [ -46.406250, 60.930432 ], [ -48.515625, 60.930432 ], [ -48.515625, 61.015725 ], [ -48.691406, 61.015725 ], [ -48.691406, 61.100789 ], [ -48.867188, 61.100789 ], [ -48.867188, 61.185625 ], [ -49.042969, 61.185625 ], [ -49.042969, 61.270233 ], [ -49.218750, 61.270233 ], [ -49.218750, 61.354614 ], [ -49.394531, 61.354614 ], [ -49.394531, 61.606396 ], [ -49.570312, 61.606396 ], [ -49.570312, 61.938950 ], [ -49.746094, 61.938950 ], [ -49.746094, 62.267923 ], [ -49.921875, 62.267923 ], [ -49.921875, 62.431074 ], [ -50.097656, 62.431074 ], [ -50.097656, 62.593341 ], [ -50.273438, 62.593341 ], [ -50.273438, 62.674143 ], [ -50.449219, 62.674143 ], [ -50.449219, 62.835089 ], [ -50.625000, 62.835089 ], [ -50.625000, 62.915233 ], [ -50.800781, 62.915233 ], [ -50.800781, 63.074866 ], [ -50.976562, 63.074866 ], [ -50.976562, 63.154355 ], [ -51.152344, 63.154355 ], [ -51.152344, 63.312683 ], [ -51.328125, 63.312683 ], [ -51.328125, 63.391522 ], [ -51.503906, 63.391522 ], [ -51.503906, 63.548552 ], [ -51.679688, 63.548552 ], [ -51.679688, 63.704722 ], [ -51.855469, 63.704722 ], [ -51.855469, 63.937372 ], [ -52.031250, 63.937372 ], [ -52.031250, 64.168107 ], [ -52.207031, 64.168107 ], [ -52.207031, 64.774125 ], [ -52.382812, 64.774125 ], [ -52.382812, 65.219894 ], [ -52.558594, 65.219894 ], [ -52.558594, 65.366837 ], [ -52.734375, 65.366837 ], [ -52.734375, 65.512963 ], [ -52.910156, 65.512963 ], [ -52.910156, 65.585720 ], [ -53.085938, 65.585720 ], [ -53.085938, 65.730626 ], [ -53.261719, 65.730626 ], [ -53.261719, 65.802776 ], [ -53.437500, 65.802776 ], [ -53.437500, 65.946472 ], [ -53.613281, 65.946472 ], [ -53.613281, 66.089364 ], [ -53.789062, 66.089364 ], [ -53.789062, 66.302205 ], [ -53.613281, 66.302205 ], [ -53.613281, 66.652977 ], [ -53.437500, 66.652977 ], [ -53.437500, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.253906, 69.900118 ], [ -85.253906, 69.839622 ], [ -84.550781, 69.839622 ], [ -84.550781, 69.778952 ], [ -83.847656, 69.778952 ], [ -83.847656, 69.718107 ], [ -83.144531, 69.718107 ], [ -83.144531, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.595890 ], [ -82.441406, 69.595890 ], [ -82.441406, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.472969 ], [ -82.089844, 69.472969 ], [ -82.089844, 69.411242 ], [ -81.914062, 69.411242 ], [ -81.914062, 69.349339 ], [ -81.738281, 69.349339 ], [ -81.738281, 69.287257 ], [ -81.562500, 69.287257 ], [ -81.562500, 69.224997 ], [ -81.386719, 69.224997 ], [ -81.386719, 69.162558 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.592487 ], [ -81.386719, 68.592487 ], [ -81.386719, 68.463800 ], [ -81.562500, 68.463800 ], [ -81.562500, 68.334376 ], [ -81.738281, 68.334376 ], [ -81.738281, 68.204212 ], [ -81.914062, 68.204212 ], [ -81.914062, 68.073305 ], [ -81.738281, 68.073305 ], [ -81.738281, 67.941650 ], [ -81.562500, 67.941650 ], [ -81.562500, 67.809245 ], [ -81.386719, 67.809245 ], [ -81.386719, 67.676085 ], [ -81.210938, 67.676085 ], [ -81.210938, 67.339861 ], [ -81.386719, 67.339861 ], [ -81.386719, 67.067433 ], [ -81.562500, 67.067433 ], [ -81.562500, 66.998844 ], [ -81.738281, 66.998844 ], [ -81.738281, 66.930060 ], [ -81.914062, 66.930060 ], [ -81.914062, 66.861082 ], [ -82.089844, 66.861082 ], [ -82.089844, 66.791909 ], [ -82.441406, 66.791909 ], [ -82.441406, 66.722541 ], [ -82.617188, 66.722541 ], [ -82.617188, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -82.968750, 66.583217 ], [ -82.968750, 66.513260 ], [ -83.144531, 66.513260 ], [ -83.144531, 66.443107 ], [ -83.496094, 66.443107 ], [ -83.496094, 66.372755 ], [ -83.847656, 66.372755 ], [ -83.847656, 66.302205 ], [ -84.375000, 66.302205 ], [ -84.375000, 66.231457 ], [ -84.902344, 66.231457 ], [ -84.902344, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.429688, 66.372755 ], [ -85.429688, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.372755 ], [ -85.957031, 66.372755 ], [ -85.957031, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.472969 ], [ -90.527344, 69.472969 ], [ -90.527344, 68.463800 ], [ -90.351562, 68.463800 ], [ -90.351562, 68.592487 ], [ -90.175781, 68.592487 ], [ -90.175781, 68.720441 ], [ -90.000000, 68.720441 ], [ -90.000000, 68.847665 ], [ -89.824219, 68.847665 ], [ -89.824219, 68.974164 ], [ -89.648438, 68.974164 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 69.099940 ], [ -88.945312, 69.099940 ], [ -88.945312, 69.037142 ], [ -88.769531, 69.037142 ], [ -88.769531, 68.911005 ], [ -88.593750, 68.911005 ], [ -88.593750, 68.784144 ], [ -88.417969, 68.784144 ], [ -88.417969, 68.720441 ], [ -88.242188, 68.720441 ], [ -88.242188, 68.592487 ], [ -88.066406, 68.592487 ], [ -88.066406, 68.204212 ], [ -88.242188, 68.204212 ], [ -88.242188, 67.809245 ], [ -88.066406, 67.809245 ], [ -88.066406, 67.676085 ], [ -87.890625, 67.676085 ], [ -87.890625, 67.542167 ], [ -87.714844, 67.542167 ], [ -87.714844, 67.407487 ], [ -87.539062, 67.407487 ], [ -87.539062, 67.272043 ], [ -87.363281, 67.272043 ], [ -87.363281, 67.204032 ], [ -87.187500, 67.204032 ], [ -87.187500, 67.339861 ], [ -87.011719, 67.339861 ], [ -87.011719, 67.474922 ], [ -86.835938, 67.474922 ], [ -86.835938, 67.609221 ], [ -86.660156, 67.609221 ], [ -86.660156, 67.742759 ], [ -86.484375, 67.742759 ], [ -86.484375, 67.875541 ], [ -86.308594, 67.875541 ], [ -86.308594, 68.007571 ], [ -86.132812, 68.007571 ], [ -86.132812, 68.204212 ], [ -85.957031, 68.204212 ], [ -85.957031, 68.463800 ], [ -85.781250, 68.463800 ], [ -85.781250, 68.656555 ], [ -85.605469, 68.656555 ], [ -85.605469, 69.900118 ], [ -85.253906, 69.900118 ] ] ], [ [ [ -85.781250, 73.824820 ], [ -85.781250, 73.726595 ], [ -85.957031, 73.726595 ], [ -85.957031, 73.578167 ], [ -86.132812, 73.578167 ], [ -86.132812, 73.378215 ], [ -86.308594, 73.378215 ], [ -86.308594, 73.226700 ], [ -86.484375, 73.226700 ], [ -86.484375, 73.073844 ], [ -86.308594, 73.073844 ], [ -86.308594, 72.919635 ], [ -86.132812, 72.919635 ], [ -86.132812, 72.764065 ], [ -85.957031, 72.764065 ], [ -85.957031, 72.607120 ], [ -85.605469, 72.607120 ], [ -85.605469, 72.764065 ], [ -85.429688, 72.764065 ], [ -85.429688, 72.919635 ], [ -85.253906, 72.919635 ], [ -85.253906, 73.073844 ], [ -85.078125, 73.073844 ], [ -85.078125, 73.226700 ], [ -84.902344, 73.226700 ], [ -84.902344, 73.327858 ], [ -84.726562, 73.327858 ], [ -84.726562, 73.378215 ], [ -84.375000, 73.378215 ], [ -84.375000, 73.428424 ], [ -84.023438, 73.428424 ], [ -84.023438, 73.478485 ], [ -83.671875, 73.478485 ], [ -83.671875, 73.528399 ], [ -83.320312, 73.528399 ], [ -83.320312, 73.578167 ], [ -82.968750, 73.578167 ], [ -82.968750, 73.627789 ], [ -82.617188, 73.627789 ], [ -82.617188, 73.677264 ], [ -82.265625, 73.677264 ], [ -82.265625, 73.627789 ], [ -82.089844, 73.627789 ], [ -82.089844, 73.528399 ], [ -81.914062, 73.528399 ], [ -81.914062, 73.428424 ], [ -81.738281, 73.428424 ], [ -81.738281, 73.327858 ], [ -81.562500, 73.327858 ], [ -81.562500, 73.226700 ], [ -81.386719, 73.226700 ], [ -81.386719, 73.073844 ], [ -81.210938, 73.073844 ], [ -81.210938, 72.971189 ], [ -81.035156, 72.971189 ], [ -81.035156, 72.867930 ], [ -80.859375, 72.867930 ], [ -80.859375, 72.764065 ], [ -80.683594, 72.764065 ], [ -80.683594, 72.073911 ], [ -80.332031, 72.073911 ], [ -80.332031, 72.127936 ], [ -79.980469, 72.127936 ], [ -79.980469, 72.181804 ], [ -79.628906, 72.181804 ], [ -79.628906, 72.235514 ], [ -79.277344, 72.235514 ], [ -79.277344, 72.289067 ], [ -78.925781, 72.289067 ], [ -78.925781, 72.342464 ], [ -78.574219, 72.342464 ], [ -78.574219, 72.448792 ], [ -78.398438, 72.448792 ], [ -78.398438, 72.554498 ], [ -78.222656, 72.554498 ], [ -78.222656, 72.607120 ], [ -78.046875, 72.607120 ], [ -78.046875, 72.711903 ], [ -77.695312, 72.711903 ], [ -77.695312, 72.659588 ], [ -77.343750, 72.659588 ], [ -77.343750, 72.607120 ], [ -77.167969, 72.607120 ], [ -77.167969, 72.554498 ], [ -76.992188, 72.554498 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.448792 ], [ -76.464844, 72.448792 ], [ -76.464844, 72.395706 ], [ -76.289062, 72.395706 ], [ -76.289062, 72.342464 ], [ -75.937500, 72.342464 ], [ -75.937500, 72.289067 ], [ -75.761719, 72.289067 ], [ -75.761719, 72.235514 ], [ -75.585938, 72.235514 ], [ -75.585938, 72.181804 ], [ -75.410156, 72.181804 ], [ -75.410156, 72.127936 ], [ -75.234375, 72.127936 ], [ -75.234375, 72.073911 ], [ -75.058594, 72.073911 ], [ -75.058594, 72.019729 ], [ -74.882812, 72.019729 ], [ -74.882812, 71.910888 ], [ -74.707031, 71.910888 ], [ -74.707031, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.801410 ], [ -74.355469, 71.801410 ], [ -74.355469, 71.746432 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.357067 ], [ -73.828125, 71.357067 ], [ -73.828125, 71.413177 ], [ -73.300781, 71.413177 ], [ -73.300781, 71.469124 ], [ -72.949219, 71.469124 ], [ -72.949219, 71.524909 ], [ -72.421875, 71.524909 ], [ -72.421875, 71.580532 ], [ -72.246094, 71.580532 ], [ -72.246094, 71.524909 ], [ -72.070312, 71.524909 ], [ -72.070312, 71.413177 ], [ -71.894531, 71.413177 ], [ -71.894531, 71.300793 ], [ -71.718750, 71.300793 ], [ -71.718750, 71.187754 ], [ -71.542969, 71.187754 ], [ -71.542969, 71.074056 ], [ -71.367188, 71.074056 ], [ -71.367188, 70.959697 ], [ -71.191406, 70.959697 ], [ -71.191406, 70.902268 ], [ -71.015625, 70.902268 ], [ -71.015625, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.786910 ], [ -70.312500, 70.786910 ], [ -70.312500, 70.728979 ], [ -69.785156, 70.728979 ], [ -69.785156, 70.670881 ], [ -69.433594, 70.670881 ], [ -69.433594, 70.612614 ], [ -69.082031, 70.612614 ], [ -69.082031, 70.554179 ], [ -68.730469, 70.554179 ], [ -68.730469, 70.495574 ], [ -68.554688, 70.495574 ], [ -68.554688, 70.377854 ], [ -68.378906, 70.377854 ], [ -68.378906, 70.318738 ], [ -68.203125, 70.318738 ], [ -68.203125, 70.259452 ], [ -68.027344, 70.259452 ], [ -68.027344, 70.140364 ], [ -67.851562, 70.140364 ], [ -67.851562, 70.020587 ], [ -67.675781, 70.020587 ], [ -67.675781, 69.839622 ], [ -67.500000, 69.839622 ], [ -67.500000, 69.657086 ], [ -67.324219, 69.657086 ], [ -67.324219, 69.411242 ], [ -67.148438, 69.411242 ], [ -67.148438, 69.224997 ], [ -66.972656, 69.224997 ], [ -66.972656, 69.099940 ], [ -67.324219, 69.099940 ], [ -67.324219, 69.037142 ], [ -67.500000, 69.037142 ], [ -67.500000, 68.974164 ], [ -67.675781, 68.974164 ], [ -67.675781, 68.911005 ], [ -68.027344, 68.911005 ], [ -68.027344, 68.847665 ], [ -68.203125, 68.847665 ], [ -68.203125, 68.784144 ], [ -68.554688, 68.784144 ], [ -68.554688, 68.720441 ], [ -68.730469, 68.720441 ], [ -68.730469, 68.656555 ], [ -68.554688, 68.656555 ], [ -68.554688, 68.592487 ], [ -68.203125, 68.592487 ], [ -68.203125, 68.528235 ], [ -68.027344, 68.528235 ], [ -68.027344, 68.463800 ], [ -67.851562, 68.463800 ], [ -67.851562, 68.399180 ], [ -67.500000, 68.399180 ], [ -67.500000, 68.334376 ], [ -67.324219, 68.334376 ], [ -67.324219, 68.269387 ], [ -67.148438, 68.269387 ], [ -67.148438, 68.204212 ], [ -66.796875, 68.204212 ], [ -66.796875, 68.138852 ], [ -66.621094, 68.138852 ], [ -66.621094, 68.073305 ], [ -66.269531, 68.073305 ], [ -66.269531, 68.007571 ], [ -65.742188, 68.007571 ], [ -65.742188, 67.941650 ], [ -65.214844, 67.941650 ], [ -65.214844, 67.875541 ], [ -64.863281, 67.875541 ], [ -64.863281, 67.809245 ], [ -64.687500, 67.809245 ], [ -64.687500, 67.676085 ], [ -64.511719, 67.676085 ], [ -64.511719, 67.542167 ], [ -64.335938, 67.542167 ], [ -64.335938, 67.407487 ], [ -64.160156, 67.407487 ], [ -64.160156, 67.339861 ], [ -63.984375, 67.339861 ], [ -63.984375, 67.204032 ], [ -63.808594, 67.204032 ], [ -63.808594, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -62.753906, 66.930060 ], [ -62.753906, 66.861082 ], [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.160511 ], [ -66.445312, 66.160511 ], [ -66.445312, 66.231457 ], [ -66.621094, 66.231457 ], [ -66.621094, 66.302205 ], [ -66.796875, 66.302205 ], [ -66.796875, 66.372755 ], [ -66.972656, 66.372755 ], [ -66.972656, 66.302205 ], [ -67.675781, 66.302205 ], [ -67.675781, 66.231457 ], [ -68.027344, 66.231457 ], [ -68.027344, 66.160511 ], [ -74.003906, 66.160511 ], [ -74.003906, 66.302205 ], [ -73.828125, 66.302205 ], [ -73.828125, 66.443107 ], [ -73.652344, 66.443107 ], [ -73.652344, 66.583217 ], [ -73.476562, 66.583217 ], [ -73.476562, 66.722541 ], [ -73.300781, 66.722541 ], [ -73.300781, 66.791909 ], [ -73.125000, 66.791909 ], [ -73.125000, 66.930060 ], [ -72.949219, 66.930060 ], [ -72.949219, 67.067433 ], [ -72.773438, 67.067433 ], [ -72.773438, 67.204032 ], [ -72.597656, 67.204032 ], [ -72.597656, 67.339861 ], [ -72.773438, 67.339861 ], [ -72.773438, 67.609221 ], [ -72.949219, 67.609221 ], [ -72.949219, 67.809245 ], [ -73.125000, 67.809245 ], [ -73.125000, 67.941650 ], [ -73.300781, 67.941650 ], [ -73.300781, 68.073305 ], [ -73.476562, 68.073305 ], [ -73.476562, 68.138852 ], [ -73.652344, 68.138852 ], [ -73.652344, 68.204212 ], [ -74.003906, 68.204212 ], [ -74.003906, 68.269387 ], [ -74.179688, 68.269387 ], [ -74.179688, 68.334376 ], [ -74.355469, 68.334376 ], [ -74.355469, 68.399180 ], [ -74.707031, 68.399180 ], [ -74.707031, 68.463800 ], [ -74.882812, 68.463800 ], [ -74.882812, 68.528235 ], [ -75.058594, 68.528235 ], [ -75.058594, 68.592487 ], [ -75.410156, 68.592487 ], [ -75.410156, 68.656555 ], [ -75.761719, 68.656555 ], [ -75.761719, 68.720441 ], [ -76.113281, 68.720441 ], [ -76.113281, 68.784144 ], [ -76.464844, 68.784144 ], [ -76.464844, 68.847665 ], [ -76.816406, 68.847665 ], [ -76.816406, 68.911005 ], [ -76.640625, 68.911005 ], [ -76.640625, 69.037142 ], [ -76.464844, 69.037142 ], [ -76.464844, 69.099940 ], [ -76.289062, 69.099940 ], [ -76.289062, 69.162558 ], [ -76.464844, 69.162558 ], [ -76.464844, 69.287257 ], [ -76.640625, 69.287257 ], [ -76.640625, 69.411242 ], [ -76.816406, 69.411242 ], [ -76.816406, 69.472969 ], [ -76.992188, 69.472969 ], [ -76.992188, 69.595890 ], [ -77.167969, 69.595890 ], [ -77.167969, 69.718107 ], [ -77.343750, 69.718107 ], [ -77.343750, 69.778952 ], [ -77.871094, 69.778952 ], [ -77.871094, 69.839622 ], [ -78.398438, 69.839622 ], [ -78.398438, 69.900118 ], [ -78.574219, 69.900118 ], [ -78.574219, 70.020587 ], [ -78.750000, 70.020587 ], [ -78.750000, 70.080562 ], [ -79.101562, 70.080562 ], [ -79.101562, 70.020587 ], [ -79.277344, 70.020587 ], [ -79.277344, 69.900118 ], [ -79.628906, 69.900118 ], [ -79.628906, 69.839622 ], [ -80.332031, 69.839622 ], [ -80.332031, 69.778952 ], [ -81.035156, 69.778952 ], [ -81.035156, 69.718107 ], [ -81.914062, 69.718107 ], [ -81.914062, 69.778952 ], [ -82.792969, 69.778952 ], [ -82.792969, 69.839622 ], [ -83.671875, 69.839622 ], [ -83.671875, 69.900118 ], [ -84.550781, 69.900118 ], [ -84.550781, 69.960439 ], [ -85.253906, 69.960439 ], [ -85.253906, 70.020587 ], [ -85.605469, 70.020587 ], [ -85.605469, 70.080562 ], [ -86.132812, 70.080562 ], [ -86.132812, 70.140364 ], [ -86.484375, 70.140364 ], [ -86.484375, 70.199994 ], [ -86.835938, 70.199994 ], [ -86.835938, 70.259452 ], [ -87.363281, 70.259452 ], [ -87.363281, 70.318738 ], [ -88.066406, 70.318738 ], [ -88.066406, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.436799 ], [ -88.945312, 70.436799 ], [ -88.945312, 70.554179 ], [ -89.121094, 70.554179 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.728979 ], [ -89.472656, 70.728979 ], [ -89.472656, 70.786910 ], [ -89.296875, 70.786910 ], [ -89.296875, 70.902268 ], [ -89.121094, 70.902268 ], [ -89.121094, 70.959697 ], [ -88.945312, 70.959697 ], [ -88.945312, 71.016960 ], [ -88.769531, 71.016960 ], [ -88.769531, 71.130988 ], [ -88.593750, 71.130988 ], [ -88.593750, 71.187754 ], [ -88.417969, 71.187754 ], [ -88.417969, 71.244356 ], [ -89.824219, 71.244356 ], [ -89.824219, 71.469124 ], [ -90.000000, 71.469124 ], [ -90.000000, 71.965388 ], [ -90.175781, 71.965388 ], [ -90.175781, 72.342464 ], [ -90.000000, 72.342464 ], [ -90.000000, 72.554498 ], [ -89.824219, 72.554498 ], [ -89.824219, 72.764065 ], [ -89.648438, 72.764065 ], [ -89.648438, 72.971189 ], [ -89.472656, 72.971189 ], [ -89.472656, 73.124945 ], [ -89.296875, 73.124945 ], [ -89.296875, 73.226700 ], [ -89.121094, 73.226700 ], [ -89.121094, 73.277353 ], [ -88.945312, 73.277353 ], [ -88.945312, 73.327858 ], [ -88.769531, 73.327858 ], [ -88.769531, 73.428424 ], [ -88.593750, 73.428424 ], [ -88.593750, 73.478485 ], [ -88.417969, 73.478485 ], [ -88.417969, 73.528399 ], [ -88.066406, 73.528399 ], [ -88.066406, 73.578167 ], [ -87.714844, 73.578167 ], [ -87.714844, 73.627789 ], [ -87.187500, 73.627789 ], [ -87.187500, 73.677264 ], [ -86.835938, 73.677264 ], [ -86.835938, 73.726595 ], [ -86.308594, 73.726595 ], [ -86.308594, 73.775780 ], [ -85.957031, 73.775780 ], [ -85.957031, 73.824820 ], [ -85.781250, 73.824820 ] ] ], [ [ [ -85.078125, 77.579959 ], [ -85.078125, 77.655346 ], [ -85.253906, 77.655346 ], [ -85.253906, 77.730282 ], [ -85.429688, 77.730282 ], [ -85.429688, 77.804771 ], [ -85.605469, 77.804771 ], [ -85.605469, 77.878814 ], [ -85.781250, 77.878814 ], [ -85.781250, 77.952414 ], [ -85.957031, 77.952414 ], [ -85.957031, 78.025574 ], [ -86.132812, 78.025574 ], [ -86.132812, 78.098296 ], [ -86.308594, 78.098296 ], [ -86.308594, 78.170582 ], [ -86.484375, 78.170582 ], [ -86.484375, 78.206563 ], [ -86.835938, 78.206563 ], [ -86.835938, 78.242436 ], [ -87.011719, 78.242436 ], [ -87.011719, 78.278201 ], [ -87.363281, 78.278201 ], [ -87.363281, 78.313860 ], [ -87.539062, 78.313860 ], [ -87.539062, 78.349411 ], [ -87.890625, 78.349411 ], [ -87.890625, 78.420193 ], [ -87.714844, 78.420193 ], [ -87.714844, 78.525573 ], [ -87.539062, 78.525573 ], [ -87.539062, 78.595299 ], [ -87.363281, 78.595299 ], [ -87.363281, 78.699106 ], [ -87.187500, 78.699106 ], [ -87.187500, 78.767792 ], [ -87.011719, 78.767792 ], [ -87.011719, 78.801980 ], [ -86.660156, 78.801980 ], [ -86.660156, 78.836065 ], [ -86.484375, 78.836065 ], [ -86.484375, 78.870048 ], [ -86.132812, 78.870048 ], [ -86.132812, 78.903929 ], [ -85.957031, 78.903929 ], [ -85.957031, 78.937708 ], [ -85.781250, 78.937708 ], [ -85.781250, 78.971386 ], [ -85.429688, 78.971386 ], [ -85.429688, 79.071812 ], [ -85.253906, 79.071812 ], [ -85.253906, 79.237185 ], [ -85.078125, 79.237185 ], [ -85.078125, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.004962 ], [ -76.289062, 79.004962 ], [ -76.289062, 78.937708 ], [ -76.113281, 78.937708 ], [ -76.113281, 78.836065 ], [ -75.937500, 78.836065 ], [ -75.937500, 78.767792 ], [ -75.761719, 78.767792 ], [ -75.761719, 78.664608 ], [ -75.585938, 78.664608 ], [ -75.585938, 78.560488 ], [ -75.410156, 78.560488 ], [ -75.410156, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.420193 ], [ -75.761719, 78.420193 ], [ -75.761719, 78.349411 ], [ -75.937500, 78.349411 ], [ -75.937500, 78.278201 ], [ -76.113281, 78.278201 ], [ -76.113281, 78.206563 ], [ -76.289062, 78.206563 ], [ -76.289062, 78.134493 ], [ -76.464844, 78.134493 ], [ -76.464844, 78.098296 ], [ -76.816406, 78.098296 ], [ -76.816406, 78.061989 ], [ -76.992188, 78.061989 ], [ -76.992188, 78.025574 ], [ -77.167969, 78.025574 ], [ -77.167969, 77.989049 ], [ -77.519531, 77.989049 ], [ -77.519531, 77.952414 ], [ -77.695312, 77.952414 ], [ -77.695312, 77.915669 ], [ -77.871094, 77.915669 ], [ -77.871094, 77.841848 ], [ -78.046875, 77.841848 ], [ -78.046875, 77.692870 ], [ -78.222656, 77.692870 ], [ -78.222656, 77.542096 ], [ -78.398438, 77.542096 ], [ -78.398438, 77.466028 ], [ -78.574219, 77.466028 ], [ -78.574219, 77.427824 ], [ -78.750000, 77.427824 ], [ -78.750000, 77.389504 ], [ -78.925781, 77.389504 ], [ -78.925781, 77.351070 ], [ -79.101562, 77.351070 ], [ -79.101562, 77.312520 ], [ -79.277344, 77.312520 ], [ -79.277344, 77.273855 ], [ -79.453125, 77.273855 ], [ -79.453125, 77.235074 ], [ -79.628906, 77.235074 ], [ -79.628906, 77.196176 ], [ -79.804688, 77.196176 ], [ -79.804688, 77.078784 ], [ -79.628906, 77.078784 ], [ -79.628906, 76.999935 ], [ -78.574219, 76.999935 ], [ -78.574219, 77.039418 ], [ -77.871094, 77.039418 ], [ -77.871094, 76.720223 ], [ -78.046875, 76.720223 ], [ -78.046875, 76.679785 ], [ -78.222656, 76.679785 ], [ -78.222656, 76.639226 ], [ -78.398438, 76.639226 ], [ -78.398438, 76.598545 ], [ -78.574219, 76.598545 ], [ -78.574219, 76.557743 ], [ -78.750000, 76.557743 ], [ -78.750000, 76.516819 ], [ -78.925781, 76.516819 ], [ -78.925781, 76.475773 ], [ -79.277344, 76.475773 ], [ -79.277344, 76.434604 ], [ -79.453125, 76.434604 ], [ -79.453125, 76.393312 ], [ -79.628906, 76.393312 ], [ -79.628906, 76.351896 ], [ -79.804688, 76.351896 ], [ -79.804688, 76.310358 ], [ -79.980469, 76.310358 ], [ -79.980469, 76.268695 ], [ -80.156250, 76.268695 ], [ -80.156250, 76.226907 ], [ -80.332031, 76.226907 ], [ -80.332031, 76.184995 ], [ -80.859375, 76.184995 ], [ -80.859375, 76.226907 ], [ -81.210938, 76.226907 ], [ -81.210938, 76.268695 ], [ -81.738281, 76.268695 ], [ -81.738281, 76.310358 ], [ -82.089844, 76.310358 ], [ -82.089844, 76.351896 ], [ -82.617188, 76.351896 ], [ -82.617188, 76.393312 ], [ -82.968750, 76.393312 ], [ -82.968750, 76.434604 ], [ -83.496094, 76.434604 ], [ -83.496094, 76.393312 ], [ -84.550781, 76.393312 ], [ -84.550781, 76.351896 ], [ -85.605469, 76.351896 ], [ -85.605469, 76.310358 ], [ -86.484375, 76.310358 ], [ -86.484375, 76.351896 ], [ -87.011719, 76.351896 ], [ -87.011719, 76.393312 ], [ -87.363281, 76.393312 ], [ -87.363281, 76.434604 ], [ -88.593750, 76.434604 ], [ -88.593750, 76.475773 ], [ -89.472656, 76.475773 ], [ -89.472656, 76.720223 ], [ -89.648438, 76.720223 ], [ -89.648438, 76.960334 ], [ -89.472656, 76.960334 ], [ -89.472656, 76.999935 ], [ -89.121094, 76.999935 ], [ -89.121094, 77.039418 ], [ -88.769531, 77.039418 ], [ -88.769531, 77.078784 ], [ -88.417969, 77.078784 ], [ -88.417969, 77.118032 ], [ -88.066406, 77.118032 ], [ -88.066406, 77.157163 ], [ -87.714844, 77.157163 ], [ -87.714844, 77.312520 ], [ -87.890625, 77.312520 ], [ -87.890625, 77.542096 ], [ -88.066406, 77.542096 ], [ -88.066406, 77.767582 ], [ -88.242188, 77.767582 ], [ -88.242188, 77.915669 ], [ -87.890625, 77.915669 ], [ -87.890625, 77.952414 ], [ -87.714844, 77.952414 ], [ -87.714844, 77.915669 ], [ -87.363281, 77.915669 ], [ -87.363281, 77.878814 ], [ -87.187500, 77.878814 ], [ -87.187500, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.804771 ], [ -86.660156, 77.804771 ], [ -86.660156, 77.767582 ], [ -86.484375, 77.767582 ], [ -86.484375, 77.730282 ], [ -86.132812, 77.730282 ], [ -86.132812, 77.692870 ], [ -85.957031, 77.692870 ], [ -85.957031, 77.655346 ], [ -85.605469, 77.655346 ], [ -85.605469, 77.617709 ], [ -85.429688, 77.617709 ], [ -85.429688, 77.579959 ], [ -85.078125, 77.579959 ] ], [ [ -85.078125, 77.579959 ], [ -85.078125, 77.542096 ], [ -84.902344, 77.542096 ], [ -84.902344, 77.579959 ], [ -85.078125, 77.579959 ] ] ], [ [ [ -90.878906, 76.016094 ], [ -90.703125, 76.016094 ], [ -90.703125, 75.973553 ], [ -90.527344, 75.973553 ], [ -90.527344, 75.930885 ], [ -90.175781, 75.930885 ], [ -90.175781, 75.888091 ], [ -90.000000, 75.888091 ], [ -90.000000, 75.845169 ], [ -89.824219, 75.845169 ], [ -89.824219, 75.802118 ], [ -89.648438, 75.802118 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -88.593750, 75.628632 ], [ -88.593750, 75.584937 ], [ -87.539062, 75.584937 ], [ -87.539062, 75.541113 ], [ -86.835938, 75.541113 ], [ -86.835938, 75.497157 ], [ -86.132812, 75.497157 ], [ -86.132812, 75.541113 ], [ -85.781250, 75.541113 ], [ -85.781250, 75.584937 ], [ -85.429688, 75.584937 ], [ -85.429688, 75.628632 ], [ -85.078125, 75.628632 ], [ -85.078125, 75.672197 ], [ -84.726562, 75.672197 ], [ -84.726562, 75.715633 ], [ -84.199219, 75.715633 ], [ -84.199219, 75.758940 ], [ -83.144531, 75.758940 ], [ -83.144531, 75.802118 ], [ -82.441406, 75.802118 ], [ -82.441406, 75.758940 ], [ -81.738281, 75.758940 ], [ -81.738281, 75.715633 ], [ -81.210938, 75.715633 ], [ -81.210938, 75.672197 ], [ -81.035156, 75.672197 ], [ -81.035156, 75.628632 ], [ -80.859375, 75.628632 ], [ -80.859375, 75.541113 ], [ -80.683594, 75.541113 ], [ -80.683594, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.453071 ], [ -80.332031, 75.453071 ], [ -80.332031, 75.364506 ], [ -80.156250, 75.364506 ], [ -80.156250, 75.320025 ], [ -79.980469, 75.320025 ], [ -79.980469, 75.095633 ], [ -79.804688, 75.095633 ], [ -79.804688, 74.867889 ], [ -79.980469, 74.867889 ], [ -79.980469, 74.775843 ], [ -80.156250, 74.775843 ], [ -80.156250, 74.729615 ], [ -80.332031, 74.729615 ], [ -80.332031, 74.636748 ], [ -80.507812, 74.636748 ], [ -80.507812, 74.590108 ], [ -80.859375, 74.590108 ], [ -80.859375, 74.543330 ], [ -81.210938, 74.543330 ], [ -81.210938, 74.496413 ], [ -81.562500, 74.496413 ], [ -81.562500, 74.449358 ], [ -82.265625, 74.449358 ], [ -82.265625, 74.496413 ], [ -82.968750, 74.496413 ], [ -82.968750, 74.543330 ], [ -83.496094, 74.543330 ], [ -83.496094, 74.496413 ], [ -84.550781, 74.496413 ], [ -84.550781, 74.449358 ], [ -85.605469, 74.449358 ], [ -85.605469, 74.402163 ], [ -88.593750, 74.402163 ], [ -88.593750, 74.449358 ], [ -89.472656, 74.449358 ], [ -89.472656, 74.496413 ], [ -90.175781, 74.496413 ], [ -90.175781, 74.543330 ], [ -90.527344, 74.543330 ], [ -90.527344, 74.590108 ], [ -90.878906, 74.590108 ], [ -90.878906, 76.016094 ] ] ], [ [ [ -75.937500, 68.269387 ], [ -75.937500, 68.204212 ], [ -75.761719, 68.204212 ], [ -75.761719, 68.138852 ], [ -75.410156, 68.138852 ], [ -75.410156, 68.073305 ], [ -75.234375, 68.073305 ], [ -75.234375, 68.007571 ], [ -75.058594, 68.007571 ], [ -75.058594, 67.542167 ], [ -75.234375, 67.542167 ], [ -75.234375, 67.407487 ], [ -75.410156, 67.407487 ], [ -75.410156, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.204032 ], [ -75.761719, 67.204032 ], [ -75.761719, 67.135829 ], [ -76.289062, 67.135829 ], [ -76.289062, 67.067433 ], [ -76.992188, 67.067433 ], [ -76.992188, 67.339861 ], [ -77.167969, 67.339861 ], [ -77.167969, 67.742759 ], [ -76.992188, 67.742759 ], [ -76.992188, 68.007571 ], [ -76.816406, 68.007571 ], [ -76.816406, 68.138852 ], [ -76.464844, 68.138852 ], [ -76.464844, 68.204212 ], [ -76.113281, 68.204212 ], [ -76.113281, 68.269387 ], [ -75.937500, 68.269387 ] ] ], [ [ [ -85.781250, 79.335219 ], [ -85.781250, 79.302640 ], [ -85.957031, 79.302640 ], [ -85.957031, 79.269962 ], [ -86.132812, 79.269962 ], [ -86.132812, 79.237185 ], [ -86.308594, 79.237185 ], [ -86.308594, 79.204309 ], [ -86.484375, 79.204309 ], [ -86.484375, 79.138260 ], [ -86.660156, 79.138260 ], [ -86.660156, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.071812 ], [ -87.011719, 79.071812 ], [ -87.011719, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 79.004962 ], [ -87.363281, 79.004962 ], [ -87.363281, 78.937708 ], [ -87.539062, 78.937708 ], [ -87.539062, 78.870048 ], [ -87.714844, 78.870048 ], [ -87.714844, 78.801980 ], [ -87.890625, 78.801980 ], [ -87.890625, 78.733501 ], [ -88.066406, 78.733501 ], [ -88.066406, 78.664608 ], [ -88.242188, 78.664608 ], [ -88.242188, 78.595299 ], [ -88.417969, 78.595299 ], [ -88.417969, 78.525573 ], [ -88.593750, 78.525573 ], [ -88.593750, 78.455425 ], [ -88.769531, 78.455425 ], [ -88.769531, 78.384855 ], [ -88.945312, 78.384855 ], [ -88.945312, 78.313860 ], [ -89.121094, 78.313860 ], [ -89.121094, 78.278201 ], [ -89.472656, 78.278201 ], [ -89.472656, 78.242436 ], [ -90.351562, 78.242436 ], [ -90.351562, 78.206563 ], [ -90.878906, 78.206563 ], [ -90.878906, 79.335219 ], [ -85.781250, 79.335219 ] ] ], [ [ [ -79.980469, 73.775780 ], [ -79.980469, 73.726595 ], [ -79.277344, 73.726595 ], [ -79.277344, 73.677264 ], [ -78.574219, 73.677264 ], [ -78.574219, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.578167 ], [ -77.871094, 73.578167 ], [ -77.871094, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.478485 ], [ -77.519531, 73.478485 ], [ -77.519531, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.378215 ], [ -77.167969, 73.378215 ], [ -77.167969, 73.327858 ], [ -76.992188, 73.327858 ], [ -76.992188, 73.277353 ], [ -76.816406, 73.277353 ], [ -76.816406, 73.226700 ], [ -76.640625, 73.226700 ], [ -76.640625, 73.175897 ], [ -76.464844, 73.175897 ], [ -76.464844, 73.124945 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -76.992188, 72.816074 ], [ -76.992188, 72.867930 ], [ -78.574219, 72.867930 ], [ -78.574219, 72.816074 ], [ -79.101562, 72.816074 ], [ -79.101562, 72.764065 ], [ -79.804688, 72.764065 ], [ -79.804688, 72.816074 ], [ -79.980469, 72.816074 ], [ -79.980469, 72.919635 ], [ -80.156250, 72.919635 ], [ -80.156250, 73.022592 ], [ -80.332031, 73.022592 ], [ -80.332031, 73.073844 ], [ -80.507812, 73.073844 ], [ -80.507812, 73.175897 ], [ -80.683594, 73.175897 ], [ -80.683594, 73.277353 ], [ -80.859375, 73.277353 ], [ -80.859375, 73.677264 ], [ -80.683594, 73.677264 ], [ -80.683594, 73.726595 ], [ -80.332031, 73.726595 ], [ -80.332031, 73.775780 ], [ -79.980469, 73.775780 ] ] ], [ [ [ -90.527344, 73.873717 ], [ -90.527344, 73.775780 ], [ -90.703125, 73.775780 ], [ -90.703125, 73.677264 ], [ -90.878906, 73.677264 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ] ] ], [ [ [ -90.703125, 76.310358 ], [ -90.878906, 76.310358 ], [ -90.878906, 76.475773 ], [ -90.703125, 76.475773 ], [ -90.703125, 76.310358 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.078125, 69.900118 ], [ -85.078125, 69.839622 ], [ -84.023438, 69.839622 ], [ -84.023438, 69.778952 ], [ -83.320312, 69.778952 ], [ -83.320312, 69.718107 ], [ -82.792969, 69.718107 ], [ -82.792969, 69.657086 ], [ -82.617188, 69.657086 ], [ -82.617188, 69.595890 ], [ -82.441406, 69.595890 ], [ -82.441406, 69.534518 ], [ -82.265625, 69.534518 ], [ -82.265625, 69.472969 ], [ -82.089844, 69.472969 ], [ -82.089844, 69.349339 ], [ -81.914062, 69.349339 ], [ -81.914062, 69.287257 ], [ -81.738281, 69.287257 ], [ -81.738281, 69.224997 ], [ -81.562500, 69.224997 ], [ -81.562500, 69.162558 ], [ -81.386719, 69.162558 ], [ -81.386719, 68.592487 ], [ -81.562500, 68.592487 ], [ -81.562500, 68.463800 ], [ -81.738281, 68.463800 ], [ -81.738281, 68.334376 ], [ -81.914062, 68.334376 ], [ -81.914062, 68.204212 ], [ -82.089844, 68.204212 ], [ -82.089844, 68.073305 ], [ -81.914062, 68.073305 ], [ -81.914062, 67.941650 ], [ -81.738281, 67.941650 ], [ -81.738281, 67.809245 ], [ -81.562500, 67.809245 ], [ -81.562500, 67.676085 ], [ -81.386719, 67.676085 ], [ -81.386719, 67.067433 ], [ -81.562500, 67.067433 ], [ -81.562500, 66.998844 ], [ -81.738281, 66.998844 ], [ -81.738281, 66.930060 ], [ -82.089844, 66.930060 ], [ -82.089844, 66.861082 ], [ -82.265625, 66.861082 ], [ -82.265625, 66.791909 ], [ -82.441406, 66.791909 ], [ -82.441406, 66.722541 ], [ -82.617188, 66.722541 ], [ -82.617188, 66.652977 ], [ -82.792969, 66.652977 ], [ -82.792969, 66.583217 ], [ -83.144531, 66.583217 ], [ -83.144531, 66.513260 ], [ -83.320312, 66.513260 ], [ -83.320312, 66.443107 ], [ -83.671875, 66.443107 ], [ -83.671875, 66.372755 ], [ -84.375000, 66.372755 ], [ -84.375000, 66.302205 ], [ -85.078125, 66.302205 ], [ -85.078125, 66.372755 ], [ -85.253906, 66.372755 ], [ -85.253906, 66.443107 ], [ -85.605469, 66.443107 ], [ -85.605469, 66.513260 ], [ -85.781250, 66.513260 ], [ -85.781250, 66.443107 ], [ -85.957031, 66.443107 ], [ -85.957031, 66.231457 ], [ -86.132812, 66.231457 ], [ -86.132812, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -90.527344, 68.528235 ], [ -90.527344, 68.656555 ], [ -90.351562, 68.656555 ], [ -90.351562, 68.720441 ], [ -90.175781, 68.720441 ], [ -90.175781, 68.847665 ], [ -90.000000, 68.847665 ], [ -90.000000, 68.911005 ], [ -89.824219, 68.911005 ], [ -89.824219, 69.037142 ], [ -89.648438, 69.037142 ], [ -89.648438, 69.099940 ], [ -89.472656, 69.099940 ], [ -89.472656, 69.224997 ], [ -89.121094, 69.224997 ], [ -89.121094, 69.099940 ], [ -88.945312, 69.099940 ], [ -88.945312, 69.037142 ], [ -88.769531, 69.037142 ], [ -88.769531, 68.974164 ], [ -88.593750, 68.974164 ], [ -88.593750, 68.847665 ], [ -88.417969, 68.847665 ], [ -88.417969, 68.784144 ], [ -88.242188, 68.784144 ], [ -88.242188, 68.656555 ], [ -88.066406, 68.656555 ], [ -88.066406, 68.463800 ], [ -88.242188, 68.463800 ], [ -88.242188, 68.073305 ], [ -88.417969, 68.073305 ], [ -88.417969, 67.809245 ], [ -88.242188, 67.809245 ], [ -88.242188, 67.676085 ], [ -88.066406, 67.676085 ], [ -88.066406, 67.542167 ], [ -87.890625, 67.542167 ], [ -87.890625, 67.474922 ], [ -87.714844, 67.474922 ], [ -87.714844, 67.339861 ], [ -87.539062, 67.339861 ], [ -87.539062, 67.204032 ], [ -87.187500, 67.204032 ], [ -87.187500, 67.339861 ], [ -87.011719, 67.339861 ], [ -87.011719, 67.474922 ], [ -86.835938, 67.474922 ], [ -86.835938, 67.609221 ], [ -86.660156, 67.609221 ], [ -86.660156, 67.742759 ], [ -86.484375, 67.742759 ], [ -86.484375, 67.875541 ], [ -86.308594, 67.875541 ], [ -86.308594, 68.007571 ], [ -86.132812, 68.007571 ], [ -86.132812, 68.204212 ], [ -85.957031, 68.204212 ], [ -85.957031, 68.463800 ], [ -85.781250, 68.463800 ], [ -85.781250, 68.656555 ], [ -85.605469, 68.656555 ], [ -85.605469, 69.900118 ], [ -85.078125, 69.900118 ] ] ], [ [ [ -85.957031, 73.824820 ], [ -85.957031, 73.726595 ], [ -86.132812, 73.726595 ], [ -86.132812, 73.578167 ], [ -86.308594, 73.578167 ], [ -86.308594, 73.378215 ], [ -86.484375, 73.378215 ], [ -86.484375, 73.226700 ], [ -86.660156, 73.226700 ], [ -86.660156, 73.073844 ], [ -86.484375, 73.073844 ], [ -86.484375, 72.971189 ], [ -86.308594, 72.971189 ], [ -86.308594, 72.867930 ], [ -86.132812, 72.867930 ], [ -86.132812, 72.711903 ], [ -85.957031, 72.711903 ], [ -85.957031, 72.607120 ], [ -85.605469, 72.607120 ], [ -85.605469, 72.764065 ], [ -85.429688, 72.764065 ], [ -85.429688, 72.971189 ], [ -85.253906, 72.971189 ], [ -85.253906, 73.124945 ], [ -85.078125, 73.124945 ], [ -85.078125, 73.277353 ], [ -84.902344, 73.277353 ], [ -84.902344, 73.378215 ], [ -84.726562, 73.378215 ], [ -84.726562, 73.428424 ], [ -84.375000, 73.428424 ], [ -84.375000, 73.478485 ], [ -84.023438, 73.478485 ], [ -84.023438, 73.528399 ], [ -83.671875, 73.528399 ], [ -83.671875, 73.578167 ], [ -83.496094, 73.578167 ], [ -83.496094, 73.627789 ], [ -83.144531, 73.627789 ], [ -83.144531, 73.677264 ], [ -82.792969, 73.677264 ], [ -82.792969, 73.726595 ], [ -82.265625, 73.726595 ], [ -82.265625, 73.627789 ], [ -82.089844, 73.627789 ], [ -82.089844, 73.528399 ], [ -81.914062, 73.528399 ], [ -81.914062, 73.428424 ], [ -81.738281, 73.428424 ], [ -81.738281, 73.327858 ], [ -81.562500, 73.327858 ], [ -81.562500, 73.226700 ], [ -81.386719, 73.226700 ], [ -81.386719, 73.124945 ], [ -81.210938, 73.124945 ], [ -81.210938, 73.022592 ], [ -81.035156, 73.022592 ], [ -81.035156, 72.919635 ], [ -80.859375, 72.919635 ], [ -80.859375, 72.816074 ], [ -80.683594, 72.816074 ], [ -80.683594, 72.395706 ], [ -80.859375, 72.395706 ], [ -80.859375, 72.073911 ], [ -80.683594, 72.073911 ], [ -80.683594, 72.127936 ], [ -80.332031, 72.127936 ], [ -80.332031, 72.181804 ], [ -79.980469, 72.181804 ], [ -79.980469, 72.235514 ], [ -79.628906, 72.235514 ], [ -79.628906, 72.289067 ], [ -79.277344, 72.289067 ], [ -79.277344, 72.342464 ], [ -78.925781, 72.342464 ], [ -78.925781, 72.395706 ], [ -78.750000, 72.395706 ], [ -78.750000, 72.448792 ], [ -78.574219, 72.448792 ], [ -78.574219, 72.501722 ], [ -78.398438, 72.501722 ], [ -78.398438, 72.607120 ], [ -78.222656, 72.607120 ], [ -78.222656, 72.659588 ], [ -78.046875, 72.659588 ], [ -78.046875, 72.711903 ], [ -77.695312, 72.711903 ], [ -77.695312, 72.659588 ], [ -77.343750, 72.659588 ], [ -77.343750, 72.607120 ], [ -77.167969, 72.607120 ], [ -77.167969, 72.554498 ], [ -76.992188, 72.554498 ], [ -76.992188, 72.501722 ], [ -76.640625, 72.501722 ], [ -76.640625, 72.448792 ], [ -76.464844, 72.448792 ], [ -76.464844, 72.395706 ], [ -76.289062, 72.395706 ], [ -76.289062, 72.342464 ], [ -75.937500, 72.342464 ], [ -75.937500, 72.289067 ], [ -75.761719, 72.289067 ], [ -75.761719, 72.235514 ], [ -75.585938, 72.235514 ], [ -75.585938, 72.181804 ], [ -75.410156, 72.181804 ], [ -75.410156, 72.127936 ], [ -75.234375, 72.127936 ], [ -75.234375, 72.073911 ], [ -75.058594, 72.073911 ], [ -75.058594, 71.965388 ], [ -74.882812, 71.965388 ], [ -74.882812, 71.910888 ], [ -74.707031, 71.910888 ], [ -74.707031, 71.856229 ], [ -74.531250, 71.856229 ], [ -74.531250, 71.801410 ], [ -74.355469, 71.801410 ], [ -74.355469, 71.580532 ], [ -74.179688, 71.580532 ], [ -74.179688, 71.357067 ], [ -73.828125, 71.357067 ], [ -73.828125, 71.413177 ], [ -73.300781, 71.413177 ], [ -73.300781, 71.469124 ], [ -72.949219, 71.469124 ], [ -72.949219, 71.524909 ], [ -72.421875, 71.524909 ], [ -72.421875, 71.580532 ], [ -72.246094, 71.580532 ], [ -72.246094, 71.469124 ], [ -72.070312, 71.469124 ], [ -72.070312, 71.357067 ], [ -71.894531, 71.357067 ], [ -71.894531, 71.244356 ], [ -71.718750, 71.244356 ], [ -71.718750, 71.130988 ], [ -71.542969, 71.130988 ], [ -71.542969, 71.016960 ], [ -71.367188, 71.016960 ], [ -71.367188, 70.902268 ], [ -71.015625, 70.902268 ], [ -71.015625, 70.844673 ], [ -70.664062, 70.844673 ], [ -70.664062, 70.786910 ], [ -70.312500, 70.786910 ], [ -70.312500, 70.728979 ], [ -69.960938, 70.728979 ], [ -69.960938, 70.670881 ], [ -69.609375, 70.670881 ], [ -69.609375, 70.612614 ], [ -69.257812, 70.612614 ], [ -69.257812, 70.554179 ], [ -68.906250, 70.554179 ], [ -68.906250, 70.495574 ], [ -68.730469, 70.495574 ], [ -68.730469, 70.377854 ], [ -68.554688, 70.377854 ], [ -68.554688, 70.318738 ], [ -68.378906, 70.318738 ], [ -68.378906, 70.259452 ], [ -68.203125, 70.259452 ], [ -68.203125, 70.140364 ], [ -68.027344, 70.140364 ], [ -68.027344, 70.020587 ], [ -67.851562, 70.020587 ], [ -67.851562, 69.900118 ], [ -67.675781, 69.900118 ], [ -67.675781, 69.718107 ], [ -67.500000, 69.718107 ], [ -67.500000, 69.595890 ], [ -67.324219, 69.595890 ], [ -67.324219, 69.411242 ], [ -67.148438, 69.411242 ], [ -67.148438, 69.287257 ], [ -66.972656, 69.287257 ], [ -66.972656, 69.162558 ], [ -67.324219, 69.162558 ], [ -67.324219, 69.099940 ], [ -67.500000, 69.099940 ], [ -67.500000, 69.037142 ], [ -67.675781, 69.037142 ], [ -67.675781, 68.974164 ], [ -68.027344, 68.974164 ], [ -68.027344, 68.911005 ], [ -68.203125, 68.911005 ], [ -68.203125, 68.847665 ], [ -68.378906, 68.847665 ], [ -68.378906, 68.784144 ], [ -68.730469, 68.784144 ], [ -68.730469, 68.720441 ], [ -68.906250, 68.720441 ], [ -68.906250, 68.656555 ], [ -68.730469, 68.656555 ], [ -68.730469, 68.592487 ], [ -68.378906, 68.592487 ], [ -68.378906, 68.528235 ], [ -68.203125, 68.528235 ], [ -68.203125, 68.463800 ], [ -68.027344, 68.463800 ], [ -68.027344, 68.399180 ], [ -67.675781, 68.399180 ], [ -67.675781, 68.334376 ], [ -67.500000, 68.334376 ], [ -67.500000, 68.269387 ], [ -67.324219, 68.269387 ], [ -67.324219, 68.204212 ], [ -66.972656, 68.204212 ], [ -66.972656, 68.138852 ], [ -66.796875, 68.138852 ], [ -66.796875, 68.073305 ], [ -66.445312, 68.073305 ], [ -66.445312, 68.007571 ], [ -65.917969, 68.007571 ], [ -65.917969, 67.941650 ], [ -65.214844, 67.941650 ], [ -65.214844, 67.875541 ], [ -64.863281, 67.875541 ], [ -64.863281, 67.809245 ], [ -64.687500, 67.809245 ], [ -64.687500, 67.676085 ], [ -64.511719, 67.676085 ], [ -64.511719, 67.542167 ], [ -64.335938, 67.542167 ], [ -64.335938, 67.407487 ], [ -64.160156, 67.407487 ], [ -64.160156, 67.339861 ], [ -63.984375, 67.339861 ], [ -63.984375, 67.204032 ], [ -63.808594, 67.204032 ], [ -63.808594, 67.067433 ], [ -63.632812, 67.067433 ], [ -63.632812, 66.930060 ], [ -62.753906, 66.930060 ], [ -62.753906, 66.861082 ], [ -61.875000, 66.861082 ], [ -61.875000, 66.652977 ], [ -62.050781, 66.652977 ], [ -62.050781, 66.302205 ], [ -62.226562, 66.302205 ], [ -62.226562, 66.160511 ], [ -66.445312, 66.160511 ], [ -66.445312, 66.231457 ], [ -66.621094, 66.231457 ], [ -66.621094, 66.372755 ], [ -66.796875, 66.372755 ], [ -66.796875, 66.443107 ], [ -66.972656, 66.443107 ], [ -66.972656, 66.372755 ], [ -67.675781, 66.372755 ], [ -67.675781, 66.302205 ], [ -68.027344, 66.302205 ], [ -68.027344, 66.231457 ], [ -68.203125, 66.231457 ], [ -68.203125, 66.160511 ], [ -74.179688, 66.160511 ], [ -74.179688, 66.231457 ], [ -74.003906, 66.231457 ], [ -74.003906, 66.443107 ], [ -73.828125, 66.443107 ], [ -73.828125, 66.583217 ], [ -73.652344, 66.583217 ], [ -73.652344, 66.722541 ], [ -73.476562, 66.722541 ], [ -73.476562, 66.861082 ], [ -73.300781, 66.861082 ], [ -73.300781, 66.998844 ], [ -73.125000, 66.998844 ], [ -73.125000, 67.135829 ], [ -72.949219, 67.135829 ], [ -72.949219, 67.272043 ], [ -72.773438, 67.272043 ], [ -72.773438, 67.542167 ], [ -72.949219, 67.542167 ], [ -72.949219, 67.742759 ], [ -73.125000, 67.742759 ], [ -73.125000, 67.875541 ], [ -73.300781, 67.875541 ], [ -73.300781, 68.007571 ], [ -73.476562, 68.007571 ], [ -73.476562, 68.073305 ], [ -73.652344, 68.073305 ], [ -73.652344, 68.138852 ], [ -73.828125, 68.138852 ], [ -73.828125, 68.204212 ], [ -74.003906, 68.204212 ], [ -74.003906, 68.269387 ], [ -74.179688, 68.269387 ], [ -74.179688, 68.334376 ], [ -74.355469, 68.334376 ], [ -74.355469, 68.399180 ], [ -74.531250, 68.399180 ], [ -74.531250, 68.463800 ], [ -74.707031, 68.463800 ], [ -74.707031, 68.528235 ], [ -74.882812, 68.528235 ], [ -74.882812, 68.592487 ], [ -75.234375, 68.592487 ], [ -75.234375, 68.656555 ], [ -75.585938, 68.656555 ], [ -75.585938, 68.720441 ], [ -76.113281, 68.720441 ], [ -76.113281, 68.784144 ], [ -76.464844, 68.784144 ], [ -76.464844, 68.847665 ], [ -76.816406, 68.847665 ], [ -76.816406, 68.974164 ], [ -76.640625, 68.974164 ], [ -76.640625, 69.037142 ], [ -76.464844, 69.037142 ], [ -76.464844, 69.099940 ], [ -76.289062, 69.099940 ], [ -76.289062, 69.162558 ], [ -76.464844, 69.162558 ], [ -76.464844, 69.287257 ], [ -76.640625, 69.287257 ], [ -76.640625, 69.411242 ], [ -76.816406, 69.411242 ], [ -76.816406, 69.472969 ], [ -76.992188, 69.472969 ], [ -76.992188, 69.595890 ], [ -77.167969, 69.595890 ], [ -77.167969, 69.718107 ], [ -77.343750, 69.718107 ], [ -77.343750, 69.778952 ], [ -77.871094, 69.778952 ], [ -77.871094, 69.839622 ], [ -78.398438, 69.839622 ], [ -78.398438, 69.900118 ], [ -78.574219, 69.900118 ], [ -78.574219, 70.020587 ], [ -78.750000, 70.020587 ], [ -78.750000, 70.080562 ], [ -78.925781, 70.080562 ], [ -78.925781, 70.140364 ], [ -79.277344, 70.140364 ], [ -79.277344, 70.020587 ], [ -79.453125, 70.020587 ], [ -79.453125, 69.900118 ], [ -79.980469, 69.900118 ], [ -79.980469, 69.839622 ], [ -80.859375, 69.839622 ], [ -80.859375, 69.778952 ], [ -81.914062, 69.778952 ], [ -81.914062, 69.839622 ], [ -82.792969, 69.839622 ], [ -82.792969, 69.900118 ], [ -83.847656, 69.900118 ], [ -83.847656, 69.960439 ], [ -84.726562, 69.960439 ], [ -84.726562, 70.020587 ], [ -85.429688, 70.020587 ], [ -85.429688, 70.080562 ], [ -85.957031, 70.080562 ], [ -85.957031, 70.140364 ], [ -86.484375, 70.140364 ], [ -86.484375, 70.199994 ], [ -87.011719, 70.199994 ], [ -87.011719, 70.259452 ], [ -87.539062, 70.259452 ], [ -87.539062, 70.318738 ], [ -88.066406, 70.318738 ], [ -88.066406, 70.377854 ], [ -88.593750, 70.377854 ], [ -88.593750, 70.436799 ], [ -88.945312, 70.436799 ], [ -88.945312, 70.495574 ], [ -89.121094, 70.495574 ], [ -89.121094, 70.612614 ], [ -89.296875, 70.612614 ], [ -89.296875, 70.670881 ], [ -89.472656, 70.670881 ], [ -89.472656, 70.728979 ], [ -89.648438, 70.728979 ], [ -89.648438, 70.786910 ], [ -89.472656, 70.786910 ], [ -89.472656, 70.902268 ], [ -89.296875, 70.902268 ], [ -89.296875, 70.959697 ], [ -89.121094, 70.959697 ], [ -89.121094, 71.016960 ], [ -88.945312, 71.016960 ], [ -88.945312, 71.130988 ], [ -88.769531, 71.130988 ], [ -88.769531, 71.187754 ], [ -88.593750, 71.187754 ], [ -88.593750, 71.244356 ], [ -90.000000, 71.244356 ], [ -90.000000, 71.469124 ], [ -90.175781, 71.469124 ], [ -90.175781, 71.965388 ], [ -90.351562, 71.965388 ], [ -90.351562, 72.289067 ], [ -90.175781, 72.289067 ], [ -90.175781, 72.501722 ], [ -90.000000, 72.501722 ], [ -90.000000, 72.711903 ], [ -89.824219, 72.711903 ], [ -89.824219, 72.867930 ], [ -89.648438, 72.867930 ], [ -89.648438, 73.073844 ], [ -89.472656, 73.073844 ], [ -89.472656, 73.175897 ], [ -89.296875, 73.175897 ], [ -89.296875, 73.277353 ], [ -89.121094, 73.277353 ], [ -89.121094, 73.327858 ], [ -88.945312, 73.327858 ], [ -88.945312, 73.378215 ], [ -88.769531, 73.378215 ], [ -88.769531, 73.478485 ], [ -88.593750, 73.478485 ], [ -88.593750, 73.528399 ], [ -88.417969, 73.528399 ], [ -88.417969, 73.578167 ], [ -88.066406, 73.578167 ], [ -88.066406, 73.627789 ], [ -87.539062, 73.627789 ], [ -87.539062, 73.677264 ], [ -87.011719, 73.677264 ], [ -87.011719, 73.726595 ], [ -86.660156, 73.726595 ], [ -86.660156, 73.775780 ], [ -86.132812, 73.775780 ], [ -86.132812, 73.824820 ], [ -85.957031, 73.824820 ] ] ], [ [ [ -85.253906, 77.579959 ], [ -85.253906, 77.655346 ], [ -85.429688, 77.655346 ], [ -85.429688, 77.730282 ], [ -85.605469, 77.730282 ], [ -85.605469, 77.804771 ], [ -85.781250, 77.804771 ], [ -85.781250, 77.915669 ], [ -85.957031, 77.915669 ], [ -85.957031, 77.989049 ], [ -86.132812, 77.989049 ], [ -86.132812, 78.061989 ], [ -86.308594, 78.061989 ], [ -86.308594, 78.134493 ], [ -86.484375, 78.134493 ], [ -86.484375, 78.206563 ], [ -86.660156, 78.206563 ], [ -86.660156, 78.242436 ], [ -87.011719, 78.242436 ], [ -87.011719, 78.278201 ], [ -87.363281, 78.278201 ], [ -87.363281, 78.313860 ], [ -87.714844, 78.313860 ], [ -87.714844, 78.349411 ], [ -88.066406, 78.349411 ], [ -88.066406, 78.420193 ], [ -87.890625, 78.420193 ], [ -87.890625, 78.490552 ], [ -87.714844, 78.490552 ], [ -87.714844, 78.560488 ], [ -87.539062, 78.560488 ], [ -87.539062, 78.630006 ], [ -87.363281, 78.630006 ], [ -87.363281, 78.699106 ], [ -87.187500, 78.699106 ], [ -87.187500, 78.767792 ], [ -87.011719, 78.767792 ], [ -87.011719, 78.801980 ], [ -86.660156, 78.801980 ], [ -86.660156, 78.836065 ], [ -86.484375, 78.836065 ], [ -86.484375, 78.870048 ], [ -86.132812, 78.870048 ], [ -86.132812, 78.903929 ], [ -85.957031, 78.903929 ], [ -85.957031, 78.937708 ], [ -85.781250, 78.937708 ], [ -85.781250, 78.971386 ], [ -85.429688, 78.971386 ], [ -85.429688, 79.171335 ], [ -85.253906, 79.171335 ], [ -85.253906, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.138260 ], [ -75.937500, 79.138260 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 78.971386 ], [ -76.113281, 78.971386 ], [ -76.113281, 78.870048 ], [ -75.937500, 78.870048 ], [ -75.937500, 78.767792 ], [ -75.761719, 78.767792 ], [ -75.761719, 78.664608 ], [ -75.585938, 78.664608 ], [ -75.585938, 78.560488 ], [ -75.410156, 78.560488 ], [ -75.410156, 78.490552 ], [ -75.585938, 78.490552 ], [ -75.585938, 78.420193 ], [ -75.761719, 78.420193 ], [ -75.761719, 78.384855 ], [ -75.937500, 78.384855 ], [ -75.937500, 78.313860 ], [ -76.113281, 78.313860 ], [ -76.113281, 78.278201 ], [ -76.289062, 78.278201 ], [ -76.289062, 78.206563 ], [ -76.464844, 78.206563 ], [ -76.464844, 78.170582 ], [ -76.640625, 78.170582 ], [ -76.640625, 78.134493 ], [ -76.816406, 78.134493 ], [ -76.816406, 78.098296 ], [ -76.992188, 78.098296 ], [ -76.992188, 78.061989 ], [ -77.343750, 78.061989 ], [ -77.343750, 78.025574 ], [ -77.519531, 78.025574 ], [ -77.519531, 77.989049 ], [ -77.695312, 77.989049 ], [ -77.695312, 77.952414 ], [ -77.871094, 77.952414 ], [ -77.871094, 77.915669 ], [ -78.046875, 77.915669 ], [ -78.046875, 77.804771 ], [ -78.222656, 77.804771 ], [ -78.222656, 77.617709 ], [ -78.398438, 77.617709 ], [ -78.398438, 77.504119 ], [ -78.574219, 77.504119 ], [ -78.574219, 77.466028 ], [ -78.750000, 77.466028 ], [ -78.750000, 77.427824 ], [ -78.925781, 77.427824 ], [ -78.925781, 77.389504 ], [ -79.101562, 77.389504 ], [ -79.101562, 77.351070 ], [ -79.277344, 77.351070 ], [ -79.277344, 77.312520 ], [ -79.453125, 77.312520 ], [ -79.453125, 77.273855 ], [ -79.628906, 77.273855 ], [ -79.628906, 77.235074 ], [ -79.804688, 77.235074 ], [ -79.804688, 77.118032 ], [ -79.628906, 77.118032 ], [ -79.628906, 76.999935 ], [ -78.750000, 76.999935 ], [ -78.750000, 77.039418 ], [ -78.046875, 77.039418 ], [ -78.046875, 76.760541 ], [ -78.222656, 76.760541 ], [ -78.222656, 76.720223 ], [ -78.398438, 76.720223 ], [ -78.398438, 76.679785 ], [ -78.574219, 76.679785 ], [ -78.574219, 76.639226 ], [ -78.750000, 76.639226 ], [ -78.750000, 76.598545 ], [ -78.925781, 76.598545 ], [ -78.925781, 76.557743 ], [ -79.101562, 76.557743 ], [ -79.101562, 76.516819 ], [ -79.277344, 76.516819 ], [ -79.277344, 76.475773 ], [ -79.453125, 76.475773 ], [ -79.453125, 76.434604 ], [ -79.628906, 76.434604 ], [ -79.628906, 76.393312 ], [ -79.804688, 76.393312 ], [ -79.804688, 76.351896 ], [ -79.980469, 76.351896 ], [ -79.980469, 76.310358 ], [ -80.156250, 76.310358 ], [ -80.156250, 76.268695 ], [ -80.332031, 76.268695 ], [ -80.332031, 76.226907 ], [ -80.507812, 76.226907 ], [ -80.507812, 76.184995 ], [ -81.035156, 76.184995 ], [ -81.035156, 76.226907 ], [ -81.386719, 76.226907 ], [ -81.386719, 76.268695 ], [ -81.738281, 76.268695 ], [ -81.738281, 76.310358 ], [ -82.089844, 76.310358 ], [ -82.089844, 76.351896 ], [ -82.441406, 76.351896 ], [ -82.441406, 76.393312 ], [ -82.792969, 76.393312 ], [ -82.792969, 76.434604 ], [ -83.144531, 76.434604 ], [ -83.144531, 76.475773 ], [ -83.496094, 76.475773 ], [ -83.496094, 76.434604 ], [ -84.199219, 76.434604 ], [ -84.199219, 76.393312 ], [ -84.902344, 76.393312 ], [ -84.902344, 76.351896 ], [ -85.605469, 76.351896 ], [ -85.605469, 76.310358 ], [ -86.484375, 76.310358 ], [ -86.484375, 76.351896 ], [ -87.011719, 76.351896 ], [ -87.011719, 76.393312 ], [ -87.539062, 76.393312 ], [ -87.539062, 76.434604 ], [ -88.769531, 76.434604 ], [ -88.769531, 76.475773 ], [ -89.648438, 76.475773 ], [ -89.648438, 76.960334 ], [ -89.472656, 76.960334 ], [ -89.472656, 76.999935 ], [ -89.121094, 76.999935 ], [ -89.121094, 77.039418 ], [ -88.769531, 77.039418 ], [ -88.769531, 77.078784 ], [ -88.593750, 77.078784 ], [ -88.593750, 77.118032 ], [ -88.242188, 77.118032 ], [ -88.242188, 77.157163 ], [ -87.890625, 77.157163 ], [ -87.890625, 77.312520 ], [ -88.066406, 77.312520 ], [ -88.066406, 77.542096 ], [ -88.242188, 77.542096 ], [ -88.242188, 77.767582 ], [ -88.417969, 77.767582 ], [ -88.417969, 77.915669 ], [ -88.066406, 77.915669 ], [ -88.066406, 77.952414 ], [ -87.539062, 77.952414 ], [ -87.539062, 77.915669 ], [ -87.187500, 77.915669 ], [ -87.187500, 77.878814 ], [ -87.011719, 77.878814 ], [ -87.011719, 77.841848 ], [ -86.835938, 77.841848 ], [ -86.835938, 77.804771 ], [ -86.660156, 77.804771 ], [ -86.660156, 77.767582 ], [ -86.308594, 77.767582 ], [ -86.308594, 77.730282 ], [ -86.132812, 77.730282 ], [ -86.132812, 77.692870 ], [ -85.957031, 77.692870 ], [ -85.957031, 77.655346 ], [ -85.781250, 77.655346 ], [ -85.781250, 77.617709 ], [ -85.429688, 77.617709 ], [ -85.429688, 77.579959 ], [ -85.253906, 77.579959 ] ], [ [ -85.253906, 77.579959 ], [ -85.253906, 77.542096 ], [ -85.078125, 77.542096 ], [ -85.078125, 77.579959 ], [ -85.253906, 77.579959 ] ] ], [ [ [ -90.527344, 76.016094 ], [ -90.527344, 75.973553 ], [ -90.351562, 75.973553 ], [ -90.351562, 75.930885 ], [ -90.000000, 75.930885 ], [ -90.000000, 75.888091 ], [ -89.824219, 75.888091 ], [ -89.824219, 75.845169 ], [ -89.648438, 75.845169 ], [ -89.648438, 75.758940 ], [ -89.472656, 75.758940 ], [ -89.472656, 75.672197 ], [ -89.296875, 75.672197 ], [ -89.296875, 75.628632 ], [ -88.769531, 75.628632 ], [ -88.769531, 75.584937 ], [ -87.714844, 75.584937 ], [ -87.714844, 75.541113 ], [ -87.011719, 75.541113 ], [ -87.011719, 75.497157 ], [ -86.308594, 75.497157 ], [ -86.308594, 75.541113 ], [ -85.957031, 75.541113 ], [ -85.957031, 75.584937 ], [ -85.605469, 75.584937 ], [ -85.605469, 75.628632 ], [ -85.253906, 75.628632 ], [ -85.253906, 75.672197 ], [ -84.902344, 75.672197 ], [ -84.902344, 75.715633 ], [ -84.199219, 75.715633 ], [ -84.199219, 75.758940 ], [ -83.144531, 75.758940 ], [ -83.144531, 75.802118 ], [ -82.441406, 75.802118 ], [ -82.441406, 75.758940 ], [ -81.738281, 75.758940 ], [ -81.738281, 75.715633 ], [ -81.210938, 75.715633 ], [ -81.210938, 75.672197 ], [ -81.035156, 75.672197 ], [ -81.035156, 75.628632 ], [ -80.859375, 75.628632 ], [ -80.859375, 75.541113 ], [ -80.683594, 75.541113 ], [ -80.683594, 75.497157 ], [ -80.507812, 75.497157 ], [ -80.507812, 75.453071 ], [ -80.332031, 75.453071 ], [ -80.332031, 75.364506 ], [ -80.156250, 75.364506 ], [ -80.156250, 75.140778 ], [ -79.980469, 75.140778 ], [ -79.980469, 74.913708 ], [ -80.156250, 74.913708 ], [ -80.156250, 74.821934 ], [ -80.332031, 74.821934 ], [ -80.332031, 74.729615 ], [ -80.507812, 74.729615 ], [ -80.507812, 74.636748 ], [ -80.859375, 74.636748 ], [ -80.859375, 74.590108 ], [ -81.210938, 74.590108 ], [ -81.210938, 74.543330 ], [ -81.562500, 74.543330 ], [ -81.562500, 74.496413 ], [ -81.914062, 74.496413 ], [ -81.914062, 74.449358 ], [ -82.441406, 74.449358 ], [ -82.441406, 74.496413 ], [ -82.792969, 74.496413 ], [ -82.792969, 74.543330 ], [ -83.144531, 74.543330 ], [ -83.144531, 74.590108 ], [ -83.671875, 74.590108 ], [ -83.671875, 74.543330 ], [ -84.550781, 74.543330 ], [ -84.550781, 74.496413 ], [ -85.605469, 74.496413 ], [ -85.605469, 74.449358 ], [ -87.011719, 74.449358 ], [ -87.011719, 74.402163 ], [ -88.593750, 74.402163 ], [ -88.593750, 74.449358 ], [ -89.121094, 74.449358 ], [ -89.121094, 74.496413 ], [ -89.648438, 74.496413 ], [ -89.648438, 74.543330 ], [ -90.175781, 74.543330 ], [ -90.175781, 74.590108 ], [ -90.527344, 74.590108 ], [ -90.527344, 74.636748 ], [ -90.878906, 74.636748 ], [ -90.878906, 76.016094 ], [ -90.527344, 76.016094 ] ] ], [ [ [ -75.937500, 68.334376 ], [ -75.937500, 68.269387 ], [ -75.761719, 68.269387 ], [ -75.761719, 68.204212 ], [ -75.585938, 68.204212 ], [ -75.585938, 68.138852 ], [ -75.410156, 68.138852 ], [ -75.410156, 68.073305 ], [ -75.234375, 68.073305 ], [ -75.234375, 67.407487 ], [ -75.410156, 67.407487 ], [ -75.410156, 67.339861 ], [ -75.585938, 67.339861 ], [ -75.585938, 67.272043 ], [ -75.761719, 67.272043 ], [ -75.761719, 67.204032 ], [ -76.289062, 67.204032 ], [ -76.289062, 67.135829 ], [ -76.992188, 67.135829 ], [ -76.992188, 67.204032 ], [ -77.167969, 67.204032 ], [ -77.167969, 67.474922 ], [ -77.343750, 67.474922 ], [ -77.343750, 67.676085 ], [ -77.167969, 67.676085 ], [ -77.167969, 67.875541 ], [ -76.992188, 67.875541 ], [ -76.992188, 68.073305 ], [ -76.816406, 68.073305 ], [ -76.816406, 68.204212 ], [ -76.464844, 68.204212 ], [ -76.464844, 68.269387 ], [ -76.113281, 68.269387 ], [ -76.113281, 68.334376 ], [ -75.937500, 68.334376 ] ] ], [ [ [ -85.957031, 79.335219 ], [ -85.957031, 79.302640 ], [ -86.132812, 79.302640 ], [ -86.132812, 79.269962 ], [ -86.308594, 79.269962 ], [ -86.308594, 79.237185 ], [ -86.484375, 79.237185 ], [ -86.484375, 79.204309 ], [ -86.660156, 79.204309 ], [ -86.660156, 79.138260 ], [ -86.835938, 79.138260 ], [ -86.835938, 79.105086 ], [ -87.011719, 79.105086 ], [ -87.011719, 79.071812 ], [ -87.187500, 79.071812 ], [ -87.187500, 79.038437 ], [ -87.363281, 79.038437 ], [ -87.363281, 78.971386 ], [ -87.539062, 78.971386 ], [ -87.539062, 78.903929 ], [ -87.714844, 78.903929 ], [ -87.714844, 78.836065 ], [ -87.890625, 78.836065 ], [ -87.890625, 78.767792 ], [ -88.066406, 78.767792 ], [ -88.066406, 78.699106 ], [ -88.242188, 78.699106 ], [ -88.242188, 78.630006 ], [ -88.417969, 78.630006 ], [ -88.417969, 78.560488 ], [ -88.593750, 78.560488 ], [ -88.593750, 78.490552 ], [ -88.769531, 78.490552 ], [ -88.769531, 78.420193 ], [ -88.945312, 78.420193 ], [ -88.945312, 78.349411 ], [ -89.121094, 78.349411 ], [ -89.121094, 78.313860 ], [ -89.472656, 78.313860 ], [ -89.472656, 78.278201 ], [ -90.351562, 78.278201 ], [ -90.351562, 78.242436 ], [ -90.878906, 78.242436 ], [ -90.878906, 79.335219 ], [ -85.957031, 79.335219 ] ] ], [ [ [ -79.980469, 73.775780 ], [ -79.980469, 73.726595 ], [ -78.925781, 73.726595 ], [ -78.925781, 73.677264 ], [ -78.222656, 73.677264 ], [ -78.222656, 73.627789 ], [ -78.046875, 73.627789 ], [ -78.046875, 73.578167 ], [ -77.871094, 73.578167 ], [ -77.871094, 73.528399 ], [ -77.695312, 73.528399 ], [ -77.695312, 73.478485 ], [ -77.519531, 73.478485 ], [ -77.519531, 73.428424 ], [ -77.343750, 73.428424 ], [ -77.343750, 73.327858 ], [ -77.167969, 73.327858 ], [ -77.167969, 73.277353 ], [ -76.992188, 73.277353 ], [ -76.992188, 73.226700 ], [ -76.816406, 73.226700 ], [ -76.816406, 73.175897 ], [ -76.640625, 73.175897 ], [ -76.640625, 73.124945 ], [ -76.464844, 73.124945 ], [ -76.464844, 72.971189 ], [ -76.289062, 72.971189 ], [ -76.289062, 72.867930 ], [ -78.046875, 72.867930 ], [ -78.046875, 72.919635 ], [ -78.574219, 72.919635 ], [ -78.574219, 72.867930 ], [ -78.925781, 72.867930 ], [ -78.925781, 72.816074 ], [ -79.277344, 72.816074 ], [ -79.277344, 72.764065 ], [ -79.804688, 72.764065 ], [ -79.804688, 72.816074 ], [ -79.980469, 72.816074 ], [ -79.980469, 72.919635 ], [ -80.156250, 72.919635 ], [ -80.156250, 72.971189 ], [ -80.332031, 72.971189 ], [ -80.332031, 73.073844 ], [ -80.507812, 73.073844 ], [ -80.507812, 73.175897 ], [ -80.683594, 73.175897 ], [ -80.683594, 73.226700 ], [ -80.859375, 73.226700 ], [ -80.859375, 73.327858 ], [ -81.035156, 73.327858 ], [ -81.035156, 73.528399 ], [ -80.859375, 73.528399 ], [ -80.859375, 73.726595 ], [ -80.507812, 73.726595 ], [ -80.507812, 73.775780 ], [ -79.980469, 73.775780 ] ] ], [ [ [ -90.527344, 73.873717 ], [ -90.527344, 73.824820 ], [ -90.703125, 73.824820 ], [ -90.703125, 73.726595 ], [ -90.878906, 73.726595 ], [ -90.878906, 73.873717 ], [ -90.527344, 73.873717 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.679688, 70.612614 ], [ -51.679688, 70.670881 ], [ -51.855469, 70.670881 ], [ -51.855469, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.786910 ], [ -52.207031, 70.786910 ], [ -52.207031, 70.902268 ], [ -52.382812, 70.902268 ], [ -52.382812, 70.959697 ], [ -52.558594, 70.959697 ], [ -52.558594, 71.016960 ], [ -52.734375, 71.016960 ], [ -52.734375, 71.074056 ], [ -52.910156, 71.074056 ], [ -52.910156, 71.130988 ], [ -53.085938, 71.130988 ], [ -53.085938, 71.187754 ], [ -53.261719, 71.187754 ], [ -53.261719, 71.244356 ], [ -53.437500, 71.244356 ], [ -53.437500, 71.357067 ], [ -53.613281, 71.357067 ], [ -53.613281, 71.413177 ], [ -53.789062, 71.413177 ], [ -53.789062, 71.469124 ], [ -53.964844, 71.469124 ], [ -53.964844, 71.524909 ], [ -54.140625, 71.524909 ], [ -54.140625, 71.469124 ], [ -54.667969, 71.469124 ], [ -54.667969, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.469124 ], [ -55.371094, 71.469124 ], [ -55.371094, 71.524909 ], [ -55.722656, 71.524909 ], [ -55.722656, 71.580532 ], [ -55.898438, 71.580532 ], [ -55.898438, 71.691293 ], [ -55.722656, 71.691293 ], [ -55.722656, 71.801410 ], [ -55.546875, 71.801410 ], [ -55.546875, 71.965388 ], [ -55.371094, 71.965388 ], [ -55.371094, 72.127936 ], [ -55.195312, 72.127936 ], [ -55.195312, 72.235514 ], [ -55.019531, 72.235514 ], [ -55.019531, 72.395706 ], [ -54.843750, 72.395706 ], [ -54.843750, 72.501722 ], [ -54.667969, 72.501722 ], [ -54.667969, 72.607120 ], [ -54.843750, 72.607120 ], [ -54.843750, 72.711903 ], [ -55.019531, 72.711903 ], [ -55.019531, 72.816074 ], [ -55.195312, 72.816074 ], [ -55.195312, 72.919635 ], [ -55.371094, 72.919635 ], [ -55.371094, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.175897 ], [ -55.722656, 73.175897 ], [ -55.722656, 73.378215 ], [ -55.898438, 73.378215 ], [ -55.898438, 73.528399 ], [ -56.074219, 73.528399 ], [ -56.074219, 73.677264 ], [ -56.250000, 73.677264 ], [ -56.250000, 73.824820 ], [ -56.425781, 73.824820 ], [ -56.425781, 74.019543 ], [ -56.601562, 74.019543 ], [ -56.601562, 74.164085 ], [ -56.777344, 74.164085 ], [ -56.777344, 74.307353 ], [ -56.953125, 74.307353 ], [ -56.953125, 74.496413 ], [ -57.128906, 74.496413 ], [ -57.128906, 74.636748 ], [ -57.304688, 74.636748 ], [ -57.304688, 74.729615 ], [ -57.480469, 74.729615 ], [ -57.480469, 74.775843 ], [ -57.656250, 74.775843 ], [ -57.656250, 74.821934 ], [ -57.832031, 74.821934 ], [ -57.832031, 74.913708 ], [ -58.007812, 74.913708 ], [ -58.007812, 74.959392 ], [ -58.183594, 74.959392 ], [ -58.183594, 75.004940 ], [ -58.359375, 75.004940 ], [ -58.359375, 75.050354 ], [ -58.535156, 75.050354 ], [ -58.535156, 75.497157 ], [ -58.710938, 75.497157 ], [ -58.710938, 75.541113 ], [ -58.886719, 75.541113 ], [ -58.886719, 75.584937 ], [ -59.062500, 75.584937 ], [ -59.062500, 75.628632 ], [ -59.414062, 75.628632 ], [ -59.414062, 75.672197 ], [ -59.589844, 75.672197 ], [ -59.589844, 75.715633 ], [ -59.765625, 75.715633 ], [ -59.765625, 75.758940 ], [ -59.941406, 75.758940 ], [ -59.941406, 75.802118 ], [ -60.117188, 75.802118 ], [ -60.117188, 75.845169 ], [ -60.292969, 75.845169 ], [ -60.292969, 75.888091 ], [ -60.468750, 75.888091 ], [ -60.468750, 75.930885 ], [ -60.820312, 75.930885 ], [ -60.820312, 75.973553 ], [ -60.996094, 75.973553 ], [ -60.996094, 76.016094 ], [ -61.171875, 76.016094 ], [ -61.171875, 76.058508 ], [ -61.347656, 76.058508 ], [ -61.347656, 76.100796 ], [ -62.050781, 76.100796 ], [ -62.050781, 76.142958 ], [ -63.105469, 76.142958 ], [ -63.105469, 76.184995 ], [ -64.687500, 76.184995 ], [ -64.687500, 76.142958 ], [ -66.621094, 76.142958 ], [ -66.621094, 76.100796 ], [ -67.851562, 76.100796 ], [ -67.851562, 76.058508 ], [ -68.730469, 76.058508 ], [ -68.730469, 76.142958 ], [ -68.906250, 76.142958 ], [ -68.906250, 76.184995 ], [ -69.082031, 76.184995 ], [ -69.082031, 76.226907 ], [ -69.257812, 76.226907 ], [ -69.257812, 76.310358 ], [ -69.433594, 76.310358 ], [ -69.433594, 76.351896 ], [ -69.609375, 76.351896 ], [ -69.609375, 76.393312 ], [ -69.785156, 76.393312 ], [ -69.785156, 76.475773 ], [ -69.960938, 76.475773 ], [ -69.960938, 76.516819 ], [ -70.136719, 76.516819 ], [ -70.136719, 76.598545 ], [ -70.312500, 76.598545 ], [ -70.312500, 76.639226 ], [ -70.488281, 76.639226 ], [ -70.488281, 76.720223 ], [ -70.664062, 76.720223 ], [ -70.664062, 76.760541 ], [ -70.839844, 76.760541 ], [ -70.839844, 76.840816 ], [ -71.015625, 76.840816 ], [ -71.015625, 76.880775 ], [ -71.191406, 76.880775 ], [ -71.191406, 76.960334 ], [ -71.367188, 76.960334 ], [ -71.367188, 76.999935 ], [ -71.191406, 76.999935 ], [ -71.191406, 77.039418 ], [ -70.839844, 77.039418 ], [ -70.839844, 77.078784 ], [ -70.488281, 77.078784 ], [ -70.488281, 77.118032 ], [ -70.136719, 77.118032 ], [ -70.136719, 77.157163 ], [ -69.785156, 77.157163 ], [ -69.785156, 77.196176 ], [ -69.433594, 77.196176 ], [ -69.433594, 77.235074 ], [ -69.082031, 77.235074 ], [ -69.082031, 77.273855 ], [ -68.730469, 77.273855 ], [ -68.730469, 77.312520 ], [ -68.203125, 77.312520 ], [ -68.203125, 77.351070 ], [ -67.148438, 77.351070 ], [ -67.148438, 77.389504 ], [ -67.324219, 77.389504 ], [ -67.324219, 77.427824 ], [ -68.027344, 77.427824 ], [ -68.027344, 77.466028 ], [ -68.730469, 77.466028 ], [ -68.730469, 77.504119 ], [ -69.433594, 77.504119 ], [ -69.433594, 77.542096 ], [ -70.136719, 77.542096 ], [ -70.136719, 77.579959 ], [ -70.839844, 77.579959 ], [ -70.839844, 77.617709 ], [ -71.191406, 77.617709 ], [ -71.191406, 77.655346 ], [ -71.367188, 77.655346 ], [ -71.367188, 77.692870 ], [ -71.542969, 77.692870 ], [ -71.542969, 77.730282 ], [ -71.718750, 77.730282 ], [ -71.718750, 77.767582 ], [ -71.894531, 77.767582 ], [ -71.894531, 77.804771 ], [ -72.070312, 77.804771 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.878814 ], [ -72.597656, 77.878814 ], [ -72.597656, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.952414 ], [ -72.949219, 77.952414 ], [ -72.949219, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.025574 ], [ -73.300781, 78.025574 ], [ -73.300781, 78.242436 ], [ -73.125000, 78.242436 ], [ -73.125000, 78.420193 ], [ -72.949219, 78.420193 ], [ -72.949219, 78.455425 ], [ -72.597656, 78.455425 ], [ -72.597656, 78.490552 ], [ -72.421875, 78.490552 ], [ -72.421875, 78.525573 ], [ -72.070312, 78.525573 ], [ -72.070312, 78.560488 ], [ -71.894531, 78.560488 ], [ -71.894531, 78.595299 ], [ -71.542969, 78.595299 ], [ -71.542969, 78.630006 ], [ -71.367188, 78.630006 ], [ -71.367188, 78.664608 ], [ -71.015625, 78.664608 ], [ -71.015625, 78.699106 ], [ -70.839844, 78.699106 ], [ -70.839844, 78.733501 ], [ -70.488281, 78.733501 ], [ -70.488281, 78.767792 ], [ -70.312500, 78.767792 ], [ -70.312500, 78.801980 ], [ -69.960938, 78.801980 ], [ -69.960938, 78.836065 ], [ -69.785156, 78.836065 ], [ -69.785156, 78.870048 ], [ -69.433594, 78.870048 ], [ -69.433594, 78.903929 ], [ -69.257812, 78.903929 ], [ -69.257812, 78.937708 ], [ -68.906250, 78.937708 ], [ -68.906250, 78.971386 ], [ -68.730469, 78.971386 ], [ -68.730469, 79.004962 ], [ -68.378906, 79.004962 ], [ -68.378906, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -67.851562, 79.071812 ], [ -67.851562, 79.105086 ], [ -67.675781, 79.105086 ], [ -67.675781, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.148438, 79.171335 ], [ -67.148438, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.621094, 79.237185 ], [ -66.621094, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.093750, 79.302640 ], [ -66.093750, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.613281, 66.160511 ], [ -53.613281, 66.302205 ], [ -53.437500, 66.302205 ], [ -53.437500, 66.652977 ], [ -53.261719, 66.652977 ], [ -53.261719, 66.861082 ], [ -53.437500, 66.861082 ], [ -53.437500, 66.930060 ], [ -53.613281, 66.930060 ], [ -53.613281, 67.067433 ], [ -53.789062, 67.067433 ], [ -53.789062, 67.135829 ], [ -53.964844, 67.135829 ], [ -53.964844, 67.272043 ], [ -53.789062, 67.272043 ], [ -53.789062, 67.474922 ], [ -53.613281, 67.474922 ], [ -53.613281, 67.676085 ], [ -53.437500, 67.676085 ], [ -53.437500, 67.809245 ], [ -53.261719, 67.809245 ], [ -53.261719, 68.007571 ], [ -53.085938, 68.007571 ], [ -53.085938, 68.204212 ], [ -52.910156, 68.204212 ], [ -52.910156, 68.334376 ], [ -52.734375, 68.334376 ], [ -52.734375, 68.399180 ], [ -52.382812, 68.399180 ], [ -52.382812, 68.463800 ], [ -52.207031, 68.463800 ], [ -52.207031, 68.528235 ], [ -52.031250, 68.528235 ], [ -52.031250, 68.592487 ], [ -51.679688, 68.592487 ], [ -51.679688, 68.656555 ], [ -51.503906, 68.656555 ], [ -51.503906, 68.784144 ], [ -51.328125, 68.784144 ], [ -51.328125, 69.037142 ], [ -51.152344, 69.037142 ], [ -51.152344, 69.349339 ], [ -50.976562, 69.349339 ], [ -50.976562, 69.718107 ], [ -50.800781, 69.718107 ], [ -50.800781, 69.839622 ], [ -51.152344, 69.839622 ], [ -51.152344, 69.778952 ], [ -51.328125, 69.778952 ], [ -51.328125, 69.718107 ], [ -51.503906, 69.718107 ], [ -51.503906, 69.657086 ], [ -51.855469, 69.657086 ], [ -51.855469, 69.595890 ], [ -52.031250, 69.595890 ], [ -52.031250, 69.534518 ], [ -52.207031, 69.534518 ], [ -52.207031, 69.472969 ], [ -52.382812, 69.472969 ], [ -52.382812, 69.411242 ], [ -52.734375, 69.411242 ], [ -52.734375, 69.349339 ], [ -53.085938, 69.349339 ], [ -53.085938, 69.287257 ], [ -53.613281, 69.287257 ], [ -53.613281, 69.349339 ], [ -53.964844, 69.349339 ], [ -53.964844, 69.411242 ], [ -54.140625, 69.411242 ], [ -54.140625, 69.472969 ], [ -54.316406, 69.472969 ], [ -54.316406, 69.534518 ], [ -54.667969, 69.534518 ], [ -54.667969, 70.436799 ], [ -54.492188, 70.436799 ], [ -54.492188, 70.670881 ], [ -54.316406, 70.670881 ], [ -54.316406, 70.844673 ], [ -53.261719, 70.844673 ], [ -53.261719, 70.786910 ], [ -52.910156, 70.786910 ], [ -52.910156, 70.728979 ], [ -52.558594, 70.728979 ], [ -52.558594, 70.670881 ], [ -52.031250, 70.670881 ], [ -52.031250, 70.612614 ], [ -51.679688, 70.612614 ] ], [ [ -51.679688, 70.612614 ], [ -51.679688, 70.554179 ], [ -51.503906, 70.554179 ], [ -51.503906, 70.612614 ], [ -51.679688, 70.612614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.855469, 70.670881 ], [ -51.855469, 70.728979 ], [ -52.031250, 70.728979 ], [ -52.031250, 70.786910 ], [ -52.207031, 70.786910 ], [ -52.207031, 70.844673 ], [ -52.382812, 70.844673 ], [ -52.382812, 70.959697 ], [ -52.558594, 70.959697 ], [ -52.558594, 71.016960 ], [ -52.734375, 71.016960 ], [ -52.734375, 71.074056 ], [ -52.910156, 71.074056 ], [ -52.910156, 71.130988 ], [ -53.085938, 71.130988 ], [ -53.085938, 71.187754 ], [ -53.261719, 71.187754 ], [ -53.261719, 71.244356 ], [ -53.437500, 71.244356 ], [ -53.437500, 71.300793 ], [ -53.613281, 71.300793 ], [ -53.613281, 71.413177 ], [ -53.789062, 71.413177 ], [ -53.789062, 71.469124 ], [ -53.964844, 71.469124 ], [ -53.964844, 71.524909 ], [ -54.492188, 71.524909 ], [ -54.492188, 71.469124 ], [ -54.843750, 71.469124 ], [ -54.843750, 71.413177 ], [ -55.195312, 71.413177 ], [ -55.195312, 71.469124 ], [ -55.371094, 71.469124 ], [ -55.371094, 71.524909 ], [ -55.546875, 71.524909 ], [ -55.546875, 71.580532 ], [ -55.722656, 71.580532 ], [ -55.722656, 71.635993 ], [ -55.898438, 71.635993 ], [ -55.898438, 71.746432 ], [ -55.722656, 71.746432 ], [ -55.722656, 71.910888 ], [ -55.546875, 71.910888 ], [ -55.546875, 72.073911 ], [ -55.371094, 72.073911 ], [ -55.371094, 72.181804 ], [ -55.195312, 72.181804 ], [ -55.195312, 72.342464 ], [ -55.019531, 72.342464 ], [ -55.019531, 72.501722 ], [ -54.843750, 72.501722 ], [ -54.843750, 72.659588 ], [ -55.019531, 72.659588 ], [ -55.019531, 72.764065 ], [ -55.195312, 72.764065 ], [ -55.195312, 72.867930 ], [ -55.371094, 72.867930 ], [ -55.371094, 73.022592 ], [ -55.546875, 73.022592 ], [ -55.546875, 73.175897 ], [ -55.722656, 73.175897 ], [ -55.722656, 73.327858 ], [ -55.898438, 73.327858 ], [ -55.898438, 73.428424 ], [ -56.074219, 73.428424 ], [ -56.074219, 73.578167 ], [ -56.250000, 73.578167 ], [ -56.250000, 73.726595 ], [ -56.425781, 73.726595 ], [ -56.425781, 73.873717 ], [ -56.601562, 73.873717 ], [ -56.601562, 74.019543 ], [ -56.777344, 74.019543 ], [ -56.777344, 74.211983 ], [ -56.953125, 74.211983 ], [ -56.953125, 74.354828 ], [ -57.128906, 74.354828 ], [ -57.128906, 74.496413 ], [ -57.304688, 74.496413 ], [ -57.304688, 74.636748 ], [ -57.480469, 74.636748 ], [ -57.480469, 74.729615 ], [ -57.656250, 74.729615 ], [ -57.656250, 74.775843 ], [ -57.832031, 74.775843 ], [ -57.832031, 74.867889 ], [ -58.007812, 74.867889 ], [ -58.007812, 74.913708 ], [ -58.183594, 74.913708 ], [ -58.183594, 74.959392 ], [ -58.359375, 74.959392 ], [ -58.359375, 75.050354 ], [ -58.535156, 75.050354 ], [ -58.535156, 75.095633 ], [ -58.710938, 75.095633 ], [ -58.710938, 75.541113 ], [ -58.886719, 75.541113 ], [ -58.886719, 75.584937 ], [ -59.062500, 75.584937 ], [ -59.062500, 75.628632 ], [ -59.238281, 75.628632 ], [ -59.238281, 75.672197 ], [ -59.414062, 75.672197 ], [ -59.414062, 75.715633 ], [ -59.589844, 75.715633 ], [ -59.589844, 75.758940 ], [ -59.765625, 75.758940 ], [ -59.765625, 75.802118 ], [ -59.941406, 75.802118 ], [ -59.941406, 75.845169 ], [ -60.292969, 75.845169 ], [ -60.292969, 75.888091 ], [ -60.468750, 75.888091 ], [ -60.468750, 75.930885 ], [ -60.644531, 75.930885 ], [ -60.644531, 75.973553 ], [ -60.820312, 75.973553 ], [ -60.820312, 76.016094 ], [ -60.996094, 76.016094 ], [ -60.996094, 76.058508 ], [ -61.171875, 76.058508 ], [ -61.171875, 76.100796 ], [ -61.347656, 76.100796 ], [ -61.347656, 76.142958 ], [ -62.578125, 76.142958 ], [ -62.578125, 76.184995 ], [ -64.687500, 76.184995 ], [ -64.687500, 76.142958 ], [ -67.148438, 76.142958 ], [ -67.148438, 76.100796 ], [ -68.730469, 76.100796 ], [ -68.730469, 76.142958 ], [ -68.906250, 76.142958 ], [ -68.906250, 76.184995 ], [ -69.082031, 76.184995 ], [ -69.082031, 76.226907 ], [ -69.257812, 76.226907 ], [ -69.257812, 76.268695 ], [ -69.433594, 76.268695 ], [ -69.433594, 76.310358 ], [ -69.609375, 76.310358 ], [ -69.609375, 76.351896 ], [ -69.785156, 76.351896 ], [ -69.785156, 76.393312 ], [ -69.960938, 76.393312 ], [ -69.960938, 76.475773 ], [ -70.136719, 76.475773 ], [ -70.136719, 76.557743 ], [ -70.312500, 76.557743 ], [ -70.312500, 76.598545 ], [ -70.488281, 76.598545 ], [ -70.488281, 76.679785 ], [ -70.664062, 76.679785 ], [ -70.664062, 76.720223 ], [ -70.839844, 76.720223 ], [ -70.839844, 76.800739 ], [ -71.015625, 76.800739 ], [ -71.015625, 76.880775 ], [ -71.191406, 76.880775 ], [ -71.191406, 76.920614 ], [ -71.367188, 76.920614 ], [ -71.367188, 76.999935 ], [ -71.542969, 76.999935 ], [ -71.542969, 77.039418 ], [ -71.367188, 77.039418 ], [ -71.367188, 77.078784 ], [ -71.015625, 77.078784 ], [ -71.015625, 77.118032 ], [ -70.664062, 77.118032 ], [ -70.664062, 77.157163 ], [ -70.312500, 77.157163 ], [ -70.312500, 77.196176 ], [ -69.960938, 77.196176 ], [ -69.960938, 77.235074 ], [ -69.609375, 77.235074 ], [ -69.609375, 77.273855 ], [ -69.257812, 77.273855 ], [ -69.257812, 77.312520 ], [ -68.906250, 77.312520 ], [ -68.906250, 77.351070 ], [ -67.675781, 77.351070 ], [ -67.675781, 77.389504 ], [ -67.148438, 77.389504 ], [ -67.148438, 77.427824 ], [ -67.851562, 77.427824 ], [ -67.851562, 77.466028 ], [ -68.378906, 77.466028 ], [ -68.378906, 77.504119 ], [ -69.082031, 77.504119 ], [ -69.082031, 77.542096 ], [ -69.785156, 77.542096 ], [ -69.785156, 77.579959 ], [ -70.312500, 77.579959 ], [ -70.312500, 77.617709 ], [ -71.015625, 77.617709 ], [ -71.015625, 77.655346 ], [ -71.367188, 77.655346 ], [ -71.367188, 77.692870 ], [ -71.542969, 77.692870 ], [ -71.542969, 77.730282 ], [ -71.718750, 77.730282 ], [ -71.718750, 77.767582 ], [ -71.894531, 77.767582 ], [ -71.894531, 77.804771 ], [ -72.070312, 77.804771 ], [ -72.070312, 77.841848 ], [ -72.421875, 77.841848 ], [ -72.421875, 77.878814 ], [ -72.597656, 77.878814 ], [ -72.597656, 77.915669 ], [ -72.773438, 77.915669 ], [ -72.773438, 77.952414 ], [ -72.949219, 77.952414 ], [ -72.949219, 77.989049 ], [ -73.125000, 77.989049 ], [ -73.125000, 78.025574 ], [ -73.300781, 78.025574 ], [ -73.300781, 78.455425 ], [ -73.125000, 78.455425 ], [ -73.125000, 78.490552 ], [ -72.773438, 78.490552 ], [ -72.773438, 78.525573 ], [ -72.597656, 78.525573 ], [ -72.597656, 78.560488 ], [ -72.246094, 78.560488 ], [ -72.246094, 78.595299 ], [ -71.894531, 78.595299 ], [ -71.894531, 78.630006 ], [ -71.718750, 78.630006 ], [ -71.718750, 78.664608 ], [ -71.367188, 78.664608 ], [ -71.367188, 78.699106 ], [ -71.191406, 78.699106 ], [ -71.191406, 78.733501 ], [ -70.839844, 78.733501 ], [ -70.839844, 78.767792 ], [ -70.664062, 78.767792 ], [ -70.664062, 78.801980 ], [ -70.312500, 78.801980 ], [ -70.312500, 78.836065 ], [ -69.960938, 78.836065 ], [ -69.960938, 78.870048 ], [ -69.785156, 78.870048 ], [ -69.785156, 78.903929 ], [ -69.433594, 78.903929 ], [ -69.433594, 78.937708 ], [ -69.257812, 78.937708 ], [ -69.257812, 78.971386 ], [ -68.906250, 78.971386 ], [ -68.906250, 79.004962 ], [ -68.730469, 79.004962 ], [ -68.730469, 79.038437 ], [ -68.378906, 79.038437 ], [ -68.378906, 79.071812 ], [ -68.203125, 79.071812 ], [ -68.203125, 79.105086 ], [ -67.851562, 79.105086 ], [ -67.851562, 79.138260 ], [ -67.675781, 79.138260 ], [ -67.675781, 79.171335 ], [ -67.324219, 79.171335 ], [ -67.324219, 79.204309 ], [ -67.148438, 79.204309 ], [ -67.148438, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.269962 ], [ -66.621094, 79.269962 ], [ -66.621094, 79.302640 ], [ -66.269531, 79.302640 ], [ -66.269531, 79.335219 ], [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.789062, 66.160511 ], [ -53.789062, 66.302205 ], [ -53.613281, 66.302205 ], [ -53.613281, 66.652977 ], [ -53.437500, 66.652977 ], [ -53.437500, 66.861082 ], [ -53.613281, 66.861082 ], [ -53.613281, 66.930060 ], [ -53.789062, 66.930060 ], [ -53.789062, 67.067433 ], [ -53.964844, 67.067433 ], [ -53.964844, 67.135829 ], [ -54.140625, 67.135829 ], [ -54.140625, 67.272043 ], [ -53.964844, 67.272043 ], [ -53.964844, 67.474922 ], [ -53.789062, 67.474922 ], [ -53.789062, 67.676085 ], [ -53.613281, 67.676085 ], [ -53.613281, 67.875541 ], [ -53.437500, 67.875541 ], [ -53.437500, 68.073305 ], [ -53.261719, 68.073305 ], [ -53.261719, 68.269387 ], [ -53.085938, 68.269387 ], [ -53.085938, 68.399180 ], [ -52.910156, 68.399180 ], [ -52.910156, 68.463800 ], [ -52.558594, 68.463800 ], [ -52.558594, 68.528235 ], [ -52.382812, 68.528235 ], [ -52.382812, 68.592487 ], [ -52.031250, 68.592487 ], [ -52.031250, 68.656555 ], [ -51.855469, 68.656555 ], [ -51.855469, 68.720441 ], [ -51.503906, 68.720441 ], [ -51.503906, 68.847665 ], [ -51.328125, 68.847665 ], [ -51.328125, 69.037142 ], [ -51.152344, 69.037142 ], [ -51.152344, 69.534518 ], [ -50.976562, 69.534518 ], [ -50.976562, 69.900118 ], [ -51.152344, 69.900118 ], [ -51.152344, 69.839622 ], [ -51.328125, 69.839622 ], [ -51.328125, 69.778952 ], [ -51.503906, 69.778952 ], [ -51.503906, 69.718107 ], [ -51.679688, 69.718107 ], [ -51.679688, 69.657086 ], [ -51.855469, 69.657086 ], [ -51.855469, 69.595890 ], [ -52.031250, 69.595890 ], [ -52.031250, 69.534518 ], [ -52.382812, 69.534518 ], [ -52.382812, 69.472969 ], [ -52.558594, 69.472969 ], [ -52.558594, 69.411242 ], [ -52.910156, 69.411242 ], [ -52.910156, 69.349339 ], [ -53.261719, 69.349339 ], [ -53.261719, 69.287257 ], [ -53.789062, 69.287257 ], [ -53.789062, 69.349339 ], [ -53.964844, 69.349339 ], [ -53.964844, 69.411242 ], [ -54.140625, 69.411242 ], [ -54.140625, 69.472969 ], [ -54.492188, 69.472969 ], [ -54.492188, 69.534518 ], [ -54.667969, 69.534518 ], [ -54.667969, 69.595890 ], [ -54.843750, 69.595890 ], [ -54.843750, 70.436799 ], [ -54.667969, 70.436799 ], [ -54.667969, 70.670881 ], [ -54.492188, 70.670881 ], [ -54.492188, 70.844673 ], [ -53.261719, 70.844673 ], [ -53.261719, 70.786910 ], [ -52.734375, 70.786910 ], [ -52.734375, 70.728979 ], [ -52.382812, 70.728979 ], [ -52.382812, 70.670881 ], [ -51.855469, 70.670881 ] ], [ [ -51.855469, 70.670881 ], [ -51.855469, 70.612614 ], [ -51.679688, 70.612614 ], [ -51.679688, 70.670881 ], [ -51.855469, 70.670881 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.527344, 80.647035 ], [ -90.527344, 80.618424 ], [ -90.351562, 80.618424 ], [ -90.351562, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.824219, 80.560943 ], [ -89.824219, 80.532071 ], [ -89.648438, 80.532071 ], [ -89.648438, 80.503112 ], [ -89.472656, 80.503112 ], [ -89.472656, 80.474065 ], [ -89.121094, 80.474065 ], [ -89.121094, 80.444931 ], [ -88.945312, 80.444931 ], [ -88.945312, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.386396 ], [ -88.417969, 80.386396 ], [ -88.417969, 80.356995 ], [ -88.066406, 80.356995 ], [ -88.066406, 80.327506 ], [ -87.890625, 80.327506 ], [ -87.890625, 80.238501 ], [ -87.714844, 80.238501 ], [ -87.714844, 80.118564 ], [ -87.539062, 80.118564 ], [ -87.539062, 79.997168 ], [ -87.363281, 79.997168 ], [ -87.363281, 79.843346 ], [ -87.187500, 79.843346 ], [ -87.187500, 79.718605 ], [ -87.011719, 79.718605 ], [ -87.011719, 79.624056 ], [ -86.835938, 79.624056 ], [ -86.835938, 79.560546 ], [ -86.660156, 79.560546 ], [ -86.660156, 79.528647 ], [ -86.484375, 79.528647 ], [ -86.484375, 79.496652 ], [ -86.308594, 79.496652 ], [ -86.308594, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.400085 ], [ -85.957031, 79.400085 ], [ -85.957031, 79.335219 ], [ -85.781250, 79.335219 ], [ -85.781250, 79.302640 ], [ -85.957031, 79.302640 ], [ -85.957031, 79.269962 ], [ -86.132812, 79.269962 ], [ -86.132812, 79.237185 ], [ -86.308594, 79.237185 ], [ -86.308594, 79.204309 ], [ -86.484375, 79.204309 ], [ -86.484375, 79.138260 ], [ -86.660156, 79.138260 ], [ -86.660156, 79.105086 ], [ -86.835938, 79.105086 ], [ -86.835938, 79.071812 ], [ -87.011719, 79.071812 ], [ -87.011719, 79.038437 ], [ -87.187500, 79.038437 ], [ -87.187500, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ] ] ], [ [ [ -72.597656, 83.236426 ], [ -72.597656, 83.215693 ], [ -71.894531, 83.215693 ], [ -71.894531, 83.194896 ], [ -71.191406, 83.194896 ], [ -71.191406, 83.174035 ], [ -70.488281, 83.174035 ], [ -70.488281, 83.153111 ], [ -69.785156, 83.153111 ], [ -69.785156, 83.132123 ], [ -69.082031, 83.132123 ], [ -69.082031, 83.111071 ], [ -68.378906, 83.111071 ], [ -68.378906, 83.089955 ], [ -67.675781, 83.089955 ], [ -67.675781, 83.068774 ], [ -66.972656, 83.068774 ], [ -66.972656, 83.047529 ], [ -66.269531, 83.047529 ], [ -66.269531, 83.026219 ], [ -65.742188, 83.026219 ], [ -65.742188, 83.004844 ], [ -65.390625, 83.004844 ], [ -65.390625, 82.983404 ], [ -65.039062, 82.983404 ], [ -65.039062, 82.961898 ], [ -64.687500, 82.961898 ], [ -64.687500, 82.940327 ], [ -64.335938, 82.940327 ], [ -64.335938, 82.918690 ], [ -63.984375, 82.918690 ], [ -63.984375, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.875218 ], [ -63.457031, 82.875218 ], [ -63.457031, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.831480 ], [ -63.105469, 82.831480 ], [ -63.105469, 82.787476 ], [ -62.929688, 82.787476 ], [ -62.929688, 82.765373 ], [ -62.753906, 82.765373 ], [ -62.753906, 82.743202 ], [ -62.578125, 82.743202 ], [ -62.578125, 82.720964 ], [ -62.402344, 82.720964 ], [ -62.402344, 82.698659 ], [ -62.226562, 82.698659 ], [ -62.226562, 82.653843 ], [ -62.050781, 82.653843 ], [ -62.050781, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.332382 ], [ -62.050781, 82.332382 ], [ -62.050781, 82.308893 ], [ -62.226562, 82.308893 ], [ -62.226562, 82.261699 ], [ -62.402344, 82.261699 ], [ -62.402344, 82.237994 ], [ -62.578125, 82.237994 ], [ -62.578125, 82.214217 ], [ -62.753906, 82.214217 ], [ -62.753906, 82.166446 ], [ -62.929688, 82.166446 ], [ -62.929688, 82.142451 ], [ -63.105469, 82.142451 ], [ -63.105469, 82.118384 ], [ -63.281250, 82.118384 ], [ -63.281250, 82.094243 ], [ -63.457031, 82.094243 ], [ -63.457031, 82.045740 ], [ -63.632812, 82.045740 ], [ -63.632812, 82.021378 ], [ -63.808594, 82.021378 ], [ -63.808594, 81.996942 ], [ -63.984375, 81.996942 ], [ -63.984375, 81.947846 ], [ -64.160156, 81.947846 ], [ -64.160156, 81.923186 ], [ -64.335938, 81.923186 ], [ -64.335938, 81.898451 ], [ -64.687500, 81.898451 ], [ -64.687500, 81.873641 ], [ -65.039062, 81.873641 ], [ -65.039062, 81.848756 ], [ -65.390625, 81.848756 ], [ -65.390625, 81.823794 ], [ -65.566406, 81.823794 ], [ -65.566406, 81.798757 ], [ -65.917969, 81.798757 ], [ -65.917969, 81.773644 ], [ -66.269531, 81.773644 ], [ -66.269531, 81.748454 ], [ -66.621094, 81.748454 ], [ -66.621094, 81.723188 ], [ -66.796875, 81.723188 ], [ -66.796875, 81.697844 ], [ -66.972656, 81.697844 ], [ -66.972656, 81.646927 ], [ -67.148438, 81.646927 ], [ -67.148438, 81.595699 ], [ -67.324219, 81.595699 ], [ -67.324219, 81.544159 ], [ -67.500000, 81.544159 ], [ -67.500000, 81.492306 ], [ -66.445312, 81.492306 ], [ -66.445312, 81.518272 ], [ -65.566406, 81.518272 ], [ -65.566406, 81.492306 ], [ -65.742188, 81.492306 ], [ -65.742188, 81.440137 ], [ -65.917969, 81.440137 ], [ -65.917969, 81.387650 ], [ -66.093750, 81.387650 ], [ -66.093750, 81.334844 ], [ -66.269531, 81.334844 ], [ -66.269531, 81.308321 ], [ -66.445312, 81.308321 ], [ -66.445312, 81.255032 ], [ -66.621094, 81.255032 ], [ -66.621094, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.147481 ], [ -66.972656, 81.147481 ], [ -66.972656, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 81.065957 ], [ -67.324219, 81.065957 ], [ -67.324219, 81.011194 ], [ -67.500000, 81.011194 ], [ -67.500000, 80.956099 ], [ -67.675781, 80.956099 ], [ -67.675781, 80.900669 ], [ -67.851562, 80.900669 ], [ -67.851562, 80.872827 ], [ -68.027344, 80.872827 ], [ -68.027344, 80.844901 ], [ -68.203125, 80.844901 ], [ -68.203125, 80.816891 ], [ -68.378906, 80.816891 ], [ -68.378906, 80.788795 ], [ -68.554688, 80.788795 ], [ -68.554688, 80.760615 ], [ -68.730469, 80.760615 ], [ -68.730469, 80.703997 ], [ -68.906250, 80.703997 ], [ -68.906250, 80.675559 ], [ -69.082031, 80.675559 ], [ -69.082031, 80.647035 ], [ -69.257812, 80.647035 ], [ -69.257812, 80.618424 ], [ -69.433594, 80.618424 ], [ -69.433594, 80.560943 ], [ -69.609375, 80.560943 ], [ -69.609375, 80.474065 ], [ -69.785156, 80.474065 ], [ -69.785156, 80.415707 ], [ -69.960938, 80.415707 ], [ -69.960938, 80.327506 ], [ -70.136719, 80.327506 ], [ -70.136719, 80.238501 ], [ -70.312500, 80.238501 ], [ -70.312500, 80.178713 ], [ -70.488281, 80.178713 ], [ -70.488281, 80.088352 ], [ -70.664062, 80.088352 ], [ -70.664062, 79.997168 ], [ -70.839844, 79.997168 ], [ -70.839844, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.843346 ], [ -71.191406, 79.843346 ], [ -71.191406, 79.781164 ], [ -71.542969, 79.781164 ], [ -71.542969, 79.749932 ], [ -71.894531, 79.749932 ], [ -71.894531, 79.718605 ], [ -72.246094, 79.718605 ], [ -72.246094, 79.687184 ], [ -72.597656, 79.687184 ], [ -72.597656, 79.655668 ], [ -72.949219, 79.655668 ], [ -72.949219, 79.624056 ], [ -73.300781, 79.624056 ], [ -73.300781, 79.592349 ], [ -73.476562, 79.592349 ], [ -73.476562, 79.528647 ], [ -73.652344, 79.528647 ], [ -73.652344, 79.464560 ], [ -73.828125, 79.464560 ], [ -73.828125, 79.432371 ], [ -74.179688, 79.432371 ], [ -74.179688, 79.400085 ], [ -75.234375, 79.400085 ], [ -75.234375, 79.367701 ], [ -76.289062, 79.367701 ], [ -76.289062, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.105086 ], [ -75.937500, 79.105086 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.004962 ], [ -85.429688, 79.004962 ], [ -85.429688, 79.071812 ], [ -85.253906, 79.071812 ], [ -85.253906, 79.237185 ], [ -85.078125, 79.237185 ], [ -85.078125, 79.335219 ], [ -85.253906, 79.335219 ], [ -85.253906, 79.400085 ], [ -85.429688, 79.400085 ], [ -85.429688, 79.464560 ], [ -85.605469, 79.464560 ], [ -85.605469, 79.496652 ], [ -85.781250, 79.496652 ], [ -85.781250, 79.560546 ], [ -85.957031, 79.560546 ], [ -85.957031, 79.592349 ], [ -86.132812, 79.592349 ], [ -86.132812, 79.655668 ], [ -86.308594, 79.655668 ], [ -86.308594, 79.718605 ], [ -86.484375, 79.718605 ], [ -86.484375, 79.812302 ], [ -86.660156, 79.812302 ], [ -86.660156, 79.997168 ], [ -86.835938, 79.997168 ], [ -86.835938, 80.148684 ], [ -87.011719, 80.148684 ], [ -87.011719, 80.238501 ], [ -85.781250, 80.238501 ], [ -85.781250, 80.208652 ], [ -84.199219, 80.208652 ], [ -84.199219, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.148684 ], [ -83.847656, 80.148684 ], [ -83.847656, 80.118564 ], [ -83.671875, 80.118564 ], [ -83.671875, 80.088352 ], [ -83.320312, 80.088352 ], [ -83.320312, 80.148684 ], [ -83.144531, 80.148684 ], [ -83.144531, 80.178713 ], [ -82.968750, 80.178713 ], [ -82.968750, 80.238501 ], [ -82.792969, 80.238501 ], [ -82.792969, 80.268259 ], [ -82.617188, 80.268259 ], [ -82.617188, 80.297927 ], [ -82.441406, 80.297927 ], [ -82.441406, 80.356995 ], [ -82.265625, 80.356995 ], [ -82.265625, 80.386396 ], [ -82.089844, 80.386396 ], [ -82.089844, 80.444931 ], [ -81.914062, 80.444931 ], [ -81.914062, 80.474065 ], [ -82.265625, 80.474065 ], [ -82.265625, 80.503112 ], [ -82.792969, 80.503112 ], [ -82.792969, 80.532071 ], [ -83.320312, 80.532071 ], [ -83.320312, 80.560943 ], [ -83.847656, 80.560943 ], [ -83.847656, 80.589727 ], [ -84.550781, 80.589727 ], [ -84.550781, 80.560943 ], [ -85.605469, 80.560943 ], [ -85.605469, 80.532071 ], [ -86.835938, 80.532071 ], [ -86.835938, 80.503112 ], [ -87.714844, 80.503112 ], [ -87.714844, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.589727 ], [ -88.066406, 80.589727 ], [ -88.066406, 80.618424 ], [ -88.242188, 80.618424 ], [ -88.242188, 80.647035 ], [ -88.417969, 80.647035 ], [ -88.417969, 80.675559 ], [ -88.593750, 80.675559 ], [ -88.593750, 80.703997 ], [ -88.769531, 80.703997 ], [ -88.769531, 80.760615 ], [ -88.945312, 80.760615 ], [ -88.945312, 80.788795 ], [ -89.121094, 80.788795 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.872827 ], [ -89.472656, 80.872827 ], [ -89.472656, 80.956099 ], [ -89.648438, 80.956099 ], [ -89.648438, 81.038617 ], [ -89.824219, 81.038617 ], [ -89.824219, 81.120388 ], [ -90.000000, 81.120388 ], [ -90.000000, 81.201420 ], [ -90.175781, 81.201420 ], [ -90.175781, 81.255032 ], [ -90.351562, 81.255032 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.361287 ], [ -90.703125, 81.361287 ], [ -90.703125, 81.413933 ], [ -90.878906, 81.413933 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -88.769531, 82.118384 ], [ -88.769531, 82.142451 ], [ -88.417969, 82.142451 ], [ -88.417969, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 82.190368 ], [ -87.890625, 82.190368 ], [ -87.890625, 82.214217 ], [ -87.539062, 82.214217 ], [ -87.539062, 82.237994 ], [ -87.363281, 82.237994 ], [ -87.363281, 82.261699 ], [ -87.011719, 82.261699 ], [ -87.011719, 82.285331 ], [ -86.835938, 82.285331 ], [ -86.835938, 82.332382 ], [ -86.660156, 82.332382 ], [ -86.660156, 82.379147 ], [ -86.484375, 82.379147 ], [ -86.484375, 82.425629 ], [ -86.308594, 82.425629 ], [ -86.308594, 82.471829 ], [ -86.132812, 82.471829 ], [ -86.132812, 82.494824 ], [ -85.957031, 82.494824 ], [ -85.957031, 82.540604 ], [ -85.781250, 82.540604 ], [ -85.781250, 82.586106 ], [ -85.605469, 82.586106 ], [ -85.605469, 82.631333 ], [ -85.429688, 82.631333 ], [ -85.429688, 82.653843 ], [ -85.253906, 82.653843 ], [ -85.253906, 82.631333 ], [ -84.550781, 82.631333 ], [ -84.550781, 82.608754 ], [ -84.199219, 82.608754 ], [ -84.199219, 82.563390 ], [ -84.023438, 82.563390 ], [ -84.023438, 82.517749 ], [ -83.847656, 82.517749 ], [ -83.847656, 82.471829 ], [ -83.671875, 82.471829 ], [ -83.671875, 82.425629 ], [ -83.496094, 82.425629 ], [ -83.496094, 82.379147 ], [ -83.320312, 82.379147 ], [ -83.320312, 82.332382 ], [ -83.144531, 82.332382 ], [ -83.144531, 82.379147 ], [ -82.968750, 82.379147 ], [ -82.968750, 82.517749 ], [ -82.792969, 82.517749 ], [ -82.792969, 82.653843 ], [ -82.617188, 82.653843 ], [ -82.617188, 82.787476 ], [ -82.441406, 82.787476 ], [ -82.441406, 82.853382 ], [ -82.265625, 82.853382 ], [ -82.265625, 82.875218 ], [ -82.089844, 82.875218 ], [ -82.089844, 82.896987 ], [ -81.914062, 82.896987 ], [ -81.914062, 82.918690 ], [ -81.738281, 82.918690 ], [ -81.738281, 82.940327 ], [ -81.562500, 82.940327 ], [ -81.562500, 82.961898 ], [ -81.386719, 82.961898 ], [ -81.386719, 82.983404 ], [ -81.210938, 82.983404 ], [ -81.210938, 83.004844 ], [ -81.035156, 83.004844 ], [ -81.035156, 83.026219 ], [ -80.683594, 83.026219 ], [ -80.683594, 83.047529 ], [ -80.332031, 83.047529 ], [ -80.332031, 83.068774 ], [ -79.980469, 83.068774 ], [ -79.980469, 83.089955 ], [ -79.628906, 83.089955 ], [ -79.628906, 83.111071 ], [ -79.277344, 83.111071 ], [ -79.277344, 83.132123 ], [ -78.398438, 83.132123 ], [ -78.398438, 83.153111 ], [ -76.992188, 83.153111 ], [ -76.992188, 83.174035 ], [ -76.289062, 83.174035 ], [ -76.289062, 83.153111 ], [ -76.113281, 83.153111 ], [ -76.113281, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -75.410156, 83.068774 ], [ -75.410156, 83.089955 ], [ -75.058594, 83.089955 ], [ -75.058594, 83.111071 ], [ -74.707031, 83.111071 ], [ -74.707031, 83.132123 ], [ -74.355469, 83.132123 ], [ -74.355469, 83.153111 ], [ -74.003906, 83.153111 ], [ -74.003906, 83.174035 ], [ -73.652344, 83.174035 ], [ -73.652344, 83.194896 ], [ -73.300781, 83.194896 ], [ -73.300781, 83.215693 ], [ -72.949219, 83.215693 ], [ -72.949219, 83.236426 ], [ -72.597656, 83.236426 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.703125, 80.675559 ], [ -90.703125, 80.647035 ], [ -90.351562, 80.647035 ], [ -90.351562, 80.618424 ], [ -90.175781, 80.618424 ], [ -90.175781, 80.589727 ], [ -90.000000, 80.589727 ], [ -90.000000, 80.560943 ], [ -89.648438, 80.560943 ], [ -89.648438, 80.532071 ], [ -89.472656, 80.532071 ], [ -89.472656, 80.503112 ], [ -89.296875, 80.503112 ], [ -89.296875, 80.474065 ], [ -88.945312, 80.474065 ], [ -88.945312, 80.444931 ], [ -88.769531, 80.444931 ], [ -88.769531, 80.415707 ], [ -88.593750, 80.415707 ], [ -88.593750, 80.386396 ], [ -88.242188, 80.386396 ], [ -88.242188, 80.356995 ], [ -88.066406, 80.356995 ], [ -88.066406, 80.327506 ], [ -87.890625, 80.327506 ], [ -87.890625, 80.238501 ], [ -87.714844, 80.238501 ], [ -87.714844, 80.088352 ], [ -87.539062, 80.088352 ], [ -87.539062, 79.905154 ], [ -87.363281, 79.905154 ], [ -87.363281, 79.749932 ], [ -87.187500, 79.749932 ], [ -87.187500, 79.655668 ], [ -87.011719, 79.655668 ], [ -87.011719, 79.592349 ], [ -86.835938, 79.592349 ], [ -86.835938, 79.560546 ], [ -86.660156, 79.560546 ], [ -86.660156, 79.528647 ], [ -86.484375, 79.528647 ], [ -86.484375, 79.464560 ], [ -86.308594, 79.464560 ], [ -86.308594, 79.432371 ], [ -86.132812, 79.432371 ], [ -86.132812, 79.367701 ], [ -85.957031, 79.367701 ], [ -85.957031, 79.335219 ], [ -86.132812, 79.335219 ], [ -86.132812, 79.302640 ], [ -86.308594, 79.302640 ], [ -86.308594, 79.237185 ], [ -86.484375, 79.237185 ], [ -86.484375, 79.204309 ], [ -86.660156, 79.204309 ], [ -86.660156, 79.171335 ], [ -86.835938, 79.171335 ], [ -86.835938, 79.105086 ], [ -87.011719, 79.105086 ], [ -87.011719, 79.071812 ], [ -87.187500, 79.071812 ], [ -87.187500, 79.038437 ], [ -87.363281, 79.038437 ], [ -87.363281, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.675559 ], [ -90.703125, 80.675559 ] ] ], [ [ [ -72.597656, 83.236426 ], [ -72.597656, 83.215693 ], [ -71.894531, 83.215693 ], [ -71.894531, 83.194896 ], [ -71.191406, 83.194896 ], [ -71.191406, 83.174035 ], [ -70.488281, 83.174035 ], [ -70.488281, 83.153111 ], [ -69.785156, 83.153111 ], [ -69.785156, 83.132123 ], [ -69.082031, 83.132123 ], [ -69.082031, 83.111071 ], [ -68.203125, 83.111071 ], [ -68.203125, 83.089955 ], [ -67.324219, 83.089955 ], [ -67.324219, 83.068774 ], [ -66.445312, 83.068774 ], [ -66.445312, 83.047529 ], [ -65.917969, 83.047529 ], [ -65.917969, 83.026219 ], [ -65.566406, 83.026219 ], [ -65.566406, 83.004844 ], [ -65.214844, 83.004844 ], [ -65.214844, 82.983404 ], [ -64.863281, 82.983404 ], [ -64.863281, 82.961898 ], [ -64.511719, 82.961898 ], [ -64.511719, 82.940327 ], [ -64.160156, 82.940327 ], [ -64.160156, 82.918690 ], [ -63.808594, 82.918690 ], [ -63.808594, 82.896987 ], [ -63.632812, 82.896987 ], [ -63.632812, 82.875218 ], [ -63.457031, 82.875218 ], [ -63.457031, 82.853382 ], [ -63.281250, 82.853382 ], [ -63.281250, 82.809511 ], [ -63.105469, 82.809511 ], [ -63.105469, 82.787476 ], [ -62.929688, 82.787476 ], [ -62.929688, 82.765373 ], [ -62.753906, 82.765373 ], [ -62.753906, 82.743202 ], [ -62.578125, 82.743202 ], [ -62.578125, 82.720964 ], [ -62.402344, 82.720964 ], [ -62.402344, 82.676285 ], [ -62.226562, 82.676285 ], [ -62.226562, 82.653843 ], [ -62.050781, 82.653843 ], [ -62.050781, 82.631333 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.494824 ], [ -62.050781, 82.494824 ], [ -62.050781, 82.355800 ], [ -62.226562, 82.355800 ], [ -62.226562, 82.308893 ], [ -62.402344, 82.308893 ], [ -62.402344, 82.285331 ], [ -62.578125, 82.285331 ], [ -62.578125, 82.261699 ], [ -62.753906, 82.261699 ], [ -62.753906, 82.214217 ], [ -62.929688, 82.214217 ], [ -62.929688, 82.190368 ], [ -63.105469, 82.190368 ], [ -63.105469, 82.166446 ], [ -63.281250, 82.166446 ], [ -63.281250, 82.118384 ], [ -63.457031, 82.118384 ], [ -63.457031, 82.094243 ], [ -63.632812, 82.094243 ], [ -63.632812, 82.045740 ], [ -63.808594, 82.045740 ], [ -63.808594, 82.021378 ], [ -63.984375, 82.021378 ], [ -63.984375, 81.996942 ], [ -64.160156, 81.996942 ], [ -64.160156, 81.947846 ], [ -64.335938, 81.947846 ], [ -64.335938, 81.923186 ], [ -64.687500, 81.923186 ], [ -64.687500, 81.898451 ], [ -65.039062, 81.898451 ], [ -65.039062, 81.873641 ], [ -65.390625, 81.873641 ], [ -65.390625, 81.848756 ], [ -65.566406, 81.848756 ], [ -65.566406, 81.823794 ], [ -65.917969, 81.823794 ], [ -65.917969, 81.798757 ], [ -66.269531, 81.798757 ], [ -66.269531, 81.773644 ], [ -66.621094, 81.773644 ], [ -66.621094, 81.748454 ], [ -66.796875, 81.748454 ], [ -66.796875, 81.723188 ], [ -66.972656, 81.723188 ], [ -66.972656, 81.672424 ], [ -67.148438, 81.672424 ], [ -67.148438, 81.621352 ], [ -67.324219, 81.621352 ], [ -67.324219, 81.569968 ], [ -67.500000, 81.569968 ], [ -67.500000, 81.518272 ], [ -65.566406, 81.518272 ], [ -65.566406, 81.492306 ], [ -65.742188, 81.492306 ], [ -65.742188, 81.440137 ], [ -65.917969, 81.440137 ], [ -65.917969, 81.387650 ], [ -66.093750, 81.387650 ], [ -66.093750, 81.334844 ], [ -66.269531, 81.334844 ], [ -66.269531, 81.308321 ], [ -66.445312, 81.308321 ], [ -66.445312, 81.255032 ], [ -66.621094, 81.255032 ], [ -66.621094, 81.201420 ], [ -66.796875, 81.201420 ], [ -66.796875, 81.147481 ], [ -66.972656, 81.147481 ], [ -66.972656, 81.093214 ], [ -67.148438, 81.093214 ], [ -67.148438, 81.065957 ], [ -67.324219, 81.065957 ], [ -67.324219, 81.011194 ], [ -67.500000, 81.011194 ], [ -67.500000, 80.956099 ], [ -67.675781, 80.956099 ], [ -67.675781, 80.900669 ], [ -67.851562, 80.900669 ], [ -67.851562, 80.872827 ], [ -68.027344, 80.872827 ], [ -68.027344, 80.844901 ], [ -68.203125, 80.844901 ], [ -68.203125, 80.816891 ], [ -68.378906, 80.816891 ], [ -68.378906, 80.788795 ], [ -68.554688, 80.788795 ], [ -68.554688, 80.760615 ], [ -68.730469, 80.760615 ], [ -68.730469, 80.732349 ], [ -68.906250, 80.732349 ], [ -68.906250, 80.703997 ], [ -69.082031, 80.703997 ], [ -69.082031, 80.675559 ], [ -69.257812, 80.675559 ], [ -69.257812, 80.647035 ], [ -69.433594, 80.647035 ], [ -69.433594, 80.618424 ], [ -69.609375, 80.618424 ], [ -69.609375, 80.560943 ], [ -69.785156, 80.560943 ], [ -69.785156, 80.474065 ], [ -69.960938, 80.474065 ], [ -69.960938, 80.386396 ], [ -70.136719, 80.386396 ], [ -70.136719, 80.297927 ], [ -70.312500, 80.297927 ], [ -70.312500, 80.208652 ], [ -70.488281, 80.208652 ], [ -70.488281, 80.118564 ], [ -70.664062, 80.118564 ], [ -70.664062, 80.027655 ], [ -70.839844, 80.027655 ], [ -70.839844, 79.935918 ], [ -71.015625, 79.935918 ], [ -71.015625, 79.843346 ], [ -71.191406, 79.843346 ], [ -71.191406, 79.812302 ], [ -71.367188, 79.812302 ], [ -71.367188, 79.781164 ], [ -71.718750, 79.781164 ], [ -71.718750, 79.749932 ], [ -72.070312, 79.749932 ], [ -72.070312, 79.718605 ], [ -72.597656, 79.718605 ], [ -72.597656, 79.687184 ], [ -72.949219, 79.687184 ], [ -72.949219, 79.655668 ], [ -73.300781, 79.655668 ], [ -73.300781, 79.624056 ], [ -73.476562, 79.624056 ], [ -73.476562, 79.560546 ], [ -73.652344, 79.560546 ], [ -73.652344, 79.496652 ], [ -73.828125, 79.496652 ], [ -73.828125, 79.432371 ], [ -74.355469, 79.432371 ], [ -74.355469, 79.400085 ], [ -75.410156, 79.400085 ], [ -75.410156, 79.367701 ], [ -76.464844, 79.367701 ], [ -76.464844, 79.335219 ], [ -76.992188, 79.335219 ], [ -76.992188, 79.302640 ], [ -76.640625, 79.302640 ], [ -76.640625, 79.269962 ], [ -76.289062, 79.269962 ], [ -76.289062, 79.237185 ], [ -75.937500, 79.237185 ], [ -75.937500, 79.204309 ], [ -75.585938, 79.204309 ], [ -75.585938, 79.171335 ], [ -75.761719, 79.171335 ], [ -75.761719, 79.138260 ], [ -75.937500, 79.138260 ], [ -75.937500, 79.071812 ], [ -76.113281, 79.071812 ], [ -76.113281, 79.038437 ], [ -76.289062, 79.038437 ], [ -76.289062, 79.004962 ], [ -85.429688, 79.004962 ], [ -85.429688, 79.171335 ], [ -85.253906, 79.171335 ], [ -85.253906, 79.367701 ], [ -85.429688, 79.367701 ], [ -85.429688, 79.432371 ], [ -85.605469, 79.432371 ], [ -85.605469, 79.464560 ], [ -85.781250, 79.464560 ], [ -85.781250, 79.528647 ], [ -85.957031, 79.528647 ], [ -85.957031, 79.560546 ], [ -86.132812, 79.560546 ], [ -86.132812, 79.624056 ], [ -86.308594, 79.624056 ], [ -86.308594, 79.655668 ], [ -86.484375, 79.655668 ], [ -86.484375, 79.718605 ], [ -86.660156, 79.718605 ], [ -86.660156, 79.874297 ], [ -86.835938, 79.874297 ], [ -86.835938, 80.118564 ], [ -87.011719, 80.118564 ], [ -87.011719, 80.268259 ], [ -86.484375, 80.268259 ], [ -86.484375, 80.238501 ], [ -85.078125, 80.238501 ], [ -85.078125, 80.208652 ], [ -84.199219, 80.208652 ], [ -84.199219, 80.178713 ], [ -84.023438, 80.178713 ], [ -84.023438, 80.148684 ], [ -83.671875, 80.148684 ], [ -83.671875, 80.118564 ], [ -83.320312, 80.118564 ], [ -83.320312, 80.178713 ], [ -83.144531, 80.178713 ], [ -83.144531, 80.208652 ], [ -82.968750, 80.208652 ], [ -82.968750, 80.238501 ], [ -82.792969, 80.238501 ], [ -82.792969, 80.297927 ], [ -82.617188, 80.297927 ], [ -82.617188, 80.327506 ], [ -82.441406, 80.327506 ], [ -82.441406, 80.356995 ], [ -82.265625, 80.356995 ], [ -82.265625, 80.415707 ], [ -82.089844, 80.415707 ], [ -82.089844, 80.444931 ], [ -81.914062, 80.444931 ], [ -81.914062, 80.474065 ], [ -82.265625, 80.474065 ], [ -82.265625, 80.503112 ], [ -82.792969, 80.503112 ], [ -82.792969, 80.532071 ], [ -83.496094, 80.532071 ], [ -83.496094, 80.560943 ], [ -84.023438, 80.560943 ], [ -84.023438, 80.589727 ], [ -84.902344, 80.589727 ], [ -84.902344, 80.560943 ], [ -86.660156, 80.560943 ], [ -86.660156, 80.532071 ], [ -87.890625, 80.532071 ], [ -87.890625, 80.560943 ], [ -88.066406, 80.560943 ], [ -88.066406, 80.618424 ], [ -88.242188, 80.618424 ], [ -88.242188, 80.647035 ], [ -88.417969, 80.647035 ], [ -88.417969, 80.675559 ], [ -88.593750, 80.675559 ], [ -88.593750, 80.703997 ], [ -88.769531, 80.703997 ], [ -88.769531, 80.732349 ], [ -88.945312, 80.732349 ], [ -88.945312, 80.788795 ], [ -89.121094, 80.788795 ], [ -89.121094, 80.816891 ], [ -89.296875, 80.816891 ], [ -89.296875, 80.844901 ], [ -89.472656, 80.844901 ], [ -89.472656, 80.900669 ], [ -89.648438, 80.900669 ], [ -89.648438, 80.983688 ], [ -89.824219, 80.983688 ], [ -89.824219, 81.065957 ], [ -90.000000, 81.065957 ], [ -90.000000, 81.147481 ], [ -90.175781, 81.147481 ], [ -90.175781, 81.228267 ], [ -90.351562, 81.228267 ], [ -90.351562, 81.308321 ], [ -90.527344, 81.308321 ], [ -90.527344, 81.361287 ], [ -90.703125, 81.361287 ], [ -90.703125, 81.413933 ], [ -90.878906, 81.413933 ], [ -90.878906, 81.996942 ], [ -90.703125, 81.996942 ], [ -90.703125, 82.021378 ], [ -90.527344, 82.021378 ], [ -90.527344, 82.045740 ], [ -90.351562, 82.045740 ], [ -90.351562, 82.070028 ], [ -90.175781, 82.070028 ], [ -90.175781, 82.094243 ], [ -89.472656, 82.094243 ], [ -89.472656, 82.118384 ], [ -88.769531, 82.118384 ], [ -88.769531, 82.142451 ], [ -88.417969, 82.142451 ], [ -88.417969, 82.166446 ], [ -88.242188, 82.166446 ], [ -88.242188, 82.190368 ], [ -87.890625, 82.190368 ], [ -87.890625, 82.214217 ], [ -87.539062, 82.214217 ], [ -87.539062, 82.237994 ], [ -87.363281, 82.237994 ], [ -87.363281, 82.261699 ], [ -87.011719, 82.261699 ], [ -87.011719, 82.308893 ], [ -86.835938, 82.308893 ], [ -86.835938, 82.355800 ], [ -86.660156, 82.355800 ], [ -86.660156, 82.402423 ], [ -86.484375, 82.402423 ], [ -86.484375, 82.448764 ], [ -86.308594, 82.448764 ], [ -86.308594, 82.494824 ], [ -86.132812, 82.494824 ], [ -86.132812, 82.540604 ], [ -85.957031, 82.540604 ], [ -85.957031, 82.586106 ], [ -85.781250, 82.586106 ], [ -85.781250, 82.631333 ], [ -85.605469, 82.631333 ], [ -85.605469, 82.653843 ], [ -85.429688, 82.653843 ], [ -85.429688, 82.631333 ], [ -84.726562, 82.631333 ], [ -84.726562, 82.608754 ], [ -84.375000, 82.608754 ], [ -84.375000, 82.586106 ], [ -84.199219, 82.586106 ], [ -84.199219, 82.540604 ], [ -84.023438, 82.540604 ], [ -84.023438, 82.494824 ], [ -83.847656, 82.494824 ], [ -83.847656, 82.448764 ], [ -83.671875, 82.448764 ], [ -83.671875, 82.402423 ], [ -83.496094, 82.402423 ], [ -83.496094, 82.355800 ], [ -83.320312, 82.355800 ], [ -83.320312, 82.379147 ], [ -83.144531, 82.379147 ], [ -83.144531, 82.494824 ], [ -82.968750, 82.494824 ], [ -82.968750, 82.608754 ], [ -82.792969, 82.608754 ], [ -82.792969, 82.698659 ], [ -82.617188, 82.698659 ], [ -82.617188, 82.809511 ], [ -82.441406, 82.809511 ], [ -82.441406, 82.875218 ], [ -82.265625, 82.875218 ], [ -82.265625, 82.896987 ], [ -82.089844, 82.896987 ], [ -82.089844, 82.918690 ], [ -81.914062, 82.918690 ], [ -81.914062, 82.940327 ], [ -81.738281, 82.940327 ], [ -81.738281, 82.961898 ], [ -81.562500, 82.961898 ], [ -81.562500, 82.983404 ], [ -81.386719, 82.983404 ], [ -81.386719, 83.004844 ], [ -81.210938, 83.004844 ], [ -81.210938, 83.026219 ], [ -80.859375, 83.026219 ], [ -80.859375, 83.047529 ], [ -80.507812, 83.047529 ], [ -80.507812, 83.068774 ], [ -80.156250, 83.068774 ], [ -80.156250, 83.089955 ], [ -79.804688, 83.089955 ], [ -79.804688, 83.111071 ], [ -79.453125, 83.111071 ], [ -79.453125, 83.132123 ], [ -78.574219, 83.132123 ], [ -78.574219, 83.153111 ], [ -76.992188, 83.153111 ], [ -76.992188, 83.174035 ], [ -76.289062, 83.174035 ], [ -76.289062, 83.153111 ], [ -76.113281, 83.153111 ], [ -76.113281, 83.111071 ], [ -75.937500, 83.111071 ], [ -75.937500, 83.068774 ], [ -75.410156, 83.068774 ], [ -75.410156, 83.089955 ], [ -75.058594, 83.089955 ], [ -75.058594, 83.111071 ], [ -74.707031, 83.111071 ], [ -74.707031, 83.132123 ], [ -74.355469, 83.132123 ], [ -74.355469, 83.153111 ], [ -74.003906, 83.153111 ], [ -74.003906, 83.174035 ], [ -73.652344, 83.174035 ], [ -73.652344, 83.194896 ], [ -73.300781, 83.194896 ], [ -73.300781, 83.215693 ], [ -72.949219, 83.215693 ], [ -72.949219, 83.236426 ], [ -72.597656, 83.236426 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.748454 ], [ -45.000000, 81.798757 ], [ -45.175781, 81.798757 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.021378 ], [ -46.230469, 82.021378 ], [ -46.230469, 82.045740 ], [ -46.406250, 82.045740 ], [ -46.406250, 82.094243 ], [ -46.582031, 82.094243 ], [ -46.582031, 82.118384 ], [ -46.757812, 82.118384 ], [ -46.757812, 82.166446 ], [ -46.933594, 82.166446 ], [ -46.933594, 82.402423 ], [ -46.757812, 82.402423 ], [ -46.757812, 82.631333 ], [ -46.582031, 82.631333 ], [ -46.582031, 82.676285 ], [ -46.406250, 82.676285 ], [ -46.406250, 82.698659 ], [ -46.230469, 82.698659 ], [ -46.230469, 82.743202 ], [ -46.054688, 82.743202 ], [ -46.054688, 82.765373 ], [ -45.878906, 82.765373 ], [ -45.878906, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.831480 ], [ -45.527344, 82.831480 ], [ -45.527344, 82.875218 ], [ -45.351562, 82.875218 ], [ -45.351562, 82.896987 ], [ -45.175781, 82.896987 ], [ -45.175781, 82.918690 ], [ -45.000000, 82.918690 ], [ -45.000000, 82.961898 ], [ -44.824219, 82.961898 ], [ -44.824219, 82.983404 ], [ -44.648438, 82.983404 ], [ -44.648438, 83.026219 ], [ -44.472656, 83.026219 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.089955 ], [ -44.121094, 83.089955 ], [ -44.121094, 79.004962 ], [ -68.554688, 79.004962 ], [ -68.554688, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -68.027344, 79.071812 ], [ -68.027344, 79.105086 ], [ -67.851562, 79.105086 ], [ -67.851562, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.324219, 79.171335 ], [ -67.324219, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.269531, 79.302640 ], [ -66.269531, 79.335219 ], [ -66.093750, 79.335219 ], [ -66.093750, 79.367701 ], [ -65.742188, 79.367701 ], [ -65.742188, 79.464560 ], [ -65.566406, 79.464560 ], [ -65.566406, 79.655668 ], [ -65.390625, 79.655668 ], [ -65.390625, 79.749932 ], [ -65.566406, 79.749932 ], [ -65.566406, 79.781164 ], [ -65.742188, 79.781164 ], [ -65.742188, 79.812302 ], [ -66.093750, 79.812302 ], [ -66.093750, 79.843346 ], [ -66.269531, 79.843346 ], [ -66.269531, 79.874297 ], [ -66.445312, 79.874297 ], [ -66.445312, 79.905154 ], [ -66.621094, 79.905154 ], [ -66.621094, 79.935918 ], [ -66.972656, 79.935918 ], [ -66.972656, 79.966590 ], [ -67.148438, 79.966590 ], [ -67.148438, 79.997168 ], [ -67.324219, 79.997168 ], [ -67.324219, 80.027655 ], [ -67.500000, 80.027655 ], [ -67.500000, 80.058050 ], [ -67.851562, 80.058050 ], [ -67.851562, 80.088352 ], [ -68.027344, 80.088352 ], [ -68.027344, 80.148684 ], [ -67.851562, 80.148684 ], [ -67.851562, 80.208652 ], [ -67.675781, 80.208652 ], [ -67.675781, 80.297927 ], [ -67.500000, 80.297927 ], [ -67.500000, 80.386396 ], [ -67.324219, 80.386396 ], [ -67.324219, 80.444931 ], [ -67.148438, 80.444931 ], [ -67.148438, 80.503112 ], [ -66.972656, 80.503112 ], [ -66.972656, 80.532071 ], [ -66.796875, 80.532071 ], [ -66.796875, 80.589727 ], [ -66.621094, 80.589727 ], [ -66.621094, 80.618424 ], [ -66.445312, 80.618424 ], [ -66.445312, 80.647035 ], [ -66.269531, 80.647035 ], [ -66.269531, 80.675559 ], [ -66.093750, 80.675559 ], [ -66.093750, 80.732349 ], [ -65.917969, 80.732349 ], [ -65.917969, 80.760615 ], [ -65.742188, 80.760615 ], [ -65.742188, 80.788795 ], [ -65.566406, 80.788795 ], [ -65.566406, 80.816891 ], [ -65.390625, 80.816891 ], [ -65.390625, 80.872827 ], [ -65.214844, 80.872827 ], [ -65.214844, 80.900669 ], [ -65.039062, 80.900669 ], [ -65.039062, 80.928426 ], [ -64.863281, 80.928426 ], [ -64.863281, 80.956099 ], [ -64.687500, 80.956099 ], [ -64.687500, 81.011194 ], [ -64.511719, 81.011194 ], [ -64.511719, 81.038617 ], [ -64.335938, 81.038617 ], [ -64.335938, 81.065957 ], [ -64.160156, 81.065957 ], [ -64.160156, 81.093214 ], [ -63.984375, 81.093214 ], [ -63.984375, 81.147481 ], [ -63.808594, 81.147481 ], [ -63.808594, 81.174491 ], [ -63.632812, 81.174491 ], [ -63.632812, 81.201420 ], [ -63.281250, 81.201420 ], [ -63.281250, 81.228267 ], [ -62.929688, 81.228267 ], [ -62.929688, 81.255032 ], [ -62.578125, 81.255032 ], [ -62.578125, 81.281717 ], [ -62.226562, 81.281717 ], [ -62.226562, 81.413933 ], [ -62.402344, 81.413933 ], [ -62.402344, 81.646927 ], [ -62.578125, 81.646927 ], [ -62.578125, 81.773644 ], [ -62.402344, 81.773644 ], [ -62.402344, 81.798757 ], [ -62.226562, 81.798757 ], [ -62.226562, 81.823794 ], [ -62.050781, 81.823794 ], [ -62.050781, 81.848756 ], [ -61.699219, 81.848756 ], [ -61.699219, 81.873641 ], [ -61.523438, 81.873641 ], [ -61.523438, 81.898451 ], [ -61.347656, 81.898451 ], [ -61.347656, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 81.947846 ], [ -60.996094, 81.947846 ], [ -60.996094, 81.972431 ], [ -60.644531, 81.972431 ], [ -60.644531, 81.996942 ], [ -60.468750, 81.996942 ], [ -60.468750, 82.021378 ], [ -60.292969, 82.021378 ], [ -60.292969, 82.045740 ], [ -59.941406, 82.045740 ], [ -59.941406, 82.070028 ], [ -59.414062, 82.070028 ], [ -59.414062, 82.094243 ], [ -58.886719, 82.094243 ], [ -58.886719, 82.118384 ], [ -58.359375, 82.118384 ], [ -58.359375, 82.142451 ], [ -57.832031, 82.142451 ], [ -57.832031, 82.166446 ], [ -57.304688, 82.166446 ], [ -57.304688, 82.190368 ], [ -54.140625, 82.190368 ], [ -54.140625, 82.166446 ], [ -53.964844, 82.166446 ], [ -53.964844, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.070028 ], [ -53.613281, 82.070028 ], [ -53.613281, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.972431 ], [ -53.261719, 81.972431 ], [ -53.261719, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.898451 ], [ -52.910156, 81.898451 ], [ -52.910156, 81.947846 ], [ -52.734375, 81.947846 ], [ -52.734375, 81.972431 ], [ -52.558594, 81.972431 ], [ -52.558594, 82.021378 ], [ -52.382812, 82.021378 ], [ -52.382812, 82.045740 ], [ -52.207031, 82.045740 ], [ -52.207031, 82.094243 ], [ -52.031250, 82.094243 ], [ -52.031250, 82.118384 ], [ -51.855469, 82.118384 ], [ -51.855469, 82.166446 ], [ -51.679688, 82.166446 ], [ -51.679688, 82.214217 ], [ -51.503906, 82.214217 ], [ -51.503906, 82.237994 ], [ -51.328125, 82.237994 ], [ -51.328125, 82.285331 ], [ -51.152344, 82.285331 ], [ -51.152344, 82.308893 ], [ -50.976562, 82.308893 ], [ -50.976562, 82.355800 ], [ -50.800781, 82.355800 ], [ -50.800781, 82.379147 ], [ -50.625000, 82.379147 ], [ -50.625000, 82.425629 ], [ -50.273438, 82.425629 ], [ -50.273438, 82.402423 ], [ -50.097656, 82.402423 ], [ -50.097656, 82.379147 ], [ -49.921875, 82.379147 ], [ -49.921875, 82.355800 ], [ -49.746094, 82.355800 ], [ -49.746094, 82.308893 ], [ -49.570312, 82.308893 ], [ -49.570312, 82.285331 ], [ -49.394531, 82.285331 ], [ -49.394531, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.237994 ], [ -49.042969, 82.237994 ], [ -49.042969, 82.214217 ], [ -48.867188, 82.214217 ], [ -48.867188, 82.190368 ], [ -48.691406, 82.190368 ], [ -48.691406, 82.166446 ], [ -48.515625, 82.166446 ], [ -48.515625, 82.118384 ], [ -48.339844, 82.118384 ], [ -48.339844, 82.094243 ], [ -48.164062, 82.094243 ], [ -48.164062, 82.070028 ], [ -47.812500, 82.070028 ], [ -47.812500, 82.045740 ], [ -47.460938, 82.045740 ], [ -47.460938, 82.021378 ], [ -46.933594, 82.021378 ], [ -46.933594, 81.996942 ], [ -46.582031, 81.996942 ], [ -46.582031, 81.972431 ], [ -46.406250, 81.972431 ], [ -46.406250, 81.947846 ], [ -46.230469, 81.947846 ], [ -46.230469, 81.923186 ], [ -46.054688, 81.923186 ], [ -46.054688, 81.898451 ], [ -45.878906, 81.898451 ], [ -45.878906, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.848756 ], [ -45.527344, 81.848756 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ] ], [ [ -44.824219, 81.723188 ], [ -44.824219, 81.697844 ], [ -44.648438, 81.697844 ], [ -44.648438, 81.723188 ], [ -44.824219, 81.723188 ] ], [ [ -45.000000, 81.748454 ], [ -45.000000, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.748454 ], [ -45.000000, 81.748454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.723188 ], [ -45.000000, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.848756 ], [ -45.527344, 81.848756 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 81.972431 ], [ -46.054688, 81.972431 ], [ -46.054688, 82.021378 ], [ -46.230469, 82.021378 ], [ -46.230469, 82.070028 ], [ -46.406250, 82.070028 ], [ -46.406250, 82.094243 ], [ -46.582031, 82.094243 ], [ -46.582031, 82.142451 ], [ -46.757812, 82.142451 ], [ -46.757812, 82.190368 ], [ -46.933594, 82.190368 ], [ -46.933594, 82.631333 ], [ -46.757812, 82.631333 ], [ -46.757812, 82.676285 ], [ -46.582031, 82.676285 ], [ -46.582031, 82.698659 ], [ -46.406250, 82.698659 ], [ -46.406250, 82.720964 ], [ -46.230469, 82.720964 ], [ -46.230469, 82.765373 ], [ -46.054688, 82.765373 ], [ -46.054688, 82.787476 ], [ -45.878906, 82.787476 ], [ -45.878906, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.853382 ], [ -45.527344, 82.853382 ], [ -45.527344, 82.875218 ], [ -45.351562, 82.875218 ], [ -45.351562, 82.918690 ], [ -45.175781, 82.918690 ], [ -45.175781, 82.940327 ], [ -45.000000, 82.940327 ], [ -45.000000, 82.961898 ], [ -44.824219, 82.961898 ], [ -44.824219, 83.004844 ], [ -44.648438, 83.004844 ], [ -44.648438, 83.026219 ], [ -44.472656, 83.026219 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.089955 ], [ -44.121094, 83.089955 ], [ -44.121094, 79.004962 ], [ -68.554688, 79.004962 ], [ -68.554688, 79.038437 ], [ -68.203125, 79.038437 ], [ -68.203125, 79.071812 ], [ -68.027344, 79.071812 ], [ -68.027344, 79.105086 ], [ -67.851562, 79.105086 ], [ -67.851562, 79.138260 ], [ -67.500000, 79.138260 ], [ -67.500000, 79.171335 ], [ -67.324219, 79.171335 ], [ -67.324219, 79.204309 ], [ -66.972656, 79.204309 ], [ -66.972656, 79.237185 ], [ -66.796875, 79.237185 ], [ -66.796875, 79.269962 ], [ -66.445312, 79.269962 ], [ -66.445312, 79.302640 ], [ -66.269531, 79.302640 ], [ -66.269531, 79.335219 ], [ -66.093750, 79.335219 ], [ -66.093750, 79.367701 ], [ -65.742188, 79.367701 ], [ -65.742188, 79.496652 ], [ -65.566406, 79.496652 ], [ -65.566406, 79.687184 ], [ -65.390625, 79.687184 ], [ -65.390625, 79.781164 ], [ -65.566406, 79.781164 ], [ -65.566406, 79.812302 ], [ -65.917969, 79.812302 ], [ -65.917969, 79.843346 ], [ -66.093750, 79.843346 ], [ -66.093750, 79.874297 ], [ -66.269531, 79.874297 ], [ -66.269531, 79.905154 ], [ -66.621094, 79.905154 ], [ -66.621094, 79.935918 ], [ -66.796875, 79.935918 ], [ -66.796875, 79.966590 ], [ -66.972656, 79.966590 ], [ -66.972656, 79.997168 ], [ -67.324219, 79.997168 ], [ -67.324219, 80.027655 ], [ -67.500000, 80.027655 ], [ -67.500000, 80.058050 ], [ -67.675781, 80.058050 ], [ -67.675781, 80.088352 ], [ -68.027344, 80.088352 ], [ -68.027344, 80.148684 ], [ -67.851562, 80.148684 ], [ -67.851562, 80.268259 ], [ -67.675781, 80.268259 ], [ -67.675781, 80.356995 ], [ -67.500000, 80.356995 ], [ -67.500000, 80.474065 ], [ -67.324219, 80.474065 ], [ -67.324219, 80.532071 ], [ -67.148438, 80.532071 ], [ -67.148438, 80.560943 ], [ -66.972656, 80.560943 ], [ -66.972656, 80.618424 ], [ -66.796875, 80.618424 ], [ -66.796875, 80.647035 ], [ -66.621094, 80.647035 ], [ -66.621094, 80.675559 ], [ -66.445312, 80.675559 ], [ -66.445312, 80.703997 ], [ -66.269531, 80.703997 ], [ -66.269531, 80.760615 ], [ -66.093750, 80.760615 ], [ -66.093750, 80.788795 ], [ -65.917969, 80.788795 ], [ -65.917969, 80.816891 ], [ -65.742188, 80.816891 ], [ -65.742188, 80.844901 ], [ -65.566406, 80.844901 ], [ -65.566406, 80.900669 ], [ -65.390625, 80.900669 ], [ -65.390625, 80.928426 ], [ -65.214844, 80.928426 ], [ -65.214844, 80.956099 ], [ -65.039062, 80.956099 ], [ -65.039062, 80.983688 ], [ -64.863281, 80.983688 ], [ -64.863281, 81.038617 ], [ -64.687500, 81.038617 ], [ -64.687500, 81.065957 ], [ -64.511719, 81.065957 ], [ -64.511719, 81.093214 ], [ -64.335938, 81.093214 ], [ -64.335938, 81.120388 ], [ -64.160156, 81.120388 ], [ -64.160156, 81.174491 ], [ -63.984375, 81.174491 ], [ -63.984375, 81.201420 ], [ -63.808594, 81.201420 ], [ -63.808594, 81.228267 ], [ -63.457031, 81.228267 ], [ -63.457031, 81.255032 ], [ -63.105469, 81.255032 ], [ -63.105469, 81.281717 ], [ -62.753906, 81.281717 ], [ -62.753906, 81.308321 ], [ -62.402344, 81.308321 ], [ -62.402344, 81.440137 ], [ -62.578125, 81.440137 ], [ -62.578125, 81.646927 ], [ -62.753906, 81.646927 ], [ -62.753906, 81.773644 ], [ -62.578125, 81.773644 ], [ -62.578125, 81.798757 ], [ -62.402344, 81.798757 ], [ -62.402344, 81.823794 ], [ -62.050781, 81.823794 ], [ -62.050781, 81.848756 ], [ -61.875000, 81.848756 ], [ -61.875000, 81.873641 ], [ -61.699219, 81.873641 ], [ -61.699219, 81.898451 ], [ -61.347656, 81.898451 ], [ -61.347656, 81.923186 ], [ -61.171875, 81.923186 ], [ -61.171875, 81.947846 ], [ -60.996094, 81.947846 ], [ -60.996094, 81.972431 ], [ -60.820312, 81.972431 ], [ -60.820312, 81.996942 ], [ -60.468750, 81.996942 ], [ -60.468750, 82.021378 ], [ -60.292969, 82.021378 ], [ -60.292969, 82.045740 ], [ -59.941406, 82.045740 ], [ -59.941406, 82.070028 ], [ -59.414062, 82.070028 ], [ -59.414062, 82.094243 ], [ -58.886719, 82.094243 ], [ -58.886719, 82.118384 ], [ -58.535156, 82.118384 ], [ -58.535156, 82.142451 ], [ -58.007812, 82.142451 ], [ -58.007812, 82.166446 ], [ -57.480469, 82.166446 ], [ -57.480469, 82.190368 ], [ -55.546875, 82.190368 ], [ -55.546875, 82.214217 ], [ -54.140625, 82.214217 ], [ -54.140625, 82.166446 ], [ -53.964844, 82.166446 ], [ -53.964844, 82.118384 ], [ -53.789062, 82.118384 ], [ -53.789062, 82.070028 ], [ -53.613281, 82.070028 ], [ -53.613281, 82.021378 ], [ -53.437500, 82.021378 ], [ -53.437500, 81.972431 ], [ -53.261719, 81.972431 ], [ -53.261719, 81.923186 ], [ -53.085938, 81.923186 ], [ -53.085938, 81.898451 ], [ -52.910156, 81.898451 ], [ -52.910156, 81.947846 ], [ -52.734375, 81.947846 ], [ -52.734375, 81.972431 ], [ -52.558594, 81.972431 ], [ -52.558594, 82.021378 ], [ -52.382812, 82.021378 ], [ -52.382812, 82.045740 ], [ -52.207031, 82.045740 ], [ -52.207031, 82.094243 ], [ -52.031250, 82.094243 ], [ -52.031250, 82.118384 ], [ -51.855469, 82.118384 ], [ -51.855469, 82.166446 ], [ -51.679688, 82.166446 ], [ -51.679688, 82.214217 ], [ -51.503906, 82.214217 ], [ -51.503906, 82.237994 ], [ -51.328125, 82.237994 ], [ -51.328125, 82.285331 ], [ -51.152344, 82.285331 ], [ -51.152344, 82.308893 ], [ -50.976562, 82.308893 ], [ -50.976562, 82.355800 ], [ -50.800781, 82.355800 ], [ -50.800781, 82.379147 ], [ -50.625000, 82.379147 ], [ -50.625000, 82.425629 ], [ -50.273438, 82.425629 ], [ -50.273438, 82.402423 ], [ -50.097656, 82.402423 ], [ -50.097656, 82.355800 ], [ -49.921875, 82.355800 ], [ -49.921875, 82.332382 ], [ -49.746094, 82.332382 ], [ -49.746094, 82.308893 ], [ -49.570312, 82.308893 ], [ -49.570312, 82.285331 ], [ -49.394531, 82.285331 ], [ -49.394531, 82.261699 ], [ -49.218750, 82.261699 ], [ -49.218750, 82.214217 ], [ -49.042969, 82.214217 ], [ -49.042969, 82.190368 ], [ -48.867188, 82.190368 ], [ -48.867188, 82.166446 ], [ -48.691406, 82.166446 ], [ -48.691406, 82.142451 ], [ -48.515625, 82.142451 ], [ -48.515625, 82.094243 ], [ -48.339844, 82.094243 ], [ -48.339844, 82.070028 ], [ -47.988281, 82.070028 ], [ -47.988281, 82.045740 ], [ -47.636719, 82.045740 ], [ -47.636719, 82.021378 ], [ -47.109375, 82.021378 ], [ -47.109375, 81.996942 ], [ -46.757812, 81.996942 ], [ -46.757812, 81.972431 ], [ -46.582031, 81.972431 ], [ -46.582031, 81.947846 ], [ -46.406250, 81.947846 ], [ -46.406250, 81.923186 ], [ -46.230469, 81.923186 ], [ -46.230469, 81.898451 ], [ -46.054688, 81.898451 ], [ -46.054688, 81.873641 ], [ -45.878906, 81.873641 ], [ -45.878906, 81.848756 ], [ -45.703125, 81.848756 ], [ -45.703125, 81.798757 ], [ -45.527344, 81.798757 ], [ -45.527344, 81.773644 ], [ -45.351562, 81.773644 ], [ -45.351562, 81.748454 ], [ -45.175781, 81.748454 ], [ -45.175781, 81.723188 ], [ -45.000000, 81.723188 ] ], [ [ -45.000000, 81.723188 ], [ -45.000000, 81.697844 ], [ -44.824219, 81.697844 ], [ -44.824219, 81.723188 ], [ -45.000000, 81.723188 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.798757 ], [ -45.703125, -81.798757 ], [ -45.703125, -81.823794 ], [ -45.175781, -81.823794 ], [ -45.175781, -81.848756 ], [ -44.824219, -81.848756 ], [ -44.824219, -81.873641 ], [ -44.648438, -81.873641 ], [ -44.648438, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -81.947846 ], [ -43.945312, -81.947846 ], [ -43.945312, -81.972431 ], [ -43.769531, -81.972431 ], [ -43.769531, -81.996942 ], [ -43.593750, -81.996942 ], [ -43.593750, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.045740 ], [ -43.066406, -82.045740 ], [ -43.066406, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -82.021378 ], [ -42.714844, -82.021378 ], [ -42.714844, -81.923186 ], [ -42.539062, -81.923186 ], [ -42.539062, -81.823794 ], [ -42.363281, -81.823794 ], [ -42.363281, -81.723188 ], [ -42.187500, -81.723188 ], [ -42.187500, -81.646927 ], [ -42.011719, -81.646927 ], [ -42.011719, -81.595699 ], [ -41.835938, -81.595699 ], [ -41.835938, -81.569968 ], [ -41.660156, -81.569968 ], [ -41.660156, -81.544159 ], [ -41.484375, -81.544159 ], [ -41.484375, -81.492306 ], [ -41.308594, -81.492306 ], [ -41.308594, -81.466261 ], [ -41.132812, -81.466261 ], [ -41.132812, -81.440137 ], [ -40.957031, -81.440137 ], [ -40.957031, -81.387650 ], [ -40.781250, -81.387650 ], [ -40.781250, -81.361287 ], [ -39.375000, -81.361287 ], [ -39.375000, -81.334844 ], [ -38.144531, -81.334844 ], [ -38.144531, -81.308321 ], [ -37.792969, -81.308321 ], [ -37.792969, -81.281717 ], [ -37.617188, -81.281717 ], [ -37.617188, -81.255032 ], [ -37.265625, -81.255032 ], [ -37.265625, -81.228267 ], [ -37.089844, -81.228267 ], [ -37.089844, -81.201420 ], [ -36.738281, -81.201420 ], [ -36.738281, -81.174491 ], [ -36.562500, -81.174491 ], [ -36.562500, -81.147481 ], [ -36.210938, -81.147481 ], [ -36.210938, -81.120388 ], [ -36.035156, -81.120388 ], [ -36.035156, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -81.065957 ], [ -35.507812, -81.065957 ], [ -35.507812, -81.038617 ], [ -35.332031, -81.038617 ], [ -35.332031, -81.011194 ], [ -35.156250, -81.011194 ], [ -35.156250, -80.983688 ], [ -34.980469, -80.983688 ], [ -34.980469, -80.956099 ], [ -34.628906, -80.956099 ], [ -34.628906, -80.928426 ], [ -34.453125, -80.928426 ], [ -34.453125, -80.900669 ], [ -34.101562, -80.900669 ], [ -34.101562, -80.872827 ], [ -33.750000, -80.872827 ], [ -33.750000, -80.844901 ], [ -33.222656, -80.844901 ], [ -33.222656, -80.816891 ], [ -32.871094, -80.816891 ], [ -32.871094, -80.788795 ], [ -32.519531, -80.788795 ], [ -32.519531, -80.760615 ], [ -31.992188, -80.760615 ], [ -31.992188, -80.732349 ], [ -31.640625, -80.732349 ], [ -31.640625, -80.703997 ], [ -31.289062, -80.703997 ], [ -31.289062, -80.675559 ], [ -30.937500, -80.675559 ], [ -30.937500, -80.647035 ], [ -30.585938, -80.647035 ], [ -30.585938, -80.618424 ], [ -30.234375, -80.618424 ], [ -30.234375, -80.589727 ], [ -29.882812, -80.589727 ], [ -29.882812, -80.560943 ], [ -29.707031, -80.560943 ], [ -29.707031, -80.532071 ], [ -29.531250, -80.532071 ], [ -29.531250, -80.503112 ], [ -29.355469, -80.503112 ], [ -29.355469, -80.474065 ], [ -29.179688, -80.474065 ], [ -29.179688, -80.444931 ], [ -29.003906, -80.444931 ], [ -29.003906, -80.415707 ], [ -28.828125, -80.415707 ], [ -28.828125, -80.386396 ], [ -28.652344, -80.386396 ], [ -28.652344, -80.356995 ], [ -28.476562, -80.356995 ], [ -28.476562, -80.297927 ], [ -28.652344, -80.297927 ], [ -28.652344, -80.208652 ], [ -28.828125, -80.208652 ], [ -28.828125, -80.148684 ], [ -29.003906, -80.148684 ], [ -29.003906, -80.058050 ], [ -29.179688, -80.058050 ], [ -29.179688, -79.935918 ], [ -29.355469, -79.935918 ], [ -29.355469, -79.812302 ], [ -29.531250, -79.812302 ], [ -29.531250, -79.687184 ], [ -29.707031, -79.687184 ], [ -29.707031, -79.269962 ], [ -30.585938, -79.269962 ], [ -30.585938, -79.302640 ], [ -31.816406, -79.302640 ], [ -31.816406, -79.335219 ], [ -32.167969, -79.335219 ], [ -32.167969, -79.367701 ], [ -32.519531, -79.367701 ], [ -32.519531, -79.400085 ], [ -33.046875, -79.400085 ], [ -33.046875, -79.432371 ], [ -33.398438, -79.432371 ], [ -33.398438, -79.464560 ], [ -35.683594, -79.464560 ], [ -35.683594, -79.269962 ], [ -35.859375, -79.269962 ], [ -35.859375, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -43.593750, -79.004962 ], [ -43.593750, -79.038437 ], [ -43.417969, -79.038437 ], [ -43.417969, -80.058050 ], [ -43.593750, -80.058050 ], [ -43.593750, -80.088352 ], [ -43.769531, -80.088352 ], [ -43.769531, -80.148684 ], [ -43.945312, -80.148684 ], [ -43.945312, -80.178713 ], [ -44.121094, -80.178713 ], [ -44.121094, -80.208652 ], [ -44.296875, -80.208652 ], [ -44.296875, -80.238501 ], [ -44.472656, -80.238501 ], [ -44.472656, -80.297927 ], [ -44.648438, -80.297927 ], [ -44.648438, -80.327506 ], [ -44.824219, -80.327506 ], [ -44.824219, -80.356995 ], [ -45.000000, -80.356995 ], [ -45.000000, -80.386396 ], [ -45.175781, -80.386396 ], [ -45.175781, -80.415707 ], [ -45.351562, -80.415707 ], [ -45.351562, -80.444931 ], [ -45.527344, -80.444931 ], [ -45.527344, -80.474065 ], [ -45.703125, -80.474065 ], [ -45.703125, -80.503112 ], [ -45.878906, -80.503112 ], [ -45.878906, -79.004962 ], [ -43.593750, -79.004962 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, -79.004962 ], [ 0.878906, -85.126373 ], [ -45.878906, -85.126373 ], [ -45.878906, -81.773644 ], [ -45.703125, -81.773644 ], [ -45.703125, -81.798757 ], [ -45.175781, -81.798757 ], [ -45.175781, -81.823794 ], [ -44.824219, -81.823794 ], [ -44.824219, -81.848756 ], [ -44.648438, -81.848756 ], [ -44.648438, -81.873641 ], [ -44.472656, -81.873641 ], [ -44.472656, -81.898451 ], [ -44.296875, -81.898451 ], [ -44.296875, -81.923186 ], [ -44.121094, -81.923186 ], [ -44.121094, -81.947846 ], [ -43.769531, -81.947846 ], [ -43.769531, -81.972431 ], [ -43.593750, -81.972431 ], [ -43.593750, -81.996942 ], [ -43.417969, -81.996942 ], [ -43.417969, -82.021378 ], [ -43.242188, -82.021378 ], [ -43.242188, -82.045740 ], [ -43.066406, -82.045740 ], [ -43.066406, -82.070028 ], [ -42.890625, -82.070028 ], [ -42.890625, -82.021378 ], [ -42.714844, -82.021378 ], [ -42.714844, -81.923186 ], [ -42.539062, -81.923186 ], [ -42.539062, -81.823794 ], [ -42.363281, -81.823794 ], [ -42.363281, -81.723188 ], [ -42.187500, -81.723188 ], [ -42.187500, -81.646927 ], [ -42.011719, -81.646927 ], [ -42.011719, -81.595699 ], [ -41.835938, -81.595699 ], [ -41.835938, -81.569968 ], [ -41.660156, -81.569968 ], [ -41.660156, -81.518272 ], [ -41.484375, -81.518272 ], [ -41.484375, -81.492306 ], [ -41.308594, -81.492306 ], [ -41.308594, -81.440137 ], [ -41.132812, -81.440137 ], [ -41.132812, -81.413933 ], [ -40.957031, -81.413933 ], [ -40.957031, -81.361287 ], [ -40.781250, -81.361287 ], [ -40.781250, -81.334844 ], [ -38.144531, -81.334844 ], [ -38.144531, -81.308321 ], [ -37.792969, -81.308321 ], [ -37.792969, -81.281717 ], [ -37.617188, -81.281717 ], [ -37.617188, -81.255032 ], [ -37.441406, -81.255032 ], [ -37.441406, -81.228267 ], [ -37.089844, -81.228267 ], [ -37.089844, -81.201420 ], [ -36.914062, -81.201420 ], [ -36.914062, -81.174491 ], [ -36.738281, -81.174491 ], [ -36.738281, -81.147481 ], [ -36.386719, -81.147481 ], [ -36.386719, -81.120388 ], [ -36.210938, -81.120388 ], [ -36.210938, -81.093214 ], [ -35.859375, -81.093214 ], [ -35.859375, -81.065957 ], [ -35.683594, -81.065957 ], [ -35.683594, -81.038617 ], [ -35.507812, -81.038617 ], [ -35.507812, -81.011194 ], [ -35.156250, -81.011194 ], [ -35.156250, -80.983688 ], [ -34.980469, -80.983688 ], [ -34.980469, -80.956099 ], [ -34.804688, -80.956099 ], [ -34.804688, -80.928426 ], [ -34.453125, -80.928426 ], [ -34.453125, -80.900669 ], [ -34.101562, -80.900669 ], [ -34.101562, -80.872827 ], [ -33.750000, -80.872827 ], [ -33.750000, -80.844901 ], [ -33.222656, -80.844901 ], [ -33.222656, -80.816891 ], [ -32.871094, -80.816891 ], [ -32.871094, -80.788795 ], [ -32.519531, -80.788795 ], [ -32.519531, -80.760615 ], [ -31.992188, -80.760615 ], [ -31.992188, -80.732349 ], [ -31.640625, -80.732349 ], [ -31.640625, -80.703997 ], [ -31.289062, -80.703997 ], [ -31.289062, -80.675559 ], [ -30.937500, -80.675559 ], [ -30.937500, -80.647035 ], [ -30.585938, -80.647035 ], [ -30.585938, -80.618424 ], [ -30.234375, -80.618424 ], [ -30.234375, -80.589727 ], [ -30.058594, -80.589727 ], [ -30.058594, -80.560943 ], [ -29.882812, -80.560943 ], [ -29.882812, -80.532071 ], [ -29.707031, -80.532071 ], [ -29.707031, -80.503112 ], [ -29.531250, -80.503112 ], [ -29.531250, -80.474065 ], [ -29.355469, -80.474065 ], [ -29.355469, -80.444931 ], [ -29.179688, -80.444931 ], [ -29.179688, -80.415707 ], [ -29.003906, -80.415707 ], [ -29.003906, -80.386396 ], [ -28.828125, -80.386396 ], [ -28.828125, -80.356995 ], [ -28.652344, -80.356995 ], [ -28.652344, -80.297927 ], [ -28.828125, -80.297927 ], [ -28.828125, -80.208652 ], [ -29.003906, -80.208652 ], [ -29.003906, -80.118564 ], [ -29.179688, -80.118564 ], [ -29.179688, -80.027655 ], [ -29.355469, -80.027655 ], [ -29.355469, -79.905154 ], [ -29.531250, -79.905154 ], [ -29.531250, -79.718605 ], [ -29.707031, -79.718605 ], [ -29.707031, -79.237185 ], [ -30.585938, -79.237185 ], [ -30.585938, -79.269962 ], [ -31.816406, -79.269962 ], [ -31.816406, -79.302640 ], [ -32.167969, -79.302640 ], [ -32.167969, -79.335219 ], [ -32.519531, -79.335219 ], [ -32.519531, -79.367701 ], [ -33.046875, -79.367701 ], [ -33.046875, -79.400085 ], [ -33.398438, -79.400085 ], [ -33.398438, -79.432371 ], [ -35.683594, -79.432371 ], [ -35.683594, -79.367701 ], [ -35.859375, -79.367701 ], [ -35.859375, -79.171335 ], [ -36.035156, -79.171335 ], [ -36.035156, -79.004962 ], [ 0.878906, -79.004962 ] ] ], [ [ [ -43.593750, -79.004962 ], [ -43.593750, -79.302640 ], [ -43.417969, -79.302640 ], [ -43.417969, -80.027655 ], [ -43.593750, -80.027655 ], [ -43.593750, -80.058050 ], [ -43.769531, -80.058050 ], [ -43.769531, -80.118564 ], [ -43.945312, -80.118564 ], [ -43.945312, -80.148684 ], [ -44.121094, -80.148684 ], [ -44.121094, -80.178713 ], [ -44.296875, -80.178713 ], [ -44.296875, -80.208652 ], [ -44.472656, -80.208652 ], [ -44.472656, -80.238501 ], [ -44.648438, -80.238501 ], [ -44.648438, -80.297927 ], [ -44.824219, -80.297927 ], [ -44.824219, -80.327506 ], [ -45.000000, -80.327506 ], [ -45.000000, -80.356995 ], [ -45.175781, -80.356995 ], [ -45.175781, -80.386396 ], [ -45.351562, -80.386396 ], [ -45.351562, -80.415707 ], [ -45.527344, -80.415707 ], [ -45.527344, -80.444931 ], [ -45.703125, -80.444931 ], [ -45.703125, -80.474065 ], [ -45.878906, -80.474065 ], [ -45.878906, -79.004962 ], [ -43.593750, -79.004962 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.703125, -77.989049 ], [ -45.703125, -78.025574 ], [ -45.351562, -78.025574 ], [ -45.351562, -78.061989 ], [ -45.175781, -78.061989 ], [ -45.175781, -78.098296 ], [ -45.000000, -78.098296 ], [ -45.000000, -78.170582 ], [ -44.824219, -78.170582 ], [ -44.824219, -78.242436 ], [ -44.648438, -78.242436 ], [ -44.648438, -78.278201 ], [ -44.472656, -78.278201 ], [ -44.472656, -78.349411 ], [ -44.296875, -78.349411 ], [ -44.296875, -78.420193 ], [ -44.121094, -78.420193 ], [ -44.121094, -78.490552 ], [ -43.945312, -78.490552 ], [ -43.945312, -78.595299 ], [ -43.769531, -78.595299 ], [ -43.769531, -78.801980 ], [ -43.593750, -78.801980 ], [ -43.593750, -79.004962 ], [ -43.417969, -79.004962 ], [ -43.417969, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.989049 ], [ -45.703125, -77.989049 ] ] ], [ [ [ -6.503906, -70.959697 ], [ -6.503906, -71.016960 ], [ -5.800781, -71.016960 ], [ -5.800781, -71.130988 ], [ -5.625000, -71.130988 ], [ -5.625000, -71.357067 ], [ -5.449219, -71.357067 ], [ -5.449219, -71.413177 ], [ -5.097656, -71.413177 ], [ -5.097656, -71.469124 ], [ -4.042969, -71.469124 ], [ -4.042969, -71.413177 ], [ -3.515625, -71.413177 ], [ -3.515625, -71.357067 ], [ -3.164062, -71.357067 ], [ -3.164062, -71.300793 ], [ -2.636719, -71.300793 ], [ -2.636719, -71.244356 ], [ -1.933594, -71.244356 ], [ -1.933594, -71.187754 ], [ -1.406250, -71.187754 ], [ -1.406250, -71.244356 ], [ -0.703125, -71.244356 ], [ -0.703125, -71.357067 ], [ -0.527344, -71.357067 ], [ -0.527344, -71.469124 ], [ -0.351562, -71.469124 ], [ -0.351562, -71.580532 ], [ -0.175781, -71.580532 ], [ -0.175781, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.580532 ], [ 0.175781, -71.580532 ], [ 0.175781, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.469124 ], [ 0.527344, -71.469124 ], [ 0.527344, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.357067 ], [ 0.878906, -71.357067 ], [ 0.878906, -79.335219 ], [ -29.707031, -79.335219 ], [ -29.707031, -79.269962 ], [ -30.585938, -79.269962 ], [ -30.585938, -79.302640 ], [ -31.816406, -79.302640 ], [ -31.816406, -79.335219 ], [ -35.683594, -79.335219 ], [ -35.683594, -79.204309 ], [ -35.859375, -79.204309 ], [ -35.859375, -78.313860 ], [ -35.683594, -78.313860 ], [ -35.683594, -78.242436 ], [ -35.507812, -78.242436 ], [ -35.507812, -78.170582 ], [ -35.332031, -78.170582 ], [ -35.332031, -78.134493 ], [ -35.156250, -78.134493 ], [ -35.156250, -78.098296 ], [ -34.980469, -78.098296 ], [ -34.980469, -78.061989 ], [ -34.804688, -78.061989 ], [ -34.804688, -78.025574 ], [ -34.453125, -78.025574 ], [ -34.453125, -77.989049 ], [ -34.277344, -77.989049 ], [ -34.277344, -77.952414 ], [ -34.101562, -77.952414 ], [ -34.101562, -77.915669 ], [ -33.925781, -77.915669 ], [ -33.925781, -77.878814 ], [ -33.750000, -77.878814 ], [ -33.750000, -77.841848 ], [ -33.398438, -77.841848 ], [ -33.398438, -77.804771 ], [ -33.046875, -77.804771 ], [ -33.046875, -77.767582 ], [ -32.871094, -77.767582 ], [ -32.871094, -77.730282 ], [ -32.519531, -77.730282 ], [ -32.519531, -77.692870 ], [ -32.167969, -77.692870 ], [ -32.167969, -77.655346 ], [ -31.992188, -77.655346 ], [ -31.992188, -77.617709 ], [ -31.816406, -77.617709 ], [ -31.816406, -77.579959 ], [ -31.640625, -77.579959 ], [ -31.640625, -77.504119 ], [ -31.464844, -77.504119 ], [ -31.464844, -77.466028 ], [ -31.289062, -77.466028 ], [ -31.289062, -77.427824 ], [ -31.113281, -77.427824 ], [ -31.113281, -77.389504 ], [ -30.937500, -77.389504 ], [ -30.937500, -77.351070 ], [ -30.761719, -77.351070 ], [ -30.761719, -77.312520 ], [ -30.585938, -77.312520 ], [ -30.585938, -77.273855 ], [ -30.410156, -77.273855 ], [ -30.410156, -77.235074 ], [ -30.234375, -77.235074 ], [ -30.234375, -77.196176 ], [ -30.058594, -77.196176 ], [ -30.058594, -77.157163 ], [ -29.882812, -77.157163 ], [ -29.882812, -77.118032 ], [ -29.707031, -77.118032 ], [ -29.707031, -77.039418 ], [ -29.531250, -77.039418 ], [ -29.531250, -76.960334 ], [ -29.355469, -76.960334 ], [ -29.355469, -76.880775 ], [ -29.179688, -76.880775 ], [ -29.179688, -76.800739 ], [ -29.003906, -76.800739 ], [ -29.003906, -76.720223 ], [ -28.828125, -76.720223 ], [ -28.828125, -76.679785 ], [ -28.652344, -76.679785 ], [ -28.652344, -76.639226 ], [ -28.300781, -76.639226 ], [ -28.300781, -76.598545 ], [ -27.949219, -76.598545 ], [ -27.949219, -76.557743 ], [ -27.597656, -76.557743 ], [ -27.597656, -76.516819 ], [ -27.246094, -76.516819 ], [ -27.246094, -76.475773 ], [ -26.894531, -76.475773 ], [ -26.894531, -76.434604 ], [ -26.542969, -76.434604 ], [ -26.542969, -76.393312 ], [ -26.191406, -76.393312 ], [ -26.191406, -76.351896 ], [ -25.839844, -76.351896 ], [ -25.839844, -76.310358 ], [ -25.488281, -76.310358 ], [ -25.488281, -76.268695 ], [ -24.609375, -76.268695 ], [ -24.609375, -76.226907 ], [ -23.554688, -76.226907 ], [ -23.554688, -76.184995 ], [ -23.027344, -76.184995 ], [ -23.027344, -76.142958 ], [ -22.675781, -76.142958 ], [ -22.675781, -76.100796 ], [ -22.324219, -76.100796 ], [ -22.324219, -76.058508 ], [ -21.972656, -76.058508 ], [ -21.972656, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.973553 ], [ -21.621094, -75.973553 ], [ -21.621094, -75.930885 ], [ -21.269531, -75.930885 ], [ -21.269531, -75.888091 ], [ -21.093750, -75.888091 ], [ -21.093750, -75.845169 ], [ -20.742188, -75.845169 ], [ -20.742188, -75.802118 ], [ -20.566406, -75.802118 ], [ -20.566406, -75.758940 ], [ -20.390625, -75.758940 ], [ -20.390625, -75.715633 ], [ -20.039062, -75.715633 ], [ -20.039062, -75.672197 ], [ -19.863281, -75.672197 ], [ -19.863281, -75.628632 ], [ -19.687500, -75.628632 ], [ -19.687500, -75.584937 ], [ -19.335938, -75.584937 ], [ -19.335938, -75.541113 ], [ -19.160156, -75.541113 ], [ -19.160156, -75.497157 ], [ -18.984375, -75.497157 ], [ -18.984375, -75.453071 ], [ -18.808594, -75.453071 ], [ -18.808594, -75.408854 ], [ -18.632812, -75.408854 ], [ -18.632812, -75.364506 ], [ -18.457031, -75.364506 ], [ -18.457031, -75.320025 ], [ -18.105469, -75.320025 ], [ -18.105469, -75.275413 ], [ -17.929688, -75.275413 ], [ -17.929688, -75.230667 ], [ -17.753906, -75.230667 ], [ -17.753906, -75.185789 ], [ -17.578125, -75.185789 ], [ -17.578125, -75.140778 ], [ -17.402344, -75.140778 ], [ -17.402344, -75.050354 ], [ -17.226562, -75.050354 ], [ -17.226562, -74.959392 ], [ -17.050781, -74.959392 ], [ -17.050781, -74.913708 ], [ -16.875000, -74.913708 ], [ -16.875000, -74.821934 ], [ -16.699219, -74.821934 ], [ -16.699219, -74.775843 ], [ -16.523438, -74.775843 ], [ -16.523438, -74.729615 ], [ -16.347656, -74.729615 ], [ -16.347656, -74.683250 ], [ -16.171875, -74.683250 ], [ -16.171875, -74.636748 ], [ -15.996094, -74.636748 ], [ -15.996094, -74.590108 ], [ -15.820312, -74.590108 ], [ -15.820312, -74.543330 ], [ -15.644531, -74.543330 ], [ -15.644531, -74.307353 ], [ -15.468750, -74.307353 ], [ -15.468750, -74.116047 ], [ -15.644531, -74.116047 ], [ -15.644531, -74.067866 ], [ -15.820312, -74.067866 ], [ -15.820312, -74.019543 ], [ -16.171875, -74.019543 ], [ -16.171875, -73.971078 ], [ -16.347656, -73.971078 ], [ -16.347656, -73.922469 ], [ -16.523438, -73.922469 ], [ -16.523438, -73.775780 ], [ -16.347656, -73.775780 ], [ -16.347656, -73.578167 ], [ -16.171875, -73.578167 ], [ -16.171875, -73.478485 ], [ -15.996094, -73.478485 ], [ -15.996094, -73.378215 ], [ -15.820312, -73.378215 ], [ -15.820312, -73.277353 ], [ -15.644531, -73.277353 ], [ -15.644531, -73.175897 ], [ -15.468750, -73.175897 ], [ -15.468750, -73.124945 ], [ -15.117188, -73.124945 ], [ -15.117188, -73.073844 ], [ -14.765625, -73.073844 ], [ -14.765625, -73.022592 ], [ -14.414062, -73.022592 ], [ -14.414062, -72.971189 ], [ -14.238281, -72.971189 ], [ -14.238281, -72.919635 ], [ -14.062500, -72.919635 ], [ -14.062500, -72.867930 ], [ -13.710938, -72.867930 ], [ -13.710938, -72.816074 ], [ -13.535156, -72.816074 ], [ -13.535156, -72.764065 ], [ -13.359375, -72.764065 ], [ -13.359375, -72.711903 ], [ -13.183594, -72.711903 ], [ -13.183594, -72.659588 ], [ -13.007812, -72.659588 ], [ -13.007812, -72.607120 ], [ -12.832031, -72.607120 ], [ -12.832031, -72.554498 ], [ -12.656250, -72.554498 ], [ -12.656250, -72.501722 ], [ -12.480469, -72.501722 ], [ -12.480469, -72.448792 ], [ -12.304688, -72.448792 ], [ -12.304688, -72.395706 ], [ -12.128906, -72.395706 ], [ -12.128906, -72.289067 ], [ -11.953125, -72.289067 ], [ -11.953125, -72.235514 ], [ -11.777344, -72.235514 ], [ -11.777344, -72.181804 ], [ -11.601562, -72.181804 ], [ -11.601562, -72.073911 ], [ -11.425781, -72.073911 ], [ -11.425781, -71.910888 ], [ -11.250000, -71.910888 ], [ -11.250000, -71.691293 ], [ -11.074219, -71.691293 ], [ -11.074219, -71.524909 ], [ -10.898438, -71.524909 ], [ -10.898438, -71.469124 ], [ -10.722656, -71.469124 ], [ -10.722656, -71.357067 ], [ -10.546875, -71.357067 ], [ -10.546875, -71.300793 ], [ -10.371094, -71.300793 ], [ -10.371094, -71.244356 ], [ -9.843750, -71.244356 ], [ -9.843750, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.357067 ], [ -8.964844, -71.357067 ], [ -8.964844, -71.469124 ], [ -8.789062, -71.469124 ], [ -8.789062, -71.580532 ], [ -8.613281, -71.580532 ], [ -8.613281, -71.635993 ], [ -8.085938, -71.635993 ], [ -8.085938, -71.691293 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.244356 ], [ -7.207031, -71.244356 ], [ -7.207031, -71.130988 ], [ -7.031250, -71.130988 ], [ -7.031250, -71.016960 ], [ -6.855469, -71.016960 ], [ -6.855469, -70.959697 ], [ -6.503906, -70.959697 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.703125, -77.952414 ], [ -45.703125, -77.989049 ], [ -45.351562, -77.989049 ], [ -45.351562, -78.025574 ], [ -45.175781, -78.025574 ], [ -45.175781, -78.061989 ], [ -45.000000, -78.061989 ], [ -45.000000, -78.134493 ], [ -44.824219, -78.134493 ], [ -44.824219, -78.206563 ], [ -44.648438, -78.206563 ], [ -44.648438, -78.242436 ], [ -44.472656, -78.242436 ], [ -44.472656, -78.313860 ], [ -44.296875, -78.313860 ], [ -44.296875, -78.384855 ], [ -44.121094, -78.384855 ], [ -44.121094, -78.455425 ], [ -43.945312, -78.455425 ], [ -43.945312, -78.630006 ], [ -43.769531, -78.630006 ], [ -43.769531, -78.937708 ], [ -43.593750, -78.937708 ], [ -43.593750, -79.335219 ], [ -45.878906, -79.335219 ], [ -45.878906, -77.952414 ], [ -45.703125, -77.952414 ] ] ], [ [ [ -6.855469, -70.902268 ], [ -6.855469, -70.959697 ], [ -6.152344, -70.959697 ], [ -6.152344, -71.016960 ], [ -5.800781, -71.016960 ], [ -5.800781, -71.187754 ], [ -5.625000, -71.187754 ], [ -5.625000, -71.357067 ], [ -5.097656, -71.357067 ], [ -5.097656, -71.413177 ], [ -4.042969, -71.413177 ], [ -4.042969, -71.357067 ], [ -3.691406, -71.357067 ], [ -3.691406, -71.300793 ], [ -3.339844, -71.300793 ], [ -3.339844, -71.244356 ], [ -2.812500, -71.244356 ], [ -2.812500, -71.187754 ], [ -2.109375, -71.187754 ], [ -2.109375, -71.130988 ], [ -1.406250, -71.130988 ], [ -1.406250, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.300793 ], [ -0.527344, -71.300793 ], [ -0.527344, -71.524909 ], [ -0.351562, -71.524909 ], [ -0.351562, -71.635993 ], [ -0.175781, -71.635993 ], [ -0.175781, -71.580532 ], [ 0.000000, -71.580532 ], [ 0.000000, -71.524909 ], [ 0.175781, -71.524909 ], [ 0.175781, -71.469124 ], [ 0.351562, -71.469124 ], [ 0.351562, -71.413177 ], [ 0.527344, -71.413177 ], [ 0.527344, -71.357067 ], [ 0.703125, -71.357067 ], [ 0.703125, -71.300793 ], [ 0.878906, -71.300793 ], [ 0.878906, -79.335219 ], [ -29.707031, -79.335219 ], [ -29.707031, -79.237185 ], [ -30.585938, -79.237185 ], [ -30.585938, -79.269962 ], [ -31.640625, -79.269962 ], [ -31.640625, -79.302640 ], [ -31.992188, -79.302640 ], [ -31.992188, -79.335219 ], [ -35.859375, -79.335219 ], [ -35.859375, -79.204309 ], [ -36.035156, -79.204309 ], [ -36.035156, -78.699106 ], [ -35.859375, -78.699106 ], [ -35.859375, -78.278201 ], [ -35.683594, -78.278201 ], [ -35.683594, -78.206563 ], [ -35.507812, -78.206563 ], [ -35.507812, -78.134493 ], [ -35.332031, -78.134493 ], [ -35.332031, -78.098296 ], [ -35.156250, -78.098296 ], [ -35.156250, -78.061989 ], [ -34.804688, -78.061989 ], [ -34.804688, -78.025574 ], [ -34.628906, -78.025574 ], [ -34.628906, -77.989049 ], [ -34.453125, -77.989049 ], [ -34.453125, -77.952414 ], [ -34.101562, -77.952414 ], [ -34.101562, -77.915669 ], [ -33.925781, -77.915669 ], [ -33.925781, -77.878814 ], [ -33.750000, -77.878814 ], [ -33.750000, -77.841848 ], [ -33.574219, -77.841848 ], [ -33.574219, -77.804771 ], [ -33.222656, -77.804771 ], [ -33.222656, -77.767582 ], [ -33.046875, -77.767582 ], [ -33.046875, -77.730282 ], [ -32.871094, -77.730282 ], [ -32.871094, -77.692870 ], [ -32.519531, -77.692870 ], [ -32.519531, -77.655346 ], [ -32.343750, -77.655346 ], [ -32.343750, -77.617709 ], [ -32.167969, -77.617709 ], [ -32.167969, -77.579959 ], [ -31.992188, -77.579959 ], [ -31.992188, -77.542096 ], [ -31.816406, -77.542096 ], [ -31.816406, -77.504119 ], [ -31.640625, -77.504119 ], [ -31.640625, -77.466028 ], [ -31.464844, -77.466028 ], [ -31.464844, -77.427824 ], [ -31.289062, -77.427824 ], [ -31.289062, -77.389504 ], [ -31.113281, -77.389504 ], [ -31.113281, -77.351070 ], [ -30.937500, -77.351070 ], [ -30.937500, -77.312520 ], [ -30.761719, -77.312520 ], [ -30.761719, -77.273855 ], [ -30.585938, -77.273855 ], [ -30.585938, -77.196176 ], [ -30.410156, -77.196176 ], [ -30.410156, -77.157163 ], [ -30.234375, -77.157163 ], [ -30.234375, -77.118032 ], [ -30.058594, -77.118032 ], [ -30.058594, -77.078784 ], [ -29.882812, -77.078784 ], [ -29.882812, -76.999935 ], [ -29.707031, -76.999935 ], [ -29.707031, -76.920614 ], [ -29.531250, -76.920614 ], [ -29.531250, -76.840816 ], [ -29.355469, -76.840816 ], [ -29.355469, -76.760541 ], [ -29.179688, -76.760541 ], [ -29.179688, -76.679785 ], [ -29.003906, -76.679785 ], [ -29.003906, -76.639226 ], [ -28.652344, -76.639226 ], [ -28.652344, -76.598545 ], [ -28.300781, -76.598545 ], [ -28.300781, -76.557743 ], [ -27.949219, -76.557743 ], [ -27.949219, -76.516819 ], [ -27.597656, -76.516819 ], [ -27.597656, -76.475773 ], [ -27.246094, -76.475773 ], [ -27.246094, -76.434604 ], [ -26.718750, -76.434604 ], [ -26.718750, -76.393312 ], [ -26.367188, -76.393312 ], [ -26.367188, -76.351896 ], [ -25.839844, -76.351896 ], [ -25.839844, -76.310358 ], [ -25.488281, -76.310358 ], [ -25.488281, -76.268695 ], [ -24.609375, -76.268695 ], [ -24.609375, -76.226907 ], [ -23.730469, -76.226907 ], [ -23.730469, -76.184995 ], [ -23.203125, -76.184995 ], [ -23.203125, -76.142958 ], [ -22.675781, -76.142958 ], [ -22.675781, -76.100796 ], [ -22.324219, -76.100796 ], [ -22.324219, -76.058508 ], [ -21.972656, -76.058508 ], [ -21.972656, -76.016094 ], [ -21.796875, -76.016094 ], [ -21.796875, -75.973553 ], [ -21.621094, -75.973553 ], [ -21.621094, -75.930885 ], [ -21.269531, -75.930885 ], [ -21.269531, -75.888091 ], [ -21.093750, -75.888091 ], [ -21.093750, -75.845169 ], [ -20.742188, -75.845169 ], [ -20.742188, -75.802118 ], [ -20.566406, -75.802118 ], [ -20.566406, -75.758940 ], [ -20.390625, -75.758940 ], [ -20.390625, -75.715633 ], [ -20.039062, -75.715633 ], [ -20.039062, -75.672197 ], [ -19.863281, -75.672197 ], [ -19.863281, -75.628632 ], [ -19.687500, -75.628632 ], [ -19.687500, -75.584937 ], [ -19.511719, -75.584937 ], [ -19.511719, -75.541113 ], [ -19.335938, -75.541113 ], [ -19.335938, -75.497157 ], [ -19.160156, -75.497157 ], [ -19.160156, -75.453071 ], [ -18.984375, -75.453071 ], [ -18.984375, -75.408854 ], [ -18.808594, -75.408854 ], [ -18.808594, -75.364506 ], [ -18.632812, -75.364506 ], [ -18.632812, -75.320025 ], [ -18.457031, -75.320025 ], [ -18.457031, -75.275413 ], [ -18.105469, -75.275413 ], [ -18.105469, -75.230667 ], [ -17.929688, -75.230667 ], [ -17.929688, -75.185789 ], [ -17.753906, -75.185789 ], [ -17.753906, -75.140778 ], [ -17.578125, -75.140778 ], [ -17.578125, -75.095633 ], [ -17.402344, -75.095633 ], [ -17.402344, -75.004940 ], [ -17.226562, -75.004940 ], [ -17.226562, -74.959392 ], [ -17.050781, -74.959392 ], [ -17.050781, -74.913708 ], [ -16.875000, -74.913708 ], [ -16.875000, -74.821934 ], [ -16.699219, -74.821934 ], [ -16.699219, -74.775843 ], [ -16.523438, -74.775843 ], [ -16.523438, -74.729615 ], [ -16.347656, -74.729615 ], [ -16.347656, -74.636748 ], [ -16.171875, -74.636748 ], [ -16.171875, -74.590108 ], [ -15.996094, -74.590108 ], [ -15.996094, -74.543330 ], [ -15.820312, -74.543330 ], [ -15.820312, -74.402163 ], [ -15.644531, -74.402163 ], [ -15.644531, -74.211983 ], [ -15.468750, -74.211983 ], [ -15.468750, -74.067866 ], [ -15.644531, -74.067866 ], [ -15.644531, -74.019543 ], [ -15.820312, -74.019543 ], [ -15.820312, -73.971078 ], [ -16.171875, -73.971078 ], [ -16.171875, -73.922469 ], [ -16.347656, -73.922469 ], [ -16.347656, -73.873717 ], [ -16.523438, -73.873717 ], [ -16.523438, -73.726595 ], [ -16.347656, -73.726595 ], [ -16.347656, -73.528399 ], [ -16.171875, -73.528399 ], [ -16.171875, -73.428424 ], [ -15.996094, -73.428424 ], [ -15.996094, -73.327858 ], [ -15.820312, -73.327858 ], [ -15.820312, -73.277353 ], [ -15.644531, -73.277353 ], [ -15.644531, -73.175897 ], [ -15.468750, -73.175897 ], [ -15.468750, -73.124945 ], [ -15.292969, -73.124945 ], [ -15.292969, -73.073844 ], [ -14.941406, -73.073844 ], [ -14.941406, -73.022592 ], [ -14.765625, -73.022592 ], [ -14.765625, -72.971189 ], [ -14.414062, -72.971189 ], [ -14.414062, -72.919635 ], [ -14.238281, -72.919635 ], [ -14.238281, -72.867930 ], [ -13.886719, -72.867930 ], [ -13.886719, -72.816074 ], [ -13.710938, -72.816074 ], [ -13.710938, -72.764065 ], [ -13.359375, -72.764065 ], [ -13.359375, -72.711903 ], [ -13.183594, -72.711903 ], [ -13.183594, -72.659588 ], [ -13.007812, -72.659588 ], [ -13.007812, -72.607120 ], [ -12.832031, -72.607120 ], [ -12.832031, -72.554498 ], [ -12.656250, -72.554498 ], [ -12.656250, -72.501722 ], [ -12.480469, -72.501722 ], [ -12.480469, -72.448792 ], [ -12.304688, -72.448792 ], [ -12.304688, -72.342464 ], [ -12.128906, -72.342464 ], [ -12.128906, -72.235514 ], [ -11.953125, -72.235514 ], [ -11.953125, -72.127936 ], [ -11.777344, -72.127936 ], [ -11.777344, -72.019729 ], [ -11.601562, -72.019729 ], [ -11.601562, -71.910888 ], [ -11.425781, -71.910888 ], [ -11.425781, -71.746432 ], [ -11.250000, -71.746432 ], [ -11.250000, -71.635993 ], [ -11.074219, -71.635993 ], [ -11.074219, -71.524909 ], [ -10.898438, -71.524909 ], [ -10.898438, -71.469124 ], [ -10.722656, -71.469124 ], [ -10.722656, -71.357067 ], [ -10.546875, -71.357067 ], [ -10.546875, -71.300793 ], [ -10.371094, -71.300793 ], [ -10.371094, -71.244356 ], [ -9.843750, -71.244356 ], [ -9.843750, -71.300793 ], [ -9.140625, -71.300793 ], [ -9.140625, -71.357067 ], [ -8.964844, -71.357067 ], [ -8.964844, -71.469124 ], [ -8.789062, -71.469124 ], [ -8.789062, -71.580532 ], [ -8.613281, -71.580532 ], [ -8.613281, -71.635993 ], [ -8.261719, -71.635993 ], [ -8.261719, -71.691293 ], [ -7.558594, -71.691293 ], [ -7.558594, -71.524909 ], [ -7.382812, -71.524909 ], [ -7.382812, -71.244356 ], [ -7.207031, -71.244356 ], [ -7.207031, -71.016960 ], [ -7.031250, -71.016960 ], [ -7.031250, -70.902268 ], [ -6.855469, -70.902268 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.703125, -1.230374 ], [ -45.703125, -1.406109 ], [ -45.175781, -1.406109 ], [ -45.175781, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -43.945312, -2.635789 ], [ -43.945312, -2.460181 ], [ -43.242188, -2.460181 ], [ -43.242188, -2.635789 ], [ -42.539062, -2.635789 ], [ -42.539062, -2.811371 ], [ -41.835938, -2.811371 ], [ -41.835938, -2.986927 ], [ -40.605469, -2.986927 ], [ -40.605469, -2.811371 ], [ -39.902344, -2.811371 ], [ -39.902344, -2.986927 ], [ -39.550781, -2.986927 ], [ -39.550781, -3.162456 ], [ -39.375000, -3.162456 ], [ -39.375000, -3.337954 ], [ -39.023438, -3.337954 ], [ -39.023438, -3.513421 ], [ -38.671875, -3.513421 ], [ -38.671875, -3.688855 ], [ -38.496094, -3.688855 ], [ -38.496094, -3.864255 ], [ -38.320312, -3.864255 ], [ -38.320312, -4.039618 ], [ -38.144531, -4.039618 ], [ -38.144531, -4.214943 ], [ -37.792969, -4.214943 ], [ -37.792969, -4.390229 ], [ -37.617188, -4.390229 ], [ -37.617188, -4.565474 ], [ -37.441406, -4.565474 ], [ -37.441406, -4.740675 ], [ -37.089844, -4.740675 ], [ -37.089844, -4.915833 ], [ -36.738281, -4.915833 ], [ -36.738281, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.683594, -5.266008 ], [ -35.332031, -5.266008 ], [ -35.332031, -5.441022 ], [ -35.156250, -5.441022 ], [ -35.156250, -6.140555 ], [ -34.980469, -6.140555 ], [ -34.980469, -7.013668 ], [ -34.804688, -7.013668 ], [ -34.804688, -7.885147 ], [ -34.980469, -7.885147 ], [ -34.980469, -8.581021 ], [ -35.156250, -8.581021 ], [ -35.156250, -9.102097 ], [ -35.332031, -9.102097 ], [ -35.332031, -9.275622 ], [ -35.507812, -9.275622 ], [ -35.507812, -9.622414 ], [ -35.683594, -9.622414 ], [ -35.683594, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -9.968851 ], [ -36.035156, -9.968851 ], [ -36.035156, -10.141932 ], [ -36.210938, -10.141932 ], [ -36.210938, -10.314919 ], [ -36.386719, -10.314919 ], [ -36.386719, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -10.660608 ], [ -36.738281, -10.660608 ], [ -36.738281, -10.833306 ], [ -36.914062, -10.833306 ], [ -36.914062, -11.005904 ], [ -37.089844, -11.005904 ], [ -37.089844, -11.350797 ], [ -37.265625, -11.350797 ], [ -37.265625, -11.695273 ], [ -37.441406, -11.695273 ], [ -37.441406, -12.039321 ], [ -37.617188, -12.039321 ], [ -37.617188, -12.382928 ], [ -37.792969, -12.382928 ], [ -37.792969, -12.554564 ], [ -37.968750, -12.554564 ], [ -37.968750, -12.726084 ], [ -38.144531, -12.726084 ], [ -38.144531, -12.897489 ], [ -38.320312, -12.897489 ], [ -38.320312, -13.068777 ], [ -38.671875, -13.068777 ], [ -38.671875, -13.239945 ], [ -38.847656, -13.239945 ], [ -38.847656, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -14.774883 ], [ -38.847656, -14.774883 ], [ -38.847656, -16.130262 ], [ -39.023438, -16.130262 ], [ -39.023438, -16.804541 ], [ -39.199219, -16.804541 ], [ -39.199219, -17.978733 ], [ -39.375000, -17.978733 ], [ -39.375000, -18.312811 ], [ -39.550781, -18.312811 ], [ -39.550781, -18.979026 ], [ -39.726562, -18.979026 ], [ -39.726562, -19.808054 ], [ -39.902344, -19.808054 ], [ -39.902344, -19.973349 ], [ -40.078125, -19.973349 ], [ -40.078125, -20.303418 ], [ -40.253906, -20.303418 ], [ -40.253906, -20.468189 ], [ -40.429688, -20.468189 ], [ -40.429688, -20.632784 ], [ -40.605469, -20.632784 ], [ -40.605469, -20.961440 ], [ -40.781250, -20.961440 ], [ -40.781250, -21.453069 ], [ -40.957031, -21.453069 ], [ -40.957031, -22.105999 ], [ -41.308594, -22.105999 ], [ -41.308594, -22.268764 ], [ -41.660156, -22.268764 ], [ -41.660156, -22.431340 ], [ -41.835938, -22.431340 ], [ -41.835938, -22.755921 ], [ -42.011719, -22.755921 ], [ -42.011719, -22.917923 ], [ -43.242188, -22.917923 ], [ -43.242188, -23.079732 ], [ -43.769531, -23.079732 ], [ -43.769531, -23.241346 ], [ -44.296875, -23.241346 ], [ -44.296875, -23.402765 ], [ -44.648438, -23.402765 ], [ -44.648438, -23.563987 ], [ -45.000000, -23.563987 ], [ -45.000000, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -45.878906, -23.885838 ], [ -45.878906, -1.230374 ], [ -45.703125, -1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.703125, -1.054628 ], [ -45.703125, -1.230374 ], [ -45.351562, -1.230374 ], [ -45.351562, -1.406109 ], [ -45.000000, -1.406109 ], [ -45.000000, -1.581830 ], [ -44.824219, -1.581830 ], [ -44.824219, -1.757537 ], [ -44.648438, -1.757537 ], [ -44.648438, -2.108899 ], [ -44.472656, -2.108899 ], [ -44.472656, -2.460181 ], [ -44.648438, -2.460181 ], [ -44.648438, -2.635789 ], [ -44.296875, -2.635789 ], [ -44.296875, -2.460181 ], [ -43.593750, -2.460181 ], [ -43.593750, -2.284551 ], [ -43.242188, -2.284551 ], [ -43.242188, -2.460181 ], [ -42.539062, -2.460181 ], [ -42.539062, -2.635789 ], [ -41.835938, -2.635789 ], [ -41.835938, -2.811371 ], [ -40.078125, -2.811371 ], [ -40.078125, -2.986927 ], [ -39.726562, -2.986927 ], [ -39.726562, -3.162456 ], [ -39.550781, -3.162456 ], [ -39.550781, -3.337954 ], [ -39.199219, -3.337954 ], [ -39.199219, -3.513421 ], [ -38.847656, -3.513421 ], [ -38.847656, -3.688855 ], [ -38.671875, -3.688855 ], [ -38.671875, -3.864255 ], [ -38.496094, -3.864255 ], [ -38.496094, -4.039618 ], [ -38.144531, -4.039618 ], [ -38.144531, -4.214943 ], [ -37.968750, -4.214943 ], [ -37.968750, -4.390229 ], [ -37.792969, -4.390229 ], [ -37.792969, -4.565474 ], [ -37.441406, -4.565474 ], [ -37.441406, -4.740675 ], [ -37.265625, -4.740675 ], [ -37.265625, -4.915833 ], [ -36.914062, -4.915833 ], [ -36.914062, -5.090944 ], [ -35.683594, -5.090944 ], [ -35.683594, -5.266008 ], [ -35.507812, -5.266008 ], [ -35.507812, -5.441022 ], [ -35.332031, -5.441022 ], [ -35.332031, -5.790897 ], [ -35.156250, -5.790897 ], [ -35.156250, -6.489983 ], [ -34.980469, -6.489983 ], [ -34.980469, -7.013668 ], [ -34.804688, -7.013668 ], [ -34.804688, -7.710992 ], [ -34.980469, -7.710992 ], [ -34.980469, -8.581021 ], [ -35.156250, -8.581021 ], [ -35.156250, -9.102097 ], [ -35.332031, -9.102097 ], [ -35.332031, -9.275622 ], [ -35.507812, -9.275622 ], [ -35.507812, -9.622414 ], [ -35.683594, -9.622414 ], [ -35.683594, -9.795678 ], [ -35.859375, -9.795678 ], [ -35.859375, -9.968851 ], [ -36.035156, -9.968851 ], [ -36.035156, -10.141932 ], [ -36.210938, -10.141932 ], [ -36.210938, -10.314919 ], [ -36.386719, -10.314919 ], [ -36.386719, -10.487812 ], [ -36.562500, -10.487812 ], [ -36.562500, -10.660608 ], [ -36.738281, -10.660608 ], [ -36.738281, -10.833306 ], [ -36.914062, -10.833306 ], [ -36.914062, -11.005904 ], [ -37.089844, -11.005904 ], [ -37.089844, -11.178402 ], [ -37.265625, -11.178402 ], [ -37.265625, -11.523088 ], [ -37.441406, -11.523088 ], [ -37.441406, -11.695273 ], [ -37.617188, -11.695273 ], [ -37.617188, -12.039321 ], [ -37.792969, -12.039321 ], [ -37.792969, -12.211180 ], [ -37.968750, -12.211180 ], [ -37.968750, -12.382928 ], [ -38.144531, -12.382928 ], [ -38.144531, -12.726084 ], [ -38.320312, -12.726084 ], [ -38.320312, -12.897489 ], [ -38.671875, -12.897489 ], [ -38.671875, -13.239945 ], [ -38.847656, -13.239945 ], [ -38.847656, -13.581921 ], [ -39.023438, -13.581921 ], [ -39.023438, -16.467695 ], [ -39.199219, -16.467695 ], [ -39.199219, -17.476432 ], [ -39.375000, -17.476432 ], [ -39.375000, -17.978733 ], [ -39.550781, -17.978733 ], [ -39.550781, -18.145852 ], [ -39.726562, -18.145852 ], [ -39.726562, -18.812718 ], [ -39.902344, -18.812718 ], [ -39.902344, -19.642588 ], [ -40.078125, -19.642588 ], [ -40.078125, -19.973349 ], [ -40.253906, -19.973349 ], [ -40.253906, -20.138470 ], [ -40.429688, -20.138470 ], [ -40.429688, -20.468189 ], [ -40.605469, -20.468189 ], [ -40.605469, -20.797201 ], [ -40.781250, -20.797201 ], [ -40.781250, -21.289374 ], [ -40.957031, -21.289374 ], [ -40.957031, -21.943046 ], [ -41.308594, -21.943046 ], [ -41.308594, -22.105999 ], [ -41.660156, -22.105999 ], [ -41.660156, -22.268764 ], [ -41.835938, -22.268764 ], [ -41.835938, -22.593726 ], [ -42.011719, -22.593726 ], [ -42.011719, -22.917923 ], [ -43.417969, -22.917923 ], [ -43.417969, -23.079732 ], [ -44.121094, -23.079732 ], [ -44.121094, -23.241346 ], [ -44.648438, -23.241346 ], [ -44.648438, -23.402765 ], [ -44.824219, -23.402765 ], [ -44.824219, -23.563987 ], [ -45.175781, -23.563987 ], [ -45.175781, -23.725012 ], [ -45.527344, -23.725012 ], [ -45.527344, -23.885838 ], [ -45.878906, -23.885838 ], [ -45.878906, -1.054628 ], [ -45.703125, -1.054628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.953125, 25.641526 ], [ -11.953125, 23.402765 ], [ -12.304688, 23.402765 ], [ -12.304688, 23.241346 ], [ -12.832031, 23.241346 ], [ -12.832031, 23.079732 ], [ -13.007812, 23.079732 ], [ -13.007812, 22.755921 ], [ -13.183594, 22.755921 ], [ -13.183594, 21.943046 ], [ -13.007812, 21.943046 ], [ -13.007812, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.125498 ], [ -17.050781, 21.125498 ], [ -17.050781, 21.453069 ], [ -14.765625, 21.453069 ], [ -14.765625, 21.616579 ], [ -14.589844, 21.616579 ], [ -14.589844, 21.779905 ], [ -14.414062, 21.779905 ], [ -14.414062, 22.105999 ], [ -14.238281, 22.105999 ], [ -14.238281, 22.593726 ], [ -14.062500, 22.593726 ], [ -14.062500, 23.241346 ], [ -13.886719, 23.241346 ], [ -13.886719, 23.725012 ], [ -13.710938, 23.725012 ], [ -13.710938, 23.885838 ], [ -13.535156, 23.885838 ], [ -13.535156, 24.046464 ], [ -13.359375, 24.046464 ], [ -13.359375, 24.206890 ], [ -13.007812, 24.206890 ], [ -13.007812, 24.367114 ], [ -12.832031, 24.367114 ], [ -12.832031, 24.527135 ], [ -12.656250, 24.527135 ], [ -12.656250, 24.686952 ], [ -12.480469, 24.686952 ], [ -12.480469, 25.005973 ], [ -12.304688, 25.005973 ], [ -12.304688, 25.324167 ], [ -12.128906, 25.324167 ], [ -12.128906, 25.641526 ], [ -11.953125, 25.641526 ] ] ], [ [ [ -11.777344, 25.958045 ], [ -11.777344, 26.273714 ], [ -11.601562, 26.273714 ], [ -11.601562, 26.588527 ], [ -11.425781, 26.588527 ], [ -11.425781, 26.902477 ], [ -10.898438, 26.902477 ], [ -10.898438, 27.059126 ], [ -10.546875, 27.059126 ], [ -10.546875, 26.902477 ], [ -9.492188, 26.902477 ], [ -9.492188, 27.059126 ], [ -8.789062, 27.059126 ], [ -8.789062, 27.683528 ], [ -8.613281, 27.683528 ], [ -8.613281, 25.958045 ], [ -11.777344, 25.958045 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -17.050781, 21.289374 ], [ -17.050781, 21.125498 ], [ -17.226562, 21.125498 ], [ -17.226562, 21.289374 ], [ -17.050781, 21.289374 ] ] ], [ [ [ -16.875000, 21.453069 ], [ -16.875000, 21.289374 ], [ -17.050781, 21.289374 ], [ -17.050781, 21.453069 ], [ -16.875000, 21.453069 ] ] ], [ [ [ -12.128906, 24.686952 ], [ -11.953125, 24.686952 ], [ -11.953125, 23.402765 ], [ -13.007812, 23.402765 ], [ -13.007812, 23.079732 ], [ -13.183594, 23.079732 ], [ -13.183594, 22.105999 ], [ -13.007812, 22.105999 ], [ -13.007812, 21.453069 ], [ -15.820312, 21.453069 ], [ -15.820312, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.943046 ], [ -14.589844, 21.943046 ], [ -14.589844, 22.105999 ], [ -14.414062, 22.105999 ], [ -14.414062, 22.268764 ], [ -14.238281, 22.268764 ], [ -14.238281, 23.079732 ], [ -14.062500, 23.079732 ], [ -14.062500, 23.725012 ], [ -13.886719, 23.725012 ], [ -13.886719, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 24.046464 ], [ -13.535156, 24.046464 ], [ -13.535156, 24.206890 ], [ -13.183594, 24.206890 ], [ -13.183594, 24.367114 ], [ -13.007812, 24.367114 ], [ -13.007812, 24.527135 ], [ -12.832031, 24.527135 ], [ -12.832031, 24.686952 ], [ -12.656250, 24.686952 ], [ -12.656250, 25.005973 ], [ -12.480469, 25.005973 ], [ -12.480469, 25.482951 ], [ -12.304688, 25.482951 ], [ -12.304688, 25.799891 ], [ -12.128906, 25.799891 ], [ -12.128906, 24.686952 ] ] ], [ [ [ -8.789062, 25.958045 ], [ -12.128906, 25.958045 ], [ -12.128906, 26.115986 ], [ -11.777344, 26.115986 ], [ -11.777344, 26.273714 ], [ -11.601562, 26.273714 ], [ -11.601562, 26.588527 ], [ -11.425781, 26.588527 ], [ -11.425781, 26.902477 ], [ -10.898438, 26.902477 ], [ -10.898438, 27.059126 ], [ -10.546875, 27.059126 ], [ -10.546875, 26.902477 ], [ -9.667969, 26.902477 ], [ -9.667969, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 27.215556 ], [ -8.964844, 27.215556 ], [ -8.964844, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 25.958045 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.503906, 41.640078 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.178873 ], [ -7.031250, 40.178873 ], [ -7.031250, 39.774769 ], [ -7.207031, 39.774769 ], [ -7.207031, 39.639538 ], [ -7.558594, 39.639538 ], [ -7.558594, 39.504041 ], [ -7.382812, 39.504041 ], [ -7.382812, 39.368279 ], [ -7.207031, 39.368279 ], [ -7.207031, 39.095963 ], [ -7.031250, 39.095963 ], [ -7.031250, 38.822591 ], [ -7.207031, 38.822591 ], [ -7.207031, 38.548165 ], [ -7.382812, 38.548165 ], [ -7.382812, 38.272689 ], [ -7.207031, 38.272689 ], [ -7.207031, 38.134557 ], [ -7.031250, 38.134557 ], [ -7.031250, 37.996163 ], [ -7.207031, 37.996163 ], [ -7.207031, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.439974 ], [ -7.558594, 37.439974 ], [ -7.558594, 37.300275 ], [ -7.382812, 37.300275 ], [ -7.382812, 37.020098 ], [ -7.734375, 37.020098 ], [ -7.734375, 36.879621 ], [ -8.261719, 36.879621 ], [ -8.261719, 37.020098 ], [ -8.613281, 37.020098 ], [ -8.613281, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.964844, 37.300275 ], [ -8.789062, 37.300275 ], [ -8.789062, 38.272689 ], [ -9.140625, 38.272689 ], [ -9.140625, 38.410558 ], [ -9.316406, 38.410558 ], [ -9.316406, 38.548165 ], [ -9.492188, 38.548165 ], [ -9.492188, 39.368279 ], [ -9.316406, 39.368279 ], [ -9.316406, 39.504041 ], [ -9.140625, 39.504041 ], [ -9.140625, 39.639538 ], [ -8.964844, 39.639538 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.640078 ], [ -6.503906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.679688, 41.640078 ], [ -6.679688, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.376809 ], [ -6.679688, 41.376809 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 40.044438 ], [ -7.207031, 40.044438 ], [ -7.207031, 39.639538 ], [ -7.558594, 39.639538 ], [ -7.558594, 39.504041 ], [ -7.382812, 39.504041 ], [ -7.382812, 39.232253 ], [ -7.207031, 39.232253 ], [ -7.207031, 38.685510 ], [ -7.382812, 38.685510 ], [ -7.382812, 38.272689 ], [ -7.207031, 38.272689 ], [ -7.207031, 38.134557 ], [ -7.031250, 38.134557 ], [ -7.031250, 37.996163 ], [ -7.207031, 37.996163 ], [ -7.207031, 37.718590 ], [ -7.382812, 37.718590 ], [ -7.382812, 37.439974 ], [ -7.558594, 37.439974 ], [ -7.558594, 37.020098 ], [ -7.734375, 37.020098 ], [ -7.734375, 36.879621 ], [ -8.261719, 36.879621 ], [ -8.261719, 37.020098 ], [ -8.613281, 37.020098 ], [ -8.613281, 36.879621 ], [ -8.964844, 36.879621 ], [ -8.964844, 37.300275 ], [ -8.789062, 37.300275 ], [ -8.789062, 37.996163 ], [ -8.964844, 37.996163 ], [ -8.964844, 38.272689 ], [ -9.316406, 38.272689 ], [ -9.316406, 38.410558 ], [ -9.492188, 38.410558 ], [ -9.492188, 38.685510 ], [ -9.667969, 38.685510 ], [ -9.667969, 39.095963 ], [ -9.492188, 39.095963 ], [ -9.492188, 39.504041 ], [ -9.316406, 39.504041 ], [ -9.316406, 39.639538 ], [ -9.140625, 39.639538 ], [ -9.140625, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.580585 ], [ -8.789062, 40.580585 ], [ -8.789062, 41.244772 ], [ -8.964844, 41.244772 ], [ -8.964844, 41.508577 ], [ -9.140625, 41.508577 ], [ -9.140625, 41.640078 ], [ -6.679688, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 37.439974 ], [ -1.406250, 37.439974 ], [ -1.406250, 37.300275 ], [ -1.582031, 37.300275 ], [ -1.582031, 37.160317 ], [ -1.757812, 37.160317 ], [ -1.757812, 36.879621 ], [ -1.933594, 36.879621 ], [ -1.933594, 36.738884 ], [ -2.636719, 36.738884 ], [ -2.636719, 36.597889 ], [ -4.042969, 36.597889 ], [ -4.042969, 36.738884 ], [ -4.394531, 36.738884 ], [ -4.394531, 36.597889 ], [ -4.570312, 36.597889 ], [ -4.570312, 36.456636 ], [ -4.746094, 36.456636 ], [ -4.746094, 36.315125 ], [ -4.921875, 36.315125 ], [ -4.921875, 36.173357 ], [ -5.097656, 36.173357 ], [ -5.097656, 36.031332 ], [ -5.273438, 36.031332 ], [ -5.273438, 35.889050 ], [ -5.800781, 35.889050 ], [ -5.800781, 36.031332 ], [ -5.976562, 36.031332 ], [ -5.976562, 36.173357 ], [ -6.152344, 36.173357 ], [ -6.152344, 36.456636 ], [ -6.328125, 36.456636 ], [ -6.328125, 36.738884 ], [ -6.503906, 36.738884 ], [ -6.503906, 36.879621 ], [ -6.855469, 36.879621 ], [ -6.855469, 37.020098 ], [ -7.207031, 37.020098 ], [ -7.207031, 37.160317 ], [ -7.382812, 37.160317 ], [ -7.382812, 37.300275 ], [ -7.558594, 37.300275 ], [ -7.558594, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 37.718590 ], [ -7.207031, 37.718590 ], [ -7.207031, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.134557 ], [ -7.207031, 38.134557 ], [ -7.207031, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 38.548165 ], [ -7.207031, 38.548165 ], [ -7.207031, 38.822591 ], [ -7.031250, 38.822591 ], [ -7.031250, 39.095963 ], [ -7.207031, 39.095963 ], [ -7.207031, 39.368279 ], [ -7.382812, 39.368279 ], [ -7.382812, 39.504041 ], [ -7.558594, 39.504041 ], [ -7.558594, 39.639538 ], [ -7.207031, 39.639538 ], [ -7.207031, 39.774769 ], [ -7.031250, 39.774769 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.178873 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.112469 ], [ 0.703125, 41.112469 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.313043 ], [ 0.175781, 40.313043 ], [ 0.175781, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.909736 ], [ -0.175781, 39.909736 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ -0.175781, 38.685510 ], [ -0.175781, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 38.410558 ], [ -0.527344, 38.410558 ], [ -0.527344, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.718590 ], [ -1.054688, 37.718590 ], [ -1.054688, 37.579413 ], [ -1.582031, 37.579413 ], [ -1.582031, 37.439974 ], [ -1.757812, 37.439974 ], [ -1.757812, 37.160317 ], [ -1.933594, 37.160317 ], [ -1.933594, 37.020098 ], [ -2.109375, 37.020098 ], [ -2.109375, 36.738884 ], [ -4.394531, 36.738884 ], [ -4.394531, 36.597889 ], [ -4.746094, 36.597889 ], [ -4.746094, 36.456636 ], [ -5.097656, 36.456636 ], [ -5.097656, 36.315125 ], [ -5.273438, 36.315125 ], [ -5.273438, 36.031332 ], [ -6.152344, 36.031332 ], [ -6.152344, 36.315125 ], [ -6.328125, 36.315125 ], [ -6.328125, 36.597889 ], [ -6.503906, 36.597889 ], [ -6.503906, 36.879621 ], [ -6.679688, 36.879621 ], [ -6.679688, 37.020098 ], [ -7.207031, 37.020098 ], [ -7.207031, 37.160317 ], [ -7.558594, 37.160317 ], [ -7.558594, 37.439974 ], [ -7.382812, 37.439974 ], [ -7.382812, 37.718590 ], [ -7.207031, 37.718590 ], [ -7.207031, 37.996163 ], [ -7.031250, 37.996163 ], [ -7.031250, 38.134557 ], [ -7.207031, 38.134557 ], [ -7.207031, 38.272689 ], [ -7.382812, 38.272689 ], [ -7.382812, 38.685510 ], [ -7.207031, 38.685510 ], [ -7.207031, 39.232253 ], [ -7.382812, 39.232253 ], [ -7.382812, 39.504041 ], [ -7.558594, 39.504041 ], [ -7.558594, 39.639538 ], [ -7.207031, 39.639538 ], [ -7.207031, 40.044438 ], [ -7.031250, 40.044438 ], [ -7.031250, 40.713956 ], [ -6.855469, 40.713956 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.376809 ], [ -6.503906, 41.376809 ], [ -6.503906, 41.508577 ], [ -6.679688, 41.508577 ], [ -6.679688, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.746512 ], [ -5.273438, 35.603719 ], [ -5.097656, 35.603719 ], [ -5.097656, 35.460670 ], [ -4.746094, 35.460670 ], [ -4.746094, 35.317366 ], [ -4.042969, 35.317366 ], [ -4.042969, 35.460670 ], [ -3.515625, 35.460670 ], [ -3.515625, 35.317366 ], [ -2.988281, 35.317366 ], [ -2.988281, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.029996 ], [ -1.933594, 35.029996 ], [ -1.933594, 34.741612 ], [ -1.757812, 34.741612 ], [ -1.757812, 33.578015 ], [ -1.582031, 33.578015 ], [ -1.582031, 32.990236 ], [ -1.406250, 32.990236 ], [ -1.406250, 32.694866 ], [ -1.054688, 32.694866 ], [ -1.054688, 32.398516 ], [ -1.230469, 32.398516 ], [ -1.230469, 32.249974 ], [ -1.757812, 32.249974 ], [ -1.757812, 32.101190 ], [ -2.636719, 32.101190 ], [ -2.636719, 31.952162 ], [ -2.812500, 31.952162 ], [ -2.812500, 31.653381 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -3.867188, 30.902225 ], [ -3.867188, 30.751278 ], [ -4.218750, 30.751278 ], [ -4.218750, 30.600094 ], [ -4.570312, 30.600094 ], [ -4.570312, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.297018 ], [ -5.097656, 30.297018 ], [ -5.097656, 29.993002 ], [ -5.273438, 29.993002 ], [ -5.273438, 29.840644 ], [ -5.625000, 29.840644 ], [ -5.625000, 29.688053 ], [ -6.328125, 29.688053 ], [ -6.328125, 29.535230 ], [ -7.031250, 29.535230 ], [ -7.031250, 29.382175 ], [ -7.382812, 29.382175 ], [ -7.382812, 29.228890 ], [ -7.734375, 29.228890 ], [ -7.734375, 29.075375 ], [ -8.085938, 29.075375 ], [ -8.085938, 28.921631 ], [ -8.437500, 28.921631 ], [ -8.437500, 28.767659 ], [ -8.613281, 28.767659 ], [ -8.613281, 27.683528 ], [ -8.789062, 27.683528 ], [ -8.789062, 27.059126 ], [ -9.492188, 27.059126 ], [ -9.492188, 26.902477 ], [ -10.546875, 26.902477 ], [ -10.546875, 27.059126 ], [ -10.898438, 27.059126 ], [ -10.898438, 26.902477 ], [ -11.425781, 26.902477 ], [ -11.425781, 26.588527 ], [ -11.601562, 26.588527 ], [ -11.601562, 26.273714 ], [ -11.777344, 26.273714 ], [ -11.777344, 25.958045 ], [ -11.953125, 25.958045 ], [ -11.953125, 25.641526 ], [ -12.128906, 25.641526 ], [ -12.128906, 25.324167 ], [ -12.304688, 25.324167 ], [ -12.304688, 25.005973 ], [ -12.480469, 25.005973 ], [ -12.480469, 24.686952 ], [ -12.656250, 24.686952 ], [ -12.656250, 24.527135 ], [ -12.832031, 24.527135 ], [ -12.832031, 24.367114 ], [ -13.007812, 24.367114 ], [ -13.007812, 24.206890 ], [ -13.359375, 24.206890 ], [ -13.359375, 24.046464 ], [ -13.535156, 24.046464 ], [ -13.535156, 23.885838 ], [ -13.710938, 23.885838 ], [ -13.710938, 23.725012 ], [ -13.886719, 23.725012 ], [ -13.886719, 23.241346 ], [ -14.062500, 23.241346 ], [ -14.062500, 22.593726 ], [ -14.238281, 22.593726 ], [ -14.238281, 22.105999 ], [ -14.414062, 22.105999 ], [ -14.414062, 21.779905 ], [ -14.589844, 21.779905 ], [ -14.589844, 21.616579 ], [ -14.765625, 21.616579 ], [ -14.765625, 21.453069 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.699219, 21.943046 ], [ -16.699219, 22.105999 ], [ -16.523438, 22.105999 ], [ -16.523438, 22.431340 ], [ -16.347656, 22.431340 ], [ -16.347656, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.563987 ], [ -15.996094, 23.563987 ], [ -15.996094, 23.725012 ], [ -15.820312, 23.725012 ], [ -15.820312, 24.046464 ], [ -15.644531, 24.046464 ], [ -15.644531, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.367114 ], [ -15.117188, 24.686952 ], [ -14.941406, 24.686952 ], [ -14.941406, 25.005973 ], [ -14.765625, 25.005973 ], [ -14.765625, 25.799891 ], [ -14.589844, 25.799891 ], [ -14.589844, 26.115986 ], [ -14.414062, 26.115986 ], [ -14.414062, 26.273714 ], [ -14.062500, 26.273714 ], [ -14.062500, 26.431228 ], [ -13.710938, 26.431228 ], [ -13.710938, 26.745610 ], [ -13.535156, 26.745610 ], [ -13.535156, 27.059126 ], [ -13.359375, 27.059126 ], [ -13.359375, 27.371767 ], [ -13.183594, 27.371767 ], [ -13.183594, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.839076 ], [ -12.656250, 27.839076 ], [ -12.656250, 27.994401 ], [ -11.953125, 27.994401 ], [ -11.953125, 28.149503 ], [ -11.425781, 28.149503 ], [ -11.425781, 28.304381 ], [ -11.250000, 28.304381 ], [ -11.250000, 28.459033 ], [ -11.074219, 28.459033 ], [ -11.074219, 28.613459 ], [ -10.898438, 28.613459 ], [ -10.898438, 28.767659 ], [ -10.722656, 28.767659 ], [ -10.722656, 28.921631 ], [ -10.371094, 28.921631 ], [ -10.371094, 29.075375 ], [ -10.195312, 29.075375 ], [ -10.195312, 29.228890 ], [ -10.019531, 29.228890 ], [ -10.019531, 29.535230 ], [ -9.843750, 29.535230 ], [ -9.843750, 29.688053 ], [ -9.667969, 29.688053 ], [ -9.667969, 29.840644 ], [ -9.492188, 29.840644 ], [ -9.492188, 30.297018 ], [ -9.667969, 30.297018 ], [ -9.667969, 30.902225 ], [ -9.843750, 30.902225 ], [ -9.843750, 31.353637 ], [ -9.667969, 31.353637 ], [ -9.667969, 31.802893 ], [ -9.492188, 31.802893 ], [ -9.492188, 32.249974 ], [ -9.316406, 32.249974 ], [ -9.316406, 32.546813 ], [ -9.140625, 32.546813 ], [ -9.140625, 32.694866 ], [ -8.964844, 32.694866 ], [ -8.964844, 32.990236 ], [ -8.789062, 32.990236 ], [ -8.789062, 33.137551 ], [ -8.613281, 33.137551 ], [ -8.613281, 33.284620 ], [ -8.437500, 33.284620 ], [ -8.437500, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.578015 ], [ -7.734375, 33.578015 ], [ -7.734375, 33.724340 ], [ -7.558594, 33.724340 ], [ -7.558594, 33.870416 ], [ -7.207031, 33.870416 ], [ -7.207031, 34.016242 ], [ -6.855469, 34.016242 ], [ -6.855469, 34.307144 ], [ -6.679688, 34.307144 ], [ -6.679688, 34.597042 ], [ -6.503906, 34.597042 ], [ -6.503906, 34.885931 ], [ -6.328125, 34.885931 ], [ -6.328125, 35.317366 ], [ -6.152344, 35.317366 ], [ -6.152344, 35.603719 ], [ -5.976562, 35.603719 ], [ -5.976562, 35.746512 ], [ -5.273438, 35.746512 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.273438, 35.889050 ], [ -5.273438, 35.746512 ], [ -5.097656, 35.746512 ], [ -5.097656, 35.603719 ], [ -4.921875, 35.603719 ], [ -4.921875, 35.460670 ], [ -3.339844, 35.460670 ], [ -3.339844, 35.317366 ], [ -2.636719, 35.317366 ], [ -2.636719, 35.173808 ], [ -2.285156, 35.173808 ], [ -2.285156, 35.029996 ], [ -2.109375, 35.029996 ], [ -2.109375, 34.741612 ], [ -1.933594, 34.741612 ], [ -1.933594, 34.307144 ], [ -1.757812, 34.307144 ], [ -1.757812, 33.724340 ], [ -1.582031, 33.724340 ], [ -1.582031, 33.137551 ], [ -1.406250, 33.137551 ], [ -1.406250, 32.842674 ], [ -1.230469, 32.842674 ], [ -1.230469, 32.546813 ], [ -1.406250, 32.546813 ], [ -1.406250, 32.398516 ], [ -1.582031, 32.398516 ], [ -1.582031, 32.249974 ], [ -2.285156, 32.249974 ], [ -2.285156, 32.101190 ], [ -2.636719, 32.101190 ], [ -2.636719, 31.952162 ], [ -2.988281, 31.952162 ], [ -2.988281, 31.802893 ], [ -3.339844, 31.802893 ], [ -3.339844, 31.653381 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -3.867188, 30.902225 ], [ -3.867188, 30.751278 ], [ -4.570312, 30.751278 ], [ -4.570312, 30.600094 ], [ -4.921875, 30.600094 ], [ -4.921875, 30.448674 ], [ -5.097656, 30.448674 ], [ -5.097656, 30.145127 ], [ -5.449219, 30.145127 ], [ -5.449219, 29.993002 ], [ -5.800781, 29.993002 ], [ -5.800781, 29.840644 ], [ -6.503906, 29.840644 ], [ -6.503906, 29.688053 ], [ -7.207031, 29.688053 ], [ -7.207031, 29.535230 ], [ -7.558594, 29.535230 ], [ -7.558594, 29.382175 ], [ -7.910156, 29.382175 ], [ -7.910156, 29.228890 ], [ -8.261719, 29.228890 ], [ -8.261719, 29.075375 ], [ -8.613281, 29.075375 ], [ -8.613281, 28.921631 ], [ -8.789062, 28.921631 ], [ -8.789062, 27.683528 ], [ -8.964844, 27.683528 ], [ -8.964844, 27.215556 ], [ -9.492188, 27.215556 ], [ -9.492188, 27.059126 ], [ -9.667969, 27.059126 ], [ -9.667969, 26.902477 ], [ -10.546875, 26.902477 ], [ -10.546875, 27.059126 ], [ -10.898438, 27.059126 ], [ -10.898438, 26.902477 ], [ -11.425781, 26.902477 ], [ -11.425781, 26.588527 ], [ -11.601562, 26.588527 ], [ -11.601562, 26.273714 ], [ -11.777344, 26.273714 ], [ -11.777344, 26.115986 ], [ -12.128906, 26.115986 ], [ -12.128906, 25.799891 ], [ -12.304688, 25.799891 ], [ -12.304688, 25.482951 ], [ -12.480469, 25.482951 ], [ -12.480469, 25.005973 ], [ -12.656250, 25.005973 ], [ -12.656250, 24.686952 ], [ -12.832031, 24.686952 ], [ -12.832031, 24.527135 ], [ -13.007812, 24.527135 ], [ -13.007812, 24.367114 ], [ -13.183594, 24.367114 ], [ -13.183594, 24.206890 ], [ -13.535156, 24.206890 ], [ -13.535156, 24.046464 ], [ -13.710938, 24.046464 ], [ -13.710938, 23.885838 ], [ -13.886719, 23.885838 ], [ -13.886719, 23.725012 ], [ -14.062500, 23.725012 ], [ -14.062500, 23.079732 ], [ -14.238281, 23.079732 ], [ -14.238281, 22.268764 ], [ -14.414062, 22.268764 ], [ -14.414062, 22.105999 ], [ -14.589844, 22.105999 ], [ -14.589844, 21.943046 ], [ -14.765625, 21.943046 ], [ -14.765625, 21.616579 ], [ -15.820312, 21.616579 ], [ -15.820312, 21.453069 ], [ -17.050781, 21.453069 ], [ -17.050781, 21.943046 ], [ -16.875000, 21.943046 ], [ -16.875000, 22.105999 ], [ -16.699219, 22.105999 ], [ -16.699219, 22.268764 ], [ -16.523438, 22.268764 ], [ -16.523438, 22.593726 ], [ -16.347656, 22.593726 ], [ -16.347656, 23.241346 ], [ -16.171875, 23.241346 ], [ -16.171875, 23.563987 ], [ -15.996094, 23.563987 ], [ -15.996094, 23.725012 ], [ -15.820312, 23.725012 ], [ -15.820312, 24.046464 ], [ -15.644531, 24.046464 ], [ -15.644531, 24.206890 ], [ -15.468750, 24.206890 ], [ -15.468750, 24.367114 ], [ -15.117188, 24.367114 ], [ -15.117188, 24.846565 ], [ -14.941406, 24.846565 ], [ -14.941406, 25.799891 ], [ -14.765625, 25.799891 ], [ -14.765625, 26.115986 ], [ -14.589844, 26.115986 ], [ -14.589844, 26.273714 ], [ -14.414062, 26.273714 ], [ -14.414062, 26.431228 ], [ -14.062500, 26.431228 ], [ -14.062500, 26.588527 ], [ -13.886719, 26.588527 ], [ -13.886719, 26.745610 ], [ -13.710938, 26.745610 ], [ -13.710938, 27.059126 ], [ -13.535156, 27.059126 ], [ -13.535156, 27.215556 ], [ -13.359375, 27.215556 ], [ -13.359375, 27.527758 ], [ -13.183594, 27.527758 ], [ -13.183594, 27.683528 ], [ -13.007812, 27.683528 ], [ -13.007812, 27.839076 ], [ -12.832031, 27.839076 ], [ -12.832031, 27.994401 ], [ -12.656250, 27.994401 ], [ -12.656250, 28.149503 ], [ -11.601562, 28.149503 ], [ -11.601562, 28.304381 ], [ -11.425781, 28.304381 ], [ -11.425781, 28.459033 ], [ -11.250000, 28.459033 ], [ -11.250000, 28.613459 ], [ -11.074219, 28.613459 ], [ -11.074219, 28.767659 ], [ -10.898438, 28.767659 ], [ -10.898438, 28.921631 ], [ -10.722656, 28.921631 ], [ -10.722656, 29.075375 ], [ -10.546875, 29.075375 ], [ -10.546875, 29.228890 ], [ -10.371094, 29.228890 ], [ -10.371094, 29.382175 ], [ -10.195312, 29.382175 ], [ -10.195312, 29.535230 ], [ -10.019531, 29.535230 ], [ -10.019531, 29.688053 ], [ -9.843750, 29.688053 ], [ -9.843750, 29.840644 ], [ -9.667969, 29.840644 ], [ -9.667969, 30.600094 ], [ -9.843750, 30.600094 ], [ -9.843750, 31.353637 ], [ -9.667969, 31.353637 ], [ -9.667969, 31.802893 ], [ -9.492188, 31.802893 ], [ -9.492188, 32.398516 ], [ -9.316406, 32.398516 ], [ -9.316406, 32.694866 ], [ -9.140625, 32.694866 ], [ -9.140625, 32.990236 ], [ -8.964844, 32.990236 ], [ -8.964844, 33.137551 ], [ -8.789062, 33.137551 ], [ -8.789062, 33.284620 ], [ -8.437500, 33.284620 ], [ -8.437500, 33.431441 ], [ -8.085938, 33.431441 ], [ -8.085938, 33.578015 ], [ -7.734375, 33.578015 ], [ -7.734375, 33.724340 ], [ -7.558594, 33.724340 ], [ -7.558594, 33.870416 ], [ -7.207031, 33.870416 ], [ -7.207031, 34.016242 ], [ -7.031250, 34.016242 ], [ -7.031250, 34.161818 ], [ -6.855469, 34.161818 ], [ -6.855469, 34.452218 ], [ -6.679688, 34.452218 ], [ -6.679688, 34.741612 ], [ -6.503906, 34.741612 ], [ -6.503906, 35.029996 ], [ -6.328125, 35.029996 ], [ -6.328125, 35.317366 ], [ -6.152344, 35.317366 ], [ -6.152344, 35.603719 ], [ -5.976562, 35.603719 ], [ -5.976562, 35.889050 ], [ -5.273438, 35.889050 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.589844, 16.467695 ], [ -14.238281, 16.467695 ], [ -14.238281, 16.299051 ], [ -14.062500, 16.299051 ], [ -14.062500, 16.130262 ], [ -13.710938, 16.130262 ], [ -13.710938, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.792254 ], [ -13.183594, 15.792254 ], [ -13.183594, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.284185 ], [ -12.832031, 15.284185 ], [ -12.832031, 15.114553 ], [ -12.656250, 15.114553 ], [ -12.656250, 14.944785 ], [ -12.480469, 14.944785 ], [ -12.480469, 14.774883 ], [ -12.304688, 14.774883 ], [ -12.304688, 14.604847 ], [ -12.128906, 14.604847 ], [ -12.128906, 13.581921 ], [ -11.953125, 13.581921 ], [ -11.953125, 13.239945 ], [ -11.777344, 13.239945 ], [ -11.777344, 13.068777 ], [ -11.601562, 13.068777 ], [ -11.601562, 12.897489 ], [ -11.425781, 12.897489 ], [ -11.425781, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.382928 ], [ -13.007812, 12.382928 ], [ -13.007812, 12.554564 ], [ -16.347656, 12.554564 ], [ -16.347656, 12.382928 ], [ -16.699219, 12.382928 ], [ -16.699219, 12.726084 ], [ -16.875000, 12.726084 ], [ -16.875000, 13.068777 ], [ -15.644531, 13.068777 ], [ -15.644531, 13.239945 ], [ -15.292969, 13.239945 ], [ -15.292969, 13.410994 ], [ -14.941406, 13.410994 ], [ -14.941406, 13.239945 ], [ -14.062500, 13.239945 ], [ -14.062500, 13.410994 ], [ -13.886719, 13.410994 ], [ -13.886719, 13.581921 ], [ -14.941406, 13.581921 ], [ -14.941406, 13.752725 ], [ -15.117188, 13.752725 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.752725 ], [ -15.644531, 13.752725 ], [ -15.644531, 13.581921 ], [ -16.699219, 13.581921 ], [ -16.699219, 13.752725 ], [ -16.875000, 13.752725 ], [ -16.875000, 14.093957 ], [ -17.050781, 14.093957 ], [ -17.050781, 14.434680 ], [ -17.226562, 14.434680 ], [ -17.226562, 14.604847 ], [ -17.578125, 14.604847 ], [ -17.578125, 14.774883 ], [ -17.226562, 14.774883 ], [ -17.226562, 14.944785 ], [ -17.050781, 14.944785 ], [ -17.050781, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.453680 ], [ -16.699219, 15.453680 ], [ -16.699219, 15.792254 ], [ -16.523438, 15.792254 ], [ -16.523438, 16.130262 ], [ -16.347656, 16.130262 ], [ -16.347656, 16.299051 ], [ -16.171875, 16.299051 ], [ -16.171875, 16.467695 ], [ -15.996094, 16.467695 ], [ -15.996094, 16.299051 ], [ -15.468750, 16.299051 ], [ -15.468750, 16.467695 ], [ -15.117188, 16.467695 ], [ -15.117188, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.589844, 16.636192 ], [ -14.589844, 16.467695 ], [ -14.238281, 16.467695 ], [ -14.238281, 16.299051 ], [ -13.886719, 16.299051 ], [ -13.886719, 16.130262 ], [ -13.535156, 16.130262 ], [ -13.535156, 15.961329 ], [ -13.359375, 15.961329 ], [ -13.359375, 15.792254 ], [ -13.183594, 15.792254 ], [ -13.183594, 15.623037 ], [ -13.007812, 15.623037 ], [ -13.007812, 15.453680 ], [ -12.832031, 15.453680 ], [ -12.832031, 15.284185 ], [ -12.656250, 15.284185 ], [ -12.656250, 15.114553 ], [ -12.480469, 15.114553 ], [ -12.480469, 14.774883 ], [ -12.304688, 14.774883 ], [ -12.304688, 14.434680 ], [ -12.128906, 14.434680 ], [ -12.128906, 13.752725 ], [ -11.953125, 13.752725 ], [ -11.953125, 13.410994 ], [ -11.777344, 13.410994 ], [ -11.777344, 13.239945 ], [ -11.601562, 13.239945 ], [ -11.601562, 12.554564 ], [ -12.304688, 12.554564 ], [ -12.304688, 12.382928 ], [ -13.007812, 12.382928 ], [ -13.007812, 12.554564 ], [ -13.359375, 12.554564 ], [ -13.359375, 12.726084 ], [ -15.644531, 12.726084 ], [ -15.644531, 12.554564 ], [ -16.347656, 12.554564 ], [ -16.347656, 12.382928 ], [ -16.699219, 12.382928 ], [ -16.699219, 12.726084 ], [ -16.875000, 12.726084 ], [ -16.875000, 13.239945 ], [ -15.820312, 13.239945 ], [ -15.820312, 13.410994 ], [ -15.292969, 13.410994 ], [ -15.292969, 13.581921 ], [ -15.117188, 13.581921 ], [ -15.117188, 13.410994 ], [ -14.062500, 13.410994 ], [ -14.062500, 13.581921 ], [ -13.886719, 13.581921 ], [ -13.886719, 13.752725 ], [ -15.117188, 13.752725 ], [ -15.117188, 13.923404 ], [ -15.468750, 13.923404 ], [ -15.468750, 13.752725 ], [ -16.875000, 13.752725 ], [ -16.875000, 13.923404 ], [ -17.050781, 13.923404 ], [ -17.050781, 14.264383 ], [ -17.226562, 14.264383 ], [ -17.226562, 14.434680 ], [ -17.402344, 14.434680 ], [ -17.402344, 14.604847 ], [ -17.753906, 14.604847 ], [ -17.753906, 14.774883 ], [ -17.402344, 14.774883 ], [ -17.402344, 14.944785 ], [ -17.050781, 14.944785 ], [ -17.050781, 15.284185 ], [ -16.875000, 15.284185 ], [ -16.875000, 15.453680 ], [ -16.699219, 15.453680 ], [ -16.699219, 15.961329 ], [ -16.523438, 15.961329 ], [ -16.523438, 16.299051 ], [ -16.171875, 16.299051 ], [ -16.171875, 16.467695 ], [ -15.292969, 16.467695 ], [ -15.292969, 16.636192 ], [ -14.589844, 16.636192 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -15.117188, 13.752725 ], [ -14.941406, 13.752725 ], [ -14.941406, 13.581921 ], [ -13.886719, 13.581921 ], [ -13.886719, 13.410994 ], [ -14.062500, 13.410994 ], [ -14.062500, 13.239945 ], [ -14.941406, 13.239945 ], [ -14.941406, 13.410994 ], [ -15.292969, 13.410994 ], [ -15.292969, 13.239945 ], [ -15.644531, 13.239945 ], [ -15.644531, 13.068777 ], [ -16.875000, 13.068777 ], [ -16.875000, 13.239945 ], [ -16.699219, 13.239945 ], [ -16.699219, 13.581921 ], [ -15.644531, 13.581921 ], [ -15.644531, 13.752725 ], [ -15.468750, 13.752725 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.117188, 13.923404 ], [ -15.117188, 13.752725 ], [ -13.886719, 13.752725 ], [ -13.886719, 13.581921 ], [ -14.062500, 13.581921 ], [ -14.062500, 13.410994 ], [ -15.117188, 13.410994 ], [ -15.117188, 13.581921 ], [ -15.292969, 13.581921 ], [ -15.292969, 13.410994 ], [ -15.820312, 13.410994 ], [ -15.820312, 13.239945 ], [ -16.875000, 13.239945 ], [ -16.875000, 13.752725 ], [ -15.468750, 13.752725 ], [ -15.468750, 13.923404 ], [ -15.117188, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.554564 ], [ -13.710938, 12.211180 ], [ -13.886719, 12.211180 ], [ -13.886719, 12.039321 ], [ -13.710938, 12.039321 ], [ -13.710938, 11.695273 ], [ -14.062500, 11.695273 ], [ -14.062500, 11.523088 ], [ -14.765625, 11.523088 ], [ -14.765625, 11.350797 ], [ -14.941406, 11.350797 ], [ -14.941406, 11.005904 ], [ -15.292969, 11.005904 ], [ -15.292969, 11.178402 ], [ -15.468750, 11.178402 ], [ -15.468750, 11.350797 ], [ -15.644531, 11.350797 ], [ -15.644531, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.695273 ], [ -16.347656, 11.695273 ], [ -16.347656, 12.039321 ], [ -16.699219, 12.039321 ], [ -16.699219, 12.382928 ], [ -16.347656, 12.382928 ], [ -16.347656, 12.554564 ], [ -13.710938, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.726084 ], [ -13.710938, 12.554564 ], [ -13.886719, 12.554564 ], [ -13.886719, 11.695273 ], [ -14.238281, 11.695273 ], [ -14.238281, 11.523088 ], [ -14.941406, 11.523088 ], [ -14.941406, 11.350797 ], [ -15.117188, 11.350797 ], [ -15.117188, 11.178402 ], [ -15.468750, 11.178402 ], [ -15.468750, 11.350797 ], [ -15.820312, 11.350797 ], [ -15.820312, 11.523088 ], [ -16.171875, 11.523088 ], [ -16.171875, 11.695273 ], [ -16.347656, 11.695273 ], [ -16.347656, 12.039321 ], [ -16.699219, 12.039321 ], [ -16.699219, 12.382928 ], [ -16.347656, 12.382928 ], [ -16.347656, 12.554564 ], [ -15.644531, 12.554564 ], [ -15.644531, 12.726084 ], [ -13.710938, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.007812, 12.554564 ], [ -13.007812, 12.382928 ], [ -11.601562, 12.382928 ], [ -11.601562, 12.211180 ], [ -11.425781, 12.211180 ], [ -11.425781, 12.039321 ], [ -11.074219, 12.039321 ], [ -11.074219, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 12.039321 ], [ -10.722656, 12.039321 ], [ -10.722656, 11.867351 ], [ -9.843750, 11.867351 ], [ -9.843750, 12.039321 ], [ -9.492188, 12.039321 ], [ -9.492188, 12.211180 ], [ -9.316406, 12.211180 ], [ -9.316406, 12.382928 ], [ -9.140625, 12.382928 ], [ -9.140625, 12.211180 ], [ -8.964844, 12.211180 ], [ -8.964844, 11.867351 ], [ -8.789062, 11.867351 ], [ -8.789062, 11.695273 ], [ -8.613281, 11.695273 ], [ -8.613281, 11.350797 ], [ -8.437500, 11.350797 ], [ -8.437500, 11.178402 ], [ -8.613281, 11.178402 ], [ -8.613281, 10.833306 ], [ -8.261719, 10.833306 ], [ -8.261719, 10.314919 ], [ -8.085938, 10.314919 ], [ -8.085938, 10.141932 ], [ -8.261719, 10.141932 ], [ -8.261719, 9.622414 ], [ -8.085938, 9.622414 ], [ -8.085938, 8.928487 ], [ -7.910156, 8.928487 ], [ -7.910156, 8.407168 ], [ -8.261719, 8.407168 ], [ -8.261719, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.536764 ], [ -8.964844, 7.536764 ], [ -8.964844, 7.362467 ], [ -9.316406, 7.362467 ], [ -9.316406, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 8.754795 ], [ -10.722656, 8.754795 ], [ -10.722656, 9.102097 ], [ -10.546875, 9.102097 ], [ -10.546875, 9.275622 ], [ -10.722656, 9.275622 ], [ -10.722656, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.074219, 9.795678 ], [ -11.074219, 9.968851 ], [ -11.953125, 9.968851 ], [ -11.953125, 9.795678 ], [ -12.480469, 9.795678 ], [ -12.480469, 9.622414 ], [ -12.656250, 9.622414 ], [ -12.656250, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 8.928487 ], [ -13.359375, 8.928487 ], [ -13.359375, 9.102097 ], [ -13.535156, 9.102097 ], [ -13.535156, 9.275622 ], [ -13.710938, 9.275622 ], [ -13.710938, 9.449062 ], [ -13.886719, 9.449062 ], [ -13.886719, 9.795678 ], [ -14.062500, 9.795678 ], [ -14.062500, 9.968851 ], [ -14.589844, 9.968851 ], [ -14.589844, 10.314919 ], [ -14.765625, 10.314919 ], [ -14.765625, 10.833306 ], [ -15.117188, 10.833306 ], [ -15.117188, 11.005904 ], [ -14.941406, 11.005904 ], [ -14.941406, 11.350797 ], [ -14.765625, 11.350797 ], [ -14.765625, 11.523088 ], [ -14.062500, 11.523088 ], [ -14.062500, 11.695273 ], [ -13.710938, 11.695273 ], [ -13.710938, 12.039321 ], [ -13.886719, 12.039321 ], [ -13.886719, 12.211180 ], [ -13.710938, 12.211180 ], [ -13.710938, 12.554564 ], [ -13.007812, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.359375, 12.726084 ], [ -13.359375, 12.554564 ], [ -13.007812, 12.554564 ], [ -13.007812, 12.382928 ], [ -12.304688, 12.382928 ], [ -12.304688, 12.554564 ], [ -11.601562, 12.554564 ], [ -11.601562, 12.211180 ], [ -10.898438, 12.211180 ], [ -10.898438, 12.039321 ], [ -10.546875, 12.039321 ], [ -10.546875, 11.867351 ], [ -10.195312, 11.867351 ], [ -10.195312, 12.039321 ], [ -10.019531, 12.039321 ], [ -10.019531, 12.211180 ], [ -9.492188, 12.211180 ], [ -9.492188, 12.382928 ], [ -9.140625, 12.382928 ], [ -9.140625, 12.211180 ], [ -8.964844, 12.211180 ], [ -8.964844, 12.039321 ], [ -8.789062, 12.039321 ], [ -8.789062, 11.695273 ], [ -8.613281, 11.695273 ], [ -8.613281, 11.523088 ], [ -8.437500, 11.523088 ], [ -8.437500, 11.350797 ], [ -8.613281, 11.350797 ], [ -8.613281, 11.005904 ], [ -8.789062, 11.005904 ], [ -8.789062, 10.833306 ], [ -8.437500, 10.833306 ], [ -8.437500, 10.487812 ], [ -8.261719, 10.487812 ], [ -8.261719, 10.314919 ], [ -8.085938, 10.314919 ], [ -8.085938, 10.141932 ], [ -8.261719, 10.141932 ], [ -8.261719, 9.968851 ], [ -8.437500, 9.968851 ], [ -8.437500, 9.622414 ], [ -8.261719, 9.622414 ], [ -8.261719, 9.449062 ], [ -8.085938, 9.449062 ], [ -8.085938, 8.928487 ], [ -7.910156, 8.928487 ], [ -7.910156, 8.581021 ], [ -8.261719, 8.581021 ], [ -8.261719, 8.407168 ], [ -8.437500, 8.407168 ], [ -8.437500, 8.233237 ], [ -8.261719, 8.233237 ], [ -8.261719, 7.885147 ], [ -8.437500, 7.885147 ], [ -8.437500, 7.710992 ], [ -8.789062, 7.710992 ], [ -8.789062, 7.536764 ], [ -8.964844, 7.536764 ], [ -8.964844, 7.362467 ], [ -9.492188, 7.362467 ], [ -9.492188, 8.059230 ], [ -9.667969, 8.059230 ], [ -9.667969, 8.407168 ], [ -9.843750, 8.407168 ], [ -9.843750, 8.581021 ], [ -10.019531, 8.581021 ], [ -10.019531, 8.407168 ], [ -10.546875, 8.407168 ], [ -10.546875, 8.928487 ], [ -10.722656, 8.928487 ], [ -10.722656, 9.449062 ], [ -10.898438, 9.449062 ], [ -10.898438, 9.795678 ], [ -11.074219, 9.795678 ], [ -11.074219, 9.968851 ], [ -11.250000, 9.968851 ], [ -11.250000, 10.141932 ], [ -11.953125, 10.141932 ], [ -11.953125, 9.968851 ], [ -12.480469, 9.968851 ], [ -12.480469, 9.795678 ], [ -12.656250, 9.795678 ], [ -12.656250, 9.449062 ], [ -12.832031, 9.449062 ], [ -12.832031, 9.275622 ], [ -13.007812, 9.275622 ], [ -13.007812, 9.102097 ], [ -13.183594, 9.102097 ], [ -13.183594, 8.928487 ], [ -13.359375, 8.928487 ], [ -13.359375, 9.102097 ], [ -13.535156, 9.102097 ], [ -13.535156, 9.449062 ], [ -13.710938, 9.449062 ], [ -13.710938, 9.622414 ], [ -13.886719, 9.622414 ], [ -13.886719, 9.795678 ], [ -14.238281, 9.795678 ], [ -14.238281, 9.968851 ], [ -14.414062, 9.968851 ], [ -14.414062, 10.141932 ], [ -14.589844, 10.141932 ], [ -14.589844, 10.487812 ], [ -14.765625, 10.487812 ], [ -14.765625, 10.833306 ], [ -14.941406, 10.833306 ], [ -14.941406, 11.005904 ], [ -15.292969, 11.005904 ], [ -15.292969, 11.178402 ], [ -15.117188, 11.178402 ], [ -15.117188, 11.350797 ], [ -14.941406, 11.350797 ], [ -14.941406, 11.523088 ], [ -14.238281, 11.523088 ], [ -14.238281, 11.695273 ], [ -13.886719, 11.695273 ], [ -13.886719, 12.554564 ], [ -13.710938, 12.554564 ], [ -13.710938, 12.726084 ], [ -13.359375, 12.726084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.074219, 9.968851 ], [ -11.074219, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ], [ -10.722656, 9.449062 ], [ -10.722656, 9.275622 ], [ -10.546875, 9.275622 ], [ -10.546875, 9.102097 ], [ -10.722656, 9.102097 ], [ -10.722656, 8.754795 ], [ -10.546875, 8.754795 ], [ -10.546875, 8.407168 ], [ -10.195312, 8.407168 ], [ -10.195312, 8.233237 ], [ -10.371094, 8.233237 ], [ -10.371094, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 7.885147 ], [ -10.722656, 7.885147 ], [ -10.722656, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.362467 ], [ -11.074219, 7.362467 ], [ -11.074219, 7.188101 ], [ -11.250000, 7.188101 ], [ -11.250000, 7.013668 ], [ -11.425781, 7.013668 ], [ -11.425781, 6.839170 ], [ -12.128906, 6.839170 ], [ -12.128906, 7.013668 ], [ -12.480469, 7.013668 ], [ -12.480469, 7.188101 ], [ -12.656250, 7.188101 ], [ -12.656250, 7.536764 ], [ -12.832031, 7.536764 ], [ -12.832031, 7.710992 ], [ -13.007812, 7.710992 ], [ -13.007812, 8.059230 ], [ -13.183594, 8.059230 ], [ -13.183594, 8.928487 ], [ -13.007812, 8.928487 ], [ -13.007812, 9.102097 ], [ -12.656250, 9.102097 ], [ -12.656250, 9.622414 ], [ -12.480469, 9.622414 ], [ -12.480469, 9.795678 ], [ -11.953125, 9.795678 ], [ -11.953125, 9.968851 ], [ -11.074219, 9.968851 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.141932 ], [ -11.250000, 9.968851 ], [ -11.074219, 9.968851 ], [ -11.074219, 9.795678 ], [ -10.898438, 9.795678 ], [ -10.898438, 9.449062 ], [ -10.722656, 9.449062 ], [ -10.722656, 8.928487 ], [ -10.546875, 8.928487 ], [ -10.546875, 8.407168 ], [ -10.371094, 8.407168 ], [ -10.371094, 8.233237 ], [ -10.546875, 8.233237 ], [ -10.546875, 8.059230 ], [ -10.722656, 8.059230 ], [ -10.722656, 7.885147 ], [ -10.898438, 7.885147 ], [ -10.898438, 7.710992 ], [ -11.074219, 7.710992 ], [ -11.074219, 7.536764 ], [ -11.250000, 7.536764 ], [ -11.250000, 7.013668 ], [ -11.425781, 7.013668 ], [ -11.425781, 6.839170 ], [ -11.777344, 6.839170 ], [ -11.777344, 7.013668 ], [ -12.128906, 7.013668 ], [ -12.128906, 7.188101 ], [ -12.480469, 7.188101 ], [ -12.480469, 7.362467 ], [ -12.656250, 7.362467 ], [ -12.656250, 7.536764 ], [ -12.832031, 7.536764 ], [ -12.832031, 7.710992 ], [ -13.007812, 7.710992 ], [ -13.007812, 8.059230 ], [ -13.183594, 8.059230 ], [ -13.183594, 8.581021 ], [ -13.359375, 8.581021 ], [ -13.359375, 8.928487 ], [ -13.183594, 8.928487 ], [ -13.183594, 9.102097 ], [ -13.007812, 9.102097 ], [ -13.007812, 9.275622 ], [ -12.832031, 9.275622 ], [ -12.832031, 9.449062 ], [ -12.656250, 9.449062 ], [ -12.656250, 9.795678 ], [ -12.480469, 9.795678 ], [ -12.480469, 9.968851 ], [ -11.953125, 9.968851 ], [ -11.953125, 10.141932 ], [ -11.250000, 10.141932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 27.215556 ], [ -8.261719, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 26.902477 ], [ -7.910156, 26.902477 ], [ -7.910156, 26.745610 ], [ -7.558594, 26.745610 ], [ -7.558594, 26.588527 ], [ -7.382812, 26.588527 ], [ -7.382812, 26.431228 ], [ -7.031250, 26.431228 ], [ -7.031250, 26.273714 ], [ -6.855469, 26.273714 ], [ -6.855469, 26.115986 ], [ -6.679688, 26.115986 ], [ -6.679688, 25.958045 ], [ -6.328125, 25.958045 ], [ -6.328125, 25.799891 ], [ -6.152344, 25.799891 ], [ -6.152344, 25.641526 ], [ -5.800781, 25.641526 ], [ -5.800781, 25.482951 ], [ -5.625000, 25.482951 ], [ -5.625000, 25.324167 ], [ -5.449219, 25.324167 ], [ -5.449219, 25.165173 ], [ -5.097656, 25.165173 ], [ -5.097656, 25.005973 ], [ -6.503906, 25.005973 ], [ -6.503906, 24.206890 ], [ -6.328125, 24.206890 ], [ -6.328125, 22.755921 ], [ -6.152344, 22.755921 ], [ -6.152344, 21.289374 ], [ -5.976562, 21.289374 ], [ -5.976562, 19.808054 ], [ -5.800781, 19.808054 ], [ -5.800781, 18.479609 ], [ -5.625000, 18.479609 ], [ -5.625000, 16.972741 ], [ -5.449219, 16.972741 ], [ -5.449219, 16.130262 ], [ -5.273438, 16.130262 ], [ -5.273438, 15.961329 ], [ -5.449219, 15.961329 ], [ -5.449219, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.453680 ], [ -9.492188, 15.453680 ], [ -9.492188, 15.284185 ], [ -10.195312, 15.284185 ], [ -10.195312, 15.114553 ], [ -11.074219, 15.114553 ], [ -11.074219, 15.284185 ], [ -11.425781, 15.284185 ], [ -11.425781, 15.453680 ], [ -11.601562, 15.453680 ], [ -11.601562, 15.114553 ], [ -11.777344, 15.114553 ], [ -11.777344, 14.604847 ], [ -12.304688, 14.604847 ], [ -12.304688, 14.774883 ], [ -12.480469, 14.774883 ], [ -12.480469, 14.944785 ], [ -12.656250, 14.944785 ], [ -12.656250, 15.114553 ], [ -12.832031, 15.114553 ], [ -12.832031, 15.284185 ], [ -13.007812, 15.284185 ], [ -13.007812, 15.623037 ], [ -13.183594, 15.623037 ], [ -13.183594, 15.792254 ], [ -13.359375, 15.792254 ], [ -13.359375, 15.961329 ], [ -13.710938, 15.961329 ], [ -13.710938, 16.130262 ], [ -14.062500, 16.130262 ], [ -14.062500, 16.299051 ], [ -14.238281, 16.299051 ], [ -14.238281, 16.467695 ], [ -14.589844, 16.467695 ], [ -14.589844, 16.636192 ], [ -15.117188, 16.636192 ], [ -15.117188, 16.467695 ], [ -15.468750, 16.467695 ], [ -15.468750, 16.299051 ], [ -15.996094, 16.299051 ], [ -15.996094, 16.467695 ], [ -16.171875, 16.467695 ], [ -16.171875, 16.299051 ], [ -16.347656, 16.299051 ], [ -16.347656, 16.130262 ], [ -16.523438, 16.130262 ], [ -16.523438, 16.804541 ], [ -16.347656, 16.804541 ], [ -16.347656, 17.644022 ], [ -16.171875, 17.644022 ], [ -16.171875, 19.311143 ], [ -16.347656, 19.311143 ], [ -16.347656, 20.303418 ], [ -16.523438, 20.303418 ], [ -16.523438, 20.632784 ], [ -16.699219, 20.632784 ], [ -16.699219, 20.797201 ], [ -17.050781, 20.797201 ], [ -17.050781, 21.125498 ], [ -16.875000, 21.125498 ], [ -16.875000, 21.289374 ], [ -13.007812, 21.289374 ], [ -13.007812, 21.943046 ], [ -13.183594, 21.943046 ], [ -13.183594, 22.755921 ], [ -13.007812, 22.755921 ], [ -13.007812, 23.079732 ], [ -12.832031, 23.079732 ], [ -12.832031, 23.241346 ], [ -12.304688, 23.241346 ], [ -12.304688, 23.402765 ], [ -11.953125, 23.402765 ], [ -11.953125, 25.958045 ], [ -8.613281, 25.958045 ], [ -8.613281, 27.215556 ], [ -8.261719, 27.215556 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.437500, 27.371767 ], [ -8.437500, 27.215556 ], [ -8.261719, 27.215556 ], [ -8.261719, 27.059126 ], [ -8.085938, 27.059126 ], [ -8.085938, 26.902477 ], [ -7.734375, 26.902477 ], [ -7.734375, 26.745610 ], [ -7.558594, 26.745610 ], [ -7.558594, 26.588527 ], [ -7.382812, 26.588527 ], [ -7.382812, 26.431228 ], [ -7.031250, 26.431228 ], [ -7.031250, 26.273714 ], [ -6.855469, 26.273714 ], [ -6.855469, 26.115986 ], [ -6.503906, 26.115986 ], [ -6.503906, 25.958045 ], [ -6.328125, 25.958045 ], [ -6.328125, 25.799891 ], [ -6.152344, 25.799891 ], [ -6.152344, 25.641526 ], [ -5.800781, 25.641526 ], [ -5.800781, 25.482951 ], [ -5.625000, 25.482951 ], [ -5.625000, 25.324167 ], [ -5.449219, 25.324167 ], [ -5.449219, 25.165173 ], [ -5.097656, 25.165173 ], [ -5.097656, 25.005973 ], [ -6.503906, 25.005973 ], [ -6.503906, 24.206890 ], [ -6.328125, 24.206890 ], [ -6.328125, 22.917923 ], [ -6.152344, 22.917923 ], [ -6.152344, 21.453069 ], [ -5.976562, 21.453069 ], [ -5.976562, 19.642588 ], [ -5.800781, 19.642588 ], [ -5.800781, 17.476432 ], [ -5.625000, 17.476432 ], [ -5.625000, 16.299051 ], [ -5.449219, 16.299051 ], [ -5.449219, 15.961329 ], [ -5.625000, 15.961329 ], [ -5.625000, 15.623037 ], [ -9.667969, 15.623037 ], [ -9.667969, 15.453680 ], [ -9.843750, 15.453680 ], [ -9.843750, 15.284185 ], [ -10.195312, 15.284185 ], [ -10.195312, 15.453680 ], [ -10.371094, 15.453680 ], [ -10.371094, 15.284185 ], [ -11.250000, 15.284185 ], [ -11.250000, 15.453680 ], [ -11.777344, 15.453680 ], [ -11.777344, 15.114553 ], [ -11.953125, 15.114553 ], [ -11.953125, 14.774883 ], [ -12.480469, 14.774883 ], [ -12.480469, 15.114553 ], [ -12.656250, 15.114553 ], [ -12.656250, 15.284185 ], [ -12.832031, 15.284185 ], [ -12.832031, 15.453680 ], [ -13.007812, 15.453680 ], [ -13.007812, 15.623037 ], [ -13.183594, 15.623037 ], [ -13.183594, 15.792254 ], [ -13.359375, 15.792254 ], [ -13.359375, 15.961329 ], [ -13.535156, 15.961329 ], [ -13.535156, 16.130262 ], [ -13.886719, 16.130262 ], [ -13.886719, 16.299051 ], [ -14.238281, 16.299051 ], [ -14.238281, 16.467695 ], [ -14.589844, 16.467695 ], [ -14.589844, 16.636192 ], [ -15.292969, 16.636192 ], [ -15.292969, 16.467695 ], [ -16.171875, 16.467695 ], [ -16.171875, 16.299051 ], [ -16.523438, 16.299051 ], [ -16.523438, 16.467695 ], [ -16.699219, 16.467695 ], [ -16.699219, 16.804541 ], [ -16.523438, 16.804541 ], [ -16.523438, 17.140790 ], [ -16.347656, 17.140790 ], [ -16.347656, 17.644022 ], [ -16.171875, 17.644022 ], [ -16.171875, 18.646245 ], [ -16.347656, 18.646245 ], [ -16.347656, 19.311143 ], [ -16.523438, 19.311143 ], [ -16.523438, 19.808054 ], [ -16.347656, 19.808054 ], [ -16.347656, 20.138470 ], [ -16.523438, 20.138470 ], [ -16.523438, 20.468189 ], [ -16.699219, 20.468189 ], [ -16.699219, 20.632784 ], [ -16.875000, 20.632784 ], [ -16.875000, 20.797201 ], [ -17.050781, 20.797201 ], [ -17.050781, 20.961440 ], [ -17.226562, 20.961440 ], [ -17.226562, 21.125498 ], [ -17.050781, 21.125498 ], [ -17.050781, 21.289374 ], [ -16.875000, 21.289374 ], [ -16.875000, 21.453069 ], [ -13.007812, 21.453069 ], [ -13.007812, 22.105999 ], [ -13.183594, 22.105999 ], [ -13.183594, 23.079732 ], [ -13.007812, 23.079732 ], [ -13.007812, 23.402765 ], [ -11.953125, 23.402765 ], [ -11.953125, 24.686952 ], [ -12.128906, 24.686952 ], [ -12.128906, 25.958045 ], [ -8.789062, 25.958045 ], [ -8.789062, 27.371767 ], [ -8.437500, 27.371767 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.005973 ], [ -4.921875, 24.846565 ], [ -4.570312, 24.846565 ], [ -4.570312, 24.686952 ], [ -4.394531, 24.686952 ], [ -4.394531, 24.527135 ], [ -4.218750, 24.527135 ], [ -4.218750, 24.367114 ], [ -3.867188, 24.367114 ], [ -3.867188, 24.206890 ], [ -3.691406, 24.206890 ], [ -3.691406, 24.046464 ], [ -3.515625, 24.046464 ], [ -3.515625, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.725012 ], [ -2.988281, 23.725012 ], [ -2.988281, 23.563987 ], [ -2.812500, 23.563987 ], [ -2.812500, 23.402765 ], [ -2.460938, 23.402765 ], [ -2.460938, 23.241346 ], [ -2.285156, 23.241346 ], [ -2.285156, 23.079732 ], [ -2.109375, 23.079732 ], [ -2.109375, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 22.755921 ], [ -1.582031, 22.755921 ], [ -1.582031, 22.593726 ], [ -1.230469, 22.593726 ], [ -1.230469, 22.431340 ], [ -1.054688, 22.431340 ], [ -1.054688, 22.268764 ], [ -0.703125, 22.268764 ], [ -0.703125, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.703125, 21.453069 ], [ 0.703125, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 14.944785 ], [ -0.527344, 14.944785 ], [ -0.527344, 15.114553 ], [ -0.703125, 15.114553 ], [ -0.703125, 14.944785 ], [ -1.230469, 14.944785 ], [ -1.230469, 14.774883 ], [ -1.582031, 14.774883 ], [ -1.582031, 14.604847 ], [ -1.933594, 14.604847 ], [ -1.933594, 14.434680 ], [ -2.109375, 14.434680 ], [ -2.109375, 14.093957 ], [ -2.460938, 14.093957 ], [ -2.460938, 13.923404 ], [ -2.812500, 13.923404 ], [ -2.812500, 13.752725 ], [ -2.988281, 13.752725 ], [ -2.988281, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.410994 ], [ -4.042969, 13.410994 ], [ -4.042969, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 12.897489 ], [ -4.394531, 12.897489 ], [ -4.394531, 12.382928 ], [ -4.570312, 12.382928 ], [ -4.570312, 12.211180 ], [ -4.746094, 12.211180 ], [ -4.746094, 12.039321 ], [ -4.921875, 12.039321 ], [ -4.921875, 11.867351 ], [ -5.097656, 11.867351 ], [ -5.097656, 11.695273 ], [ -5.273438, 11.695273 ], [ -5.273438, 11.178402 ], [ -5.449219, 11.178402 ], [ -5.449219, 10.141932 ], [ -5.976562, 10.141932 ], [ -5.976562, 10.314919 ], [ -6.152344, 10.314919 ], [ -6.152344, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.314919 ], [ -6.855469, 10.314919 ], [ -6.855469, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 10.314919 ], [ -8.261719, 10.314919 ], [ -8.261719, 10.833306 ], [ -8.613281, 10.833306 ], [ -8.613281, 11.178402 ], [ -8.437500, 11.178402 ], [ -8.437500, 11.350797 ], [ -8.613281, 11.350797 ], [ -8.613281, 11.695273 ], [ -8.789062, 11.695273 ], [ -8.789062, 11.867351 ], [ -8.964844, 11.867351 ], [ -8.964844, 12.211180 ], [ -9.140625, 12.211180 ], [ -9.140625, 12.382928 ], [ -9.316406, 12.382928 ], [ -9.316406, 12.211180 ], [ -9.492188, 12.211180 ], [ -9.492188, 12.039321 ], [ -9.843750, 12.039321 ], [ -9.843750, 11.867351 ], [ -10.722656, 11.867351 ], [ -10.722656, 12.039321 ], [ -10.898438, 12.039321 ], [ -10.898438, 12.211180 ], [ -11.074219, 12.211180 ], [ -11.074219, 12.039321 ], [ -11.425781, 12.039321 ], [ -11.425781, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 12.554564 ], [ -11.425781, 12.554564 ], [ -11.425781, 12.897489 ], [ -11.601562, 12.897489 ], [ -11.601562, 13.068777 ], [ -11.777344, 13.068777 ], [ -11.777344, 13.239945 ], [ -11.953125, 13.239945 ], [ -11.953125, 13.581921 ], [ -12.128906, 13.581921 ], [ -12.128906, 14.604847 ], [ -11.777344, 14.604847 ], [ -11.777344, 15.114553 ], [ -11.601562, 15.114553 ], [ -11.601562, 15.453680 ], [ -11.425781, 15.453680 ], [ -11.425781, 15.284185 ], [ -11.074219, 15.284185 ], [ -11.074219, 15.114553 ], [ -10.195312, 15.114553 ], [ -10.195312, 15.284185 ], [ -9.492188, 15.284185 ], [ -9.492188, 15.453680 ], [ -5.625000, 15.453680 ], [ -5.625000, 15.623037 ], [ -5.449219, 15.623037 ], [ -5.449219, 15.961329 ], [ -5.273438, 15.961329 ], [ -5.273438, 16.130262 ], [ -5.449219, 16.130262 ], [ -5.449219, 16.972741 ], [ -5.625000, 16.972741 ], [ -5.625000, 18.479609 ], [ -5.800781, 18.479609 ], [ -5.800781, 19.808054 ], [ -5.976562, 19.808054 ], [ -5.976562, 21.289374 ], [ -6.152344, 21.289374 ], [ -6.152344, 22.755921 ], [ -6.328125, 22.755921 ], [ -6.328125, 24.206890 ], [ -6.503906, 24.206890 ], [ -6.503906, 25.005973 ], [ -4.921875, 25.005973 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.005973 ], [ -4.921875, 24.846565 ], [ -4.570312, 24.846565 ], [ -4.570312, 24.686952 ], [ -4.394531, 24.686952 ], [ -4.394531, 24.527135 ], [ -4.042969, 24.527135 ], [ -4.042969, 24.367114 ], [ -3.867188, 24.367114 ], [ -3.867188, 24.206890 ], [ -3.515625, 24.206890 ], [ -3.515625, 24.046464 ], [ -3.339844, 24.046464 ], [ -3.339844, 23.885838 ], [ -3.164062, 23.885838 ], [ -3.164062, 23.725012 ], [ -2.812500, 23.725012 ], [ -2.812500, 23.563987 ], [ -2.636719, 23.563987 ], [ -2.636719, 23.402765 ], [ -2.285156, 23.402765 ], [ -2.285156, 23.241346 ], [ -2.109375, 23.241346 ], [ -2.109375, 23.079732 ], [ -1.757812, 23.079732 ], [ -1.757812, 22.917923 ], [ -1.582031, 22.917923 ], [ -1.582031, 22.755921 ], [ -1.230469, 22.755921 ], [ -1.230469, 22.593726 ], [ -1.054688, 22.593726 ], [ -1.054688, 22.431340 ], [ -0.878906, 22.431340 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ 0.000000, 21.943046 ], [ 0.000000, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.703125, 21.453069 ], [ 0.703125, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 15.114553 ], [ 0.703125, 15.114553 ], [ 0.703125, 14.944785 ], [ -0.527344, 14.944785 ], [ -0.527344, 15.114553 ], [ -1.230469, 15.114553 ], [ -1.230469, 14.944785 ], [ -1.582031, 14.944785 ], [ -1.582031, 14.774883 ], [ -1.933594, 14.774883 ], [ -1.933594, 14.604847 ], [ -2.109375, 14.604847 ], [ -2.109375, 14.434680 ], [ -2.285156, 14.434680 ], [ -2.285156, 14.093957 ], [ -2.636719, 14.093957 ], [ -2.636719, 13.923404 ], [ -2.988281, 13.923404 ], [ -2.988281, 13.752725 ], [ -3.164062, 13.752725 ], [ -3.164062, 13.581921 ], [ -3.339844, 13.581921 ], [ -3.339844, 13.410994 ], [ -4.218750, 13.410994 ], [ -4.218750, 13.239945 ], [ -4.394531, 13.239945 ], [ -4.394531, 12.897489 ], [ -4.570312, 12.897489 ], [ -4.570312, 12.382928 ], [ -4.746094, 12.382928 ], [ -4.746094, 12.211180 ], [ -4.921875, 12.211180 ], [ -4.921875, 12.039321 ], [ -5.097656, 12.039321 ], [ -5.097656, 11.867351 ], [ -5.273438, 11.867351 ], [ -5.273438, 11.350797 ], [ -5.449219, 11.350797 ], [ -5.449219, 11.005904 ], [ -5.625000, 11.005904 ], [ -5.625000, 10.660608 ], [ -5.449219, 10.660608 ], [ -5.449219, 10.487812 ], [ -5.625000, 10.487812 ], [ -5.625000, 10.314919 ], [ -5.976562, 10.314919 ], [ -5.976562, 10.141932 ], [ -6.152344, 10.141932 ], [ -6.152344, 10.314919 ], [ -6.328125, 10.314919 ], [ -6.328125, 10.487812 ], [ -6.679688, 10.487812 ], [ -6.679688, 10.314919 ], [ -6.855469, 10.314919 ], [ -6.855469, 10.141932 ], [ -7.382812, 10.141932 ], [ -7.382812, 10.314919 ], [ -8.261719, 10.314919 ], [ -8.261719, 10.487812 ], [ -8.437500, 10.487812 ], [ -8.437500, 10.833306 ], [ -8.789062, 10.833306 ], [ -8.789062, 11.005904 ], [ -8.613281, 11.005904 ], [ -8.613281, 11.350797 ], [ -8.437500, 11.350797 ], [ -8.437500, 11.523088 ], [ -8.613281, 11.523088 ], [ -8.613281, 11.695273 ], [ -8.789062, 11.695273 ], [ -8.789062, 12.039321 ], [ -8.964844, 12.039321 ], [ -8.964844, 12.211180 ], [ -9.140625, 12.211180 ], [ -9.140625, 12.382928 ], [ -9.492188, 12.382928 ], [ -9.492188, 12.211180 ], [ -10.019531, 12.211180 ], [ -10.019531, 12.039321 ], [ -10.195312, 12.039321 ], [ -10.195312, 11.867351 ], [ -10.546875, 11.867351 ], [ -10.546875, 12.039321 ], [ -10.898438, 12.039321 ], [ -10.898438, 12.211180 ], [ -11.601562, 12.211180 ], [ -11.601562, 13.239945 ], [ -11.777344, 13.239945 ], [ -11.777344, 13.410994 ], [ -11.953125, 13.410994 ], [ -11.953125, 13.752725 ], [ -12.128906, 13.752725 ], [ -12.128906, 14.434680 ], [ -12.304688, 14.434680 ], [ -12.304688, 14.774883 ], [ -11.953125, 14.774883 ], [ -11.953125, 15.114553 ], [ -11.777344, 15.114553 ], [ -11.777344, 15.453680 ], [ -11.250000, 15.453680 ], [ -11.250000, 15.284185 ], [ -10.371094, 15.284185 ], [ -10.371094, 15.453680 ], [ -10.195312, 15.453680 ], [ -10.195312, 15.284185 ], [ -9.843750, 15.284185 ], [ -9.843750, 15.453680 ], [ -9.667969, 15.453680 ], [ -9.667969, 15.623037 ], [ -5.625000, 15.623037 ], [ -5.625000, 15.961329 ], [ -5.449219, 15.961329 ], [ -5.449219, 16.299051 ], [ -5.625000, 16.299051 ], [ -5.625000, 17.476432 ], [ -5.800781, 17.476432 ], [ -5.800781, 19.642588 ], [ -5.976562, 19.642588 ], [ -5.976562, 21.453069 ], [ -6.152344, 21.453069 ], [ -6.152344, 22.917923 ], [ -6.328125, 22.917923 ], [ -6.328125, 24.206890 ], [ -6.503906, 24.206890 ], [ -6.503906, 25.005973 ], [ -4.921875, 25.005973 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.527344, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.988281, 9.968851 ], [ -2.812500, 9.968851 ], [ -2.812500, 9.622414 ], [ -3.164062, 9.622414 ], [ -3.164062, 9.795678 ], [ -3.515625, 9.795678 ], [ -3.515625, 9.968851 ], [ -3.691406, 9.968851 ], [ -3.691406, 9.795678 ], [ -4.042969, 9.795678 ], [ -4.042969, 9.622414 ], [ -4.746094, 9.622414 ], [ -4.746094, 9.968851 ], [ -4.921875, 9.968851 ], [ -4.921875, 10.141932 ], [ -5.273438, 10.141932 ], [ -5.273438, 10.314919 ], [ -5.449219, 10.314919 ], [ -5.449219, 11.178402 ], [ -5.273438, 11.178402 ], [ -5.273438, 11.695273 ], [ -5.097656, 11.695273 ], [ -5.097656, 11.867351 ], [ -4.921875, 11.867351 ], [ -4.921875, 12.039321 ], [ -4.746094, 12.039321 ], [ -4.746094, 12.211180 ], [ -4.570312, 12.211180 ], [ -4.570312, 12.382928 ], [ -4.394531, 12.382928 ], [ -4.394531, 12.897489 ], [ -4.218750, 12.897489 ], [ -4.218750, 13.239945 ], [ -4.042969, 13.239945 ], [ -4.042969, 13.410994 ], [ -3.164062, 13.410994 ], [ -3.164062, 13.581921 ], [ -2.988281, 13.581921 ], [ -2.988281, 13.752725 ], [ -2.812500, 13.752725 ], [ -2.812500, 13.923404 ], [ -2.460938, 13.923404 ], [ -2.460938, 14.093957 ], [ -2.109375, 14.093957 ], [ -2.109375, 14.434680 ], [ -1.933594, 14.434680 ], [ -1.933594, 14.604847 ], [ -1.582031, 14.604847 ], [ -1.582031, 14.774883 ], [ -1.230469, 14.774883 ], [ -1.230469, 14.944785 ], [ -0.703125, 14.944785 ], [ -0.703125, 15.114553 ], [ -0.527344, 15.114553 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.527344, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 14.774883 ], [ 0.175781, 14.774883 ], [ 0.175781, 14.264383 ], [ 0.351562, 14.264383 ], [ 0.351562, 13.923404 ], [ 0.527344, 13.923404 ], [ 0.527344, 13.752725 ], [ 0.703125, 13.752725 ], [ 0.703125, 13.581921 ], [ 0.878906, 13.581921 ], [ 0.878906, 11.005904 ], [ 0.351562, 11.005904 ], [ 0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -1.230469, 11.005904 ], [ -1.230469, 11.178402 ], [ -1.933594, 11.178402 ], [ -1.933594, 11.005904 ], [ -2.988281, 11.005904 ], [ -2.988281, 9.795678 ], [ -3.339844, 9.795678 ], [ -3.339844, 9.968851 ], [ -4.042969, 9.968851 ], [ -4.042969, 9.795678 ], [ -4.218750, 9.795678 ], [ -4.218750, 9.622414 ], [ -4.570312, 9.622414 ], [ -4.570312, 9.795678 ], [ -4.921875, 9.795678 ], [ -4.921875, 10.141932 ], [ -5.097656, 10.141932 ], [ -5.097656, 10.314919 ], [ -5.449219, 10.314919 ], [ -5.449219, 10.660608 ], [ -5.625000, 10.660608 ], [ -5.625000, 11.005904 ], [ -5.449219, 11.005904 ], [ -5.449219, 11.350797 ], [ -5.273438, 11.350797 ], [ -5.273438, 11.867351 ], [ -5.097656, 11.867351 ], [ -5.097656, 12.039321 ], [ -4.921875, 12.039321 ], [ -4.921875, 12.211180 ], [ -4.746094, 12.211180 ], [ -4.746094, 12.382928 ], [ -4.570312, 12.382928 ], [ -4.570312, 12.897489 ], [ -4.394531, 12.897489 ], [ -4.394531, 13.239945 ], [ -4.218750, 13.239945 ], [ -4.218750, 13.410994 ], [ -3.339844, 13.410994 ], [ -3.339844, 13.581921 ], [ -3.164062, 13.581921 ], [ -3.164062, 13.752725 ], [ -2.988281, 13.752725 ], [ -2.988281, 13.923404 ], [ -2.636719, 13.923404 ], [ -2.636719, 14.093957 ], [ -2.285156, 14.093957 ], [ -2.285156, 14.434680 ], [ -2.109375, 14.434680 ], [ -2.109375, 14.604847 ], [ -1.933594, 14.604847 ], [ -1.933594, 14.774883 ], [ -1.582031, 14.774883 ], [ -1.582031, 14.944785 ], [ -1.230469, 14.944785 ], [ -1.230469, 15.114553 ], [ -0.527344, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.492188, 8.407168 ], [ -9.492188, 8.059230 ], [ -9.316406, 8.059230 ], [ -9.316406, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.964844, 7.536764 ], [ -8.789062, 7.536764 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 6.664608 ], [ -8.613281, 6.664608 ], [ -8.613281, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 6.140555 ], [ -7.910156, 6.140555 ], [ -7.910156, 5.965754 ], [ -7.734375, 5.965754 ], [ -7.734375, 5.790897 ], [ -7.558594, 5.790897 ], [ -7.558594, 4.740675 ], [ -7.734375, 4.740675 ], [ -7.734375, 4.390229 ], [ -8.261719, 4.390229 ], [ -8.261719, 4.565474 ], [ -8.613281, 4.565474 ], [ -8.613281, 4.740675 ], [ -8.964844, 4.740675 ], [ -8.964844, 4.915833 ], [ -9.140625, 4.915833 ], [ -9.140625, 5.090944 ], [ -9.316406, 5.090944 ], [ -9.316406, 5.266008 ], [ -9.667969, 5.266008 ], [ -9.667969, 5.441022 ], [ -9.843750, 5.441022 ], [ -9.843750, 5.615986 ], [ -10.019531, 5.615986 ], [ -10.019531, 5.790897 ], [ -10.371094, 5.790897 ], [ -10.371094, 5.965754 ], [ -10.722656, 5.965754 ], [ -10.722656, 6.140555 ], [ -10.898438, 6.140555 ], [ -10.898438, 6.315299 ], [ -11.074219, 6.315299 ], [ -11.074219, 6.489983 ], [ -11.250000, 6.489983 ], [ -11.250000, 6.664608 ], [ -11.425781, 6.664608 ], [ -11.425781, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 7.188101 ], [ -11.074219, 7.188101 ], [ -11.074219, 7.362467 ], [ -10.898438, 7.362467 ], [ -10.898438, 7.710992 ], [ -10.722656, 7.710992 ], [ -10.722656, 7.885147 ], [ -10.546875, 7.885147 ], [ -10.546875, 8.059230 ], [ -10.371094, 8.059230 ], [ -10.371094, 8.233237 ], [ -10.195312, 8.233237 ], [ -10.195312, 8.407168 ], [ -9.492188, 8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.843750, 8.581021 ], [ -9.843750, 8.407168 ], [ -9.667969, 8.407168 ], [ -9.667969, 8.059230 ], [ -9.492188, 8.059230 ], [ -9.492188, 7.362467 ], [ -8.964844, 7.362467 ], [ -8.964844, 7.536764 ], [ -8.789062, 7.536764 ], [ -8.789062, 7.710992 ], [ -8.437500, 7.710992 ], [ -8.437500, 7.536764 ], [ -8.613281, 7.536764 ], [ -8.613281, 7.188101 ], [ -8.437500, 7.188101 ], [ -8.437500, 6.664608 ], [ -8.613281, 6.664608 ], [ -8.613281, 6.315299 ], [ -8.437500, 6.315299 ], [ -8.437500, 6.140555 ], [ -8.085938, 6.140555 ], [ -8.085938, 5.965754 ], [ -7.910156, 5.965754 ], [ -7.910156, 5.790897 ], [ -7.734375, 5.790897 ], [ -7.734375, 5.615986 ], [ -7.558594, 5.615986 ], [ -7.558594, 5.266008 ], [ -7.734375, 5.266008 ], [ -7.734375, 4.390229 ], [ -8.437500, 4.390229 ], [ -8.437500, 4.565474 ], [ -8.789062, 4.565474 ], [ -8.789062, 4.740675 ], [ -9.140625, 4.740675 ], [ -9.140625, 4.915833 ], [ -9.316406, 4.915833 ], [ -9.316406, 5.090944 ], [ -9.492188, 5.090944 ], [ -9.492188, 5.266008 ], [ -9.843750, 5.266008 ], [ -9.843750, 5.441022 ], [ -10.019531, 5.441022 ], [ -10.019531, 5.615986 ], [ -10.195312, 5.615986 ], [ -10.195312, 5.790897 ], [ -10.546875, 5.790897 ], [ -10.546875, 5.965754 ], [ -10.898438, 5.965754 ], [ -10.898438, 6.140555 ], [ -11.074219, 6.140555 ], [ -11.074219, 6.315299 ], [ -11.250000, 6.315299 ], [ -11.250000, 6.489983 ], [ -11.425781, 6.489983 ], [ -11.425781, 6.664608 ], [ -11.601562, 6.664608 ], [ -11.601562, 6.839170 ], [ -11.425781, 6.839170 ], [ -11.425781, 7.013668 ], [ -11.250000, 7.013668 ], [ -11.250000, 7.536764 ], [ -11.074219, 7.536764 ], [ -11.074219, 7.710992 ], [ -10.898438, 7.710992 ], [ -10.898438, 7.885147 ], [ -10.722656, 7.885147 ], [ -10.722656, 8.059230 ], [ -10.546875, 8.059230 ], [ -10.546875, 8.233237 ], [ -10.371094, 8.233237 ], [ -10.371094, 8.407168 ], [ -10.019531, 8.407168 ], [ -10.019531, 8.581021 ], [ -9.843750, 8.581021 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.152344, 10.487812 ], [ -6.152344, 10.314919 ], [ -5.976562, 10.314919 ], [ -5.976562, 10.141932 ], [ -5.449219, 10.141932 ], [ -5.449219, 10.314919 ], [ -5.273438, 10.314919 ], [ -5.273438, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.968851 ], [ -4.746094, 9.968851 ], [ -4.746094, 9.622414 ], [ -4.042969, 9.622414 ], [ -4.042969, 9.795678 ], [ -3.691406, 9.795678 ], [ -3.691406, 9.968851 ], [ -3.515625, 9.968851 ], [ -3.515625, 9.795678 ], [ -3.164062, 9.795678 ], [ -3.164062, 9.622414 ], [ -2.812500, 9.622414 ], [ -2.812500, 8.928487 ], [ -2.636719, 8.928487 ], [ -2.636719, 7.885147 ], [ -2.812500, 7.885147 ], [ -2.812500, 7.536764 ], [ -2.988281, 7.536764 ], [ -2.988281, 6.839170 ], [ -3.164062, 6.839170 ], [ -3.164062, 5.965754 ], [ -2.988281, 5.965754 ], [ -2.988281, 5.615986 ], [ -2.812500, 5.615986 ], [ -2.812500, 4.915833 ], [ -3.691406, 4.915833 ], [ -3.691406, 5.090944 ], [ -4.042969, 5.090944 ], [ -4.042969, 5.266008 ], [ -4.218750, 5.266008 ], [ -4.218750, 5.090944 ], [ -5.097656, 5.090944 ], [ -5.097656, 4.915833 ], [ -5.976562, 4.915833 ], [ -5.976562, 4.740675 ], [ -6.679688, 4.740675 ], [ -6.679688, 4.565474 ], [ -7.207031, 4.565474 ], [ -7.207031, 4.390229 ], [ -7.734375, 4.390229 ], [ -7.734375, 4.740675 ], [ -7.558594, 4.740675 ], [ -7.558594, 5.790897 ], [ -7.734375, 5.790897 ], [ -7.734375, 5.965754 ], [ -7.910156, 5.965754 ], [ -7.910156, 6.140555 ], [ -8.437500, 6.140555 ], [ -8.437500, 6.315299 ], [ -8.613281, 6.315299 ], [ -8.613281, 6.664608 ], [ -8.437500, 6.664608 ], [ -8.437500, 7.710992 ], [ -8.261719, 7.710992 ], [ -8.261719, 8.407168 ], [ -7.910156, 8.407168 ], [ -7.910156, 8.928487 ], [ -8.085938, 8.928487 ], [ -8.085938, 9.622414 ], [ -8.261719, 9.622414 ], [ -8.261719, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.855469, 10.314919 ], [ -6.679688, 10.314919 ], [ -6.679688, 10.487812 ], [ -6.152344, 10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.449219, 10.487812 ], [ -5.449219, 10.314919 ], [ -5.097656, 10.314919 ], [ -5.097656, 10.141932 ], [ -4.921875, 10.141932 ], [ -4.921875, 9.795678 ], [ -4.570312, 9.795678 ], [ -4.570312, 9.622414 ], [ -4.218750, 9.622414 ], [ -4.218750, 9.795678 ], [ -4.042969, 9.795678 ], [ -4.042969, 9.968851 ], [ -3.339844, 9.968851 ], [ -3.339844, 9.795678 ], [ -2.988281, 9.795678 ], [ -2.988281, 9.275622 ], [ -2.812500, 9.275622 ], [ -2.812500, 8.581021 ], [ -2.636719, 8.581021 ], [ -2.636719, 8.059230 ], [ -2.812500, 8.059230 ], [ -2.812500, 7.710992 ], [ -2.988281, 7.710992 ], [ -2.988281, 7.188101 ], [ -3.164062, 7.188101 ], [ -3.164062, 6.489983 ], [ -3.339844, 6.489983 ], [ -3.339844, 6.140555 ], [ -3.164062, 6.140555 ], [ -3.164062, 5.790897 ], [ -2.988281, 5.790897 ], [ -2.988281, 5.441022 ], [ -2.812500, 5.441022 ], [ -2.812500, 5.266008 ], [ -2.988281, 5.266008 ], [ -2.988281, 5.090944 ], [ -3.867188, 5.090944 ], [ -3.867188, 5.266008 ], [ -5.273438, 5.266008 ], [ -5.273438, 5.090944 ], [ -5.976562, 5.090944 ], [ -5.976562, 4.915833 ], [ -6.328125, 4.915833 ], [ -6.328125, 4.740675 ], [ -6.855469, 4.740675 ], [ -6.855469, 4.565474 ], [ -7.207031, 4.565474 ], [ -7.207031, 4.390229 ], [ -7.734375, 4.390229 ], [ -7.734375, 5.266008 ], [ -7.558594, 5.266008 ], [ -7.558594, 5.615986 ], [ -7.734375, 5.615986 ], [ -7.734375, 5.790897 ], [ -7.910156, 5.790897 ], [ -7.910156, 5.965754 ], [ -8.085938, 5.965754 ], [ -8.085938, 6.140555 ], [ -8.437500, 6.140555 ], [ -8.437500, 6.315299 ], [ -8.613281, 6.315299 ], [ -8.613281, 6.664608 ], [ -8.437500, 6.664608 ], [ -8.437500, 7.188101 ], [ -8.613281, 7.188101 ], [ -8.613281, 7.536764 ], [ -8.437500, 7.536764 ], [ -8.437500, 7.885147 ], [ -8.261719, 7.885147 ], [ -8.261719, 8.233237 ], [ -8.437500, 8.233237 ], [ -8.437500, 8.407168 ], [ -8.261719, 8.407168 ], [ -8.261719, 8.581021 ], [ -7.910156, 8.581021 ], [ -7.910156, 8.928487 ], [ -8.085938, 8.928487 ], [ -8.085938, 9.449062 ], [ -8.261719, 9.449062 ], [ -8.261719, 9.622414 ], [ -8.437500, 9.622414 ], [ -8.437500, 9.968851 ], [ -8.261719, 9.968851 ], [ -8.261719, 10.141932 ], [ -8.085938, 10.141932 ], [ -8.085938, 10.314919 ], [ -7.382812, 10.314919 ], [ -7.382812, 10.141932 ], [ -6.855469, 10.141932 ], [ -6.855469, 10.314919 ], [ -6.679688, 10.314919 ], [ -6.679688, 10.487812 ], [ -6.328125, 10.487812 ], [ -6.328125, 10.314919 ], [ -6.152344, 10.314919 ], [ -6.152344, 10.141932 ], [ -5.976562, 10.141932 ], [ -5.976562, 10.314919 ], [ -5.625000, 10.314919 ], [ -5.625000, 10.487812 ], [ -5.449219, 10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 5.790897 ], [ 0.703125, 5.790897 ], [ 0.703125, 5.615986 ], [ 0.351562, 5.615986 ], [ 0.351562, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 4.915833 ], [ -1.406250, 4.915833 ], [ -1.406250, 4.740675 ], [ -2.460938, 4.740675 ], [ -2.460938, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.615986 ], [ -2.988281, 5.615986 ], [ -2.988281, 5.965754 ], [ -3.164062, 5.965754 ], [ -3.164062, 6.839170 ], [ -2.988281, 6.839170 ], [ -2.988281, 7.536764 ], [ -2.812500, 7.536764 ], [ -2.812500, 7.885147 ], [ -2.636719, 7.885147 ], [ -2.636719, 8.928487 ], [ -2.812500, 8.928487 ], [ -2.812500, 9.968851 ], [ -2.988281, 9.968851 ], [ -2.988281, 11.005904 ], [ 0.000000, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 11.005904 ], [ -0.175781, 11.005904 ], [ -0.175781, 10.660608 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.314919 ], [ 0.351562, 10.314919 ], [ 0.351562, 8.581021 ], [ 0.527344, 8.581021 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 8.059230 ], [ 0.527344, 8.059230 ], [ 0.527344, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.188101 ], [ 0.527344, 7.188101 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 5.965754 ], [ 0.703125, 5.965754 ], [ 0.703125, 5.790897 ], [ 0.351562, 5.790897 ], [ 0.351562, 5.615986 ], [ -0.175781, 5.615986 ], [ -0.175781, 5.441022 ], [ -0.527344, 5.441022 ], [ -0.527344, 5.266008 ], [ -0.878906, 5.266008 ], [ -0.878906, 5.090944 ], [ -1.406250, 5.090944 ], [ -1.406250, 4.915833 ], [ -1.757812, 4.915833 ], [ -1.757812, 4.740675 ], [ -2.460938, 4.740675 ], [ -2.460938, 4.915833 ], [ -2.812500, 4.915833 ], [ -2.812500, 5.090944 ], [ -2.988281, 5.090944 ], [ -2.988281, 5.266008 ], [ -2.812500, 5.266008 ], [ -2.812500, 5.441022 ], [ -2.988281, 5.441022 ], [ -2.988281, 5.790897 ], [ -3.164062, 5.790897 ], [ -3.164062, 6.140555 ], [ -3.339844, 6.140555 ], [ -3.339844, 6.489983 ], [ -3.164062, 6.489983 ], [ -3.164062, 7.188101 ], [ -2.988281, 7.188101 ], [ -2.988281, 7.710992 ], [ -2.812500, 7.710992 ], [ -2.812500, 8.059230 ], [ -2.636719, 8.059230 ], [ -2.636719, 8.581021 ], [ -2.812500, 8.581021 ], [ -2.812500, 9.275622 ], [ -2.988281, 9.275622 ], [ -2.988281, 11.005904 ], [ -1.933594, 11.005904 ], [ -1.933594, 11.178402 ], [ -1.230469, 11.178402 ], [ -1.230469, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.315125 ], [ 0.878906, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.527344, 21.943046 ], [ -0.527344, 22.105999 ], [ -0.703125, 22.105999 ], [ -0.703125, 22.268764 ], [ -1.054688, 22.268764 ], [ -1.054688, 22.431340 ], [ -1.230469, 22.431340 ], [ -1.230469, 22.593726 ], [ -1.582031, 22.593726 ], [ -1.582031, 22.755921 ], [ -1.757812, 22.755921 ], [ -1.757812, 22.917923 ], [ -2.109375, 22.917923 ], [ -2.109375, 23.079732 ], [ -2.285156, 23.079732 ], [ -2.285156, 23.241346 ], [ -2.460938, 23.241346 ], [ -2.460938, 23.402765 ], [ -2.812500, 23.402765 ], [ -2.812500, 23.563987 ], [ -2.988281, 23.563987 ], [ -2.988281, 23.725012 ], [ -3.164062, 23.725012 ], [ -3.164062, 23.885838 ], [ -3.515625, 23.885838 ], [ -3.515625, 24.046464 ], [ -3.691406, 24.046464 ], [ -3.691406, 24.206890 ], [ -3.867188, 24.206890 ], [ -3.867188, 24.367114 ], [ -4.218750, 24.367114 ], [ -4.218750, 24.527135 ], [ -4.394531, 24.527135 ], [ -4.394531, 24.686952 ], [ -4.570312, 24.686952 ], [ -4.570312, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 25.005973 ], [ -5.097656, 25.005973 ], [ -5.097656, 25.165173 ], [ -5.449219, 25.165173 ], [ -5.449219, 25.324167 ], [ -5.625000, 25.324167 ], [ -5.625000, 25.482951 ], [ -5.800781, 25.482951 ], [ -5.800781, 25.641526 ], [ -6.152344, 25.641526 ], [ -6.152344, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.958045 ], [ -6.679688, 25.958045 ], [ -6.679688, 26.115986 ], [ -6.855469, 26.115986 ], [ -6.855469, 26.273714 ], [ -7.031250, 26.273714 ], [ -7.031250, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.588527 ], [ -7.558594, 26.588527 ], [ -7.558594, 26.745610 ], [ -7.910156, 26.745610 ], [ -7.910156, 26.902477 ], [ -8.085938, 26.902477 ], [ -8.085938, 27.059126 ], [ -8.261719, 27.059126 ], [ -8.261719, 27.215556 ], [ -8.613281, 27.215556 ], [ -8.613281, 28.767659 ], [ -8.437500, 28.767659 ], [ -8.437500, 28.921631 ], [ -8.085938, 28.921631 ], [ -8.085938, 29.075375 ], [ -7.734375, 29.075375 ], [ -7.734375, 29.228890 ], [ -7.382812, 29.228890 ], [ -7.382812, 29.382175 ], [ -7.031250, 29.382175 ], [ -7.031250, 29.535230 ], [ -6.328125, 29.535230 ], [ -6.328125, 29.688053 ], [ -5.625000, 29.688053 ], [ -5.625000, 29.840644 ], [ -5.273438, 29.840644 ], [ -5.273438, 29.993002 ], [ -5.097656, 29.993002 ], [ -5.097656, 30.297018 ], [ -4.921875, 30.297018 ], [ -4.921875, 30.448674 ], [ -4.570312, 30.448674 ], [ -4.570312, 30.600094 ], [ -4.218750, 30.600094 ], [ -4.218750, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.902225 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -2.812500, 31.653381 ], [ -2.812500, 31.952162 ], [ -2.636719, 31.952162 ], [ -2.636719, 32.101190 ], [ -1.757812, 32.101190 ], [ -1.757812, 32.249974 ], [ -1.230469, 32.249974 ], [ -1.230469, 32.398516 ], [ -1.054688, 32.398516 ], [ -1.054688, 32.694866 ], [ -1.406250, 32.694866 ], [ -1.406250, 32.990236 ], [ -1.582031, 32.990236 ], [ -1.582031, 33.578015 ], [ -1.757812, 33.578015 ], [ -1.757812, 34.741612 ], [ -1.933594, 34.741612 ], [ -1.933594, 35.029996 ], [ -2.109375, 35.029996 ], [ -2.109375, 35.173808 ], [ -1.933594, 35.173808 ], [ -1.933594, 35.317366 ], [ -1.757812, 35.317366 ], [ -1.757812, 35.460670 ], [ -1.406250, 35.460670 ], [ -1.406250, 35.603719 ], [ -1.230469, 35.603719 ], [ -1.230469, 35.746512 ], [ -0.527344, 35.746512 ], [ -0.527344, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.173357 ], [ 0.527344, 36.173357 ], [ 0.527344, 36.315125 ], [ 0.878906, 36.315125 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.456636 ], [ 0.878906, 21.289374 ], [ 0.703125, 21.289374 ], [ 0.703125, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ 0.000000, 21.779905 ], [ 0.000000, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 22.268764 ], [ -0.878906, 22.268764 ], [ -0.878906, 22.431340 ], [ -1.054688, 22.431340 ], [ -1.054688, 22.593726 ], [ -1.230469, 22.593726 ], [ -1.230469, 22.755921 ], [ -1.582031, 22.755921 ], [ -1.582031, 22.917923 ], [ -1.757812, 22.917923 ], [ -1.757812, 23.079732 ], [ -2.109375, 23.079732 ], [ -2.109375, 23.241346 ], [ -2.285156, 23.241346 ], [ -2.285156, 23.402765 ], [ -2.636719, 23.402765 ], [ -2.636719, 23.563987 ], [ -2.812500, 23.563987 ], [ -2.812500, 23.725012 ], [ -3.164062, 23.725012 ], [ -3.164062, 23.885838 ], [ -3.339844, 23.885838 ], [ -3.339844, 24.046464 ], [ -3.515625, 24.046464 ], [ -3.515625, 24.206890 ], [ -3.867188, 24.206890 ], [ -3.867188, 24.367114 ], [ -4.042969, 24.367114 ], [ -4.042969, 24.527135 ], [ -4.394531, 24.527135 ], [ -4.394531, 24.686952 ], [ -4.570312, 24.686952 ], [ -4.570312, 24.846565 ], [ -4.921875, 24.846565 ], [ -4.921875, 25.005973 ], [ -5.097656, 25.005973 ], [ -5.097656, 25.165173 ], [ -5.449219, 25.165173 ], [ -5.449219, 25.324167 ], [ -5.625000, 25.324167 ], [ -5.625000, 25.482951 ], [ -5.800781, 25.482951 ], [ -5.800781, 25.641526 ], [ -6.152344, 25.641526 ], [ -6.152344, 25.799891 ], [ -6.328125, 25.799891 ], [ -6.328125, 25.958045 ], [ -6.503906, 25.958045 ], [ -6.503906, 26.115986 ], [ -6.855469, 26.115986 ], [ -6.855469, 26.273714 ], [ -7.031250, 26.273714 ], [ -7.031250, 26.431228 ], [ -7.382812, 26.431228 ], [ -7.382812, 26.588527 ], [ -7.558594, 26.588527 ], [ -7.558594, 26.745610 ], [ -7.734375, 26.745610 ], [ -7.734375, 26.902477 ], [ -8.085938, 26.902477 ], [ -8.085938, 27.059126 ], [ -8.261719, 27.059126 ], [ -8.261719, 27.215556 ], [ -8.437500, 27.215556 ], [ -8.437500, 27.371767 ], [ -8.789062, 27.371767 ], [ -8.789062, 28.921631 ], [ -8.613281, 28.921631 ], [ -8.613281, 29.075375 ], [ -8.261719, 29.075375 ], [ -8.261719, 29.228890 ], [ -7.910156, 29.228890 ], [ -7.910156, 29.382175 ], [ -7.558594, 29.382175 ], [ -7.558594, 29.535230 ], [ -7.207031, 29.535230 ], [ -7.207031, 29.688053 ], [ -6.503906, 29.688053 ], [ -6.503906, 29.840644 ], [ -5.800781, 29.840644 ], [ -5.800781, 29.993002 ], [ -5.449219, 29.993002 ], [ -5.449219, 30.145127 ], [ -5.097656, 30.145127 ], [ -5.097656, 30.448674 ], [ -4.921875, 30.448674 ], [ -4.921875, 30.600094 ], [ -4.570312, 30.600094 ], [ -4.570312, 30.751278 ], [ -3.867188, 30.751278 ], [ -3.867188, 30.902225 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -3.339844, 31.653381 ], [ -3.339844, 31.802893 ], [ -2.988281, 31.802893 ], [ -2.988281, 31.952162 ], [ -2.636719, 31.952162 ], [ -2.636719, 32.101190 ], [ -2.285156, 32.101190 ], [ -2.285156, 32.249974 ], [ -1.582031, 32.249974 ], [ -1.582031, 32.398516 ], [ -1.406250, 32.398516 ], [ -1.406250, 32.546813 ], [ -1.230469, 32.546813 ], [ -1.230469, 32.842674 ], [ -1.406250, 32.842674 ], [ -1.406250, 33.137551 ], [ -1.582031, 33.137551 ], [ -1.582031, 33.724340 ], [ -1.757812, 33.724340 ], [ -1.757812, 34.307144 ], [ -1.933594, 34.307144 ], [ -1.933594, 34.741612 ], [ -2.109375, 34.741612 ], [ -2.109375, 35.029996 ], [ -2.285156, 35.029996 ], [ -2.285156, 35.173808 ], [ -2.109375, 35.173808 ], [ -2.109375, 35.317366 ], [ -1.757812, 35.317366 ], [ -1.757812, 35.460670 ], [ -1.582031, 35.460670 ], [ -1.582031, 35.603719 ], [ -1.230469, 35.603719 ], [ -1.230469, 35.746512 ], [ -0.527344, 35.746512 ], [ -0.527344, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.175781, 36.031332 ], [ 0.175781, 36.173357 ], [ 0.351562, 36.173357 ], [ 0.351562, 36.315125 ], [ 0.703125, 36.315125 ], [ 0.703125, 36.456636 ], [ 0.878906, 36.456636 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.944785 ], [ 0.878906, 13.410994 ], [ 0.703125, 13.410994 ], [ 0.703125, 13.581921 ], [ 0.527344, 13.581921 ], [ 0.527344, 13.752725 ], [ 0.351562, 13.752725 ], [ 0.351562, 14.944785 ], [ 0.878906, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 15.114553 ], [ 0.878906, 13.581921 ], [ 0.703125, 13.581921 ], [ 0.703125, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.923404 ], [ 0.351562, 13.923404 ], [ 0.351562, 14.264383 ], [ 0.175781, 14.264383 ], [ 0.175781, 14.774883 ], [ 0.351562, 14.774883 ], [ 0.351562, 14.944785 ], [ 0.703125, 14.944785 ], [ 0.703125, 15.114553 ], [ 0.878906, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 0.878906, 10.314919 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 9.102097 ], [ 0.351562, 9.102097 ], [ 0.351562, 10.141932 ], [ 0.175781, 10.141932 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 11.005904 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.487812 ], [ 0.878906, 10.487812 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.188101 ], [ 0.351562, 7.188101 ], [ 0.351562, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 8.059230 ], [ 0.703125, 8.059230 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 8.581021 ], [ 0.351562, 8.581021 ], [ 0.351562, 10.314919 ], [ 0.175781, 10.314919 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 10.660608 ], [ -0.175781, 10.660608 ], [ -0.175781, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.660608 ], [ 0.878906, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 10.660608 ], [ 0.878906, 10.487812 ], [ 0.703125, 10.487812 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.925781, 66.861082 ], [ -33.925781, 66.791909 ], [ -34.101562, 66.791909 ], [ -34.101562, 66.652977 ], [ -34.277344, 66.652977 ], [ -34.277344, 66.583217 ], [ -34.453125, 66.583217 ], [ -34.453125, 66.513260 ], [ -34.628906, 66.513260 ], [ -34.628906, 66.443107 ], [ -34.980469, 66.443107 ], [ -34.980469, 66.372755 ], [ -35.156250, 66.372755 ], [ -35.156250, 66.302205 ], [ -35.332031, 66.302205 ], [ -35.332031, 66.231457 ], [ -35.507812, 66.231457 ], [ -35.507812, 66.160511 ], [ -35.683594, 66.160511 ], [ -35.683594, 66.089364 ], [ -36.035156, 66.089364 ], [ -36.035156, 66.018018 ], [ -36.210938, 66.018018 ], [ -36.210938, 65.946472 ], [ -37.089844, 65.946472 ], [ -37.089844, 65.874725 ], [ -37.441406, 65.874725 ], [ -37.441406, 65.802776 ], [ -37.792969, 65.802776 ], [ -37.792969, 65.730626 ], [ -38.144531, 65.730626 ], [ -38.144531, 65.658275 ], [ -38.496094, 65.658275 ], [ -38.496094, 65.585720 ], [ -38.847656, 65.585720 ], [ -38.847656, 65.512963 ], [ -39.375000, 65.512963 ], [ -39.375000, 65.440002 ], [ -39.726562, 65.440002 ], [ -39.726562, 65.366837 ], [ -39.902344, 65.366837 ], [ -39.902344, 65.219894 ], [ -40.078125, 65.219894 ], [ -40.078125, 65.146115 ], [ -40.253906, 65.146115 ], [ -40.253906, 64.997939 ], [ -40.429688, 64.997939 ], [ -40.429688, 64.848937 ], [ -40.605469, 64.848937 ], [ -40.605469, 64.014496 ], [ -40.781250, 64.014496 ], [ -40.781250, 63.782486 ], [ -40.957031, 63.782486 ], [ -40.957031, 63.548552 ], [ -41.132812, 63.548552 ], [ -41.132812, 63.391522 ], [ -41.308594, 63.391522 ], [ -41.308594, 63.312683 ], [ -41.484375, 63.312683 ], [ -41.484375, 63.233627 ], [ -41.660156, 63.233627 ], [ -41.660156, 63.154355 ], [ -41.835938, 63.154355 ], [ -41.835938, 63.074866 ], [ -42.011719, 63.074866 ], [ -42.011719, 62.995158 ], [ -42.187500, 62.995158 ], [ -42.187500, 62.915233 ], [ -42.363281, 62.915233 ], [ -42.363281, 62.835089 ], [ -42.539062, 62.835089 ], [ -42.539062, 62.754726 ], [ -42.714844, 62.754726 ], [ -42.714844, 62.674143 ], [ -42.890625, 62.674143 ], [ -42.890625, 62.512318 ], [ -42.714844, 62.512318 ], [ -42.714844, 62.267923 ], [ -42.539062, 62.267923 ], [ -42.539062, 62.021528 ], [ -42.363281, 62.021528 ], [ -42.363281, 61.773123 ], [ -42.539062, 61.773123 ], [ -42.539062, 61.522695 ], [ -42.714844, 61.522695 ], [ -42.714844, 61.185625 ], [ -42.890625, 61.185625 ], [ -42.890625, 60.930432 ], [ -43.066406, 60.930432 ], [ -43.066406, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.239811 ], [ -43.417969, 60.239811 ], [ -43.417969, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.527344, 60.413852 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 66.861082 ], [ -33.925781, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.101562, 66.861082 ], [ -34.101562, 66.791909 ], [ -34.277344, 66.791909 ], [ -34.277344, 66.652977 ], [ -34.453125, 66.652977 ], [ -34.453125, 66.583217 ], [ -34.628906, 66.583217 ], [ -34.628906, 66.513260 ], [ -34.980469, 66.513260 ], [ -34.980469, 66.443107 ], [ -35.156250, 66.443107 ], [ -35.156250, 66.372755 ], [ -35.332031, 66.372755 ], [ -35.332031, 66.302205 ], [ -35.507812, 66.302205 ], [ -35.507812, 66.231457 ], [ -35.683594, 66.231457 ], [ -35.683594, 66.160511 ], [ -36.035156, 66.160511 ], [ -36.035156, 66.089364 ], [ -36.210938, 66.089364 ], [ -36.210938, 66.018018 ], [ -36.562500, 66.018018 ], [ -36.562500, 65.946472 ], [ -37.265625, 65.946472 ], [ -37.265625, 65.874725 ], [ -37.617188, 65.874725 ], [ -37.617188, 65.802776 ], [ -38.144531, 65.802776 ], [ -38.144531, 65.730626 ], [ -38.671875, 65.730626 ], [ -38.671875, 65.658275 ], [ -39.023438, 65.658275 ], [ -39.023438, 65.585720 ], [ -39.550781, 65.585720 ], [ -39.550781, 65.512963 ], [ -39.902344, 65.512963 ], [ -39.902344, 65.440002 ], [ -40.078125, 65.440002 ], [ -40.078125, 65.293468 ], [ -40.253906, 65.293468 ], [ -40.253906, 65.146115 ], [ -40.429688, 65.146115 ], [ -40.429688, 64.997939 ], [ -40.605469, 64.997939 ], [ -40.605469, 64.848937 ], [ -40.781250, 64.848937 ], [ -40.781250, 64.014496 ], [ -40.957031, 64.014496 ], [ -40.957031, 63.860036 ], [ -41.132812, 63.860036 ], [ -41.132812, 63.626745 ], [ -41.308594, 63.626745 ], [ -41.308594, 63.470145 ], [ -41.484375, 63.470145 ], [ -41.484375, 63.391522 ], [ -41.660156, 63.391522 ], [ -41.660156, 63.312683 ], [ -41.835938, 63.312683 ], [ -41.835938, 63.233627 ], [ -42.011719, 63.233627 ], [ -42.011719, 63.154355 ], [ -42.187500, 63.154355 ], [ -42.187500, 62.995158 ], [ -42.363281, 62.995158 ], [ -42.363281, 62.915233 ], [ -42.539062, 62.915233 ], [ -42.539062, 62.835089 ], [ -42.714844, 62.835089 ], [ -42.714844, 62.754726 ], [ -42.890625, 62.754726 ], [ -42.890625, 62.512318 ], [ -42.714844, 62.512318 ], [ -42.714844, 62.103883 ], [ -42.539062, 62.103883 ], [ -42.539062, 61.689872 ], [ -42.714844, 61.689872 ], [ -42.714844, 61.270233 ], [ -42.890625, 61.270233 ], [ -42.890625, 60.930432 ], [ -43.066406, 60.930432 ], [ -43.066406, 60.586967 ], [ -43.242188, 60.586967 ], [ -43.242188, 60.239811 ], [ -43.417969, 60.239811 ], [ -43.417969, 60.152442 ], [ -43.945312, 60.152442 ], [ -43.945312, 60.064840 ], [ -45.000000, 60.064840 ], [ -45.000000, 60.152442 ], [ -45.175781, 60.152442 ], [ -45.175781, 60.239811 ], [ -45.351562, 60.239811 ], [ -45.351562, 60.413852 ], [ -45.527344, 60.413852 ], [ -45.527344, 60.500525 ], [ -45.703125, 60.500525 ], [ -45.703125, 60.586967 ], [ -45.878906, 60.586967 ], [ -45.878906, 66.861082 ], [ -34.101562, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 66.513260 ], [ -15.468750, 66.443107 ], [ -14.589844, 66.443107 ], [ -14.589844, 66.089364 ], [ -14.765625, 66.089364 ], [ -14.765625, 65.730626 ], [ -14.589844, 65.730626 ], [ -14.589844, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.512963 ], [ -14.238281, 65.512963 ], [ -14.238281, 65.440002 ], [ -14.062500, 65.440002 ], [ -14.062500, 65.366837 ], [ -13.886719, 65.366837 ], [ -13.886719, 65.219894 ], [ -13.710938, 65.219894 ], [ -13.710938, 65.146115 ], [ -13.535156, 65.146115 ], [ -13.535156, 65.072130 ], [ -13.710938, 65.072130 ], [ -13.710938, 64.997939 ], [ -13.886719, 64.997939 ], [ -13.886719, 64.848937 ], [ -14.062500, 64.848937 ], [ -14.062500, 64.774125 ], [ -14.238281, 64.774125 ], [ -14.238281, 64.699105 ], [ -14.414062, 64.699105 ], [ -14.414062, 64.623877 ], [ -14.589844, 64.623877 ], [ -14.589844, 64.472794 ], [ -14.765625, 64.472794 ], [ -14.765625, 64.396938 ], [ -14.941406, 64.396938 ], [ -14.941406, 64.320872 ], [ -15.292969, 64.320872 ], [ -15.292969, 64.244595 ], [ -15.644531, 64.244595 ], [ -15.644531, 64.168107 ], [ -15.996094, 64.168107 ], [ -15.996094, 64.091408 ], [ -16.171875, 64.091408 ], [ -16.171875, 64.014496 ], [ -16.523438, 64.014496 ], [ -16.523438, 63.937372 ], [ -16.875000, 63.937372 ], [ -16.875000, 63.860036 ], [ -17.226562, 63.860036 ], [ -17.226562, 63.782486 ], [ -17.578125, 63.782486 ], [ -17.578125, 63.704722 ], [ -17.753906, 63.704722 ], [ -17.753906, 63.626745 ], [ -18.105469, 63.626745 ], [ -18.105469, 63.548552 ], [ -18.457031, 63.548552 ], [ -18.457031, 63.470145 ], [ -19.160156, 63.470145 ], [ -19.160156, 63.548552 ], [ -19.863281, 63.548552 ], [ -19.863281, 63.626745 ], [ -20.390625, 63.626745 ], [ -20.390625, 63.704722 ], [ -21.093750, 63.704722 ], [ -21.093750, 63.782486 ], [ -21.796875, 63.782486 ], [ -21.796875, 63.860036 ], [ -22.500000, 63.860036 ], [ -22.500000, 64.014496 ], [ -22.324219, 64.014496 ], [ -22.324219, 64.168107 ], [ -22.148438, 64.168107 ], [ -22.148438, 64.244595 ], [ -21.972656, 64.244595 ], [ -21.972656, 64.320872 ], [ -21.796875, 64.320872 ], [ -21.796875, 64.396938 ], [ -21.972656, 64.396938 ], [ -21.972656, 64.472794 ], [ -22.324219, 64.472794 ], [ -22.324219, 64.548440 ], [ -22.675781, 64.548440 ], [ -22.675781, 64.623877 ], [ -23.027344, 64.623877 ], [ -23.027344, 64.699105 ], [ -23.203125, 64.699105 ], [ -23.203125, 64.774125 ], [ -23.554688, 64.774125 ], [ -23.554688, 64.848937 ], [ -23.906250, 64.848937 ], [ -23.906250, 64.923542 ], [ -23.378906, 64.923542 ], [ -23.378906, 64.997939 ], [ -22.500000, 64.997939 ], [ -22.500000, 65.072130 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -22.675781, 65.366837 ], [ -22.675781, 65.440002 ], [ -23.378906, 65.440002 ], [ -23.378906, 65.512963 ], [ -24.082031, 65.512963 ], [ -24.082031, 65.585720 ], [ -24.257812, 65.585720 ], [ -24.257812, 65.658275 ], [ -24.082031, 65.658275 ], [ -24.082031, 65.874725 ], [ -23.906250, 65.874725 ], [ -23.906250, 66.089364 ], [ -23.730469, 66.089364 ], [ -23.730469, 66.231457 ], [ -23.378906, 66.231457 ], [ -23.378906, 66.302205 ], [ -22.851562, 66.302205 ], [ -22.851562, 66.372755 ], [ -22.324219, 66.372755 ], [ -22.324219, 66.443107 ], [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.231457 ], [ -21.621094, 66.231457 ], [ -21.621094, 66.160511 ], [ -21.445312, 66.160511 ], [ -21.445312, 66.089364 ], [ -21.269531, 66.089364 ], [ -21.269531, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.874725 ], [ -20.917969, 65.874725 ], [ -20.917969, 65.802776 ], [ -20.742188, 65.802776 ], [ -20.742188, 65.730626 ], [ -20.390625, 65.730626 ], [ -20.390625, 65.802776 ], [ -20.214844, 65.802776 ], [ -20.214844, 65.874725 ], [ -20.039062, 65.874725 ], [ -20.039062, 65.946472 ], [ -19.863281, 65.946472 ], [ -19.863281, 66.018018 ], [ -19.511719, 66.018018 ], [ -19.511719, 66.089364 ], [ -19.335938, 66.089364 ], [ -19.335938, 66.160511 ], [ -19.160156, 66.160511 ], [ -19.160156, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.160511 ], [ -18.281250, 66.160511 ], [ -18.281250, 66.089364 ], [ -17.929688, 66.089364 ], [ -17.929688, 66.018018 ], [ -17.578125, 66.018018 ], [ -17.578125, 66.089364 ], [ -17.402344, 66.089364 ], [ -17.402344, 66.160511 ], [ -17.050781, 66.160511 ], [ -17.050781, 66.231457 ], [ -16.875000, 66.231457 ], [ -16.875000, 66.302205 ], [ -16.699219, 66.302205 ], [ -16.699219, 66.372755 ], [ -16.347656, 66.372755 ], [ -16.347656, 66.443107 ], [ -16.171875, 66.443107 ], [ -16.171875, 66.513260 ], [ -15.468750, 66.513260 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 66.583217 ], [ -15.468750, 66.513260 ], [ -14.589844, 66.513260 ], [ -14.589844, 66.160511 ], [ -14.765625, 66.160511 ], [ -14.765625, 65.802776 ], [ -14.589844, 65.802776 ], [ -14.589844, 65.658275 ], [ -14.414062, 65.658275 ], [ -14.414062, 65.512963 ], [ -14.238281, 65.512963 ], [ -14.238281, 65.440002 ], [ -14.062500, 65.440002 ], [ -14.062500, 65.293468 ], [ -13.886719, 65.293468 ], [ -13.886719, 65.146115 ], [ -13.710938, 65.146115 ], [ -13.710938, 65.072130 ], [ -13.886719, 65.072130 ], [ -13.886719, 64.923542 ], [ -14.062500, 64.923542 ], [ -14.062500, 64.848937 ], [ -14.238281, 64.848937 ], [ -14.238281, 64.774125 ], [ -14.414062, 64.774125 ], [ -14.414062, 64.623877 ], [ -14.589844, 64.623877 ], [ -14.589844, 64.548440 ], [ -14.765625, 64.548440 ], [ -14.765625, 64.396938 ], [ -14.941406, 64.396938 ], [ -14.941406, 64.320872 ], [ -15.292969, 64.320872 ], [ -15.292969, 64.244595 ], [ -15.644531, 64.244595 ], [ -15.644531, 64.168107 ], [ -15.996094, 64.168107 ], [ -15.996094, 64.091408 ], [ -16.347656, 64.091408 ], [ -16.347656, 64.014496 ], [ -16.699219, 64.014496 ], [ -16.699219, 63.937372 ], [ -17.050781, 63.937372 ], [ -17.050781, 63.860036 ], [ -17.402344, 63.860036 ], [ -17.402344, 63.782486 ], [ -17.753906, 63.782486 ], [ -17.753906, 63.704722 ], [ -18.105469, 63.704722 ], [ -18.105469, 63.626745 ], [ -18.457031, 63.626745 ], [ -18.457031, 63.548552 ], [ -19.160156, 63.548552 ], [ -19.160156, 63.626745 ], [ -19.863281, 63.626745 ], [ -19.863281, 63.704722 ], [ -20.566406, 63.704722 ], [ -20.566406, 63.782486 ], [ -21.269531, 63.782486 ], [ -21.269531, 63.860036 ], [ -21.972656, 63.860036 ], [ -21.972656, 63.937372 ], [ -22.675781, 63.937372 ], [ -22.675781, 64.091408 ], [ -22.500000, 64.091408 ], [ -22.500000, 64.168107 ], [ -22.324219, 64.168107 ], [ -22.324219, 64.244595 ], [ -22.148438, 64.244595 ], [ -22.148438, 64.320872 ], [ -21.972656, 64.320872 ], [ -21.972656, 64.396938 ], [ -21.796875, 64.396938 ], [ -21.796875, 64.472794 ], [ -22.148438, 64.472794 ], [ -22.148438, 64.548440 ], [ -22.500000, 64.548440 ], [ -22.500000, 64.623877 ], [ -22.851562, 64.623877 ], [ -22.851562, 64.699105 ], [ -23.203125, 64.699105 ], [ -23.203125, 64.774125 ], [ -23.554688, 64.774125 ], [ -23.554688, 64.848937 ], [ -23.906250, 64.848937 ], [ -23.906250, 64.923542 ], [ -23.730469, 64.923542 ], [ -23.730469, 64.997939 ], [ -23.027344, 64.997939 ], [ -23.027344, 65.072130 ], [ -22.500000, 65.072130 ], [ -22.500000, 65.146115 ], [ -22.324219, 65.146115 ], [ -22.324219, 65.440002 ], [ -22.851562, 65.440002 ], [ -22.851562, 65.512963 ], [ -23.554688, 65.512963 ], [ -23.554688, 65.585720 ], [ -24.257812, 65.585720 ], [ -24.257812, 65.658275 ], [ -24.433594, 65.658275 ], [ -24.433594, 65.730626 ], [ -24.257812, 65.730626 ], [ -24.257812, 65.874725 ], [ -24.082031, 65.874725 ], [ -24.082031, 66.018018 ], [ -23.906250, 66.018018 ], [ -23.906250, 66.160511 ], [ -23.730469, 66.160511 ], [ -23.730469, 66.302205 ], [ -23.203125, 66.302205 ], [ -23.203125, 66.372755 ], [ -22.500000, 66.372755 ], [ -22.500000, 66.443107 ], [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.231457 ], [ -21.621094, 66.231457 ], [ -21.621094, 66.160511 ], [ -21.445312, 66.160511 ], [ -21.445312, 66.018018 ], [ -21.269531, 66.018018 ], [ -21.269531, 65.946472 ], [ -21.093750, 65.946472 ], [ -21.093750, 65.874725 ], [ -20.917969, 65.874725 ], [ -20.917969, 65.802776 ], [ -20.566406, 65.802776 ], [ -20.566406, 65.874725 ], [ -20.390625, 65.874725 ], [ -20.390625, 65.946472 ], [ -20.039062, 65.946472 ], [ -20.039062, 66.018018 ], [ -19.863281, 66.018018 ], [ -19.863281, 66.089364 ], [ -19.687500, 66.089364 ], [ -19.687500, 66.160511 ], [ -19.335938, 66.160511 ], [ -19.335938, 66.231457 ], [ -18.808594, 66.231457 ], [ -18.808594, 66.160511 ], [ -18.457031, 66.160511 ], [ -18.457031, 66.089364 ], [ -18.105469, 66.089364 ], [ -18.105469, 66.018018 ], [ -17.753906, 66.018018 ], [ -17.753906, 66.089364 ], [ -17.578125, 66.089364 ], [ -17.578125, 66.160511 ], [ -17.226562, 66.160511 ], [ -17.226562, 66.231457 ], [ -17.050781, 66.231457 ], [ -17.050781, 66.302205 ], [ -16.875000, 66.302205 ], [ -16.875000, 66.372755 ], [ -16.699219, 66.372755 ], [ -16.699219, 66.443107 ], [ -16.347656, 66.443107 ], [ -16.347656, 66.513260 ], [ -16.171875, 66.513260 ], [ -16.171875, 66.583217 ], [ -15.468750, 66.583217 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.558594, 55.078367 ], [ -7.558594, 54.876607 ], [ -7.382812, 54.876607 ], [ -7.382812, 54.265224 ], [ -7.558594, 54.265224 ], [ -7.558594, 54.059388 ], [ -6.855469, 54.059388 ], [ -6.855469, 53.956086 ], [ -6.503906, 53.956086 ], [ -6.503906, 53.852527 ], [ -6.152344, 53.852527 ], [ -6.152344, 53.435719 ], [ -5.976562, 53.435719 ], [ -5.976562, 53.014783 ], [ -6.152344, 53.014783 ], [ -6.152344, 52.802761 ], [ -6.328125, 52.802761 ], [ -6.328125, 52.696361 ], [ -6.503906, 52.696361 ], [ -6.503906, 52.482780 ], [ -6.679688, 52.482780 ], [ -6.679688, 52.268157 ], [ -6.855469, 52.268157 ], [ -6.855469, 52.160455 ], [ -7.207031, 52.160455 ], [ -7.207031, 52.052490 ], [ -7.558594, 52.052490 ], [ -7.558594, 51.944265 ], [ -7.734375, 51.944265 ], [ -7.734375, 51.835778 ], [ -8.085938, 51.835778 ], [ -8.085938, 51.727028 ], [ -8.437500, 51.727028 ], [ -8.437500, 51.618017 ], [ -9.140625, 51.618017 ], [ -9.140625, 51.727028 ], [ -9.843750, 51.727028 ], [ -9.843750, 51.835778 ], [ -10.019531, 51.835778 ], [ -10.019531, 51.944265 ], [ -9.843750, 51.944265 ], [ -9.843750, 52.160455 ], [ -9.667969, 52.160455 ], [ -9.667969, 52.375599 ], [ -9.492188, 52.375599 ], [ -9.492188, 52.589701 ], [ -9.316406, 52.589701 ], [ -9.316406, 52.802761 ], [ -9.140625, 52.802761 ], [ -9.140625, 53.014783 ], [ -9.316406, 53.014783 ], [ -9.316406, 53.330873 ], [ -9.492188, 53.330873 ], [ -9.492188, 53.644638 ], [ -9.667969, 53.644638 ], [ -9.667969, 53.852527 ], [ -9.492188, 53.852527 ], [ -9.492188, 53.956086 ], [ -9.316406, 53.956086 ], [ -9.316406, 54.059388 ], [ -9.140625, 54.059388 ], [ -9.140625, 54.162434 ], [ -8.964844, 54.162434 ], [ -8.964844, 54.265224 ], [ -8.789062, 54.265224 ], [ -8.789062, 54.367759 ], [ -8.613281, 54.367759 ], [ -8.613281, 54.470038 ], [ -8.437500, 54.470038 ], [ -8.437500, 54.572062 ], [ -8.261719, 54.572062 ], [ -8.261719, 54.673831 ], [ -8.085938, 54.673831 ], [ -8.085938, 54.775346 ], [ -7.910156, 54.775346 ], [ -7.910156, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 55.078367 ], [ -7.558594, 55.078367 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.734375, 55.078367 ], [ -7.734375, 54.977614 ], [ -7.558594, 54.977614 ], [ -7.558594, 54.775346 ], [ -7.382812, 54.775346 ], [ -7.382812, 54.470038 ], [ -7.558594, 54.470038 ], [ -7.558594, 54.162434 ], [ -7.734375, 54.162434 ], [ -7.734375, 54.059388 ], [ -7.207031, 54.059388 ], [ -7.207031, 54.162434 ], [ -7.031250, 54.162434 ], [ -7.031250, 54.059388 ], [ -6.679688, 54.059388 ], [ -6.679688, 53.956086 ], [ -6.328125, 53.956086 ], [ -6.328125, 53.540307 ], [ -6.152344, 53.540307 ], [ -6.152344, 53.014783 ], [ -6.328125, 53.014783 ], [ -6.328125, 52.802761 ], [ -6.503906, 52.802761 ], [ -6.503906, 52.589701 ], [ -6.679688, 52.589701 ], [ -6.679688, 52.375599 ], [ -6.855469, 52.375599 ], [ -6.855469, 52.160455 ], [ -7.207031, 52.160455 ], [ -7.207031, 52.052490 ], [ -7.558594, 52.052490 ], [ -7.558594, 51.944265 ], [ -7.910156, 51.944265 ], [ -7.910156, 51.835778 ], [ -8.261719, 51.835778 ], [ -8.261719, 51.727028 ], [ -9.492188, 51.727028 ], [ -9.492188, 51.835778 ], [ -10.019531, 51.835778 ], [ -10.019531, 51.944265 ], [ -9.843750, 51.944265 ], [ -9.843750, 52.160455 ], [ -9.667969, 52.160455 ], [ -9.667969, 52.482780 ], [ -9.492188, 52.482780 ], [ -9.492188, 52.696361 ], [ -9.316406, 52.696361 ], [ -9.316406, 53.014783 ], [ -9.492188, 53.014783 ], [ -9.492188, 53.435719 ], [ -9.667969, 53.435719 ], [ -9.667969, 53.748711 ], [ -9.843750, 53.748711 ], [ -9.843750, 53.956086 ], [ -9.667969, 53.956086 ], [ -9.667969, 54.059388 ], [ -9.492188, 54.059388 ], [ -9.492188, 54.162434 ], [ -9.316406, 54.162434 ], [ -9.316406, 54.265224 ], [ -8.964844, 54.265224 ], [ -8.964844, 54.367759 ], [ -8.789062, 54.367759 ], [ -8.789062, 54.470038 ], [ -8.613281, 54.470038 ], [ -8.613281, 54.572062 ], [ -8.437500, 54.572062 ], [ -8.437500, 54.673831 ], [ -8.261719, 54.673831 ], [ -8.261719, 54.775346 ], [ -8.085938, 54.775346 ], [ -8.085938, 54.977614 ], [ -7.910156, 54.977614 ], [ -7.910156, 55.078367 ], [ -7.734375, 55.078367 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.988281, 58.631217 ], [ -2.988281, 58.539595 ], [ -3.164062, 58.539595 ], [ -3.164062, 58.355630 ], [ -3.339844, 58.355630 ], [ -3.339844, 58.170702 ], [ -3.515625, 58.170702 ], [ -3.515625, 57.984808 ], [ -3.691406, 57.984808 ], [ -3.691406, 57.797944 ], [ -3.867188, 57.797944 ], [ -3.867188, 57.610107 ], [ -4.042969, 57.610107 ], [ -4.042969, 57.515823 ], [ -3.691406, 57.515823 ], [ -3.691406, 57.610107 ], [ -3.164062, 57.610107 ], [ -3.164062, 57.704147 ], [ -1.933594, 57.704147 ], [ -1.933594, 57.421294 ], [ -2.109375, 57.421294 ], [ -2.109375, 57.040730 ], [ -2.285156, 57.040730 ], [ -2.285156, 56.752723 ], [ -2.460938, 56.752723 ], [ -2.460938, 56.559482 ], [ -2.636719, 56.559482 ], [ -2.636719, 56.365250 ], [ -2.812500, 56.365250 ], [ -2.812500, 56.170023 ], [ -2.988281, 56.170023 ], [ -2.988281, 55.973798 ], [ -2.812500, 55.973798 ], [ -2.812500, 55.875311 ], [ -2.109375, 55.875311 ], [ -2.109375, 55.776573 ], [ -1.933594, 55.776573 ], [ -1.933594, 55.578345 ], [ -1.757812, 55.578345 ], [ -1.757812, 55.379110 ], [ -1.582031, 55.379110 ], [ -1.582031, 55.178868 ], [ -1.406250, 55.178868 ], [ -1.406250, 54.977614 ], [ -1.230469, 54.977614 ], [ -1.230469, 54.775346 ], [ -1.054688, 54.775346 ], [ -1.054688, 54.572062 ], [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.878906, 52.908902 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -1.054688, 50.736455 ], [ -1.054688, 50.625073 ], [ -1.933594, 50.625073 ], [ -1.933594, 50.513427 ], [ -2.636719, 50.513427 ], [ -2.636719, 50.625073 ], [ -3.164062, 50.625073 ], [ -3.164062, 50.513427 ], [ -3.339844, 50.513427 ], [ -3.339844, 50.289339 ], [ -3.515625, 50.289339 ], [ -3.515625, 50.176898 ], [ -4.218750, 50.176898 ], [ -4.218750, 50.289339 ], [ -4.570312, 50.289339 ], [ -4.570312, 50.176898 ], [ -4.746094, 50.176898 ], [ -4.746094, 50.064192 ], [ -5.097656, 50.064192 ], [ -5.097656, 49.951220 ], [ -5.449219, 49.951220 ], [ -5.449219, 50.064192 ], [ -5.800781, 50.064192 ], [ -5.800781, 50.176898 ], [ -5.625000, 50.176898 ], [ -5.625000, 50.289339 ], [ -5.449219, 50.289339 ], [ -5.449219, 50.401515 ], [ -5.273438, 50.401515 ], [ -5.273438, 50.513427 ], [ -5.097656, 50.513427 ], [ -5.097656, 50.736455 ], [ -4.921875, 50.736455 ], [ -4.921875, 50.847573 ], [ -4.746094, 50.847573 ], [ -4.746094, 50.958427 ], [ -4.570312, 50.958427 ], [ -4.570312, 51.069017 ], [ -4.394531, 51.069017 ], [ -4.394531, 51.179343 ], [ -4.042969, 51.179343 ], [ -4.042969, 51.289406 ], [ -3.515625, 51.289406 ], [ -3.515625, 51.399206 ], [ -3.867188, 51.399206 ], [ -3.867188, 51.508742 ], [ -4.570312, 51.508742 ], [ -4.570312, 51.618017 ], [ -5.097656, 51.618017 ], [ -5.097656, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 51.944265 ], [ -4.921875, 51.944265 ], [ -4.921875, 52.052490 ], [ -4.570312, 52.052490 ], [ -4.570312, 52.160455 ], [ -4.218750, 52.160455 ], [ -4.218750, 52.268157 ], [ -4.394531, 52.268157 ], [ -4.394531, 52.482780 ], [ -4.570312, 52.482780 ], [ -4.570312, 52.696361 ], [ -4.746094, 52.696361 ], [ -4.746094, 53.120405 ], [ -4.570312, 53.120405 ], [ -4.570312, 53.540307 ], [ -4.042969, 53.540307 ], [ -4.042969, 53.435719 ], [ -3.164062, 53.435719 ], [ -3.164062, 53.644638 ], [ -2.988281, 53.644638 ], [ -2.988281, 53.956086 ], [ -3.164062, 53.956086 ], [ -3.164062, 54.162434 ], [ -3.339844, 54.162434 ], [ -3.339844, 54.265224 ], [ -3.515625, 54.265224 ], [ -3.515625, 54.470038 ], [ -3.691406, 54.470038 ], [ -3.691406, 54.572062 ], [ -4.042969, 54.572062 ], [ -4.042969, 54.673831 ], [ -4.746094, 54.673831 ], [ -4.746094, 54.775346 ], [ -4.921875, 54.775346 ], [ -4.921875, 54.876607 ], [ -5.097656, 54.876607 ], [ -5.097656, 55.178868 ], [ -4.921875, 55.178868 ], [ -4.921875, 55.379110 ], [ -4.746094, 55.379110 ], [ -4.746094, 55.478853 ], [ -4.921875, 55.478853 ], [ -4.921875, 55.677584 ], [ -5.273438, 55.677584 ], [ -5.273438, 55.478853 ], [ -5.449219, 55.478853 ], [ -5.449219, 55.279115 ], [ -5.625000, 55.279115 ], [ -5.625000, 56.267761 ], [ -5.800781, 56.267761 ], [ -5.800781, 56.462490 ], [ -5.976562, 56.462490 ], [ -5.976562, 56.656226 ], [ -6.152344, 56.656226 ], [ -6.152344, 56.944974 ], [ -5.976562, 56.944974 ], [ -5.976562, 57.515823 ], [ -5.800781, 57.515823 ], [ -5.800781, 57.891497 ], [ -5.625000, 57.891497 ], [ -5.625000, 58.077876 ], [ -5.449219, 58.077876 ], [ -5.449219, 58.263287 ], [ -5.273438, 58.263287 ], [ -5.273438, 58.447733 ], [ -5.097656, 58.447733 ], [ -5.097656, 58.631217 ], [ -4.746094, 58.631217 ], [ -4.746094, 58.539595 ], [ -3.515625, 58.539595 ], [ -3.515625, 58.631217 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -6.679688, 55.078367 ], [ -6.503906, 55.078367 ], [ -6.503906, 54.977614 ], [ -6.328125, 54.977614 ], [ -6.328125, 54.876607 ], [ -6.152344, 54.876607 ], [ -6.152344, 54.775346 ], [ -5.976562, 54.775346 ], [ -5.976562, 54.673831 ], [ -5.800781, 54.673831 ], [ -5.800781, 54.572062 ], [ -5.625000, 54.572062 ], [ -5.625000, 54.367759 ], [ -5.800781, 54.367759 ], [ -5.800781, 54.162434 ], [ -5.976562, 54.162434 ], [ -5.976562, 53.956086 ], [ -6.152344, 53.956086 ], [ -6.152344, 53.852527 ], [ -6.503906, 53.852527 ], [ -6.503906, 53.956086 ], [ -6.855469, 53.956086 ], [ -6.855469, 54.059388 ], [ -7.558594, 54.059388 ], [ -7.558594, 54.265224 ], [ -7.382812, 54.265224 ], [ -7.382812, 54.876607 ], [ -7.558594, 54.876607 ], [ -7.558594, 55.178868 ], [ -6.679688, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.164062, 58.722599 ], [ -3.164062, 58.631217 ], [ -3.339844, 58.631217 ], [ -3.339844, 58.447733 ], [ -3.515625, 58.447733 ], [ -3.515625, 58.263287 ], [ -3.691406, 58.263287 ], [ -3.691406, 58.077876 ], [ -3.867188, 58.077876 ], [ -3.867188, 57.891497 ], [ -4.042969, 57.891497 ], [ -4.042969, 57.704147 ], [ -4.218750, 57.704147 ], [ -4.218750, 57.610107 ], [ -3.515625, 57.610107 ], [ -3.515625, 57.704147 ], [ -2.109375, 57.704147 ], [ -2.109375, 57.326521 ], [ -2.285156, 57.326521 ], [ -2.285156, 56.848972 ], [ -2.460938, 56.848972 ], [ -2.460938, 56.656226 ], [ -2.636719, 56.656226 ], [ -2.636719, 56.462490 ], [ -2.812500, 56.462490 ], [ -2.812500, 56.267761 ], [ -2.988281, 56.267761 ], [ -2.988281, 56.072035 ], [ -3.164062, 56.072035 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.973798 ], [ -2.109375, 55.677584 ], [ -1.933594, 55.677584 ], [ -1.933594, 55.478853 ], [ -1.757812, 55.478853 ], [ -1.757812, 55.279115 ], [ -1.582031, 55.279115 ], [ -1.582031, 54.977614 ], [ -1.406250, 54.977614 ], [ -1.406250, 54.775346 ], [ -1.230469, 54.775346 ], [ -1.230469, 54.572062 ], [ -0.878906, 54.572062 ], [ -0.878906, 54.470038 ], [ -0.527344, 54.470038 ], [ -0.527344, 54.265224 ], [ -0.351562, 54.265224 ], [ -0.351562, 53.956086 ], [ -0.175781, 53.956086 ], [ -0.175781, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.120405 ], [ 0.351562, 53.120405 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.878906, 52.908902 ], [ 0.878906, 50.847573 ], [ -1.054688, 50.847573 ], [ -1.054688, 50.736455 ], [ -1.582031, 50.736455 ], [ -1.582031, 50.625073 ], [ -2.285156, 50.625073 ], [ -2.285156, 50.513427 ], [ -2.812500, 50.513427 ], [ -2.812500, 50.625073 ], [ -3.164062, 50.625073 ], [ -3.164062, 50.513427 ], [ -3.339844, 50.513427 ], [ -3.339844, 50.401515 ], [ -3.515625, 50.401515 ], [ -3.515625, 50.289339 ], [ -4.218750, 50.289339 ], [ -4.218750, 50.401515 ], [ -4.570312, 50.401515 ], [ -4.570312, 50.289339 ], [ -4.746094, 50.289339 ], [ -4.746094, 50.176898 ], [ -5.097656, 50.176898 ], [ -5.097656, 50.064192 ], [ -5.625000, 50.064192 ], [ -5.625000, 50.289339 ], [ -5.449219, 50.289339 ], [ -5.449219, 50.513427 ], [ -5.273438, 50.513427 ], [ -5.273438, 50.625073 ], [ -5.097656, 50.625073 ], [ -5.097656, 50.736455 ], [ -4.921875, 50.736455 ], [ -4.921875, 50.847573 ], [ -4.746094, 50.847573 ], [ -4.746094, 51.069017 ], [ -4.570312, 51.069017 ], [ -4.570312, 51.179343 ], [ -4.394531, 51.179343 ], [ -4.394531, 51.289406 ], [ -4.042969, 51.289406 ], [ -4.042969, 51.399206 ], [ -3.691406, 51.399206 ], [ -3.691406, 51.508742 ], [ -4.394531, 51.508742 ], [ -4.394531, 51.618017 ], [ -5.097656, 51.618017 ], [ -5.097656, 51.835778 ], [ -5.273438, 51.835778 ], [ -5.273438, 52.052490 ], [ -5.097656, 52.052490 ], [ -5.097656, 52.160455 ], [ -4.746094, 52.160455 ], [ -4.746094, 52.268157 ], [ -4.394531, 52.268157 ], [ -4.394531, 52.375599 ], [ -4.570312, 52.375599 ], [ -4.570312, 52.589701 ], [ -4.746094, 52.589701 ], [ -4.746094, 52.802761 ], [ -4.921875, 52.802761 ], [ -4.921875, 53.225768 ], [ -4.746094, 53.225768 ], [ -4.746094, 53.540307 ], [ -4.042969, 53.540307 ], [ -4.042969, 53.435719 ], [ -3.164062, 53.435719 ], [ -3.164062, 53.748711 ], [ -2.988281, 53.748711 ], [ -2.988281, 54.059388 ], [ -3.164062, 54.059388 ], [ -3.164062, 54.265224 ], [ -3.339844, 54.265224 ], [ -3.339844, 54.367759 ], [ -3.515625, 54.367759 ], [ -3.515625, 54.572062 ], [ -3.691406, 54.572062 ], [ -3.691406, 54.673831 ], [ -4.042969, 54.673831 ], [ -4.042969, 54.775346 ], [ -4.746094, 54.775346 ], [ -4.746094, 54.876607 ], [ -4.921875, 54.876607 ], [ -4.921875, 54.977614 ], [ -5.097656, 54.977614 ], [ -5.097656, 55.178868 ], [ -4.921875, 55.178868 ], [ -4.921875, 55.379110 ], [ -4.746094, 55.379110 ], [ -4.746094, 55.578345 ], [ -4.921875, 55.578345 ], [ -4.921875, 55.776573 ], [ -5.273438, 55.776573 ], [ -5.273438, 55.578345 ], [ -5.449219, 55.578345 ], [ -5.449219, 55.379110 ], [ -5.625000, 55.379110 ], [ -5.625000, 55.875311 ], [ -5.800781, 55.875311 ], [ -5.800781, 56.462490 ], [ -5.976562, 56.462490 ], [ -5.976562, 56.656226 ], [ -6.152344, 56.656226 ], [ -6.152344, 57.040730 ], [ -5.976562, 57.040730 ], [ -5.976562, 57.610107 ], [ -5.800781, 57.610107 ], [ -5.800781, 57.984808 ], [ -5.625000, 57.984808 ], [ -5.625000, 58.170702 ], [ -5.449219, 58.170702 ], [ -5.449219, 58.355630 ], [ -5.273438, 58.355630 ], [ -5.273438, 58.539595 ], [ -5.097656, 58.539595 ], [ -5.097656, 58.631217 ], [ -3.515625, 58.631217 ], [ -3.515625, 58.722599 ], [ -3.164062, 58.722599 ] ] ], [ [ [ -6.855469, 55.178868 ], [ -6.855469, 55.078367 ], [ -6.679688, 55.078367 ], [ -6.679688, 54.977614 ], [ -6.503906, 54.977614 ], [ -6.503906, 54.876607 ], [ -6.328125, 54.876607 ], [ -6.328125, 54.775346 ], [ -6.152344, 54.775346 ], [ -6.152344, 54.673831 ], [ -5.976562, 54.673831 ], [ -5.976562, 54.572062 ], [ -5.800781, 54.572062 ], [ -5.800781, 54.470038 ], [ -5.976562, 54.470038 ], [ -5.976562, 54.265224 ], [ -6.152344, 54.265224 ], [ -6.152344, 54.059388 ], [ -6.328125, 54.059388 ], [ -6.328125, 53.956086 ], [ -6.679688, 53.956086 ], [ -6.679688, 54.059388 ], [ -7.031250, 54.059388 ], [ -7.031250, 54.162434 ], [ -7.207031, 54.162434 ], [ -7.207031, 54.059388 ], [ -7.734375, 54.059388 ], [ -7.734375, 54.162434 ], [ -7.558594, 54.162434 ], [ -7.558594, 54.470038 ], [ -7.382812, 54.470038 ], [ -7.382812, 54.775346 ], [ -7.558594, 54.775346 ], [ -7.558594, 54.977614 ], [ -7.734375, 54.977614 ], [ -7.734375, 55.178868 ], [ -6.855469, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.951220 ], [ 0.878906, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.527344, 42.682435 ], [ -0.527344, 42.811522 ], [ -0.878906, 42.811522 ], [ -0.878906, 42.940339 ], [ -1.406250, 42.940339 ], [ -1.406250, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -1.933594, 43.325178 ], [ -1.933594, 43.452919 ], [ -1.757812, 43.452919 ], [ -1.757812, 43.707594 ], [ -1.582031, 43.707594 ], [ -1.582031, 43.834527 ], [ -1.406250, 43.834527 ], [ -1.406250, 44.964798 ], [ -1.230469, 44.964798 ], [ -1.230469, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.582031, 46.316584 ], [ -1.582031, 46.437857 ], [ -1.757812, 46.437857 ], [ -1.757812, 46.558860 ], [ -1.933594, 46.558860 ], [ -1.933594, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 46.920255 ], [ -2.285156, 46.920255 ], [ -2.285156, 47.040182 ], [ -2.460938, 47.040182 ], [ -2.460938, 47.159840 ], [ -2.636719, 47.159840 ], [ -2.636719, 47.279229 ], [ -2.812500, 47.279229 ], [ -2.812500, 47.398349 ], [ -2.988281, 47.398349 ], [ -2.988281, 47.517201 ], [ -3.339844, 47.517201 ], [ -3.339844, 47.635784 ], [ -3.691406, 47.635784 ], [ -3.691406, 47.754098 ], [ -4.042969, 47.754098 ], [ -4.042969, 47.872144 ], [ -4.394531, 47.872144 ], [ -4.394531, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -4.218750, 48.690960 ], [ -4.218750, 48.806863 ], [ -3.515625, 48.806863 ], [ -3.515625, 48.922499 ], [ -2.988281, 48.922499 ], [ -2.988281, 48.806863 ], [ -2.109375, 48.806863 ], [ -2.109375, 48.690960 ], [ -1.582031, 48.690960 ], [ -1.582031, 48.922499 ], [ -1.757812, 48.922499 ], [ -1.757812, 49.382373 ], [ -1.933594, 49.382373 ], [ -1.933594, 49.610710 ], [ -1.582031, 49.610710 ], [ -1.582031, 49.496675 ], [ -1.230469, 49.496675 ], [ -1.230469, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 0.878906, 49.951220 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.951220 ], [ 0.878906, 42.811522 ], [ 0.527344, 42.811522 ], [ 0.527344, 42.682435 ], [ -0.175781, 42.682435 ], [ -0.175781, 42.811522 ], [ -0.878906, 42.811522 ], [ -0.878906, 42.940339 ], [ -1.406250, 42.940339 ], [ -1.406250, 43.068888 ], [ -1.757812, 43.068888 ], [ -1.757812, 43.325178 ], [ -1.933594, 43.325178 ], [ -1.933594, 43.452919 ], [ -1.757812, 43.452919 ], [ -1.757812, 43.707594 ], [ -1.582031, 43.707594 ], [ -1.582031, 43.961191 ], [ -1.406250, 43.961191 ], [ -1.406250, 45.089036 ], [ -1.230469, 45.089036 ], [ -1.230469, 46.073231 ], [ -1.406250, 46.073231 ], [ -1.406250, 46.316584 ], [ -1.582031, 46.316584 ], [ -1.582031, 46.437857 ], [ -1.757812, 46.437857 ], [ -1.757812, 46.679594 ], [ -1.933594, 46.679594 ], [ -1.933594, 46.800059 ], [ -2.109375, 46.800059 ], [ -2.109375, 47.040182 ], [ -2.285156, 47.040182 ], [ -2.285156, 47.159840 ], [ -2.460938, 47.159840 ], [ -2.460938, 47.279229 ], [ -2.636719, 47.279229 ], [ -2.636719, 47.398349 ], [ -2.812500, 47.398349 ], [ -2.812500, 47.517201 ], [ -2.988281, 47.517201 ], [ -2.988281, 47.635784 ], [ -3.339844, 47.635784 ], [ -3.339844, 47.754098 ], [ -3.867188, 47.754098 ], [ -3.867188, 47.872144 ], [ -4.394531, 47.872144 ], [ -4.394531, 47.989922 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.341646 ], [ -4.746094, 48.341646 ], [ -4.746094, 48.690960 ], [ -4.218750, 48.690960 ], [ -4.218750, 48.806863 ], [ -3.515625, 48.806863 ], [ -3.515625, 48.922499 ], [ -2.988281, 48.922499 ], [ -2.988281, 48.806863 ], [ -2.285156, 48.806863 ], [ -2.285156, 48.690960 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.267805 ], [ -1.933594, 49.267805 ], [ -1.933594, 49.724479 ], [ -1.757812, 49.724479 ], [ -1.757812, 49.610710 ], [ -1.406250, 49.610710 ], [ -1.406250, 49.496675 ], [ -1.230469, 49.496675 ], [ -1.230469, 49.382373 ], [ -0.878906, 49.382373 ], [ -0.878906, 49.496675 ], [ -0.527344, 49.496675 ], [ -0.527344, 49.610710 ], [ -0.175781, 49.610710 ], [ -0.175781, 49.724479 ], [ 0.175781, 49.724479 ], [ 0.175781, 49.837982 ], [ 0.527344, 49.837982 ], [ 0.527344, 49.951220 ], [ 0.878906, 49.951220 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.163403 ], [ -8.261719, 42.032974 ], [ -8.085938, 42.032974 ], [ -8.085938, 41.771312 ], [ -7.207031, 41.771312 ], [ -7.207031, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.679688, 41.771312 ], [ -6.503906, 41.771312 ], [ -6.503906, 41.508577 ], [ -6.328125, 41.508577 ], [ -6.328125, 41.244772 ], [ -6.679688, 41.244772 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.446947 ], [ -8.789062, 40.446947 ], [ -8.789062, 41.376809 ], [ -8.964844, 41.376809 ], [ -8.964844, 41.902277 ], [ -8.789062, 41.902277 ], [ -8.789062, 42.032974 ], [ -8.613281, 42.032974 ], [ -8.613281, 42.163403 ], [ -8.261719, 42.163403 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.293564 ], [ -8.261719, 42.032974 ], [ -8.085938, 42.032974 ], [ -8.085938, 41.902277 ], [ -7.382812, 41.902277 ], [ -7.382812, 42.032974 ], [ -7.207031, 42.032974 ], [ -7.207031, 41.902277 ], [ -6.679688, 41.902277 ], [ -6.679688, 41.640078 ], [ -6.503906, 41.640078 ], [ -6.503906, 41.376809 ], [ -6.679688, 41.376809 ], [ -6.679688, 41.112469 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.713956 ], [ -7.031250, 40.713956 ], [ -7.031250, 40.313043 ], [ -8.964844, 40.313043 ], [ -8.964844, 40.580585 ], [ -8.789062, 40.580585 ], [ -8.789062, 41.244772 ], [ -8.964844, 41.244772 ], [ -8.964844, 41.508577 ], [ -9.140625, 41.508577 ], [ -9.140625, 41.902277 ], [ -8.964844, 41.902277 ], [ -8.964844, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 42.163403 ], [ -8.437500, 42.163403 ], [ -8.437500, 42.293564 ], [ -8.261719, 42.293564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.382812, 43.707594 ], [ -7.382812, 43.580391 ], [ -5.097656, 43.580391 ], [ -5.097656, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.933594, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 42.811522 ], [ -0.527344, 42.811522 ], [ -0.527344, 42.682435 ], [ 0.000000, 42.682435 ], [ 0.000000, 42.553080 ], [ 0.527344, 42.553080 ], [ 0.527344, 42.682435 ], [ 0.878906, 42.682435 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.313043 ], [ -6.855469, 40.313043 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.244772 ], [ -6.328125, 41.244772 ], [ -6.328125, 41.508577 ], [ -6.503906, 41.508577 ], [ -6.503906, 41.771312 ], [ -6.679688, 41.771312 ], [ -6.679688, 41.902277 ], [ -7.207031, 41.902277 ], [ -7.207031, 41.771312 ], [ -8.085938, 41.771312 ], [ -8.085938, 42.032974 ], [ -8.261719, 42.032974 ], [ -8.261719, 42.163403 ], [ -8.613281, 42.163403 ], [ -8.613281, 42.032974 ], [ -8.789062, 42.032974 ], [ -8.789062, 41.902277 ], [ -8.964844, 41.902277 ], [ -8.964844, 42.682435 ], [ -9.140625, 42.682435 ], [ -9.140625, 42.940339 ], [ -9.316406, 42.940339 ], [ -9.316406, 43.068888 ], [ -9.140625, 43.068888 ], [ -9.140625, 43.197167 ], [ -8.789062, 43.197167 ], [ -8.789062, 43.325178 ], [ -8.437500, 43.325178 ], [ -8.437500, 43.452919 ], [ -8.261719, 43.452919 ], [ -8.261719, 43.580391 ], [ -7.910156, 43.580391 ], [ -7.910156, 43.707594 ], [ -7.382812, 43.707594 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.910156, 43.834527 ], [ -7.910156, 43.707594 ], [ -7.207031, 43.707594 ], [ -7.207031, 43.580391 ], [ -5.097656, 43.580391 ], [ -5.097656, 43.452919 ], [ -3.867188, 43.452919 ], [ -3.867188, 43.580391 ], [ -2.812500, 43.580391 ], [ -2.812500, 43.452919 ], [ -1.933594, 43.452919 ], [ -1.933594, 43.325178 ], [ -1.757812, 43.325178 ], [ -1.757812, 43.068888 ], [ -1.406250, 43.068888 ], [ -1.406250, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 42.811522 ], [ -0.175781, 42.811522 ], [ -0.175781, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.811522 ], [ 0.878906, 42.811522 ], [ 0.878906, 41.112469 ], [ 0.703125, 41.112469 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.313043 ], [ -7.031250, 40.313043 ], [ -7.031250, 40.713956 ], [ -6.855469, 40.713956 ], [ -6.855469, 41.112469 ], [ -6.679688, 41.112469 ], [ -6.679688, 41.376809 ], [ -6.503906, 41.376809 ], [ -6.503906, 41.640078 ], [ -6.679688, 41.640078 ], [ -6.679688, 41.902277 ], [ -7.207031, 41.902277 ], [ -7.207031, 42.032974 ], [ -7.382812, 42.032974 ], [ -7.382812, 41.902277 ], [ -8.085938, 41.902277 ], [ -8.085938, 42.032974 ], [ -8.261719, 42.032974 ], [ -8.261719, 42.293564 ], [ -8.437500, 42.293564 ], [ -8.437500, 42.163403 ], [ -8.789062, 42.163403 ], [ -8.789062, 42.032974 ], [ -8.964844, 42.032974 ], [ -8.964844, 41.902277 ], [ -9.140625, 41.902277 ], [ -9.140625, 42.682435 ], [ -9.316406, 42.682435 ], [ -9.316406, 42.940339 ], [ -9.492188, 42.940339 ], [ -9.492188, 43.068888 ], [ -9.316406, 43.068888 ], [ -9.316406, 43.197167 ], [ -8.964844, 43.197167 ], [ -8.964844, 43.325178 ], [ -8.789062, 43.325178 ], [ -8.789062, 43.452919 ], [ -8.613281, 43.452919 ], [ -8.613281, 43.580391 ], [ -8.261719, 43.580391 ], [ -8.261719, 43.707594 ], [ -8.085938, 43.707594 ], [ -8.085938, 43.834527 ], [ -7.910156, 43.834527 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.312500, 71.244356 ], [ -25.312500, 70.902268 ], [ -25.136719, 70.902268 ], [ -25.136719, 70.670881 ], [ -25.312500, 70.670881 ], [ -25.312500, 70.612614 ], [ -25.488281, 70.612614 ], [ -25.488281, 70.495574 ], [ -25.664062, 70.495574 ], [ -25.664062, 70.436799 ], [ -25.839844, 70.436799 ], [ -25.839844, 70.377854 ], [ -26.015625, 70.377854 ], [ -26.015625, 70.259452 ], [ -26.191406, 70.259452 ], [ -26.191406, 70.199994 ], [ -23.203125, 70.199994 ], [ -23.203125, 70.140364 ], [ -22.324219, 70.140364 ], [ -22.324219, 70.080562 ], [ -22.500000, 70.080562 ], [ -22.500000, 70.020587 ], [ -22.675781, 70.020587 ], [ -22.675781, 69.960439 ], [ -22.851562, 69.960439 ], [ -22.851562, 69.900118 ], [ -23.027344, 69.900118 ], [ -23.027344, 69.839622 ], [ -23.203125, 69.839622 ], [ -23.203125, 69.778952 ], [ -23.378906, 69.778952 ], [ -23.378906, 69.718107 ], [ -23.730469, 69.718107 ], [ -23.730469, 69.657086 ], [ -23.906250, 69.657086 ], [ -23.906250, 69.595890 ], [ -24.082031, 69.595890 ], [ -24.082031, 69.534518 ], [ -24.257812, 69.534518 ], [ -24.257812, 69.472969 ], [ -24.433594, 69.472969 ], [ -24.433594, 69.411242 ], [ -24.609375, 69.411242 ], [ -24.609375, 69.349339 ], [ -24.785156, 69.349339 ], [ -24.785156, 69.287257 ], [ -24.960938, 69.287257 ], [ -24.960938, 69.224997 ], [ -25.136719, 69.224997 ], [ -25.136719, 69.162558 ], [ -25.488281, 69.162558 ], [ -25.488281, 69.099940 ], [ -25.664062, 69.099940 ], [ -25.664062, 69.037142 ], [ -25.839844, 69.037142 ], [ -25.839844, 68.974164 ], [ -26.015625, 68.974164 ], [ -26.015625, 68.911005 ], [ -26.191406, 68.911005 ], [ -26.191406, 68.847665 ], [ -26.542969, 68.847665 ], [ -26.542969, 68.784144 ], [ -26.718750, 68.784144 ], [ -26.718750, 68.720441 ], [ -26.894531, 68.720441 ], [ -26.894531, 68.656555 ], [ -27.070312, 68.656555 ], [ -27.070312, 68.592487 ], [ -27.421875, 68.592487 ], [ -27.421875, 68.528235 ], [ -27.597656, 68.528235 ], [ -27.597656, 68.463800 ], [ -27.949219, 68.463800 ], [ -27.949219, 68.399180 ], [ -28.476562, 68.399180 ], [ -28.476562, 68.334376 ], [ -29.003906, 68.334376 ], [ -29.003906, 68.269387 ], [ -29.707031, 68.269387 ], [ -29.707031, 68.204212 ], [ -30.234375, 68.204212 ], [ -30.234375, 68.138852 ], [ -31.816406, 68.138852 ], [ -31.816406, 68.073305 ], [ -31.992188, 68.073305 ], [ -31.992188, 68.007571 ], [ -32.167969, 68.007571 ], [ -32.167969, 67.941650 ], [ -32.343750, 67.941650 ], [ -32.343750, 67.875541 ], [ -32.519531, 67.875541 ], [ -32.519531, 67.809245 ], [ -32.695312, 67.809245 ], [ -32.695312, 67.742759 ], [ -32.871094, 67.742759 ], [ -32.871094, 67.676085 ], [ -33.046875, 67.676085 ], [ -33.046875, 67.542167 ], [ -33.222656, 67.542167 ], [ -33.222656, 67.407487 ], [ -33.398438, 67.407487 ], [ -33.398438, 67.272043 ], [ -33.574219, 67.272043 ], [ -33.574219, 67.135829 ], [ -33.750000, 67.135829 ], [ -33.750000, 66.998844 ], [ -33.925781, 66.998844 ], [ -33.925781, 66.861082 ], [ -34.101562, 66.861082 ], [ -34.101562, 66.722541 ], [ -34.277344, 66.722541 ], [ -34.277344, 66.583217 ], [ -34.453125, 66.583217 ], [ -34.453125, 66.513260 ], [ -34.804688, 66.513260 ], [ -34.804688, 66.443107 ], [ -34.980469, 66.443107 ], [ -34.980469, 66.372755 ], [ -35.156250, 66.372755 ], [ -35.156250, 66.302205 ], [ -35.507812, 66.302205 ], [ -35.507812, 66.231457 ], [ -35.683594, 66.231457 ], [ -35.683594, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ], [ -18.984375, 79.237185 ], [ -19.160156, 79.237185 ], [ -19.160156, 79.105086 ], [ -19.335938, 79.105086 ], [ -19.335938, 78.971386 ], [ -19.511719, 78.971386 ], [ -19.511719, 78.836065 ], [ -19.687500, 78.836065 ], [ -19.687500, 77.579959 ], [ -19.511719, 77.579959 ], [ -19.511719, 77.504119 ], [ -19.335938, 77.504119 ], [ -19.335938, 77.389504 ], [ -19.160156, 77.389504 ], [ -19.160156, 77.312520 ], [ -18.984375, 77.312520 ], [ -18.984375, 77.235074 ], [ -18.808594, 77.235074 ], [ -18.808594, 77.118032 ], [ -18.632812, 77.118032 ], [ -18.632812, 77.039418 ], [ -18.457031, 77.039418 ], [ -18.457031, 76.999935 ], [ -19.160156, 76.999935 ], [ -19.160156, 76.960334 ], [ -20.039062, 76.960334 ], [ -20.039062, 76.920614 ], [ -20.214844, 76.920614 ], [ -20.214844, 76.880775 ], [ -20.390625, 76.880775 ], [ -20.390625, 76.840816 ], [ -20.566406, 76.840816 ], [ -20.566406, 76.800739 ], [ -20.917969, 76.800739 ], [ -20.917969, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.720223 ], [ -21.269531, 76.720223 ], [ -21.269531, 76.679785 ], [ -21.445312, 76.679785 ], [ -21.445312, 76.639226 ], [ -21.621094, 76.639226 ], [ -21.621094, 76.598545 ], [ -21.445312, 76.598545 ], [ -21.445312, 76.557743 ], [ -21.269531, 76.557743 ], [ -21.269531, 76.475773 ], [ -21.093750, 76.475773 ], [ -21.093750, 76.434604 ], [ -20.917969, 76.434604 ], [ -20.917969, 76.393312 ], [ -20.742188, 76.393312 ], [ -20.742188, 76.310358 ], [ -20.566406, 76.310358 ], [ -20.566406, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.226907 ], [ -20.214844, 76.226907 ], [ -20.214844, 76.142958 ], [ -20.039062, 76.142958 ], [ -20.039062, 76.100796 ], [ -19.863281, 76.100796 ], [ -19.863281, 75.888091 ], [ -19.687500, 75.888091 ], [ -19.687500, 75.453071 ], [ -19.511719, 75.453071 ], [ -19.511719, 75.230667 ], [ -19.687500, 75.230667 ], [ -19.687500, 75.185789 ], [ -20.390625, 75.185789 ], [ -20.390625, 75.140778 ], [ -20.742188, 75.140778 ], [ -20.742188, 75.050354 ], [ -20.566406, 75.050354 ], [ -20.566406, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.867889 ], [ -20.214844, 74.867889 ], [ -20.214844, 74.775843 ], [ -20.039062, 74.775843 ], [ -20.039062, 74.636748 ], [ -19.863281, 74.636748 ], [ -19.863281, 74.543330 ], [ -19.687500, 74.543330 ], [ -19.687500, 74.449358 ], [ -19.511719, 74.449358 ], [ -19.511719, 74.354828 ], [ -19.335938, 74.354828 ], [ -19.335938, 74.307353 ], [ -19.863281, 74.307353 ], [ -19.863281, 74.259738 ], [ -20.917969, 74.259738 ], [ -20.917969, 74.211983 ], [ -21.621094, 74.211983 ], [ -21.621094, 74.164085 ], [ -21.445312, 74.164085 ], [ -21.445312, 74.116047 ], [ -21.269531, 74.116047 ], [ -21.269531, 74.067866 ], [ -21.093750, 74.067866 ], [ -21.093750, 74.019543 ], [ -20.917969, 74.019543 ], [ -20.917969, 73.922469 ], [ -20.742188, 73.922469 ], [ -20.742188, 73.873717 ], [ -20.566406, 73.873717 ], [ -20.566406, 73.824820 ], [ -20.390625, 73.824820 ], [ -20.390625, 73.726595 ], [ -20.566406, 73.726595 ], [ -20.566406, 73.528399 ], [ -20.742188, 73.528399 ], [ -20.742188, 73.478485 ], [ -20.917969, 73.478485 ], [ -20.917969, 73.428424 ], [ -21.269531, 73.428424 ], [ -21.269531, 73.378215 ], [ -21.796875, 73.378215 ], [ -21.796875, 73.327858 ], [ -23.554688, 73.327858 ], [ -23.554688, 73.277353 ], [ -23.378906, 73.277353 ], [ -23.378906, 73.175897 ], [ -23.203125, 73.175897 ], [ -23.203125, 73.073844 ], [ -23.027344, 73.073844 ], [ -23.027344, 72.971189 ], [ -22.851562, 72.971189 ], [ -22.851562, 72.867930 ], [ -22.675781, 72.867930 ], [ -22.675781, 72.764065 ], [ -22.500000, 72.764065 ], [ -22.500000, 72.659588 ], [ -22.324219, 72.659588 ], [ -22.324219, 72.181804 ], [ -22.500000, 72.181804 ], [ -22.500000, 72.235514 ], [ -22.851562, 72.235514 ], [ -22.851562, 72.289067 ], [ -23.027344, 72.289067 ], [ -23.027344, 72.342464 ], [ -23.203125, 72.342464 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.448792 ], [ -23.730469, 72.448792 ], [ -23.730469, 72.501722 ], [ -23.906250, 72.501722 ], [ -23.906250, 72.554498 ], [ -24.433594, 72.554498 ], [ -24.433594, 72.448792 ], [ -24.609375, 72.448792 ], [ -24.609375, 72.342464 ], [ -24.785156, 72.342464 ], [ -24.785156, 72.289067 ], [ -24.433594, 72.289067 ], [ -24.433594, 72.235514 ], [ -24.257812, 72.235514 ], [ -24.257812, 72.181804 ], [ -23.906250, 72.181804 ], [ -23.906250, 72.127936 ], [ -23.554688, 72.127936 ], [ -23.554688, 72.073911 ], [ -23.378906, 72.073911 ], [ -23.378906, 72.019729 ], [ -23.203125, 72.019729 ], [ -23.203125, 71.910888 ], [ -23.027344, 71.910888 ], [ -23.027344, 71.856229 ], [ -22.851562, 71.856229 ], [ -22.851562, 71.746432 ], [ -22.675781, 71.746432 ], [ -22.675781, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.580532 ], [ -22.324219, 71.580532 ], [ -22.324219, 71.469124 ], [ -22.148438, 71.469124 ], [ -22.148438, 71.244356 ], [ -21.972656, 71.244356 ], [ -21.972656, 70.844673 ], [ -21.796875, 70.844673 ], [ -21.796875, 70.670881 ], [ -21.972656, 70.670881 ], [ -21.972656, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.554179 ], [ -23.203125, 70.554179 ], [ -23.203125, 70.495574 ], [ -23.730469, 70.495574 ], [ -23.730469, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.670881 ], [ -24.082031, 70.670881 ], [ -24.082031, 70.786910 ], [ -24.257812, 70.786910 ], [ -24.257812, 70.844673 ], [ -24.433594, 70.844673 ], [ -24.433594, 70.959697 ], [ -24.609375, 70.959697 ], [ -24.609375, 71.016960 ], [ -24.785156, 71.016960 ], [ -24.785156, 71.130988 ], [ -24.960938, 71.130988 ], [ -24.960938, 71.187754 ], [ -25.136719, 71.187754 ], [ -25.136719, 71.244356 ], [ -25.312500, 71.244356 ] ], [ [ -25.312500, 71.244356 ], [ -25.312500, 71.357067 ], [ -25.488281, 71.357067 ], [ -25.488281, 71.244356 ], [ -25.312500, 71.244356 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.488281, 71.300793 ], [ -25.488281, 70.959697 ], [ -25.312500, 70.959697 ], [ -25.312500, 70.728979 ], [ -25.488281, 70.728979 ], [ -25.488281, 70.612614 ], [ -25.664062, 70.612614 ], [ -25.664062, 70.554179 ], [ -25.839844, 70.554179 ], [ -25.839844, 70.436799 ], [ -26.015625, 70.436799 ], [ -26.015625, 70.377854 ], [ -26.191406, 70.377854 ], [ -26.191406, 70.259452 ], [ -25.136719, 70.259452 ], [ -25.136719, 70.199994 ], [ -23.203125, 70.199994 ], [ -23.203125, 70.140364 ], [ -22.500000, 70.140364 ], [ -22.500000, 70.080562 ], [ -22.675781, 70.080562 ], [ -22.675781, 70.020587 ], [ -22.851562, 70.020587 ], [ -22.851562, 69.960439 ], [ -23.027344, 69.960439 ], [ -23.027344, 69.900118 ], [ -23.203125, 69.900118 ], [ -23.203125, 69.839622 ], [ -23.378906, 69.839622 ], [ -23.378906, 69.778952 ], [ -23.554688, 69.778952 ], [ -23.554688, 69.718107 ], [ -23.906250, 69.718107 ], [ -23.906250, 69.657086 ], [ -24.082031, 69.657086 ], [ -24.082031, 69.595890 ], [ -24.257812, 69.595890 ], [ -24.257812, 69.534518 ], [ -24.433594, 69.534518 ], [ -24.433594, 69.472969 ], [ -24.609375, 69.472969 ], [ -24.609375, 69.411242 ], [ -24.785156, 69.411242 ], [ -24.785156, 69.349339 ], [ -24.960938, 69.349339 ], [ -24.960938, 69.287257 ], [ -25.136719, 69.287257 ], [ -25.136719, 69.224997 ], [ -25.312500, 69.224997 ], [ -25.312500, 69.162558 ], [ -25.664062, 69.162558 ], [ -25.664062, 69.099940 ], [ -25.839844, 69.099940 ], [ -25.839844, 69.037142 ], [ -26.015625, 69.037142 ], [ -26.015625, 68.974164 ], [ -26.191406, 68.974164 ], [ -26.191406, 68.911005 ], [ -26.542969, 68.911005 ], [ -26.542969, 68.847665 ], [ -26.718750, 68.847665 ], [ -26.718750, 68.784144 ], [ -26.894531, 68.784144 ], [ -26.894531, 68.720441 ], [ -27.070312, 68.720441 ], [ -27.070312, 68.656555 ], [ -27.421875, 68.656555 ], [ -27.421875, 68.592487 ], [ -27.597656, 68.592487 ], [ -27.597656, 68.528235 ], [ -27.949219, 68.528235 ], [ -27.949219, 68.463800 ], [ -28.476562, 68.463800 ], [ -28.476562, 68.399180 ], [ -29.003906, 68.399180 ], [ -29.003906, 68.334376 ], [ -29.355469, 68.334376 ], [ -29.355469, 68.269387 ], [ -29.882812, 68.269387 ], [ -29.882812, 68.204212 ], [ -30.410156, 68.204212 ], [ -30.410156, 68.138852 ], [ -31.816406, 68.138852 ], [ -31.816406, 68.073305 ], [ -31.992188, 68.073305 ], [ -31.992188, 68.007571 ], [ -32.167969, 68.007571 ], [ -32.167969, 67.941650 ], [ -32.343750, 67.941650 ], [ -32.343750, 67.875541 ], [ -32.519531, 67.875541 ], [ -32.519531, 67.809245 ], [ -32.695312, 67.809245 ], [ -32.695312, 67.742759 ], [ -32.871094, 67.742759 ], [ -32.871094, 67.676085 ], [ -33.046875, 67.676085 ], [ -33.046875, 67.542167 ], [ -33.222656, 67.542167 ], [ -33.222656, 67.407487 ], [ -33.398438, 67.407487 ], [ -33.398438, 67.272043 ], [ -33.574219, 67.272043 ], [ -33.574219, 67.135829 ], [ -33.750000, 67.135829 ], [ -33.750000, 66.998844 ], [ -33.925781, 66.998844 ], [ -33.925781, 66.861082 ], [ -34.101562, 66.861082 ], [ -34.101562, 66.722541 ], [ -34.277344, 66.722541 ], [ -34.277344, 66.652977 ], [ -34.453125, 66.652977 ], [ -34.453125, 66.583217 ], [ -34.628906, 66.583217 ], [ -34.628906, 66.513260 ], [ -34.804688, 66.513260 ], [ -34.804688, 66.443107 ], [ -35.156250, 66.443107 ], [ -35.156250, 66.372755 ], [ -35.332031, 66.372755 ], [ -35.332031, 66.302205 ], [ -35.507812, 66.302205 ], [ -35.507812, 66.231457 ], [ -35.683594, 66.231457 ], [ -35.683594, 66.160511 ], [ -45.878906, 66.160511 ], [ -45.878906, 79.335219 ], [ -18.984375, 79.335219 ], [ -18.984375, 79.269962 ], [ -19.160156, 79.269962 ], [ -19.160156, 79.138260 ], [ -19.335938, 79.138260 ], [ -19.335938, 79.038437 ], [ -19.511719, 79.038437 ], [ -19.511719, 78.937708 ], [ -19.687500, 78.937708 ], [ -19.687500, 78.801980 ], [ -19.863281, 78.801980 ], [ -19.863281, 78.206563 ], [ -19.687500, 78.206563 ], [ -19.687500, 77.579959 ], [ -19.511719, 77.579959 ], [ -19.511719, 77.466028 ], [ -19.335938, 77.466028 ], [ -19.335938, 77.351070 ], [ -19.160156, 77.351070 ], [ -19.160156, 77.273855 ], [ -18.984375, 77.273855 ], [ -18.984375, 77.157163 ], [ -18.808594, 77.157163 ], [ -18.808594, 77.039418 ], [ -18.632812, 77.039418 ], [ -18.632812, 76.999935 ], [ -19.160156, 76.999935 ], [ -19.160156, 76.960334 ], [ -20.039062, 76.960334 ], [ -20.039062, 76.920614 ], [ -20.214844, 76.920614 ], [ -20.214844, 76.880775 ], [ -20.566406, 76.880775 ], [ -20.566406, 76.840816 ], [ -20.742188, 76.840816 ], [ -20.742188, 76.800739 ], [ -20.917969, 76.800739 ], [ -20.917969, 76.760541 ], [ -21.093750, 76.760541 ], [ -21.093750, 76.720223 ], [ -21.445312, 76.720223 ], [ -21.445312, 76.679785 ], [ -21.621094, 76.679785 ], [ -21.621094, 76.639226 ], [ -21.796875, 76.639226 ], [ -21.796875, 76.598545 ], [ -21.621094, 76.598545 ], [ -21.621094, 76.557743 ], [ -21.445312, 76.557743 ], [ -21.445312, 76.516819 ], [ -21.269531, 76.516819 ], [ -21.269531, 76.434604 ], [ -21.093750, 76.434604 ], [ -21.093750, 76.393312 ], [ -20.917969, 76.393312 ], [ -20.917969, 76.351896 ], [ -20.742188, 76.351896 ], [ -20.742188, 76.310358 ], [ -20.566406, 76.310358 ], [ -20.566406, 76.268695 ], [ -20.390625, 76.268695 ], [ -20.390625, 76.184995 ], [ -20.214844, 76.184995 ], [ -20.214844, 76.142958 ], [ -20.039062, 76.142958 ], [ -20.039062, 76.100796 ], [ -19.863281, 76.100796 ], [ -19.863281, 75.672197 ], [ -19.687500, 75.672197 ], [ -19.687500, 75.275413 ], [ -19.863281, 75.275413 ], [ -19.863281, 75.230667 ], [ -20.390625, 75.230667 ], [ -20.390625, 75.185789 ], [ -20.742188, 75.185789 ], [ -20.742188, 75.095633 ], [ -20.566406, 75.095633 ], [ -20.566406, 74.959392 ], [ -20.390625, 74.959392 ], [ -20.390625, 74.867889 ], [ -20.214844, 74.867889 ], [ -20.214844, 74.729615 ], [ -20.039062, 74.729615 ], [ -20.039062, 74.590108 ], [ -19.863281, 74.590108 ], [ -19.863281, 74.496413 ], [ -19.687500, 74.496413 ], [ -19.687500, 74.354828 ], [ -19.511719, 74.354828 ], [ -19.511719, 74.307353 ], [ -20.390625, 74.307353 ], [ -20.390625, 74.259738 ], [ -21.621094, 74.259738 ], [ -21.621094, 74.211983 ], [ -21.445312, 74.211983 ], [ -21.445312, 74.116047 ], [ -21.269531, 74.116047 ], [ -21.269531, 74.067866 ], [ -21.093750, 74.067866 ], [ -21.093750, 73.971078 ], [ -20.917969, 73.971078 ], [ -20.917969, 73.922469 ], [ -20.742188, 73.922469 ], [ -20.742188, 73.824820 ], [ -20.566406, 73.824820 ], [ -20.566406, 73.726595 ], [ -20.742188, 73.726595 ], [ -20.742188, 73.528399 ], [ -20.917969, 73.528399 ], [ -20.917969, 73.478485 ], [ -21.093750, 73.478485 ], [ -21.093750, 73.428424 ], [ -21.445312, 73.428424 ], [ -21.445312, 73.378215 ], [ -21.972656, 73.378215 ], [ -21.972656, 73.327858 ], [ -23.730469, 73.327858 ], [ -23.730469, 73.277353 ], [ -23.554688, 73.277353 ], [ -23.554688, 73.175897 ], [ -23.378906, 73.175897 ], [ -23.378906, 73.073844 ], [ -23.203125, 73.073844 ], [ -23.203125, 73.022592 ], [ -23.027344, 73.022592 ], [ -23.027344, 72.919635 ], [ -22.851562, 72.919635 ], [ -22.851562, 72.867930 ], [ -22.675781, 72.867930 ], [ -22.675781, 72.764065 ], [ -22.500000, 72.764065 ], [ -22.500000, 72.659588 ], [ -22.324219, 72.659588 ], [ -22.324219, 72.235514 ], [ -22.500000, 72.235514 ], [ -22.500000, 72.289067 ], [ -22.851562, 72.289067 ], [ -22.851562, 72.342464 ], [ -23.203125, 72.342464 ], [ -23.203125, 72.395706 ], [ -23.554688, 72.395706 ], [ -23.554688, 72.448792 ], [ -23.730469, 72.448792 ], [ -23.730469, 72.501722 ], [ -24.082031, 72.501722 ], [ -24.082031, 72.554498 ], [ -24.609375, 72.554498 ], [ -24.609375, 72.448792 ], [ -24.785156, 72.448792 ], [ -24.785156, 72.342464 ], [ -24.960938, 72.342464 ], [ -24.960938, 72.289067 ], [ -24.609375, 72.289067 ], [ -24.609375, 72.235514 ], [ -24.257812, 72.235514 ], [ -24.257812, 72.181804 ], [ -23.906250, 72.181804 ], [ -23.906250, 72.127936 ], [ -23.554688, 72.127936 ], [ -23.554688, 72.073911 ], [ -23.378906, 72.073911 ], [ -23.378906, 71.965388 ], [ -23.203125, 71.965388 ], [ -23.203125, 71.910888 ], [ -23.027344, 71.910888 ], [ -23.027344, 71.801410 ], [ -22.851562, 71.801410 ], [ -22.851562, 71.746432 ], [ -22.675781, 71.746432 ], [ -22.675781, 71.635993 ], [ -22.500000, 71.635993 ], [ -22.500000, 71.580532 ], [ -22.324219, 71.580532 ], [ -22.324219, 71.469124 ], [ -22.148438, 71.469124 ], [ -22.148438, 71.244356 ], [ -21.972656, 71.244356 ], [ -21.972656, 70.844673 ], [ -21.796875, 70.844673 ], [ -21.796875, 70.670881 ], [ -21.972656, 70.670881 ], [ -21.972656, 70.612614 ], [ -22.500000, 70.612614 ], [ -22.500000, 70.554179 ], [ -23.203125, 70.554179 ], [ -23.203125, 70.495574 ], [ -23.730469, 70.495574 ], [ -23.730469, 70.612614 ], [ -23.906250, 70.612614 ], [ -23.906250, 70.670881 ], [ -24.082031, 70.670881 ], [ -24.082031, 70.728979 ], [ -24.257812, 70.728979 ], [ -24.257812, 70.844673 ], [ -24.433594, 70.844673 ], [ -24.433594, 70.902268 ], [ -24.609375, 70.902268 ], [ -24.609375, 71.016960 ], [ -24.785156, 71.016960 ], [ -24.785156, 71.074056 ], [ -24.960938, 71.074056 ], [ -24.960938, 71.187754 ], [ -25.136719, 71.187754 ], [ -25.136719, 71.244356 ], [ -25.312500, 71.244356 ], [ -25.312500, 71.300793 ], [ -25.488281, 71.300793 ] ], [ [ -25.488281, 71.300793 ], [ -25.488281, 71.413177 ], [ -25.664062, 71.413177 ], [ -25.664062, 71.300793 ], [ -25.488281, 71.300793 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.160511 ], [ -23.730469, 66.160511 ], [ -23.730469, 66.231457 ], [ -23.378906, 66.231457 ], [ -23.378906, 66.302205 ], [ -22.851562, 66.302205 ], [ -22.851562, 66.372755 ], [ -22.324219, 66.372755 ], [ -22.324219, 66.443107 ], [ -22.148438, 66.443107 ] ] ], [ [ [ -19.160156, 66.160511 ], [ -19.160156, 66.231457 ], [ -18.632812, 66.231457 ], [ -18.632812, 66.160511 ], [ -19.160156, 66.160511 ] ] ], [ [ [ -17.050781, 66.160511 ], [ -17.050781, 66.231457 ], [ -16.875000, 66.231457 ], [ -16.875000, 66.302205 ], [ -16.523438, 66.302205 ], [ -16.523438, 66.372755 ], [ -16.347656, 66.372755 ], [ -16.347656, 66.443107 ], [ -16.171875, 66.443107 ], [ -16.171875, 66.513260 ], [ -15.468750, 66.513260 ], [ -15.468750, 66.443107 ], [ -14.589844, 66.443107 ], [ -14.589844, 66.160511 ], [ -17.050781, 66.160511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.148438, 66.443107 ], [ -22.148438, 66.372755 ], [ -21.972656, 66.372755 ], [ -21.972656, 66.302205 ], [ -21.796875, 66.302205 ], [ -21.796875, 66.160511 ], [ -23.906250, 66.160511 ], [ -23.906250, 66.231457 ], [ -23.730469, 66.231457 ], [ -23.730469, 66.302205 ], [ -23.203125, 66.302205 ], [ -23.203125, 66.372755 ], [ -22.500000, 66.372755 ], [ -22.500000, 66.443107 ], [ -22.148438, 66.443107 ] ] ], [ [ [ -19.335938, 66.160511 ], [ -19.335938, 66.231457 ], [ -18.808594, 66.231457 ], [ -18.808594, 66.160511 ], [ -19.335938, 66.160511 ] ] ], [ [ [ -17.226562, 66.160511 ], [ -17.226562, 66.231457 ], [ -17.050781, 66.231457 ], [ -17.050781, 66.302205 ], [ -16.875000, 66.302205 ], [ -16.875000, 66.372755 ], [ -16.523438, 66.372755 ], [ -16.523438, 66.443107 ], [ -16.347656, 66.443107 ], [ -16.347656, 66.513260 ], [ -16.171875, 66.513260 ], [ -16.171875, 66.583217 ], [ -15.468750, 66.583217 ], [ -15.468750, 66.513260 ], [ -14.589844, 66.513260 ], [ -14.589844, 66.302205 ], [ -14.765625, 66.302205 ], [ -14.765625, 66.160511 ], [ -17.226562, 66.160511 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.000000, 81.748454 ], [ -45.000000, 81.798757 ], [ -45.175781, 81.798757 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.898451 ], [ -45.703125, 81.898451 ], [ -45.703125, 81.947846 ], [ -45.878906, 81.947846 ], [ -45.878906, 82.787476 ], [ -45.703125, 82.787476 ], [ -45.703125, 82.831480 ], [ -45.527344, 82.831480 ], [ -45.527344, 82.853382 ], [ -45.351562, 82.853382 ], [ -45.351562, 82.896987 ], [ -45.175781, 82.896987 ], [ -45.175781, 82.918690 ], [ -45.000000, 82.918690 ], [ -45.000000, 82.940327 ], [ -44.824219, 82.940327 ], [ -44.824219, 82.983404 ], [ -44.648438, 82.983404 ], [ -44.648438, 83.004844 ], [ -44.472656, 83.004844 ], [ -44.472656, 83.047529 ], [ -44.296875, 83.047529 ], [ -44.296875, 83.068774 ], [ -44.121094, 83.068774 ], [ -44.121094, 83.111071 ], [ -43.945312, 83.111071 ], [ -43.945312, 83.132123 ], [ -43.769531, 83.132123 ], [ -43.769531, 83.153111 ], [ -43.593750, 83.153111 ], [ -43.593750, 83.194896 ], [ -43.417969, 83.194896 ], [ -43.417969, 83.215693 ], [ -42.714844, 83.215693 ], [ -42.714844, 83.194896 ], [ -40.957031, 83.194896 ], [ -40.957031, 83.174035 ], [ -39.902344, 83.174035 ], [ -39.902344, 83.194896 ], [ -39.726562, 83.194896 ], [ -39.726562, 83.236426 ], [ -39.550781, 83.236426 ], [ -39.550781, 83.298250 ], [ -39.375000, 83.298250 ], [ -39.375000, 83.359511 ], [ -39.199219, 83.359511 ], [ -39.199219, 83.400042 ], [ -39.023438, 83.400042 ], [ -39.023438, 83.460377 ], [ -38.847656, 83.460377 ], [ -38.847656, 83.500295 ], [ -38.671875, 83.500295 ], [ -38.671875, 83.539970 ], [ -38.144531, 83.539970 ], [ -38.144531, 83.559717 ], [ -37.441406, 83.559717 ], [ -37.441406, 83.579404 ], [ -36.738281, 83.579404 ], [ -36.738281, 83.599031 ], [ -36.035156, 83.599031 ], [ -36.035156, 83.618598 ], [ -35.332031, 83.618598 ], [ -35.332031, 83.638106 ], [ -34.628906, 83.638106 ], [ -34.628906, 83.618598 ], [ -33.222656, 83.618598 ], [ -33.222656, 83.599031 ], [ -31.816406, 83.599031 ], [ -31.816406, 83.579404 ], [ -30.585938, 83.579404 ], [ -30.585938, 83.559717 ], [ -29.179688, 83.559717 ], [ -29.179688, 83.539970 ], [ -27.773438, 83.539970 ], [ -27.773438, 83.520162 ], [ -27.070312, 83.520162 ], [ -27.070312, 83.500295 ], [ -26.894531, 83.500295 ], [ -26.894531, 83.480366 ], [ -26.718750, 83.480366 ], [ -26.718750, 83.460377 ], [ -26.542969, 83.460377 ], [ -26.542969, 83.440326 ], [ -26.367188, 83.440326 ], [ -26.367188, 83.420215 ], [ -26.191406, 83.420215 ], [ -26.191406, 83.400042 ], [ -26.015625, 83.400042 ], [ -26.015625, 83.359511 ], [ -25.839844, 83.359511 ], [ -25.839844, 83.339153 ], [ -25.664062, 83.339153 ], [ -25.664062, 83.318733 ], [ -25.488281, 83.318733 ], [ -25.488281, 83.298250 ], [ -25.312500, 83.298250 ], [ -25.312500, 83.277705 ], [ -25.136719, 83.277705 ], [ -25.136719, 83.257097 ], [ -24.960938, 83.257097 ], [ -24.960938, 83.236426 ], [ -24.785156, 83.236426 ], [ -24.785156, 83.215693 ], [ -24.609375, 83.215693 ], [ -24.609375, 83.194896 ], [ -24.433594, 83.194896 ], [ -24.433594, 83.174035 ], [ -24.257812, 83.174035 ], [ -24.257812, 83.153111 ], [ -24.082031, 83.153111 ], [ -24.082031, 83.132123 ], [ -23.906250, 83.132123 ], [ -23.906250, 83.089955 ], [ -23.730469, 83.089955 ], [ -23.730469, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.047529 ], [ -23.378906, 83.047529 ], [ -23.378906, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 83.004844 ], [ -23.027344, 83.004844 ], [ -23.027344, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.961898 ], [ -22.675781, 82.961898 ], [ -22.675781, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.918690 ], [ -22.324219, 82.918690 ], [ -22.324219, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.875218 ], [ -21.972656, 82.875218 ], [ -21.972656, 82.831480 ], [ -21.796875, 82.831480 ], [ -21.796875, 82.809511 ], [ -21.621094, 82.809511 ], [ -21.621094, 82.787476 ], [ -21.445312, 82.787476 ], [ -21.445312, 82.765373 ], [ -21.269531, 82.765373 ], [ -21.269531, 82.743202 ], [ -21.093750, 82.743202 ], [ -21.093750, 82.720964 ], [ -20.917969, 82.720964 ], [ -20.917969, 82.698659 ], [ -21.093750, 82.698659 ], [ -21.093750, 82.653843 ], [ -21.269531, 82.653843 ], [ -21.269531, 82.608754 ], [ -21.445312, 82.608754 ], [ -21.445312, 82.586106 ], [ -21.621094, 82.586106 ], [ -21.621094, 82.540604 ], [ -21.796875, 82.540604 ], [ -21.796875, 82.494824 ], [ -21.972656, 82.494824 ], [ -21.972656, 82.448764 ], [ -22.148438, 82.448764 ], [ -22.148438, 82.425629 ], [ -22.324219, 82.425629 ], [ -22.324219, 82.379147 ], [ -22.500000, 82.379147 ], [ -22.500000, 82.332382 ], [ -24.433594, 82.332382 ], [ -24.433594, 82.308893 ], [ -26.894531, 82.308893 ], [ -26.894531, 82.285331 ], [ -27.949219, 82.285331 ], [ -27.949219, 82.261699 ], [ -29.003906, 82.261699 ], [ -29.003906, 82.237994 ], [ -30.058594, 82.237994 ], [ -30.058594, 82.214217 ], [ -31.113281, 82.214217 ], [ -31.113281, 82.190368 ], [ -31.816406, 82.190368 ], [ -31.816406, 82.142451 ], [ -31.640625, 82.142451 ], [ -31.640625, 82.045740 ], [ -31.464844, 82.045740 ], [ -31.464844, 82.021378 ], [ -30.937500, 82.021378 ], [ -30.937500, 82.045740 ], [ -30.234375, 82.045740 ], [ -30.234375, 82.070028 ], [ -29.531250, 82.070028 ], [ -29.531250, 82.094243 ], [ -28.828125, 82.094243 ], [ -28.828125, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.142451 ], [ -27.773438, 82.142451 ], [ -27.773438, 82.118384 ], [ -27.597656, 82.118384 ], [ -27.597656, 82.094243 ], [ -27.246094, 82.094243 ], [ -27.246094, 82.070028 ], [ -27.070312, 82.070028 ], [ -27.070312, 82.045740 ], [ -26.894531, 82.045740 ], [ -26.894531, 82.021378 ], [ -26.718750, 82.021378 ], [ -26.718750, 81.996942 ], [ -26.542969, 81.996942 ], [ -26.542969, 81.972431 ], [ -26.191406, 81.972431 ], [ -26.191406, 81.947846 ], [ -26.015625, 81.947846 ], [ -26.015625, 81.923186 ], [ -25.839844, 81.923186 ], [ -25.839844, 81.898451 ], [ -25.664062, 81.898451 ], [ -25.664062, 81.873641 ], [ -25.488281, 81.873641 ], [ -25.488281, 81.848756 ], [ -25.136719, 81.848756 ], [ -25.136719, 81.823794 ], [ -24.960938, 81.823794 ], [ -24.960938, 81.798757 ], [ -24.609375, 81.798757 ], [ -24.609375, 81.823794 ], [ -24.433594, 81.823794 ], [ -24.433594, 81.848756 ], [ -24.257812, 81.848756 ], [ -24.257812, 81.873641 ], [ -24.082031, 81.873641 ], [ -24.082031, 81.898451 ], [ -23.906250, 81.898451 ], [ -23.906250, 81.947846 ], [ -23.730469, 81.947846 ], [ -23.730469, 81.972431 ], [ -23.554688, 81.972431 ], [ -23.554688, 81.996942 ], [ -23.378906, 81.996942 ], [ -23.378906, 82.021378 ], [ -23.203125, 82.021378 ], [ -23.203125, 82.045740 ], [ -23.027344, 82.045740 ], [ -23.027344, 82.070028 ], [ -22.851562, 82.070028 ], [ -22.851562, 82.045740 ], [ -22.675781, 82.045740 ], [ -22.675781, 81.947846 ], [ -22.500000, 81.947846 ], [ -22.500000, 81.848756 ], [ -22.324219, 81.848756 ], [ -22.324219, 81.748454 ], [ -22.148438, 81.748454 ], [ -22.148438, 81.672424 ], [ -22.324219, 81.672424 ], [ -22.324219, 81.569968 ], [ -22.500000, 81.569968 ], [ -22.500000, 81.466261 ], [ -22.675781, 81.466261 ], [ -22.675781, 81.387650 ], [ -22.851562, 81.387650 ], [ -22.851562, 81.281717 ], [ -23.027344, 81.281717 ], [ -23.027344, 81.174491 ], [ -22.851562, 81.174491 ], [ -22.851562, 81.201420 ], [ -22.675781, 81.201420 ], [ -22.675781, 81.228267 ], [ -22.500000, 81.228267 ], [ -22.500000, 81.255032 ], [ -22.324219, 81.255032 ], [ -22.324219, 81.281717 ], [ -22.148438, 81.281717 ], [ -22.148438, 81.308321 ], [ -21.972656, 81.308321 ], [ -21.972656, 81.334844 ], [ -21.621094, 81.334844 ], [ -21.621094, 81.361287 ], [ -21.445312, 81.361287 ], [ -21.445312, 81.387650 ], [ -21.269531, 81.387650 ], [ -21.269531, 81.413933 ], [ -21.093750, 81.413933 ], [ -21.093750, 81.440137 ], [ -20.917969, 81.440137 ], [ -20.917969, 81.466261 ], [ -20.742188, 81.466261 ], [ -20.742188, 81.492306 ], [ -20.566406, 81.492306 ], [ -20.566406, 81.518272 ], [ -20.390625, 81.518272 ], [ -20.390625, 81.544159 ], [ -20.039062, 81.544159 ], [ -20.039062, 81.569968 ], [ -19.687500, 81.569968 ], [ -19.687500, 81.595699 ], [ -19.511719, 81.595699 ], [ -19.511719, 81.621352 ], [ -19.160156, 81.621352 ], [ -19.160156, 81.646927 ], [ -18.808594, 81.646927 ], [ -18.808594, 81.672424 ], [ -18.632812, 81.672424 ], [ -18.632812, 81.697844 ], [ -18.281250, 81.697844 ], [ -18.281250, 81.723188 ], [ -17.929688, 81.723188 ], [ -17.929688, 81.748454 ], [ -17.578125, 81.748454 ], [ -17.578125, 81.773644 ], [ -17.402344, 81.773644 ], [ -17.402344, 81.798757 ], [ -17.050781, 81.798757 ], [ -17.050781, 81.823794 ], [ -16.699219, 81.823794 ], [ -16.699219, 81.848756 ], [ -16.523438, 81.848756 ], [ -16.523438, 81.873641 ], [ -16.171875, 81.873641 ], [ -16.171875, 81.898451 ], [ -15.820312, 81.898451 ], [ -15.820312, 81.923186 ], [ -15.644531, 81.923186 ], [ -15.644531, 81.898451 ], [ -15.292969, 81.898451 ], [ -15.292969, 81.873641 ], [ -14.941406, 81.873641 ], [ -14.941406, 81.848756 ], [ -14.589844, 81.848756 ], [ -14.589844, 81.823794 ], [ -14.238281, 81.823794 ], [ -14.238281, 81.798757 ], [ -13.886719, 81.798757 ], [ -13.886719, 81.773644 ], [ -13.535156, 81.773644 ], [ -13.535156, 81.748454 ], [ -13.183594, 81.748454 ], [ -13.183594, 81.723188 ], [ -12.832031, 81.723188 ], [ -12.832031, 81.646927 ], [ -12.656250, 81.646927 ], [ -12.656250, 81.544159 ], [ -12.480469, 81.544159 ], [ -12.480469, 81.440137 ], [ -12.304688, 81.440137 ], [ -12.304688, 81.334844 ], [ -12.128906, 81.334844 ], [ -12.128906, 81.255032 ], [ -12.304688, 81.255032 ], [ -12.304688, 81.228267 ], [ -12.480469, 81.228267 ], [ -12.480469, 81.201420 ], [ -12.656250, 81.201420 ], [ -12.656250, 81.174491 ], [ -12.832031, 81.174491 ], [ -12.832031, 81.147481 ], [ -13.007812, 81.147481 ], [ -13.007812, 81.120388 ], [ -13.183594, 81.120388 ], [ -13.183594, 81.093214 ], [ -13.359375, 81.093214 ], [ -13.359375, 81.065957 ], [ -13.535156, 81.065957 ], [ -13.535156, 81.038617 ], [ -13.710938, 81.038617 ], [ -13.710938, 81.011194 ], [ -13.886719, 81.011194 ], [ -13.886719, 80.983688 ], [ -14.062500, 80.983688 ], [ -14.062500, 80.956099 ], [ -14.238281, 80.956099 ], [ -14.238281, 80.900669 ], [ -14.414062, 80.900669 ], [ -14.414062, 80.872827 ], [ -14.589844, 80.872827 ], [ -14.589844, 80.844901 ], [ -14.765625, 80.844901 ], [ -14.765625, 80.816891 ], [ -14.941406, 80.816891 ], [ -14.941406, 80.788795 ], [ -15.117188, 80.788795 ], [ -15.117188, 80.760615 ], [ -15.292969, 80.760615 ], [ -15.292969, 80.732349 ], [ -15.468750, 80.732349 ], [ -15.468750, 80.703997 ], [ -15.644531, 80.703997 ], [ -15.644531, 80.675559 ], [ -15.820312, 80.675559 ], [ -15.820312, 80.647035 ], [ -15.996094, 80.647035 ], [ -15.996094, 80.618424 ], [ -16.171875, 80.618424 ], [ -16.171875, 80.589727 ], [ -16.347656, 80.589727 ], [ -16.347656, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.474065 ], [ -16.699219, 80.474065 ], [ -16.699219, 80.386396 ], [ -16.875000, 80.386396 ], [ -16.875000, 80.356995 ], [ -17.050781, 80.356995 ], [ -17.050781, 80.327506 ], [ -17.578125, 80.327506 ], [ -17.578125, 80.297927 ], [ -18.105469, 80.297927 ], [ -18.105469, 80.268259 ], [ -18.632812, 80.268259 ], [ -18.632812, 80.238501 ], [ -19.160156, 80.238501 ], [ -19.160156, 80.208652 ], [ -19.687500, 80.208652 ], [ -19.687500, 80.178713 ], [ -19.511719, 80.178713 ], [ -19.511719, 80.148684 ], [ -18.457031, 80.148684 ], [ -18.457031, 80.118564 ], [ -17.753906, 80.118564 ], [ -17.753906, 80.058050 ], [ -17.929688, 80.058050 ], [ -17.929688, 79.966590 ], [ -18.105469, 79.966590 ], [ -18.105469, 79.843346 ], [ -18.281250, 79.843346 ], [ -18.281250, 79.749932 ], [ -18.457031, 79.749932 ], [ -18.457031, 79.655668 ], [ -18.632812, 79.655668 ], [ -18.632812, 79.528647 ], [ -18.808594, 79.528647 ], [ -18.808594, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.302640 ], [ -19.160156, 79.302640 ], [ -19.160156, 79.105086 ], [ -19.335938, 79.105086 ], [ -19.335938, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.848756 ], [ -45.703125, 81.848756 ], [ -45.703125, 81.823794 ], [ -45.527344, 81.823794 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ] ], [ [ -23.027344, 81.174491 ], [ -23.203125, 81.174491 ], [ -23.203125, 81.147481 ], [ -23.027344, 81.147481 ], [ -23.027344, 81.174491 ] ], [ [ -44.824219, 81.723188 ], [ -44.824219, 81.697844 ], [ -44.648438, 81.697844 ], [ -44.648438, 81.723188 ], [ -44.824219, 81.723188 ] ], [ [ -45.000000, 81.748454 ], [ -45.000000, 81.723188 ], [ -44.824219, 81.723188 ], [ -44.824219, 81.748454 ], [ -45.000000, 81.748454 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.175781, 81.773644 ], [ -45.175781, 81.823794 ], [ -45.351562, 81.823794 ], [ -45.351562, 81.873641 ], [ -45.527344, 81.873641 ], [ -45.527344, 81.923186 ], [ -45.703125, 81.923186 ], [ -45.703125, 81.972431 ], [ -45.878906, 81.972431 ], [ -45.878906, 82.809511 ], [ -45.703125, 82.809511 ], [ -45.703125, 82.853382 ], [ -45.527344, 82.853382 ], [ -45.527344, 82.875218 ], [ -45.351562, 82.875218 ], [ -45.351562, 82.918690 ], [ -45.175781, 82.918690 ], [ -45.175781, 82.940327 ], [ -45.000000, 82.940327 ], [ -45.000000, 82.961898 ], [ -44.824219, 82.961898 ], [ -44.824219, 83.004844 ], [ -44.648438, 83.004844 ], [ -44.648438, 83.026219 ], [ -44.472656, 83.026219 ], [ -44.472656, 83.068774 ], [ -44.296875, 83.068774 ], [ -44.296875, 83.089955 ], [ -44.121094, 83.089955 ], [ -44.121094, 83.132123 ], [ -43.945312, 83.132123 ], [ -43.945312, 83.153111 ], [ -43.769531, 83.153111 ], [ -43.769531, 83.174035 ], [ -43.593750, 83.174035 ], [ -43.593750, 83.215693 ], [ -43.417969, 83.215693 ], [ -43.417969, 83.236426 ], [ -42.714844, 83.236426 ], [ -42.714844, 83.215693 ], [ -40.957031, 83.215693 ], [ -40.957031, 83.194896 ], [ -39.902344, 83.194896 ], [ -39.902344, 83.215693 ], [ -39.726562, 83.215693 ], [ -39.726562, 83.257097 ], [ -39.550781, 83.257097 ], [ -39.550781, 83.318733 ], [ -39.375000, 83.318733 ], [ -39.375000, 83.379808 ], [ -39.199219, 83.379808 ], [ -39.199219, 83.420215 ], [ -39.023438, 83.420215 ], [ -39.023438, 83.480366 ], [ -38.847656, 83.480366 ], [ -38.847656, 83.520162 ], [ -38.671875, 83.520162 ], [ -38.671875, 83.559717 ], [ -38.144531, 83.559717 ], [ -38.144531, 83.579404 ], [ -37.441406, 83.579404 ], [ -37.441406, 83.599031 ], [ -36.738281, 83.599031 ], [ -36.738281, 83.618598 ], [ -36.035156, 83.618598 ], [ -36.035156, 83.638106 ], [ -35.332031, 83.638106 ], [ -35.332031, 83.657554 ], [ -34.628906, 83.657554 ], [ -34.628906, 83.638106 ], [ -33.574219, 83.638106 ], [ -33.574219, 83.618598 ], [ -32.343750, 83.618598 ], [ -32.343750, 83.599031 ], [ -31.289062, 83.599031 ], [ -31.289062, 83.579404 ], [ -30.234375, 83.579404 ], [ -30.234375, 83.559717 ], [ -29.003906, 83.559717 ], [ -29.003906, 83.539970 ], [ -27.949219, 83.539970 ], [ -27.949219, 83.520162 ], [ -27.246094, 83.520162 ], [ -27.246094, 83.500295 ], [ -27.070312, 83.500295 ], [ -27.070312, 83.480366 ], [ -26.894531, 83.480366 ], [ -26.894531, 83.460377 ], [ -26.718750, 83.460377 ], [ -26.718750, 83.440326 ], [ -26.542969, 83.440326 ], [ -26.542969, 83.420215 ], [ -26.367188, 83.420215 ], [ -26.367188, 83.400042 ], [ -26.191406, 83.400042 ], [ -26.191406, 83.379808 ], [ -26.015625, 83.379808 ], [ -26.015625, 83.359511 ], [ -25.839844, 83.359511 ], [ -25.839844, 83.339153 ], [ -25.664062, 83.339153 ], [ -25.664062, 83.318733 ], [ -25.488281, 83.318733 ], [ -25.488281, 83.298250 ], [ -25.312500, 83.298250 ], [ -25.312500, 83.277705 ], [ -25.136719, 83.277705 ], [ -25.136719, 83.257097 ], [ -24.960938, 83.257097 ], [ -24.960938, 83.236426 ], [ -24.785156, 83.236426 ], [ -24.785156, 83.215693 ], [ -24.609375, 83.215693 ], [ -24.609375, 83.194896 ], [ -24.433594, 83.194896 ], [ -24.433594, 83.174035 ], [ -24.257812, 83.174035 ], [ -24.257812, 83.153111 ], [ -24.082031, 83.153111 ], [ -24.082031, 83.111071 ], [ -23.906250, 83.111071 ], [ -23.906250, 83.089955 ], [ -23.730469, 83.089955 ], [ -23.730469, 83.068774 ], [ -23.554688, 83.068774 ], [ -23.554688, 83.047529 ], [ -23.378906, 83.047529 ], [ -23.378906, 83.026219 ], [ -23.203125, 83.026219 ], [ -23.203125, 83.004844 ], [ -23.027344, 83.004844 ], [ -23.027344, 82.983404 ], [ -22.851562, 82.983404 ], [ -22.851562, 82.961898 ], [ -22.675781, 82.961898 ], [ -22.675781, 82.940327 ], [ -22.500000, 82.940327 ], [ -22.500000, 82.918690 ], [ -22.324219, 82.918690 ], [ -22.324219, 82.896987 ], [ -22.148438, 82.896987 ], [ -22.148438, 82.875218 ], [ -21.972656, 82.875218 ], [ -21.972656, 82.853382 ], [ -21.796875, 82.853382 ], [ -21.796875, 82.831480 ], [ -21.621094, 82.831480 ], [ -21.621094, 82.809511 ], [ -21.445312, 82.809511 ], [ -21.445312, 82.787476 ], [ -21.269531, 82.787476 ], [ -21.269531, 82.765373 ], [ -21.093750, 82.765373 ], [ -21.093750, 82.743202 ], [ -20.917969, 82.743202 ], [ -20.917969, 82.720964 ], [ -21.093750, 82.720964 ], [ -21.093750, 82.676285 ], [ -21.269531, 82.676285 ], [ -21.269531, 82.653843 ], [ -21.445312, 82.653843 ], [ -21.445312, 82.608754 ], [ -21.621094, 82.608754 ], [ -21.621094, 82.586106 ], [ -21.796875, 82.586106 ], [ -21.796875, 82.540604 ], [ -21.972656, 82.540604 ], [ -21.972656, 82.494824 ], [ -22.148438, 82.494824 ], [ -22.148438, 82.471829 ], [ -22.324219, 82.471829 ], [ -22.324219, 82.425629 ], [ -22.500000, 82.425629 ], [ -22.500000, 82.402423 ], [ -22.675781, 82.402423 ], [ -22.675781, 82.355800 ], [ -23.730469, 82.355800 ], [ -23.730469, 82.332382 ], [ -25.488281, 82.332382 ], [ -25.488281, 82.308893 ], [ -27.070312, 82.308893 ], [ -27.070312, 82.285331 ], [ -28.476562, 82.285331 ], [ -28.476562, 82.261699 ], [ -29.882812, 82.261699 ], [ -29.882812, 82.237994 ], [ -31.289062, 82.237994 ], [ -31.289062, 82.214217 ], [ -31.992188, 82.214217 ], [ -31.992188, 82.166446 ], [ -31.816406, 82.166446 ], [ -31.816406, 82.118384 ], [ -31.640625, 82.118384 ], [ -31.640625, 82.045740 ], [ -31.464844, 82.045740 ], [ -31.464844, 82.021378 ], [ -30.937500, 82.021378 ], [ -30.937500, 82.045740 ], [ -30.234375, 82.045740 ], [ -30.234375, 82.070028 ], [ -29.531250, 82.070028 ], [ -29.531250, 82.094243 ], [ -28.828125, 82.094243 ], [ -28.828125, 82.118384 ], [ -28.125000, 82.118384 ], [ -28.125000, 82.142451 ], [ -27.949219, 82.142451 ], [ -27.949219, 82.118384 ], [ -27.773438, 82.118384 ], [ -27.773438, 82.094243 ], [ -27.421875, 82.094243 ], [ -27.421875, 82.070028 ], [ -27.246094, 82.070028 ], [ -27.246094, 82.045740 ], [ -27.070312, 82.045740 ], [ -27.070312, 82.021378 ], [ -26.894531, 82.021378 ], [ -26.894531, 81.996942 ], [ -26.718750, 81.996942 ], [ -26.718750, 81.972431 ], [ -26.367188, 81.972431 ], [ -26.367188, 81.947846 ], [ -26.191406, 81.947846 ], [ -26.191406, 81.923186 ], [ -26.015625, 81.923186 ], [ -26.015625, 81.898451 ], [ -25.839844, 81.898451 ], [ -25.839844, 81.873641 ], [ -25.664062, 81.873641 ], [ -25.664062, 81.848756 ], [ -25.312500, 81.848756 ], [ -25.312500, 81.823794 ], [ -25.136719, 81.823794 ], [ -25.136719, 81.798757 ], [ -24.785156, 81.798757 ], [ -24.785156, 81.823794 ], [ -24.609375, 81.823794 ], [ -24.609375, 81.848756 ], [ -24.433594, 81.848756 ], [ -24.433594, 81.873641 ], [ -24.257812, 81.873641 ], [ -24.257812, 81.898451 ], [ -24.082031, 81.898451 ], [ -24.082031, 81.947846 ], [ -23.906250, 81.947846 ], [ -23.906250, 81.972431 ], [ -23.730469, 81.972431 ], [ -23.730469, 81.996942 ], [ -23.554688, 81.996942 ], [ -23.554688, 82.021378 ], [ -23.378906, 82.021378 ], [ -23.378906, 82.045740 ], [ -23.203125, 82.045740 ], [ -23.203125, 82.070028 ], [ -23.027344, 82.070028 ], [ -23.027344, 82.045740 ], [ -22.851562, 82.045740 ], [ -22.851562, 81.972431 ], [ -22.675781, 81.972431 ], [ -22.675781, 81.923186 ], [ -22.500000, 81.923186 ], [ -22.500000, 81.848756 ], [ -22.324219, 81.848756 ], [ -22.324219, 81.773644 ], [ -22.148438, 81.773644 ], [ -22.148438, 81.697844 ], [ -22.324219, 81.697844 ], [ -22.324219, 81.595699 ], [ -22.500000, 81.595699 ], [ -22.500000, 81.492306 ], [ -22.675781, 81.492306 ], [ -22.675781, 81.413933 ], [ -22.851562, 81.413933 ], [ -22.851562, 81.308321 ], [ -23.027344, 81.308321 ], [ -23.027344, 81.201420 ], [ -22.851562, 81.201420 ], [ -22.851562, 81.228267 ], [ -22.675781, 81.228267 ], [ -22.675781, 81.255032 ], [ -22.500000, 81.255032 ], [ -22.500000, 81.281717 ], [ -22.324219, 81.281717 ], [ -22.324219, 81.308321 ], [ -22.148438, 81.308321 ], [ -22.148438, 81.334844 ], [ -21.972656, 81.334844 ], [ -21.972656, 81.361287 ], [ -21.796875, 81.361287 ], [ -21.796875, 81.387650 ], [ -21.621094, 81.387650 ], [ -21.621094, 81.413933 ], [ -21.445312, 81.413933 ], [ -21.445312, 81.440137 ], [ -21.269531, 81.440137 ], [ -21.269531, 81.466261 ], [ -21.093750, 81.466261 ], [ -21.093750, 81.492306 ], [ -20.917969, 81.492306 ], [ -20.917969, 81.518272 ], [ -20.742188, 81.518272 ], [ -20.742188, 81.544159 ], [ -20.566406, 81.544159 ], [ -20.566406, 81.569968 ], [ -20.214844, 81.569968 ], [ -20.214844, 81.595699 ], [ -19.863281, 81.595699 ], [ -19.863281, 81.621352 ], [ -19.511719, 81.621352 ], [ -19.511719, 81.646927 ], [ -19.160156, 81.646927 ], [ -19.160156, 81.672424 ], [ -18.808594, 81.672424 ], [ -18.808594, 81.697844 ], [ -18.457031, 81.697844 ], [ -18.457031, 81.723188 ], [ -18.105469, 81.723188 ], [ -18.105469, 81.748454 ], [ -17.929688, 81.748454 ], [ -17.929688, 81.773644 ], [ -17.578125, 81.773644 ], [ -17.578125, 81.798757 ], [ -17.226562, 81.798757 ], [ -17.226562, 81.823794 ], [ -16.875000, 81.823794 ], [ -16.875000, 81.848756 ], [ -16.523438, 81.848756 ], [ -16.523438, 81.873641 ], [ -16.171875, 81.873641 ], [ -16.171875, 81.898451 ], [ -15.820312, 81.898451 ], [ -15.820312, 81.923186 ], [ -15.644531, 81.923186 ], [ -15.644531, 81.898451 ], [ -15.292969, 81.898451 ], [ -15.292969, 81.873641 ], [ -14.941406, 81.873641 ], [ -14.941406, 81.848756 ], [ -14.589844, 81.848756 ], [ -14.589844, 81.823794 ], [ -14.238281, 81.823794 ], [ -14.238281, 81.798757 ], [ -13.886719, 81.798757 ], [ -13.886719, 81.773644 ], [ -13.535156, 81.773644 ], [ -13.535156, 81.748454 ], [ -13.183594, 81.748454 ], [ -13.183594, 81.723188 ], [ -12.832031, 81.723188 ], [ -12.832031, 81.646927 ], [ -12.656250, 81.646927 ], [ -12.656250, 81.518272 ], [ -12.480469, 81.518272 ], [ -12.480469, 81.361287 ], [ -12.304688, 81.361287 ], [ -12.304688, 81.281717 ], [ -12.480469, 81.281717 ], [ -12.480469, 81.255032 ], [ -12.656250, 81.255032 ], [ -12.656250, 81.228267 ], [ -12.832031, 81.228267 ], [ -12.832031, 81.201420 ], [ -13.007812, 81.201420 ], [ -13.007812, 81.147481 ], [ -13.183594, 81.147481 ], [ -13.183594, 81.120388 ], [ -13.359375, 81.120388 ], [ -13.359375, 81.093214 ], [ -13.535156, 81.093214 ], [ -13.535156, 81.065957 ], [ -13.710938, 81.065957 ], [ -13.710938, 81.038617 ], [ -13.886719, 81.038617 ], [ -13.886719, 81.011194 ], [ -14.062500, 81.011194 ], [ -14.062500, 80.983688 ], [ -14.238281, 80.983688 ], [ -14.238281, 80.956099 ], [ -14.414062, 80.956099 ], [ -14.414062, 80.900669 ], [ -14.589844, 80.900669 ], [ -14.589844, 80.872827 ], [ -14.765625, 80.872827 ], [ -14.765625, 80.844901 ], [ -14.941406, 80.844901 ], [ -14.941406, 80.816891 ], [ -15.117188, 80.816891 ], [ -15.117188, 80.788795 ], [ -15.292969, 80.788795 ], [ -15.292969, 80.760615 ], [ -15.468750, 80.760615 ], [ -15.468750, 80.732349 ], [ -15.644531, 80.732349 ], [ -15.644531, 80.675559 ], [ -15.820312, 80.675559 ], [ -15.820312, 80.647035 ], [ -15.996094, 80.647035 ], [ -15.996094, 80.618424 ], [ -16.171875, 80.618424 ], [ -16.171875, 80.589727 ], [ -16.347656, 80.589727 ], [ -16.347656, 80.532071 ], [ -16.523438, 80.532071 ], [ -16.523438, 80.474065 ], [ -16.699219, 80.474065 ], [ -16.699219, 80.386396 ], [ -16.875000, 80.386396 ], [ -16.875000, 80.356995 ], [ -17.050781, 80.356995 ], [ -17.050781, 80.327506 ], [ -17.578125, 80.327506 ], [ -17.578125, 80.297927 ], [ -18.105469, 80.297927 ], [ -18.105469, 80.268259 ], [ -18.808594, 80.268259 ], [ -18.808594, 80.238501 ], [ -19.335938, 80.238501 ], [ -19.335938, 80.208652 ], [ -19.863281, 80.208652 ], [ -19.863281, 80.178713 ], [ -19.160156, 80.178713 ], [ -19.160156, 80.148684 ], [ -17.753906, 80.148684 ], [ -17.753906, 80.088352 ], [ -17.929688, 80.088352 ], [ -17.929688, 79.966590 ], [ -18.105469, 79.966590 ], [ -18.105469, 79.874297 ], [ -18.281250, 79.874297 ], [ -18.281250, 79.781164 ], [ -18.457031, 79.781164 ], [ -18.457031, 79.655668 ], [ -18.632812, 79.655668 ], [ -18.632812, 79.560546 ], [ -18.808594, 79.560546 ], [ -18.808594, 79.432371 ], [ -18.984375, 79.432371 ], [ -18.984375, 79.335219 ], [ -19.160156, 79.335219 ], [ -19.160156, 79.204309 ], [ -19.335938, 79.204309 ], [ -19.335938, 79.071812 ], [ -19.511719, 79.071812 ], [ -19.511719, 79.004962 ], [ -45.878906, 79.004962 ], [ -45.878906, 81.873641 ], [ -45.703125, 81.873641 ], [ -45.703125, 81.848756 ], [ -45.527344, 81.848756 ], [ -45.527344, 81.798757 ], [ -45.351562, 81.798757 ], [ -45.351562, 81.773644 ], [ -45.175781, 81.773644 ] ], [ [ -23.027344, 81.201420 ], [ -23.203125, 81.201420 ], [ -23.203125, 81.174491 ], [ -23.027344, 81.174491 ], [ -23.027344, 81.201420 ] ], [ [ -45.000000, 81.723188 ], [ -45.000000, 81.697844 ], [ -44.824219, 81.697844 ], [ -44.824219, 81.723188 ], [ -45.000000, 81.723188 ] ], [ [ -45.175781, 81.773644 ], [ -45.175781, 81.748454 ], [ -45.000000, 81.748454 ], [ -45.000000, 81.773644 ], [ -45.175781, 81.773644 ] ] ] } } ] } ] } , @@ -1654,257 +1644,257 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.809245 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.244356 ], [ -0.703125, -71.244356 ], [ -0.703125, -71.357067 ], [ -0.527344, -71.357067 ], [ -0.527344, -71.469124 ], [ -0.351562, -71.469124 ], [ -0.351562, -71.580532 ], [ -0.175781, -71.580532 ], [ -0.175781, -71.635993 ], [ 0.000000, -71.635993 ], [ 0.000000, -71.580532 ], [ 0.175781, -71.580532 ], [ 0.175781, -71.524909 ], [ 0.351562, -71.524909 ], [ 0.351562, -71.469124 ], [ 0.527344, -71.469124 ], [ 0.527344, -71.413177 ], [ 0.703125, -71.413177 ], [ 0.703125, -71.357067 ], [ 0.878906, -71.357067 ], [ 0.878906, -71.300793 ], [ 1.230469, -71.300793 ], [ 1.230469, -71.244356 ], [ 1.582031, -71.244356 ], [ 1.582031, -71.187754 ], [ 1.933594, -71.187754 ], [ 1.933594, -71.130988 ], [ 2.285156, -71.130988 ], [ 2.285156, -71.074056 ], [ 2.812500, -71.074056 ], [ 2.812500, -71.016960 ], [ 3.339844, -71.016960 ], [ 3.339844, -70.959697 ], [ 3.691406, -70.959697 ], [ 3.691406, -70.902268 ], [ 4.042969, -70.902268 ], [ 4.042969, -70.844673 ], [ 4.394531, -70.844673 ], [ 4.394531, -70.786910 ], [ 4.570312, -70.786910 ], [ 4.570312, -70.728979 ], [ 4.921875, -70.728979 ], [ 4.921875, -70.670881 ], [ 5.097656, -70.670881 ], [ 5.097656, -70.612614 ], [ 5.449219, -70.612614 ], [ 5.449219, -70.554179 ], [ 5.800781, -70.554179 ], [ 5.800781, -70.495574 ], [ 6.152344, -70.495574 ], [ 6.152344, -70.436799 ], [ 6.503906, -70.436799 ], [ 6.503906, -70.377854 ], [ 6.855469, -70.377854 ], [ 6.855469, -70.318738 ], [ 7.207031, -70.318738 ], [ 7.207031, -70.199994 ], [ 7.382812, -70.199994 ], [ 7.382812, -70.080562 ], [ 7.558594, -70.080562 ], [ 7.558594, -69.960439 ], [ 7.910156, -69.960439 ], [ 7.910156, -70.020587 ], [ 8.085938, -70.020587 ], [ 8.085938, -70.080562 ], [ 8.261719, -70.080562 ], [ 8.261719, -70.140364 ], [ 8.789062, -70.140364 ], [ 8.789062, -70.080562 ], [ 9.316406, -70.080562 ], [ 9.316406, -70.020587 ], [ 9.492188, -70.020587 ], [ 9.492188, -70.080562 ], [ 9.667969, -70.080562 ], [ 9.667969, -70.199994 ], [ 9.843750, -70.199994 ], [ 9.843750, -70.318738 ], [ 10.019531, -70.318738 ], [ 10.019531, -70.436799 ], [ 10.195312, -70.436799 ], [ 10.195312, -70.554179 ], [ 10.371094, -70.554179 ], [ 10.371094, -70.670881 ], [ 10.546875, -70.670881 ], [ 10.546875, -70.728979 ], [ 10.722656, -70.728979 ], [ 10.722656, -70.844673 ], [ 11.074219, -70.844673 ], [ 11.074219, -70.786910 ], [ 11.425781, -70.786910 ], [ 11.425781, -70.728979 ], [ 11.601562, -70.728979 ], [ 11.601562, -70.670881 ], [ 11.953125, -70.670881 ], [ 11.953125, -70.554179 ], [ 12.128906, -70.554179 ], [ 12.128906, -70.436799 ], [ 12.304688, -70.436799 ], [ 12.304688, -70.318738 ], [ 12.480469, -70.318738 ], [ 12.480469, -70.259452 ], [ 12.656250, -70.259452 ], [ 12.656250, -70.199994 ], [ 12.832031, -70.199994 ], [ 12.832031, -70.140364 ], [ 13.007812, -70.140364 ], [ 13.007812, -70.080562 ], [ 13.183594, -70.080562 ], [ 13.183594, -70.020587 ], [ 13.359375, -70.020587 ], [ 13.359375, -69.960439 ], [ 13.886719, -69.960439 ], [ 13.886719, -70.020587 ], [ 14.765625, -70.020587 ], [ 14.765625, -70.140364 ], [ 14.941406, -70.140364 ], [ 14.941406, -70.318738 ], [ 15.117188, -70.318738 ], [ 15.117188, -70.377854 ], [ 15.292969, -70.377854 ], [ 15.292969, -70.318738 ], [ 15.468750, -70.318738 ], [ 15.468750, -70.199994 ], [ 15.644531, -70.199994 ], [ 15.644531, -70.140364 ], [ 15.820312, -70.140364 ], [ 15.820312, -70.080562 ], [ 15.996094, -70.080562 ], [ 15.996094, -70.020587 ], [ 16.347656, -70.020587 ], [ 16.347656, -69.960439 ], [ 16.875000, -69.960439 ], [ 16.875000, -69.900118 ], [ 19.511719, -69.900118 ], [ 19.511719, -69.960439 ], [ 20.039062, -69.960439 ], [ 20.039062, -70.020587 ], [ 20.742188, -70.020587 ], [ 20.742188, -70.080562 ], [ 21.445312, -70.080562 ], [ 21.445312, -70.140364 ], [ 21.621094, -70.140364 ], [ 21.621094, -70.259452 ], [ 21.796875, -70.259452 ], [ 21.796875, -70.377854 ], [ 21.972656, -70.377854 ], [ 21.972656, -70.436799 ], [ 22.148438, -70.436799 ], [ 22.148438, -70.554179 ], [ 22.324219, -70.554179 ], [ 22.324219, -70.670881 ], [ 22.851562, -70.670881 ], [ 22.851562, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.554179 ], [ 23.554688, -70.554179 ], [ 23.554688, -70.495574 ], [ 26.718750, -70.495574 ], [ 26.718750, -70.436799 ], [ 27.421875, -70.436799 ], [ 27.421875, -70.377854 ], [ 27.949219, -70.377854 ], [ 27.949219, -70.318738 ], [ 28.476562, -70.318738 ], [ 28.476562, -70.259452 ], [ 29.003906, -70.259452 ], [ 29.003906, -70.199994 ], [ 29.355469, -70.199994 ], [ 29.355469, -70.140364 ], [ 29.531250, -70.140364 ], [ 29.531250, -70.080562 ], [ 29.882812, -70.080562 ], [ 29.882812, -70.020587 ], [ 30.058594, -70.020587 ], [ 30.058594, -69.960439 ], [ 30.234375, -69.960439 ], [ 30.234375, -69.900118 ], [ 30.585938, -69.900118 ], [ 30.585938, -69.839622 ], [ 30.937500, -69.839622 ], [ 30.937500, -69.778952 ], [ 31.289062, -69.778952 ], [ 31.289062, -69.718107 ], [ 31.816406, -69.718107 ], [ 31.816406, -69.657086 ], [ 32.167969, -69.657086 ], [ 32.167969, -69.595890 ], [ 32.343750, -69.595890 ], [ 32.343750, -69.534518 ], [ 32.519531, -69.534518 ], [ 32.519531, -69.472969 ], [ 32.695312, -69.472969 ], [ 32.695312, -69.349339 ], [ 32.871094, -69.349339 ], [ 32.871094, -69.162558 ], [ 33.046875, -69.162558 ], [ 33.046875, -68.974164 ], [ 33.222656, -68.974164 ], [ 33.222656, -68.847665 ], [ 33.398438, -68.847665 ], [ 33.398438, -68.784144 ], [ 33.574219, -68.784144 ], [ 33.574219, -68.656555 ], [ 33.750000, -68.656555 ], [ 33.750000, -68.592487 ], [ 33.925781, -68.592487 ], [ 33.925781, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.592487 ], [ 34.628906, -68.592487 ], [ 34.628906, -68.656555 ], [ 34.980469, -68.656555 ], [ 34.980469, -68.784144 ], [ 35.156250, -68.784144 ], [ 35.156250, -68.974164 ], [ 35.332031, -68.974164 ], [ 35.332031, -69.099940 ], [ 35.683594, -69.099940 ], [ 35.683594, -69.162558 ], [ 36.035156, -69.162558 ], [ 36.035156, -69.224997 ], [ 36.914062, -69.224997 ], [ 36.914062, -69.162558 ], [ 37.265625, -69.162558 ], [ 37.265625, -69.224997 ], [ 37.441406, -69.224997 ], [ 37.441406, -69.349339 ], [ 37.617188, -69.349339 ], [ 37.617188, -69.411242 ], [ 37.792969, -69.411242 ], [ 37.792969, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.595890 ], [ 38.144531, -69.595890 ], [ 38.144531, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.718107 ], [ 38.496094, -69.718107 ], [ 38.496094, -69.778952 ], [ 38.847656, -69.778952 ], [ 38.847656, -69.718107 ], [ 39.199219, -69.718107 ], [ 39.199219, -69.657086 ], [ 39.375000, -69.657086 ], [ 39.375000, -69.595890 ], [ 39.726562, -69.595890 ], [ 39.726562, -69.472969 ], [ 39.902344, -69.472969 ], [ 39.902344, -69.224997 ], [ 40.078125, -69.224997 ], [ 40.078125, -69.099940 ], [ 40.253906, -69.099940 ], [ 40.253906, -69.037142 ], [ 40.605469, -69.037142 ], [ 40.605469, -68.974164 ], [ 40.957031, -68.974164 ], [ 40.957031, -68.911005 ], [ 41.132812, -68.911005 ], [ 41.132812, -68.847665 ], [ 41.308594, -68.847665 ], [ 41.308594, -68.784144 ], [ 41.660156, -68.784144 ], [ 41.660156, -68.720441 ], [ 41.835938, -68.720441 ], [ 41.835938, -68.656555 ], [ 42.011719, -68.656555 ], [ 42.011719, -68.592487 ], [ 42.363281, -68.592487 ], [ 42.363281, -68.528235 ], [ 42.714844, -68.528235 ], [ 42.714844, -68.463800 ], [ 43.242188, -68.463800 ], [ 43.242188, -68.399180 ], [ 43.593750, -68.399180 ], [ 43.593750, -68.334376 ], [ 43.945312, -68.334376 ], [ 43.945312, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.204212 ], [ 44.648438, -68.204212 ], [ 44.648438, -68.138852 ], [ 44.824219, -68.138852 ], [ 44.824219, -68.073305 ], [ 45.000000, -68.073305 ], [ 45.000000, -68.007571 ], [ 45.175781, -68.007571 ], [ 45.175781, -67.941650 ], [ 45.527344, -67.941650 ], [ 45.527344, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -67.809245 ], [ 45.878906, -79.335219 ], [ -0.878906, -79.335219 ], [ -0.878906, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.703125, -71.300793 ], [ -0.527344, -71.300793 ], [ -0.527344, -71.524909 ], [ -0.351562, -71.524909 ], [ -0.351562, -71.635993 ], [ -0.175781, -71.635993 ], [ -0.175781, -71.580532 ], [ 0.000000, -71.580532 ], [ 0.000000, -71.524909 ], [ 0.175781, -71.524909 ], [ 0.175781, -71.469124 ], [ 0.351562, -71.469124 ], [ 0.351562, -71.413177 ], [ 0.527344, -71.413177 ], [ 0.527344, -71.357067 ], [ 0.703125, -71.357067 ], [ 0.703125, -71.300793 ], [ 0.878906, -71.300793 ], [ 0.878906, -71.244356 ], [ 1.230469, -71.244356 ], [ 1.230469, -71.187754 ], [ 1.406250, -71.187754 ], [ 1.406250, -71.130988 ], [ 1.757812, -71.130988 ], [ 1.757812, -71.074056 ], [ 2.109375, -71.074056 ], [ 2.109375, -71.016960 ], [ 2.812500, -71.016960 ], [ 2.812500, -70.959697 ], [ 3.339844, -70.959697 ], [ 3.339844, -70.902268 ], [ 3.867188, -70.902268 ], [ 3.867188, -70.844673 ], [ 4.218750, -70.844673 ], [ 4.218750, -70.786910 ], [ 4.570312, -70.786910 ], [ 4.570312, -70.728979 ], [ 4.746094, -70.728979 ], [ 4.746094, -70.670881 ], [ 5.097656, -70.670881 ], [ 5.097656, -70.612614 ], [ 5.449219, -70.612614 ], [ 5.449219, -70.554179 ], [ 5.800781, -70.554179 ], [ 5.800781, -70.495574 ], [ 6.152344, -70.495574 ], [ 6.152344, -70.436799 ], [ 6.328125, -70.436799 ], [ 6.328125, -70.377854 ], [ 6.503906, -70.377854 ], [ 6.503906, -70.318738 ], [ 6.855469, -70.318738 ], [ 6.855469, -70.259452 ], [ 7.031250, -70.259452 ], [ 7.031250, -70.199994 ], [ 7.207031, -70.199994 ], [ 7.207031, -70.080562 ], [ 7.382812, -70.080562 ], [ 7.382812, -70.020587 ], [ 7.558594, -70.020587 ], [ 7.558594, -69.900118 ], [ 7.910156, -69.900118 ], [ 7.910156, -69.960439 ], [ 8.085938, -69.960439 ], [ 8.085938, -70.080562 ], [ 8.261719, -70.080562 ], [ 8.261719, -70.140364 ], [ 8.789062, -70.140364 ], [ 8.789062, -70.080562 ], [ 9.140625, -70.080562 ], [ 9.140625, -70.020587 ], [ 9.667969, -70.020587 ], [ 9.667969, -70.140364 ], [ 9.843750, -70.140364 ], [ 9.843750, -70.259452 ], [ 10.019531, -70.259452 ], [ 10.019531, -70.377854 ], [ 10.195312, -70.377854 ], [ 10.195312, -70.495574 ], [ 10.371094, -70.495574 ], [ 10.371094, -70.612614 ], [ 10.546875, -70.612614 ], [ 10.546875, -70.728979 ], [ 10.722656, -70.728979 ], [ 10.722656, -70.786910 ], [ 11.074219, -70.786910 ], [ 11.074219, -70.728979 ], [ 11.425781, -70.728979 ], [ 11.425781, -70.670881 ], [ 11.777344, -70.670881 ], [ 11.777344, -70.612614 ], [ 11.953125, -70.612614 ], [ 11.953125, -70.554179 ], [ 12.128906, -70.554179 ], [ 12.128906, -70.318738 ], [ 12.304688, -70.318738 ], [ 12.304688, -70.199994 ], [ 12.480469, -70.199994 ], [ 12.480469, -70.140364 ], [ 12.832031, -70.140364 ], [ 12.832031, -70.080562 ], [ 13.007812, -70.080562 ], [ 13.007812, -70.020587 ], [ 13.359375, -70.020587 ], [ 13.359375, -69.960439 ], [ 13.886719, -69.960439 ], [ 13.886719, -70.020587 ], [ 14.589844, -70.020587 ], [ 14.589844, -70.080562 ], [ 14.765625, -70.080562 ], [ 14.765625, -70.199994 ], [ 14.941406, -70.199994 ], [ 14.941406, -70.318738 ], [ 15.117188, -70.318738 ], [ 15.117188, -70.377854 ], [ 15.292969, -70.377854 ], [ 15.292969, -70.259452 ], [ 15.468750, -70.259452 ], [ 15.468750, -70.199994 ], [ 15.644531, -70.199994 ], [ 15.644531, -70.080562 ], [ 15.820312, -70.080562 ], [ 15.820312, -70.020587 ], [ 16.171875, -70.020587 ], [ 16.171875, -69.960439 ], [ 16.699219, -69.960439 ], [ 16.699219, -69.900118 ], [ 17.578125, -69.900118 ], [ 17.578125, -69.839622 ], [ 19.335938, -69.839622 ], [ 19.335938, -69.900118 ], [ 19.863281, -69.900118 ], [ 19.863281, -69.960439 ], [ 20.742188, -69.960439 ], [ 20.742188, -70.020587 ], [ 21.445312, -70.020587 ], [ 21.445312, -70.140364 ], [ 21.621094, -70.140364 ], [ 21.621094, -70.318738 ], [ 21.796875, -70.318738 ], [ 21.796875, -70.436799 ], [ 21.972656, -70.436799 ], [ 21.972656, -70.495574 ], [ 22.148438, -70.495574 ], [ 22.148438, -70.612614 ], [ 22.324219, -70.612614 ], [ 22.324219, -70.670881 ], [ 22.851562, -70.670881 ], [ 22.851562, -70.612614 ], [ 23.203125, -70.612614 ], [ 23.203125, -70.554179 ], [ 23.554688, -70.554179 ], [ 23.554688, -70.495574 ], [ 24.257812, -70.495574 ], [ 24.257812, -70.436799 ], [ 27.421875, -70.436799 ], [ 27.421875, -70.377854 ], [ 27.773438, -70.377854 ], [ 27.773438, -70.318738 ], [ 28.300781, -70.318738 ], [ 28.300781, -70.259452 ], [ 28.828125, -70.259452 ], [ 28.828125, -70.199994 ], [ 29.179688, -70.199994 ], [ 29.179688, -70.140364 ], [ 29.355469, -70.140364 ], [ 29.355469, -70.080562 ], [ 29.531250, -70.080562 ], [ 29.531250, -70.020587 ], [ 29.707031, -70.020587 ], [ 29.707031, -69.960439 ], [ 29.882812, -69.960439 ], [ 29.882812, -69.900118 ], [ 30.234375, -69.900118 ], [ 30.234375, -69.839622 ], [ 30.585938, -69.839622 ], [ 30.585938, -69.778952 ], [ 30.937500, -69.778952 ], [ 30.937500, -69.718107 ], [ 31.640625, -69.718107 ], [ 31.640625, -69.657086 ], [ 32.167969, -69.657086 ], [ 32.167969, -69.595890 ], [ 32.343750, -69.595890 ], [ 32.343750, -69.472969 ], [ 32.519531, -69.472969 ], [ 32.519531, -69.411242 ], [ 32.695312, -69.411242 ], [ 32.695312, -69.287257 ], [ 32.871094, -69.287257 ], [ 32.871094, -69.099940 ], [ 33.046875, -69.099940 ], [ 33.046875, -68.911005 ], [ 33.222656, -68.911005 ], [ 33.222656, -68.784144 ], [ 33.398438, -68.784144 ], [ 33.398438, -68.656555 ], [ 33.574219, -68.656555 ], [ 33.574219, -68.528235 ], [ 34.101562, -68.528235 ], [ 34.101562, -68.592487 ], [ 34.453125, -68.592487 ], [ 34.453125, -68.656555 ], [ 34.804688, -68.656555 ], [ 34.804688, -68.784144 ], [ 34.980469, -68.784144 ], [ 34.980469, -68.911005 ], [ 35.156250, -68.911005 ], [ 35.156250, -69.037142 ], [ 35.332031, -69.037142 ], [ 35.332031, -69.099940 ], [ 35.683594, -69.099940 ], [ 35.683594, -69.162558 ], [ 35.859375, -69.162558 ], [ 35.859375, -69.224997 ], [ 36.738281, -69.224997 ], [ 36.738281, -69.162558 ], [ 37.089844, -69.162558 ], [ 37.089844, -69.224997 ], [ 37.265625, -69.224997 ], [ 37.265625, -69.287257 ], [ 37.441406, -69.287257 ], [ 37.441406, -69.411242 ], [ 37.617188, -69.411242 ], [ 37.617188, -69.472969 ], [ 37.792969, -69.472969 ], [ 37.792969, -69.534518 ], [ 37.968750, -69.534518 ], [ 37.968750, -69.595890 ], [ 38.144531, -69.595890 ], [ 38.144531, -69.657086 ], [ 38.320312, -69.657086 ], [ 38.320312, -69.718107 ], [ 38.847656, -69.718107 ], [ 38.847656, -69.657086 ], [ 39.199219, -69.657086 ], [ 39.199219, -69.595890 ], [ 39.550781, -69.595890 ], [ 39.550781, -69.472969 ], [ 39.726562, -69.472969 ], [ 39.726562, -69.224997 ], [ 39.902344, -69.224997 ], [ 39.902344, -69.099940 ], [ 40.078125, -69.099940 ], [ 40.078125, -69.037142 ], [ 40.429688, -69.037142 ], [ 40.429688, -68.974164 ], [ 40.781250, -68.974164 ], [ 40.781250, -68.911005 ], [ 40.957031, -68.911005 ], [ 40.957031, -68.847665 ], [ 41.132812, -68.847665 ], [ 41.132812, -68.784144 ], [ 41.484375, -68.784144 ], [ 41.484375, -68.720441 ], [ 41.660156, -68.720441 ], [ 41.660156, -68.656555 ], [ 41.835938, -68.656555 ], [ 41.835938, -68.592487 ], [ 42.187500, -68.592487 ], [ 42.187500, -68.528235 ], [ 42.714844, -68.528235 ], [ 42.714844, -68.463800 ], [ 43.066406, -68.463800 ], [ 43.066406, -68.399180 ], [ 43.417969, -68.399180 ], [ 43.417969, -68.334376 ], [ 43.593750, -68.334376 ], [ 43.593750, -68.269387 ], [ 43.945312, -68.269387 ], [ 43.945312, -68.204212 ], [ 44.121094, -68.204212 ], [ 44.121094, -68.138852 ], [ 44.472656, -68.138852 ], [ 44.472656, -68.073305 ], [ 44.824219, -68.073305 ], [ 44.824219, -68.007571 ], [ 45.000000, -68.007571 ], [ 45.000000, -67.941650 ], [ 45.351562, -67.941650 ], [ 45.351562, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 34.453125, 0.703107 ], [ 34.277344, 0.703107 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 33.046875, -0.878872 ], [ 33.046875, -1.054628 ], [ 30.410156, -1.054628 ], [ 30.410156, -1.230374 ], [ 30.058594, -1.230374 ], [ 30.058594, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.277344, 0.878872 ], [ 34.277344, 0.703107 ], [ 34.101562, 0.703107 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, 0.175781 ], [ 33.750000, 0.175781 ], [ 33.750000, -0.878872 ], [ 30.761719, -0.878872 ], [ 30.761719, -1.054628 ], [ 30.410156, -1.054628 ], [ 30.410156, -1.230374 ], [ 30.058594, -1.230374 ], [ 30.058594, -1.406109 ], [ 29.531250, -1.406109 ], [ 29.531250, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, 0.878872 ], [ 34.277344, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.957031, 0.878872 ], [ 40.957031, -1.054628 ], [ 41.132812, -1.054628 ], [ 41.132812, -1.230374 ], [ 41.308594, -1.230374 ], [ 41.308594, -1.581830 ], [ 41.484375, -1.581830 ], [ 41.484375, -1.757537 ], [ 41.660156, -1.757537 ], [ 41.660156, -1.933227 ], [ 41.308594, -1.933227 ], [ 41.308594, -2.108899 ], [ 40.957031, -2.108899 ], [ 40.957031, -2.284551 ], [ 40.781250, -2.284551 ], [ 40.781250, -2.460181 ], [ 40.605469, -2.460181 ], [ 40.605469, -2.635789 ], [ 40.253906, -2.635789 ], [ 40.253906, -2.986927 ], [ 40.078125, -2.986927 ], [ 40.078125, -3.513421 ], [ 39.902344, -3.513421 ], [ 39.902344, -3.688855 ], [ 39.726562, -3.688855 ], [ 39.726562, -4.039618 ], [ 39.550781, -4.039618 ], [ 39.550781, -4.565474 ], [ 39.375000, -4.565474 ], [ 39.375000, -4.740675 ], [ 39.023438, -4.740675 ], [ 39.023438, -4.565474 ], [ 38.671875, -4.565474 ], [ 38.671875, -4.390229 ], [ 38.496094, -4.390229 ], [ 38.496094, -4.214943 ], [ 38.320312, -4.214943 ], [ 38.320312, -4.039618 ], [ 37.968750, -4.039618 ], [ 37.968750, -3.864255 ], [ 37.792969, -3.864255 ], [ 37.792969, -3.513421 ], [ 37.617188, -3.513421 ], [ 37.617188, -3.162456 ], [ 37.441406, -3.162456 ], [ 37.441406, -2.986927 ], [ 37.089844, -2.986927 ], [ 37.089844, -2.811371 ], [ 36.738281, -2.811371 ], [ 36.738281, -2.635789 ], [ 36.562500, -2.635789 ], [ 36.562500, -2.460181 ], [ 36.210938, -2.460181 ], [ 36.210938, -2.284551 ], [ 35.859375, -2.284551 ], [ 35.859375, -2.108899 ], [ 35.683594, -2.108899 ], [ 35.683594, -1.933227 ], [ 35.332031, -1.933227 ], [ 35.332031, -1.757537 ], [ 34.980469, -1.757537 ], [ 34.980469, -1.581830 ], [ 34.804688, -1.581830 ], [ 34.804688, -1.406109 ], [ 34.453125, -1.406109 ], [ 34.453125, -1.230374 ], [ 34.101562, -1.230374 ], [ 34.101562, -1.054628 ], [ 33.925781, -1.054628 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.703107 ], [ 34.453125, 0.703107 ], [ 34.453125, 0.878872 ], [ 40.957031, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.957031, 0.878872 ], [ 40.957031, -0.878872 ], [ 41.132812, -0.878872 ], [ 41.132812, -1.230374 ], [ 41.308594, -1.230374 ], [ 41.308594, -1.581830 ], [ 41.484375, -1.581830 ], [ 41.484375, -1.757537 ], [ 41.132812, -1.757537 ], [ 41.132812, -1.933227 ], [ 40.781250, -1.933227 ], [ 40.781250, -2.284551 ], [ 40.605469, -2.284551 ], [ 40.605469, -2.460181 ], [ 40.253906, -2.460181 ], [ 40.253906, -2.811371 ], [ 40.078125, -2.811371 ], [ 40.078125, -3.337954 ], [ 39.902344, -3.337954 ], [ 39.902344, -3.513421 ], [ 39.726562, -3.513421 ], [ 39.726562, -3.864255 ], [ 39.550781, -3.864255 ], [ 39.550781, -4.390229 ], [ 39.375000, -4.390229 ], [ 39.375000, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.390229 ], [ 38.671875, -4.390229 ], [ 38.671875, -4.214943 ], [ 38.496094, -4.214943 ], [ 38.496094, -4.039618 ], [ 38.144531, -4.039618 ], [ 38.144531, -3.864255 ], [ 37.968750, -3.864255 ], [ 37.968750, -3.688855 ], [ 37.617188, -3.688855 ], [ 37.617188, -2.986927 ], [ 37.441406, -2.986927 ], [ 37.441406, -2.811371 ], [ 37.089844, -2.811371 ], [ 37.089844, -2.635789 ], [ 36.738281, -2.635789 ], [ 36.738281, -2.460181 ], [ 36.386719, -2.460181 ], [ 36.386719, -2.284551 ], [ 36.035156, -2.284551 ], [ 36.035156, -2.108899 ], [ 35.683594, -2.108899 ], [ 35.683594, -1.933227 ], [ 35.332031, -1.933227 ], [ 35.332031, -1.757537 ], [ 34.980469, -1.757537 ], [ 34.980469, -1.581830 ], [ 34.628906, -1.581830 ], [ 34.628906, -1.406109 ], [ 34.277344, -1.406109 ], [ 34.277344, -1.230374 ], [ 33.925781, -1.230374 ], [ 33.925781, -1.054628 ], [ 33.750000, -1.054628 ], [ 33.750000, 0.175781 ], [ 33.925781, 0.175781 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.703107 ], [ 34.277344, 0.703107 ], [ 34.277344, 0.878872 ], [ 40.957031, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 42.011719, -0.878872 ], [ 42.011719, -1.230374 ], [ 41.835938, -1.230374 ], [ 41.835938, -1.581830 ], [ 41.660156, -1.581830 ], [ 41.660156, -1.757537 ], [ 41.484375, -1.757537 ], [ 41.484375, -1.581830 ], [ 41.308594, -1.581830 ], [ 41.308594, -1.230374 ], [ 41.132812, -1.230374 ], [ 41.132812, -1.054628 ], [ 40.957031, -1.054628 ], [ 40.957031, 0.878872 ], [ 43.769531, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 42.011719, -0.878872 ], [ 42.011719, -1.054628 ], [ 41.835938, -1.054628 ], [ 41.835938, -1.406109 ], [ 41.660156, -1.406109 ], [ 41.660156, -1.581830 ], [ 41.308594, -1.581830 ], [ 41.308594, -1.230374 ], [ 41.132812, -1.230374 ], [ 41.132812, -0.878872 ], [ 40.957031, -0.878872 ], [ 40.957031, 0.878872 ], [ 43.769531, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.238281, 0.878872 ], [ 14.238281, 0.527336 ], [ 14.062500, 0.527336 ], [ 14.062500, 0.175781 ], [ 13.886719, 0.175781 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -1.054628 ], [ 14.414062, -1.054628 ], [ 14.414062, -1.757537 ], [ 14.238281, -1.757537 ], [ 14.238281, -2.284551 ], [ 14.062500, -2.284551 ], [ 14.062500, -2.460181 ], [ 13.007812, -2.460181 ], [ 13.007812, -2.284551 ], [ 12.832031, -2.284551 ], [ 12.832031, -2.108899 ], [ 12.656250, -2.108899 ], [ 12.656250, -2.284551 ], [ 12.480469, -2.284551 ], [ 12.480469, -2.460181 ], [ 11.777344, -2.460181 ], [ 11.777344, -2.635789 ], [ 11.601562, -2.635789 ], [ 11.601562, -2.811371 ], [ 11.425781, -2.811371 ], [ 11.425781, -2.986927 ], [ 11.601562, -2.986927 ], [ 11.601562, -3.337954 ], [ 11.777344, -3.337954 ], [ 11.777344, -3.688855 ], [ 11.601562, -3.688855 ], [ 11.601562, -3.864255 ], [ 11.250000, -3.864255 ], [ 11.250000, -4.039618 ], [ 10.898438, -4.039618 ], [ 10.898438, -3.864255 ], [ 10.722656, -3.864255 ], [ 10.722656, -3.688855 ], [ 10.546875, -3.688855 ], [ 10.546875, -3.513421 ], [ 10.371094, -3.513421 ], [ 10.371094, -3.337954 ], [ 10.195312, -3.337954 ], [ 10.195312, -3.162456 ], [ 10.019531, -3.162456 ], [ 10.019531, -2.986927 ], [ 9.843750, -2.986927 ], [ 9.843750, -2.635789 ], [ 9.667969, -2.635789 ], [ 9.667969, -2.284551 ], [ 9.492188, -2.284551 ], [ 9.492188, -2.108899 ], [ 9.316406, -2.108899 ], [ 9.316406, -1.757537 ], [ 9.140625, -1.757537 ], [ 9.140625, -1.581830 ], [ 8.964844, -1.581830 ], [ 8.964844, -1.230374 ], [ 8.789062, -1.230374 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.703107 ], [ 8.964844, -0.351560 ], [ 9.140625, -0.351560 ], [ 9.140625, 0.000000 ], [ 9.316406, 0.000000 ], [ 9.316406, 0.527336 ], [ 9.492188, 0.527336 ], [ 9.492188, 0.878872 ], [ 14.238281, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.062500, 0.878872 ], [ 14.062500, 0.703107 ], [ 13.886719, 0.703107 ], [ 13.886719, 0.351560 ], [ 13.710938, 0.351560 ], [ 13.710938, 0.000000 ], [ 13.886719, 0.000000 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -0.878872 ], [ 14.414062, -0.878872 ], [ 14.414062, -1.581830 ], [ 14.238281, -1.581830 ], [ 14.238281, -2.108899 ], [ 14.062500, -2.108899 ], [ 14.062500, -2.460181 ], [ 13.359375, -2.460181 ], [ 13.359375, -2.284551 ], [ 12.832031, -2.284551 ], [ 12.832031, -2.108899 ], [ 12.480469, -2.108899 ], [ 12.480469, -2.284551 ], [ 12.304688, -2.284551 ], [ 12.304688, -2.460181 ], [ 11.777344, -2.460181 ], [ 11.777344, -2.635789 ], [ 11.425781, -2.635789 ], [ 11.425781, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -3.162456 ], [ 11.777344, -3.162456 ], [ 11.777344, -3.513421 ], [ 11.601562, -3.513421 ], [ 11.601562, -3.688855 ], [ 11.250000, -3.688855 ], [ 11.250000, -3.864255 ], [ 10.898438, -3.864255 ], [ 10.898438, -3.688855 ], [ 10.722656, -3.688855 ], [ 10.722656, -3.513421 ], [ 10.546875, -3.513421 ], [ 10.546875, -3.337954 ], [ 10.371094, -3.337954 ], [ 10.371094, -3.162456 ], [ 10.195312, -3.162456 ], [ 10.195312, -2.986927 ], [ 10.019531, -2.986927 ], [ 10.019531, -2.811371 ], [ 9.843750, -2.811371 ], [ 9.843750, -2.635789 ], [ 9.667969, -2.635789 ], [ 9.667969, -2.460181 ], [ 9.492188, -2.460181 ], [ 9.492188, -2.284551 ], [ 9.316406, -2.284551 ], [ 9.316406, -1.933227 ], [ 9.140625, -1.933227 ], [ 9.140625, -1.581830 ], [ 8.964844, -1.581830 ], [ 8.964844, -1.230374 ], [ 8.789062, -1.230374 ], [ 8.789062, -0.527336 ], [ 8.964844, -0.527336 ], [ 8.964844, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 0.527336 ], [ 9.316406, 0.527336 ], [ 9.316406, 0.878872 ], [ 14.062500, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.753906, 0.878872 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.878872 ], [ 17.402344, -0.878872 ], [ 17.402344, -1.054628 ], [ 17.050781, -1.054628 ], [ 17.050781, -1.230374 ], [ 16.875000, -1.230374 ], [ 16.875000, -1.406109 ], [ 16.699219, -1.406109 ], [ 16.699219, -1.581830 ], [ 16.523438, -1.581830 ], [ 16.523438, -1.757537 ], [ 16.347656, -1.757537 ], [ 16.347656, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -2.460181 ], [ 15.996094, -2.460181 ], [ 15.996094, -3.688855 ], [ 15.820312, -3.688855 ], [ 15.820312, -4.039618 ], [ 15.644531, -4.039618 ], [ 15.644531, -4.214943 ], [ 15.292969, -4.214943 ], [ 15.292969, -4.390229 ], [ 15.117188, -4.390229 ], [ 15.117188, -4.565474 ], [ 14.941406, -4.565474 ], [ 14.941406, -4.740675 ], [ 14.765625, -4.740675 ], [ 14.765625, -4.915833 ], [ 14.238281, -4.915833 ], [ 14.238281, -4.740675 ], [ 14.062500, -4.740675 ], [ 14.062500, -4.565474 ], [ 13.535156, -4.565474 ], [ 13.535156, -4.740675 ], [ 13.359375, -4.740675 ], [ 13.359375, -4.915833 ], [ 13.007812, -4.915833 ], [ 13.007812, -4.740675 ], [ 12.832031, -4.740675 ], [ 12.832031, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.740675 ], [ 12.128906, -4.740675 ], [ 12.128906, -5.090944 ], [ 11.777344, -5.090944 ], [ 11.777344, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.565474 ], [ 11.425781, -4.565474 ], [ 11.425781, -4.390229 ], [ 11.250000, -4.390229 ], [ 11.250000, -4.214943 ], [ 11.074219, -4.214943 ], [ 11.074219, -4.039618 ], [ 11.250000, -4.039618 ], [ 11.250000, -3.864255 ], [ 11.601562, -3.864255 ], [ 11.601562, -3.688855 ], [ 11.777344, -3.688855 ], [ 11.777344, -3.337954 ], [ 11.601562, -3.337954 ], [ 11.601562, -2.986927 ], [ 11.425781, -2.986927 ], [ 11.425781, -2.811371 ], [ 11.601562, -2.811371 ], [ 11.601562, -2.635789 ], [ 11.777344, -2.635789 ], [ 11.777344, -2.460181 ], [ 12.480469, -2.460181 ], [ 12.480469, -2.284551 ], [ 12.656250, -2.284551 ], [ 12.656250, -2.108899 ], [ 12.832031, -2.108899 ], [ 12.832031, -2.284551 ], [ 13.007812, -2.284551 ], [ 13.007812, -2.460181 ], [ 14.062500, -2.460181 ], [ 14.062500, -2.284551 ], [ 14.238281, -2.284551 ], [ 14.238281, -1.757537 ], [ 14.414062, -1.757537 ], [ 14.414062, -1.054628 ], [ 14.238281, -1.054628 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.175781 ], [ 14.062500, 0.175781 ], [ 14.062500, 0.527336 ], [ 14.238281, 0.527336 ], [ 14.238281, 0.878872 ], [ 17.753906, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.753906, 0.878872 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.527336 ], [ 17.402344, -0.527336 ], [ 17.402344, -0.878872 ], [ 17.050781, -0.878872 ], [ 17.050781, -1.054628 ], [ 16.699219, -1.054628 ], [ 16.699219, -1.230374 ], [ 16.523438, -1.230374 ], [ 16.523438, -1.581830 ], [ 16.347656, -1.581830 ], [ 16.347656, -1.757537 ], [ 16.171875, -1.757537 ], [ 16.171875, -2.108899 ], [ 15.996094, -2.108899 ], [ 15.996094, -2.460181 ], [ 15.820312, -2.460181 ], [ 15.820312, -3.162456 ], [ 15.996094, -3.162456 ], [ 15.996094, -3.688855 ], [ 15.644531, -3.688855 ], [ 15.644531, -3.864255 ], [ 15.468750, -3.864255 ], [ 15.468750, -4.039618 ], [ 15.292969, -4.039618 ], [ 15.292969, -4.214943 ], [ 15.117188, -4.214943 ], [ 15.117188, -4.390229 ], [ 14.941406, -4.390229 ], [ 14.941406, -4.565474 ], [ 14.765625, -4.565474 ], [ 14.765625, -4.740675 ], [ 14.589844, -4.740675 ], [ 14.589844, -4.915833 ], [ 14.062500, -4.915833 ], [ 14.062500, -4.390229 ], [ 13.535156, -4.390229 ], [ 13.535156, -4.565474 ], [ 13.359375, -4.565474 ], [ 13.359375, -4.740675 ], [ 12.656250, -4.740675 ], [ 12.656250, -4.565474 ], [ 12.304688, -4.565474 ], [ 12.304688, -4.740675 ], [ 11.953125, -4.740675 ], [ 11.953125, -4.915833 ], [ 11.601562, -4.915833 ], [ 11.601562, -4.565474 ], [ 11.425781, -4.565474 ], [ 11.425781, -4.390229 ], [ 11.250000, -4.390229 ], [ 11.250000, -4.039618 ], [ 11.074219, -4.039618 ], [ 11.074219, -3.864255 ], [ 11.250000, -3.864255 ], [ 11.250000, -3.688855 ], [ 11.601562, -3.688855 ], [ 11.601562, -3.513421 ], [ 11.777344, -3.513421 ], [ 11.777344, -3.162456 ], [ 11.601562, -3.162456 ], [ 11.601562, -2.811371 ], [ 11.425781, -2.811371 ], [ 11.425781, -2.635789 ], [ 11.777344, -2.635789 ], [ 11.777344, -2.460181 ], [ 12.304688, -2.460181 ], [ 12.304688, -2.284551 ], [ 12.480469, -2.284551 ], [ 12.480469, -2.108899 ], [ 12.832031, -2.108899 ], [ 12.832031, -2.284551 ], [ 13.359375, -2.284551 ], [ 13.359375, -2.460181 ], [ 14.062500, -2.460181 ], [ 14.062500, -2.108899 ], [ 14.238281, -2.108899 ], [ 14.238281, -1.581830 ], [ 14.414062, -1.581830 ], [ 14.414062, -0.878872 ], [ 14.238281, -0.878872 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, 0.351560 ], [ 13.886719, 0.351560 ], [ 13.886719, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 0.878872 ], [ 17.753906, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.058594, 0.878872 ], [ 30.058594, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, -0.527336 ], [ 29.531250, -0.527336 ], [ 29.531250, -1.581830 ], [ 29.355469, -1.581830 ], [ 29.355469, -1.933227 ], [ 29.179688, -1.933227 ], [ 29.179688, -2.635789 ], [ 29.003906, -2.635789 ], [ 29.003906, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -3.337954 ], [ 29.355469, -3.337954 ], [ 29.355469, -5.090944 ], [ 29.531250, -5.090944 ], [ 29.531250, -5.790897 ], [ 29.355469, -5.790897 ], [ 29.355469, -6.140555 ], [ 29.531250, -6.140555 ], [ 29.531250, -6.489983 ], [ 29.707031, -6.489983 ], [ 29.707031, -6.664608 ], [ 29.882812, -6.664608 ], [ 29.882812, -6.839170 ], [ 30.058594, -6.839170 ], [ 30.058594, -7.013668 ], [ 30.234375, -7.013668 ], [ 30.234375, -7.362467 ], [ 30.410156, -7.362467 ], [ 30.410156, -7.710992 ], [ 30.585938, -7.710992 ], [ 30.585938, -8.233237 ], [ 30.761719, -8.233237 ], [ 30.761719, -8.407168 ], [ 30.410156, -8.407168 ], [ 30.410156, -8.233237 ], [ 29.882812, -8.233237 ], [ 29.882812, -8.407168 ], [ 29.003906, -8.407168 ], [ 29.003906, -8.581021 ], [ 28.652344, -8.581021 ], [ 28.652344, -8.928487 ], [ 28.476562, -8.928487 ], [ 28.476562, -9.449062 ], [ 28.652344, -9.449062 ], [ 28.652344, -10.314919 ], [ 28.476562, -10.314919 ], [ 28.476562, -11.350797 ], [ 28.300781, -11.350797 ], [ 28.300781, -12.039321 ], [ 28.652344, -12.039321 ], [ 28.652344, -12.211180 ], [ 29.003906, -12.211180 ], [ 29.003906, -12.382928 ], [ 29.531250, -12.382928 ], [ 29.531250, -12.726084 ], [ 29.707031, -12.726084 ], [ 29.707031, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -13.068777 ], [ 28.652344, -13.068777 ], [ 28.652344, -12.897489 ], [ 28.476562, -12.897489 ], [ 28.476562, -12.726084 ], [ 28.300781, -12.726084 ], [ 28.300781, -12.382928 ], [ 28.125000, -12.382928 ], [ 28.125000, -12.211180 ], [ 27.421875, -12.211180 ], [ 27.421875, -11.867351 ], [ 27.246094, -11.867351 ], [ 27.246094, -11.695273 ], [ 26.894531, -11.695273 ], [ 26.894531, -11.867351 ], [ 25.664062, -11.867351 ], [ 25.664062, -11.523088 ], [ 25.488281, -11.523088 ], [ 25.488281, -11.350797 ], [ 24.960938, -11.350797 ], [ 24.960938, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -11.005904 ], [ 23.554688, -11.005904 ], [ 23.554688, -10.833306 ], [ 23.203125, -10.833306 ], [ 23.203125, -11.005904 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.968851 ], [ 21.972656, -9.968851 ], [ 21.972656, -9.622414 ], [ 21.796875, -9.622414 ], [ 21.796875, -8.581021 ], [ 21.972656, -8.581021 ], [ 21.972656, -8.059230 ], [ 21.796875, -8.059230 ], [ 21.796875, -7.362467 ], [ 20.566406, -7.362467 ], [ 20.566406, -7.013668 ], [ 20.039062, -7.013668 ], [ 20.039062, -7.188101 ], [ 19.335938, -7.188101 ], [ 19.335938, -7.536764 ], [ 19.160156, -7.536764 ], [ 19.160156, -7.885147 ], [ 18.984375, -7.885147 ], [ 18.984375, -8.059230 ], [ 18.632812, -8.059230 ], [ 18.632812, -7.885147 ], [ 18.457031, -7.885147 ], [ 18.457031, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 17.050781, -7.710992 ], [ 17.050781, -7.362467 ], [ 16.875000, -7.362467 ], [ 16.875000, -7.188101 ], [ 16.699219, -7.188101 ], [ 16.699219, -6.839170 ], [ 16.523438, -6.839170 ], [ 16.523438, -6.315299 ], [ 16.347656, -6.315299 ], [ 16.347656, -5.790897 ], [ 13.359375, -5.790897 ], [ 13.359375, -5.965754 ], [ 12.656250, -5.965754 ], [ 12.656250, -6.140555 ], [ 12.304688, -6.140555 ], [ 12.304688, -5.965754 ], [ 12.128906, -5.965754 ], [ 12.128906, -5.790897 ], [ 12.480469, -5.790897 ], [ 12.480469, -5.090944 ], [ 12.656250, -5.090944 ], [ 12.656250, -4.915833 ], [ 13.359375, -4.915833 ], [ 13.359375, -4.740675 ], [ 13.535156, -4.740675 ], [ 13.535156, -4.565474 ], [ 14.062500, -4.565474 ], [ 14.062500, -4.740675 ], [ 14.238281, -4.740675 ], [ 14.238281, -4.915833 ], [ 14.765625, -4.915833 ], [ 14.765625, -4.740675 ], [ 14.941406, -4.740675 ], [ 14.941406, -4.565474 ], [ 15.117188, -4.565474 ], [ 15.117188, -4.390229 ], [ 15.292969, -4.390229 ], [ 15.292969, -4.214943 ], [ 15.644531, -4.214943 ], [ 15.644531, -4.039618 ], [ 15.820312, -4.039618 ], [ 15.820312, -3.688855 ], [ 15.996094, -3.688855 ], [ 15.996094, -2.460181 ], [ 16.171875, -2.460181 ], [ 16.171875, -2.108899 ], [ 16.347656, -2.108899 ], [ 16.347656, -1.757537 ], [ 16.523438, -1.757537 ], [ 16.523438, -1.581830 ], [ 16.699219, -1.581830 ], [ 16.699219, -1.406109 ], [ 16.875000, -1.406109 ], [ 16.875000, -1.230374 ], [ 17.050781, -1.230374 ], [ 17.050781, -1.054628 ], [ 17.402344, -1.054628 ], [ 17.402344, -0.878872 ], [ 17.578125, -0.878872 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 0.878872 ], [ 30.058594, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.882812, 0.878872 ], [ 29.882812, 0.703107 ], [ 29.707031, 0.703107 ], [ 29.707031, -0.351560 ], [ 29.531250, -0.351560 ], [ 29.531250, -1.406109 ], [ 29.355469, -1.406109 ], [ 29.355469, -1.581830 ], [ 29.179688, -1.581830 ], [ 29.179688, -2.284551 ], [ 29.003906, -2.284551 ], [ 29.003906, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -4.915833 ], [ 29.355469, -4.915833 ], [ 29.355469, -6.140555 ], [ 29.531250, -6.140555 ], [ 29.531250, -6.664608 ], [ 29.707031, -6.664608 ], [ 29.707031, -6.839170 ], [ 29.882812, -6.839170 ], [ 29.882812, -7.013668 ], [ 30.058594, -7.013668 ], [ 30.058594, -7.362467 ], [ 30.234375, -7.362467 ], [ 30.234375, -7.710992 ], [ 30.410156, -7.710992 ], [ 30.410156, -8.059230 ], [ 30.585938, -8.059230 ], [ 30.585938, -8.233237 ], [ 29.707031, -8.233237 ], [ 29.707031, -8.407168 ], [ 28.652344, -8.407168 ], [ 28.652344, -8.581021 ], [ 28.476562, -8.581021 ], [ 28.476562, -8.928487 ], [ 28.300781, -8.928487 ], [ 28.300781, -9.275622 ], [ 28.476562, -9.275622 ], [ 28.476562, -9.449062 ], [ 28.652344, -9.449062 ], [ 28.652344, -10.141932 ], [ 28.476562, -10.141932 ], [ 28.476562, -11.178402 ], [ 28.300781, -11.178402 ], [ 28.300781, -11.867351 ], [ 28.476562, -11.867351 ], [ 28.476562, -12.039321 ], [ 28.828125, -12.039321 ], [ 28.828125, -12.211180 ], [ 29.531250, -12.211180 ], [ 29.531250, -13.239945 ], [ 28.828125, -13.239945 ], [ 28.828125, -13.068777 ], [ 28.652344, -13.068777 ], [ 28.652344, -12.726084 ], [ 28.476562, -12.726084 ], [ 28.476562, -12.554564 ], [ 28.300781, -12.554564 ], [ 28.300781, -12.382928 ], [ 28.125000, -12.382928 ], [ 28.125000, -12.211180 ], [ 27.597656, -12.211180 ], [ 27.597656, -12.039321 ], [ 27.246094, -12.039321 ], [ 27.246094, -11.867351 ], [ 27.070312, -11.867351 ], [ 27.070312, -11.695273 ], [ 26.718750, -11.695273 ], [ 26.718750, -11.867351 ], [ 26.015625, -11.867351 ], [ 26.015625, -11.695273 ], [ 25.488281, -11.695273 ], [ 25.488281, -11.350797 ], [ 25.312500, -11.350797 ], [ 25.312500, -11.178402 ], [ 24.257812, -11.178402 ], [ 24.257812, -10.833306 ], [ 23.203125, -10.833306 ], [ 23.203125, -11.005904 ], [ 22.148438, -11.005904 ], [ 22.148438, -9.795678 ], [ 21.972656, -9.795678 ], [ 21.972656, -9.622414 ], [ 21.796875, -9.622414 ], [ 21.796875, -8.059230 ], [ 21.621094, -8.059230 ], [ 21.621094, -7.188101 ], [ 20.390625, -7.188101 ], [ 20.390625, -7.013668 ], [ 20.566406, -7.013668 ], [ 20.566406, -6.839170 ], [ 20.039062, -6.839170 ], [ 20.039062, -7.013668 ], [ 19.335938, -7.013668 ], [ 19.335938, -7.362467 ], [ 19.160156, -7.362467 ], [ 19.160156, -7.885147 ], [ 18.632812, -7.885147 ], [ 18.632812, -7.710992 ], [ 18.457031, -7.710992 ], [ 18.457031, -7.885147 ], [ 17.929688, -7.885147 ], [ 17.929688, -8.059230 ], [ 17.226562, -8.059230 ], [ 17.226562, -7.710992 ], [ 17.050781, -7.710992 ], [ 17.050781, -7.536764 ], [ 16.875000, -7.536764 ], [ 16.875000, -7.362467 ], [ 16.699219, -7.362467 ], [ 16.699219, -6.839170 ], [ 16.523438, -6.839170 ], [ 16.523438, -6.315299 ], [ 16.347656, -6.315299 ], [ 16.347656, -5.965754 ], [ 16.171875, -5.965754 ], [ 16.171875, -5.790897 ], [ 13.359375, -5.790897 ], [ 13.359375, -5.965754 ], [ 12.128906, -5.965754 ], [ 12.128906, -5.790897 ], [ 12.304688, -5.790897 ], [ 12.304688, -5.090944 ], [ 12.480469, -5.090944 ], [ 12.480469, -4.915833 ], [ 12.832031, -4.915833 ], [ 12.832031, -4.740675 ], [ 13.359375, -4.740675 ], [ 13.359375, -4.565474 ], [ 13.535156, -4.565474 ], [ 13.535156, -4.390229 ], [ 14.062500, -4.390229 ], [ 14.062500, -4.915833 ], [ 14.589844, -4.915833 ], [ 14.589844, -4.740675 ], [ 14.765625, -4.740675 ], [ 14.765625, -4.565474 ], [ 14.941406, -4.565474 ], [ 14.941406, -4.390229 ], [ 15.117188, -4.390229 ], [ 15.117188, -4.214943 ], [ 15.292969, -4.214943 ], [ 15.292969, -4.039618 ], [ 15.468750, -4.039618 ], [ 15.468750, -3.864255 ], [ 15.644531, -3.864255 ], [ 15.644531, -3.688855 ], [ 15.996094, -3.688855 ], [ 15.996094, -3.162456 ], [ 15.820312, -3.162456 ], [ 15.820312, -2.460181 ], [ 15.996094, -2.460181 ], [ 15.996094, -2.108899 ], [ 16.171875, -2.108899 ], [ 16.171875, -1.757537 ], [ 16.347656, -1.757537 ], [ 16.347656, -1.581830 ], [ 16.523438, -1.581830 ], [ 16.523438, -1.230374 ], [ 16.699219, -1.230374 ], [ 16.699219, -1.054628 ], [ 17.050781, -1.054628 ], [ 17.050781, -0.878872 ], [ 17.402344, -0.878872 ], [ 17.402344, -0.527336 ], [ 17.578125, -0.527336 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 0.878872 ], [ 29.882812, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.347656, -5.790897 ], [ 16.347656, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -6.839170 ], [ 16.699219, -6.839170 ], [ 16.699219, -7.188101 ], [ 16.875000, -7.188101 ], [ 16.875000, -7.362467 ], [ 17.050781, -7.362467 ], [ 17.050781, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 18.457031, -8.059230 ], [ 18.457031, -7.885147 ], [ 18.632812, -7.885147 ], [ 18.632812, -8.059230 ], [ 18.984375, -8.059230 ], [ 18.984375, -7.885147 ], [ 19.160156, -7.885147 ], [ 19.160156, -7.536764 ], [ 19.335938, -7.536764 ], [ 19.335938, -7.188101 ], [ 20.039062, -7.188101 ], [ 20.039062, -7.013668 ], [ 20.566406, -7.013668 ], [ 20.566406, -7.362467 ], [ 21.796875, -7.362467 ], [ 21.796875, -8.059230 ], [ 21.972656, -8.059230 ], [ 21.972656, -8.581021 ], [ 21.796875, -8.581021 ], [ 21.796875, -9.622414 ], [ 21.972656, -9.622414 ], [ 21.972656, -9.968851 ], [ 22.148438, -9.968851 ], [ 22.148438, -11.005904 ], [ 23.203125, -11.005904 ], [ 23.203125, -10.833306 ], [ 23.554688, -10.833306 ], [ 23.554688, -11.005904 ], [ 23.906250, -11.005904 ], [ 23.906250, -11.178402 ], [ 24.082031, -11.178402 ], [ 24.082031, -11.523088 ], [ 23.906250, -11.523088 ], [ 23.906250, -12.039321 ], [ 24.082031, -12.039321 ], [ 24.082031, -12.382928 ], [ 23.906250, -12.382928 ], [ 23.906250, -12.726084 ], [ 24.082031, -12.726084 ], [ 24.082031, -12.897489 ], [ 21.972656, -12.897489 ], [ 21.972656, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.636192 ], [ 22.324219, -16.636192 ], [ 22.324219, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -17.140790 ], [ 22.675781, -17.140790 ], [ 22.675781, -17.308688 ], [ 23.027344, -17.308688 ], [ 23.027344, -17.644022 ], [ 22.500000, -17.644022 ], [ 22.500000, -17.811456 ], [ 21.796875, -17.811456 ], [ 21.796875, -17.978733 ], [ 20.039062, -17.978733 ], [ 20.039062, -17.811456 ], [ 18.808594, -17.811456 ], [ 18.808594, -17.644022 ], [ 18.457031, -17.644022 ], [ 18.457031, -17.476432 ], [ 18.281250, -17.476432 ], [ 18.281250, -17.308688 ], [ 14.238281, -17.308688 ], [ 14.238281, -17.476432 ], [ 13.886719, -17.476432 ], [ 13.886719, -17.308688 ], [ 13.710938, -17.308688 ], [ 13.710938, -17.140790 ], [ 13.535156, -17.140790 ], [ 13.535156, -16.972741 ], [ 12.656250, -16.972741 ], [ 12.656250, -17.140790 ], [ 12.128906, -17.140790 ], [ 12.128906, -17.308688 ], [ 11.777344, -17.308688 ], [ 11.777344, -16.972741 ], [ 11.601562, -16.972741 ], [ 11.601562, -16.299051 ], [ 11.777344, -16.299051 ], [ 11.777344, -15.623037 ], [ 11.953125, -15.623037 ], [ 11.953125, -15.284185 ], [ 12.128906, -15.284185 ], [ 12.128906, -14.264383 ], [ 12.304688, -14.264383 ], [ 12.304688, -13.923404 ], [ 12.480469, -13.923404 ], [ 12.480469, -13.410994 ], [ 12.656250, -13.410994 ], [ 12.656250, -13.068777 ], [ 12.832031, -13.068777 ], [ 12.832031, -12.897489 ], [ 13.183594, -12.897489 ], [ 13.183594, -12.726084 ], [ 13.359375, -12.726084 ], [ 13.359375, -12.554564 ], [ 13.535156, -12.554564 ], [ 13.535156, -12.211180 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.660608 ], [ 13.535156, -10.660608 ], [ 13.535156, -10.487812 ], [ 13.359375, -10.487812 ], [ 13.359375, -10.141932 ], [ 13.183594, -10.141932 ], [ 13.183594, -9.622414 ], [ 13.007812, -9.622414 ], [ 13.007812, -9.275622 ], [ 12.832031, -9.275622 ], [ 12.832031, -9.102097 ], [ 13.007812, -9.102097 ], [ 13.007812, -8.754795 ], [ 13.183594, -8.754795 ], [ 13.183594, -8.059230 ], [ 13.007812, -8.059230 ], [ 13.007812, -7.536764 ], [ 12.832031, -7.536764 ], [ 12.832031, -7.188101 ], [ 12.656250, -7.188101 ], [ 12.656250, -6.839170 ], [ 12.480469, -6.839170 ], [ 12.480469, -6.489983 ], [ 12.304688, -6.489983 ], [ 12.304688, -6.140555 ], [ 12.656250, -6.140555 ], [ 12.656250, -5.965754 ], [ 13.359375, -5.965754 ], [ 13.359375, -5.790897 ], [ 16.347656, -5.790897 ] ] ], [ [ [ 12.832031, -4.565474 ], [ 12.832031, -4.740675 ], [ 13.007812, -4.740675 ], [ 13.007812, -4.915833 ], [ 12.656250, -4.915833 ], [ 12.656250, -5.090944 ], [ 12.480469, -5.090944 ], [ 12.480469, -5.790897 ], [ 12.128906, -5.790897 ], [ 12.128906, -5.441022 ], [ 11.953125, -5.441022 ], [ 11.953125, -5.090944 ], [ 12.128906, -5.090944 ], [ 12.128906, -4.740675 ], [ 12.304688, -4.740675 ], [ 12.304688, -4.565474 ], [ 12.832031, -4.565474 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.171875, -5.790897 ], [ 16.171875, -5.965754 ], [ 16.347656, -5.965754 ], [ 16.347656, -6.315299 ], [ 16.523438, -6.315299 ], [ 16.523438, -6.839170 ], [ 16.699219, -6.839170 ], [ 16.699219, -7.362467 ], [ 16.875000, -7.362467 ], [ 16.875000, -7.536764 ], [ 17.050781, -7.536764 ], [ 17.050781, -7.710992 ], [ 17.226562, -7.710992 ], [ 17.226562, -8.059230 ], [ 17.929688, -8.059230 ], [ 17.929688, -7.885147 ], [ 18.457031, -7.885147 ], [ 18.457031, -7.710992 ], [ 18.632812, -7.710992 ], [ 18.632812, -7.885147 ], [ 19.160156, -7.885147 ], [ 19.160156, -7.362467 ], [ 19.335938, -7.362467 ], [ 19.335938, -7.013668 ], [ 20.039062, -7.013668 ], [ 20.039062, -6.839170 ], [ 20.566406, -6.839170 ], [ 20.566406, -7.013668 ], [ 20.390625, -7.013668 ], [ 20.390625, -7.188101 ], [ 21.621094, -7.188101 ], [ 21.621094, -8.059230 ], [ 21.796875, -8.059230 ], [ 21.796875, -9.622414 ], [ 21.972656, -9.622414 ], [ 21.972656, -9.795678 ], [ 22.148438, -9.795678 ], [ 22.148438, -11.005904 ], [ 23.203125, -11.005904 ], [ 23.203125, -10.833306 ], [ 23.906250, -10.833306 ], [ 23.906250, -11.867351 ], [ 24.082031, -11.867351 ], [ 24.082031, -12.382928 ], [ 23.906250, -12.382928 ], [ 23.906250, -12.897489 ], [ 21.796875, -12.897489 ], [ 21.796875, -16.130262 ], [ 21.972656, -16.130262 ], [ 21.972656, -16.299051 ], [ 22.148438, -16.299051 ], [ 22.148438, -16.636192 ], [ 22.324219, -16.636192 ], [ 22.324219, -16.804541 ], [ 22.500000, -16.804541 ], [ 22.500000, -16.972741 ], [ 22.675781, -16.972741 ], [ 22.675781, -17.140790 ], [ 22.851562, -17.140790 ], [ 22.851562, -17.308688 ], [ 23.027344, -17.308688 ], [ 23.027344, -17.476432 ], [ 22.851562, -17.476432 ], [ 22.851562, -17.644022 ], [ 21.796875, -17.644022 ], [ 21.796875, -17.811456 ], [ 19.863281, -17.811456 ], [ 19.863281, -17.644022 ], [ 18.457031, -17.644022 ], [ 18.457031, -17.476432 ], [ 18.105469, -17.476432 ], [ 18.105469, -17.308688 ], [ 13.710938, -17.308688 ], [ 13.710938, -17.140790 ], [ 13.359375, -17.140790 ], [ 13.359375, -16.972741 ], [ 12.832031, -16.972741 ], [ 12.832031, -16.804541 ], [ 12.480469, -16.804541 ], [ 12.480469, -16.972741 ], [ 11.953125, -16.972741 ], [ 11.953125, -17.140790 ], [ 11.601562, -17.140790 ], [ 11.601562, -16.299051 ], [ 11.777344, -16.299051 ], [ 11.777344, -15.284185 ], [ 11.953125, -15.284185 ], [ 11.953125, -14.604847 ], [ 12.128906, -14.604847 ], [ 12.128906, -14.264383 ], [ 12.304688, -14.264383 ], [ 12.304688, -13.752725 ], [ 12.480469, -13.752725 ], [ 12.480469, -13.239945 ], [ 12.656250, -13.239945 ], [ 12.656250, -13.068777 ], [ 12.832031, -13.068777 ], [ 12.832031, -12.726084 ], [ 13.007812, -12.726084 ], [ 13.007812, -12.554564 ], [ 13.183594, -12.554564 ], [ 13.183594, -12.382928 ], [ 13.359375, -12.382928 ], [ 13.359375, -12.211180 ], [ 13.535156, -12.211180 ], [ 13.535156, -11.695273 ], [ 13.710938, -11.695273 ], [ 13.710938, -11.005904 ], [ 13.535156, -11.005904 ], [ 13.535156, -10.487812 ], [ 13.359375, -10.487812 ], [ 13.359375, -10.141932 ], [ 13.183594, -10.141932 ], [ 13.183594, -9.795678 ], [ 13.007812, -9.795678 ], [ 13.007812, -9.449062 ], [ 12.832031, -9.449062 ], [ 12.832031, -8.928487 ], [ 13.007812, -8.928487 ], [ 13.007812, -8.581021 ], [ 13.183594, -8.581021 ], [ 13.183594, -8.233237 ], [ 13.007812, -8.233237 ], [ 13.007812, -7.885147 ], [ 12.832031, -7.885147 ], [ 12.832031, -7.188101 ], [ 12.656250, -7.188101 ], [ 12.656250, -6.839170 ], [ 12.480469, -6.839170 ], [ 12.480469, -6.489983 ], [ 12.304688, -6.489983 ], [ 12.304688, -6.315299 ], [ 12.128906, -6.315299 ], [ 12.128906, -6.140555 ], [ 12.304688, -6.140555 ], [ 12.304688, -5.965754 ], [ 13.359375, -5.965754 ], [ 13.359375, -5.790897 ], [ 16.171875, -5.790897 ] ] ], [ [ [ 12.656250, -4.565474 ], [ 12.656250, -4.740675 ], [ 12.832031, -4.740675 ], [ 12.832031, -4.915833 ], [ 12.480469, -4.915833 ], [ 12.480469, -5.090944 ], [ 12.304688, -5.090944 ], [ 12.304688, -5.790897 ], [ 12.128906, -5.790897 ], [ 12.128906, -5.615986 ], [ 11.953125, -5.615986 ], [ 11.953125, -5.266008 ], [ 11.777344, -5.266008 ], [ 11.777344, -4.915833 ], [ 11.953125, -4.915833 ], [ 11.953125, -4.740675 ], [ 12.304688, -4.740675 ], [ 12.304688, -4.565474 ], [ 12.656250, -4.565474 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.535156, -16.972741 ], [ 13.535156, -17.140790 ], [ 13.710938, -17.140790 ], [ 13.710938, -17.308688 ], [ 13.886719, -17.308688 ], [ 13.886719, -17.476432 ], [ 14.238281, -17.476432 ], [ 14.238281, -17.308688 ], [ 18.281250, -17.308688 ], [ 18.281250, -17.476432 ], [ 18.457031, -17.476432 ], [ 18.457031, -17.644022 ], [ 18.808594, -17.644022 ], [ 18.808594, -17.811456 ], [ 20.039062, -17.811456 ], [ 20.039062, -17.978733 ], [ 21.796875, -17.978733 ], [ 21.796875, -17.811456 ], [ 22.500000, -17.811456 ], [ 22.500000, -17.644022 ], [ 23.027344, -17.644022 ], [ 23.027344, -17.476432 ], [ 23.730469, -17.476432 ], [ 23.730469, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.476432 ], [ 24.960938, -17.476432 ], [ 24.960938, -17.811456 ], [ 24.257812, -17.811456 ], [ 24.257812, -17.978733 ], [ 24.082031, -17.978733 ], [ 24.082031, -18.145852 ], [ 23.730469, -18.145852 ], [ 23.730469, -18.312811 ], [ 23.378906, -18.312811 ], [ 23.378906, -17.978733 ], [ 23.203125, -17.978733 ], [ 23.203125, -17.811456 ], [ 22.851562, -17.811456 ], [ 22.851562, -17.978733 ], [ 22.148438, -17.978733 ], [ 22.148438, -18.145852 ], [ 21.445312, -18.145852 ], [ 21.445312, -18.312811 ], [ 20.917969, -18.312811 ], [ 20.917969, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.613459 ], [ 19.511719, -28.613459 ], [ 19.511719, -28.767659 ], [ 19.160156, -28.767659 ], [ 19.160156, -28.921631 ], [ 18.808594, -28.921631 ], [ 18.808594, -29.075375 ], [ 17.929688, -29.075375 ], [ 17.929688, -28.921631 ], [ 17.402344, -28.921631 ], [ 17.402344, -28.613459 ], [ 17.226562, -28.613459 ], [ 17.226562, -28.304381 ], [ 16.699219, -28.304381 ], [ 16.699219, -28.459033 ], [ 16.523438, -28.459033 ], [ 16.523438, -28.613459 ], [ 16.171875, -28.613459 ], [ 16.171875, -28.459033 ], [ 15.996094, -28.459033 ], [ 15.996094, -28.149503 ], [ 15.820312, -28.149503 ], [ 15.820312, -27.994401 ], [ 15.644531, -27.994401 ], [ 15.644531, -27.683528 ], [ 15.468750, -27.683528 ], [ 15.468750, -27.371767 ], [ 15.292969, -27.371767 ], [ 15.292969, -26.902477 ], [ 15.117188, -26.902477 ], [ 15.117188, -26.431228 ], [ 14.941406, -26.431228 ], [ 14.941406, -25.799891 ], [ 14.765625, -25.799891 ], [ 14.765625, -25.005973 ], [ 14.589844, -25.005973 ], [ 14.589844, -24.367114 ], [ 14.414062, -24.367114 ], [ 14.414062, -22.431340 ], [ 14.238281, -22.431340 ], [ 14.238281, -22.105999 ], [ 14.062500, -22.105999 ], [ 14.062500, -21.943046 ], [ 13.886719, -21.943046 ], [ 13.886719, -21.616579 ], [ 13.710938, -21.616579 ], [ 13.710938, -21.289374 ], [ 13.535156, -21.289374 ], [ 13.535156, -20.961440 ], [ 13.359375, -20.961440 ], [ 13.359375, -20.632784 ], [ 13.183594, -20.632784 ], [ 13.183594, -20.303418 ], [ 13.007812, -20.303418 ], [ 13.007812, -19.973349 ], [ 12.832031, -19.973349 ], [ 12.832031, -19.311143 ], [ 12.656250, -19.311143 ], [ 12.656250, -18.979026 ], [ 12.480469, -18.979026 ], [ 12.480469, -18.812718 ], [ 12.304688, -18.812718 ], [ 12.304688, -18.646245 ], [ 12.128906, -18.646245 ], [ 12.128906, -18.479609 ], [ 11.953125, -18.479609 ], [ 11.953125, -18.312811 ], [ 11.777344, -18.312811 ], [ 11.777344, -17.308688 ], [ 12.128906, -17.308688 ], [ 12.128906, -17.140790 ], [ 12.656250, -17.140790 ], [ 12.656250, -16.972741 ], [ 13.535156, -16.972741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.832031, -16.804541 ], [ 12.832031, -16.972741 ], [ 13.359375, -16.972741 ], [ 13.359375, -17.140790 ], [ 13.710938, -17.140790 ], [ 13.710938, -17.308688 ], [ 18.105469, -17.308688 ], [ 18.105469, -17.476432 ], [ 18.457031, -17.476432 ], [ 18.457031, -17.644022 ], [ 19.863281, -17.644022 ], [ 19.863281, -17.811456 ], [ 21.796875, -17.811456 ], [ 21.796875, -17.644022 ], [ 22.851562, -17.644022 ], [ 22.851562, -17.476432 ], [ 23.554688, -17.476432 ], [ 23.554688, -17.308688 ], [ 23.906250, -17.308688 ], [ 23.906250, -17.140790 ], [ 24.082031, -17.140790 ], [ 24.082031, -17.308688 ], [ 24.609375, -17.308688 ], [ 24.609375, -17.476432 ], [ 24.960938, -17.476432 ], [ 24.960938, -17.644022 ], [ 24.785156, -17.644022 ], [ 24.785156, -17.811456 ], [ 24.082031, -17.811456 ], [ 24.082031, -17.978733 ], [ 23.730469, -17.978733 ], [ 23.730469, -18.145852 ], [ 23.378906, -18.145852 ], [ 23.378906, -17.978733 ], [ 23.027344, -17.978733 ], [ 23.027344, -17.811456 ], [ 22.851562, -17.811456 ], [ 22.851562, -17.978733 ], [ 22.148438, -17.978733 ], [ 22.148438, -18.145852 ], [ 20.742188, -18.145852 ], [ 20.742188, -21.779905 ], [ 19.863281, -21.779905 ], [ 19.863281, -28.613459 ], [ 19.511719, -28.613459 ], [ 19.511719, -28.767659 ], [ 19.160156, -28.767659 ], [ 19.160156, -28.921631 ], [ 17.929688, -28.921631 ], [ 17.929688, -28.767659 ], [ 17.226562, -28.767659 ], [ 17.226562, -28.613459 ], [ 17.050781, -28.613459 ], [ 17.050781, -28.304381 ], [ 16.875000, -28.304381 ], [ 16.875000, -28.149503 ], [ 16.523438, -28.149503 ], [ 16.523438, -28.459033 ], [ 16.171875, -28.459033 ], [ 16.171875, -28.304381 ], [ 15.996094, -28.304381 ], [ 15.996094, -28.149503 ], [ 15.820312, -28.149503 ], [ 15.820312, -27.994401 ], [ 15.644531, -27.994401 ], [ 15.644531, -27.839076 ], [ 15.468750, -27.839076 ], [ 15.468750, -27.527758 ], [ 15.292969, -27.527758 ], [ 15.292969, -27.215556 ], [ 15.117188, -27.215556 ], [ 15.117188, -26.588527 ], [ 14.941406, -26.588527 ], [ 14.941406, -25.958045 ], [ 14.765625, -25.958045 ], [ 14.765625, -25.641526 ], [ 14.589844, -25.641526 ], [ 14.589844, -25.005973 ], [ 14.414062, -25.005973 ], [ 14.414062, -24.206890 ], [ 14.238281, -24.206890 ], [ 14.238281, -22.105999 ], [ 14.062500, -22.105999 ], [ 14.062500, -21.943046 ], [ 13.886719, -21.943046 ], [ 13.886719, -21.779905 ], [ 13.710938, -21.779905 ], [ 13.710938, -21.616579 ], [ 13.535156, -21.616579 ], [ 13.535156, -21.289374 ], [ 13.359375, -21.289374 ], [ 13.359375, -20.961440 ], [ 13.183594, -20.961440 ], [ 13.183594, -20.632784 ], [ 13.007812, -20.632784 ], [ 13.007812, -20.303418 ], [ 12.832031, -20.303418 ], [ 12.832031, -19.973349 ], [ 12.656250, -19.973349 ], [ 12.656250, -19.311143 ], [ 12.480469, -19.311143 ], [ 12.480469, -18.979026 ], [ 12.304688, -18.979026 ], [ 12.304688, -18.646245 ], [ 12.128906, -18.646245 ], [ 12.128906, -18.479609 ], [ 11.953125, -18.479609 ], [ 11.953125, -18.145852 ], [ 11.777344, -18.145852 ], [ 11.777344, -17.644022 ], [ 11.601562, -17.644022 ], [ 11.601562, -17.140790 ], [ 11.953125, -17.140790 ], [ 11.953125, -16.972741 ], [ 12.480469, -16.972741 ], [ 12.480469, -16.804541 ], [ 12.832031, -16.804541 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.230374 ], [ 30.585938, -1.581830 ], [ 30.761719, -1.581830 ], [ 30.761719, -2.460181 ], [ 30.058594, -2.460181 ], [ 30.058594, -2.284551 ], [ 29.882812, -2.284551 ], [ 29.882812, -2.635789 ], [ 29.707031, -2.635789 ], [ 29.707031, -2.986927 ], [ 29.179688, -2.986927 ], [ 29.179688, -2.811371 ], [ 29.003906, -2.811371 ], [ 29.003906, -2.635789 ], [ 29.179688, -2.635789 ], [ 29.179688, -1.933227 ], [ 29.355469, -1.933227 ], [ 29.355469, -1.581830 ], [ 29.531250, -1.581830 ], [ 29.531250, -1.406109 ], [ 30.058594, -1.406109 ], [ 30.058594, -1.230374 ], [ 30.585938, -1.230374 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -1.230374 ], [ 30.585938, -1.581830 ], [ 30.761719, -1.581830 ], [ 30.761719, -1.933227 ], [ 30.585938, -1.933227 ], [ 30.585938, -2.284551 ], [ 29.882812, -2.284551 ], [ 29.882812, -2.460181 ], [ 29.707031, -2.460181 ], [ 29.707031, -2.811371 ], [ 29.003906, -2.811371 ], [ 29.003906, -2.284551 ], [ 29.179688, -2.284551 ], [ 29.179688, -1.581830 ], [ 29.355469, -1.581830 ], [ 29.355469, -1.406109 ], [ 30.058594, -1.406109 ], [ 30.058594, -1.230374 ], [ 30.585938, -1.230374 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.179688, -2.986927 ], [ 29.707031, -2.986927 ], [ 29.707031, -2.635789 ], [ 29.882812, -2.635789 ], [ 29.882812, -2.284551 ], [ 30.058594, -2.284551 ], [ 30.058594, -2.460181 ], [ 30.410156, -2.460181 ], [ 30.410156, -2.635789 ], [ 30.585938, -2.635789 ], [ 30.585938, -2.986927 ], [ 30.761719, -2.986927 ], [ 30.761719, -3.513421 ], [ 30.585938, -3.513421 ], [ 30.585938, -3.688855 ], [ 30.410156, -3.688855 ], [ 30.410156, -3.864255 ], [ 30.234375, -3.864255 ], [ 30.234375, -4.039618 ], [ 30.058594, -4.039618 ], [ 30.058594, -4.214943 ], [ 29.882812, -4.214943 ], [ 29.882812, -4.390229 ], [ 29.707031, -4.390229 ], [ 29.707031, -4.565474 ], [ 29.355469, -4.565474 ], [ 29.355469, -3.337954 ], [ 29.179688, -3.337954 ], [ 29.179688, -2.986927 ] ] ], [ [ [ 29.179688, -2.986927 ], [ 29.003906, -2.986927 ], [ 29.003906, -2.811371 ], [ 29.179688, -2.811371 ], [ 29.179688, -2.986927 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -2.284551 ], [ 30.410156, -2.811371 ], [ 30.585938, -2.811371 ], [ 30.585938, -3.513421 ], [ 30.410156, -3.513421 ], [ 30.410156, -3.688855 ], [ 30.234375, -3.688855 ], [ 30.234375, -4.039618 ], [ 30.058594, -4.039618 ], [ 30.058594, -4.214943 ], [ 29.882812, -4.214943 ], [ 29.882812, -4.390229 ], [ 29.179688, -4.390229 ], [ 29.179688, -2.986927 ], [ 29.003906, -2.986927 ], [ 29.003906, -2.811371 ], [ 29.707031, -2.811371 ], [ 29.707031, -2.460181 ], [ 29.882812, -2.460181 ], [ 29.882812, -2.284551 ], [ 30.410156, -2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, -8.233237 ], [ 30.410156, -8.407168 ], [ 30.761719, -8.407168 ], [ 30.761719, -8.581021 ], [ 31.289062, -8.581021 ], [ 31.289062, -8.754795 ], [ 31.816406, -8.754795 ], [ 31.816406, -8.928487 ], [ 32.167969, -8.928487 ], [ 32.167969, -9.102097 ], [ 32.519531, -9.102097 ], [ 32.519531, -9.275622 ], [ 32.695312, -9.275622 ], [ 32.695312, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.622414 ], [ 33.222656, -9.622414 ], [ 33.222656, -10.141932 ], [ 33.398438, -10.141932 ], [ 33.398438, -11.005904 ], [ 33.222656, -11.005904 ], [ 33.222656, -11.350797 ], [ 33.046875, -11.350797 ], [ 33.046875, -12.039321 ], [ 33.222656, -12.039321 ], [ 33.222656, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -13.068777 ], [ 32.871094, -13.068777 ], [ 32.871094, -13.581921 ], [ 32.695312, -13.581921 ], [ 32.695312, -13.752725 ], [ 32.871094, -13.752725 ], [ 32.871094, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.093957 ], [ 32.343750, -14.093957 ], [ 32.343750, -14.264383 ], [ 31.816406, -14.264383 ], [ 31.816406, -14.434680 ], [ 31.289062, -14.434680 ], [ 31.289062, -14.604847 ], [ 30.585938, -14.604847 ], [ 30.585938, -14.774883 ], [ 30.234375, -14.774883 ], [ 30.234375, -15.453680 ], [ 30.058594, -15.453680 ], [ 30.058594, -15.623037 ], [ 29.531250, -15.623037 ], [ 29.531250, -15.792254 ], [ 29.179688, -15.792254 ], [ 29.179688, -15.961329 ], [ 29.003906, -15.961329 ], [ 29.003906, -16.299051 ], [ 28.828125, -16.299051 ], [ 28.828125, -16.467695 ], [ 28.476562, -16.467695 ], [ 28.476562, -16.636192 ], [ 28.300781, -16.636192 ], [ 28.300781, -16.804541 ], [ 28.125000, -16.804541 ], [ 28.125000, -16.972741 ], [ 27.949219, -16.972741 ], [ 27.949219, -17.140790 ], [ 27.773438, -17.140790 ], [ 27.773438, -17.308688 ], [ 27.597656, -17.308688 ], [ 27.597656, -17.476432 ], [ 27.421875, -17.476432 ], [ 27.421875, -17.644022 ], [ 27.246094, -17.644022 ], [ 27.246094, -17.978733 ], [ 26.367188, -17.978733 ], [ 26.367188, -17.811456 ], [ 25.136719, -17.811456 ], [ 25.136719, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.476432 ], [ 24.609375, -17.476432 ], [ 24.609375, -17.308688 ], [ 23.730469, -17.308688 ], [ 23.730469, -17.476432 ], [ 23.027344, -17.476432 ], [ 23.027344, -17.308688 ], [ 22.675781, -17.308688 ], [ 22.675781, -17.140790 ], [ 22.500000, -17.140790 ], [ 22.500000, -16.972741 ], [ 22.324219, -16.972741 ], [ 22.324219, -16.636192 ], [ 22.148438, -16.636192 ], [ 22.148438, -16.299051 ], [ 21.972656, -16.299051 ], [ 21.972656, -12.897489 ], [ 24.082031, -12.897489 ], [ 24.082031, -12.726084 ], [ 23.906250, -12.726084 ], [ 23.906250, -12.382928 ], [ 24.082031, -12.382928 ], [ 24.082031, -12.039321 ], [ 23.906250, -12.039321 ], [ 23.906250, -11.523088 ], [ 24.082031, -11.523088 ], [ 24.082031, -11.178402 ], [ 23.906250, -11.178402 ], [ 23.906250, -11.005904 ], [ 24.257812, -11.005904 ], [ 24.257812, -11.178402 ], [ 24.960938, -11.178402 ], [ 24.960938, -11.350797 ], [ 25.488281, -11.350797 ], [ 25.488281, -11.523088 ], [ 25.664062, -11.523088 ], [ 25.664062, -11.867351 ], [ 26.894531, -11.867351 ], [ 26.894531, -11.695273 ], [ 27.246094, -11.695273 ], [ 27.246094, -11.867351 ], [ 27.421875, -11.867351 ], [ 27.421875, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.382928 ], [ 28.300781, -12.382928 ], [ 28.300781, -12.726084 ], [ 28.476562, -12.726084 ], [ 28.476562, -12.897489 ], [ 28.652344, -12.897489 ], [ 28.652344, -13.068777 ], [ 28.828125, -13.068777 ], [ 28.828125, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.707031, -12.726084 ], [ 29.531250, -12.726084 ], [ 29.531250, -12.382928 ], [ 29.003906, -12.382928 ], [ 29.003906, -12.211180 ], [ 28.652344, -12.211180 ], [ 28.652344, -12.039321 ], [ 28.300781, -12.039321 ], [ 28.300781, -11.350797 ], [ 28.476562, -11.350797 ], [ 28.476562, -10.314919 ], [ 28.652344, -10.314919 ], [ 28.652344, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -8.928487 ], [ 28.652344, -8.928487 ], [ 28.652344, -8.581021 ], [ 29.003906, -8.581021 ], [ 29.003906, -8.407168 ], [ 29.882812, -8.407168 ], [ 29.882812, -8.233237 ], [ 30.410156, -8.233237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.585938, -8.233237 ], [ 30.585938, -8.407168 ], [ 30.937500, -8.407168 ], [ 30.937500, -8.581021 ], [ 31.113281, -8.581021 ], [ 31.113281, -8.754795 ], [ 31.640625, -8.754795 ], [ 31.640625, -8.928487 ], [ 32.343750, -8.928487 ], [ 32.343750, -9.102097 ], [ 32.695312, -9.102097 ], [ 32.695312, -9.275622 ], [ 32.871094, -9.275622 ], [ 32.871094, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.622414 ], [ 33.222656, -9.622414 ], [ 33.222656, -10.141932 ], [ 33.398438, -10.141932 ], [ 33.398438, -10.660608 ], [ 33.222656, -10.660608 ], [ 33.222656, -11.178402 ], [ 33.046875, -11.178402 ], [ 33.046875, -12.039321 ], [ 33.222656, -12.039321 ], [ 33.222656, -12.554564 ], [ 33.046875, -12.554564 ], [ 33.046875, -12.726084 ], [ 32.871094, -12.726084 ], [ 32.871094, -13.068777 ], [ 32.695312, -13.068777 ], [ 32.695312, -13.410994 ], [ 32.519531, -13.410994 ], [ 32.519531, -13.752725 ], [ 32.871094, -13.752725 ], [ 32.871094, -14.093957 ], [ 32.167969, -14.093957 ], [ 32.167969, -14.264383 ], [ 31.640625, -14.264383 ], [ 31.640625, -14.434680 ], [ 31.113281, -14.434680 ], [ 31.113281, -14.604847 ], [ 30.410156, -14.604847 ], [ 30.410156, -14.774883 ], [ 30.058594, -14.774883 ], [ 30.058594, -15.114553 ], [ 30.234375, -15.114553 ], [ 30.234375, -15.453680 ], [ 29.882812, -15.453680 ], [ 29.882812, -15.623037 ], [ 29.355469, -15.623037 ], [ 29.355469, -15.792254 ], [ 29.003906, -15.792254 ], [ 29.003906, -15.961329 ], [ 28.828125, -15.961329 ], [ 28.828125, -16.299051 ], [ 28.652344, -16.299051 ], [ 28.652344, -16.467695 ], [ 28.300781, -16.467695 ], [ 28.300781, -16.636192 ], [ 28.125000, -16.636192 ], [ 28.125000, -16.804541 ], [ 27.949219, -16.804541 ], [ 27.949219, -16.972741 ], [ 27.773438, -16.972741 ], [ 27.773438, -17.140790 ], [ 27.597656, -17.140790 ], [ 27.597656, -17.308688 ], [ 27.421875, -17.308688 ], [ 27.421875, -17.476432 ], [ 27.246094, -17.476432 ], [ 27.246094, -17.644022 ], [ 27.070312, -17.644022 ], [ 27.070312, -17.811456 ], [ 25.664062, -17.811456 ], [ 25.664062, -17.644022 ], [ 24.960938, -17.644022 ], [ 24.960938, -17.476432 ], [ 24.609375, -17.476432 ], [ 24.609375, -17.308688 ], [ 24.082031, -17.308688 ], [ 24.082031, -17.140790 ], [ 23.906250, -17.140790 ], [ 23.906250, -17.308688 ], [ 23.554688, -17.308688 ], [ 23.554688, -17.476432 ], [ 23.027344, -17.476432 ], [ 23.027344, -17.308688 ], [ 22.851562, -17.308688 ], [ 22.851562, -17.140790 ], [ 22.675781, -17.140790 ], [ 22.675781, -16.972741 ], [ 22.500000, -16.972741 ], [ 22.500000, -16.804541 ], [ 22.324219, -16.804541 ], [ 22.324219, -16.636192 ], [ 22.148438, -16.636192 ], [ 22.148438, -16.299051 ], [ 21.972656, -16.299051 ], [ 21.972656, -16.130262 ], [ 21.796875, -16.130262 ], [ 21.796875, -12.897489 ], [ 23.906250, -12.897489 ], [ 23.906250, -12.382928 ], [ 24.082031, -12.382928 ], [ 24.082031, -11.867351 ], [ 23.906250, -11.867351 ], [ 23.906250, -10.833306 ], [ 24.257812, -10.833306 ], [ 24.257812, -11.178402 ], [ 25.312500, -11.178402 ], [ 25.312500, -11.350797 ], [ 25.488281, -11.350797 ], [ 25.488281, -11.695273 ], [ 26.015625, -11.695273 ], [ 26.015625, -11.867351 ], [ 26.718750, -11.867351 ], [ 26.718750, -11.695273 ], [ 27.070312, -11.695273 ], [ 27.070312, -11.867351 ], [ 27.246094, -11.867351 ], [ 27.246094, -12.039321 ], [ 27.597656, -12.039321 ], [ 27.597656, -12.211180 ], [ 28.125000, -12.211180 ], [ 28.125000, -12.382928 ], [ 28.300781, -12.382928 ], [ 28.300781, -12.554564 ], [ 28.476562, -12.554564 ], [ 28.476562, -12.726084 ], [ 28.652344, -12.726084 ], [ 28.652344, -13.068777 ], [ 28.828125, -13.068777 ], [ 28.828125, -13.239945 ], [ 29.531250, -13.239945 ], [ 29.531250, -12.211180 ], [ 28.828125, -12.211180 ], [ 28.828125, -12.039321 ], [ 28.476562, -12.039321 ], [ 28.476562, -11.867351 ], [ 28.300781, -11.867351 ], [ 28.300781, -11.178402 ], [ 28.476562, -11.178402 ], [ 28.476562, -10.141932 ], [ 28.652344, -10.141932 ], [ 28.652344, -9.449062 ], [ 28.476562, -9.449062 ], [ 28.476562, -9.275622 ], [ 28.300781, -9.275622 ], [ 28.300781, -8.928487 ], [ 28.476562, -8.928487 ], [ 28.476562, -8.581021 ], [ 28.652344, -8.581021 ], [ 28.652344, -8.407168 ], [ 29.707031, -8.407168 ], [ 29.707031, -8.233237 ], [ 30.585938, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.234375, -15.792254 ], [ 30.410156, -15.792254 ], [ 30.410156, -15.961329 ], [ 30.937500, -15.961329 ], [ 30.937500, -15.792254 ], [ 31.113281, -15.792254 ], [ 31.113281, -15.961329 ], [ 31.464844, -15.961329 ], [ 31.464844, -16.130262 ], [ 31.640625, -16.130262 ], [ 31.640625, -16.299051 ], [ 31.992188, -16.299051 ], [ 31.992188, -16.467695 ], [ 32.519531, -16.467695 ], [ 32.519531, -16.636192 ], [ 32.871094, -16.636192 ], [ 32.871094, -18.312811 ], [ 32.695312, -18.312811 ], [ 32.695312, -20.468189 ], [ 32.519531, -20.468189 ], [ 32.519531, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -20.961440 ], [ 32.167969, -20.961440 ], [ 32.167969, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.453069 ], [ 31.816406, -21.453069 ], [ 31.816406, -21.616579 ], [ 31.640625, -21.616579 ], [ 31.640625, -21.943046 ], [ 31.464844, -21.943046 ], [ 31.464844, -22.105999 ], [ 31.289062, -22.105999 ], [ 31.289062, -22.268764 ], [ 30.761719, -22.268764 ], [ 30.761719, -22.105999 ], [ 30.585938, -22.105999 ], [ 30.585938, -22.268764 ], [ 30.058594, -22.268764 ], [ 30.058594, -22.105999 ], [ 29.179688, -22.105999 ], [ 29.179688, -21.943046 ], [ 29.003906, -21.943046 ], [ 29.003906, -21.779905 ], [ 28.828125, -21.779905 ], [ 28.828125, -21.616579 ], [ 28.300781, -21.616579 ], [ 28.300781, -21.453069 ], [ 27.949219, -21.453069 ], [ 27.949219, -21.125498 ], [ 27.773438, -21.125498 ], [ 27.773438, -20.468189 ], [ 27.070312, -20.468189 ], [ 27.070312, -20.303418 ], [ 26.894531, -20.303418 ], [ 26.894531, -20.138470 ], [ 26.718750, -20.138470 ], [ 26.718750, -19.808054 ], [ 26.542969, -19.808054 ], [ 26.542969, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.476950 ], [ 26.191406, -19.476950 ], [ 26.191406, -19.145168 ], [ 26.015625, -19.145168 ], [ 26.015625, -18.812718 ], [ 25.839844, -18.812718 ], [ 25.839844, -18.646245 ], [ 25.664062, -18.646245 ], [ 25.664062, -18.312811 ], [ 25.488281, -18.312811 ], [ 25.488281, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -17.811456 ], [ 26.367188, -17.811456 ], [ 26.367188, -17.978733 ], [ 27.246094, -17.978733 ], [ 27.246094, -17.644022 ], [ 27.421875, -17.644022 ], [ 27.421875, -17.476432 ], [ 27.597656, -17.476432 ], [ 27.597656, -17.308688 ], [ 27.773438, -17.308688 ], [ 27.773438, -17.140790 ], [ 27.949219, -17.140790 ], [ 27.949219, -16.972741 ], [ 28.125000, -16.972741 ], [ 28.125000, -16.804541 ], [ 28.300781, -16.804541 ], [ 28.300781, -16.636192 ], [ 28.476562, -16.636192 ], [ 28.476562, -16.467695 ], [ 28.828125, -16.467695 ], [ 28.828125, -16.299051 ], [ 29.003906, -16.299051 ], [ 29.003906, -15.961329 ], [ 29.179688, -15.961329 ], [ 29.179688, -15.792254 ], [ 29.531250, -15.792254 ], [ 29.531250, -15.623037 ], [ 30.058594, -15.623037 ], [ 30.058594, -15.453680 ], [ 30.234375, -15.453680 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.453680 ], [ 30.234375, -15.792254 ], [ 31.113281, -15.792254 ], [ 31.113281, -15.961329 ], [ 31.464844, -15.961329 ], [ 31.464844, -16.130262 ], [ 31.640625, -16.130262 ], [ 31.640625, -16.299051 ], [ 32.167969, -16.299051 ], [ 32.167969, -16.467695 ], [ 32.519531, -16.467695 ], [ 32.519531, -16.636192 ], [ 32.695312, -16.636192 ], [ 32.695312, -18.312811 ], [ 32.519531, -18.312811 ], [ 32.519531, -19.476950 ], [ 32.695312, -19.476950 ], [ 32.695312, -19.973349 ], [ 32.519531, -19.973349 ], [ 32.519531, -20.303418 ], [ 32.343750, -20.303418 ], [ 32.343750, -20.632784 ], [ 32.167969, -20.632784 ], [ 32.167969, -21.125498 ], [ 31.992188, -21.125498 ], [ 31.992188, -21.289374 ], [ 31.816406, -21.289374 ], [ 31.816406, -21.453069 ], [ 31.640625, -21.453069 ], [ 31.640625, -21.779905 ], [ 31.464844, -21.779905 ], [ 31.464844, -21.943046 ], [ 31.289062, -21.943046 ], [ 31.289062, -22.105999 ], [ 30.585938, -22.105999 ], [ 30.585938, -22.268764 ], [ 30.058594, -22.268764 ], [ 30.058594, -22.105999 ], [ 29.707031, -22.105999 ], [ 29.707031, -21.943046 ], [ 29.003906, -21.943046 ], [ 29.003906, -21.779905 ], [ 28.652344, -21.779905 ], [ 28.652344, -21.616579 ], [ 28.125000, -21.616579 ], [ 28.125000, -21.453069 ], [ 27.949219, -21.453069 ], [ 27.949219, -21.289374 ], [ 27.773438, -21.289374 ], [ 27.773438, -20.961440 ], [ 27.597656, -20.961440 ], [ 27.597656, -20.468189 ], [ 27.246094, -20.468189 ], [ 27.246094, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -20.138470 ], [ 26.894531, -20.138470 ], [ 26.894531, -19.973349 ], [ 26.718750, -19.973349 ], [ 26.718750, -19.808054 ], [ 26.542969, -19.808054 ], [ 26.542969, -19.642588 ], [ 26.367188, -19.642588 ], [ 26.367188, -19.476950 ], [ 26.191406, -19.476950 ], [ 26.191406, -19.311143 ], [ 26.015625, -19.311143 ], [ 26.015625, -18.979026 ], [ 25.839844, -18.979026 ], [ 25.839844, -18.646245 ], [ 25.488281, -18.646245 ], [ 25.488281, -18.312811 ], [ 25.312500, -18.312811 ], [ 25.312500, -17.978733 ], [ 25.136719, -17.978733 ], [ 25.136719, -17.644022 ], [ 25.664062, -17.644022 ], [ 25.664062, -17.811456 ], [ 27.070312, -17.811456 ], [ 27.070312, -17.644022 ], [ 27.246094, -17.644022 ], [ 27.246094, -17.476432 ], [ 27.421875, -17.476432 ], [ 27.421875, -17.308688 ], [ 27.597656, -17.308688 ], [ 27.597656, -17.140790 ], [ 27.773438, -17.140790 ], [ 27.773438, -16.972741 ], [ 27.949219, -16.972741 ], [ 27.949219, -16.804541 ], [ 28.125000, -16.804541 ], [ 28.125000, -16.636192 ], [ 28.300781, -16.636192 ], [ 28.300781, -16.467695 ], [ 28.652344, -16.467695 ], [ 28.652344, -16.299051 ], [ 28.828125, -16.299051 ], [ 28.828125, -15.961329 ], [ 29.003906, -15.961329 ], [ 29.003906, -15.792254 ], [ 29.355469, -15.792254 ], [ 29.355469, -15.623037 ], [ 29.882812, -15.623037 ], [ 29.882812, -15.453680 ], [ 30.234375, -15.453680 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, -0.878872 ], [ 33.925781, -1.054628 ], [ 34.101562, -1.054628 ], [ 34.101562, -1.230374 ], [ 34.453125, -1.230374 ], [ 34.453125, -1.406109 ], [ 34.804688, -1.406109 ], [ 34.804688, -1.581830 ], [ 34.980469, -1.581830 ], [ 34.980469, -1.757537 ], [ 35.332031, -1.757537 ], [ 35.332031, -1.933227 ], [ 35.683594, -1.933227 ], [ 35.683594, -2.108899 ], [ 35.859375, -2.108899 ], [ 35.859375, -2.284551 ], [ 36.210938, -2.284551 ], [ 36.210938, -2.460181 ], [ 36.562500, -2.460181 ], [ 36.562500, -2.635789 ], [ 36.738281, -2.635789 ], [ 36.738281, -2.811371 ], [ 37.089844, -2.811371 ], [ 37.089844, -2.986927 ], [ 37.441406, -2.986927 ], [ 37.441406, -3.162456 ], [ 37.617188, -3.162456 ], [ 37.617188, -3.513421 ], [ 37.792969, -3.513421 ], [ 37.792969, -3.864255 ], [ 37.968750, -3.864255 ], [ 37.968750, -4.039618 ], [ 38.320312, -4.039618 ], [ 38.320312, -4.214943 ], [ 38.496094, -4.214943 ], [ 38.496094, -4.390229 ], [ 38.671875, -4.390229 ], [ 38.671875, -4.565474 ], [ 39.023438, -4.565474 ], [ 39.023438, -4.740675 ], [ 39.199219, -4.740675 ], [ 39.199219, -5.090944 ], [ 39.023438, -5.090944 ], [ 39.023438, -5.441022 ], [ 38.847656, -5.441022 ], [ 38.847656, -5.790897 ], [ 38.671875, -5.790897 ], [ 38.671875, -6.315299 ], [ 38.847656, -6.315299 ], [ 38.847656, -6.664608 ], [ 39.199219, -6.664608 ], [ 39.199219, -6.839170 ], [ 39.375000, -6.839170 ], [ 39.375000, -7.013668 ], [ 39.550781, -7.013668 ], [ 39.550781, -7.188101 ], [ 39.375000, -7.188101 ], [ 39.375000, -7.536764 ], [ 39.199219, -7.536764 ], [ 39.199219, -8.581021 ], [ 39.375000, -8.581021 ], [ 39.375000, -8.928487 ], [ 39.550781, -8.928487 ], [ 39.550781, -9.449062 ], [ 39.726562, -9.449062 ], [ 39.726562, -9.968851 ], [ 39.902344, -9.968851 ], [ 39.902344, -10.314919 ], [ 40.253906, -10.314919 ], [ 40.253906, -10.487812 ], [ 40.078125, -10.487812 ], [ 40.078125, -10.660608 ], [ 39.726562, -10.660608 ], [ 39.726562, -10.833306 ], [ 39.550781, -10.833306 ], [ 39.550781, -11.005904 ], [ 39.199219, -11.005904 ], [ 39.199219, -11.178402 ], [ 38.847656, -11.178402 ], [ 38.847656, -11.350797 ], [ 37.792969, -11.350797 ], [ 37.792969, -11.523088 ], [ 36.738281, -11.523088 ], [ 36.738281, -11.695273 ], [ 35.859375, -11.695273 ], [ 35.859375, -11.523088 ], [ 34.628906, -11.523088 ], [ 34.628906, -11.178402 ], [ 34.453125, -11.178402 ], [ 34.453125, -10.487812 ], [ 34.277344, -10.487812 ], [ 34.277344, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.925781, -9.795678 ], [ 33.925781, -9.622414 ], [ 33.750000, -9.622414 ], [ 33.750000, -9.449062 ], [ 33.046875, -9.449062 ], [ 33.046875, -9.275622 ], [ 32.519531, -9.275622 ], [ 32.519531, -9.102097 ], [ 32.167969, -9.102097 ], [ 32.167969, -8.928487 ], [ 31.816406, -8.928487 ], [ 31.816406, -8.754795 ], [ 31.289062, -8.754795 ], [ 31.289062, -8.581021 ], [ 30.761719, -8.581021 ], [ 30.761719, -8.233237 ], [ 30.585938, -8.233237 ], [ 30.585938, -7.710992 ], [ 30.410156, -7.710992 ], [ 30.410156, -7.362467 ], [ 30.234375, -7.362467 ], [ 30.234375, -7.013668 ], [ 30.058594, -7.013668 ], [ 30.058594, -6.839170 ], [ 29.882812, -6.839170 ], [ 29.882812, -6.664608 ], [ 29.707031, -6.664608 ], [ 29.707031, -6.489983 ], [ 29.531250, -6.489983 ], [ 29.531250, -6.140555 ], [ 29.355469, -6.140555 ], [ 29.355469, -5.790897 ], [ 29.531250, -5.790897 ], [ 29.531250, -5.090944 ], [ 29.355469, -5.090944 ], [ 29.355469, -4.565474 ], [ 29.707031, -4.565474 ], [ 29.707031, -4.390229 ], [ 29.882812, -4.390229 ], [ 29.882812, -4.214943 ], [ 30.058594, -4.214943 ], [ 30.058594, -4.039618 ], [ 30.234375, -4.039618 ], [ 30.234375, -3.864255 ], [ 30.410156, -3.864255 ], [ 30.410156, -3.688855 ], [ 30.585938, -3.688855 ], [ 30.585938, -3.513421 ], [ 30.761719, -3.513421 ], [ 30.761719, -2.986927 ], [ 30.585938, -2.986927 ], [ 30.585938, -2.635789 ], [ 30.410156, -2.635789 ], [ 30.410156, -2.460181 ], [ 30.761719, -2.460181 ], [ 30.761719, -1.581830 ], [ 30.585938, -1.581830 ], [ 30.585938, -1.230374 ], [ 30.410156, -1.230374 ], [ 30.410156, -1.054628 ], [ 33.046875, -1.054628 ], [ 33.046875, -0.878872 ], [ 33.925781, -0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, -0.878872 ], [ 33.750000, -1.054628 ], [ 33.925781, -1.054628 ], [ 33.925781, -1.230374 ], [ 34.277344, -1.230374 ], [ 34.277344, -1.406109 ], [ 34.628906, -1.406109 ], [ 34.628906, -1.581830 ], [ 34.980469, -1.581830 ], [ 34.980469, -1.757537 ], [ 35.332031, -1.757537 ], [ 35.332031, -1.933227 ], [ 35.683594, -1.933227 ], [ 35.683594, -2.108899 ], [ 36.035156, -2.108899 ], [ 36.035156, -2.284551 ], [ 36.386719, -2.284551 ], [ 36.386719, -2.460181 ], [ 36.738281, -2.460181 ], [ 36.738281, -2.635789 ], [ 37.089844, -2.635789 ], [ 37.089844, -2.811371 ], [ 37.441406, -2.811371 ], [ 37.441406, -2.986927 ], [ 37.617188, -2.986927 ], [ 37.617188, -3.688855 ], [ 37.968750, -3.688855 ], [ 37.968750, -3.864255 ], [ 38.144531, -3.864255 ], [ 38.144531, -4.039618 ], [ 38.496094, -4.039618 ], [ 38.496094, -4.214943 ], [ 38.671875, -4.214943 ], [ 38.671875, -4.390229 ], [ 39.023438, -4.390229 ], [ 39.023438, -4.565474 ], [ 39.199219, -4.565474 ], [ 39.199219, -4.915833 ], [ 39.023438, -4.915833 ], [ 39.023438, -5.266008 ], [ 38.847656, -5.266008 ], [ 38.847656, -5.615986 ], [ 38.671875, -5.615986 ], [ 38.671875, -6.489983 ], [ 38.847656, -6.489983 ], [ 38.847656, -6.664608 ], [ 39.199219, -6.664608 ], [ 39.199219, -6.839170 ], [ 39.375000, -6.839170 ], [ 39.375000, -7.188101 ], [ 39.199219, -7.188101 ], [ 39.199219, -7.536764 ], [ 39.023438, -7.536764 ], [ 39.023438, -7.710992 ], [ 39.199219, -7.710992 ], [ 39.199219, -8.233237 ], [ 39.023438, -8.233237 ], [ 39.023438, -8.581021 ], [ 39.199219, -8.581021 ], [ 39.199219, -8.928487 ], [ 39.375000, -8.928487 ], [ 39.375000, -9.275622 ], [ 39.550781, -9.275622 ], [ 39.550781, -9.622414 ], [ 39.726562, -9.622414 ], [ 39.726562, -9.968851 ], [ 39.902344, -9.968851 ], [ 39.902344, -10.141932 ], [ 40.078125, -10.141932 ], [ 40.078125, -10.314919 ], [ 40.253906, -10.314919 ], [ 40.253906, -10.487812 ], [ 39.902344, -10.487812 ], [ 39.902344, -10.660608 ], [ 39.550781, -10.660608 ], [ 39.550781, -10.833306 ], [ 39.199219, -10.833306 ], [ 39.199219, -11.005904 ], [ 38.671875, -11.005904 ], [ 38.671875, -11.178402 ], [ 37.792969, -11.178402 ], [ 37.792969, -11.350797 ], [ 37.617188, -11.350797 ], [ 37.617188, -11.523088 ], [ 36.738281, -11.523088 ], [ 36.738281, -11.695273 ], [ 36.035156, -11.695273 ], [ 36.035156, -11.523088 ], [ 35.332031, -11.523088 ], [ 35.332031, -11.350797 ], [ 34.453125, -11.350797 ], [ 34.453125, -10.833306 ], [ 34.277344, -10.833306 ], [ 34.277344, -10.141932 ], [ 34.101562, -10.141932 ], [ 34.101562, -9.795678 ], [ 33.925781, -9.795678 ], [ 33.925781, -9.622414 ], [ 33.750000, -9.622414 ], [ 33.750000, -9.449062 ], [ 33.574219, -9.449062 ], [ 33.574219, -9.275622 ], [ 33.046875, -9.275622 ], [ 33.046875, -9.102097 ], [ 32.343750, -9.102097 ], [ 32.343750, -8.928487 ], [ 31.640625, -8.928487 ], [ 31.640625, -8.754795 ], [ 31.113281, -8.754795 ], [ 31.113281, -8.581021 ], [ 30.937500, -8.581021 ], [ 30.937500, -8.407168 ], [ 30.585938, -8.407168 ], [ 30.585938, -8.059230 ], [ 30.410156, -8.059230 ], [ 30.410156, -7.710992 ], [ 30.234375, -7.710992 ], [ 30.234375, -7.362467 ], [ 30.058594, -7.362467 ], [ 30.058594, -7.013668 ], [ 29.882812, -7.013668 ], [ 29.882812, -6.839170 ], [ 29.707031, -6.839170 ], [ 29.707031, -6.664608 ], [ 29.531250, -6.664608 ], [ 29.531250, -6.140555 ], [ 29.355469, -6.140555 ], [ 29.355469, -4.915833 ], [ 29.179688, -4.915833 ], [ 29.179688, -4.390229 ], [ 29.882812, -4.390229 ], [ 29.882812, -4.214943 ], [ 30.058594, -4.214943 ], [ 30.058594, -4.039618 ], [ 30.234375, -4.039618 ], [ 30.234375, -3.688855 ], [ 30.410156, -3.688855 ], [ 30.410156, -3.513421 ], [ 30.585938, -3.513421 ], [ 30.585938, -2.811371 ], [ 30.410156, -2.811371 ], [ 30.410156, -2.284551 ], [ 30.585938, -2.284551 ], [ 30.585938, -1.933227 ], [ 30.761719, -1.933227 ], [ 30.761719, -1.581830 ], [ 30.585938, -1.581830 ], [ 30.585938, -1.230374 ], [ 30.410156, -1.230374 ], [ 30.410156, -1.054628 ], [ 30.761719, -1.054628 ], [ 30.761719, -0.878872 ], [ 33.750000, -0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.046875, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.622414 ], [ 33.925781, -9.622414 ], [ 33.925781, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.277344, -10.141932 ], [ 34.277344, -10.487812 ], [ 34.453125, -10.487812 ], [ 34.453125, -11.178402 ], [ 34.628906, -11.178402 ], [ 34.628906, -11.695273 ], [ 34.453125, -11.695273 ], [ 34.453125, -12.039321 ], [ 34.277344, -12.039321 ], [ 34.277344, -12.554564 ], [ 34.453125, -12.554564 ], [ 34.453125, -13.239945 ], [ 34.628906, -13.239945 ], [ 34.628906, -13.581921 ], [ 34.980469, -13.581921 ], [ 34.980469, -13.752725 ], [ 35.156250, -13.752725 ], [ 35.156250, -13.923404 ], [ 35.332031, -13.923404 ], [ 35.332031, -14.093957 ], [ 35.507812, -14.093957 ], [ 35.507812, -14.434680 ], [ 35.683594, -14.434680 ], [ 35.683594, -15.284185 ], [ 35.859375, -15.284185 ], [ 35.859375, -15.961329 ], [ 35.683594, -15.961329 ], [ 35.683594, -16.130262 ], [ 35.332031, -16.130262 ], [ 35.332031, -16.299051 ], [ 35.156250, -16.299051 ], [ 35.156250, -16.636192 ], [ 34.980469, -16.636192 ], [ 34.980469, -16.804541 ], [ 34.804688, -16.804541 ], [ 34.804688, -16.467695 ], [ 34.628906, -16.467695 ], [ 34.628906, -16.299051 ], [ 34.453125, -16.299051 ], [ 34.453125, -15.792254 ], [ 34.277344, -15.792254 ], [ 34.277344, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 34.101562, -14.604847 ], [ 34.101562, -14.434680 ], [ 33.574219, -14.434680 ], [ 33.574219, -14.264383 ], [ 33.398438, -14.264383 ], [ 33.398438, -14.093957 ], [ 33.222656, -14.093957 ], [ 33.222656, -13.923404 ], [ 32.871094, -13.923404 ], [ 32.871094, -13.752725 ], [ 32.695312, -13.752725 ], [ 32.695312, -13.581921 ], [ 32.871094, -13.581921 ], [ 32.871094, -13.068777 ], [ 33.046875, -13.068777 ], [ 33.046875, -12.554564 ], [ 33.222656, -12.554564 ], [ 33.222656, -12.039321 ], [ 33.046875, -12.039321 ], [ 33.046875, -11.350797 ], [ 33.222656, -11.350797 ], [ 33.222656, -11.005904 ], [ 33.398438, -11.005904 ], [ 33.398438, -10.141932 ], [ 33.222656, -10.141932 ], [ 33.222656, -9.622414 ], [ 33.046875, -9.622414 ], [ 33.046875, -9.449062 ] ] ], [ [ [ 33.046875, -9.449062 ], [ 32.695312, -9.449062 ], [ 32.695312, -9.275622 ], [ 33.046875, -9.275622 ], [ 33.046875, -9.449062 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, -9.102097 ], [ 33.046875, -9.275622 ], [ 33.574219, -9.275622 ], [ 33.574219, -9.449062 ], [ 33.750000, -9.449062 ], [ 33.750000, -9.622414 ], [ 33.925781, -9.622414 ], [ 33.925781, -9.795678 ], [ 34.101562, -9.795678 ], [ 34.101562, -10.141932 ], [ 34.277344, -10.141932 ], [ 34.277344, -10.833306 ], [ 34.453125, -10.833306 ], [ 34.453125, -11.867351 ], [ 34.277344, -11.867351 ], [ 34.277344, -12.897489 ], [ 34.453125, -12.897489 ], [ 34.453125, -13.581921 ], [ 34.980469, -13.581921 ], [ 34.980469, -13.752725 ], [ 35.156250, -13.752725 ], [ 35.156250, -13.923404 ], [ 35.332031, -13.923404 ], [ 35.332031, -14.264383 ], [ 35.507812, -14.264383 ], [ 35.507812, -14.604847 ], [ 35.683594, -14.604847 ], [ 35.683594, -15.961329 ], [ 35.332031, -15.961329 ], [ 35.332031, -16.130262 ], [ 35.156250, -16.130262 ], [ 35.156250, -16.467695 ], [ 34.980469, -16.467695 ], [ 34.980469, -16.636192 ], [ 34.804688, -16.636192 ], [ 34.804688, -16.467695 ], [ 34.453125, -16.467695 ], [ 34.453125, -16.299051 ], [ 34.277344, -16.299051 ], [ 34.277344, -15.284185 ], [ 34.453125, -15.284185 ], [ 34.453125, -14.604847 ], [ 34.277344, -14.604847 ], [ 34.277344, -14.434680 ], [ 33.574219, -14.434680 ], [ 33.574219, -14.264383 ], [ 33.222656, -14.264383 ], [ 33.222656, -14.093957 ], [ 33.046875, -14.093957 ], [ 33.046875, -13.923404 ], [ 32.871094, -13.923404 ], [ 32.871094, -13.752725 ], [ 32.519531, -13.752725 ], [ 32.519531, -13.410994 ], [ 32.695312, -13.410994 ], [ 32.695312, -13.068777 ], [ 32.871094, -13.068777 ], [ 32.871094, -12.726084 ], [ 33.046875, -12.726084 ], [ 33.046875, -12.554564 ], [ 33.222656, -12.554564 ], [ 33.222656, -12.039321 ], [ 33.046875, -12.039321 ], [ 33.046875, -11.178402 ], [ 33.222656, -11.178402 ], [ 33.222656, -10.660608 ], [ 33.398438, -10.660608 ], [ 33.398438, -10.141932 ], [ 33.222656, -10.141932 ], [ 33.222656, -9.622414 ], [ 33.046875, -9.622414 ], [ 33.046875, -9.449062 ], [ 32.871094, -9.449062 ], [ 32.871094, -9.275622 ], [ 32.695312, -9.275622 ], [ 32.695312, -9.102097 ], [ 33.046875, -9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, -10.487812 ], [ 40.253906, -10.660608 ], [ 40.429688, -10.660608 ], [ 40.429688, -12.211180 ], [ 40.605469, -12.211180 ], [ 40.605469, -14.604847 ], [ 40.781250, -14.604847 ], [ 40.781250, -14.944785 ], [ 40.605469, -14.944785 ], [ 40.605469, -15.284185 ], [ 40.429688, -15.284185 ], [ 40.429688, -15.623037 ], [ 40.253906, -15.623037 ], [ 40.253906, -15.961329 ], [ 40.078125, -15.961329 ], [ 40.078125, -16.299051 ], [ 39.902344, -16.299051 ], [ 39.902344, -16.467695 ], [ 39.726562, -16.467695 ], [ 39.726562, -16.636192 ], [ 39.550781, -16.636192 ], [ 39.550781, -16.804541 ], [ 39.199219, -16.804541 ], [ 39.199219, -16.972741 ], [ 38.847656, -16.972741 ], [ 38.847656, -17.140790 ], [ 38.496094, -17.140790 ], [ 38.496094, -17.308688 ], [ 38.144531, -17.308688 ], [ 38.144531, -17.476432 ], [ 37.792969, -17.476432 ], [ 37.792969, -17.644022 ], [ 37.441406, -17.644022 ], [ 37.441406, -17.811456 ], [ 37.265625, -17.811456 ], [ 37.265625, -17.978733 ], [ 37.089844, -17.978733 ], [ 37.089844, -18.145852 ], [ 36.738281, -18.145852 ], [ 36.738281, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.479609 ], [ 36.386719, -18.479609 ], [ 36.386719, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.812718 ], [ 35.859375, -18.812718 ], [ 35.859375, -18.979026 ], [ 35.683594, -18.979026 ], [ 35.683594, -19.145168 ], [ 35.507812, -19.145168 ], [ 35.507812, -19.311143 ], [ 35.332031, -19.311143 ], [ 35.332031, -19.476950 ], [ 35.156250, -19.476950 ], [ 35.156250, -19.642588 ], [ 34.980469, -19.642588 ], [ 34.980469, -19.808054 ], [ 34.804688, -19.808054 ], [ 34.804688, -20.138470 ], [ 34.628906, -20.138470 ], [ 34.628906, -20.632784 ], [ 34.804688, -20.632784 ], [ 34.804688, -20.961440 ], [ 34.980469, -20.961440 ], [ 34.980469, -21.289374 ], [ 35.156250, -21.289374 ], [ 35.156250, -21.616579 ], [ 35.332031, -21.616579 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.105999 ], [ 35.507812, -23.402765 ], [ 35.332031, -23.402765 ], [ 35.332031, -23.725012 ], [ 35.683594, -23.725012 ], [ 35.683594, -23.885838 ], [ 35.507812, -23.885838 ], [ 35.507812, -24.206890 ], [ 35.332031, -24.206890 ], [ 35.332031, -24.367114 ], [ 35.156250, -24.367114 ], [ 35.156250, -24.527135 ], [ 34.980469, -24.527135 ], [ 34.980469, -24.686952 ], [ 34.628906, -24.686952 ], [ 34.628906, -24.846565 ], [ 34.101562, -24.846565 ], [ 34.101562, -25.005973 ], [ 33.750000, -25.005973 ], [ 33.750000, -25.165173 ], [ 33.398438, -25.165173 ], [ 33.398438, -25.324167 ], [ 33.046875, -25.324167 ], [ 33.046875, -25.482951 ], [ 32.871094, -25.482951 ], [ 32.871094, -25.641526 ], [ 32.695312, -25.641526 ], [ 32.695312, -25.799891 ], [ 32.519531, -25.799891 ], [ 32.519531, -25.958045 ], [ 32.695312, -25.958045 ], [ 32.695312, -26.273714 ], [ 32.871094, -26.273714 ], [ 32.871094, -26.745610 ], [ 31.992188, -26.745610 ], [ 31.992188, -26.115986 ], [ 31.816406, -26.115986 ], [ 31.816406, -25.005973 ], [ 31.992188, -25.005973 ], [ 31.992188, -24.206890 ], [ 31.816406, -24.206890 ], [ 31.816406, -23.885838 ], [ 31.640625, -23.885838 ], [ 31.640625, -23.563987 ], [ 31.464844, -23.563987 ], [ 31.464844, -23.079732 ], [ 31.289062, -23.079732 ], [ 31.289062, -22.593726 ], [ 31.113281, -22.593726 ], [ 31.113281, -22.268764 ], [ 31.289062, -22.268764 ], [ 31.289062, -22.105999 ], [ 31.464844, -22.105999 ], [ 31.464844, -21.943046 ], [ 31.640625, -21.943046 ], [ 31.640625, -21.616579 ], [ 31.816406, -21.616579 ], [ 31.816406, -21.453069 ], [ 31.992188, -21.453069 ], [ 31.992188, -21.289374 ], [ 32.167969, -21.289374 ], [ 32.167969, -20.961440 ], [ 32.343750, -20.961440 ], [ 32.343750, -20.632784 ], [ 32.519531, -20.632784 ], [ 32.519531, -20.468189 ], [ 32.695312, -20.468189 ], [ 32.695312, -18.312811 ], [ 32.871094, -18.312811 ], [ 32.871094, -16.636192 ], [ 32.519531, -16.636192 ], [ 32.519531, -16.467695 ], [ 31.992188, -16.467695 ], [ 31.992188, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -16.130262 ], [ 31.464844, -16.130262 ], [ 31.464844, -15.961329 ], [ 31.113281, -15.961329 ], [ 31.113281, -15.792254 ], [ 30.937500, -15.792254 ], [ 30.937500, -15.961329 ], [ 30.410156, -15.961329 ], [ 30.410156, -15.792254 ], [ 30.234375, -15.792254 ], [ 30.234375, -14.774883 ], [ 30.585938, -14.774883 ], [ 30.585938, -14.604847 ], [ 31.289062, -14.604847 ], [ 31.289062, -14.434680 ], [ 31.816406, -14.434680 ], [ 31.816406, -14.264383 ], [ 32.343750, -14.264383 ], [ 32.343750, -14.093957 ], [ 33.046875, -14.093957 ], [ 33.046875, -13.923404 ], [ 33.222656, -13.923404 ], [ 33.222656, -14.093957 ], [ 33.398438, -14.093957 ], [ 33.398438, -14.264383 ], [ 33.574219, -14.264383 ], [ 33.574219, -14.434680 ], [ 34.101562, -14.434680 ], [ 34.101562, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 34.277344, -15.284185 ], [ 34.277344, -15.792254 ], [ 34.453125, -15.792254 ], [ 34.453125, -16.299051 ], [ 34.628906, -16.299051 ], [ 34.628906, -16.467695 ], [ 34.804688, -16.467695 ], [ 34.804688, -16.804541 ], [ 34.980469, -16.804541 ], [ 34.980469, -16.636192 ], [ 35.156250, -16.636192 ], [ 35.156250, -16.299051 ], [ 35.332031, -16.299051 ], [ 35.332031, -16.130262 ], [ 35.683594, -16.130262 ], [ 35.683594, -15.961329 ], [ 35.859375, -15.961329 ], [ 35.859375, -15.284185 ], [ 35.683594, -15.284185 ], [ 35.683594, -14.434680 ], [ 35.507812, -14.434680 ], [ 35.507812, -14.093957 ], [ 35.332031, -14.093957 ], [ 35.332031, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -13.752725 ], [ 34.980469, -13.752725 ], [ 34.980469, -13.581921 ], [ 34.628906, -13.581921 ], [ 34.628906, -13.239945 ], [ 34.453125, -13.239945 ], [ 34.453125, -12.554564 ], [ 34.277344, -12.554564 ], [ 34.277344, -12.039321 ], [ 34.453125, -12.039321 ], [ 34.453125, -11.695273 ], [ 34.628906, -11.695273 ], [ 34.628906, -11.523088 ], [ 35.859375, -11.523088 ], [ 35.859375, -11.695273 ], [ 36.738281, -11.695273 ], [ 36.738281, -11.523088 ], [ 37.792969, -11.523088 ], [ 37.792969, -11.350797 ], [ 38.847656, -11.350797 ], [ 38.847656, -11.178402 ], [ 39.199219, -11.178402 ], [ 39.199219, -11.005904 ], [ 39.550781, -11.005904 ], [ 39.550781, -10.833306 ], [ 39.726562, -10.833306 ], [ 39.726562, -10.660608 ], [ 40.078125, -10.660608 ], [ 40.078125, -10.487812 ], [ 40.253906, -10.487812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.429688, -10.487812 ], [ 40.429688, -14.434680 ], [ 40.605469, -14.434680 ], [ 40.605469, -14.944785 ], [ 40.429688, -14.944785 ], [ 40.429688, -15.453680 ], [ 40.253906, -15.453680 ], [ 40.253906, -15.792254 ], [ 40.078125, -15.792254 ], [ 40.078125, -16.130262 ], [ 39.902344, -16.130262 ], [ 39.902344, -16.299051 ], [ 39.726562, -16.299051 ], [ 39.726562, -16.467695 ], [ 39.550781, -16.467695 ], [ 39.550781, -16.636192 ], [ 39.199219, -16.636192 ], [ 39.199219, -16.804541 ], [ 38.847656, -16.804541 ], [ 38.847656, -16.972741 ], [ 38.320312, -16.972741 ], [ 38.320312, -17.140790 ], [ 37.968750, -17.140790 ], [ 37.968750, -17.308688 ], [ 37.617188, -17.308688 ], [ 37.617188, -17.476432 ], [ 37.265625, -17.476432 ], [ 37.265625, -17.644022 ], [ 37.089844, -17.644022 ], [ 37.089844, -17.811456 ], [ 36.914062, -17.811456 ], [ 36.914062, -17.978733 ], [ 36.738281, -17.978733 ], [ 36.738281, -18.312811 ], [ 36.562500, -18.312811 ], [ 36.562500, -18.479609 ], [ 36.386719, -18.479609 ], [ 36.386719, -18.646245 ], [ 36.210938, -18.646245 ], [ 36.210938, -18.812718 ], [ 35.859375, -18.812718 ], [ 35.859375, -18.979026 ], [ 35.683594, -18.979026 ], [ 35.683594, -19.145168 ], [ 35.507812, -19.145168 ], [ 35.507812, -19.311143 ], [ 35.332031, -19.311143 ], [ 35.332031, -19.476950 ], [ 34.980469, -19.476950 ], [ 34.980469, -19.642588 ], [ 34.628906, -19.642588 ], [ 34.628906, -20.632784 ], [ 34.804688, -20.632784 ], [ 34.804688, -20.797201 ], [ 34.980469, -20.797201 ], [ 34.980469, -21.125498 ], [ 35.156250, -21.125498 ], [ 35.156250, -21.453069 ], [ 35.332031, -21.453069 ], [ 35.332031, -22.105999 ], [ 35.507812, -22.105999 ], [ 35.507812, -23.241346 ], [ 35.332031, -23.241346 ], [ 35.332031, -23.563987 ], [ 35.507812, -23.563987 ], [ 35.507812, -23.885838 ], [ 35.332031, -23.885838 ], [ 35.332031, -24.206890 ], [ 35.156250, -24.206890 ], [ 35.156250, -24.367114 ], [ 34.804688, -24.367114 ], [ 34.804688, -24.527135 ], [ 34.453125, -24.527135 ], [ 34.453125, -24.686952 ], [ 34.101562, -24.686952 ], [ 34.101562, -24.846565 ], [ 33.750000, -24.846565 ], [ 33.750000, -25.005973 ], [ 33.398438, -25.005973 ], [ 33.398438, -25.165173 ], [ 33.046875, -25.165173 ], [ 33.046875, -25.324167 ], [ 32.871094, -25.324167 ], [ 32.871094, -25.482951 ], [ 32.695312, -25.482951 ], [ 32.695312, -25.641526 ], [ 32.519531, -25.641526 ], [ 32.519531, -26.115986 ], [ 32.871094, -26.115986 ], [ 32.871094, -26.431228 ], [ 32.695312, -26.431228 ], [ 32.695312, -26.588527 ], [ 31.992188, -26.588527 ], [ 31.992188, -26.431228 ], [ 31.816406, -26.431228 ], [ 31.816406, -25.641526 ], [ 31.640625, -25.641526 ], [ 31.640625, -25.005973 ], [ 31.816406, -25.005973 ], [ 31.816406, -24.046464 ], [ 31.640625, -24.046464 ], [ 31.640625, -23.402765 ], [ 31.464844, -23.402765 ], [ 31.464844, -22.917923 ], [ 31.289062, -22.917923 ], [ 31.289062, -22.431340 ], [ 31.113281, -22.431340 ], [ 31.113281, -22.105999 ], [ 31.289062, -22.105999 ], [ 31.289062, -21.943046 ], [ 31.464844, -21.943046 ], [ 31.464844, -21.779905 ], [ 31.640625, -21.779905 ], [ 31.640625, -21.453069 ], [ 31.816406, -21.453069 ], [ 31.816406, -21.289374 ], [ 31.992188, -21.289374 ], [ 31.992188, -21.125498 ], [ 32.167969, -21.125498 ], [ 32.167969, -20.632784 ], [ 32.343750, -20.632784 ], [ 32.343750, -20.303418 ], [ 32.519531, -20.303418 ], [ 32.519531, -19.973349 ], [ 32.695312, -19.973349 ], [ 32.695312, -19.476950 ], [ 32.519531, -19.476950 ], [ 32.519531, -18.312811 ], [ 32.695312, -18.312811 ], [ 32.695312, -16.636192 ], [ 32.519531, -16.636192 ], [ 32.519531, -16.467695 ], [ 32.167969, -16.467695 ], [ 32.167969, -16.299051 ], [ 31.640625, -16.299051 ], [ 31.640625, -16.130262 ], [ 31.464844, -16.130262 ], [ 31.464844, -15.961329 ], [ 31.113281, -15.961329 ], [ 31.113281, -15.792254 ], [ 30.234375, -15.792254 ], [ 30.234375, -15.114553 ], [ 30.058594, -15.114553 ], [ 30.058594, -14.774883 ], [ 30.410156, -14.774883 ], [ 30.410156, -14.604847 ], [ 31.113281, -14.604847 ], [ 31.113281, -14.434680 ], [ 31.640625, -14.434680 ], [ 31.640625, -14.264383 ], [ 32.167969, -14.264383 ], [ 32.167969, -14.093957 ], [ 32.871094, -14.093957 ], [ 32.871094, -13.923404 ], [ 33.046875, -13.923404 ], [ 33.046875, -14.093957 ], [ 33.222656, -14.093957 ], [ 33.222656, -14.264383 ], [ 33.574219, -14.264383 ], [ 33.574219, -14.434680 ], [ 34.277344, -14.434680 ], [ 34.277344, -14.604847 ], [ 34.453125, -14.604847 ], [ 34.453125, -15.284185 ], [ 34.277344, -15.284185 ], [ 34.277344, -16.299051 ], [ 34.453125, -16.299051 ], [ 34.453125, -16.467695 ], [ 34.804688, -16.467695 ], [ 34.804688, -16.636192 ], [ 34.980469, -16.636192 ], [ 34.980469, -16.467695 ], [ 35.156250, -16.467695 ], [ 35.156250, -16.130262 ], [ 35.332031, -16.130262 ], [ 35.332031, -15.961329 ], [ 35.683594, -15.961329 ], [ 35.683594, -14.604847 ], [ 35.507812, -14.604847 ], [ 35.507812, -14.264383 ], [ 35.332031, -14.264383 ], [ 35.332031, -13.923404 ], [ 35.156250, -13.923404 ], [ 35.156250, -13.752725 ], [ 34.980469, -13.752725 ], [ 34.980469, -13.581921 ], [ 34.453125, -13.581921 ], [ 34.453125, -12.897489 ], [ 34.277344, -12.897489 ], [ 34.277344, -11.867351 ], [ 34.453125, -11.867351 ], [ 34.453125, -11.350797 ], [ 35.332031, -11.350797 ], [ 35.332031, -11.523088 ], [ 36.035156, -11.523088 ], [ 36.035156, -11.695273 ], [ 36.738281, -11.695273 ], [ 36.738281, -11.523088 ], [ 37.617188, -11.523088 ], [ 37.617188, -11.350797 ], [ 37.792969, -11.350797 ], [ 37.792969, -11.178402 ], [ 38.671875, -11.178402 ], [ 38.671875, -11.005904 ], [ 39.199219, -11.005904 ], [ 39.199219, -10.833306 ], [ 39.550781, -10.833306 ], [ 39.550781, -10.660608 ], [ 39.902344, -10.660608 ], [ 39.902344, -10.487812 ], [ 40.429688, -10.487812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, -17.644022 ], [ 25.136719, -17.811456 ], [ 25.312500, -17.811456 ], [ 25.312500, -17.978733 ], [ 25.488281, -17.978733 ], [ 25.488281, -18.312811 ], [ 25.664062, -18.312811 ], [ 25.664062, -18.646245 ], [ 25.839844, -18.646245 ], [ 25.839844, -18.812718 ], [ 26.015625, -18.812718 ], [ 26.015625, -19.145168 ], [ 26.191406, -19.145168 ], [ 26.191406, -19.476950 ], [ 26.367188, -19.476950 ], [ 26.367188, -19.642588 ], [ 26.542969, -19.642588 ], [ 26.542969, -19.808054 ], [ 26.718750, -19.808054 ], [ 26.718750, -20.138470 ], [ 26.894531, -20.138470 ], [ 26.894531, -20.303418 ], [ 27.070312, -20.303418 ], [ 27.070312, -20.468189 ], [ 27.773438, -20.468189 ], [ 27.773438, -21.125498 ], [ 27.949219, -21.125498 ], [ 27.949219, -21.453069 ], [ 28.300781, -21.453069 ], [ 28.300781, -21.616579 ], [ 28.828125, -21.616579 ], [ 28.828125, -21.779905 ], [ 29.003906, -21.779905 ], [ 29.003906, -21.943046 ], [ 29.179688, -21.943046 ], [ 29.179688, -22.105999 ], [ 29.355469, -22.105999 ], [ 29.355469, -22.268764 ], [ 29.003906, -22.268764 ], [ 29.003906, -22.431340 ], [ 28.652344, -22.431340 ], [ 28.652344, -22.593726 ], [ 28.300781, -22.593726 ], [ 28.300781, -22.755921 ], [ 27.949219, -22.755921 ], [ 27.949219, -22.917923 ], [ 27.773438, -22.917923 ], [ 27.773438, -23.079732 ], [ 27.597656, -23.079732 ], [ 27.597656, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.402765 ], [ 27.246094, -23.402765 ], [ 27.246094, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.725012 ], [ 26.894531, -23.725012 ], [ 26.894531, -24.046464 ], [ 26.718750, -24.046464 ], [ 26.718750, -24.527135 ], [ 26.542969, -24.527135 ], [ 26.542969, -24.686952 ], [ 26.015625, -24.686952 ], [ 26.015625, -25.005973 ], [ 25.839844, -25.005973 ], [ 25.839844, -25.324167 ], [ 25.664062, -25.324167 ], [ 25.664062, -25.482951 ], [ 25.488281, -25.482951 ], [ 25.488281, -25.641526 ], [ 24.082031, -25.641526 ], [ 24.082031, -25.482951 ], [ 23.730469, -25.482951 ], [ 23.730469, -25.324167 ], [ 23.203125, -25.324167 ], [ 23.203125, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.641526 ], [ 22.675781, -25.641526 ], [ 22.675781, -25.958045 ], [ 22.500000, -25.958045 ], [ 22.500000, -26.115986 ], [ 22.324219, -26.115986 ], [ 22.324219, -26.273714 ], [ 22.148438, -26.273714 ], [ 22.148438, -26.431228 ], [ 21.972656, -26.431228 ], [ 21.972656, -26.588527 ], [ 21.796875, -26.588527 ], [ 21.796875, -26.745610 ], [ 21.445312, -26.745610 ], [ 21.445312, -26.902477 ], [ 20.917969, -26.902477 ], [ 20.917969, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -25.641526 ], [ 20.566406, -25.641526 ], [ 20.566406, -25.324167 ], [ 20.390625, -25.324167 ], [ 20.390625, -25.005973 ], [ 20.214844, -25.005973 ], [ 20.214844, -24.846565 ], [ 19.863281, -24.846565 ], [ 19.863281, -21.779905 ], [ 20.917969, -21.779905 ], [ 20.917969, -18.312811 ], [ 21.445312, -18.312811 ], [ 21.445312, -18.145852 ], [ 22.148438, -18.145852 ], [ 22.148438, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -17.811456 ], [ 23.203125, -17.811456 ], [ 23.203125, -17.978733 ], [ 23.378906, -17.978733 ], [ 23.378906, -18.312811 ], [ 23.730469, -18.312811 ], [ 23.730469, -18.145852 ], [ 24.082031, -18.145852 ], [ 24.082031, -17.978733 ], [ 24.257812, -17.978733 ], [ 24.257812, -17.811456 ], [ 24.960938, -17.811456 ], [ 24.960938, -17.644022 ], [ 25.136719, -17.644022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, -17.644022 ], [ 25.136719, -17.978733 ], [ 25.312500, -17.978733 ], [ 25.312500, -18.312811 ], [ 25.488281, -18.312811 ], [ 25.488281, -18.646245 ], [ 25.839844, -18.646245 ], [ 25.839844, -18.979026 ], [ 26.015625, -18.979026 ], [ 26.015625, -19.311143 ], [ 26.191406, -19.311143 ], [ 26.191406, -19.476950 ], [ 26.367188, -19.476950 ], [ 26.367188, -19.642588 ], [ 26.542969, -19.642588 ], [ 26.542969, -19.808054 ], [ 26.718750, -19.808054 ], [ 26.718750, -19.973349 ], [ 26.894531, -19.973349 ], [ 26.894531, -20.138470 ], [ 27.070312, -20.138470 ], [ 27.070312, -20.303418 ], [ 27.246094, -20.303418 ], [ 27.246094, -20.468189 ], [ 27.597656, -20.468189 ], [ 27.597656, -20.961440 ], [ 27.773438, -20.961440 ], [ 27.773438, -21.289374 ], [ 27.949219, -21.289374 ], [ 27.949219, -21.453069 ], [ 28.125000, -21.453069 ], [ 28.125000, -21.616579 ], [ 28.652344, -21.616579 ], [ 28.652344, -21.779905 ], [ 29.003906, -21.779905 ], [ 29.003906, -21.943046 ], [ 29.355469, -21.943046 ], [ 29.355469, -22.105999 ], [ 29.003906, -22.105999 ], [ 29.003906, -22.268764 ], [ 28.828125, -22.268764 ], [ 28.828125, -22.431340 ], [ 28.476562, -22.431340 ], [ 28.476562, -22.593726 ], [ 28.125000, -22.593726 ], [ 28.125000, -22.755921 ], [ 27.949219, -22.755921 ], [ 27.949219, -22.917923 ], [ 27.773438, -22.917923 ], [ 27.773438, -23.079732 ], [ 27.597656, -23.079732 ], [ 27.597656, -23.241346 ], [ 27.421875, -23.241346 ], [ 27.421875, -23.402765 ], [ 27.246094, -23.402765 ], [ 27.246094, -23.563987 ], [ 27.070312, -23.563987 ], [ 27.070312, -23.725012 ], [ 26.894531, -23.725012 ], [ 26.894531, -24.046464 ], [ 26.718750, -24.046464 ], [ 26.718750, -24.367114 ], [ 26.542969, -24.367114 ], [ 26.542969, -24.527135 ], [ 26.191406, -24.527135 ], [ 26.191406, -24.686952 ], [ 25.839844, -24.686952 ], [ 25.839844, -25.005973 ], [ 25.664062, -25.005973 ], [ 25.664062, -25.482951 ], [ 25.488281, -25.482951 ], [ 25.488281, -25.641526 ], [ 23.906250, -25.641526 ], [ 23.906250, -25.482951 ], [ 23.730469, -25.482951 ], [ 23.730469, -25.324167 ], [ 23.378906, -25.324167 ], [ 23.378906, -25.165173 ], [ 23.203125, -25.165173 ], [ 23.203125, -25.324167 ], [ 22.851562, -25.324167 ], [ 22.851562, -25.482951 ], [ 22.675781, -25.482951 ], [ 22.675781, -25.799891 ], [ 22.500000, -25.799891 ], [ 22.500000, -26.115986 ], [ 22.148438, -26.115986 ], [ 22.148438, -26.273714 ], [ 21.972656, -26.273714 ], [ 21.972656, -26.431228 ], [ 21.621094, -26.431228 ], [ 21.621094, -26.588527 ], [ 21.269531, -26.588527 ], [ 21.269531, -26.745610 ], [ 20.742188, -26.745610 ], [ 20.742188, -26.588527 ], [ 20.566406, -26.588527 ], [ 20.566406, -26.115986 ], [ 20.742188, -26.115986 ], [ 20.742188, -25.799891 ], [ 20.566406, -25.799891 ], [ 20.566406, -25.482951 ], [ 20.390625, -25.482951 ], [ 20.390625, -25.324167 ], [ 20.214844, -25.324167 ], [ 20.214844, -25.005973 ], [ 20.039062, -25.005973 ], [ 20.039062, -24.846565 ], [ 19.863281, -24.846565 ], [ 19.863281, -21.779905 ], [ 20.742188, -21.779905 ], [ 20.742188, -18.145852 ], [ 22.148438, -18.145852 ], [ 22.148438, -17.978733 ], [ 22.851562, -17.978733 ], [ 22.851562, -17.811456 ], [ 23.027344, -17.811456 ], [ 23.027344, -17.978733 ], [ 23.378906, -17.978733 ], [ 23.378906, -18.145852 ], [ 23.730469, -18.145852 ], [ 23.730469, -17.978733 ], [ 24.082031, -17.978733 ], [ 24.082031, -17.811456 ], [ 24.785156, -17.811456 ], [ 24.785156, -17.644022 ], [ 25.136719, -17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.761719, -22.105999 ], [ 30.761719, -22.268764 ], [ 31.113281, -22.268764 ], [ 31.113281, -22.593726 ], [ 31.289062, -22.593726 ], [ 31.289062, -23.079732 ], [ 31.464844, -23.079732 ], [ 31.464844, -23.563987 ], [ 31.640625, -23.563987 ], [ 31.640625, -23.885838 ], [ 31.816406, -23.885838 ], [ 31.816406, -24.206890 ], [ 31.992188, -24.206890 ], [ 31.992188, -25.005973 ], [ 31.816406, -25.005973 ], [ 31.816406, -25.799891 ], [ 31.464844, -25.799891 ], [ 31.464844, -25.641526 ], [ 31.289062, -25.641526 ], [ 31.289062, -25.799891 ], [ 31.113281, -25.799891 ], [ 31.113281, -25.958045 ], [ 30.937500, -25.958045 ], [ 30.937500, -26.273714 ], [ 30.761719, -26.273714 ], [ 30.761719, -26.902477 ], [ 30.937500, -26.902477 ], [ 30.937500, -27.059126 ], [ 31.113281, -27.059126 ], [ 31.113281, -27.215556 ], [ 31.816406, -27.215556 ], [ 31.816406, -27.059126 ], [ 31.992188, -27.059126 ], [ 31.992188, -26.745610 ], [ 32.871094, -26.745610 ], [ 32.871094, -27.059126 ], [ 32.695312, -27.059126 ], [ 32.695312, -27.371767 ], [ 32.519531, -27.371767 ], [ 32.519531, -28.459033 ], [ 32.343750, -28.459033 ], [ 32.343750, -28.767659 ], [ 32.167969, -28.767659 ], [ 32.167969, -28.921631 ], [ 31.992188, -28.921631 ], [ 31.992188, -29.075375 ], [ 31.640625, -29.075375 ], [ 31.640625, -29.228890 ], [ 31.464844, -29.228890 ], [ 31.464844, -29.382175 ], [ 31.289062, -29.382175 ], [ 31.289062, -29.535230 ], [ 31.113281, -29.535230 ], [ 31.113281, -29.840644 ], [ 30.937500, -29.840644 ], [ 30.937500, -29.993002 ], [ 30.761719, -29.993002 ], [ 30.761719, -30.297018 ], [ 30.585938, -30.297018 ], [ 30.585938, -30.600094 ], [ 30.410156, -30.600094 ], [ 30.410156, -30.902225 ], [ 30.234375, -30.902225 ], [ 30.234375, -31.203405 ], [ 30.058594, -31.203405 ], [ 30.058594, -31.353637 ], [ 29.882812, -31.353637 ], [ 29.882812, -31.503629 ], [ 29.707031, -31.503629 ], [ 29.707031, -31.653381 ], [ 29.531250, -31.653381 ], [ 29.531250, -31.802893 ], [ 29.355469, -31.802893 ], [ 29.355469, -31.952162 ], [ 29.179688, -31.952162 ], [ 29.179688, -32.101190 ], [ 29.003906, -32.101190 ], [ 29.003906, -32.249974 ], [ 28.828125, -32.249974 ], [ 28.828125, -32.398516 ], [ 28.652344, -32.398516 ], [ 28.652344, -32.694866 ], [ 28.476562, -32.694866 ], [ 28.476562, -32.842674 ], [ 28.300781, -32.842674 ], [ 28.300781, -32.990236 ], [ 27.949219, -32.990236 ], [ 27.949219, -33.137551 ], [ 27.597656, -33.137551 ], [ 27.597656, -33.284620 ], [ 27.246094, -33.284620 ], [ 27.246094, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.578015 ], [ 26.191406, -33.578015 ], [ 26.191406, -33.724340 ], [ 25.839844, -33.724340 ], [ 25.839844, -34.016242 ], [ 25.488281, -34.016242 ], [ 25.488281, -33.870416 ], [ 24.785156, -33.870416 ], [ 24.785156, -34.016242 ], [ 24.257812, -34.016242 ], [ 24.257812, -33.870416 ], [ 23.730469, -33.870416 ], [ 23.730469, -33.724340 ], [ 23.378906, -33.724340 ], [ 23.378906, -33.870416 ], [ 22.500000, -33.870416 ], [ 22.500000, -34.016242 ], [ 22.148438, -34.016242 ], [ 22.148438, -34.161818 ], [ 21.796875, -34.161818 ], [ 21.796875, -34.307144 ], [ 21.269531, -34.307144 ], [ 21.269531, -34.452218 ], [ 20.742188, -34.452218 ], [ 20.742188, -34.597042 ], [ 20.390625, -34.597042 ], [ 20.390625, -34.741612 ], [ 20.039062, -34.741612 ], [ 20.039062, -34.885931 ], [ 19.511719, -34.885931 ], [ 19.511719, -34.741612 ], [ 19.335938, -34.741612 ], [ 19.335938, -34.597042 ], [ 19.160156, -34.597042 ], [ 19.160156, -34.452218 ], [ 18.632812, -34.452218 ], [ 18.632812, -34.161818 ], [ 18.457031, -34.161818 ], [ 18.457031, -34.016242 ], [ 18.281250, -34.016242 ], [ 18.281250, -33.137551 ], [ 18.105469, -33.137551 ], [ 18.105469, -32.842674 ], [ 17.929688, -32.842674 ], [ 17.929688, -32.546813 ], [ 18.281250, -32.546813 ], [ 18.281250, -31.653381 ], [ 18.105469, -31.653381 ], [ 18.105469, -31.353637 ], [ 17.929688, -31.353637 ], [ 17.929688, -31.203405 ], [ 17.753906, -31.203405 ], [ 17.753906, -30.902225 ], [ 17.578125, -30.902225 ], [ 17.578125, -30.600094 ], [ 17.402344, -30.600094 ], [ 17.402344, -30.297018 ], [ 17.226562, -30.297018 ], [ 17.226562, -29.993002 ], [ 17.050781, -29.993002 ], [ 17.050781, -29.688053 ], [ 16.875000, -29.688053 ], [ 16.875000, -29.382175 ], [ 16.699219, -29.382175 ], [ 16.699219, -29.075375 ], [ 16.523438, -29.075375 ], [ 16.523438, -28.767659 ], [ 16.347656, -28.767659 ], [ 16.347656, -28.613459 ], [ 16.523438, -28.613459 ], [ 16.523438, -28.459033 ], [ 16.699219, -28.459033 ], [ 16.699219, -28.304381 ], [ 17.226562, -28.304381 ], [ 17.226562, -28.613459 ], [ 17.402344, -28.613459 ], [ 17.402344, -28.921631 ], [ 17.929688, -28.921631 ], [ 17.929688, -29.075375 ], [ 18.808594, -29.075375 ], [ 18.808594, -28.921631 ], [ 19.160156, -28.921631 ], [ 19.160156, -28.767659 ], [ 19.511719, -28.767659 ], [ 19.511719, -28.613459 ], [ 19.863281, -28.613459 ], [ 19.863281, -24.846565 ], [ 20.214844, -24.846565 ], [ 20.214844, -25.005973 ], [ 20.390625, -25.005973 ], [ 20.390625, -25.324167 ], [ 20.566406, -25.324167 ], [ 20.566406, -25.641526 ], [ 20.742188, -25.641526 ], [ 20.742188, -26.745610 ], [ 20.917969, -26.745610 ], [ 20.917969, -26.902477 ], [ 21.445312, -26.902477 ], [ 21.445312, -26.745610 ], [ 21.796875, -26.745610 ], [ 21.796875, -26.588527 ], [ 21.972656, -26.588527 ], [ 21.972656, -26.431228 ], [ 22.148438, -26.431228 ], [ 22.148438, -26.273714 ], [ 22.324219, -26.273714 ], [ 22.324219, -26.115986 ], [ 22.500000, -26.115986 ], [ 22.500000, -25.958045 ], [ 22.675781, -25.958045 ], [ 22.675781, -25.641526 ], [ 22.851562, -25.641526 ], [ 22.851562, -25.482951 ], [ 23.203125, -25.482951 ], [ 23.203125, -25.324167 ], [ 23.730469, -25.324167 ], [ 23.730469, -25.482951 ], [ 24.082031, -25.482951 ], [ 24.082031, -25.641526 ], [ 25.488281, -25.641526 ], [ 25.488281, -25.482951 ], [ 25.664062, -25.482951 ], [ 25.664062, -25.324167 ], [ 25.839844, -25.324167 ], [ 25.839844, -25.005973 ], [ 26.015625, -25.005973 ], [ 26.015625, -24.686952 ], [ 26.542969, -24.686952 ], [ 26.542969, -24.527135 ], [ 26.718750, -24.527135 ], [ 26.718750, -24.046464 ], [ 26.894531, -24.046464 ], [ 26.894531, -23.725012 ], [ 27.070312, -23.725012 ], [ 27.070312, -23.563987 ], [ 27.246094, -23.563987 ], [ 27.246094, -23.402765 ], [ 27.421875, -23.402765 ], [ 27.421875, -23.241346 ], [ 27.597656, -23.241346 ], [ 27.597656, -23.079732 ], [ 27.773438, -23.079732 ], [ 27.773438, -22.917923 ], [ 27.949219, -22.917923 ], [ 27.949219, -22.755921 ], [ 28.300781, -22.755921 ], [ 28.300781, -22.593726 ], [ 28.652344, -22.593726 ], [ 28.652344, -22.431340 ], [ 29.003906, -22.431340 ], [ 29.003906, -22.268764 ], [ 29.355469, -22.268764 ], [ 29.355469, -22.105999 ], [ 30.058594, -22.105999 ], [ 30.058594, -22.268764 ], [ 30.585938, -22.268764 ], [ 30.585938, -22.105999 ], [ 30.761719, -22.105999 ] ], [ [ 28.300781, -28.921631 ], [ 28.125000, -28.921631 ], [ 28.125000, -29.075375 ], [ 27.773438, -29.075375 ], [ 27.773438, -29.228890 ], [ 27.597656, -29.228890 ], [ 27.597656, -29.382175 ], [ 27.421875, -29.382175 ], [ 27.421875, -29.535230 ], [ 27.246094, -29.535230 ], [ 27.246094, -29.840644 ], [ 27.070312, -29.840644 ], [ 27.070312, -29.993002 ], [ 27.246094, -29.993002 ], [ 27.246094, -30.145127 ], [ 27.421875, -30.145127 ], [ 27.421875, -30.448674 ], [ 27.597656, -30.448674 ], [ 27.597656, -30.600094 ], [ 28.125000, -30.600094 ], [ 28.125000, -30.448674 ], [ 28.300781, -30.448674 ], [ 28.300781, -30.297018 ], [ 28.652344, -30.297018 ], [ 28.652344, -30.145127 ], [ 28.828125, -30.145127 ], [ 28.828125, -29.993002 ], [ 29.003906, -29.993002 ], [ 29.003906, -29.688053 ], [ 29.179688, -29.688053 ], [ 29.179688, -29.382175 ], [ 29.355469, -29.382175 ], [ 29.355469, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -29.075375 ], [ 29.003906, -29.075375 ], [ 29.003906, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -28.767659 ], [ 28.300781, -28.767659 ], [ 28.300781, -28.921631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.707031, -21.943046 ], [ 29.707031, -22.105999 ], [ 30.058594, -22.105999 ], [ 30.058594, -22.268764 ], [ 30.585938, -22.268764 ], [ 30.585938, -22.105999 ], [ 31.113281, -22.105999 ], [ 31.113281, -22.431340 ], [ 31.289062, -22.431340 ], [ 31.289062, -22.917923 ], [ 31.464844, -22.917923 ], [ 31.464844, -23.402765 ], [ 31.640625, -23.402765 ], [ 31.640625, -24.046464 ], [ 31.816406, -24.046464 ], [ 31.816406, -25.005973 ], [ 31.640625, -25.005973 ], [ 31.640625, -25.641526 ], [ 31.816406, -25.641526 ], [ 31.816406, -25.799891 ], [ 31.464844, -25.799891 ], [ 31.464844, -25.641526 ], [ 30.937500, -25.641526 ], [ 30.937500, -26.115986 ], [ 30.761719, -26.115986 ], [ 30.761719, -26.273714 ], [ 30.585938, -26.273714 ], [ 30.585938, -26.902477 ], [ 30.761719, -26.902477 ], [ 30.761719, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -27.215556 ], [ 31.640625, -27.215556 ], [ 31.640625, -27.059126 ], [ 31.816406, -27.059126 ], [ 31.816406, -26.902477 ], [ 31.992188, -26.902477 ], [ 31.992188, -26.588527 ], [ 32.695312, -26.588527 ], [ 32.695312, -27.059126 ], [ 32.519531, -27.059126 ], [ 32.519531, -27.839076 ], [ 32.343750, -27.839076 ], [ 32.343750, -28.459033 ], [ 32.167969, -28.459033 ], [ 32.167969, -28.767659 ], [ 31.992188, -28.767659 ], [ 31.992188, -28.921631 ], [ 31.816406, -28.921631 ], [ 31.816406, -29.075375 ], [ 31.640625, -29.075375 ], [ 31.640625, -29.228890 ], [ 31.464844, -29.228890 ], [ 31.464844, -29.382175 ], [ 31.289062, -29.382175 ], [ 31.289062, -29.535230 ], [ 31.113281, -29.535230 ], [ 31.113281, -29.688053 ], [ 30.937500, -29.688053 ], [ 30.937500, -29.840644 ], [ 30.761719, -29.840644 ], [ 30.761719, -30.145127 ], [ 30.585938, -30.145127 ], [ 30.585938, -30.448674 ], [ 30.410156, -30.448674 ], [ 30.410156, -30.600094 ], [ 30.234375, -30.600094 ], [ 30.234375, -30.902225 ], [ 30.058594, -30.902225 ], [ 30.058594, -31.052934 ], [ 29.882812, -31.052934 ], [ 29.882812, -31.203405 ], [ 29.707031, -31.203405 ], [ 29.707031, -31.353637 ], [ 29.531250, -31.353637 ], [ 29.531250, -31.503629 ], [ 29.355469, -31.503629 ], [ 29.355469, -31.802893 ], [ 29.179688, -31.802893 ], [ 29.179688, -31.952162 ], [ 29.003906, -31.952162 ], [ 29.003906, -32.101190 ], [ 28.828125, -32.101190 ], [ 28.828125, -32.249974 ], [ 28.652344, -32.249974 ], [ 28.652344, -32.398516 ], [ 28.476562, -32.398516 ], [ 28.476562, -32.546813 ], [ 28.300781, -32.546813 ], [ 28.300781, -32.694866 ], [ 28.125000, -32.694866 ], [ 28.125000, -32.842674 ], [ 27.949219, -32.842674 ], [ 27.949219, -32.990236 ], [ 27.597656, -32.990236 ], [ 27.597656, -33.137551 ], [ 27.421875, -33.137551 ], [ 27.421875, -33.284620 ], [ 27.070312, -33.284620 ], [ 27.070312, -33.431441 ], [ 26.718750, -33.431441 ], [ 26.718750, -33.578015 ], [ 25.839844, -33.578015 ], [ 25.839844, -33.724340 ], [ 25.664062, -33.724340 ], [ 25.664062, -33.870416 ], [ 25.312500, -33.870416 ], [ 25.312500, -33.724340 ], [ 24.960938, -33.724340 ], [ 24.960938, -33.870416 ], [ 23.906250, -33.870416 ], [ 23.906250, -33.724340 ], [ 23.378906, -33.724340 ], [ 23.378906, -33.870416 ], [ 22.148438, -33.870416 ], [ 22.148438, -34.016242 ], [ 21.796875, -34.016242 ], [ 21.796875, -34.161818 ], [ 21.093750, -34.161818 ], [ 21.093750, -34.307144 ], [ 20.566406, -34.307144 ], [ 20.566406, -34.452218 ], [ 20.390625, -34.452218 ], [ 20.390625, -34.597042 ], [ 20.214844, -34.597042 ], [ 20.214844, -34.741612 ], [ 19.335938, -34.741612 ], [ 19.335938, -34.597042 ], [ 19.160156, -34.597042 ], [ 19.160156, -34.452218 ], [ 18.808594, -34.452218 ], [ 18.808594, -34.307144 ], [ 18.632812, -34.307144 ], [ 18.632812, -34.161818 ], [ 18.457031, -34.161818 ], [ 18.457031, -34.016242 ], [ 18.281250, -34.016242 ], [ 18.281250, -33.870416 ], [ 18.105469, -33.870416 ], [ 18.105469, -32.990236 ], [ 17.929688, -32.990236 ], [ 17.929688, -32.694866 ], [ 17.753906, -32.694866 ], [ 17.753906, -32.546813 ], [ 18.105469, -32.546813 ], [ 18.105469, -31.653381 ], [ 17.929688, -31.653381 ], [ 17.929688, -31.353637 ], [ 17.753906, -31.353637 ], [ 17.753906, -31.052934 ], [ 17.578125, -31.052934 ], [ 17.578125, -30.751278 ], [ 17.402344, -30.751278 ], [ 17.402344, -30.448674 ], [ 17.226562, -30.448674 ], [ 17.226562, -30.145127 ], [ 17.050781, -30.145127 ], [ 17.050781, -29.688053 ], [ 16.875000, -29.688053 ], [ 16.875000, -29.382175 ], [ 16.699219, -29.382175 ], [ 16.699219, -29.075375 ], [ 16.523438, -29.075375 ], [ 16.523438, -28.767659 ], [ 16.347656, -28.767659 ], [ 16.347656, -28.459033 ], [ 16.523438, -28.459033 ], [ 16.523438, -28.149503 ], [ 16.875000, -28.149503 ], [ 16.875000, -28.304381 ], [ 17.050781, -28.304381 ], [ 17.050781, -28.613459 ], [ 17.226562, -28.613459 ], [ 17.226562, -28.767659 ], [ 17.929688, -28.767659 ], [ 17.929688, -28.921631 ], [ 19.160156, -28.921631 ], [ 19.160156, -28.767659 ], [ 19.511719, -28.767659 ], [ 19.511719, -28.613459 ], [ 19.863281, -28.613459 ], [ 19.863281, -24.846565 ], [ 20.039062, -24.846565 ], [ 20.039062, -25.005973 ], [ 20.214844, -25.005973 ], [ 20.214844, -25.324167 ], [ 20.390625, -25.324167 ], [ 20.390625, -25.482951 ], [ 20.566406, -25.482951 ], [ 20.566406, -25.799891 ], [ 20.742188, -25.799891 ], [ 20.742188, -26.115986 ], [ 20.566406, -26.115986 ], [ 20.566406, -26.588527 ], [ 20.742188, -26.588527 ], [ 20.742188, -26.745610 ], [ 21.269531, -26.745610 ], [ 21.269531, -26.588527 ], [ 21.621094, -26.588527 ], [ 21.621094, -26.431228 ], [ 21.972656, -26.431228 ], [ 21.972656, -26.273714 ], [ 22.148438, -26.273714 ], [ 22.148438, -26.115986 ], [ 22.500000, -26.115986 ], [ 22.500000, -25.799891 ], [ 22.675781, -25.799891 ], [ 22.675781, -25.482951 ], [ 22.851562, -25.482951 ], [ 22.851562, -25.324167 ], [ 23.203125, -25.324167 ], [ 23.203125, -25.165173 ], [ 23.378906, -25.165173 ], [ 23.378906, -25.324167 ], [ 23.730469, -25.324167 ], [ 23.730469, -25.482951 ], [ 23.906250, -25.482951 ], [ 23.906250, -25.641526 ], [ 25.488281, -25.641526 ], [ 25.488281, -25.482951 ], [ 25.664062, -25.482951 ], [ 25.664062, -25.005973 ], [ 25.839844, -25.005973 ], [ 25.839844, -24.686952 ], [ 26.191406, -24.686952 ], [ 26.191406, -24.527135 ], [ 26.542969, -24.527135 ], [ 26.542969, -24.367114 ], [ 26.718750, -24.367114 ], [ 26.718750, -24.046464 ], [ 26.894531, -24.046464 ], [ 26.894531, -23.725012 ], [ 27.070312, -23.725012 ], [ 27.070312, -23.563987 ], [ 27.246094, -23.563987 ], [ 27.246094, -23.402765 ], [ 27.421875, -23.402765 ], [ 27.421875, -23.241346 ], [ 27.597656, -23.241346 ], [ 27.597656, -23.079732 ], [ 27.773438, -23.079732 ], [ 27.773438, -22.917923 ], [ 27.949219, -22.917923 ], [ 27.949219, -22.755921 ], [ 28.125000, -22.755921 ], [ 28.125000, -22.593726 ], [ 28.476562, -22.593726 ], [ 28.476562, -22.431340 ], [ 28.828125, -22.431340 ], [ 28.828125, -22.268764 ], [ 29.003906, -22.268764 ], [ 29.003906, -22.105999 ], [ 29.355469, -22.105999 ], [ 29.355469, -21.943046 ], [ 29.707031, -21.943046 ] ], [ [ 28.300781, -28.767659 ], [ 27.949219, -28.767659 ], [ 27.949219, -28.921631 ], [ 27.773438, -28.921631 ], [ 27.773438, -29.075375 ], [ 27.597656, -29.075375 ], [ 27.597656, -29.228890 ], [ 27.421875, -29.228890 ], [ 27.421875, -29.382175 ], [ 27.246094, -29.382175 ], [ 27.246094, -29.535230 ], [ 27.070312, -29.535230 ], [ 27.070312, -29.840644 ], [ 26.894531, -29.840644 ], [ 26.894531, -29.993002 ], [ 27.070312, -29.993002 ], [ 27.070312, -30.145127 ], [ 27.246094, -30.145127 ], [ 27.246094, -30.448674 ], [ 27.421875, -30.448674 ], [ 27.421875, -30.600094 ], [ 27.949219, -30.600094 ], [ 27.949219, -30.297018 ], [ 28.125000, -30.297018 ], [ 28.125000, -30.145127 ], [ 28.652344, -30.145127 ], [ 28.652344, -29.993002 ], [ 28.828125, -29.993002 ], [ 28.828125, -29.840644 ], [ 29.003906, -29.840644 ], [ 29.003906, -29.535230 ], [ 29.179688, -29.535230 ], [ 29.179688, -29.228890 ], [ 29.003906, -29.228890 ], [ 29.003906, -29.075375 ], [ 28.828125, -29.075375 ], [ 28.828125, -28.921631 ], [ 28.652344, -28.921631 ], [ 28.652344, -28.767659 ], [ 28.476562, -28.767659 ], [ 28.476562, -28.613459 ], [ 28.300781, -28.613459 ], [ 28.300781, -28.767659 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.464844, -25.641526 ], [ 31.464844, -25.799891 ], [ 31.816406, -25.799891 ], [ 31.816406, -26.115986 ], [ 31.992188, -26.115986 ], [ 31.992188, -27.059126 ], [ 31.816406, -27.059126 ], [ 31.816406, -27.215556 ], [ 31.113281, -27.215556 ], [ 31.113281, -27.059126 ], [ 30.937500, -27.059126 ], [ 30.937500, -26.902477 ], [ 30.761719, -26.902477 ], [ 30.761719, -26.273714 ], [ 30.937500, -26.273714 ], [ 30.937500, -25.958045 ], [ 31.113281, -25.958045 ], [ 31.113281, -25.799891 ], [ 31.289062, -25.799891 ], [ 31.289062, -25.641526 ], [ 31.464844, -25.641526 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.464844, -25.641526 ], [ 31.464844, -25.799891 ], [ 31.816406, -25.799891 ], [ 31.816406, -26.431228 ], [ 31.992188, -26.431228 ], [ 31.992188, -26.902477 ], [ 31.816406, -26.902477 ], [ 31.816406, -27.059126 ], [ 31.640625, -27.059126 ], [ 31.640625, -27.215556 ], [ 30.937500, -27.215556 ], [ 30.937500, -27.059126 ], [ 30.761719, -27.059126 ], [ 30.761719, -26.902477 ], [ 30.585938, -26.902477 ], [ 30.585938, -26.273714 ], [ 30.761719, -26.273714 ], [ 30.761719, -26.115986 ], [ 30.937500, -26.115986 ], [ 30.937500, -25.641526 ], [ 31.464844, -25.641526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, -28.767659 ], [ 28.828125, -28.921631 ], [ 29.003906, -28.921631 ], [ 29.003906, -29.075375 ], [ 29.179688, -29.075375 ], [ 29.179688, -29.228890 ], [ 29.355469, -29.228890 ], [ 29.355469, -29.382175 ], [ 29.179688, -29.382175 ], [ 29.179688, -29.688053 ], [ 29.003906, -29.688053 ], [ 29.003906, -29.993002 ], [ 28.828125, -29.993002 ], [ 28.828125, -30.145127 ], [ 28.652344, -30.145127 ], [ 28.652344, -30.297018 ], [ 28.300781, -30.297018 ], [ 28.300781, -30.448674 ], [ 28.125000, -30.448674 ], [ 28.125000, -30.600094 ], [ 27.597656, -30.600094 ], [ 27.597656, -30.448674 ], [ 27.421875, -30.448674 ], [ 27.421875, -30.145127 ], [ 27.246094, -30.145127 ], [ 27.246094, -29.993002 ], [ 27.070312, -29.993002 ], [ 27.070312, -29.840644 ], [ 27.246094, -29.840644 ], [ 27.246094, -29.535230 ], [ 27.421875, -29.535230 ], [ 27.421875, -29.382175 ], [ 27.597656, -29.382175 ], [ 27.597656, -29.228890 ], [ 27.773438, -29.228890 ], [ 27.773438, -29.075375 ], [ 28.125000, -29.075375 ], [ 28.125000, -28.921631 ], [ 28.300781, -28.921631 ], [ 28.300781, -28.767659 ], [ 28.828125, -28.767659 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, -28.613459 ], [ 28.476562, -28.767659 ], [ 28.652344, -28.767659 ], [ 28.652344, -28.921631 ], [ 28.828125, -28.921631 ], [ 28.828125, -29.075375 ], [ 29.003906, -29.075375 ], [ 29.003906, -29.228890 ], [ 29.179688, -29.228890 ], [ 29.179688, -29.535230 ], [ 29.003906, -29.535230 ], [ 29.003906, -29.840644 ], [ 28.828125, -29.840644 ], [ 28.828125, -29.993002 ], [ 28.652344, -29.993002 ], [ 28.652344, -30.145127 ], [ 28.125000, -30.145127 ], [ 28.125000, -30.297018 ], [ 27.949219, -30.297018 ], [ 27.949219, -30.600094 ], [ 27.421875, -30.600094 ], [ 27.421875, -30.448674 ], [ 27.246094, -30.448674 ], [ 27.246094, -30.145127 ], [ 27.070312, -30.145127 ], [ 27.070312, -29.993002 ], [ 26.894531, -29.993002 ], [ 26.894531, -29.840644 ], [ 27.070312, -29.840644 ], [ 27.070312, -29.535230 ], [ 27.246094, -29.535230 ], [ 27.246094, -29.382175 ], [ 27.421875, -29.382175 ], [ 27.421875, -29.228890 ], [ 27.597656, -29.228890 ], [ 27.597656, -29.075375 ], [ 27.773438, -29.075375 ], [ 27.773438, -28.921631 ], [ 27.949219, -28.921631 ], [ 27.949219, -28.767659 ], [ 28.300781, -28.767659 ], [ 28.300781, -28.613459 ], [ 28.476562, -28.613459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.961329 ], [ 45.878906, -25.482951 ], [ 45.527344, -25.482951 ], [ 45.527344, -25.641526 ], [ 45.175781, -25.641526 ], [ 45.175781, -25.482951 ], [ 44.824219, -25.482951 ], [ 44.824219, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -25.005973 ], [ 43.945312, -25.005973 ], [ 43.945312, -24.686952 ], [ 43.769531, -24.686952 ], [ 43.769531, -23.402765 ], [ 43.593750, -23.402765 ], [ 43.593750, -23.079732 ], [ 43.417969, -23.079732 ], [ 43.417969, -22.431340 ], [ 43.242188, -22.431340 ], [ 43.242188, -21.779905 ], [ 43.417969, -21.779905 ], [ 43.417969, -21.289374 ], [ 43.769531, -21.289374 ], [ 43.769531, -21.125498 ], [ 43.945312, -21.125498 ], [ 43.945312, -20.632784 ], [ 44.121094, -20.632784 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.808054 ], [ 44.472656, -19.808054 ], [ 44.472656, -19.311143 ], [ 44.296875, -19.311143 ], [ 44.296875, -18.646245 ], [ 44.121094, -18.646245 ], [ 44.121094, -17.978733 ], [ 43.945312, -17.978733 ], [ 43.945312, -17.308688 ], [ 44.121094, -17.308688 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.636192 ], [ 44.472656, -16.636192 ], [ 44.472656, -16.299051 ], [ 44.824219, -16.299051 ], [ 44.824219, -16.130262 ], [ 45.351562, -16.130262 ], [ 45.351562, -15.961329 ], [ 45.878906, -15.961329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.324167 ], [ 45.703125, -25.324167 ], [ 45.703125, -25.482951 ], [ 45.000000, -25.482951 ], [ 45.000000, -25.324167 ], [ 44.648438, -25.324167 ], [ 44.648438, -25.165173 ], [ 44.296875, -25.165173 ], [ 44.296875, -25.005973 ], [ 43.945312, -25.005973 ], [ 43.945312, -24.846565 ], [ 43.769531, -24.846565 ], [ 43.769531, -24.527135 ], [ 43.593750, -24.527135 ], [ 43.593750, -23.402765 ], [ 43.417969, -23.402765 ], [ 43.417969, -23.079732 ], [ 43.242188, -23.079732 ], [ 43.242188, -21.616579 ], [ 43.417969, -21.616579 ], [ 43.417969, -21.289374 ], [ 43.769531, -21.289374 ], [ 43.769531, -20.797201 ], [ 43.945312, -20.797201 ], [ 43.945312, -20.468189 ], [ 44.121094, -20.468189 ], [ 44.121094, -20.138470 ], [ 44.296875, -20.138470 ], [ 44.296875, -19.145168 ], [ 44.121094, -19.145168 ], [ 44.121094, -18.646245 ], [ 43.945312, -18.646245 ], [ 43.945312, -17.308688 ], [ 44.121094, -17.308688 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.130262 ], [ 45.175781, -16.130262 ], [ 45.175781, -15.961329 ], [ 45.703125, -15.961329 ], [ 45.703125, -15.792254 ], [ 45.878906, -15.792254 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.316406, 41.640078 ], [ 9.316406, 41.376809 ], [ 9.140625, 41.376809 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.640078 ], [ 9.316406, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.316406, 41.640078 ], [ 9.316406, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.640078 ], [ 9.316406, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.285156, 41.376809 ], [ 2.285156, 41.244772 ], [ 1.933594, 41.244772 ], [ 1.933594, 41.112469 ], [ 1.230469, 41.112469 ], [ 1.230469, 40.979898 ], [ 0.878906, 40.979898 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.178873 ], [ 0.175781, 40.178873 ], [ 0.175781, 40.044438 ], [ 0.000000, 40.044438 ], [ 0.000000, 39.774769 ], [ -0.175781, 39.774769 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ 0.175781, 38.685510 ], [ 0.175781, 38.548165 ], [ 0.000000, 38.548165 ], [ 0.000000, 38.410558 ], [ -0.351562, 38.410558 ], [ -0.351562, 38.272689 ], [ -0.527344, 38.272689 ], [ -0.527344, 37.857507 ], [ -0.703125, 37.857507 ], [ -0.703125, 37.579413 ], [ -0.878906, 37.579413 ], [ -0.878906, 41.640078 ], [ 2.636719, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.109375, 41.376809 ], [ 2.109375, 41.244772 ], [ 1.406250, 41.244772 ], [ 1.406250, 41.112469 ], [ 0.703125, 41.112469 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.313043 ], [ 0.175781, 40.313043 ], [ 0.175781, 40.178873 ], [ 0.000000, 40.178873 ], [ 0.000000, 39.909736 ], [ -0.175781, 39.909736 ], [ -0.175781, 39.504041 ], [ -0.351562, 39.504041 ], [ -0.351562, 39.232253 ], [ -0.175781, 39.232253 ], [ -0.175781, 38.959409 ], [ 0.000000, 38.959409 ], [ 0.000000, 38.685510 ], [ -0.175781, 38.685510 ], [ -0.175781, 38.548165 ], [ -0.351562, 38.548165 ], [ -0.351562, 38.410558 ], [ -0.527344, 38.410558 ], [ -0.527344, 37.996163 ], [ -0.703125, 37.996163 ], [ -0.703125, 37.718590 ], [ -0.878906, 37.718590 ], [ -0.878906, 41.640078 ], [ 2.636719, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.527344, 21.453069 ], [ 0.527344, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 21.125498 ], [ 1.054688, 21.125498 ], [ 1.054688, 20.961440 ], [ 1.230469, 20.961440 ], [ 1.230469, 20.797201 ], [ 1.582031, 20.797201 ], [ 1.582031, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.468189 ], [ 1.933594, 20.468189 ], [ 1.933594, 20.138470 ], [ 2.109375, 20.138470 ], [ 2.109375, 19.973349 ], [ 2.460938, 19.973349 ], [ 2.460938, 19.808054 ], [ 2.812500, 19.808054 ], [ 2.812500, 19.642588 ], [ 3.164062, 19.642588 ], [ 3.164062, 18.979026 ], [ 3.867188, 18.979026 ], [ 3.867188, 19.145168 ], [ 4.218750, 19.145168 ], [ 4.218750, 16.636192 ], [ 4.042969, 16.636192 ], [ 4.042969, 16.467695 ], [ 3.867188, 16.467695 ], [ 3.867188, 16.130262 ], [ 3.691406, 16.130262 ], [ 3.691406, 15.623037 ], [ 3.339844, 15.623037 ], [ 3.339844, 15.453680 ], [ 2.285156, 15.453680 ], [ 2.285156, 15.284185 ], [ 1.406250, 15.284185 ], [ 1.406250, 15.114553 ], [ 1.230469, 15.114553 ], [ 1.230469, 14.944785 ], [ -0.878906, 14.944785 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 22.268764 ], [ -0.527344, 22.105999 ], [ -0.351562, 22.105999 ], [ -0.351562, 21.943046 ], [ -0.175781, 21.943046 ], [ -0.175781, 21.779905 ], [ 0.175781, 21.779905 ], [ 0.175781, 21.616579 ], [ 0.351562, 21.616579 ], [ 0.351562, 21.453069 ], [ 0.527344, 21.453069 ], [ 0.527344, 21.289374 ], [ 0.878906, 21.289374 ], [ 0.878906, 21.125498 ], [ 1.054688, 21.125498 ], [ 1.054688, 20.961440 ], [ 1.230469, 20.961440 ], [ 1.230469, 20.797201 ], [ 1.582031, 20.797201 ], [ 1.582031, 20.632784 ], [ 1.757812, 20.632784 ], [ 1.757812, 20.468189 ], [ 1.933594, 20.468189 ], [ 1.933594, 20.138470 ], [ 2.285156, 20.138470 ], [ 2.285156, 19.973349 ], [ 2.636719, 19.973349 ], [ 2.636719, 19.808054 ], [ 2.988281, 19.808054 ], [ 2.988281, 19.145168 ], [ 3.691406, 19.145168 ], [ 3.691406, 19.311143 ], [ 4.218750, 19.311143 ], [ 4.218750, 16.804541 ], [ 4.042969, 16.804541 ], [ 4.042969, 16.636192 ], [ 3.867188, 16.636192 ], [ 3.867188, 16.299051 ], [ 3.691406, 16.299051 ], [ 3.691406, 15.961329 ], [ 3.515625, 15.961329 ], [ 3.515625, 15.623037 ], [ 3.164062, 15.623037 ], [ 3.164062, 15.453680 ], [ 1.230469, 15.453680 ], [ 1.230469, 15.284185 ], [ 1.054688, 15.284185 ], [ 1.054688, 15.114553 ], [ 0.703125, 15.114553 ], [ 0.703125, 14.944785 ], [ -0.527344, 14.944785 ], [ -0.527344, 15.114553 ], [ -0.878906, 15.114553 ], [ -0.878906, 22.268764 ], [ -0.527344, 22.268764 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 0.351562, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.581921 ], [ 0.878906, 13.581921 ], [ 0.878906, 13.410994 ], [ 1.054688, 13.410994 ], [ 1.054688, 12.897489 ], [ 1.230469, 12.897489 ], [ 1.230469, 12.726084 ], [ 1.757812, 12.726084 ], [ 1.757812, 12.554564 ], [ 2.109375, 12.554564 ], [ 2.109375, 11.695273 ], [ 1.757812, 11.695273 ], [ 1.757812, 11.523088 ], [ 1.406250, 11.523088 ], [ 1.406250, 11.350797 ], [ 1.230469, 11.350797 ], [ 1.230469, 11.005904 ], [ -0.351562, 11.005904 ], [ -0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -0.878906, 11.005904 ], [ -0.878906, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.527344, 14.944785 ], [ 0.351562, 14.944785 ], [ 0.351562, 14.774883 ], [ 0.175781, 14.774883 ], [ 0.175781, 14.264383 ], [ 0.351562, 14.264383 ], [ 0.351562, 13.923404 ], [ 0.527344, 13.923404 ], [ 0.527344, 13.752725 ], [ 0.703125, 13.752725 ], [ 0.703125, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 12.897489 ], [ 1.406250, 12.897489 ], [ 1.406250, 12.726084 ], [ 2.109375, 12.726084 ], [ 2.109375, 11.867351 ], [ 1.933594, 11.867351 ], [ 1.933594, 11.695273 ], [ 1.406250, 11.695273 ], [ 1.406250, 11.350797 ], [ 1.230469, 11.350797 ], [ 1.230469, 11.005904 ], [ 0.351562, 11.005904 ], [ 0.351562, 11.178402 ], [ -0.527344, 11.178402 ], [ -0.527344, 11.005904 ], [ -0.878906, 11.005904 ], [ -0.878906, 15.114553 ], [ -0.527344, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.351562, 11.178402 ], [ -0.351562, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.141932 ], [ 0.351562, 10.141932 ], [ 0.351562, 9.102097 ], [ 0.527344, 9.102097 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.315299 ], [ 0.878906, 6.315299 ], [ 0.878906, 6.140555 ], [ 1.054688, 6.140555 ], [ 1.054688, 5.965754 ], [ 0.878906, 5.965754 ], [ 0.878906, 5.790897 ], [ 0.527344, 5.790897 ], [ 0.527344, 5.615986 ], [ 0.175781, 5.615986 ], [ 0.175781, 5.441022 ], [ -0.175781, 5.441022 ], [ -0.175781, 5.266008 ], [ -0.527344, 5.266008 ], [ -0.527344, 5.090944 ], [ -0.878906, 5.090944 ], [ -0.878906, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ -0.351562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.178402 ], [ 0.000000, 11.005904 ], [ -0.175781, 11.005904 ], [ -0.175781, 10.660608 ], [ 0.000000, 10.660608 ], [ 0.000000, 10.487812 ], [ 0.175781, 10.487812 ], [ 0.175781, 10.314919 ], [ 0.351562, 10.314919 ], [ 0.351562, 8.581021 ], [ 0.527344, 8.581021 ], [ 0.527344, 8.407168 ], [ 0.703125, 8.407168 ], [ 0.703125, 8.059230 ], [ 0.527344, 8.059230 ], [ 0.527344, 7.710992 ], [ 0.351562, 7.710992 ], [ 0.351562, 7.188101 ], [ 0.527344, 7.188101 ], [ 0.527344, 6.664608 ], [ 0.703125, 6.664608 ], [ 0.703125, 6.140555 ], [ 0.878906, 6.140555 ], [ 0.878906, 5.790897 ], [ 0.351562, 5.790897 ], [ 0.351562, 5.615986 ], [ -0.175781, 5.615986 ], [ -0.175781, 5.441022 ], [ -0.527344, 5.441022 ], [ -0.527344, 5.266008 ], [ -0.878906, 5.266008 ], [ -0.878906, 11.005904 ], [ -0.527344, 11.005904 ], [ -0.527344, 11.178402 ], [ 0.000000, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.996163 ], [ 15.292969, 37.996163 ], [ 15.292969, 37.579413 ], [ 15.117188, 37.579413 ], [ 15.117188, 37.300275 ], [ 15.292969, 37.300275 ], [ 15.292969, 36.879621 ], [ 15.117188, 36.879621 ], [ 15.117188, 36.597889 ], [ 14.941406, 36.597889 ], [ 14.941406, 36.738884 ], [ 14.589844, 36.738884 ], [ 14.589844, 36.879621 ], [ 14.414062, 36.879621 ], [ 14.414062, 37.020098 ], [ 14.062500, 37.020098 ], [ 14.062500, 37.160317 ], [ 13.535156, 37.160317 ], [ 13.535156, 37.300275 ], [ 13.007812, 37.300275 ], [ 13.007812, 37.439974 ], [ 12.656250, 37.439974 ], [ 12.656250, 37.579413 ], [ 12.480469, 37.579413 ], [ 12.480469, 37.857507 ], [ 12.656250, 37.857507 ], [ 12.656250, 38.134557 ], [ 13.007812, 38.134557 ], [ 13.007812, 37.996163 ], [ 14.414062, 37.996163 ], [ 14.414062, 38.134557 ], [ 15.292969, 38.134557 ], [ 15.292969, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 18.457031, 40.313043 ], [ 18.457031, 39.909736 ], [ 18.281250, 39.909736 ], [ 18.281250, 39.774769 ], [ 18.105469, 39.774769 ], [ 18.105469, 40.044438 ], [ 17.929688, 40.044438 ], [ 17.929688, 40.178873 ], [ 17.753906, 40.178873 ], [ 17.753906, 40.313043 ], [ 17.226562, 40.313043 ], [ 17.226562, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.178873 ], [ 16.699219, 40.178873 ], [ 16.699219, 39.909736 ], [ 16.523438, 39.909736 ], [ 16.523438, 39.639538 ], [ 16.699219, 39.639538 ], [ 16.699219, 39.504041 ], [ 17.050781, 39.504041 ], [ 17.050781, 39.368279 ], [ 17.226562, 39.368279 ], [ 17.226562, 39.095963 ], [ 17.050781, 39.095963 ], [ 17.050781, 38.822591 ], [ 16.699219, 38.822591 ], [ 16.699219, 38.685510 ], [ 16.523438, 38.685510 ], [ 16.523438, 38.410558 ], [ 16.347656, 38.410558 ], [ 16.347656, 38.134557 ], [ 16.171875, 38.134557 ], [ 16.171875, 37.996163 ], [ 15.996094, 37.996163 ], [ 15.996094, 37.857507 ], [ 15.644531, 37.857507 ], [ 15.644531, 38.410558 ], [ 15.820312, 38.410558 ], [ 15.820312, 38.685510 ], [ 15.996094, 38.685510 ], [ 15.996094, 38.822591 ], [ 16.171875, 38.822591 ], [ 16.171875, 38.959409 ], [ 15.996094, 38.959409 ], [ 15.996094, 39.232253 ], [ 15.820312, 39.232253 ], [ 15.820312, 39.368279 ], [ 15.644531, 39.368279 ], [ 15.644531, 39.774769 ], [ 15.468750, 39.774769 ], [ 15.468750, 40.044438 ], [ 15.117188, 40.044438 ], [ 15.117188, 40.178873 ], [ 14.941406, 40.178873 ], [ 14.941406, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 15.996094, 41.640078 ] ] ], [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.774769 ], [ 9.667969, 39.774769 ], [ 9.667969, 39.232253 ], [ 9.140625, 39.232253 ], [ 9.140625, 39.095963 ], [ 8.964844, 39.095963 ], [ 8.964844, 38.959409 ], [ 8.613281, 38.959409 ], [ 8.613281, 39.095963 ], [ 8.437500, 39.095963 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.468750, 38.272689 ], [ 15.468750, 37.996163 ], [ 15.292969, 37.996163 ], [ 15.292969, 37.718590 ], [ 15.117188, 37.718590 ], [ 15.117188, 37.300275 ], [ 15.292969, 37.300275 ], [ 15.292969, 37.020098 ], [ 15.117188, 37.020098 ], [ 15.117188, 36.738884 ], [ 14.589844, 36.738884 ], [ 14.589844, 36.879621 ], [ 14.238281, 36.879621 ], [ 14.238281, 37.020098 ], [ 13.886719, 37.020098 ], [ 13.886719, 37.160317 ], [ 13.359375, 37.160317 ], [ 13.359375, 37.300275 ], [ 13.007812, 37.300275 ], [ 13.007812, 37.439974 ], [ 12.656250, 37.439974 ], [ 12.656250, 37.579413 ], [ 12.304688, 37.579413 ], [ 12.304688, 37.857507 ], [ 12.480469, 37.857507 ], [ 12.480469, 38.134557 ], [ 14.238281, 38.134557 ], [ 14.238281, 38.272689 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 15.820312, 41.640078 ], [ 15.820312, 41.508577 ], [ 16.171875, 41.508577 ], [ 16.171875, 41.376809 ], [ 16.523438, 41.376809 ], [ 16.523438, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 18.457031, 40.313043 ], [ 18.457031, 40.044438 ], [ 18.281250, 40.044438 ], [ 18.281250, 39.909736 ], [ 18.105469, 39.909736 ], [ 18.105469, 40.044438 ], [ 17.753906, 40.044438 ], [ 17.753906, 40.178873 ], [ 17.578125, 40.178873 ], [ 17.578125, 40.313043 ], [ 17.050781, 40.313043 ], [ 17.050781, 40.446947 ], [ 16.699219, 40.446947 ], [ 16.699219, 40.313043 ], [ 16.523438, 40.313043 ], [ 16.523438, 40.044438 ], [ 16.347656, 40.044438 ], [ 16.347656, 39.774769 ], [ 16.523438, 39.774769 ], [ 16.523438, 39.639538 ], [ 16.875000, 39.639538 ], [ 16.875000, 39.504041 ], [ 17.050781, 39.504041 ], [ 17.050781, 38.959409 ], [ 16.523438, 38.959409 ], [ 16.523438, 38.685510 ], [ 16.347656, 38.685510 ], [ 16.347656, 38.410558 ], [ 16.171875, 38.410558 ], [ 16.171875, 38.134557 ], [ 15.996094, 38.134557 ], [ 15.996094, 37.996163 ], [ 15.644531, 37.996163 ], [ 15.644531, 38.548165 ], [ 15.820312, 38.548165 ], [ 15.820312, 38.959409 ], [ 15.996094, 38.959409 ], [ 15.996094, 39.232253 ], [ 15.820312, 39.232253 ], [ 15.820312, 39.504041 ], [ 15.644531, 39.504041 ], [ 15.644531, 39.774769 ], [ 15.468750, 39.774769 ], [ 15.468750, 40.044438 ], [ 15.292969, 40.044438 ], [ 15.292969, 40.178873 ], [ 14.941406, 40.178873 ], [ 14.941406, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.580585 ], [ 14.589844, 40.580585 ], [ 14.589844, 40.713956 ], [ 14.238281, 40.713956 ], [ 14.238281, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 40.979898 ], [ 13.710938, 40.979898 ], [ 13.710938, 41.112469 ], [ 13.535156, 41.112469 ], [ 13.535156, 41.244772 ], [ 13.007812, 41.244772 ], [ 13.007812, 41.376809 ], [ 12.480469, 41.376809 ], [ 12.480469, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 15.820312, 41.640078 ] ] ], [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.580585 ], [ 9.667969, 40.580585 ], [ 9.667969, 39.232253 ], [ 9.316406, 39.232253 ], [ 9.316406, 39.368279 ], [ 9.140625, 39.368279 ], [ 9.140625, 39.232253 ], [ 8.964844, 39.232253 ], [ 8.964844, 38.959409 ], [ 8.613281, 38.959409 ], [ 8.613281, 39.095963 ], [ 8.261719, 39.095963 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.789062, 40.979898 ], [ 8.789062, 41.112469 ], [ 9.316406, 41.112469 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 41.640078 ], [ 20.566406, 41.508577 ], [ 20.390625, 41.508577 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.178873 ], [ 20.566406, 40.178873 ], [ 20.566406, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 39.639538 ], [ 20.039062, 39.639538 ], [ 20.039062, 39.909736 ], [ 19.863281, 39.909736 ], [ 19.863281, 40.044438 ], [ 19.511719, 40.044438 ], [ 19.511719, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.640078 ], [ 20.566406, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.390625, 41.640078 ], [ 20.390625, 41.376809 ], [ 20.566406, 41.376809 ], [ 20.566406, 40.979898 ], [ 20.742188, 40.979898 ], [ 20.742188, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.446947 ], [ 20.566406, 40.446947 ], [ 20.566406, 40.044438 ], [ 20.390625, 40.044438 ], [ 20.390625, 39.909736 ], [ 20.214844, 39.909736 ], [ 20.214844, 39.639538 ], [ 19.863281, 39.639538 ], [ 19.863281, 40.044438 ], [ 19.687500, 40.044438 ], [ 19.687500, 40.178873 ], [ 19.335938, 40.178873 ], [ 19.335938, 40.580585 ], [ 19.160156, 40.580585 ], [ 19.160156, 41.112469 ], [ 19.335938, 41.112469 ], [ 19.335938, 41.640078 ], [ 20.390625, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 41.640078 ], [ 22.851562, 41.508577 ], [ 23.027344, 41.508577 ], [ 23.027344, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.508577 ], [ 20.566406, 41.508577 ], [ 20.566406, 41.640078 ], [ 22.851562, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 41.640078 ], [ 22.851562, 41.376809 ], [ 22.675781, 41.376809 ], [ 22.675781, 41.244772 ], [ 21.972656, 41.244772 ], [ 21.972656, 41.112469 ], [ 21.796875, 41.112469 ], [ 21.796875, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.742188, 40.847060 ], [ 20.742188, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.376809 ], [ 20.390625, 41.376809 ], [ 20.390625, 41.640078 ], [ 22.851562, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.191406, 41.640078 ], [ 26.191406, 41.376809 ], [ 25.839844, 41.376809 ], [ 25.839844, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.082031, 41.508577 ], [ 24.082031, 41.376809 ], [ 23.027344, 41.376809 ], [ 23.027344, 41.508577 ], [ 22.851562, 41.508577 ], [ 22.851562, 41.640078 ], [ 26.191406, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.015625, 41.640078 ], [ 26.015625, 41.376809 ], [ 25.664062, 41.376809 ], [ 25.664062, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.433594, 41.508577 ], [ 24.433594, 41.640078 ], [ 26.015625, 41.640078 ] ] ], [ [ [ 24.257812, 41.640078 ], [ 24.257812, 41.508577 ], [ 23.906250, 41.508577 ], [ 23.906250, 41.376809 ], [ 22.851562, 41.376809 ], [ 22.851562, 41.640078 ], [ 24.257812, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.472656, 41.244772 ], [ 44.472656, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.890625, 41.376809 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 45.878906, 41.640078 ] ] ], [ [ [ 42.187500, 41.640078 ], [ 42.187500, 41.508577 ], [ 41.660156, 41.508577 ], [ 41.660156, 41.640078 ], [ 42.187500, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.376809 ], [ 44.648438, 41.376809 ], [ 44.648438, 41.244772 ], [ 43.945312, 41.244772 ], [ 43.945312, 41.112469 ], [ 43.242188, 41.112469 ], [ 43.242188, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.714844, 41.376809 ], [ 42.714844, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.667969, 37.300275 ], [ 9.667969, 37.160317 ], [ 10.195312, 37.160317 ], [ 10.195312, 36.738884 ], [ 10.371094, 36.738884 ], [ 10.371094, 36.879621 ], [ 10.722656, 36.879621 ], [ 10.722656, 37.020098 ], [ 11.074219, 37.020098 ], [ 11.074219, 36.738884 ], [ 10.898438, 36.738884 ], [ 10.898438, 36.597889 ], [ 10.722656, 36.597889 ], [ 10.722656, 36.456636 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 35.317366 ], [ 10.722656, 35.317366 ], [ 10.722656, 34.741612 ], [ 10.546875, 34.741612 ], [ 10.546875, 34.597042 ], [ 10.371094, 34.597042 ], [ 10.371094, 34.307144 ], [ 10.195312, 34.307144 ], [ 10.195312, 34.016242 ], [ 10.371094, 34.016242 ], [ 10.371094, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.074219, 33.431441 ], [ 11.074219, 33.137551 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.249974 ], [ 11.074219, 32.249974 ], [ 11.074219, 32.101190 ], [ 10.898438, 32.101190 ], [ 10.898438, 31.952162 ], [ 10.722656, 31.952162 ], [ 10.722656, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.503629 ], [ 10.195312, 31.503629 ], [ 10.195312, 31.353637 ], [ 10.019531, 31.353637 ], [ 10.019531, 30.448674 ], [ 9.667969, 30.448674 ], [ 9.667969, 30.297018 ], [ 9.492188, 30.297018 ], [ 9.492188, 30.751278 ], [ 9.316406, 30.751278 ], [ 9.316406, 31.653381 ], [ 9.140625, 31.653381 ], [ 9.140625, 32.101190 ], [ 8.964844, 32.101190 ], [ 8.964844, 32.249974 ], [ 8.613281, 32.249974 ], [ 8.613281, 32.398516 ], [ 8.437500, 32.398516 ], [ 8.437500, 32.694866 ], [ 8.261719, 32.694866 ], [ 8.261719, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 32.990236 ], [ 7.734375, 32.990236 ], [ 7.734375, 33.137551 ], [ 7.558594, 33.137551 ], [ 7.558594, 34.161818 ], [ 7.734375, 34.161818 ], [ 7.734375, 34.307144 ], [ 7.910156, 34.307144 ], [ 7.910156, 34.452218 ], [ 8.085938, 34.452218 ], [ 8.085938, 34.741612 ], [ 8.261719, 34.741612 ], [ 8.261719, 35.173808 ], [ 8.437500, 35.173808 ], [ 8.437500, 35.889050 ], [ 8.261719, 35.889050 ], [ 8.261719, 36.597889 ], [ 8.437500, 36.597889 ], [ 8.437500, 36.879621 ], [ 8.789062, 36.879621 ], [ 8.789062, 37.020098 ], [ 9.140625, 37.020098 ], [ 9.140625, 37.160317 ], [ 9.492188, 37.160317 ], [ 9.492188, 37.300275 ], [ 9.667969, 37.300275 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.667969, 37.439974 ], [ 9.667969, 37.300275 ], [ 10.195312, 37.300275 ], [ 10.195312, 37.020098 ], [ 10.019531, 37.020098 ], [ 10.019531, 36.738884 ], [ 10.195312, 36.738884 ], [ 10.195312, 36.879621 ], [ 10.546875, 36.879621 ], [ 10.546875, 37.020098 ], [ 11.074219, 37.020098 ], [ 11.074219, 36.879621 ], [ 10.898438, 36.879621 ], [ 10.898438, 36.738884 ], [ 10.722656, 36.738884 ], [ 10.722656, 36.456636 ], [ 10.546875, 36.456636 ], [ 10.546875, 35.889050 ], [ 10.722656, 35.889050 ], [ 10.722656, 35.746512 ], [ 10.898438, 35.746512 ], [ 10.898438, 35.317366 ], [ 10.722656, 35.317366 ], [ 10.722656, 34.741612 ], [ 10.546875, 34.741612 ], [ 10.546875, 34.597042 ], [ 10.195312, 34.597042 ], [ 10.195312, 34.452218 ], [ 10.019531, 34.452218 ], [ 10.019531, 34.161818 ], [ 10.195312, 34.161818 ], [ 10.195312, 33.870416 ], [ 10.722656, 33.870416 ], [ 10.722656, 33.724340 ], [ 10.898438, 33.724340 ], [ 10.898438, 33.431441 ], [ 11.074219, 33.431441 ], [ 11.074219, 33.284620 ], [ 11.250000, 33.284620 ], [ 11.250000, 33.137551 ], [ 11.425781, 33.137551 ], [ 11.425781, 32.249974 ], [ 11.074219, 32.249974 ], [ 11.074219, 32.101190 ], [ 10.898438, 32.101190 ], [ 10.898438, 31.952162 ], [ 10.722656, 31.952162 ], [ 10.722656, 31.802893 ], [ 10.546875, 31.802893 ], [ 10.546875, 31.653381 ], [ 10.195312, 31.653381 ], [ 10.195312, 31.503629 ], [ 9.843750, 31.503629 ], [ 9.843750, 31.203405 ], [ 10.019531, 31.203405 ], [ 10.019531, 30.751278 ], [ 9.843750, 30.751278 ], [ 9.843750, 30.600094 ], [ 9.667969, 30.600094 ], [ 9.667969, 30.448674 ], [ 9.316406, 30.448674 ], [ 9.316406, 30.751278 ], [ 9.140625, 30.751278 ], [ 9.140625, 31.653381 ], [ 8.964844, 31.653381 ], [ 8.964844, 32.101190 ], [ 8.789062, 32.101190 ], [ 8.789062, 32.249974 ], [ 8.613281, 32.249974 ], [ 8.613281, 32.398516 ], [ 8.437500, 32.398516 ], [ 8.437500, 32.694866 ], [ 8.261719, 32.694866 ], [ 8.261719, 32.842674 ], [ 8.085938, 32.842674 ], [ 8.085938, 32.990236 ], [ 7.910156, 32.990236 ], [ 7.910156, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 33.284620 ], [ 7.558594, 33.284620 ], [ 7.558594, 33.724340 ], [ 7.382812, 33.724340 ], [ 7.382812, 34.161818 ], [ 7.558594, 34.161818 ], [ 7.558594, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.452218 ], [ 7.910156, 34.452218 ], [ 7.910156, 34.597042 ], [ 8.085938, 34.597042 ], [ 8.085938, 35.173808 ], [ 8.261719, 35.173808 ], [ 8.261719, 36.031332 ], [ 8.085938, 36.031332 ], [ 8.085938, 36.738884 ], [ 8.261719, 36.738884 ], [ 8.261719, 37.020098 ], [ 8.613281, 37.020098 ], [ 8.613281, 37.160317 ], [ 8.964844, 37.160317 ], [ 8.964844, 37.300275 ], [ 9.316406, 37.300275 ], [ 9.316406, 37.439974 ], [ 9.667969, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.382812, 37.160317 ], [ 7.382812, 37.020098 ], [ 7.558594, 37.020098 ], [ 7.558594, 36.879621 ], [ 8.437500, 36.879621 ], [ 8.437500, 36.597889 ], [ 8.261719, 36.597889 ], [ 8.261719, 35.889050 ], [ 8.437500, 35.889050 ], [ 8.437500, 35.173808 ], [ 8.261719, 35.173808 ], [ 8.261719, 34.741612 ], [ 8.085938, 34.741612 ], [ 8.085938, 34.452218 ], [ 7.910156, 34.452218 ], [ 7.910156, 34.307144 ], [ 7.734375, 34.307144 ], [ 7.734375, 34.161818 ], [ 7.558594, 34.161818 ], [ 7.558594, 33.137551 ], [ 7.734375, 33.137551 ], [ 7.734375, 32.990236 ], [ 8.085938, 32.990236 ], [ 8.085938, 32.842674 ], [ 8.261719, 32.842674 ], [ 8.261719, 32.694866 ], [ 8.437500, 32.694866 ], [ 8.437500, 32.398516 ], [ 8.613281, 32.398516 ], [ 8.613281, 32.249974 ], [ 8.964844, 32.249974 ], [ 8.964844, 32.101190 ], [ 9.140625, 32.101190 ], [ 9.140625, 31.653381 ], [ 9.316406, 31.653381 ], [ 9.316406, 30.751278 ], [ 9.492188, 30.751278 ], [ 9.492188, 29.993002 ], [ 9.667969, 29.993002 ], [ 9.667969, 29.535230 ], [ 9.843750, 29.535230 ], [ 9.843750, 28.459033 ], [ 9.667969, 28.459033 ], [ 9.667969, 27.839076 ], [ 9.843750, 27.839076 ], [ 9.843750, 27.371767 ], [ 9.667969, 27.371767 ], [ 9.667969, 26.431228 ], [ 9.492188, 26.431228 ], [ 9.492188, 26.115986 ], [ 9.316406, 26.115986 ], [ 9.316406, 25.958045 ], [ 9.492188, 25.958045 ], [ 9.492188, 25.641526 ], [ 9.667969, 25.641526 ], [ 9.667969, 25.324167 ], [ 9.843750, 25.324167 ], [ 9.843750, 25.165173 ], [ 10.019531, 25.165173 ], [ 10.019531, 24.846565 ], [ 10.195312, 24.846565 ], [ 10.195312, 24.527135 ], [ 10.371094, 24.527135 ], [ 10.371094, 24.367114 ], [ 11.074219, 24.367114 ], [ 11.074219, 24.206890 ], [ 11.425781, 24.206890 ], [ 11.425781, 24.046464 ], [ 11.601562, 24.046464 ], [ 11.601562, 23.885838 ], [ 11.777344, 23.885838 ], [ 11.777344, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.241346 ], [ 11.601562, 23.241346 ], [ 11.601562, 23.079732 ], [ 11.250000, 23.079732 ], [ 11.250000, 22.917923 ], [ 10.898438, 22.917923 ], [ 10.898438, 22.755921 ], [ 10.722656, 22.755921 ], [ 10.722656, 22.593726 ], [ 10.371094, 22.593726 ], [ 10.371094, 22.431340 ], [ 10.019531, 22.431340 ], [ 10.019531, 22.268764 ], [ 9.843750, 22.268764 ], [ 9.843750, 22.105999 ], [ 9.492188, 22.105999 ], [ 9.492188, 21.943046 ], [ 9.140625, 21.943046 ], [ 9.140625, 21.779905 ], [ 8.789062, 21.779905 ], [ 8.789062, 21.616579 ], [ 8.613281, 21.616579 ], [ 8.613281, 21.453069 ], [ 8.261719, 21.453069 ], [ 8.261719, 21.289374 ], [ 8.085938, 21.289374 ], [ 8.085938, 21.125498 ], [ 7.910156, 21.125498 ], [ 7.910156, 20.961440 ], [ 7.558594, 20.961440 ], [ 7.558594, 20.797201 ], [ 7.382812, 20.797201 ], [ 7.382812, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.468189 ], [ 6.855469, 20.468189 ], [ 6.855469, 20.303418 ], [ 6.503906, 20.303418 ], [ 6.503906, 20.138470 ], [ 6.328125, 20.138470 ], [ 6.328125, 19.973349 ], [ 6.152344, 19.973349 ], [ 6.152344, 19.808054 ], [ 5.800781, 19.808054 ], [ 5.800781, 19.642588 ], [ 5.449219, 19.642588 ], [ 5.449219, 19.476950 ], [ 5.097656, 19.476950 ], [ 5.097656, 19.311143 ], [ 4.570312, 19.311143 ], [ 4.570312, 19.145168 ], [ 3.867188, 19.145168 ], [ 3.867188, 18.979026 ], [ 3.164062, 18.979026 ], [ 3.164062, 19.642588 ], [ 2.812500, 19.642588 ], [ 2.812500, 19.808054 ], [ 2.460938, 19.808054 ], [ 2.460938, 19.973349 ], [ 2.109375, 19.973349 ], [ 2.109375, 20.138470 ], [ 1.933594, 20.138470 ], [ 1.933594, 20.468189 ], [ 1.757812, 20.468189 ], [ 1.757812, 20.632784 ], [ 1.582031, 20.632784 ], [ 1.582031, 20.797201 ], [ 1.230469, 20.797201 ], [ 1.230469, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.125498 ], [ 0.878906, 21.125498 ], [ 0.878906, 21.289374 ], [ 0.527344, 21.289374 ], [ 0.527344, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 22.268764 ], [ -0.878906, 22.268764 ], [ -0.878906, 35.746512 ], [ -0.351562, 35.746512 ], [ -0.351562, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.351562, 36.031332 ], [ 0.351562, 36.173357 ], [ 0.527344, 36.173357 ], [ 0.527344, 36.315125 ], [ 0.878906, 36.315125 ], [ 0.878906, 36.456636 ], [ 1.230469, 36.456636 ], [ 1.230469, 36.597889 ], [ 2.460938, 36.597889 ], [ 2.460938, 36.738884 ], [ 4.042969, 36.738884 ], [ 4.042969, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.738884 ], [ 5.625000, 36.738884 ], [ 5.625000, 36.879621 ], [ 5.976562, 36.879621 ], [ 5.976562, 37.020098 ], [ 6.328125, 37.020098 ], [ 6.328125, 37.160317 ], [ 7.382812, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.382812, 37.160317 ], [ 7.382812, 37.020098 ], [ 8.261719, 37.020098 ], [ 8.261719, 36.738884 ], [ 8.085938, 36.738884 ], [ 8.085938, 36.031332 ], [ 8.261719, 36.031332 ], [ 8.261719, 35.173808 ], [ 8.085938, 35.173808 ], [ 8.085938, 34.597042 ], [ 7.910156, 34.597042 ], [ 7.910156, 34.452218 ], [ 7.734375, 34.452218 ], [ 7.734375, 34.307144 ], [ 7.558594, 34.307144 ], [ 7.558594, 34.161818 ], [ 7.382812, 34.161818 ], [ 7.382812, 33.724340 ], [ 7.558594, 33.724340 ], [ 7.558594, 33.284620 ], [ 7.734375, 33.284620 ], [ 7.734375, 33.137551 ], [ 7.910156, 33.137551 ], [ 7.910156, 32.990236 ], [ 8.085938, 32.990236 ], [ 8.085938, 32.842674 ], [ 8.261719, 32.842674 ], [ 8.261719, 32.694866 ], [ 8.437500, 32.694866 ], [ 8.437500, 32.398516 ], [ 8.613281, 32.398516 ], [ 8.613281, 32.249974 ], [ 8.789062, 32.249974 ], [ 8.789062, 32.101190 ], [ 8.964844, 32.101190 ], [ 8.964844, 31.653381 ], [ 9.140625, 31.653381 ], [ 9.140625, 30.751278 ], [ 9.316406, 30.751278 ], [ 9.316406, 30.145127 ], [ 9.492188, 30.145127 ], [ 9.492188, 29.688053 ], [ 9.667969, 29.688053 ], [ 9.667969, 29.228890 ], [ 9.843750, 29.228890 ], [ 9.843750, 28.613459 ], [ 9.667969, 28.613459 ], [ 9.667969, 27.527758 ], [ 9.492188, 27.527758 ], [ 9.492188, 26.902477 ], [ 9.667969, 26.902477 ], [ 9.667969, 26.431228 ], [ 9.492188, 26.431228 ], [ 9.492188, 26.115986 ], [ 9.316406, 26.115986 ], [ 9.316406, 25.958045 ], [ 9.492188, 25.958045 ], [ 9.492188, 25.799891 ], [ 9.667969, 25.799891 ], [ 9.667969, 25.482951 ], [ 9.843750, 25.482951 ], [ 9.843750, 24.846565 ], [ 10.019531, 24.846565 ], [ 10.019531, 24.527135 ], [ 10.546875, 24.527135 ], [ 10.546875, 24.686952 ], [ 10.722656, 24.686952 ], [ 10.722656, 24.527135 ], [ 10.898438, 24.527135 ], [ 10.898438, 24.367114 ], [ 11.250000, 24.367114 ], [ 11.250000, 24.206890 ], [ 11.425781, 24.206890 ], [ 11.425781, 24.046464 ], [ 11.601562, 24.046464 ], [ 11.601562, 23.885838 ], [ 11.777344, 23.885838 ], [ 11.777344, 23.563987 ], [ 11.953125, 23.563987 ], [ 11.953125, 23.402765 ], [ 11.601562, 23.402765 ], [ 11.601562, 23.241346 ], [ 11.250000, 23.241346 ], [ 11.250000, 23.079732 ], [ 11.074219, 23.079732 ], [ 11.074219, 22.917923 ], [ 10.722656, 22.917923 ], [ 10.722656, 22.755921 ], [ 10.371094, 22.755921 ], [ 10.371094, 22.593726 ], [ 10.195312, 22.593726 ], [ 10.195312, 22.431340 ], [ 9.843750, 22.431340 ], [ 9.843750, 22.268764 ], [ 9.492188, 22.268764 ], [ 9.492188, 22.105999 ], [ 9.316406, 22.105999 ], [ 9.316406, 21.943046 ], [ 8.964844, 21.943046 ], [ 8.964844, 21.779905 ], [ 8.613281, 21.779905 ], [ 8.613281, 21.616579 ], [ 8.437500, 21.616579 ], [ 8.437500, 21.453069 ], [ 8.261719, 21.453069 ], [ 8.261719, 21.289374 ], [ 7.910156, 21.289374 ], [ 7.910156, 21.125498 ], [ 7.734375, 21.125498 ], [ 7.734375, 20.961440 ], [ 7.558594, 20.961440 ], [ 7.558594, 20.797201 ], [ 7.207031, 20.797201 ], [ 7.207031, 20.632784 ], [ 7.031250, 20.632784 ], [ 7.031250, 20.468189 ], [ 6.855469, 20.468189 ], [ 6.855469, 20.303418 ], [ 6.503906, 20.303418 ], [ 6.503906, 20.138470 ], [ 6.328125, 20.138470 ], [ 6.328125, 19.973349 ], [ 6.152344, 19.973349 ], [ 6.152344, 19.808054 ], [ 5.800781, 19.808054 ], [ 5.800781, 19.642588 ], [ 5.449219, 19.642588 ], [ 5.449219, 19.476950 ], [ 4.746094, 19.476950 ], [ 4.746094, 19.311143 ], [ 3.691406, 19.311143 ], [ 3.691406, 19.145168 ], [ 2.988281, 19.145168 ], [ 2.988281, 19.808054 ], [ 2.636719, 19.808054 ], [ 2.636719, 19.973349 ], [ 2.285156, 19.973349 ], [ 2.285156, 20.138470 ], [ 1.933594, 20.138470 ], [ 1.933594, 20.468189 ], [ 1.757812, 20.468189 ], [ 1.757812, 20.632784 ], [ 1.582031, 20.632784 ], [ 1.582031, 20.797201 ], [ 1.230469, 20.797201 ], [ 1.230469, 20.961440 ], [ 1.054688, 20.961440 ], [ 1.054688, 21.125498 ], [ 0.878906, 21.125498 ], [ 0.878906, 21.289374 ], [ 0.527344, 21.289374 ], [ 0.527344, 21.453069 ], [ 0.351562, 21.453069 ], [ 0.351562, 21.616579 ], [ 0.175781, 21.616579 ], [ 0.175781, 21.779905 ], [ -0.175781, 21.779905 ], [ -0.175781, 21.943046 ], [ -0.351562, 21.943046 ], [ -0.351562, 22.105999 ], [ -0.527344, 22.105999 ], [ -0.527344, 22.268764 ], [ -0.878906, 22.268764 ], [ -0.878906, 35.889050 ], [ 0.000000, 35.889050 ], [ 0.000000, 36.031332 ], [ 0.175781, 36.031332 ], [ 0.175781, 36.173357 ], [ 0.351562, 36.173357 ], [ 0.351562, 36.315125 ], [ 0.703125, 36.315125 ], [ 0.703125, 36.456636 ], [ 1.054688, 36.456636 ], [ 1.054688, 36.597889 ], [ 1.406250, 36.597889 ], [ 1.406250, 36.738884 ], [ 2.460938, 36.738884 ], [ 2.460938, 36.879621 ], [ 4.921875, 36.879621 ], [ 4.921875, 36.738884 ], [ 5.449219, 36.738884 ], [ 5.449219, 36.879621 ], [ 5.800781, 36.879621 ], [ 5.800781, 37.020098 ], [ 6.152344, 37.020098 ], [ 6.152344, 37.160317 ], [ 7.382812, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.601562, 33.137551 ], [ 11.601562, 32.990236 ], [ 12.304688, 32.990236 ], [ 12.304688, 32.842674 ], [ 13.359375, 32.842674 ], [ 13.359375, 32.694866 ], [ 14.062500, 32.694866 ], [ 14.062500, 32.546813 ], [ 14.414062, 32.546813 ], [ 14.414062, 32.398516 ], [ 14.941406, 32.398516 ], [ 14.941406, 32.249974 ], [ 15.292969, 32.249974 ], [ 15.292969, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.503629 ], [ 15.644531, 31.503629 ], [ 15.644531, 31.353637 ], [ 15.996094, 31.353637 ], [ 15.996094, 31.203405 ], [ 16.875000, 31.203405 ], [ 16.875000, 31.052934 ], [ 17.226562, 31.052934 ], [ 17.226562, 30.902225 ], [ 17.753906, 30.902225 ], [ 17.753906, 30.751278 ], [ 18.105469, 30.751278 ], [ 18.105469, 30.600094 ], [ 18.457031, 30.600094 ], [ 18.457031, 30.448674 ], [ 18.808594, 30.448674 ], [ 18.808594, 30.297018 ], [ 19.335938, 30.297018 ], [ 19.335938, 30.448674 ], [ 19.511719, 30.448674 ], [ 19.511719, 30.600094 ], [ 19.687500, 30.600094 ], [ 19.687500, 30.751278 ], [ 19.863281, 30.751278 ], [ 19.863281, 30.902225 ], [ 20.039062, 30.902225 ], [ 20.039062, 31.353637 ], [ 19.863281, 31.353637 ], [ 19.863281, 31.802893 ], [ 20.039062, 31.802893 ], [ 20.039062, 32.101190 ], [ 20.214844, 32.101190 ], [ 20.214844, 32.249974 ], [ 20.390625, 32.249974 ], [ 20.390625, 32.398516 ], [ 20.742188, 32.398516 ], [ 20.742188, 32.546813 ], [ 20.917969, 32.546813 ], [ 20.917969, 32.694866 ], [ 21.445312, 32.694866 ], [ 21.445312, 32.842674 ], [ 22.148438, 32.842674 ], [ 22.148438, 32.694866 ], [ 22.851562, 32.694866 ], [ 22.851562, 32.546813 ], [ 23.027344, 32.546813 ], [ 23.027344, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 32.101190 ], [ 23.730469, 32.101190 ], [ 23.730469, 31.952162 ], [ 24.960938, 31.952162 ], [ 24.960938, 31.653381 ], [ 25.136719, 31.653381 ], [ 25.136719, 31.353637 ], [ 24.960938, 31.353637 ], [ 24.960938, 31.052934 ], [ 24.785156, 31.052934 ], [ 24.785156, 30.751278 ], [ 24.960938, 30.751278 ], [ 24.960938, 30.297018 ], [ 24.785156, 30.297018 ], [ 24.785156, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 19.973349 ], [ 23.906250, 19.973349 ], [ 23.906250, 19.642588 ], [ 23.554688, 19.642588 ], [ 23.554688, 19.808054 ], [ 23.203125, 19.808054 ], [ 23.203125, 19.973349 ], [ 22.851562, 19.973349 ], [ 22.851562, 20.138470 ], [ 22.500000, 20.138470 ], [ 22.500000, 20.303418 ], [ 22.148438, 20.303418 ], [ 22.148438, 20.468189 ], [ 21.796875, 20.468189 ], [ 21.796875, 20.632784 ], [ 21.445312, 20.632784 ], [ 21.445312, 20.797201 ], [ 21.093750, 20.797201 ], [ 21.093750, 20.961440 ], [ 20.742188, 20.961440 ], [ 20.742188, 21.125498 ], [ 20.390625, 21.125498 ], [ 20.390625, 21.289374 ], [ 20.039062, 21.289374 ], [ 20.039062, 21.453069 ], [ 19.687500, 21.453069 ], [ 19.687500, 21.616579 ], [ 19.335938, 21.616579 ], [ 19.335938, 21.779905 ], [ 18.984375, 21.779905 ], [ 18.984375, 21.943046 ], [ 18.632812, 21.943046 ], [ 18.632812, 22.105999 ], [ 18.281250, 22.105999 ], [ 18.281250, 22.268764 ], [ 17.929688, 22.268764 ], [ 17.929688, 22.431340 ], [ 17.578125, 22.431340 ], [ 17.578125, 22.593726 ], [ 17.226562, 22.593726 ], [ 17.226562, 22.755921 ], [ 16.875000, 22.755921 ], [ 16.875000, 22.917923 ], [ 16.523438, 22.917923 ], [ 16.523438, 23.079732 ], [ 16.171875, 23.079732 ], [ 16.171875, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 23.079732 ], [ 15.117188, 23.079732 ], [ 15.117188, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.755921 ], [ 14.589844, 22.755921 ], [ 14.589844, 22.593726 ], [ 14.238281, 22.593726 ], [ 14.238281, 22.431340 ], [ 13.886719, 22.431340 ], [ 13.886719, 22.755921 ], [ 13.710938, 22.755921 ], [ 13.710938, 22.917923 ], [ 13.535156, 22.917923 ], [ 13.535156, 23.079732 ], [ 13.007812, 23.079732 ], [ 13.007812, 23.241346 ], [ 12.304688, 23.241346 ], [ 12.304688, 23.402765 ], [ 11.953125, 23.402765 ], [ 11.953125, 23.563987 ], [ 11.777344, 23.563987 ], [ 11.777344, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.046464 ], [ 11.425781, 24.046464 ], [ 11.425781, 24.206890 ], [ 11.074219, 24.206890 ], [ 11.074219, 24.367114 ], [ 10.371094, 24.367114 ], [ 10.371094, 24.527135 ], [ 10.195312, 24.527135 ], [ 10.195312, 24.846565 ], [ 10.019531, 24.846565 ], [ 10.019531, 25.165173 ], [ 9.843750, 25.165173 ], [ 9.843750, 25.324167 ], [ 9.667969, 25.324167 ], [ 9.667969, 25.641526 ], [ 9.492188, 25.641526 ], [ 9.492188, 25.958045 ], [ 9.316406, 25.958045 ], [ 9.316406, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 26.431228 ], [ 9.667969, 26.431228 ], [ 9.667969, 27.371767 ], [ 9.843750, 27.371767 ], [ 9.843750, 27.839076 ], [ 9.667969, 27.839076 ], [ 9.667969, 28.459033 ], [ 9.843750, 28.459033 ], [ 9.843750, 29.535230 ], [ 9.667969, 29.535230 ], [ 9.667969, 29.993002 ], [ 9.492188, 29.993002 ], [ 9.492188, 30.297018 ], [ 9.667969, 30.297018 ], [ 9.667969, 30.448674 ], [ 10.019531, 30.448674 ], [ 10.019531, 31.353637 ], [ 10.195312, 31.353637 ], [ 10.195312, 31.503629 ], [ 10.546875, 31.503629 ], [ 10.546875, 31.653381 ], [ 10.722656, 31.653381 ], [ 10.722656, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 32.101190 ], [ 11.074219, 32.101190 ], [ 11.074219, 32.249974 ], [ 11.425781, 32.249974 ], [ 11.425781, 33.137551 ], [ 11.601562, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.601562, 33.137551 ], [ 11.601562, 32.990236 ], [ 12.304688, 32.990236 ], [ 12.304688, 32.842674 ], [ 13.007812, 32.842674 ], [ 13.007812, 32.990236 ], [ 13.359375, 32.990236 ], [ 13.359375, 32.842674 ], [ 14.062500, 32.842674 ], [ 14.062500, 32.694866 ], [ 14.414062, 32.694866 ], [ 14.414062, 32.546813 ], [ 14.765625, 32.546813 ], [ 14.765625, 32.398516 ], [ 15.117188, 32.398516 ], [ 15.117188, 32.249974 ], [ 15.292969, 32.249974 ], [ 15.292969, 31.952162 ], [ 15.468750, 31.952162 ], [ 15.468750, 31.653381 ], [ 15.644531, 31.653381 ], [ 15.644531, 31.503629 ], [ 15.820312, 31.503629 ], [ 15.820312, 31.353637 ], [ 16.171875, 31.353637 ], [ 16.171875, 31.203405 ], [ 16.699219, 31.203405 ], [ 16.699219, 31.052934 ], [ 17.402344, 31.052934 ], [ 17.402344, 30.902225 ], [ 17.929688, 30.902225 ], [ 17.929688, 30.751278 ], [ 18.281250, 30.751278 ], [ 18.281250, 30.600094 ], [ 18.457031, 30.600094 ], [ 18.457031, 30.448674 ], [ 18.808594, 30.448674 ], [ 18.808594, 30.297018 ], [ 19.160156, 30.297018 ], [ 19.160156, 30.448674 ], [ 19.511719, 30.448674 ], [ 19.511719, 30.600094 ], [ 19.687500, 30.600094 ], [ 19.687500, 30.751278 ], [ 19.863281, 30.751278 ], [ 19.863281, 30.902225 ], [ 20.039062, 30.902225 ], [ 20.039062, 31.203405 ], [ 19.863281, 31.203405 ], [ 19.863281, 31.503629 ], [ 19.687500, 31.503629 ], [ 19.687500, 31.802893 ], [ 19.863281, 31.802893 ], [ 19.863281, 32.101190 ], [ 20.039062, 32.101190 ], [ 20.039062, 32.249974 ], [ 20.214844, 32.249974 ], [ 20.214844, 32.398516 ], [ 20.390625, 32.398516 ], [ 20.390625, 32.546813 ], [ 20.566406, 32.546813 ], [ 20.566406, 32.694866 ], [ 20.742188, 32.694866 ], [ 20.742188, 32.842674 ], [ 21.972656, 32.842674 ], [ 21.972656, 32.694866 ], [ 22.851562, 32.694866 ], [ 22.851562, 32.546813 ], [ 23.027344, 32.546813 ], [ 23.027344, 32.249974 ], [ 23.554688, 32.249974 ], [ 23.554688, 32.101190 ], [ 24.257812, 32.101190 ], [ 24.257812, 31.952162 ], [ 24.785156, 31.952162 ], [ 24.785156, 31.802893 ], [ 24.960938, 31.802893 ], [ 24.960938, 31.653381 ], [ 25.136719, 31.653381 ], [ 25.136719, 31.503629 ], [ 24.960938, 31.503629 ], [ 24.960938, 31.203405 ], [ 24.785156, 31.203405 ], [ 24.785156, 30.448674 ], [ 24.609375, 30.448674 ], [ 24.609375, 29.840644 ], [ 24.785156, 29.840644 ], [ 24.785156, 29.535230 ], [ 24.960938, 29.535230 ], [ 24.960938, 20.138470 ], [ 23.730469, 20.138470 ], [ 23.730469, 19.642588 ], [ 23.554688, 19.642588 ], [ 23.554688, 19.808054 ], [ 23.203125, 19.808054 ], [ 23.203125, 19.973349 ], [ 22.851562, 19.973349 ], [ 22.851562, 20.138470 ], [ 22.500000, 20.138470 ], [ 22.500000, 20.303418 ], [ 22.148438, 20.303418 ], [ 22.148438, 20.468189 ], [ 21.796875, 20.468189 ], [ 21.796875, 20.632784 ], [ 21.445312, 20.632784 ], [ 21.445312, 20.797201 ], [ 21.093750, 20.797201 ], [ 21.093750, 20.961440 ], [ 20.742188, 20.961440 ], [ 20.742188, 21.125498 ], [ 20.390625, 21.125498 ], [ 20.390625, 21.289374 ], [ 20.039062, 21.289374 ], [ 20.039062, 21.453069 ], [ 19.687500, 21.453069 ], [ 19.687500, 21.616579 ], [ 19.511719, 21.616579 ], [ 19.511719, 21.779905 ], [ 19.160156, 21.779905 ], [ 19.160156, 21.943046 ], [ 18.808594, 21.943046 ], [ 18.808594, 22.105999 ], [ 18.457031, 22.105999 ], [ 18.457031, 22.268764 ], [ 18.105469, 22.268764 ], [ 18.105469, 22.431340 ], [ 17.753906, 22.431340 ], [ 17.753906, 22.593726 ], [ 17.578125, 22.593726 ], [ 17.578125, 22.755921 ], [ 17.226562, 22.755921 ], [ 17.226562, 22.917923 ], [ 16.875000, 22.917923 ], [ 16.875000, 23.079732 ], [ 16.523438, 23.079732 ], [ 16.523438, 23.241346 ], [ 16.171875, 23.241346 ], [ 16.171875, 23.402765 ], [ 15.468750, 23.402765 ], [ 15.468750, 23.241346 ], [ 15.292969, 23.241346 ], [ 15.292969, 23.079732 ], [ 14.941406, 23.079732 ], [ 14.941406, 22.917923 ], [ 14.765625, 22.917923 ], [ 14.765625, 22.755921 ], [ 14.414062, 22.755921 ], [ 14.414062, 22.593726 ], [ 13.886719, 22.593726 ], [ 13.886719, 22.755921 ], [ 13.710938, 22.755921 ], [ 13.710938, 22.917923 ], [ 13.535156, 22.917923 ], [ 13.535156, 23.079732 ], [ 13.183594, 23.079732 ], [ 13.183594, 23.241346 ], [ 12.656250, 23.241346 ], [ 12.656250, 23.402765 ], [ 12.128906, 23.402765 ], [ 12.128906, 23.563987 ], [ 11.777344, 23.563987 ], [ 11.777344, 23.885838 ], [ 11.601562, 23.885838 ], [ 11.601562, 24.046464 ], [ 11.425781, 24.046464 ], [ 11.425781, 24.206890 ], [ 11.250000, 24.206890 ], [ 11.250000, 24.367114 ], [ 10.898438, 24.367114 ], [ 10.898438, 24.527135 ], [ 10.722656, 24.527135 ], [ 10.722656, 24.686952 ], [ 10.546875, 24.686952 ], [ 10.546875, 24.527135 ], [ 10.019531, 24.527135 ], [ 10.019531, 24.846565 ], [ 9.843750, 24.846565 ], [ 9.843750, 25.482951 ], [ 9.667969, 25.482951 ], [ 9.667969, 25.799891 ], [ 9.492188, 25.799891 ], [ 9.492188, 25.958045 ], [ 9.316406, 25.958045 ], [ 9.316406, 26.115986 ], [ 9.492188, 26.115986 ], [ 9.492188, 26.431228 ], [ 9.667969, 26.431228 ], [ 9.667969, 26.902477 ], [ 9.492188, 26.902477 ], [ 9.492188, 27.527758 ], [ 9.667969, 27.527758 ], [ 9.667969, 28.613459 ], [ 9.843750, 28.613459 ], [ 9.843750, 29.228890 ], [ 9.667969, 29.228890 ], [ 9.667969, 29.688053 ], [ 9.492188, 29.688053 ], [ 9.492188, 30.145127 ], [ 9.316406, 30.145127 ], [ 9.316406, 30.448674 ], [ 9.667969, 30.448674 ], [ 9.667969, 30.600094 ], [ 9.843750, 30.600094 ], [ 9.843750, 30.751278 ], [ 10.019531, 30.751278 ], [ 10.019531, 31.203405 ], [ 9.843750, 31.203405 ], [ 9.843750, 31.503629 ], [ 10.195312, 31.503629 ], [ 10.195312, 31.653381 ], [ 10.546875, 31.653381 ], [ 10.546875, 31.802893 ], [ 10.722656, 31.802893 ], [ 10.722656, 31.952162 ], [ 10.898438, 31.952162 ], [ 10.898438, 32.101190 ], [ 11.074219, 32.101190 ], [ 11.074219, 32.249974 ], [ 11.425781, 32.249974 ], [ 11.425781, 33.137551 ], [ 11.601562, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.304688, 23.402765 ], [ 12.304688, 23.241346 ], [ 13.007812, 23.241346 ], [ 13.007812, 23.079732 ], [ 13.535156, 23.079732 ], [ 13.535156, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.755921 ], [ 13.886719, 22.755921 ], [ 13.886719, 22.431340 ], [ 14.238281, 22.431340 ], [ 14.238281, 22.593726 ], [ 14.589844, 22.593726 ], [ 14.589844, 22.755921 ], [ 14.765625, 22.755921 ], [ 14.765625, 22.431340 ], [ 14.941406, 22.431340 ], [ 14.941406, 21.616579 ], [ 15.117188, 21.616579 ], [ 15.117188, 21.125498 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.632784 ], [ 15.644531, 20.632784 ], [ 15.644531, 20.468189 ], [ 15.820312, 20.468189 ], [ 15.820312, 20.138470 ], [ 15.644531, 20.138470 ], [ 15.644531, 19.476950 ], [ 15.468750, 19.476950 ], [ 15.468750, 18.479609 ], [ 15.292969, 18.479609 ], [ 15.292969, 16.467695 ], [ 15.117188, 16.467695 ], [ 15.117188, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 16.130262 ], [ 14.589844, 16.130262 ], [ 14.589844, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 15.792254 ], [ 14.062500, 15.792254 ], [ 14.062500, 15.623037 ], [ 13.886719, 15.623037 ], [ 13.886719, 15.284185 ], [ 13.710938, 15.284185 ], [ 13.710938, 14.604847 ], [ 13.535156, 14.604847 ], [ 13.535156, 14.264383 ], [ 13.710938, 14.264383 ], [ 13.710938, 13.923404 ], [ 13.886719, 13.923404 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.589844, 13.068777 ], [ 14.414062, 13.068777 ], [ 14.414062, 12.726084 ], [ 14.238281, 12.726084 ], [ 14.238281, 12.382928 ], [ 13.886719, 12.382928 ], [ 13.886719, 12.726084 ], [ 13.710938, 12.726084 ], [ 13.710938, 13.068777 ], [ 13.535156, 13.068777 ], [ 13.535156, 13.410994 ], [ 13.359375, 13.410994 ], [ 13.359375, 13.581921 ], [ 13.007812, 13.581921 ], [ 13.007812, 13.410994 ], [ 12.832031, 13.410994 ], [ 12.832031, 13.239945 ], [ 12.480469, 13.239945 ], [ 12.480469, 13.068777 ], [ 11.953125, 13.068777 ], [ 11.953125, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 13.410994 ], [ 11.074219, 13.410994 ], [ 11.074219, 13.239945 ], [ 10.195312, 13.239945 ], [ 10.195312, 13.068777 ], [ 9.843750, 13.068777 ], [ 9.843750, 12.897489 ], [ 8.613281, 12.897489 ], [ 8.613281, 13.068777 ], [ 8.261719, 13.068777 ], [ 8.261719, 13.239945 ], [ 7.910156, 13.239945 ], [ 7.910156, 13.410994 ], [ 7.734375, 13.410994 ], [ 7.734375, 13.239945 ], [ 7.558594, 13.239945 ], [ 7.558594, 13.068777 ], [ 6.679688, 13.068777 ], [ 6.679688, 13.239945 ], [ 6.503906, 13.239945 ], [ 6.503906, 13.410994 ], [ 6.152344, 13.410994 ], [ 6.152344, 13.581921 ], [ 5.800781, 13.581921 ], [ 5.800781, 13.752725 ], [ 5.449219, 13.752725 ], [ 5.449219, 13.923404 ], [ 5.097656, 13.923404 ], [ 5.097656, 13.752725 ], [ 4.394531, 13.752725 ], [ 4.394531, 13.581921 ], [ 4.042969, 13.581921 ], [ 4.042969, 12.726084 ], [ 3.867188, 12.726084 ], [ 3.867188, 12.554564 ], [ 3.691406, 12.554564 ], [ 3.691406, 11.695273 ], [ 3.515625, 11.695273 ], [ 3.515625, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 12.039321 ], [ 2.812500, 12.039321 ], [ 2.812500, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 12.039321 ], [ 2.285156, 12.039321 ], [ 2.285156, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.554564 ], [ 1.757812, 12.554564 ], [ 1.757812, 12.726084 ], [ 1.230469, 12.726084 ], [ 1.230469, 12.897489 ], [ 1.054688, 12.897489 ], [ 1.054688, 13.410994 ], [ 0.878906, 13.410994 ], [ 0.878906, 13.581921 ], [ 0.527344, 13.581921 ], [ 0.527344, 13.752725 ], [ 0.351562, 13.752725 ], [ 0.351562, 14.944785 ], [ 1.230469, 14.944785 ], [ 1.230469, 15.114553 ], [ 1.406250, 15.114553 ], [ 1.406250, 15.284185 ], [ 2.285156, 15.284185 ], [ 2.285156, 15.453680 ], [ 3.339844, 15.453680 ], [ 3.339844, 15.623037 ], [ 3.691406, 15.623037 ], [ 3.691406, 16.130262 ], [ 3.867188, 16.130262 ], [ 3.867188, 16.467695 ], [ 4.042969, 16.467695 ], [ 4.042969, 16.636192 ], [ 4.218750, 16.636192 ], [ 4.218750, 19.145168 ], [ 4.570312, 19.145168 ], [ 4.570312, 19.311143 ], [ 5.097656, 19.311143 ], [ 5.097656, 19.476950 ], [ 5.449219, 19.476950 ], [ 5.449219, 19.642588 ], [ 5.800781, 19.642588 ], [ 5.800781, 19.808054 ], [ 6.152344, 19.808054 ], [ 6.152344, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 20.138470 ], [ 6.503906, 20.138470 ], [ 6.503906, 20.303418 ], [ 6.855469, 20.303418 ], [ 6.855469, 20.468189 ], [ 7.031250, 20.468189 ], [ 7.031250, 20.632784 ], [ 7.382812, 20.632784 ], [ 7.382812, 20.797201 ], [ 7.558594, 20.797201 ], [ 7.558594, 20.961440 ], [ 7.910156, 20.961440 ], [ 7.910156, 21.125498 ], [ 8.085938, 21.125498 ], [ 8.085938, 21.289374 ], [ 8.261719, 21.289374 ], [ 8.261719, 21.453069 ], [ 8.613281, 21.453069 ], [ 8.613281, 21.616579 ], [ 8.789062, 21.616579 ], [ 8.789062, 21.779905 ], [ 9.140625, 21.779905 ], [ 9.140625, 21.943046 ], [ 9.492188, 21.943046 ], [ 9.492188, 22.105999 ], [ 9.843750, 22.105999 ], [ 9.843750, 22.268764 ], [ 10.019531, 22.268764 ], [ 10.019531, 22.431340 ], [ 10.371094, 22.431340 ], [ 10.371094, 22.593726 ], [ 10.722656, 22.593726 ], [ 10.722656, 22.755921 ], [ 10.898438, 22.755921 ], [ 10.898438, 22.917923 ], [ 11.250000, 22.917923 ], [ 11.250000, 23.079732 ], [ 11.601562, 23.079732 ], [ 11.601562, 23.241346 ], [ 11.953125, 23.241346 ], [ 11.953125, 23.402765 ], [ 12.304688, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.128906, 23.563987 ], [ 12.128906, 23.402765 ], [ 12.656250, 23.402765 ], [ 12.656250, 23.241346 ], [ 13.183594, 23.241346 ], [ 13.183594, 23.079732 ], [ 13.535156, 23.079732 ], [ 13.535156, 22.917923 ], [ 13.710938, 22.917923 ], [ 13.710938, 22.755921 ], [ 13.886719, 22.755921 ], [ 13.886719, 22.593726 ], [ 14.414062, 22.593726 ], [ 14.414062, 22.755921 ], [ 14.765625, 22.755921 ], [ 14.765625, 22.105999 ], [ 14.941406, 22.105999 ], [ 14.941406, 21.289374 ], [ 15.292969, 21.289374 ], [ 15.292969, 21.125498 ], [ 15.468750, 21.125498 ], [ 15.468750, 20.632784 ], [ 15.644531, 20.632784 ], [ 15.644531, 20.468189 ], [ 15.820312, 20.468189 ], [ 15.820312, 20.138470 ], [ 15.644531, 20.138470 ], [ 15.644531, 19.476950 ], [ 15.468750, 19.476950 ], [ 15.468750, 18.479609 ], [ 15.292969, 18.479609 ], [ 15.292969, 17.308688 ], [ 15.117188, 17.308688 ], [ 15.117188, 16.467695 ], [ 14.765625, 16.467695 ], [ 14.765625, 16.299051 ], [ 14.589844, 16.299051 ], [ 14.589844, 16.130262 ], [ 14.414062, 16.130262 ], [ 14.414062, 15.961329 ], [ 14.062500, 15.961329 ], [ 14.062500, 15.792254 ], [ 13.886719, 15.792254 ], [ 13.886719, 15.453680 ], [ 13.710938, 15.453680 ], [ 13.710938, 14.774883 ], [ 13.535156, 14.774883 ], [ 13.535156, 14.264383 ], [ 13.710938, 14.264383 ], [ 13.710938, 14.093957 ], [ 13.886719, 14.093957 ], [ 13.886719, 13.410994 ], [ 14.589844, 13.410994 ], [ 14.589844, 13.068777 ], [ 14.414062, 13.068777 ], [ 14.414062, 12.897489 ], [ 14.062500, 12.897489 ], [ 14.062500, 12.554564 ], [ 13.710938, 12.554564 ], [ 13.710938, 12.897489 ], [ 13.535156, 12.897489 ], [ 13.535156, 13.068777 ], [ 13.359375, 13.068777 ], [ 13.359375, 13.410994 ], [ 13.183594, 13.410994 ], [ 13.183594, 13.581921 ], [ 12.832031, 13.581921 ], [ 12.832031, 13.410994 ], [ 12.656250, 13.410994 ], [ 12.656250, 13.239945 ], [ 12.480469, 13.239945 ], [ 12.480469, 13.068777 ], [ 11.953125, 13.068777 ], [ 11.953125, 13.239945 ], [ 11.601562, 13.239945 ], [ 11.601562, 13.410994 ], [ 10.019531, 13.410994 ], [ 10.019531, 13.239945 ], [ 9.843750, 13.239945 ], [ 9.843750, 13.068777 ], [ 9.667969, 13.068777 ], [ 9.667969, 12.897489 ], [ 8.613281, 12.897489 ], [ 8.613281, 13.068777 ], [ 8.261719, 13.068777 ], [ 8.261719, 13.239945 ], [ 7.910156, 13.239945 ], [ 7.910156, 13.410994 ], [ 7.558594, 13.410994 ], [ 7.558594, 13.239945 ], [ 6.503906, 13.239945 ], [ 6.503906, 13.410994 ], [ 6.328125, 13.410994 ], [ 6.328125, 13.581921 ], [ 5.976562, 13.581921 ], [ 5.976562, 13.752725 ], [ 5.449219, 13.752725 ], [ 5.449219, 13.923404 ], [ 4.921875, 13.923404 ], [ 4.921875, 13.752725 ], [ 4.218750, 13.752725 ], [ 4.218750, 13.581921 ], [ 4.042969, 13.581921 ], [ 4.042969, 13.239945 ], [ 3.867188, 13.239945 ], [ 3.867188, 12.897489 ], [ 3.691406, 12.897489 ], [ 3.691406, 12.554564 ], [ 3.515625, 12.554564 ], [ 3.515625, 11.695273 ], [ 3.339844, 11.695273 ], [ 3.339844, 11.867351 ], [ 3.164062, 11.867351 ], [ 3.164062, 12.039321 ], [ 2.988281, 12.039321 ], [ 2.988281, 12.211180 ], [ 2.812500, 12.211180 ], [ 2.812500, 12.382928 ], [ 2.460938, 12.382928 ], [ 2.460938, 12.211180 ], [ 2.285156, 12.211180 ], [ 2.285156, 12.039321 ], [ 2.109375, 12.039321 ], [ 2.109375, 12.726084 ], [ 1.406250, 12.726084 ], [ 1.406250, 12.897489 ], [ 0.878906, 12.897489 ], [ 0.878906, 13.410994 ], [ 0.703125, 13.410994 ], [ 0.703125, 13.752725 ], [ 0.527344, 13.752725 ], [ 0.527344, 13.923404 ], [ 0.351562, 13.923404 ], [ 0.351562, 14.264383 ], [ 0.175781, 14.264383 ], [ 0.175781, 14.774883 ], [ 0.351562, 14.774883 ], [ 0.351562, 14.944785 ], [ 0.703125, 14.944785 ], [ 0.703125, 15.114553 ], [ 1.054688, 15.114553 ], [ 1.054688, 15.284185 ], [ 1.230469, 15.284185 ], [ 1.230469, 15.453680 ], [ 3.164062, 15.453680 ], [ 3.164062, 15.623037 ], [ 3.515625, 15.623037 ], [ 3.515625, 15.961329 ], [ 3.691406, 15.961329 ], [ 3.691406, 16.299051 ], [ 3.867188, 16.299051 ], [ 3.867188, 16.636192 ], [ 4.042969, 16.636192 ], [ 4.042969, 16.804541 ], [ 4.218750, 16.804541 ], [ 4.218750, 19.311143 ], [ 4.746094, 19.311143 ], [ 4.746094, 19.476950 ], [ 5.449219, 19.476950 ], [ 5.449219, 19.642588 ], [ 5.800781, 19.642588 ], [ 5.800781, 19.808054 ], [ 6.152344, 19.808054 ], [ 6.152344, 19.973349 ], [ 6.328125, 19.973349 ], [ 6.328125, 20.138470 ], [ 6.503906, 20.138470 ], [ 6.503906, 20.303418 ], [ 6.855469, 20.303418 ], [ 6.855469, 20.468189 ], [ 7.031250, 20.468189 ], [ 7.031250, 20.632784 ], [ 7.207031, 20.632784 ], [ 7.207031, 20.797201 ], [ 7.558594, 20.797201 ], [ 7.558594, 20.961440 ], [ 7.734375, 20.961440 ], [ 7.734375, 21.125498 ], [ 7.910156, 21.125498 ], [ 7.910156, 21.289374 ], [ 8.261719, 21.289374 ], [ 8.261719, 21.453069 ], [ 8.437500, 21.453069 ], [ 8.437500, 21.616579 ], [ 8.613281, 21.616579 ], [ 8.613281, 21.779905 ], [ 8.964844, 21.779905 ], [ 8.964844, 21.943046 ], [ 9.316406, 21.943046 ], [ 9.316406, 22.105999 ], [ 9.492188, 22.105999 ], [ 9.492188, 22.268764 ], [ 9.843750, 22.268764 ], [ 9.843750, 22.431340 ], [ 10.195312, 22.431340 ], [ 10.195312, 22.593726 ], [ 10.371094, 22.593726 ], [ 10.371094, 22.755921 ], [ 10.722656, 22.755921 ], [ 10.722656, 22.917923 ], [ 11.074219, 22.917923 ], [ 11.074219, 23.079732 ], [ 11.250000, 23.079732 ], [ 11.250000, 23.241346 ], [ 11.601562, 23.241346 ], [ 11.601562, 23.402765 ], [ 11.953125, 23.402765 ], [ 11.953125, 23.563987 ], [ 12.128906, 23.563987 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 0.878906, 10.314919 ], [ 0.878906, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 9.968851 ], [ 1.230469, 9.968851 ], [ 1.230469, 9.795678 ], [ 1.406250, 9.795678 ], [ 1.406250, 9.102097 ], [ 1.582031, 9.102097 ], [ 1.582031, 6.664608 ], [ 1.757812, 6.664608 ], [ 1.757812, 6.315299 ], [ 1.933594, 6.315299 ], [ 1.933594, 6.140555 ], [ 1.582031, 6.140555 ], [ 1.582031, 5.965754 ], [ 1.054688, 5.965754 ], [ 1.054688, 6.140555 ], [ 0.878906, 6.140555 ], [ 0.878906, 6.315299 ], [ 0.703125, 6.315299 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.710992 ], [ 0.703125, 7.710992 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 9.102097 ], [ 0.351562, 9.102097 ], [ 0.351562, 10.141932 ], [ 0.175781, 10.141932 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 11.005904 ], [ 0.878906, 11.005904 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 11.178402 ], [ 0.351562, 11.005904 ], [ 0.878906, 11.005904 ], [ 0.878906, 10.660608 ], [ 0.703125, 10.660608 ], [ 0.703125, 10.314919 ], [ 1.054688, 10.314919 ], [ 1.054688, 10.141932 ], [ 1.230469, 10.141932 ], [ 1.230469, 9.968851 ], [ 1.406250, 9.968851 ], [ 1.406250, 9.275622 ], [ 1.582031, 9.275622 ], [ 1.582031, 6.489983 ], [ 1.757812, 6.489983 ], [ 1.757812, 6.140555 ], [ 1.582031, 6.140555 ], [ 1.582031, 5.965754 ], [ 0.878906, 5.965754 ], [ 0.878906, 6.140555 ], [ 0.703125, 6.140555 ], [ 0.703125, 6.664608 ], [ 0.527344, 6.664608 ], [ 0.527344, 7.188101 ], [ 0.351562, 7.188101 ], [ 0.351562, 7.710992 ], [ 0.527344, 7.710992 ], [ 0.527344, 8.059230 ], [ 0.703125, 8.059230 ], [ 0.703125, 8.407168 ], [ 0.527344, 8.407168 ], [ 0.527344, 8.581021 ], [ 0.351562, 8.581021 ], [ 0.351562, 10.314919 ], [ 0.175781, 10.314919 ], [ 0.175781, 10.487812 ], [ 0.000000, 10.487812 ], [ 0.000000, 10.660608 ], [ -0.175781, 10.660608 ], [ -0.175781, 11.005904 ], [ 0.000000, 11.005904 ], [ 0.000000, 11.178402 ], [ 0.351562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.211180 ], [ 2.812500, 12.039321 ], [ 3.164062, 12.039321 ], [ 3.164062, 11.867351 ], [ 3.515625, 11.867351 ], [ 3.515625, 11.695273 ], [ 3.691406, 11.695273 ], [ 3.691406, 11.523088 ], [ 3.515625, 11.523088 ], [ 3.515625, 11.178402 ], [ 3.691406, 11.178402 ], [ 3.691406, 10.833306 ], [ 3.867188, 10.833306 ], [ 3.867188, 10.487812 ], [ 3.691406, 10.487812 ], [ 3.691406, 10.314919 ], [ 3.515625, 10.314919 ], [ 3.515625, 10.141932 ], [ 3.691406, 10.141932 ], [ 3.691406, 9.968851 ], [ 3.515625, 9.968851 ], [ 3.515625, 9.795678 ], [ 3.339844, 9.795678 ], [ 3.339844, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.275622 ], [ 2.988281, 9.275622 ], [ 2.988281, 8.928487 ], [ 2.812500, 8.928487 ], [ 2.812500, 8.581021 ], [ 2.636719, 8.581021 ], [ 2.636719, 8.233237 ], [ 2.812500, 8.233237 ], [ 2.812500, 7.013668 ], [ 2.636719, 7.013668 ], [ 2.636719, 6.315299 ], [ 2.460938, 6.315299 ], [ 2.460938, 6.140555 ], [ 1.933594, 6.140555 ], [ 1.933594, 6.315299 ], [ 1.757812, 6.315299 ], [ 1.757812, 6.664608 ], [ 1.582031, 6.664608 ], [ 1.582031, 9.102097 ], [ 1.406250, 9.102097 ], [ 1.406250, 9.795678 ], [ 1.230469, 9.795678 ], [ 1.230469, 9.968851 ], [ 1.054688, 9.968851 ], [ 1.054688, 10.141932 ], [ 0.878906, 10.141932 ], [ 0.878906, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.005904 ], [ 1.230469, 11.350797 ], [ 1.406250, 11.350797 ], [ 1.406250, 11.523088 ], [ 1.757812, 11.523088 ], [ 1.757812, 11.695273 ], [ 2.109375, 11.695273 ], [ 2.109375, 11.867351 ], [ 2.285156, 11.867351 ], [ 2.285156, 12.039321 ], [ 2.460938, 12.039321 ], [ 2.460938, 12.211180 ], [ 2.812500, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.812500, 12.382928 ], [ 2.812500, 12.211180 ], [ 2.988281, 12.211180 ], [ 2.988281, 12.039321 ], [ 3.164062, 12.039321 ], [ 3.164062, 11.867351 ], [ 3.339844, 11.867351 ], [ 3.339844, 11.695273 ], [ 3.515625, 11.695273 ], [ 3.515625, 11.005904 ], [ 3.691406, 11.005904 ], [ 3.691406, 10.660608 ], [ 3.515625, 10.660608 ], [ 3.515625, 10.314919 ], [ 3.691406, 10.314919 ], [ 3.691406, 9.968851 ], [ 3.515625, 9.968851 ], [ 3.515625, 9.795678 ], [ 3.339844, 9.795678 ], [ 3.339844, 9.449062 ], [ 3.164062, 9.449062 ], [ 3.164062, 9.275622 ], [ 2.812500, 9.275622 ], [ 2.812500, 8.928487 ], [ 2.636719, 8.928487 ], [ 2.636719, 6.315299 ], [ 2.285156, 6.315299 ], [ 2.285156, 6.140555 ], [ 1.757812, 6.140555 ], [ 1.757812, 6.489983 ], [ 1.582031, 6.489983 ], [ 1.582031, 9.275622 ], [ 1.406250, 9.275622 ], [ 1.406250, 9.968851 ], [ 1.230469, 9.968851 ], [ 1.230469, 10.141932 ], [ 1.054688, 10.141932 ], [ 1.054688, 10.314919 ], [ 0.703125, 10.314919 ], [ 0.703125, 10.660608 ], [ 0.878906, 10.660608 ], [ 0.878906, 11.005904 ], [ 1.230469, 11.005904 ], [ 1.230469, 11.350797 ], [ 1.406250, 11.350797 ], [ 1.406250, 11.695273 ], [ 1.933594, 11.695273 ], [ 1.933594, 11.867351 ], [ 2.109375, 11.867351 ], [ 2.109375, 12.039321 ], [ 2.285156, 12.039321 ], [ 2.285156, 12.211180 ], [ 2.460938, 12.211180 ], [ 2.460938, 12.382928 ], [ 2.812500, 12.382928 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.923404 ], [ 5.449219, 13.752725 ], [ 5.800781, 13.752725 ], [ 5.800781, 13.581921 ], [ 6.152344, 13.581921 ], [ 6.152344, 13.410994 ], [ 6.503906, 13.410994 ], [ 6.503906, 13.239945 ], [ 6.679688, 13.239945 ], [ 6.679688, 13.068777 ], [ 7.558594, 13.068777 ], [ 7.558594, 13.239945 ], [ 7.734375, 13.239945 ], [ 7.734375, 13.410994 ], [ 7.910156, 13.410994 ], [ 7.910156, 13.239945 ], [ 8.261719, 13.239945 ], [ 8.261719, 13.068777 ], [ 8.613281, 13.068777 ], [ 8.613281, 12.897489 ], [ 9.843750, 12.897489 ], [ 9.843750, 13.068777 ], [ 10.195312, 13.068777 ], [ 10.195312, 13.239945 ], [ 11.074219, 13.239945 ], [ 11.074219, 13.410994 ], [ 11.601562, 13.410994 ], [ 11.601562, 13.239945 ], [ 11.953125, 13.239945 ], [ 11.953125, 13.068777 ], [ 12.480469, 13.068777 ], [ 12.480469, 13.239945 ], [ 12.832031, 13.239945 ], [ 12.832031, 13.410994 ], [ 13.007812, 13.410994 ], [ 13.007812, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.359375, 13.410994 ], [ 13.535156, 13.410994 ], [ 13.535156, 13.068777 ], [ 13.710938, 13.068777 ], [ 13.710938, 12.726084 ], [ 13.886719, 12.726084 ], [ 13.886719, 12.382928 ], [ 14.414062, 12.382928 ], [ 14.414062, 12.039321 ], [ 14.589844, 12.039321 ], [ 14.589844, 11.867351 ], [ 14.414062, 11.867351 ], [ 14.414062, 11.350797 ], [ 14.238281, 11.350797 ], [ 14.238281, 11.178402 ], [ 13.886719, 11.178402 ], [ 13.886719, 11.005904 ], [ 13.710938, 11.005904 ], [ 13.710938, 10.833306 ], [ 13.535156, 10.833306 ], [ 13.535156, 10.487812 ], [ 13.359375, 10.487812 ], [ 13.359375, 9.795678 ], [ 13.183594, 9.795678 ], [ 13.183594, 9.449062 ], [ 13.007812, 9.449062 ], [ 13.007812, 9.102097 ], [ 12.832031, 9.102097 ], [ 12.832031, 8.581021 ], [ 12.656250, 8.581021 ], [ 12.656250, 8.407168 ], [ 12.480469, 8.407168 ], [ 12.480469, 8.233237 ], [ 12.304688, 8.233237 ], [ 12.304688, 8.059230 ], [ 12.128906, 8.059230 ], [ 12.128906, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 7.362467 ], [ 11.777344, 7.362467 ], [ 11.777344, 6.839170 ], [ 11.425781, 6.839170 ], [ 11.425781, 6.664608 ], [ 10.898438, 6.664608 ], [ 10.898438, 6.839170 ], [ 10.546875, 6.839170 ], [ 10.546875, 7.013668 ], [ 10.195312, 7.013668 ], [ 10.195312, 6.839170 ], [ 10.019531, 6.839170 ], [ 10.019531, 6.664608 ], [ 9.667969, 6.664608 ], [ 9.667969, 6.489983 ], [ 9.316406, 6.489983 ], [ 9.316406, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 5.965754 ], [ 8.964844, 5.965754 ], [ 8.964844, 5.615986 ], [ 8.789062, 5.615986 ], [ 8.789062, 5.266008 ], [ 8.613281, 5.266008 ], [ 8.613281, 4.915833 ], [ 8.437500, 4.915833 ], [ 8.437500, 4.740675 ], [ 8.261719, 4.740675 ], [ 8.261719, 4.565474 ], [ 7.734375, 4.565474 ], [ 7.734375, 4.390229 ], [ 7.031250, 4.390229 ], [ 7.031250, 4.214943 ], [ 5.800781, 4.214943 ], [ 5.800781, 4.565474 ], [ 5.625000, 4.565474 ], [ 5.625000, 4.740675 ], [ 5.449219, 4.740675 ], [ 5.449219, 5.090944 ], [ 5.273438, 5.090944 ], [ 5.273438, 5.441022 ], [ 5.097656, 5.441022 ], [ 5.097656, 5.615986 ], [ 4.921875, 5.615986 ], [ 4.921875, 5.790897 ], [ 4.746094, 5.790897 ], [ 4.746094, 5.965754 ], [ 4.570312, 5.965754 ], [ 4.570312, 6.140555 ], [ 4.394531, 6.140555 ], [ 4.394531, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 7.013668 ], [ 2.812500, 7.013668 ], [ 2.812500, 8.233237 ], [ 2.636719, 8.233237 ], [ 2.636719, 8.581021 ], [ 2.812500, 8.581021 ], [ 2.812500, 8.928487 ], [ 2.988281, 8.928487 ], [ 2.988281, 9.275622 ], [ 3.164062, 9.275622 ], [ 3.164062, 9.449062 ], [ 3.339844, 9.449062 ], [ 3.339844, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.968851 ], [ 3.691406, 9.968851 ], [ 3.691406, 10.141932 ], [ 3.515625, 10.141932 ], [ 3.515625, 10.314919 ], [ 3.691406, 10.314919 ], [ 3.691406, 10.487812 ], [ 3.867188, 10.487812 ], [ 3.867188, 10.833306 ], [ 3.691406, 10.833306 ], [ 3.691406, 11.178402 ], [ 3.515625, 11.178402 ], [ 3.515625, 11.523088 ], [ 3.691406, 11.523088 ], [ 3.691406, 12.554564 ], [ 3.867188, 12.554564 ], [ 3.867188, 12.726084 ], [ 4.042969, 12.726084 ], [ 4.042969, 13.581921 ], [ 4.394531, 13.581921 ], [ 4.394531, 13.752725 ], [ 5.097656, 13.752725 ], [ 5.097656, 13.923404 ], [ 5.449219, 13.923404 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.923404 ], [ 5.449219, 13.752725 ], [ 5.976562, 13.752725 ], [ 5.976562, 13.581921 ], [ 6.328125, 13.581921 ], [ 6.328125, 13.410994 ], [ 6.503906, 13.410994 ], [ 6.503906, 13.239945 ], [ 7.558594, 13.239945 ], [ 7.558594, 13.410994 ], [ 7.910156, 13.410994 ], [ 7.910156, 13.239945 ], [ 8.261719, 13.239945 ], [ 8.261719, 13.068777 ], [ 8.613281, 13.068777 ], [ 8.613281, 12.897489 ], [ 9.667969, 12.897489 ], [ 9.667969, 13.068777 ], [ 9.843750, 13.068777 ], [ 9.843750, 13.239945 ], [ 10.019531, 13.239945 ], [ 10.019531, 13.410994 ], [ 11.601562, 13.410994 ], [ 11.601562, 13.239945 ], [ 11.953125, 13.239945 ], [ 11.953125, 13.068777 ], [ 12.480469, 13.068777 ], [ 12.480469, 13.239945 ], [ 12.656250, 13.239945 ], [ 12.656250, 13.410994 ], [ 12.832031, 13.410994 ], [ 12.832031, 13.581921 ], [ 13.183594, 13.581921 ], [ 13.183594, 13.410994 ], [ 13.359375, 13.410994 ], [ 13.359375, 13.068777 ], [ 13.535156, 13.068777 ], [ 13.535156, 12.897489 ], [ 13.710938, 12.897489 ], [ 13.710938, 12.554564 ], [ 14.062500, 12.554564 ], [ 14.062500, 12.382928 ], [ 14.238281, 12.382928 ], [ 14.238281, 12.211180 ], [ 14.414062, 12.211180 ], [ 14.414062, 11.523088 ], [ 14.238281, 11.523088 ], [ 14.238281, 11.350797 ], [ 14.062500, 11.350797 ], [ 14.062500, 11.178402 ], [ 13.886719, 11.178402 ], [ 13.886719, 11.005904 ], [ 13.710938, 11.005904 ], [ 13.710938, 10.833306 ], [ 13.535156, 10.833306 ], [ 13.535156, 10.660608 ], [ 13.359375, 10.660608 ], [ 13.359375, 10.314919 ], [ 13.183594, 10.314919 ], [ 13.183594, 9.968851 ], [ 13.007812, 9.968851 ], [ 13.007812, 9.622414 ], [ 12.832031, 9.622414 ], [ 12.832031, 9.102097 ], [ 12.656250, 9.102097 ], [ 12.656250, 8.581021 ], [ 12.304688, 8.581021 ], [ 12.304688, 8.407168 ], [ 12.128906, 8.407168 ], [ 12.128906, 8.059230 ], [ 11.953125, 8.059230 ], [ 11.953125, 7.710992 ], [ 11.777344, 7.710992 ], [ 11.777344, 7.188101 ], [ 11.601562, 7.188101 ], [ 11.601562, 6.839170 ], [ 11.250000, 6.839170 ], [ 11.250000, 6.664608 ], [ 10.722656, 6.664608 ], [ 10.722656, 6.839170 ], [ 10.546875, 6.839170 ], [ 10.546875, 7.013668 ], [ 10.371094, 7.013668 ], [ 10.371094, 7.188101 ], [ 10.019531, 7.188101 ], [ 10.019531, 7.013668 ], [ 9.843750, 7.013668 ], [ 9.843750, 6.839170 ], [ 9.667969, 6.839170 ], [ 9.667969, 6.489983 ], [ 9.140625, 6.489983 ], [ 9.140625, 6.315299 ], [ 8.964844, 6.315299 ], [ 8.964844, 5.965754 ], [ 8.789062, 5.965754 ], [ 8.789062, 5.615986 ], [ 8.613281, 5.615986 ], [ 8.613281, 5.266008 ], [ 8.437500, 5.266008 ], [ 8.437500, 4.915833 ], [ 8.261719, 4.915833 ], [ 8.261719, 4.740675 ], [ 7.734375, 4.740675 ], [ 7.734375, 4.565474 ], [ 7.031250, 4.565474 ], [ 7.031250, 4.390229 ], [ 5.625000, 4.390229 ], [ 5.625000, 4.565474 ], [ 5.449219, 4.565474 ], [ 5.449219, 4.740675 ], [ 5.273438, 4.740675 ], [ 5.273438, 5.090944 ], [ 5.097656, 5.090944 ], [ 5.097656, 5.441022 ], [ 4.921875, 5.441022 ], [ 4.921875, 5.615986 ], [ 4.746094, 5.615986 ], [ 4.746094, 5.790897 ], [ 4.570312, 5.790897 ], [ 4.570312, 5.965754 ], [ 4.394531, 5.965754 ], [ 4.394531, 6.140555 ], [ 4.218750, 6.140555 ], [ 4.218750, 6.315299 ], [ 2.636719, 6.315299 ], [ 2.636719, 8.928487 ], [ 2.812500, 8.928487 ], [ 2.812500, 9.275622 ], [ 3.164062, 9.275622 ], [ 3.164062, 9.449062 ], [ 3.339844, 9.449062 ], [ 3.339844, 9.795678 ], [ 3.515625, 9.795678 ], [ 3.515625, 9.968851 ], [ 3.691406, 9.968851 ], [ 3.691406, 10.314919 ], [ 3.515625, 10.314919 ], [ 3.515625, 10.660608 ], [ 3.691406, 10.660608 ], [ 3.691406, 11.005904 ], [ 3.515625, 11.005904 ], [ 3.515625, 12.554564 ], [ 3.691406, 12.554564 ], [ 3.691406, 12.897489 ], [ 3.867188, 12.897489 ], [ 3.867188, 13.239945 ], [ 4.042969, 13.239945 ], [ 4.042969, 13.581921 ], [ 4.218750, 13.581921 ], [ 4.218750, 13.752725 ], [ 4.921875, 13.752725 ], [ 4.921875, 13.923404 ], [ 5.449219, 13.923404 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.054628 ], [ 9.316406, 1.054628 ], [ 9.316406, 1.406109 ], [ 9.492188, 1.406109 ], [ 9.492188, 1.933227 ], [ 9.667969, 1.933227 ], [ 9.667969, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.250000, 2.284551 ], [ 11.250000, 1.230374 ], [ 9.667969, 1.230374 ], [ 9.667969, 1.054628 ], [ 9.140625, 1.054628 ], [ 9.140625, 1.406109 ], [ 9.316406, 1.406109 ], [ 9.316406, 1.933227 ], [ 9.492188, 1.933227 ], [ 9.492188, 2.284551 ], [ 11.250000, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 23.241346 ], [ 16.171875, 23.079732 ], [ 16.523438, 23.079732 ], [ 16.523438, 22.917923 ], [ 16.875000, 22.917923 ], [ 16.875000, 22.755921 ], [ 17.226562, 22.755921 ], [ 17.226562, 22.593726 ], [ 17.578125, 22.593726 ], [ 17.578125, 22.431340 ], [ 17.929688, 22.431340 ], [ 17.929688, 22.268764 ], [ 18.281250, 22.268764 ], [ 18.281250, 22.105999 ], [ 18.632812, 22.105999 ], [ 18.632812, 21.943046 ], [ 18.984375, 21.943046 ], [ 18.984375, 21.779905 ], [ 19.335938, 21.779905 ], [ 19.335938, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.453069 ], [ 20.039062, 21.453069 ], [ 20.039062, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 21.125498 ], [ 20.742188, 21.125498 ], [ 20.742188, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.797201 ], [ 21.445312, 20.797201 ], [ 21.445312, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.468189 ], [ 22.148438, 20.468189 ], [ 22.148438, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 20.138470 ], [ 22.851562, 20.138470 ], [ 22.851562, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.808054 ], [ 23.554688, 19.808054 ], [ 23.554688, 19.642588 ], [ 23.906250, 19.642588 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.623037 ], [ 23.027344, 15.453680 ], [ 22.851562, 15.453680 ], [ 22.851562, 15.284185 ], [ 22.675781, 15.284185 ], [ 22.675781, 14.944785 ], [ 22.500000, 14.944785 ], [ 22.500000, 14.604847 ], [ 22.324219, 14.604847 ], [ 22.324219, 14.093957 ], [ 22.500000, 14.093957 ], [ 22.500000, 13.923404 ], [ 22.324219, 13.923404 ], [ 22.324219, 13.752725 ], [ 22.148438, 13.752725 ], [ 22.148438, 13.581921 ], [ 22.324219, 13.581921 ], [ 22.324219, 13.239945 ], [ 22.148438, 13.239945 ], [ 22.148438, 12.897489 ], [ 21.972656, 12.897489 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.554564 ], [ 22.324219, 12.382928 ], [ 22.500000, 12.382928 ], [ 22.500000, 11.523088 ], [ 22.675781, 11.523088 ], [ 22.675781, 11.350797 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.675781, 11.178402 ], [ 22.675781, 11.005904 ], [ 22.148438, 11.005904 ], [ 22.148438, 10.833306 ], [ 21.972656, 10.833306 ], [ 21.972656, 10.487812 ], [ 21.796875, 10.487812 ], [ 21.796875, 10.314919 ], [ 21.621094, 10.314919 ], [ 21.621094, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 9.968851 ], [ 21.269531, 9.968851 ], [ 21.269531, 9.622414 ], [ 21.093750, 9.622414 ], [ 21.093750, 9.449062 ], [ 20.917969, 9.449062 ], [ 20.917969, 9.275622 ], [ 20.566406, 9.275622 ], [ 20.566406, 9.102097 ], [ 20.214844, 9.102097 ], [ 20.214844, 8.928487 ], [ 19.511719, 8.928487 ], [ 19.511719, 9.102097 ], [ 19.160156, 9.102097 ], [ 19.160156, 8.928487 ], [ 18.808594, 8.928487 ], [ 18.808594, 8.754795 ], [ 18.984375, 8.754795 ], [ 18.984375, 8.407168 ], [ 18.632812, 8.407168 ], [ 18.632812, 8.233237 ], [ 18.457031, 8.233237 ], [ 18.457031, 8.059230 ], [ 18.105469, 8.059230 ], [ 18.105469, 7.885147 ], [ 17.753906, 7.885147 ], [ 17.753906, 7.710992 ], [ 17.050781, 7.710992 ], [ 17.050781, 7.536764 ], [ 16.523438, 7.536764 ], [ 16.523438, 7.710992 ], [ 16.347656, 7.710992 ], [ 16.347656, 7.536764 ], [ 15.820312, 7.536764 ], [ 15.820312, 7.362467 ], [ 15.292969, 7.362467 ], [ 15.292969, 7.536764 ], [ 15.468750, 7.536764 ], [ 15.468750, 7.885147 ], [ 15.292969, 7.885147 ], [ 15.292969, 8.233237 ], [ 15.117188, 8.233237 ], [ 15.117188, 8.581021 ], [ 14.941406, 8.581021 ], [ 14.941406, 8.754795 ], [ 14.589844, 8.754795 ], [ 14.589844, 8.928487 ], [ 14.414062, 8.928487 ], [ 14.414062, 9.102097 ], [ 14.238281, 9.102097 ], [ 14.238281, 9.275622 ], [ 14.062500, 9.275622 ], [ 14.062500, 9.449062 ], [ 13.886719, 9.449062 ], [ 13.886719, 9.622414 ], [ 14.062500, 9.622414 ], [ 14.062500, 9.795678 ], [ 14.238281, 9.795678 ], [ 14.238281, 9.968851 ], [ 15.292969, 9.968851 ], [ 15.292969, 10.314919 ], [ 15.117188, 10.314919 ], [ 15.117188, 10.660608 ], [ 14.941406, 10.660608 ], [ 14.941406, 12.211180 ], [ 14.765625, 12.211180 ], [ 14.765625, 12.554564 ], [ 14.589844, 12.554564 ], [ 14.589844, 12.726084 ], [ 14.414062, 12.726084 ], [ 14.414062, 13.068777 ], [ 14.589844, 13.068777 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 13.923404 ], [ 13.710938, 13.923404 ], [ 13.710938, 14.264383 ], [ 13.535156, 14.264383 ], [ 13.535156, 14.604847 ], [ 13.710938, 14.604847 ], [ 13.710938, 15.284185 ], [ 13.886719, 15.284185 ], [ 13.886719, 15.623037 ], [ 14.062500, 15.623037 ], [ 14.062500, 15.792254 ], [ 14.414062, 15.792254 ], [ 14.414062, 15.961329 ], [ 14.589844, 15.961329 ], [ 14.589844, 16.130262 ], [ 14.765625, 16.130262 ], [ 14.765625, 16.299051 ], [ 15.117188, 16.299051 ], [ 15.117188, 16.467695 ], [ 15.292969, 16.467695 ], [ 15.292969, 18.479609 ], [ 15.468750, 18.479609 ], [ 15.468750, 19.476950 ], [ 15.644531, 19.476950 ], [ 15.644531, 20.138470 ], [ 15.820312, 20.138470 ], [ 15.820312, 20.468189 ], [ 15.644531, 20.468189 ], [ 15.644531, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.125498 ], [ 15.117188, 21.125498 ], [ 15.117188, 21.616579 ], [ 14.941406, 21.616579 ], [ 14.941406, 22.431340 ], [ 14.765625, 22.431340 ], [ 14.765625, 22.917923 ], [ 15.117188, 22.917923 ], [ 15.117188, 23.079732 ], [ 15.468750, 23.079732 ], [ 15.468750, 23.241346 ], [ 16.171875, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171875, 23.402765 ], [ 16.171875, 23.241346 ], [ 16.523438, 23.241346 ], [ 16.523438, 23.079732 ], [ 16.875000, 23.079732 ], [ 16.875000, 22.917923 ], [ 17.226562, 22.917923 ], [ 17.226562, 22.755921 ], [ 17.578125, 22.755921 ], [ 17.578125, 22.593726 ], [ 17.753906, 22.593726 ], [ 17.753906, 22.431340 ], [ 18.105469, 22.431340 ], [ 18.105469, 22.268764 ], [ 18.457031, 22.268764 ], [ 18.457031, 22.105999 ], [ 18.808594, 22.105999 ], [ 18.808594, 21.943046 ], [ 19.160156, 21.943046 ], [ 19.160156, 21.779905 ], [ 19.511719, 21.779905 ], [ 19.511719, 21.616579 ], [ 19.687500, 21.616579 ], [ 19.687500, 21.453069 ], [ 20.039062, 21.453069 ], [ 20.039062, 21.289374 ], [ 20.390625, 21.289374 ], [ 20.390625, 21.125498 ], [ 20.742188, 21.125498 ], [ 20.742188, 20.961440 ], [ 21.093750, 20.961440 ], [ 21.093750, 20.797201 ], [ 21.445312, 20.797201 ], [ 21.445312, 20.632784 ], [ 21.796875, 20.632784 ], [ 21.796875, 20.468189 ], [ 22.148438, 20.468189 ], [ 22.148438, 20.303418 ], [ 22.500000, 20.303418 ], [ 22.500000, 20.138470 ], [ 22.851562, 20.138470 ], [ 22.851562, 19.973349 ], [ 23.203125, 19.973349 ], [ 23.203125, 19.808054 ], [ 23.554688, 19.808054 ], [ 23.554688, 19.642588 ], [ 23.730469, 19.642588 ], [ 23.730469, 15.623037 ], [ 23.203125, 15.623037 ], [ 23.203125, 15.792254 ], [ 22.851562, 15.792254 ], [ 22.851562, 15.453680 ], [ 22.675781, 15.453680 ], [ 22.675781, 15.114553 ], [ 22.500000, 15.114553 ], [ 22.500000, 14.774883 ], [ 22.324219, 14.774883 ], [ 22.324219, 14.434680 ], [ 22.148438, 14.434680 ], [ 22.148438, 14.264383 ], [ 22.324219, 14.264383 ], [ 22.324219, 14.093957 ], [ 22.500000, 14.093957 ], [ 22.500000, 13.923404 ], [ 22.148438, 13.923404 ], [ 22.148438, 13.239945 ], [ 21.972656, 13.239945 ], [ 21.972656, 12.897489 ], [ 21.796875, 12.897489 ], [ 21.796875, 12.726084 ], [ 22.148438, 12.726084 ], [ 22.148438, 12.554564 ], [ 22.324219, 12.554564 ], [ 22.324219, 12.382928 ], [ 22.500000, 12.382928 ], [ 22.500000, 11.523088 ], [ 22.851562, 11.523088 ], [ 22.851562, 11.178402 ], [ 22.675781, 11.178402 ], [ 22.675781, 11.005904 ], [ 22.148438, 11.005904 ], [ 22.148438, 10.833306 ], [ 21.796875, 10.833306 ], [ 21.796875, 10.660608 ], [ 21.621094, 10.660608 ], [ 21.621094, 10.487812 ], [ 21.445312, 10.487812 ], [ 21.445312, 10.141932 ], [ 21.269531, 10.141932 ], [ 21.269531, 9.968851 ], [ 21.093750, 9.968851 ], [ 21.093750, 9.622414 ], [ 20.917969, 9.622414 ], [ 20.917969, 9.449062 ], [ 20.566406, 9.449062 ], [ 20.566406, 9.275622 ], [ 20.214844, 9.275622 ], [ 20.214844, 9.102097 ], [ 18.808594, 9.102097 ], [ 18.808594, 8.581021 ], [ 18.457031, 8.581021 ], [ 18.457031, 8.407168 ], [ 18.281250, 8.407168 ], [ 18.281250, 8.233237 ], [ 18.105469, 8.233237 ], [ 18.105469, 8.059230 ], [ 17.753906, 8.059230 ], [ 17.753906, 7.885147 ], [ 17.402344, 7.885147 ], [ 17.402344, 7.710992 ], [ 17.050781, 7.710992 ], [ 17.050781, 7.536764 ], [ 16.523438, 7.536764 ], [ 16.523438, 7.710992 ], [ 16.347656, 7.710992 ], [ 16.347656, 7.885147 ], [ 16.171875, 7.885147 ], [ 16.171875, 7.710992 ], [ 15.996094, 7.710992 ], [ 15.996094, 7.536764 ], [ 15.292969, 7.536764 ], [ 15.292969, 8.059230 ], [ 15.117188, 8.059230 ], [ 15.117188, 8.581021 ], [ 14.941406, 8.581021 ], [ 14.941406, 8.928487 ], [ 14.589844, 8.928487 ], [ 14.589844, 9.102097 ], [ 14.238281, 9.102097 ], [ 14.238281, 9.275622 ], [ 14.062500, 9.275622 ], [ 14.062500, 9.449062 ], [ 13.886719, 9.449062 ], [ 13.886719, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 10.141932 ], [ 14.238281, 10.141932 ], [ 14.238281, 9.968851 ], [ 14.765625, 9.968851 ], [ 14.765625, 10.141932 ], [ 15.292969, 10.141932 ], [ 15.292969, 10.314919 ], [ 15.117188, 10.314919 ], [ 15.117188, 10.660608 ], [ 14.941406, 10.660608 ], [ 14.941406, 10.833306 ], [ 14.765625, 10.833306 ], [ 14.765625, 11.350797 ], [ 14.941406, 11.350797 ], [ 14.941406, 12.039321 ], [ 14.765625, 12.039321 ], [ 14.765625, 12.382928 ], [ 14.589844, 12.382928 ], [ 14.589844, 12.726084 ], [ 14.414062, 12.726084 ], [ 14.414062, 13.068777 ], [ 14.589844, 13.068777 ], [ 14.589844, 13.410994 ], [ 13.886719, 13.410994 ], [ 13.886719, 14.093957 ], [ 13.710938, 14.093957 ], [ 13.710938, 14.264383 ], [ 13.535156, 14.264383 ], [ 13.535156, 14.774883 ], [ 13.710938, 14.774883 ], [ 13.710938, 15.453680 ], [ 13.886719, 15.453680 ], [ 13.886719, 15.792254 ], [ 14.062500, 15.792254 ], [ 14.062500, 15.961329 ], [ 14.414062, 15.961329 ], [ 14.414062, 16.130262 ], [ 14.589844, 16.130262 ], [ 14.589844, 16.299051 ], [ 14.765625, 16.299051 ], [ 14.765625, 16.467695 ], [ 15.117188, 16.467695 ], [ 15.117188, 17.308688 ], [ 15.292969, 17.308688 ], [ 15.292969, 18.479609 ], [ 15.468750, 18.479609 ], [ 15.468750, 19.476950 ], [ 15.644531, 19.476950 ], [ 15.644531, 20.138470 ], [ 15.820312, 20.138470 ], [ 15.820312, 20.468189 ], [ 15.644531, 20.468189 ], [ 15.644531, 20.632784 ], [ 15.468750, 20.632784 ], [ 15.468750, 21.125498 ], [ 15.292969, 21.125498 ], [ 15.292969, 21.289374 ], [ 14.941406, 21.289374 ], [ 14.941406, 22.105999 ], [ 14.765625, 22.105999 ], [ 14.765625, 22.917923 ], [ 14.941406, 22.917923 ], [ 14.941406, 23.079732 ], [ 15.292969, 23.079732 ], [ 15.292969, 23.241346 ], [ 15.468750, 23.241346 ], [ 15.468750, 23.402765 ], [ 16.171875, 23.402765 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 12.726084 ], [ 14.589844, 12.554564 ], [ 14.765625, 12.554564 ], [ 14.765625, 12.211180 ], [ 14.941406, 12.211180 ], [ 14.941406, 10.660608 ], [ 15.117188, 10.660608 ], [ 15.117188, 10.314919 ], [ 15.292969, 10.314919 ], [ 15.292969, 9.968851 ], [ 14.238281, 9.968851 ], [ 14.238281, 9.795678 ], [ 14.062500, 9.795678 ], [ 14.062500, 9.622414 ], [ 13.886719, 9.622414 ], [ 13.886719, 9.449062 ], [ 14.062500, 9.449062 ], [ 14.062500, 9.275622 ], [ 14.238281, 9.275622 ], [ 14.238281, 9.102097 ], [ 14.414062, 9.102097 ], [ 14.414062, 8.928487 ], [ 14.589844, 8.928487 ], [ 14.589844, 8.754795 ], [ 14.941406, 8.754795 ], [ 14.941406, 8.581021 ], [ 15.117188, 8.581021 ], [ 15.117188, 8.233237 ], [ 15.292969, 8.233237 ], [ 15.292969, 7.885147 ], [ 15.468750, 7.885147 ], [ 15.468750, 7.536764 ], [ 15.292969, 7.536764 ], [ 15.292969, 7.188101 ], [ 15.117188, 7.188101 ], [ 15.117188, 6.839170 ], [ 14.941406, 6.839170 ], [ 14.941406, 6.489983 ], [ 14.765625, 6.489983 ], [ 14.765625, 6.315299 ], [ 14.589844, 6.315299 ], [ 14.589844, 5.790897 ], [ 14.414062, 5.790897 ], [ 14.414062, 5.266008 ], [ 14.589844, 5.266008 ], [ 14.589844, 4.915833 ], [ 14.414062, 4.915833 ], [ 14.414062, 4.565474 ], [ 14.589844, 4.565474 ], [ 14.589844, 4.390229 ], [ 14.765625, 4.390229 ], [ 14.765625, 4.214943 ], [ 14.941406, 4.214943 ], [ 14.941406, 4.039618 ], [ 15.117188, 4.039618 ], [ 15.117188, 3.688855 ], [ 15.292969, 3.688855 ], [ 15.292969, 3.337954 ], [ 15.468750, 3.337954 ], [ 15.468750, 3.162456 ], [ 15.644531, 3.162456 ], [ 15.644531, 2.986927 ], [ 15.820312, 2.986927 ], [ 15.820312, 2.460181 ], [ 15.996094, 2.460181 ], [ 15.996094, 1.757537 ], [ 15.468750, 1.757537 ], [ 15.468750, 1.933227 ], [ 14.765625, 1.933227 ], [ 14.765625, 2.108899 ], [ 14.414062, 2.108899 ], [ 14.414062, 2.284551 ], [ 12.832031, 2.284551 ], [ 12.832031, 2.108899 ], [ 11.953125, 2.108899 ], [ 11.953125, 2.284551 ], [ 9.667969, 2.284551 ], [ 9.667969, 2.635789 ], [ 9.843750, 2.635789 ], [ 9.843750, 3.162456 ], [ 9.667969, 3.162456 ], [ 9.667969, 3.513421 ], [ 9.492188, 3.513421 ], [ 9.492188, 3.688855 ], [ 9.140625, 3.688855 ], [ 9.140625, 3.864255 ], [ 8.964844, 3.864255 ], [ 8.964844, 4.039618 ], [ 8.789062, 4.039618 ], [ 8.789062, 4.390229 ], [ 8.437500, 4.390229 ], [ 8.437500, 4.915833 ], [ 8.613281, 4.915833 ], [ 8.613281, 5.266008 ], [ 8.789062, 5.266008 ], [ 8.789062, 5.615986 ], [ 8.964844, 5.615986 ], [ 8.964844, 5.965754 ], [ 9.140625, 5.965754 ], [ 9.140625, 6.315299 ], [ 9.316406, 6.315299 ], [ 9.316406, 6.489983 ], [ 9.667969, 6.489983 ], [ 9.667969, 6.664608 ], [ 10.019531, 6.664608 ], [ 10.019531, 6.839170 ], [ 10.195312, 6.839170 ], [ 10.195312, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.839170 ], [ 10.898438, 6.839170 ], [ 10.898438, 6.664608 ], [ 11.425781, 6.664608 ], [ 11.425781, 6.839170 ], [ 11.777344, 6.839170 ], [ 11.777344, 7.362467 ], [ 11.953125, 7.362467 ], [ 11.953125, 7.710992 ], [ 12.128906, 7.710992 ], [ 12.128906, 8.059230 ], [ 12.304688, 8.059230 ], [ 12.304688, 8.233237 ], [ 12.480469, 8.233237 ], [ 12.480469, 8.407168 ], [ 12.656250, 8.407168 ], [ 12.656250, 8.581021 ], [ 12.832031, 8.581021 ], [ 12.832031, 9.102097 ], [ 13.007812, 9.102097 ], [ 13.007812, 9.449062 ], [ 13.183594, 9.449062 ], [ 13.183594, 9.795678 ], [ 13.359375, 9.795678 ], [ 13.359375, 10.487812 ], [ 13.535156, 10.487812 ], [ 13.535156, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 11.005904 ], [ 13.886719, 11.005904 ], [ 13.886719, 11.178402 ], [ 14.238281, 11.178402 ], [ 14.238281, 11.350797 ], [ 14.414062, 11.350797 ], [ 14.414062, 11.867351 ], [ 14.589844, 11.867351 ], [ 14.589844, 12.039321 ], [ 14.414062, 12.039321 ], [ 14.414062, 12.382928 ], [ 14.238281, 12.382928 ], [ 14.238281, 12.726084 ], [ 14.589844, 12.726084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.414062, 12.897489 ], [ 14.414062, 12.726084 ], [ 14.589844, 12.726084 ], [ 14.589844, 12.382928 ], [ 14.765625, 12.382928 ], [ 14.765625, 12.039321 ], [ 14.941406, 12.039321 ], [ 14.941406, 11.350797 ], [ 14.765625, 11.350797 ], [ 14.765625, 10.833306 ], [ 14.941406, 10.833306 ], [ 14.941406, 10.660608 ], [ 15.117188, 10.660608 ], [ 15.117188, 10.314919 ], [ 15.292969, 10.314919 ], [ 15.292969, 10.141932 ], [ 14.765625, 10.141932 ], [ 14.765625, 9.968851 ], [ 14.238281, 9.968851 ], [ 14.238281, 10.141932 ], [ 14.062500, 10.141932 ], [ 14.062500, 9.795678 ], [ 13.886719, 9.795678 ], [ 13.886719, 9.449062 ], [ 14.062500, 9.449062 ], [ 14.062500, 9.275622 ], [ 14.238281, 9.275622 ], [ 14.238281, 9.102097 ], [ 14.589844, 9.102097 ], [ 14.589844, 8.928487 ], [ 14.941406, 8.928487 ], [ 14.941406, 8.581021 ], [ 15.117188, 8.581021 ], [ 15.117188, 8.059230 ], [ 15.292969, 8.059230 ], [ 15.292969, 7.536764 ], [ 15.117188, 7.536764 ], [ 15.117188, 7.188101 ], [ 14.941406, 7.188101 ], [ 14.941406, 6.664608 ], [ 14.765625, 6.664608 ], [ 14.765625, 6.315299 ], [ 14.414062, 6.315299 ], [ 14.414062, 4.565474 ], [ 14.589844, 4.565474 ], [ 14.589844, 4.390229 ], [ 14.765625, 4.390229 ], [ 14.765625, 4.214943 ], [ 14.941406, 4.214943 ], [ 14.941406, 3.688855 ], [ 15.117188, 3.688855 ], [ 15.117188, 3.337954 ], [ 15.468750, 3.337954 ], [ 15.468750, 3.162456 ], [ 15.820312, 3.162456 ], [ 15.820312, 2.460181 ], [ 15.996094, 2.460181 ], [ 15.996094, 1.933227 ], [ 15.820312, 1.933227 ], [ 15.820312, 1.757537 ], [ 15.468750, 1.757537 ], [ 15.468750, 1.933227 ], [ 15.117188, 1.933227 ], [ 15.117188, 2.108899 ], [ 14.589844, 2.108899 ], [ 14.589844, 2.284551 ], [ 12.832031, 2.284551 ], [ 12.832031, 2.460181 ], [ 12.656250, 2.460181 ], [ 12.656250, 2.284551 ], [ 11.777344, 2.284551 ], [ 11.777344, 2.460181 ], [ 11.601562, 2.460181 ], [ 11.601562, 2.284551 ], [ 9.492188, 2.284551 ], [ 9.492188, 2.635789 ], [ 9.667969, 2.635789 ], [ 9.667969, 3.337954 ], [ 9.492188, 3.337954 ], [ 9.492188, 3.688855 ], [ 9.316406, 3.688855 ], [ 9.316406, 3.864255 ], [ 8.964844, 3.864255 ], [ 8.964844, 4.039618 ], [ 8.789062, 4.039618 ], [ 8.789062, 4.214943 ], [ 8.613281, 4.214943 ], [ 8.613281, 4.390229 ], [ 8.437500, 4.390229 ], [ 8.437500, 5.266008 ], [ 8.613281, 5.266008 ], [ 8.613281, 5.615986 ], [ 8.789062, 5.615986 ], [ 8.789062, 5.965754 ], [ 8.964844, 5.965754 ], [ 8.964844, 6.315299 ], [ 9.140625, 6.315299 ], [ 9.140625, 6.489983 ], [ 9.667969, 6.489983 ], [ 9.667969, 6.839170 ], [ 9.843750, 6.839170 ], [ 9.843750, 7.013668 ], [ 10.019531, 7.013668 ], [ 10.019531, 7.188101 ], [ 10.371094, 7.188101 ], [ 10.371094, 7.013668 ], [ 10.546875, 7.013668 ], [ 10.546875, 6.839170 ], [ 10.722656, 6.839170 ], [ 10.722656, 6.664608 ], [ 11.250000, 6.664608 ], [ 11.250000, 6.839170 ], [ 11.601562, 6.839170 ], [ 11.601562, 7.188101 ], [ 11.777344, 7.188101 ], [ 11.777344, 7.710992 ], [ 11.953125, 7.710992 ], [ 11.953125, 8.059230 ], [ 12.128906, 8.059230 ], [ 12.128906, 8.407168 ], [ 12.304688, 8.407168 ], [ 12.304688, 8.581021 ], [ 12.656250, 8.581021 ], [ 12.656250, 9.102097 ], [ 12.832031, 9.102097 ], [ 12.832031, 9.622414 ], [ 13.007812, 9.622414 ], [ 13.007812, 9.968851 ], [ 13.183594, 9.968851 ], [ 13.183594, 10.314919 ], [ 13.359375, 10.314919 ], [ 13.359375, 10.660608 ], [ 13.535156, 10.660608 ], [ 13.535156, 10.833306 ], [ 13.710938, 10.833306 ], [ 13.710938, 11.005904 ], [ 13.886719, 11.005904 ], [ 13.886719, 11.178402 ], [ 14.062500, 11.178402 ], [ 14.062500, 11.350797 ], [ 14.238281, 11.350797 ], [ 14.238281, 11.523088 ], [ 14.414062, 11.523088 ], [ 14.414062, 12.211180 ], [ 14.238281, 12.211180 ], [ 14.238281, 12.382928 ], [ 14.062500, 12.382928 ], [ 14.062500, 12.897489 ], [ 14.414062, 12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.851562, 10.833306 ], [ 23.027344, 10.833306 ], [ 23.027344, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.314919 ], [ 23.378906, 10.314919 ], [ 23.378906, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 9.449062 ], [ 23.378906, 9.449062 ], [ 23.378906, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 8.581021 ], [ 23.906250, 8.581021 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.233237 ], [ 24.609375, 8.233237 ], [ 24.609375, 8.059230 ], [ 24.960938, 8.059230 ], [ 24.960938, 7.885147 ], [ 25.136719, 7.885147 ], [ 25.136719, 7.362467 ], [ 25.312500, 7.362467 ], [ 25.312500, 7.188101 ], [ 25.664062, 7.188101 ], [ 25.664062, 7.013668 ], [ 25.839844, 7.013668 ], [ 25.839844, 6.839170 ], [ 26.015625, 6.839170 ], [ 26.015625, 6.489983 ], [ 26.191406, 6.489983 ], [ 26.191406, 6.315299 ], [ 26.367188, 6.315299 ], [ 26.367188, 5.965754 ], [ 26.542969, 5.965754 ], [ 26.542969, 5.790897 ], [ 26.894531, 5.790897 ], [ 26.894531, 5.615986 ], [ 27.246094, 5.615986 ], [ 27.246094, 5.441022 ], [ 27.421875, 5.441022 ], [ 27.421875, 5.090944 ], [ 25.839844, 5.090944 ], [ 25.839844, 5.266008 ], [ 25.664062, 5.266008 ], [ 25.664062, 5.090944 ], [ 25.312500, 5.090944 ], [ 25.312500, 4.915833 ], [ 24.082031, 4.915833 ], [ 24.082031, 4.740675 ], [ 23.730469, 4.740675 ], [ 23.730469, 4.565474 ], [ 23.027344, 4.565474 ], [ 23.027344, 4.740675 ], [ 22.851562, 4.740675 ], [ 22.851562, 4.565474 ], [ 22.675781, 4.565474 ], [ 22.675781, 4.390229 ], [ 22.500000, 4.390229 ], [ 22.500000, 4.039618 ], [ 21.796875, 4.039618 ], [ 21.796875, 4.214943 ], [ 21.093750, 4.214943 ], [ 21.093750, 4.390229 ], [ 20.566406, 4.390229 ], [ 20.566406, 4.565474 ], [ 20.214844, 4.565474 ], [ 20.214844, 4.740675 ], [ 19.863281, 4.740675 ], [ 19.863281, 4.915833 ], [ 19.160156, 4.915833 ], [ 19.160156, 4.740675 ], [ 18.984375, 4.740675 ], [ 18.984375, 4.565474 ], [ 18.808594, 4.565474 ], [ 18.808594, 4.390229 ], [ 18.632812, 4.390229 ], [ 18.632812, 4.214943 ], [ 18.457031, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.226562, 3.513421 ], [ 17.226562, 3.688855 ], [ 17.050781, 3.688855 ], [ 17.050781, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.337954 ], [ 16.699219, 3.337954 ], [ 16.699219, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 2.986927 ], [ 16.347656, 2.986927 ], [ 16.347656, 2.635789 ], [ 16.171875, 2.635789 ], [ 16.171875, 2.284551 ], [ 15.996094, 2.284551 ], [ 15.996094, 2.460181 ], [ 15.820312, 2.460181 ], [ 15.820312, 2.986927 ], [ 15.644531, 2.986927 ], [ 15.644531, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.337954 ], [ 15.292969, 3.337954 ], [ 15.292969, 3.688855 ], [ 15.117188, 3.688855 ], [ 15.117188, 4.039618 ], [ 14.941406, 4.039618 ], [ 14.941406, 4.214943 ], [ 14.765625, 4.214943 ], [ 14.765625, 4.390229 ], [ 14.589844, 4.390229 ], [ 14.589844, 4.565474 ], [ 14.414062, 4.565474 ], [ 14.414062, 4.915833 ], [ 14.589844, 4.915833 ], [ 14.589844, 5.266008 ], [ 14.414062, 5.266008 ], [ 14.414062, 5.790897 ], [ 14.589844, 5.790897 ], [ 14.589844, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.489983 ], [ 14.941406, 6.489983 ], [ 14.941406, 6.839170 ], [ 15.117188, 6.839170 ], [ 15.117188, 7.188101 ], [ 15.292969, 7.188101 ], [ 15.292969, 7.362467 ], [ 15.820312, 7.362467 ], [ 15.820312, 7.536764 ], [ 16.347656, 7.536764 ], [ 16.347656, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.536764 ], [ 17.050781, 7.536764 ], [ 17.050781, 7.710992 ], [ 17.753906, 7.710992 ], [ 17.753906, 7.885147 ], [ 18.105469, 7.885147 ], [ 18.105469, 8.059230 ], [ 18.457031, 8.059230 ], [ 18.457031, 8.233237 ], [ 18.632812, 8.233237 ], [ 18.632812, 8.407168 ], [ 18.984375, 8.407168 ], [ 18.984375, 8.754795 ], [ 18.808594, 8.754795 ], [ 18.808594, 8.928487 ], [ 19.160156, 8.928487 ], [ 19.160156, 9.102097 ], [ 19.511719, 9.102097 ], [ 19.511719, 8.928487 ], [ 20.214844, 8.928487 ], [ 20.214844, 9.102097 ], [ 20.566406, 9.102097 ], [ 20.566406, 9.275622 ], [ 20.917969, 9.275622 ], [ 20.917969, 9.449062 ], [ 21.093750, 9.449062 ], [ 21.093750, 9.622414 ], [ 21.269531, 9.622414 ], [ 21.269531, 9.968851 ], [ 21.445312, 9.968851 ], [ 21.445312, 10.141932 ], [ 21.621094, 10.141932 ], [ 21.621094, 10.314919 ], [ 21.796875, 10.314919 ], [ 21.796875, 10.487812 ], [ 21.972656, 10.487812 ], [ 21.972656, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 11.005904 ], [ 22.675781, 11.005904 ], [ 22.675781, 11.178402 ], [ 22.851562, 11.178402 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.851562, 10.660608 ], [ 23.027344, 10.660608 ], [ 23.027344, 10.487812 ], [ 23.203125, 10.487812 ], [ 23.203125, 10.314919 ], [ 23.378906, 10.314919 ], [ 23.378906, 10.141932 ], [ 23.554688, 10.141932 ], [ 23.554688, 9.449062 ], [ 23.378906, 9.449062 ], [ 23.378906, 8.928487 ], [ 23.554688, 8.928487 ], [ 23.554688, 8.754795 ], [ 23.730469, 8.754795 ], [ 23.730469, 8.581021 ], [ 23.906250, 8.581021 ], [ 23.906250, 8.407168 ], [ 24.257812, 8.407168 ], [ 24.257812, 8.233237 ], [ 24.433594, 8.233237 ], [ 24.433594, 8.059230 ], [ 24.785156, 8.059230 ], [ 24.785156, 7.885147 ], [ 24.960938, 7.885147 ], [ 24.960938, 7.362467 ], [ 25.136719, 7.362467 ], [ 25.136719, 7.188101 ], [ 25.488281, 7.188101 ], [ 25.488281, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 6.839170 ], [ 26.015625, 6.839170 ], [ 26.015625, 6.664608 ], [ 26.191406, 6.664608 ], [ 26.191406, 6.315299 ], [ 26.367188, 6.315299 ], [ 26.367188, 5.790897 ], [ 26.718750, 5.790897 ], [ 26.718750, 5.615986 ], [ 27.070312, 5.615986 ], [ 27.070312, 5.441022 ], [ 27.246094, 5.441022 ], [ 27.246094, 5.266008 ], [ 25.136719, 5.266008 ], [ 25.136719, 5.090944 ], [ 24.960938, 5.090944 ], [ 24.960938, 4.915833 ], [ 24.609375, 4.915833 ], [ 24.609375, 5.090944 ], [ 23.906250, 5.090944 ], [ 23.906250, 4.915833 ], [ 23.554688, 4.915833 ], [ 23.554688, 4.740675 ], [ 22.675781, 4.740675 ], [ 22.675781, 4.565474 ], [ 22.500000, 4.565474 ], [ 22.500000, 4.214943 ], [ 22.324219, 4.214943 ], [ 22.324219, 4.039618 ], [ 21.972656, 4.039618 ], [ 21.972656, 4.214943 ], [ 21.621094, 4.214943 ], [ 21.621094, 4.390229 ], [ 20.566406, 4.390229 ], [ 20.566406, 4.565474 ], [ 20.214844, 4.565474 ], [ 20.214844, 4.740675 ], [ 19.863281, 4.740675 ], [ 19.863281, 4.915833 ], [ 19.511719, 4.915833 ], [ 19.511719, 5.090944 ], [ 19.335938, 5.090944 ], [ 19.335938, 4.915833 ], [ 18.984375, 4.915833 ], [ 18.984375, 4.740675 ], [ 18.808594, 4.740675 ], [ 18.808594, 4.565474 ], [ 18.632812, 4.565474 ], [ 18.632812, 4.214943 ], [ 18.457031, 4.214943 ], [ 18.457031, 3.864255 ], [ 18.281250, 3.864255 ], [ 18.281250, 3.513421 ], [ 17.929688, 3.513421 ], [ 17.929688, 3.688855 ], [ 17.226562, 3.688855 ], [ 17.226562, 3.864255 ], [ 17.050781, 3.864255 ], [ 17.050781, 3.688855 ], [ 16.875000, 3.688855 ], [ 16.875000, 3.513421 ], [ 16.699219, 3.513421 ], [ 16.699219, 3.337954 ], [ 16.523438, 3.337954 ], [ 16.523438, 3.162456 ], [ 16.347656, 3.162456 ], [ 16.347656, 2.811371 ], [ 16.171875, 2.811371 ], [ 16.171875, 2.460181 ], [ 15.820312, 2.460181 ], [ 15.820312, 3.162456 ], [ 15.468750, 3.162456 ], [ 15.468750, 3.337954 ], [ 15.117188, 3.337954 ], [ 15.117188, 3.688855 ], [ 14.941406, 3.688855 ], [ 14.941406, 4.214943 ], [ 14.765625, 4.214943 ], [ 14.765625, 4.390229 ], [ 14.589844, 4.390229 ], [ 14.589844, 4.565474 ], [ 14.414062, 4.565474 ], [ 14.414062, 6.315299 ], [ 14.765625, 6.315299 ], [ 14.765625, 6.664608 ], [ 14.941406, 6.664608 ], [ 14.941406, 7.188101 ], [ 15.117188, 7.188101 ], [ 15.117188, 7.536764 ], [ 15.996094, 7.536764 ], [ 15.996094, 7.710992 ], [ 16.171875, 7.710992 ], [ 16.171875, 7.885147 ], [ 16.347656, 7.885147 ], [ 16.347656, 7.710992 ], [ 16.523438, 7.710992 ], [ 16.523438, 7.536764 ], [ 17.050781, 7.536764 ], [ 17.050781, 7.710992 ], [ 17.402344, 7.710992 ], [ 17.402344, 7.885147 ], [ 17.753906, 7.885147 ], [ 17.753906, 8.059230 ], [ 18.105469, 8.059230 ], [ 18.105469, 8.233237 ], [ 18.281250, 8.233237 ], [ 18.281250, 8.407168 ], [ 18.457031, 8.407168 ], [ 18.457031, 8.581021 ], [ 18.808594, 8.581021 ], [ 18.808594, 9.102097 ], [ 20.214844, 9.102097 ], [ 20.214844, 9.275622 ], [ 20.566406, 9.275622 ], [ 20.566406, 9.449062 ], [ 20.917969, 9.449062 ], [ 20.917969, 9.622414 ], [ 21.093750, 9.622414 ], [ 21.093750, 9.968851 ], [ 21.269531, 9.968851 ], [ 21.269531, 10.141932 ], [ 21.445312, 10.141932 ], [ 21.445312, 10.487812 ], [ 21.621094, 10.487812 ], [ 21.621094, 10.660608 ], [ 21.796875, 10.660608 ], [ 21.796875, 10.833306 ], [ 22.148438, 10.833306 ], [ 22.148438, 11.005904 ], [ 22.675781, 11.005904 ], [ 22.675781, 11.178402 ], [ 22.851562, 11.178402 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.906250, 35.603719 ], [ 23.906250, 35.460670 ], [ 24.082031, 35.460670 ], [ 24.082031, 35.317366 ], [ 24.785156, 35.317366 ], [ 24.785156, 35.460670 ], [ 25.312500, 35.460670 ], [ 25.312500, 35.317366 ], [ 25.839844, 35.317366 ], [ 25.839844, 35.173808 ], [ 26.191406, 35.173808 ], [ 26.191406, 35.029996 ], [ 25.664062, 35.029996 ], [ 25.664062, 34.885931 ], [ 24.785156, 34.885931 ], [ 24.785156, 35.029996 ], [ 24.433594, 35.029996 ], [ 24.433594, 35.173808 ], [ 23.730469, 35.173808 ], [ 23.730469, 35.317366 ], [ 23.554688, 35.317366 ], [ 23.554688, 35.460670 ], [ 23.730469, 35.460670 ], [ 23.730469, 35.603719 ], [ 23.906250, 35.603719 ] ] ], [ [ [ 26.367188, 35.173808 ], [ 26.191406, 35.173808 ], [ 26.191406, 35.317366 ], [ 26.367188, 35.317366 ], [ 26.367188, 35.173808 ] ] ], [ [ [ 26.542969, 41.640078 ], [ 26.542969, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.847060 ], [ 25.136719, 40.847060 ], [ 25.136719, 40.979898 ], [ 24.785156, 40.979898 ], [ 24.785156, 40.847060 ], [ 24.082031, 40.847060 ], [ 24.082031, 40.713956 ], [ 23.730469, 40.713956 ], [ 23.730469, 40.580585 ], [ 23.906250, 40.580585 ], [ 23.906250, 40.446947 ], [ 24.082031, 40.446947 ], [ 24.082031, 40.313043 ], [ 24.257812, 40.313043 ], [ 24.257812, 40.178873 ], [ 24.433594, 40.178873 ], [ 24.433594, 40.044438 ], [ 24.082031, 40.044438 ], [ 24.082031, 39.909736 ], [ 23.203125, 39.909736 ], [ 23.203125, 40.178873 ], [ 23.027344, 40.178873 ], [ 23.027344, 40.313043 ], [ 22.675781, 40.313043 ], [ 22.675781, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.504041 ], [ 23.027344, 39.504041 ], [ 23.027344, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.232253 ], [ 23.378906, 39.232253 ], [ 23.378906, 39.095963 ], [ 23.203125, 39.095963 ], [ 23.203125, 38.959409 ], [ 23.027344, 38.959409 ], [ 23.027344, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.685510 ], [ 23.378906, 38.685510 ], [ 23.378906, 38.548165 ], [ 23.554688, 38.548165 ], [ 23.554688, 38.410558 ], [ 23.906250, 38.410558 ], [ 23.906250, 38.272689 ], [ 24.082031, 38.272689 ], [ 24.082031, 37.718590 ], [ 23.378906, 37.718590 ], [ 23.378906, 37.857507 ], [ 23.027344, 37.857507 ], [ 23.027344, 37.718590 ], [ 23.203125, 37.718590 ], [ 23.203125, 37.300275 ], [ 22.851562, 37.300275 ], [ 22.851562, 37.020098 ], [ 23.027344, 37.020098 ], [ 23.027344, 36.597889 ], [ 23.203125, 36.597889 ], [ 23.203125, 36.456636 ], [ 22.324219, 36.456636 ], [ 22.324219, 36.597889 ], [ 21.972656, 36.597889 ], [ 21.972656, 36.738884 ], [ 21.621094, 36.738884 ], [ 21.621094, 37.020098 ], [ 21.445312, 37.020098 ], [ 21.445312, 37.300275 ], [ 21.269531, 37.300275 ], [ 21.269531, 37.857507 ], [ 21.093750, 37.857507 ], [ 21.093750, 38.410558 ], [ 20.917969, 38.410558 ], [ 20.917969, 38.685510 ], [ 20.742188, 38.685510 ], [ 20.742188, 38.822591 ], [ 20.566406, 38.822591 ], [ 20.566406, 39.095963 ], [ 20.390625, 39.095963 ], [ 20.390625, 39.232253 ], [ 20.214844, 39.232253 ], [ 20.214844, 39.639538 ], [ 20.390625, 39.639538 ], [ 20.390625, 39.909736 ], [ 20.566406, 39.909736 ], [ 20.566406, 40.178873 ], [ 20.742188, 40.178873 ], [ 20.742188, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.972656, 40.979898 ], [ 21.972656, 41.112469 ], [ 22.675781, 41.112469 ], [ 22.675781, 41.244772 ], [ 23.027344, 41.244772 ], [ 23.027344, 41.376809 ], [ 24.082031, 41.376809 ], [ 24.082031, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.839844, 41.244772 ], [ 25.839844, 41.376809 ], [ 26.191406, 41.376809 ], [ 26.191406, 41.640078 ], [ 26.542969, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.906250, 35.603719 ], [ 23.906250, 35.460670 ], [ 25.664062, 35.460670 ], [ 25.664062, 35.317366 ], [ 26.191406, 35.317366 ], [ 26.191406, 35.173808 ], [ 26.015625, 35.173808 ], [ 26.015625, 35.029996 ], [ 24.609375, 35.029996 ], [ 24.609375, 35.173808 ], [ 23.906250, 35.173808 ], [ 23.906250, 35.317366 ], [ 23.378906, 35.317366 ], [ 23.378906, 35.460670 ], [ 23.554688, 35.460670 ], [ 23.554688, 35.603719 ], [ 23.906250, 35.603719 ] ] ], [ [ [ 23.203125, 37.857507 ], [ 23.203125, 37.579413 ], [ 23.378906, 37.579413 ], [ 23.378906, 37.439974 ], [ 22.675781, 37.439974 ], [ 22.675781, 37.160317 ], [ 22.851562, 37.160317 ], [ 22.851562, 36.597889 ], [ 23.027344, 36.597889 ], [ 23.027344, 36.456636 ], [ 22.148438, 36.456636 ], [ 22.148438, 36.597889 ], [ 21.796875, 36.597889 ], [ 21.796875, 36.738884 ], [ 21.621094, 36.738884 ], [ 21.621094, 37.020098 ], [ 21.445312, 37.020098 ], [ 21.445312, 37.439974 ], [ 21.269531, 37.439974 ], [ 21.269531, 37.996163 ], [ 21.093750, 37.996163 ], [ 21.093750, 38.410558 ], [ 20.917969, 38.410558 ], [ 20.917969, 38.548165 ], [ 20.742188, 38.548165 ], [ 20.742188, 38.685510 ], [ 20.566406, 38.685510 ], [ 20.566406, 38.959409 ], [ 20.390625, 38.959409 ], [ 20.390625, 39.232253 ], [ 20.214844, 39.232253 ], [ 20.214844, 39.504041 ], [ 20.039062, 39.504041 ], [ 20.039062, 39.639538 ], [ 20.214844, 39.639538 ], [ 20.214844, 39.909736 ], [ 20.390625, 39.909736 ], [ 20.390625, 40.044438 ], [ 20.566406, 40.044438 ], [ 20.566406, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.376809 ], [ 23.906250, 41.376809 ], [ 23.906250, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.640078 ], [ 24.433594, 41.640078 ], [ 24.433594, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.664062, 41.244772 ], [ 25.664062, 41.376809 ], [ 26.015625, 41.376809 ], [ 26.015625, 41.640078 ], [ 26.542969, 41.640078 ], [ 26.542969, 41.376809 ], [ 26.367188, 41.376809 ], [ 26.367188, 41.112469 ], [ 26.191406, 41.112469 ], [ 26.191406, 40.847060 ], [ 25.488281, 40.847060 ], [ 25.488281, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.847060 ], [ 23.906250, 40.847060 ], [ 23.906250, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.580585 ], [ 23.730469, 40.580585 ], [ 23.730469, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.313043 ], [ 24.082031, 40.313043 ], [ 24.082031, 40.044438 ], [ 23.027344, 40.044438 ], [ 23.027344, 40.313043 ], [ 22.851562, 40.313043 ], [ 22.851562, 40.446947 ], [ 22.500000, 40.446947 ], [ 22.500000, 40.178873 ], [ 22.675781, 40.178873 ], [ 22.675781, 39.909736 ], [ 22.851562, 39.909736 ], [ 22.851562, 39.639538 ], [ 23.027344, 39.639538 ], [ 23.027344, 39.368279 ], [ 23.203125, 39.368279 ], [ 23.203125, 39.095963 ], [ 22.851562, 39.095963 ], [ 22.851562, 38.959409 ], [ 23.027344, 38.959409 ], [ 23.027344, 38.822591 ], [ 23.203125, 38.822591 ], [ 23.203125, 38.548165 ], [ 23.378906, 38.548165 ], [ 23.378906, 38.410558 ], [ 23.730469, 38.410558 ], [ 23.730469, 38.272689 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.554688, 37.718590 ], [ 23.554688, 37.857507 ], [ 23.203125, 37.857507 ] ], [ [ 23.203125, 37.857507 ], [ 23.203125, 37.996163 ], [ 23.027344, 37.996163 ], [ 23.027344, 37.857507 ], [ 23.203125, 37.857507 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.925781, 35.317366 ], [ 33.925781, 35.029996 ], [ 33.398438, 35.029996 ], [ 33.398438, 35.173808 ], [ 33.222656, 35.173808 ], [ 33.222656, 35.029996 ], [ 32.695312, 35.029996 ], [ 32.695312, 35.173808 ], [ 32.871094, 35.173808 ], [ 32.871094, 35.317366 ], [ 33.925781, 35.317366 ] ] ], [ [ [ 34.277344, 35.460670 ], [ 34.277344, 35.317366 ], [ 34.101562, 35.317366 ], [ 34.101562, 35.460670 ], [ 34.277344, 35.460670 ] ] ], [ [ [ 34.628906, 35.460670 ], [ 34.453125, 35.460670 ], [ 34.453125, 35.603719 ], [ 34.628906, 35.603719 ], [ 34.628906, 35.460670 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.925781, 35.460670 ], [ 33.925781, 35.317366 ], [ 33.750000, 35.317366 ], [ 33.750000, 35.029996 ], [ 33.398438, 35.029996 ], [ 33.398438, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.695312, 35.317366 ], [ 32.871094, 35.317366 ], [ 32.871094, 35.460670 ], [ 33.925781, 35.460670 ] ] ], [ [ [ 34.277344, 35.603719 ], [ 34.277344, 35.460670 ], [ 33.925781, 35.460670 ], [ 33.925781, 35.603719 ], [ 34.277344, 35.603719 ] ] ], [ [ [ 34.453125, 35.603719 ], [ 34.277344, 35.603719 ], [ 34.277344, 35.746512 ], [ 34.453125, 35.746512 ], [ 34.453125, 35.603719 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.398438, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.925781, 35.029996 ], [ 33.925781, 34.885931 ], [ 33.574219, 34.885931 ], [ 33.574219, 34.741612 ], [ 33.222656, 34.741612 ], [ 33.222656, 34.597042 ], [ 32.695312, 34.597042 ], [ 32.695312, 34.741612 ], [ 32.519531, 34.741612 ], [ 32.519531, 34.885931 ], [ 32.343750, 34.885931 ], [ 32.343750, 35.173808 ], [ 32.695312, 35.173808 ], [ 32.695312, 35.029996 ], [ 33.222656, 35.029996 ], [ 33.222656, 35.173808 ], [ 33.398438, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, 35.173808 ], [ 33.925781, 34.885931 ], [ 33.574219, 34.885931 ], [ 33.574219, 34.741612 ], [ 33.222656, 34.741612 ], [ 33.222656, 34.597042 ], [ 32.519531, 34.597042 ], [ 32.519531, 34.741612 ], [ 32.343750, 34.741612 ], [ 32.343750, 34.885931 ], [ 32.167969, 34.885931 ], [ 32.167969, 35.173808 ], [ 33.398438, 35.173808 ], [ 33.398438, 35.029996 ], [ 33.750000, 35.029996 ], [ 33.750000, 35.173808 ], [ 33.925781, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.519531, 29.382175 ], [ 32.519531, 28.921631 ], [ 32.695312, 28.921631 ], [ 32.695312, 28.613459 ], [ 32.871094, 28.613459 ], [ 32.871094, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 27.994401 ], [ 33.222656, 27.994401 ], [ 33.222656, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.371767 ], [ 33.574219, 27.371767 ], [ 33.574219, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.588527 ], [ 33.925781, 26.588527 ], [ 33.925781, 26.273714 ], [ 34.101562, 26.273714 ], [ 34.101562, 25.958045 ], [ 34.277344, 25.958045 ], [ 34.277344, 25.641526 ], [ 34.453125, 25.641526 ], [ 34.453125, 25.482951 ], [ 34.628906, 25.482951 ], [ 34.628906, 25.165173 ], [ 34.804688, 25.165173 ], [ 34.804688, 24.846565 ], [ 34.980469, 24.846565 ], [ 34.980469, 24.527135 ], [ 35.156250, 24.527135 ], [ 35.156250, 24.367114 ], [ 35.332031, 24.367114 ], [ 35.332031, 24.206890 ], [ 35.507812, 24.206890 ], [ 35.507812, 23.885838 ], [ 35.683594, 23.885838 ], [ 35.683594, 23.725012 ], [ 35.507812, 23.725012 ], [ 35.507812, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.755921 ], [ 36.035156, 22.755921 ], [ 36.035156, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.431340 ], [ 36.562500, 22.431340 ], [ 36.562500, 22.268764 ], [ 36.738281, 22.268764 ], [ 36.738281, 22.105999 ], [ 36.914062, 22.105999 ], [ 36.914062, 21.943046 ], [ 24.960938, 21.943046 ], [ 24.960938, 29.535230 ], [ 24.785156, 29.535230 ], [ 24.785156, 30.297018 ], [ 24.960938, 30.297018 ], [ 24.960938, 30.751278 ], [ 24.785156, 30.751278 ], [ 24.785156, 31.052934 ], [ 24.960938, 31.052934 ], [ 24.960938, 31.353637 ], [ 25.136719, 31.353637 ], [ 25.136719, 31.503629 ], [ 26.015625, 31.503629 ], [ 26.015625, 31.653381 ], [ 26.718750, 31.653381 ], [ 26.718750, 31.503629 ], [ 27.070312, 31.503629 ], [ 27.070312, 31.353637 ], [ 27.597656, 31.353637 ], [ 27.597656, 31.203405 ], [ 28.125000, 31.203405 ], [ 28.125000, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.902225 ], [ 29.179688, 30.902225 ], [ 29.179688, 31.052934 ], [ 29.531250, 31.052934 ], [ 29.531250, 31.203405 ], [ 29.882812, 31.203405 ], [ 29.882812, 31.353637 ], [ 30.058594, 31.353637 ], [ 30.058594, 31.503629 ], [ 31.640625, 31.503629 ], [ 31.640625, 31.353637 ], [ 31.816406, 31.353637 ], [ 31.816406, 31.052934 ], [ 32.167969, 31.052934 ], [ 32.167969, 31.203405 ], [ 32.519531, 31.203405 ], [ 32.519531, 31.052934 ], [ 33.222656, 31.052934 ], [ 33.222656, 30.902225 ], [ 33.925781, 30.902225 ], [ 33.925781, 31.052934 ], [ 34.277344, 31.052934 ], [ 34.277344, 30.902225 ], [ 34.453125, 30.902225 ], [ 34.453125, 30.448674 ], [ 34.628906, 30.448674 ], [ 34.628906, 30.145127 ], [ 34.804688, 30.145127 ], [ 34.804688, 29.688053 ], [ 34.980469, 29.688053 ], [ 34.980469, 29.382175 ], [ 34.804688, 29.382175 ], [ 34.804688, 29.075375 ], [ 34.628906, 29.075375 ], [ 34.628906, 28.613459 ], [ 34.453125, 28.613459 ], [ 34.453125, 28.149503 ], [ 34.277344, 28.149503 ], [ 34.277344, 27.839076 ], [ 34.101562, 27.839076 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.839076 ], [ 33.574219, 27.839076 ], [ 33.574219, 27.994401 ], [ 33.398438, 27.994401 ], [ 33.398438, 28.304381 ], [ 33.222656, 28.304381 ], [ 33.222656, 28.459033 ], [ 33.046875, 28.459033 ], [ 33.046875, 28.767659 ], [ 32.871094, 28.767659 ], [ 32.871094, 29.075375 ], [ 32.695312, 29.075375 ], [ 32.695312, 29.382175 ], [ 32.519531, 29.382175 ] ], [ [ 32.519531, 29.382175 ], [ 32.519531, 29.688053 ], [ 32.343750, 29.688053 ], [ 32.343750, 29.382175 ], [ 32.519531, 29.382175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 28.304381 ], [ 33.046875, 27.994401 ], [ 33.222656, 27.994401 ], [ 33.222656, 27.683528 ], [ 33.398438, 27.683528 ], [ 33.398438, 27.371767 ], [ 33.574219, 27.371767 ], [ 33.574219, 27.059126 ], [ 33.750000, 27.059126 ], [ 33.750000, 26.745610 ], [ 33.925781, 26.745610 ], [ 33.925781, 26.431228 ], [ 34.101562, 26.431228 ], [ 34.101562, 26.115986 ], [ 34.277344, 26.115986 ], [ 34.277344, 25.799891 ], [ 34.453125, 25.799891 ], [ 34.453125, 25.324167 ], [ 34.628906, 25.324167 ], [ 34.628906, 25.005973 ], [ 34.804688, 25.005973 ], [ 34.804688, 24.846565 ], [ 34.980469, 24.846565 ], [ 34.980469, 24.686952 ], [ 35.156250, 24.686952 ], [ 35.156250, 24.367114 ], [ 35.332031, 24.367114 ], [ 35.332031, 24.206890 ], [ 35.507812, 24.206890 ], [ 35.507812, 24.046464 ], [ 35.683594, 24.046464 ], [ 35.683594, 23.885838 ], [ 35.332031, 23.885838 ], [ 35.332031, 23.563987 ], [ 35.507812, 23.563987 ], [ 35.507812, 23.079732 ], [ 35.683594, 23.079732 ], [ 35.683594, 22.917923 ], [ 35.859375, 22.917923 ], [ 35.859375, 22.755921 ], [ 36.035156, 22.755921 ], [ 36.035156, 22.593726 ], [ 36.210938, 22.593726 ], [ 36.210938, 22.431340 ], [ 36.386719, 22.431340 ], [ 36.386719, 22.268764 ], [ 36.562500, 22.268764 ], [ 36.562500, 22.105999 ], [ 24.960938, 22.105999 ], [ 24.960938, 29.535230 ], [ 24.785156, 29.535230 ], [ 24.785156, 29.840644 ], [ 24.609375, 29.840644 ], [ 24.609375, 30.448674 ], [ 24.785156, 30.448674 ], [ 24.785156, 31.203405 ], [ 24.960938, 31.203405 ], [ 24.960938, 31.503629 ], [ 25.136719, 31.503629 ], [ 25.136719, 31.653381 ], [ 26.542969, 31.653381 ], [ 26.542969, 31.503629 ], [ 27.070312, 31.503629 ], [ 27.070312, 31.353637 ], [ 27.597656, 31.353637 ], [ 27.597656, 31.203405 ], [ 27.949219, 31.203405 ], [ 27.949219, 31.052934 ], [ 28.476562, 31.052934 ], [ 28.476562, 30.902225 ], [ 29.179688, 30.902225 ], [ 29.179688, 31.052934 ], [ 29.531250, 31.052934 ], [ 29.531250, 31.203405 ], [ 29.707031, 31.203405 ], [ 29.707031, 31.353637 ], [ 30.058594, 31.353637 ], [ 30.058594, 31.503629 ], [ 30.585938, 31.503629 ], [ 30.585938, 31.653381 ], [ 31.113281, 31.653381 ], [ 31.113281, 31.503629 ], [ 31.640625, 31.503629 ], [ 31.640625, 31.203405 ], [ 31.816406, 31.203405 ], [ 31.816406, 31.052934 ], [ 31.992188, 31.052934 ], [ 31.992188, 31.203405 ], [ 32.519531, 31.203405 ], [ 32.519531, 31.052934 ], [ 33.925781, 31.052934 ], [ 33.925781, 31.203405 ], [ 34.101562, 31.203405 ], [ 34.101562, 31.052934 ], [ 34.277344, 31.052934 ], [ 34.277344, 30.600094 ], [ 34.453125, 30.600094 ], [ 34.453125, 30.145127 ], [ 34.628906, 30.145127 ], [ 34.628906, 29.688053 ], [ 34.804688, 29.688053 ], [ 34.804688, 29.382175 ], [ 34.628906, 29.382175 ], [ 34.628906, 28.921631 ], [ 34.453125, 28.921631 ], [ 34.453125, 28.613459 ], [ 34.277344, 28.613459 ], [ 34.277344, 28.149503 ], [ 34.101562, 28.149503 ], [ 34.101562, 27.683528 ], [ 33.750000, 27.683528 ], [ 33.750000, 27.839076 ], [ 33.574219, 27.839076 ], [ 33.574219, 27.994401 ], [ 33.398438, 27.994401 ], [ 33.398438, 28.149503 ], [ 33.222656, 28.149503 ], [ 33.222656, 28.304381 ], [ 33.046875, 28.304381 ] ], [ [ 32.695312, 28.921631 ], [ 32.695312, 29.382175 ], [ 32.519531, 29.382175 ], [ 32.519531, 29.688053 ], [ 32.343750, 29.688053 ], [ 32.343750, 29.840644 ], [ 32.167969, 29.840644 ], [ 32.167969, 29.535230 ], [ 32.343750, 29.535230 ], [ 32.343750, 29.228890 ], [ 32.519531, 29.228890 ], [ 32.519531, 28.921631 ], [ 32.695312, 28.921631 ] ], [ [ 32.871094, 28.613459 ], [ 32.871094, 28.304381 ], [ 33.046875, 28.304381 ], [ 33.046875, 28.613459 ], [ 32.871094, 28.613459 ] ], [ [ 32.695312, 28.921631 ], [ 32.695312, 28.613459 ], [ 32.871094, 28.613459 ], [ 32.871094, 28.921631 ], [ 32.695312, 28.921631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.417969, 41.244772 ], [ 43.417969, 41.112469 ], [ 43.593750, 41.112469 ], [ 43.593750, 40.847060 ], [ 43.769531, 40.847060 ], [ 43.769531, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.313043 ], [ 43.769531, 40.313043 ], [ 43.769531, 40.178873 ], [ 44.121094, 40.178873 ], [ 44.121094, 40.044438 ], [ 44.472656, 40.044438 ], [ 44.472656, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.774769 ], [ 44.824219, 39.774769 ], [ 44.824219, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.504041 ], [ 44.296875, 39.504041 ], [ 44.296875, 39.368279 ], [ 44.121094, 39.368279 ], [ 44.121094, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.548165 ], [ 44.472656, 38.548165 ], [ 44.472656, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 37.857507 ], [ 44.472656, 37.857507 ], [ 44.472656, 37.579413 ], [ 44.648438, 37.579413 ], [ 44.648438, 37.300275 ], [ 44.824219, 37.300275 ], [ 44.824219, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 37.300275 ], [ 43.242188, 37.300275 ], [ 43.242188, 37.439974 ], [ 42.714844, 37.439974 ], [ 42.714844, 37.300275 ], [ 42.539062, 37.300275 ], [ 42.539062, 37.160317 ], [ 41.835938, 37.160317 ], [ 41.835938, 37.020098 ], [ 40.781250, 37.020098 ], [ 40.781250, 37.160317 ], [ 40.605469, 37.160317 ], [ 40.605469, 37.020098 ], [ 40.253906, 37.020098 ], [ 40.253906, 36.879621 ], [ 39.902344, 36.879621 ], [ 39.902344, 36.738884 ], [ 38.320312, 36.738884 ], [ 38.320312, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 36.738884 ], [ 37.441406, 36.738884 ], [ 37.441406, 36.597889 ], [ 36.914062, 36.597889 ], [ 36.914062, 36.738884 ], [ 36.738281, 36.738884 ], [ 36.738281, 36.173357 ], [ 36.562500, 36.173357 ], [ 36.562500, 36.031332 ], [ 36.386719, 36.031332 ], [ 36.386719, 35.889050 ], [ 36.035156, 35.889050 ], [ 36.035156, 36.173357 ], [ 35.859375, 36.173357 ], [ 35.859375, 36.315125 ], [ 36.035156, 36.315125 ], [ 36.035156, 36.456636 ], [ 36.210938, 36.456636 ], [ 36.210938, 36.597889 ], [ 34.980469, 36.597889 ], [ 34.980469, 36.738884 ], [ 34.628906, 36.738884 ], [ 34.628906, 36.597889 ], [ 34.453125, 36.597889 ], [ 34.453125, 36.456636 ], [ 34.277344, 36.456636 ], [ 34.277344, 36.173357 ], [ 32.343750, 36.173357 ], [ 32.343750, 36.315125 ], [ 31.992188, 36.315125 ], [ 31.992188, 36.456636 ], [ 31.640625, 36.456636 ], [ 31.640625, 36.597889 ], [ 30.937500, 36.597889 ], [ 30.937500, 36.738884 ], [ 30.585938, 36.738884 ], [ 30.585938, 36.456636 ], [ 30.410156, 36.456636 ], [ 30.410156, 36.315125 ], [ 30.234375, 36.315125 ], [ 30.234375, 36.173357 ], [ 29.531250, 36.173357 ], [ 29.531250, 36.315125 ], [ 29.179688, 36.315125 ], [ 29.179688, 36.456636 ], [ 29.003906, 36.456636 ], [ 29.003906, 36.597889 ], [ 28.652344, 36.597889 ], [ 28.652344, 36.738884 ], [ 28.300781, 36.738884 ], [ 28.300781, 36.597889 ], [ 27.597656, 36.597889 ], [ 27.597656, 36.738884 ], [ 27.421875, 36.738884 ], [ 27.421875, 37.160317 ], [ 27.246094, 37.160317 ], [ 27.246094, 37.439974 ], [ 27.070312, 37.439974 ], [ 27.070312, 37.718590 ], [ 26.894531, 37.718590 ], [ 26.894531, 37.857507 ], [ 26.718750, 37.857507 ], [ 26.718750, 37.996163 ], [ 26.542969, 37.996163 ], [ 26.542969, 38.134557 ], [ 26.367188, 38.134557 ], [ 26.367188, 38.410558 ], [ 26.542969, 38.410558 ], [ 26.542969, 38.685510 ], [ 26.718750, 38.685510 ], [ 26.718750, 38.959409 ], [ 26.542969, 38.959409 ], [ 26.542969, 39.232253 ], [ 26.367188, 39.232253 ], [ 26.367188, 39.368279 ], [ 26.191406, 39.368279 ], [ 26.191406, 39.504041 ], [ 26.367188, 39.504041 ], [ 26.367188, 39.639538 ], [ 26.542969, 39.639538 ], [ 26.542969, 39.774769 ], [ 26.718750, 39.774769 ], [ 26.718750, 40.044438 ], [ 26.894531, 40.044438 ], [ 26.894531, 40.178873 ], [ 27.070312, 40.178873 ], [ 27.070312, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.580585 ], [ 29.003906, 40.580585 ], [ 29.003906, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 32.167969, 41.508577 ], [ 32.167969, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 39.902344, 41.112469 ], [ 39.902344, 40.979898 ], [ 40.605469, 40.979898 ], [ 40.605469, 41.112469 ], [ 40.957031, 41.112469 ], [ 40.957031, 41.244772 ], [ 41.132812, 41.244772 ], [ 41.132812, 41.376809 ], [ 41.484375, 41.376809 ], [ 41.484375, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 41.640078 ], [ 42.539062, 41.640078 ] ] ], [ [ [ 28.125000, 41.640078 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 29.003906, 41.244772 ], [ 29.003906, 41.112469 ], [ 28.300781, 41.112469 ], [ 28.300781, 40.979898 ], [ 27.597656, 40.979898 ], [ 27.597656, 40.847060 ], [ 27.421875, 40.847060 ], [ 27.421875, 40.713956 ], [ 27.246094, 40.713956 ], [ 27.246094, 40.580585 ], [ 27.070312, 40.580585 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.542969, 40.313043 ], [ 26.542969, 40.178873 ], [ 26.191406, 40.178873 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.367188, 40.847060 ], [ 26.367188, 41.244772 ], [ 26.542969, 41.244772 ], [ 26.542969, 41.640078 ], [ 28.125000, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.714844, 41.508577 ], [ 42.714844, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 40.178873 ], [ 43.945312, 40.178873 ], [ 43.945312, 40.044438 ], [ 44.296875, 40.044438 ], [ 44.296875, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.639538 ], [ 44.296875, 39.639538 ], [ 44.296875, 39.504041 ], [ 43.945312, 39.504041 ], [ 43.945312, 39.232253 ], [ 44.121094, 39.232253 ], [ 44.121094, 38.685510 ], [ 44.296875, 38.685510 ], [ 44.296875, 38.134557 ], [ 44.121094, 38.134557 ], [ 44.121094, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 37.020098 ], [ 43.945312, 37.020098 ], [ 43.945312, 37.160317 ], [ 43.769531, 37.160317 ], [ 43.769531, 37.300275 ], [ 43.066406, 37.300275 ], [ 43.066406, 37.439974 ], [ 42.539062, 37.439974 ], [ 42.539062, 37.300275 ], [ 41.835938, 37.300275 ], [ 41.835938, 37.160317 ], [ 40.429688, 37.160317 ], [ 40.429688, 37.020098 ], [ 40.078125, 37.020098 ], [ 40.078125, 36.879621 ], [ 39.726562, 36.879621 ], [ 39.726562, 36.738884 ], [ 38.496094, 36.738884 ], [ 38.496094, 36.879621 ], [ 38.144531, 36.879621 ], [ 38.144531, 37.020098 ], [ 37.968750, 37.020098 ], [ 37.968750, 36.879621 ], [ 37.265625, 36.879621 ], [ 37.265625, 36.738884 ], [ 36.738281, 36.738884 ], [ 36.738281, 36.597889 ], [ 36.562500, 36.597889 ], [ 36.562500, 36.173357 ], [ 36.386719, 36.173357 ], [ 36.386719, 36.031332 ], [ 36.210938, 36.031332 ], [ 36.210938, 35.889050 ], [ 35.859375, 35.889050 ], [ 35.859375, 36.173357 ], [ 35.683594, 36.173357 ], [ 35.683594, 36.315125 ], [ 35.859375, 36.315125 ], [ 35.859375, 36.597889 ], [ 35.156250, 36.597889 ], [ 35.156250, 36.738884 ], [ 34.804688, 36.738884 ], [ 34.804688, 36.879621 ], [ 34.628906, 36.879621 ], [ 34.628906, 36.738884 ], [ 34.453125, 36.738884 ], [ 34.453125, 36.597889 ], [ 34.277344, 36.597889 ], [ 34.277344, 36.456636 ], [ 34.101562, 36.456636 ], [ 34.101562, 36.315125 ], [ 33.222656, 36.315125 ], [ 33.222656, 36.173357 ], [ 32.167969, 36.173357 ], [ 32.167969, 36.315125 ], [ 31.992188, 36.315125 ], [ 31.992188, 36.456636 ], [ 31.816406, 36.456636 ], [ 31.816406, 36.597889 ], [ 31.640625, 36.597889 ], [ 31.640625, 36.738884 ], [ 30.585938, 36.738884 ], [ 30.585938, 36.597889 ], [ 30.410156, 36.597889 ], [ 30.410156, 36.315125 ], [ 30.058594, 36.315125 ], [ 30.058594, 36.173357 ], [ 29.355469, 36.173357 ], [ 29.355469, 36.315125 ], [ 29.179688, 36.315125 ], [ 29.179688, 36.456636 ], [ 28.828125, 36.456636 ], [ 28.828125, 36.597889 ], [ 28.652344, 36.597889 ], [ 28.652344, 36.738884 ], [ 27.421875, 36.738884 ], [ 27.421875, 37.020098 ], [ 27.246094, 37.020098 ], [ 27.246094, 37.300275 ], [ 27.070312, 37.300275 ], [ 27.070312, 37.579413 ], [ 26.894531, 37.579413 ], [ 26.894531, 37.718590 ], [ 26.718750, 37.718590 ], [ 26.718750, 37.857507 ], [ 26.542969, 37.857507 ], [ 26.542969, 37.996163 ], [ 26.367188, 37.996163 ], [ 26.367188, 38.134557 ], [ 26.191406, 38.134557 ], [ 26.191406, 38.410558 ], [ 26.367188, 38.410558 ], [ 26.367188, 38.685510 ], [ 26.542969, 38.685510 ], [ 26.542969, 38.959409 ], [ 26.718750, 38.959409 ], [ 26.718750, 39.095963 ], [ 26.542969, 39.095963 ], [ 26.542969, 39.232253 ], [ 26.191406, 39.232253 ], [ 26.191406, 39.368279 ], [ 26.015625, 39.368279 ], [ 26.015625, 39.504041 ], [ 26.191406, 39.504041 ], [ 26.191406, 39.639538 ], [ 26.367188, 39.639538 ], [ 26.367188, 39.774769 ], [ 26.542969, 39.774769 ], [ 26.542969, 39.909736 ], [ 26.718750, 39.909736 ], [ 26.718750, 40.044438 ], [ 26.894531, 40.044438 ], [ 26.894531, 40.178873 ], [ 27.070312, 40.178873 ], [ 27.070312, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.125000, 40.446947 ], [ 28.125000, 40.580585 ], [ 28.828125, 40.580585 ], [ 28.828125, 40.847060 ], [ 29.003906, 40.847060 ], [ 29.003906, 41.112469 ], [ 29.179688, 41.112469 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 32.167969, 41.508577 ], [ 32.167969, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 40.429688, 41.112469 ], [ 40.429688, 41.244772 ], [ 40.781250, 41.244772 ], [ 40.781250, 41.376809 ], [ 41.132812, 41.376809 ], [ 41.132812, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.640078 ], [ 42.539062, 41.640078 ] ], [ [ 35.859375, 36.738884 ], [ 35.859375, 36.597889 ], [ 36.035156, 36.597889 ], [ 36.035156, 36.738884 ], [ 35.859375, 36.738884 ] ] ], [ [ [ 28.125000, 41.640078 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 28.652344, 41.244772 ], [ 28.652344, 41.112469 ], [ 27.597656, 41.112469 ], [ 27.597656, 40.979898 ], [ 27.421875, 40.979898 ], [ 27.421875, 40.847060 ], [ 27.246094, 40.847060 ], [ 27.246094, 40.713956 ], [ 27.070312, 40.713956 ], [ 27.070312, 40.580585 ], [ 26.894531, 40.580585 ], [ 26.894531, 40.446947 ], [ 26.542969, 40.446947 ], [ 26.542969, 40.313043 ], [ 26.367188, 40.313043 ], [ 26.367188, 40.178873 ], [ 26.191406, 40.178873 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.191406, 40.847060 ], [ 26.191406, 41.112469 ], [ 26.367188, 41.112469 ], [ 26.367188, 41.376809 ], [ 26.542969, 41.376809 ], [ 26.542969, 41.640078 ], [ 28.125000, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.386719, 34.597042 ], [ 36.386719, 34.307144 ], [ 36.562500, 34.307144 ], [ 36.562500, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.870416 ], [ 36.035156, 33.870416 ], [ 36.035156, 33.578015 ], [ 35.859375, 33.578015 ], [ 35.859375, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.507812, 33.137551 ], [ 35.156250, 33.137551 ], [ 35.156250, 33.284620 ], [ 35.332031, 33.284620 ], [ 35.332031, 33.578015 ], [ 35.507812, 33.578015 ], [ 35.507812, 33.870416 ], [ 35.683594, 33.870416 ], [ 35.683594, 34.161818 ], [ 35.859375, 34.161818 ], [ 35.859375, 34.452218 ], [ 36.035156, 34.452218 ], [ 36.035156, 34.597042 ], [ 36.386719, 34.597042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.035156, 34.741612 ], [ 36.035156, 34.597042 ], [ 36.386719, 34.597042 ], [ 36.386719, 34.452218 ], [ 36.562500, 34.452218 ], [ 36.562500, 34.161818 ], [ 36.386719, 34.161818 ], [ 36.386719, 34.016242 ], [ 36.210938, 34.016242 ], [ 36.210938, 33.870416 ], [ 36.035156, 33.870416 ], [ 36.035156, 33.724340 ], [ 35.859375, 33.724340 ], [ 35.859375, 33.431441 ], [ 35.683594, 33.431441 ], [ 35.683594, 33.284620 ], [ 35.507812, 33.284620 ], [ 35.507812, 33.137551 ], [ 34.980469, 33.137551 ], [ 34.980469, 33.284620 ], [ 35.156250, 33.284620 ], [ 35.156250, 33.724340 ], [ 35.332031, 33.724340 ], [ 35.332031, 34.016242 ], [ 35.507812, 34.016242 ], [ 35.507812, 34.307144 ], [ 35.683594, 34.307144 ], [ 35.683594, 34.597042 ], [ 35.859375, 34.597042 ], [ 35.859375, 34.741612 ], [ 36.035156, 34.741612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 37.160317 ], [ 42.363281, 37.020098 ], [ 42.187500, 37.020098 ], [ 42.187500, 36.879621 ], [ 42.011719, 36.879621 ], [ 42.011719, 36.597889 ], [ 41.835938, 36.597889 ], [ 41.835938, 36.456636 ], [ 41.484375, 36.456636 ], [ 41.484375, 36.315125 ], [ 41.308594, 36.315125 ], [ 41.308594, 35.317366 ], [ 41.132812, 35.317366 ], [ 41.132812, 34.741612 ], [ 40.957031, 34.741612 ], [ 40.957031, 34.307144 ], [ 40.605469, 34.307144 ], [ 40.605469, 34.161818 ], [ 40.253906, 34.161818 ], [ 40.253906, 34.016242 ], [ 40.078125, 34.016242 ], [ 40.078125, 33.870416 ], [ 39.726562, 33.870416 ], [ 39.726562, 33.724340 ], [ 39.375000, 33.724340 ], [ 39.375000, 33.578015 ], [ 39.023438, 33.578015 ], [ 39.023438, 33.431441 ], [ 38.847656, 33.431441 ], [ 38.847656, 33.284620 ], [ 38.496094, 33.284620 ], [ 38.496094, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 32.990236 ], [ 38.144531, 32.990236 ], [ 38.144531, 32.842674 ], [ 37.792969, 32.842674 ], [ 37.792969, 32.694866 ], [ 37.617188, 32.694866 ], [ 37.617188, 32.546813 ], [ 37.441406, 32.546813 ], [ 37.441406, 32.398516 ], [ 37.089844, 32.398516 ], [ 37.089844, 32.249974 ], [ 36.562500, 32.249974 ], [ 36.562500, 32.398516 ], [ 36.210938, 32.398516 ], [ 36.210938, 32.546813 ], [ 35.859375, 32.546813 ], [ 35.859375, 33.578015 ], [ 36.035156, 33.578015 ], [ 36.035156, 33.870416 ], [ 36.210938, 33.870416 ], [ 36.210938, 34.016242 ], [ 36.562500, 34.016242 ], [ 36.562500, 34.307144 ], [ 36.386719, 34.307144 ], [ 36.386719, 34.597042 ], [ 36.035156, 34.597042 ], [ 36.035156, 35.029996 ], [ 35.859375, 35.029996 ], [ 35.859375, 35.460670 ], [ 36.035156, 35.460670 ], [ 36.035156, 35.746512 ], [ 36.210938, 35.746512 ], [ 36.210938, 35.889050 ], [ 36.386719, 35.889050 ], [ 36.386719, 36.031332 ], [ 36.562500, 36.031332 ], [ 36.562500, 36.173357 ], [ 36.738281, 36.173357 ], [ 36.738281, 36.738884 ], [ 36.914062, 36.738884 ], [ 36.914062, 36.597889 ], [ 37.441406, 36.597889 ], [ 37.441406, 36.738884 ], [ 37.968750, 36.738884 ], [ 37.968750, 36.879621 ], [ 38.320312, 36.879621 ], [ 38.320312, 36.738884 ], [ 39.902344, 36.738884 ], [ 39.902344, 36.879621 ], [ 40.253906, 36.879621 ], [ 40.253906, 37.020098 ], [ 40.605469, 37.020098 ], [ 40.605469, 37.160317 ], [ 40.781250, 37.160317 ], [ 40.781250, 37.020098 ], [ 41.835938, 37.020098 ], [ 41.835938, 37.160317 ], [ 42.363281, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.187500, 37.300275 ], [ 42.187500, 37.160317 ], [ 42.011719, 37.160317 ], [ 42.011719, 36.879621 ], [ 41.835938, 36.879621 ], [ 41.835938, 36.597889 ], [ 41.484375, 36.597889 ], [ 41.484375, 36.456636 ], [ 41.132812, 36.456636 ], [ 41.132812, 36.031332 ], [ 41.308594, 36.031332 ], [ 41.308594, 35.317366 ], [ 41.132812, 35.317366 ], [ 41.132812, 34.741612 ], [ 40.957031, 34.741612 ], [ 40.957031, 34.307144 ], [ 40.605469, 34.307144 ], [ 40.605469, 34.161818 ], [ 40.253906, 34.161818 ], [ 40.253906, 34.016242 ], [ 39.902344, 34.016242 ], [ 39.902344, 33.870416 ], [ 39.550781, 33.870416 ], [ 39.550781, 33.724340 ], [ 39.199219, 33.724340 ], [ 39.199219, 33.578015 ], [ 38.847656, 33.578015 ], [ 38.847656, 33.431441 ], [ 38.671875, 33.431441 ], [ 38.671875, 33.284620 ], [ 38.320312, 33.284620 ], [ 38.320312, 33.137551 ], [ 38.144531, 33.137551 ], [ 38.144531, 32.990236 ], [ 37.792969, 32.990236 ], [ 37.792969, 32.842674 ], [ 37.441406, 32.842674 ], [ 37.441406, 32.694866 ], [ 37.265625, 32.694866 ], [ 37.265625, 32.546813 ], [ 36.914062, 32.546813 ], [ 36.914062, 32.398516 ], [ 36.386719, 32.398516 ], [ 36.386719, 32.546813 ], [ 36.035156, 32.546813 ], [ 36.035156, 32.694866 ], [ 35.683594, 32.694866 ], [ 35.683594, 33.431441 ], [ 35.859375, 33.431441 ], [ 35.859375, 33.724340 ], [ 36.035156, 33.724340 ], [ 36.035156, 33.870416 ], [ 36.210938, 33.870416 ], [ 36.210938, 34.016242 ], [ 36.386719, 34.016242 ], [ 36.386719, 34.161818 ], [ 36.562500, 34.161818 ], [ 36.562500, 34.452218 ], [ 36.386719, 34.452218 ], [ 36.386719, 34.597042 ], [ 36.035156, 34.597042 ], [ 36.035156, 34.741612 ], [ 35.859375, 34.741612 ], [ 35.859375, 35.603719 ], [ 36.035156, 35.603719 ], [ 36.035156, 35.889050 ], [ 36.210938, 35.889050 ], [ 36.210938, 36.031332 ], [ 36.386719, 36.031332 ], [ 36.386719, 36.173357 ], [ 36.562500, 36.173357 ], [ 36.562500, 36.597889 ], [ 36.738281, 36.597889 ], [ 36.738281, 36.738884 ], [ 37.265625, 36.738884 ], [ 37.265625, 36.879621 ], [ 37.968750, 36.879621 ], [ 37.968750, 37.020098 ], [ 38.144531, 37.020098 ], [ 38.144531, 36.879621 ], [ 38.496094, 36.879621 ], [ 38.496094, 36.738884 ], [ 39.726562, 36.738884 ], [ 39.726562, 36.879621 ], [ 40.078125, 36.879621 ], [ 40.078125, 37.020098 ], [ 40.429688, 37.020098 ], [ 40.429688, 37.160317 ], [ 41.835938, 37.160317 ], [ 41.835938, 37.300275 ], [ 42.187500, 37.300275 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 37.439974 ], [ 43.242188, 37.300275 ], [ 43.945312, 37.300275 ], [ 43.945312, 37.160317 ], [ 44.121094, 37.160317 ], [ 44.121094, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.160317 ], [ 44.824219, 37.160317 ], [ 44.824219, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.597889 ], [ 45.175781, 36.597889 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 45.878906, 35.746512 ], [ 45.878906, 34.741612 ], [ 45.703125, 34.741612 ], [ 45.703125, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.161818 ], [ 45.351562, 34.161818 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.284620 ], [ 45.878906, 33.284620 ], [ 45.878906, 29.075375 ], [ 45.175781, 29.075375 ], [ 45.175781, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.296875, 29.382175 ], [ 44.296875, 29.535230 ], [ 43.945312, 29.535230 ], [ 43.945312, 29.688053 ], [ 43.769531, 29.688053 ], [ 43.769531, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.993002 ], [ 43.417969, 29.993002 ], [ 43.417969, 30.145127 ], [ 43.066406, 30.145127 ], [ 43.066406, 30.297018 ], [ 42.890625, 30.297018 ], [ 42.890625, 30.448674 ], [ 42.714844, 30.448674 ], [ 42.714844, 30.600094 ], [ 42.539062, 30.600094 ], [ 42.539062, 30.751278 ], [ 42.363281, 30.751278 ], [ 42.363281, 30.902225 ], [ 42.011719, 30.902225 ], [ 42.011719, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 31.203405 ], [ 41.660156, 31.203405 ], [ 41.660156, 31.353637 ], [ 41.308594, 31.353637 ], [ 41.308594, 31.503629 ], [ 40.957031, 31.503629 ], [ 40.957031, 31.653381 ], [ 40.781250, 31.653381 ], [ 40.781250, 31.802893 ], [ 40.429688, 31.802893 ], [ 40.429688, 31.952162 ], [ 39.726562, 31.952162 ], [ 39.726562, 32.101190 ], [ 39.199219, 32.101190 ], [ 39.199219, 32.398516 ], [ 39.023438, 32.398516 ], [ 39.023438, 32.990236 ], [ 38.847656, 32.990236 ], [ 38.847656, 33.431441 ], [ 39.023438, 33.431441 ], [ 39.023438, 33.578015 ], [ 39.375000, 33.578015 ], [ 39.375000, 33.724340 ], [ 39.726562, 33.724340 ], [ 39.726562, 33.870416 ], [ 40.078125, 33.870416 ], [ 40.078125, 34.016242 ], [ 40.253906, 34.016242 ], [ 40.253906, 34.161818 ], [ 40.605469, 34.161818 ], [ 40.605469, 34.307144 ], [ 40.957031, 34.307144 ], [ 40.957031, 34.741612 ], [ 41.132812, 34.741612 ], [ 41.132812, 35.317366 ], [ 41.308594, 35.317366 ], [ 41.308594, 36.315125 ], [ 41.484375, 36.315125 ], [ 41.484375, 36.456636 ], [ 41.835938, 36.456636 ], [ 41.835938, 36.597889 ], [ 42.011719, 36.597889 ], [ 42.011719, 36.879621 ], [ 42.187500, 36.879621 ], [ 42.187500, 37.020098 ], [ 42.363281, 37.020098 ], [ 42.363281, 37.160317 ], [ 42.539062, 37.160317 ], [ 42.539062, 37.300275 ], [ 42.714844, 37.300275 ], [ 42.714844, 37.439974 ], [ 43.242188, 37.439974 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.066406, 37.439974 ], [ 43.066406, 37.300275 ], [ 43.769531, 37.300275 ], [ 43.769531, 37.160317 ], [ 43.945312, 37.160317 ], [ 43.945312, 37.020098 ], [ 44.296875, 37.020098 ], [ 44.296875, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.824219, 37.020098 ], [ 44.824219, 36.738884 ], [ 45.000000, 36.738884 ], [ 45.000000, 36.456636 ], [ 45.175781, 36.456636 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 36.031332 ], [ 45.527344, 36.031332 ], [ 45.527344, 35.889050 ], [ 45.878906, 35.889050 ], [ 45.878906, 34.885931 ], [ 45.527344, 34.885931 ], [ 45.527344, 34.452218 ], [ 45.351562, 34.452218 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.724340 ], [ 45.703125, 33.724340 ], [ 45.703125, 33.431441 ], [ 45.878906, 33.431441 ], [ 45.878906, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.296875, 29.382175 ], [ 44.296875, 29.535230 ], [ 43.945312, 29.535230 ], [ 43.945312, 29.688053 ], [ 43.769531, 29.688053 ], [ 43.769531, 29.840644 ], [ 43.593750, 29.840644 ], [ 43.593750, 29.993002 ], [ 43.417969, 29.993002 ], [ 43.417969, 30.145127 ], [ 43.066406, 30.145127 ], [ 43.066406, 30.297018 ], [ 42.890625, 30.297018 ], [ 42.890625, 30.448674 ], [ 42.714844, 30.448674 ], [ 42.714844, 30.600094 ], [ 42.539062, 30.600094 ], [ 42.539062, 30.751278 ], [ 42.363281, 30.751278 ], [ 42.363281, 30.902225 ], [ 42.011719, 30.902225 ], [ 42.011719, 31.052934 ], [ 41.835938, 31.052934 ], [ 41.835938, 31.203405 ], [ 41.660156, 31.203405 ], [ 41.660156, 31.353637 ], [ 41.308594, 31.353637 ], [ 41.308594, 31.503629 ], [ 40.957031, 31.503629 ], [ 40.957031, 31.653381 ], [ 40.605469, 31.653381 ], [ 40.605469, 31.802893 ], [ 40.253906, 31.802893 ], [ 40.253906, 31.952162 ], [ 39.902344, 31.952162 ], [ 39.902344, 32.101190 ], [ 39.199219, 32.101190 ], [ 39.199219, 32.249974 ], [ 39.023438, 32.249974 ], [ 39.023438, 32.546813 ], [ 38.847656, 32.546813 ], [ 38.847656, 33.137551 ], [ 38.671875, 33.137551 ], [ 38.671875, 33.431441 ], [ 38.847656, 33.431441 ], [ 38.847656, 33.578015 ], [ 39.199219, 33.578015 ], [ 39.199219, 33.724340 ], [ 39.550781, 33.724340 ], [ 39.550781, 33.870416 ], [ 39.902344, 33.870416 ], [ 39.902344, 34.016242 ], [ 40.253906, 34.016242 ], [ 40.253906, 34.161818 ], [ 40.605469, 34.161818 ], [ 40.605469, 34.307144 ], [ 40.957031, 34.307144 ], [ 40.957031, 34.741612 ], [ 41.132812, 34.741612 ], [ 41.132812, 35.317366 ], [ 41.308594, 35.317366 ], [ 41.308594, 36.031332 ], [ 41.132812, 36.031332 ], [ 41.132812, 36.456636 ], [ 41.484375, 36.456636 ], [ 41.484375, 36.597889 ], [ 41.835938, 36.597889 ], [ 41.835938, 36.879621 ], [ 42.011719, 36.879621 ], [ 42.011719, 37.160317 ], [ 42.187500, 37.160317 ], [ 42.187500, 37.300275 ], [ 42.539062, 37.300275 ], [ 42.539062, 37.439974 ], [ 43.066406, 37.439974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.859375, 33.284620 ], [ 35.859375, 32.694866 ], [ 35.683594, 32.694866 ], [ 35.683594, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.398516 ], [ 35.156250, 32.398516 ], [ 35.156250, 32.101190 ], [ 34.980469, 32.101190 ], [ 34.980469, 31.802893 ], [ 35.156250, 31.802893 ], [ 35.156250, 31.653381 ], [ 34.980469, 31.653381 ], [ 34.980469, 31.353637 ], [ 35.332031, 31.353637 ], [ 35.332031, 31.203405 ], [ 35.507812, 31.203405 ], [ 35.507812, 30.751278 ], [ 35.332031, 30.751278 ], [ 35.332031, 30.297018 ], [ 35.156250, 30.297018 ], [ 35.156250, 29.688053 ], [ 34.804688, 29.688053 ], [ 34.804688, 30.145127 ], [ 34.628906, 30.145127 ], [ 34.628906, 30.448674 ], [ 34.453125, 30.448674 ], [ 34.453125, 30.902225 ], [ 34.277344, 30.902225 ], [ 34.277344, 31.203405 ], [ 34.453125, 31.203405 ], [ 34.453125, 31.353637 ], [ 34.628906, 31.353637 ], [ 34.628906, 31.503629 ], [ 34.453125, 31.503629 ], [ 34.453125, 31.653381 ], [ 34.628906, 31.653381 ], [ 34.628906, 31.952162 ], [ 34.804688, 31.952162 ], [ 34.804688, 32.398516 ], [ 34.980469, 32.398516 ], [ 34.980469, 32.990236 ], [ 35.156250, 32.990236 ], [ 35.156250, 33.137551 ], [ 35.507812, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.859375, 33.284620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.683594, 33.284620 ], [ 35.683594, 32.546813 ], [ 35.507812, 32.546813 ], [ 35.507812, 32.398516 ], [ 34.980469, 32.398516 ], [ 34.980469, 32.101190 ], [ 34.804688, 32.101190 ], [ 34.804688, 31.802893 ], [ 35.156250, 31.802893 ], [ 35.156250, 31.653381 ], [ 34.804688, 31.653381 ], [ 34.804688, 31.353637 ], [ 35.156250, 31.353637 ], [ 35.156250, 31.503629 ], [ 35.332031, 31.503629 ], [ 35.332031, 30.902225 ], [ 35.156250, 30.902225 ], [ 35.156250, 30.297018 ], [ 34.980469, 30.297018 ], [ 34.980469, 29.688053 ], [ 34.628906, 29.688053 ], [ 34.628906, 30.145127 ], [ 34.453125, 30.145127 ], [ 34.453125, 30.600094 ], [ 34.277344, 30.600094 ], [ 34.277344, 31.052934 ], [ 34.101562, 31.052934 ], [ 34.101562, 31.353637 ], [ 34.277344, 31.353637 ], [ 34.277344, 31.503629 ], [ 34.453125, 31.503629 ], [ 34.453125, 31.802893 ], [ 34.628906, 31.802893 ], [ 34.628906, 32.398516 ], [ 34.804688, 32.398516 ], [ 34.804688, 32.990236 ], [ 34.980469, 32.990236 ], [ 34.980469, 33.137551 ], [ 35.507812, 33.137551 ], [ 35.507812, 33.284620 ], [ 35.683594, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.653381 ], [ 35.332031, 31.653381 ], [ 35.332031, 31.353637 ], [ 34.980469, 31.353637 ], [ 34.980469, 31.653381 ], [ 35.156250, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.980469, 31.802893 ], [ 34.980469, 32.101190 ], [ 35.156250, 32.101190 ], [ 35.156250, 32.398516 ], [ 35.507812, 32.398516 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 32.398516 ], [ 35.507812, 31.653381 ], [ 35.332031, 31.653381 ], [ 35.332031, 31.503629 ], [ 35.156250, 31.503629 ], [ 35.156250, 31.353637 ], [ 34.804688, 31.353637 ], [ 34.804688, 31.653381 ], [ 35.156250, 31.653381 ], [ 35.156250, 31.802893 ], [ 34.804688, 31.802893 ], [ 34.804688, 32.101190 ], [ 34.980469, 32.101190 ], [ 34.980469, 32.398516 ], [ 35.507812, 32.398516 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.847656, 33.284620 ], [ 38.847656, 32.990236 ], [ 39.023438, 32.990236 ], [ 39.023438, 32.398516 ], [ 39.199219, 32.398516 ], [ 39.199219, 31.952162 ], [ 38.847656, 31.952162 ], [ 38.847656, 31.802893 ], [ 38.144531, 31.802893 ], [ 38.144531, 31.653381 ], [ 37.441406, 31.653381 ], [ 37.441406, 31.503629 ], [ 37.089844, 31.503629 ], [ 37.089844, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.052934 ], [ 37.441406, 31.052934 ], [ 37.441406, 30.902225 ], [ 37.617188, 30.902225 ], [ 37.617188, 30.751278 ], [ 37.792969, 30.751278 ], [ 37.792969, 30.448674 ], [ 37.968750, 30.448674 ], [ 37.968750, 30.297018 ], [ 37.617188, 30.297018 ], [ 37.617188, 30.145127 ], [ 37.441406, 30.145127 ], [ 37.441406, 29.993002 ], [ 37.265625, 29.993002 ], [ 37.265625, 29.840644 ], [ 36.738281, 29.840644 ], [ 36.738281, 29.688053 ], [ 36.562500, 29.688053 ], [ 36.562500, 29.382175 ], [ 36.210938, 29.382175 ], [ 36.210938, 29.228890 ], [ 35.332031, 29.228890 ], [ 35.332031, 29.382175 ], [ 34.980469, 29.382175 ], [ 34.980469, 29.688053 ], [ 35.156250, 29.688053 ], [ 35.156250, 30.297018 ], [ 35.332031, 30.297018 ], [ 35.332031, 30.751278 ], [ 35.507812, 30.751278 ], [ 35.507812, 31.203405 ], [ 35.332031, 31.203405 ], [ 35.332031, 31.653381 ], [ 35.507812, 31.653381 ], [ 35.507812, 32.546813 ], [ 35.683594, 32.546813 ], [ 35.683594, 32.694866 ], [ 35.859375, 32.694866 ], [ 35.859375, 32.546813 ], [ 36.210938, 32.546813 ], [ 36.210938, 32.398516 ], [ 36.562500, 32.398516 ], [ 36.562500, 32.249974 ], [ 37.089844, 32.249974 ], [ 37.089844, 32.398516 ], [ 37.441406, 32.398516 ], [ 37.441406, 32.546813 ], [ 37.617188, 32.546813 ], [ 37.617188, 32.694866 ], [ 37.792969, 32.694866 ], [ 37.792969, 32.842674 ], [ 38.144531, 32.842674 ], [ 38.144531, 32.990236 ], [ 38.320312, 32.990236 ], [ 38.320312, 33.137551 ], [ 38.496094, 33.137551 ], [ 38.496094, 33.284620 ], [ 38.847656, 33.284620 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.671875, 33.284620 ], [ 38.671875, 33.137551 ], [ 38.847656, 33.137551 ], [ 38.847656, 32.546813 ], [ 39.023438, 32.546813 ], [ 39.023438, 32.101190 ], [ 38.671875, 32.101190 ], [ 38.671875, 31.952162 ], [ 37.968750, 31.952162 ], [ 37.968750, 31.802893 ], [ 37.265625, 31.802893 ], [ 37.265625, 31.653381 ], [ 36.914062, 31.653381 ], [ 36.914062, 31.503629 ], [ 37.089844, 31.503629 ], [ 37.089844, 31.353637 ], [ 37.265625, 31.353637 ], [ 37.265625, 31.203405 ], [ 37.441406, 31.203405 ], [ 37.441406, 30.902225 ], [ 37.617188, 30.902225 ], [ 37.617188, 30.751278 ], [ 37.792969, 30.751278 ], [ 37.792969, 30.600094 ], [ 37.968750, 30.600094 ], [ 37.968750, 30.448674 ], [ 37.617188, 30.448674 ], [ 37.617188, 30.297018 ], [ 37.441406, 30.297018 ], [ 37.441406, 30.145127 ], [ 37.265625, 30.145127 ], [ 37.265625, 29.993002 ], [ 36.738281, 29.993002 ], [ 36.738281, 29.840644 ], [ 36.562500, 29.840644 ], [ 36.562500, 29.535230 ], [ 36.386719, 29.535230 ], [ 36.386719, 29.382175 ], [ 36.210938, 29.382175 ], [ 36.210938, 29.228890 ], [ 35.332031, 29.228890 ], [ 35.332031, 29.382175 ], [ 34.804688, 29.382175 ], [ 34.804688, 29.688053 ], [ 34.980469, 29.688053 ], [ 34.980469, 30.297018 ], [ 35.156250, 30.297018 ], [ 35.156250, 30.902225 ], [ 35.332031, 30.902225 ], [ 35.332031, 31.653381 ], [ 35.507812, 31.653381 ], [ 35.507812, 32.546813 ], [ 35.683594, 32.546813 ], [ 35.683594, 32.694866 ], [ 36.035156, 32.694866 ], [ 36.035156, 32.546813 ], [ 36.386719, 32.546813 ], [ 36.386719, 32.398516 ], [ 36.914062, 32.398516 ], [ 36.914062, 32.546813 ], [ 37.265625, 32.546813 ], [ 37.265625, 32.694866 ], [ 37.441406, 32.694866 ], [ 37.441406, 32.842674 ], [ 37.792969, 32.842674 ], [ 37.792969, 32.990236 ], [ 38.144531, 32.990236 ], [ 38.144531, 33.137551 ], [ 38.320312, 33.137551 ], [ 38.320312, 33.284620 ], [ 38.671875, 33.284620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.914062, 21.943046 ], [ 36.914062, 21.616579 ], [ 37.089844, 21.616579 ], [ 37.089844, 21.125498 ], [ 37.265625, 21.125498 ], [ 37.265625, 20.797201 ], [ 36.914062, 20.797201 ], [ 36.914062, 20.303418 ], [ 37.089844, 20.303418 ], [ 37.089844, 19.476950 ], [ 37.265625, 19.476950 ], [ 37.265625, 18.812718 ], [ 37.441406, 18.812718 ], [ 37.441406, 18.479609 ], [ 37.617188, 18.479609 ], [ 37.617188, 18.312811 ], [ 37.792969, 18.312811 ], [ 37.792969, 18.145852 ], [ 38.144531, 18.145852 ], [ 38.144531, 17.978733 ], [ 38.496094, 17.978733 ], [ 38.496094, 17.811456 ], [ 38.320312, 17.811456 ], [ 38.320312, 17.644022 ], [ 38.144531, 17.644022 ], [ 38.144531, 17.476432 ], [ 37.617188, 17.476432 ], [ 37.617188, 17.308688 ], [ 37.089844, 17.308688 ], [ 37.089844, 17.140790 ], [ 36.914062, 17.140790 ], [ 36.914062, 16.636192 ], [ 36.738281, 16.636192 ], [ 36.738281, 15.792254 ], [ 36.562500, 15.792254 ], [ 36.562500, 15.114553 ], [ 36.386719, 15.114553 ], [ 36.386719, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 13.239945 ], [ 36.035156, 13.239945 ], [ 36.035156, 12.726084 ], [ 35.859375, 12.726084 ], [ 35.859375, 12.382928 ], [ 35.683594, 12.382928 ], [ 35.683594, 12.211180 ], [ 35.507812, 12.211180 ], [ 35.507812, 12.039321 ], [ 35.332031, 12.039321 ], [ 35.332031, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 11.695273 ], [ 34.980469, 11.695273 ], [ 34.980469, 11.350797 ], [ 34.804688, 11.350797 ], [ 34.804688, 10.833306 ], [ 34.628906, 10.833306 ], [ 34.628906, 10.660608 ], [ 34.277344, 10.660608 ], [ 34.277344, 10.314919 ], [ 34.101562, 10.314919 ], [ 34.101562, 9.795678 ], [ 33.925781, 9.795678 ], [ 33.925781, 10.141932 ], [ 33.750000, 10.141932 ], [ 33.750000, 10.314919 ], [ 33.574219, 10.314919 ], [ 33.574219, 10.487812 ], [ 33.222656, 10.487812 ], [ 33.222656, 11.005904 ], [ 33.046875, 11.005904 ], [ 33.046875, 11.867351 ], [ 33.222656, 11.867351 ], [ 33.222656, 12.211180 ], [ 32.695312, 12.211180 ], [ 32.695312, 12.039321 ], [ 31.992188, 12.039321 ], [ 31.992188, 11.867351 ], [ 32.167969, 11.867351 ], [ 32.167969, 11.695273 ], [ 32.343750, 11.695273 ], [ 32.343750, 10.833306 ], [ 32.167969, 10.833306 ], [ 32.167969, 10.660608 ], [ 31.992188, 10.660608 ], [ 31.992188, 10.487812 ], [ 31.816406, 10.487812 ], [ 31.816406, 10.314919 ], [ 31.640625, 10.314919 ], [ 31.640625, 10.141932 ], [ 31.464844, 10.141932 ], [ 31.464844, 9.795678 ], [ 31.113281, 9.795678 ], [ 31.113281, 9.622414 ], [ 30.585938, 9.622414 ], [ 30.585938, 9.795678 ], [ 30.410156, 9.795678 ], [ 30.410156, 9.968851 ], [ 30.234375, 9.968851 ], [ 30.234375, 10.141932 ], [ 30.058594, 10.141932 ], [ 30.058594, 10.314919 ], [ 29.882812, 10.314919 ], [ 29.882812, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.795678 ], [ 29.355469, 9.795678 ], [ 29.355469, 9.622414 ], [ 29.003906, 9.622414 ], [ 29.003906, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.070312, 9.622414 ], [ 27.070312, 9.449062 ], [ 26.542969, 9.449062 ], [ 26.542969, 9.622414 ], [ 26.367188, 9.622414 ], [ 26.367188, 9.795678 ], [ 26.191406, 9.795678 ], [ 26.191406, 9.968851 ], [ 26.015625, 9.968851 ], [ 26.015625, 10.314919 ], [ 25.839844, 10.314919 ], [ 25.839844, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 10.314919 ], [ 25.136719, 10.314919 ], [ 25.136719, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 9.795678 ], [ 24.785156, 9.795678 ], [ 24.785156, 9.275622 ], [ 24.609375, 9.275622 ], [ 24.609375, 8.754795 ], [ 24.257812, 8.754795 ], [ 24.257812, 8.581021 ], [ 23.554688, 8.581021 ], [ 23.554688, 8.754795 ], [ 23.378906, 8.754795 ], [ 23.378906, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.378906, 10.141932 ], [ 23.378906, 10.314919 ], [ 23.203125, 10.314919 ], [ 23.203125, 10.487812 ], [ 23.027344, 10.487812 ], [ 23.027344, 10.833306 ], [ 22.851562, 10.833306 ], [ 22.851562, 11.350797 ], [ 22.675781, 11.350797 ], [ 22.675781, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.382928 ], [ 22.324219, 12.382928 ], [ 22.324219, 12.554564 ], [ 21.972656, 12.554564 ], [ 21.972656, 12.897489 ], [ 22.148438, 12.897489 ], [ 22.148438, 13.239945 ], [ 22.324219, 13.239945 ], [ 22.324219, 13.581921 ], [ 22.148438, 13.581921 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.752725 ], [ 22.324219, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.093957 ], [ 22.324219, 14.604847 ], [ 22.500000, 14.604847 ], [ 22.500000, 14.944785 ], [ 22.675781, 14.944785 ], [ 22.675781, 15.284185 ], [ 22.851562, 15.284185 ], [ 22.851562, 15.453680 ], [ 23.027344, 15.453680 ], [ 23.027344, 15.623037 ], [ 23.906250, 15.623037 ], [ 23.906250, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 21.943046 ], [ 36.914062, 21.943046 ] ] ], [ [ [ 33.925781, 9.622414 ], [ 33.925781, 9.449062 ], [ 33.750000, 9.449062 ], [ 33.750000, 9.622414 ], [ 33.925781, 9.622414 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.738281, 22.105999 ], [ 36.738281, 21.779905 ], [ 36.914062, 21.779905 ], [ 36.914062, 21.289374 ], [ 37.089844, 21.289374 ], [ 37.089844, 20.961440 ], [ 36.914062, 20.961440 ], [ 36.914062, 20.303418 ], [ 37.089844, 20.303418 ], [ 37.089844, 19.476950 ], [ 37.265625, 19.476950 ], [ 37.265625, 18.812718 ], [ 37.441406, 18.812718 ], [ 37.441406, 18.479609 ], [ 37.792969, 18.479609 ], [ 37.792969, 18.312811 ], [ 38.144531, 18.312811 ], [ 38.144531, 18.145852 ], [ 38.320312, 18.145852 ], [ 38.320312, 17.978733 ], [ 38.144531, 17.978733 ], [ 38.144531, 17.811456 ], [ 37.968750, 17.811456 ], [ 37.968750, 17.476432 ], [ 37.617188, 17.476432 ], [ 37.617188, 17.308688 ], [ 37.089844, 17.308688 ], [ 37.089844, 17.140790 ], [ 36.914062, 17.140790 ], [ 36.914062, 16.972741 ], [ 36.738281, 16.972741 ], [ 36.738281, 15.961329 ], [ 36.562500, 15.961329 ], [ 36.562500, 15.623037 ], [ 36.386719, 15.623037 ], [ 36.386719, 15.114553 ], [ 36.210938, 15.114553 ], [ 36.210938, 14.604847 ], [ 36.386719, 14.604847 ], [ 36.386719, 13.923404 ], [ 36.210938, 13.923404 ], [ 36.210938, 13.239945 ], [ 36.035156, 13.239945 ], [ 36.035156, 12.897489 ], [ 35.859375, 12.897489 ], [ 35.859375, 12.554564 ], [ 35.683594, 12.554564 ], [ 35.683594, 12.382928 ], [ 35.332031, 12.382928 ], [ 35.332031, 12.211180 ], [ 35.156250, 12.211180 ], [ 35.156250, 11.867351 ], [ 34.980469, 11.867351 ], [ 34.980469, 11.523088 ], [ 34.804688, 11.523088 ], [ 34.804688, 11.178402 ], [ 34.628906, 11.178402 ], [ 34.628906, 10.833306 ], [ 34.277344, 10.833306 ], [ 34.277344, 10.660608 ], [ 34.101562, 10.660608 ], [ 34.101562, 10.141932 ], [ 33.925781, 10.141932 ], [ 33.925781, 9.622414 ], [ 33.750000, 9.622414 ], [ 33.750000, 10.314919 ], [ 33.574219, 10.314919 ], [ 33.574219, 10.487812 ], [ 33.398438, 10.487812 ], [ 33.398438, 10.660608 ], [ 33.046875, 10.660608 ], [ 33.046875, 12.211180 ], [ 32.519531, 12.211180 ], [ 32.519531, 12.039321 ], [ 31.992188, 12.039321 ], [ 31.992188, 11.867351 ], [ 32.167969, 11.867351 ], [ 32.167969, 11.350797 ], [ 32.343750, 11.350797 ], [ 32.343750, 11.005904 ], [ 32.167969, 11.005904 ], [ 32.167969, 10.833306 ], [ 31.992188, 10.833306 ], [ 31.992188, 10.660608 ], [ 31.816406, 10.660608 ], [ 31.816406, 10.487812 ], [ 31.640625, 10.487812 ], [ 31.640625, 10.314919 ], [ 31.464844, 10.314919 ], [ 31.464844, 9.968851 ], [ 31.113281, 9.968851 ], [ 31.113281, 9.795678 ], [ 30.585938, 9.795678 ], [ 30.585938, 9.968851 ], [ 30.234375, 9.968851 ], [ 30.234375, 10.141932 ], [ 29.531250, 10.141932 ], [ 29.531250, 9.968851 ], [ 29.355469, 9.968851 ], [ 29.355469, 9.795678 ], [ 29.179688, 9.795678 ], [ 29.179688, 9.622414 ], [ 28.828125, 9.622414 ], [ 28.828125, 9.449062 ], [ 27.773438, 9.449062 ], [ 27.773438, 9.622414 ], [ 27.246094, 9.622414 ], [ 27.246094, 9.795678 ], [ 27.070312, 9.795678 ], [ 27.070312, 9.622414 ], [ 26.191406, 9.622414 ], [ 26.191406, 9.795678 ], [ 26.015625, 9.795678 ], [ 26.015625, 9.968851 ], [ 25.839844, 9.968851 ], [ 25.839844, 10.314919 ], [ 25.664062, 10.314919 ], [ 25.664062, 10.487812 ], [ 25.488281, 10.487812 ], [ 25.488281, 10.314919 ], [ 24.960938, 10.314919 ], [ 24.960938, 10.141932 ], [ 24.785156, 10.141932 ], [ 24.785156, 9.622414 ], [ 24.609375, 9.622414 ], [ 24.609375, 9.102097 ], [ 24.433594, 9.102097 ], [ 24.433594, 8.754795 ], [ 23.554688, 8.754795 ], [ 23.554688, 8.928487 ], [ 23.378906, 8.928487 ], [ 23.378906, 9.449062 ], [ 23.554688, 9.449062 ], [ 23.554688, 10.141932 ], [ 23.378906, 10.141932 ], [ 23.378906, 10.314919 ], [ 23.203125, 10.314919 ], [ 23.203125, 10.487812 ], [ 23.027344, 10.487812 ], [ 23.027344, 10.660608 ], [ 22.851562, 10.660608 ], [ 22.851562, 11.523088 ], [ 22.500000, 11.523088 ], [ 22.500000, 12.382928 ], [ 22.324219, 12.382928 ], [ 22.324219, 12.554564 ], [ 22.148438, 12.554564 ], [ 22.148438, 12.726084 ], [ 21.796875, 12.726084 ], [ 21.796875, 12.897489 ], [ 21.972656, 12.897489 ], [ 21.972656, 13.239945 ], [ 22.148438, 13.239945 ], [ 22.148438, 13.923404 ], [ 22.500000, 13.923404 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.093957 ], [ 22.324219, 14.264383 ], [ 22.148438, 14.264383 ], [ 22.148438, 14.434680 ], [ 22.324219, 14.434680 ], [ 22.324219, 14.774883 ], [ 22.500000, 14.774883 ], [ 22.500000, 15.114553 ], [ 22.675781, 15.114553 ], [ 22.675781, 15.453680 ], [ 22.851562, 15.453680 ], [ 22.851562, 15.792254 ], [ 23.203125, 15.792254 ], [ 23.203125, 15.623037 ], [ 23.730469, 15.623037 ], [ 23.730469, 20.138470 ], [ 24.960938, 20.138470 ], [ 24.960938, 22.105999 ], [ 36.738281, 22.105999 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.222656, 12.211180 ], [ 33.222656, 11.867351 ], [ 33.046875, 11.867351 ], [ 33.046875, 11.005904 ], [ 33.222656, 11.005904 ], [ 33.222656, 10.487812 ], [ 33.574219, 10.487812 ], [ 33.574219, 10.314919 ], [ 33.750000, 10.314919 ], [ 33.750000, 10.141932 ], [ 33.925781, 10.141932 ], [ 33.925781, 9.622414 ], [ 33.750000, 9.622414 ], [ 33.750000, 9.449062 ], [ 33.925781, 9.449062 ], [ 33.925781, 8.581021 ], [ 33.750000, 8.581021 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 33.222656, 8.233237 ], [ 33.046875, 8.233237 ], [ 33.046875, 7.885147 ], [ 32.871094, 7.885147 ], [ 32.871094, 7.710992 ], [ 33.574219, 7.710992 ], [ 33.574219, 7.536764 ], [ 33.750000, 7.536764 ], [ 33.750000, 7.362467 ], [ 33.925781, 7.362467 ], [ 33.925781, 7.188101 ], [ 34.101562, 7.188101 ], [ 34.101562, 7.013668 ], [ 34.277344, 7.013668 ], [ 34.277344, 6.664608 ], [ 34.628906, 6.664608 ], [ 34.628906, 6.489983 ], [ 34.804688, 6.489983 ], [ 34.804688, 6.140555 ], [ 34.980469, 6.140555 ], [ 34.980469, 5.790897 ], [ 35.156250, 5.790897 ], [ 35.156250, 5.441022 ], [ 35.332031, 5.441022 ], [ 35.332031, 5.266008 ], [ 35.156250, 5.266008 ], [ 35.156250, 5.090944 ], [ 34.804688, 5.090944 ], [ 34.804688, 4.915833 ], [ 34.628906, 4.915833 ], [ 34.628906, 4.740675 ], [ 34.453125, 4.740675 ], [ 34.453125, 4.565474 ], [ 34.277344, 4.565474 ], [ 34.277344, 4.390229 ], [ 34.101562, 4.390229 ], [ 34.101562, 4.214943 ], [ 33.925781, 4.214943 ], [ 33.925781, 4.039618 ], [ 33.574219, 4.039618 ], [ 33.574219, 3.864255 ], [ 32.519531, 3.864255 ], [ 32.519531, 3.688855 ], [ 32.167969, 3.688855 ], [ 32.167969, 3.513421 ], [ 31.640625, 3.513421 ], [ 31.640625, 3.688855 ], [ 30.937500, 3.688855 ], [ 30.937500, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.688855 ], [ 30.410156, 3.688855 ], [ 30.410156, 3.864255 ], [ 30.058594, 3.864255 ], [ 30.058594, 4.039618 ], [ 29.882812, 4.039618 ], [ 29.882812, 4.390229 ], [ 29.707031, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.531250, 4.565474 ], [ 29.531250, 4.390229 ], [ 28.652344, 4.390229 ], [ 28.652344, 4.214943 ], [ 28.125000, 4.214943 ], [ 28.125000, 4.390229 ], [ 27.773438, 4.390229 ], [ 27.773438, 4.740675 ], [ 27.597656, 4.740675 ], [ 27.597656, 5.090944 ], [ 27.421875, 5.090944 ], [ 27.421875, 5.441022 ], [ 27.246094, 5.441022 ], [ 27.246094, 5.615986 ], [ 26.894531, 5.615986 ], [ 26.894531, 5.790897 ], [ 26.542969, 5.790897 ], [ 26.542969, 5.965754 ], [ 26.367188, 5.965754 ], [ 26.367188, 6.315299 ], [ 26.191406, 6.315299 ], [ 26.191406, 6.489983 ], [ 26.015625, 6.489983 ], [ 26.015625, 6.839170 ], [ 25.839844, 6.839170 ], [ 25.839844, 7.013668 ], [ 25.664062, 7.013668 ], [ 25.664062, 7.188101 ], [ 25.312500, 7.188101 ], [ 25.312500, 7.362467 ], [ 25.136719, 7.362467 ], [ 25.136719, 7.885147 ], [ 24.960938, 7.885147 ], [ 24.960938, 8.059230 ], [ 24.609375, 8.059230 ], [ 24.609375, 8.233237 ], [ 24.257812, 8.233237 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.581021 ], [ 24.257812, 8.581021 ], [ 24.257812, 8.754795 ], [ 24.609375, 8.754795 ], [ 24.609375, 9.275622 ], [ 24.785156, 9.275622 ], [ 24.785156, 9.795678 ], [ 24.960938, 9.795678 ], [ 24.960938, 10.141932 ], [ 25.136719, 10.141932 ], [ 25.136719, 10.314919 ], [ 25.664062, 10.314919 ], [ 25.664062, 10.487812 ], [ 25.839844, 10.487812 ], [ 25.839844, 10.314919 ], [ 26.015625, 10.314919 ], [ 26.015625, 9.968851 ], [ 26.191406, 9.968851 ], [ 26.191406, 9.795678 ], [ 26.367188, 9.795678 ], [ 26.367188, 9.622414 ], [ 26.542969, 9.622414 ], [ 26.542969, 9.449062 ], [ 27.070312, 9.449062 ], [ 27.070312, 9.622414 ], [ 27.773438, 9.622414 ], [ 27.773438, 9.449062 ], [ 29.003906, 9.449062 ], [ 29.003906, 9.622414 ], [ 29.355469, 9.622414 ], [ 29.355469, 9.795678 ], [ 29.531250, 9.795678 ], [ 29.531250, 10.141932 ], [ 29.882812, 10.141932 ], [ 29.882812, 10.314919 ], [ 30.058594, 10.314919 ], [ 30.058594, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.968851 ], [ 30.410156, 9.968851 ], [ 30.410156, 9.795678 ], [ 30.585938, 9.795678 ], [ 30.585938, 9.622414 ], [ 31.113281, 9.622414 ], [ 31.113281, 9.795678 ], [ 31.464844, 9.795678 ], [ 31.464844, 10.141932 ], [ 31.640625, 10.141932 ], [ 31.640625, 10.314919 ], [ 31.816406, 10.314919 ], [ 31.816406, 10.487812 ], [ 31.992188, 10.487812 ], [ 31.992188, 10.660608 ], [ 32.167969, 10.660608 ], [ 32.167969, 10.833306 ], [ 32.343750, 10.833306 ], [ 32.343750, 11.695273 ], [ 32.167969, 11.695273 ], [ 32.167969, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 12.039321 ], [ 32.695312, 12.039321 ], [ 32.695312, 12.211180 ], [ 33.222656, 12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.046875, 12.211180 ], [ 33.046875, 10.660608 ], [ 33.398438, 10.660608 ], [ 33.398438, 10.487812 ], [ 33.574219, 10.487812 ], [ 33.574219, 10.314919 ], [ 33.750000, 10.314919 ], [ 33.750000, 9.622414 ], [ 33.925781, 9.622414 ], [ 33.925781, 8.581021 ], [ 33.750000, 8.581021 ], [ 33.750000, 8.407168 ], [ 33.222656, 8.407168 ], [ 33.222656, 8.233237 ], [ 33.046875, 8.233237 ], [ 33.046875, 7.710992 ], [ 33.398438, 7.710992 ], [ 33.398438, 7.536764 ], [ 33.750000, 7.536764 ], [ 33.750000, 7.362467 ], [ 33.925781, 7.362467 ], [ 33.925781, 7.013668 ], [ 34.101562, 7.013668 ], [ 34.101562, 6.839170 ], [ 34.277344, 6.839170 ], [ 34.277344, 6.664608 ], [ 34.628906, 6.664608 ], [ 34.628906, 6.489983 ], [ 34.804688, 6.489983 ], [ 34.804688, 6.140555 ], [ 34.980469, 6.140555 ], [ 34.980469, 5.790897 ], [ 35.156250, 5.790897 ], [ 35.156250, 5.441022 ], [ 34.980469, 5.441022 ], [ 34.980469, 5.266008 ], [ 34.804688, 5.266008 ], [ 34.804688, 5.090944 ], [ 34.628906, 5.090944 ], [ 34.628906, 4.915833 ], [ 34.453125, 4.915833 ], [ 34.453125, 4.740675 ], [ 34.277344, 4.740675 ], [ 34.277344, 4.565474 ], [ 34.101562, 4.565474 ], [ 34.101562, 4.390229 ], [ 33.925781, 4.390229 ], [ 33.925781, 4.214943 ], [ 33.750000, 4.214943 ], [ 33.750000, 4.039618 ], [ 33.398438, 4.039618 ], [ 33.398438, 3.864255 ], [ 32.343750, 3.864255 ], [ 32.343750, 3.688855 ], [ 31.289062, 3.688855 ], [ 31.289062, 3.864255 ], [ 31.113281, 3.864255 ], [ 31.113281, 3.688855 ], [ 30.937500, 3.688855 ], [ 30.937500, 3.513421 ], [ 30.585938, 3.513421 ], [ 30.585938, 3.688855 ], [ 30.410156, 3.688855 ], [ 30.410156, 3.864255 ], [ 30.058594, 3.864255 ], [ 30.058594, 4.039618 ], [ 29.882812, 4.039618 ], [ 29.882812, 4.390229 ], [ 29.707031, 4.390229 ], [ 29.707031, 4.565474 ], [ 29.355469, 4.565474 ], [ 29.355469, 4.390229 ], [ 27.949219, 4.390229 ], [ 27.949219, 4.565474 ], [ 27.773438, 4.565474 ], [ 27.773438, 4.740675 ], [ 27.597656, 4.740675 ], [ 27.597656, 4.915833 ], [ 27.421875, 4.915833 ], [ 27.421875, 5.090944 ], [ 27.246094, 5.090944 ], [ 27.246094, 5.441022 ], [ 27.070312, 5.441022 ], [ 27.070312, 5.615986 ], [ 26.718750, 5.615986 ], [ 26.718750, 5.790897 ], [ 26.367188, 5.790897 ], [ 26.367188, 6.315299 ], [ 26.191406, 6.315299 ], [ 26.191406, 6.664608 ], [ 26.015625, 6.664608 ], [ 26.015625, 6.839170 ], [ 25.664062, 6.839170 ], [ 25.664062, 7.013668 ], [ 25.488281, 7.013668 ], [ 25.488281, 7.188101 ], [ 25.136719, 7.188101 ], [ 25.136719, 7.362467 ], [ 24.960938, 7.362467 ], [ 24.960938, 7.885147 ], [ 24.785156, 7.885147 ], [ 24.785156, 8.059230 ], [ 24.433594, 8.059230 ], [ 24.433594, 8.233237 ], [ 24.257812, 8.233237 ], [ 24.257812, 8.407168 ], [ 23.906250, 8.407168 ], [ 23.906250, 8.581021 ], [ 23.730469, 8.581021 ], [ 23.730469, 8.754795 ], [ 24.433594, 8.754795 ], [ 24.433594, 9.102097 ], [ 24.609375, 9.102097 ], [ 24.609375, 9.622414 ], [ 24.785156, 9.622414 ], [ 24.785156, 10.141932 ], [ 24.960938, 10.141932 ], [ 24.960938, 10.314919 ], [ 25.488281, 10.314919 ], [ 25.488281, 10.487812 ], [ 25.664062, 10.487812 ], [ 25.664062, 10.314919 ], [ 25.839844, 10.314919 ], [ 25.839844, 9.968851 ], [ 26.015625, 9.968851 ], [ 26.015625, 9.795678 ], [ 26.191406, 9.795678 ], [ 26.191406, 9.622414 ], [ 27.070312, 9.622414 ], [ 27.070312, 9.795678 ], [ 27.246094, 9.795678 ], [ 27.246094, 9.622414 ], [ 27.773438, 9.622414 ], [ 27.773438, 9.449062 ], [ 28.828125, 9.449062 ], [ 28.828125, 9.622414 ], [ 29.179688, 9.622414 ], [ 29.179688, 9.795678 ], [ 29.355469, 9.795678 ], [ 29.355469, 9.968851 ], [ 29.531250, 9.968851 ], [ 29.531250, 10.141932 ], [ 30.234375, 10.141932 ], [ 30.234375, 9.968851 ], [ 30.585938, 9.968851 ], [ 30.585938, 9.795678 ], [ 31.113281, 9.795678 ], [ 31.113281, 9.968851 ], [ 31.464844, 9.968851 ], [ 31.464844, 10.314919 ], [ 31.640625, 10.314919 ], [ 31.640625, 10.487812 ], [ 31.816406, 10.487812 ], [ 31.816406, 10.660608 ], [ 31.992188, 10.660608 ], [ 31.992188, 10.833306 ], [ 32.167969, 10.833306 ], [ 32.167969, 11.005904 ], [ 32.343750, 11.005904 ], [ 32.343750, 11.350797 ], [ 32.167969, 11.350797 ], [ 32.167969, 11.867351 ], [ 31.992188, 11.867351 ], [ 31.992188, 12.039321 ], [ 32.519531, 12.039321 ], [ 32.519531, 12.211180 ], [ 33.046875, 12.211180 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 4.039618 ], [ 34.101562, 3.864255 ], [ 34.277344, 3.864255 ], [ 34.277344, 3.513421 ], [ 34.453125, 3.513421 ], [ 34.453125, 3.162456 ], [ 34.628906, 3.162456 ], [ 34.628906, 2.635789 ], [ 34.804688, 2.635789 ], [ 34.804688, 2.108899 ], [ 34.980469, 2.108899 ], [ 34.980469, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.628906, 1.406109 ], [ 34.628906, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 0.878872 ], [ 34.277344, 0.878872 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, -0.878872 ], [ 29.531250, -0.878872 ], [ 29.531250, -0.527336 ], [ 29.707031, -0.527336 ], [ 29.707031, -0.351560 ], [ 29.882812, -0.351560 ], [ 29.882812, 0.703107 ], [ 30.058594, 0.703107 ], [ 30.058594, 1.054628 ], [ 30.234375, 1.054628 ], [ 30.234375, 1.406109 ], [ 30.410156, 1.406109 ], [ 30.410156, 1.581830 ], [ 30.585938, 1.581830 ], [ 30.585938, 1.757537 ], [ 30.937500, 1.757537 ], [ 30.937500, 2.108899 ], [ 31.113281, 2.108899 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.284551 ], [ 30.761719, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.688855 ], [ 31.640625, 3.688855 ], [ 31.640625, 3.513421 ], [ 32.167969, 3.513421 ], [ 32.167969, 3.688855 ], [ 32.519531, 3.688855 ], [ 32.519531, 3.864255 ], [ 33.574219, 3.864255 ], [ 33.574219, 4.039618 ], [ 34.101562, 4.039618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.101562, 4.214943 ], [ 34.101562, 4.039618 ], [ 34.277344, 4.039618 ], [ 34.277344, 3.688855 ], [ 34.453125, 3.688855 ], [ 34.453125, 2.811371 ], [ 34.628906, 2.811371 ], [ 34.628906, 2.460181 ], [ 34.804688, 2.460181 ], [ 34.804688, 2.108899 ], [ 34.980469, 2.108899 ], [ 34.980469, 1.757537 ], [ 34.804688, 1.757537 ], [ 34.804688, 1.406109 ], [ 34.628906, 1.406109 ], [ 34.628906, 1.054628 ], [ 34.453125, 1.054628 ], [ 34.453125, 0.878872 ], [ 34.277344, 0.878872 ], [ 34.277344, 0.527336 ], [ 34.101562, 0.527336 ], [ 34.101562, 0.351560 ], [ 33.925781, 0.351560 ], [ 33.925781, 0.175781 ], [ 33.750000, 0.175781 ], [ 33.750000, -0.878872 ], [ 29.531250, -0.878872 ], [ 29.531250, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, 1.054628 ], [ 30.058594, 1.054628 ], [ 30.058594, 1.230374 ], [ 30.234375, 1.230374 ], [ 30.234375, 1.406109 ], [ 30.410156, 1.406109 ], [ 30.410156, 1.581830 ], [ 30.585938, 1.581830 ], [ 30.585938, 1.757537 ], [ 30.761719, 1.757537 ], [ 30.761719, 1.933227 ], [ 30.937500, 1.933227 ], [ 30.937500, 2.108899 ], [ 31.113281, 2.108899 ], [ 31.113281, 2.284551 ], [ 30.761719, 2.284551 ], [ 30.761719, 3.513421 ], [ 30.937500, 3.513421 ], [ 30.937500, 3.688855 ], [ 31.113281, 3.688855 ], [ 31.113281, 3.864255 ], [ 31.289062, 3.864255 ], [ 31.289062, 3.688855 ], [ 32.343750, 3.688855 ], [ 32.343750, 3.864255 ], [ 33.398438, 3.864255 ], [ 33.398438, 4.039618 ], [ 33.750000, 4.039618 ], [ 33.750000, 4.214943 ], [ 34.101562, 4.214943 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.496094, 17.811456 ], [ 38.496094, 17.644022 ], [ 38.671875, 17.644022 ], [ 38.671875, 17.308688 ], [ 38.847656, 17.308688 ], [ 38.847656, 16.972741 ], [ 39.023438, 16.972741 ], [ 39.023438, 16.299051 ], [ 39.199219, 16.299051 ], [ 39.199219, 15.792254 ], [ 39.375000, 15.792254 ], [ 39.375000, 15.623037 ], [ 39.550781, 15.623037 ], [ 39.550781, 15.453680 ], [ 39.726562, 15.453680 ], [ 39.726562, 15.284185 ], [ 39.902344, 15.284185 ], [ 39.902344, 15.114553 ], [ 40.253906, 15.114553 ], [ 40.253906, 14.944785 ], [ 40.429688, 14.944785 ], [ 40.429688, 14.774883 ], [ 40.605469, 14.774883 ], [ 40.605469, 14.604847 ], [ 40.957031, 14.604847 ], [ 40.957031, 14.434680 ], [ 41.132812, 14.434680 ], [ 41.132812, 14.264383 ], [ 41.308594, 14.264383 ], [ 41.308594, 14.093957 ], [ 41.484375, 14.093957 ], [ 41.484375, 13.923404 ], [ 41.660156, 13.923404 ], [ 41.660156, 13.752725 ], [ 41.835938, 13.752725 ], [ 41.835938, 13.581921 ], [ 42.187500, 13.581921 ], [ 42.187500, 13.410994 ], [ 42.363281, 13.410994 ], [ 42.363281, 13.239945 ], [ 42.539062, 13.239945 ], [ 42.539062, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 12.726084 ], [ 43.066406, 12.726084 ], [ 43.066406, 12.554564 ], [ 42.890625, 12.554564 ], [ 42.890625, 12.382928 ], [ 42.363281, 12.382928 ], [ 42.363281, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.726084 ], [ 42.011719, 12.726084 ], [ 42.011719, 12.897489 ], [ 41.835938, 12.897489 ], [ 41.835938, 13.239945 ], [ 41.660156, 13.239945 ], [ 41.660156, 13.410994 ], [ 41.484375, 13.410994 ], [ 41.484375, 13.581921 ], [ 41.132812, 13.581921 ], [ 41.132812, 13.923404 ], [ 40.957031, 13.923404 ], [ 40.957031, 14.093957 ], [ 40.605469, 14.093957 ], [ 40.605469, 14.264383 ], [ 40.253906, 14.264383 ], [ 40.253906, 14.434680 ], [ 39.550781, 14.434680 ], [ 39.550781, 14.604847 ], [ 38.671875, 14.604847 ], [ 38.671875, 14.434680 ], [ 38.320312, 14.434680 ], [ 38.320312, 14.604847 ], [ 38.144531, 14.604847 ], [ 38.144531, 14.774883 ], [ 37.792969, 14.774883 ], [ 37.792969, 14.434680 ], [ 37.617188, 14.434680 ], [ 37.617188, 14.264383 ], [ 36.914062, 14.264383 ], [ 36.914062, 14.434680 ], [ 36.386719, 14.434680 ], [ 36.386719, 15.114553 ], [ 36.562500, 15.114553 ], [ 36.562500, 15.792254 ], [ 36.738281, 15.792254 ], [ 36.738281, 16.636192 ], [ 36.914062, 16.636192 ], [ 36.914062, 17.140790 ], [ 37.089844, 17.140790 ], [ 37.089844, 17.308688 ], [ 37.617188, 17.308688 ], [ 37.617188, 17.476432 ], [ 38.144531, 17.476432 ], [ 38.144531, 17.644022 ], [ 38.320312, 17.644022 ], [ 38.320312, 17.811456 ], [ 38.496094, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.320312, 17.978733 ], [ 38.320312, 17.811456 ], [ 38.496094, 17.811456 ], [ 38.496094, 17.476432 ], [ 38.671875, 17.476432 ], [ 38.671875, 17.140790 ], [ 38.847656, 17.140790 ], [ 38.847656, 16.636192 ], [ 39.023438, 16.636192 ], [ 39.023438, 16.130262 ], [ 39.199219, 16.130262 ], [ 39.199219, 15.792254 ], [ 39.375000, 15.792254 ], [ 39.375000, 15.623037 ], [ 39.550781, 15.623037 ], [ 39.550781, 15.453680 ], [ 39.726562, 15.453680 ], [ 39.726562, 15.284185 ], [ 40.078125, 15.284185 ], [ 40.078125, 15.114553 ], [ 40.253906, 15.114553 ], [ 40.253906, 14.944785 ], [ 40.605469, 14.944785 ], [ 40.605469, 14.774883 ], [ 40.957031, 14.774883 ], [ 40.957031, 14.604847 ], [ 41.132812, 14.604847 ], [ 41.132812, 14.434680 ], [ 41.308594, 14.434680 ], [ 41.308594, 14.264383 ], [ 41.484375, 14.264383 ], [ 41.484375, 13.923404 ], [ 41.660156, 13.923404 ], [ 41.660156, 13.752725 ], [ 41.835938, 13.752725 ], [ 41.835938, 13.581921 ], [ 42.011719, 13.581921 ], [ 42.011719, 13.410994 ], [ 42.187500, 13.410994 ], [ 42.187500, 13.239945 ], [ 42.363281, 13.239945 ], [ 42.363281, 13.068777 ], [ 42.539062, 13.068777 ], [ 42.539062, 12.897489 ], [ 42.890625, 12.897489 ], [ 42.890625, 12.726084 ], [ 43.066406, 12.726084 ], [ 43.066406, 12.554564 ], [ 42.187500, 12.554564 ], [ 42.187500, 12.726084 ], [ 42.011719, 12.726084 ], [ 42.011719, 12.897489 ], [ 41.835938, 12.897489 ], [ 41.835938, 13.239945 ], [ 41.660156, 13.239945 ], [ 41.660156, 13.410994 ], [ 41.484375, 13.410994 ], [ 41.484375, 13.581921 ], [ 41.308594, 13.581921 ], [ 41.308594, 13.752725 ], [ 41.132812, 13.752725 ], [ 41.132812, 13.923404 ], [ 40.957031, 13.923404 ], [ 40.957031, 14.093957 ], [ 40.781250, 14.093957 ], [ 40.781250, 14.264383 ], [ 40.429688, 14.264383 ], [ 40.429688, 14.434680 ], [ 40.078125, 14.434680 ], [ 40.078125, 14.604847 ], [ 39.023438, 14.604847 ], [ 39.023438, 14.774883 ], [ 38.847656, 14.774883 ], [ 38.847656, 14.604847 ], [ 38.320312, 14.604847 ], [ 38.320312, 14.774883 ], [ 37.968750, 14.774883 ], [ 37.968750, 14.944785 ], [ 37.792969, 14.944785 ], [ 37.792969, 14.774883 ], [ 37.617188, 14.774883 ], [ 37.617188, 14.434680 ], [ 37.441406, 14.434680 ], [ 37.441406, 14.264383 ], [ 36.738281, 14.264383 ], [ 36.738281, 14.434680 ], [ 36.386719, 14.434680 ], [ 36.386719, 14.604847 ], [ 36.210938, 14.604847 ], [ 36.210938, 15.114553 ], [ 36.386719, 15.114553 ], [ 36.386719, 15.623037 ], [ 36.562500, 15.623037 ], [ 36.562500, 15.961329 ], [ 36.738281, 15.961329 ], [ 36.738281, 16.972741 ], [ 36.914062, 16.972741 ], [ 36.914062, 17.140790 ], [ 37.089844, 17.140790 ], [ 37.089844, 17.308688 ], [ 37.617188, 17.308688 ], [ 37.617188, 17.476432 ], [ 37.968750, 17.476432 ], [ 37.968750, 17.811456 ], [ 38.144531, 17.811456 ], [ 38.144531, 17.978733 ], [ 38.320312, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 11.867351 ], [ 42.890625, 11.867351 ], [ 42.890625, 11.695273 ], [ 42.714844, 11.695273 ], [ 42.714844, 11.523088 ], [ 43.066406, 11.523088 ], [ 43.066406, 11.350797 ], [ 42.890625, 11.350797 ], [ 42.890625, 11.005904 ], [ 41.835938, 11.005904 ], [ 41.835938, 11.178402 ], [ 41.660156, 11.178402 ], [ 41.660156, 11.695273 ], [ 41.835938, 11.695273 ], [ 41.835938, 11.867351 ], [ 42.011719, 11.867351 ], [ 42.011719, 12.039321 ], [ 42.187500, 12.039321 ], [ 42.187500, 12.382928 ], [ 42.890625, 12.382928 ], [ 42.890625, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.242188, 12.554564 ], [ 43.242188, 12.039321 ], [ 43.066406, 12.039321 ], [ 43.066406, 11.867351 ], [ 42.714844, 11.867351 ], [ 42.714844, 11.695273 ], [ 42.890625, 11.695273 ], [ 42.890625, 11.523088 ], [ 43.066406, 11.523088 ], [ 43.066406, 11.350797 ], [ 42.890625, 11.350797 ], [ 42.890625, 11.005904 ], [ 42.539062, 11.005904 ], [ 42.539062, 11.178402 ], [ 41.660156, 11.178402 ], [ 41.660156, 11.867351 ], [ 41.835938, 11.867351 ], [ 41.835938, 12.211180 ], [ 42.011719, 12.211180 ], [ 42.011719, 12.382928 ], [ 42.187500, 12.382928 ], [ 42.187500, 12.554564 ], [ 43.242188, 12.554564 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.507812, 5.441022 ], [ 35.507812, 5.266008 ], [ 35.859375, 5.266008 ], [ 35.859375, 4.565474 ], [ 36.035156, 4.565474 ], [ 36.035156, 4.390229 ], [ 36.914062, 4.390229 ], [ 36.914062, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 4.039618 ], [ 37.441406, 4.039618 ], [ 37.441406, 3.864255 ], [ 37.617188, 3.864255 ], [ 37.617188, 3.688855 ], [ 37.968750, 3.688855 ], [ 37.968750, 3.513421 ], [ 39.023438, 3.513421 ], [ 39.023438, 3.337954 ], [ 39.726562, 3.337954 ], [ 39.726562, 3.688855 ], [ 39.902344, 3.688855 ], [ 39.902344, 3.864255 ], [ 40.253906, 3.864255 ], [ 40.253906, 4.039618 ], [ 40.605469, 4.039618 ], [ 40.605469, 4.214943 ], [ 40.781250, 4.214943 ], [ 40.781250, 4.039618 ], [ 40.957031, 4.039618 ], [ 40.957031, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 3.688855 ], [ 41.660156, 3.688855 ], [ 41.660156, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 3.337954 ], [ 41.308594, 3.337954 ], [ 41.308594, 2.986927 ], [ 41.132812, 2.986927 ], [ 41.132812, 2.811371 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 33.925781, -0.878872 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.878872 ], [ 34.453125, 0.878872 ], [ 34.453125, 1.054628 ], [ 34.628906, 1.054628 ], [ 34.628906, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 1.757537 ], [ 34.980469, 1.757537 ], [ 34.980469, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.635789 ], [ 34.628906, 2.635789 ], [ 34.628906, 3.162456 ], [ 34.453125, 3.162456 ], [ 34.453125, 3.513421 ], [ 34.277344, 3.513421 ], [ 34.277344, 3.864255 ], [ 34.101562, 3.864255 ], [ 34.101562, 4.039618 ], [ 33.925781, 4.039618 ], [ 33.925781, 4.214943 ], [ 34.101562, 4.214943 ], [ 34.101562, 4.390229 ], [ 34.277344, 4.390229 ], [ 34.277344, 4.565474 ], [ 34.453125, 4.565474 ], [ 34.453125, 4.740675 ], [ 34.628906, 4.740675 ], [ 34.628906, 4.915833 ], [ 34.804688, 4.915833 ], [ 34.804688, 5.090944 ], [ 35.156250, 5.090944 ], [ 35.156250, 5.266008 ], [ 35.332031, 5.266008 ], [ 35.332031, 5.441022 ], [ 35.507812, 5.441022 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 5.615986 ], [ 35.332031, 5.441022 ], [ 35.683594, 5.441022 ], [ 35.683594, 4.740675 ], [ 35.859375, 4.740675 ], [ 35.859375, 4.565474 ], [ 36.738281, 4.565474 ], [ 36.738281, 4.390229 ], [ 37.089844, 4.390229 ], [ 37.089844, 4.214943 ], [ 37.265625, 4.214943 ], [ 37.265625, 4.039618 ], [ 37.441406, 4.039618 ], [ 37.441406, 3.864255 ], [ 37.792969, 3.864255 ], [ 37.792969, 3.688855 ], [ 38.671875, 3.688855 ], [ 38.671875, 3.513421 ], [ 39.550781, 3.513421 ], [ 39.550781, 3.688855 ], [ 39.726562, 3.688855 ], [ 39.726562, 3.864255 ], [ 39.902344, 3.864255 ], [ 39.902344, 4.039618 ], [ 40.253906, 4.039618 ], [ 40.253906, 4.214943 ], [ 40.957031, 4.214943 ], [ 40.957031, 4.039618 ], [ 41.835938, 4.039618 ], [ 41.835938, 3.864255 ], [ 41.660156, 3.864255 ], [ 41.660156, 3.513421 ], [ 41.484375, 3.513421 ], [ 41.484375, 3.337954 ], [ 41.308594, 3.337954 ], [ 41.308594, 3.162456 ], [ 41.132812, 3.162456 ], [ 41.132812, 2.811371 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 33.750000, -0.878872 ], [ 33.750000, 0.175781 ], [ 33.925781, 0.175781 ], [ 33.925781, 0.351560 ], [ 34.101562, 0.351560 ], [ 34.101562, 0.527336 ], [ 34.277344, 0.527336 ], [ 34.277344, 0.878872 ], [ 34.453125, 0.878872 ], [ 34.453125, 1.054628 ], [ 34.628906, 1.054628 ], [ 34.628906, 1.406109 ], [ 34.804688, 1.406109 ], [ 34.804688, 1.757537 ], [ 34.980469, 1.757537 ], [ 34.980469, 2.108899 ], [ 34.804688, 2.108899 ], [ 34.804688, 2.460181 ], [ 34.628906, 2.460181 ], [ 34.628906, 2.811371 ], [ 34.453125, 2.811371 ], [ 34.453125, 3.688855 ], [ 34.277344, 3.688855 ], [ 34.277344, 4.039618 ], [ 34.101562, 4.039618 ], [ 34.101562, 4.214943 ], [ 33.925781, 4.214943 ], [ 33.925781, 4.390229 ], [ 34.101562, 4.390229 ], [ 34.101562, 4.565474 ], [ 34.277344, 4.565474 ], [ 34.277344, 4.740675 ], [ 34.453125, 4.740675 ], [ 34.453125, 4.915833 ], [ 34.628906, 4.915833 ], [ 34.628906, 5.090944 ], [ 34.804688, 5.090944 ], [ 34.804688, 5.266008 ], [ 34.980469, 5.266008 ], [ 34.980469, 5.441022 ], [ 35.156250, 5.441022 ], [ 35.156250, 5.615986 ], [ 35.332031, 5.615986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.144531, 14.774883 ], [ 38.144531, 14.604847 ], [ 38.320312, 14.604847 ], [ 38.320312, 14.434680 ], [ 38.671875, 14.434680 ], [ 38.671875, 14.604847 ], [ 39.550781, 14.604847 ], [ 39.550781, 14.434680 ], [ 40.253906, 14.434680 ], [ 40.253906, 14.264383 ], [ 40.605469, 14.264383 ], [ 40.605469, 14.093957 ], [ 40.957031, 14.093957 ], [ 40.957031, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.410994 ], [ 41.660156, 13.410994 ], [ 41.660156, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.897489 ], [ 42.011719, 12.897489 ], [ 42.011719, 12.726084 ], [ 42.187500, 12.726084 ], [ 42.187500, 12.554564 ], [ 42.363281, 12.554564 ], [ 42.363281, 12.382928 ], [ 42.187500, 12.382928 ], [ 42.187500, 12.039321 ], [ 42.011719, 12.039321 ], [ 42.011719, 11.867351 ], [ 41.835938, 11.867351 ], [ 41.835938, 11.695273 ], [ 41.660156, 11.695273 ], [ 41.660156, 11.178402 ], [ 41.835938, 11.178402 ], [ 41.835938, 11.005904 ], [ 42.714844, 11.005904 ], [ 42.714844, 10.660608 ], [ 42.539062, 10.660608 ], [ 42.539062, 10.314919 ], [ 42.714844, 10.314919 ], [ 42.714844, 9.968851 ], [ 42.890625, 9.968851 ], [ 42.890625, 9.795678 ], [ 43.066406, 9.795678 ], [ 43.066406, 9.622414 ], [ 43.242188, 9.622414 ], [ 43.242188, 9.449062 ], [ 43.417969, 9.449062 ], [ 43.417969, 9.102097 ], [ 43.769531, 9.102097 ], [ 43.769531, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 8.754795 ], [ 45.000000, 8.754795 ], [ 45.000000, 8.581021 ], [ 45.527344, 8.581021 ], [ 45.527344, 8.407168 ], [ 45.878906, 8.407168 ], [ 45.878906, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.615986 ], [ 45.527344, 5.615986 ], [ 45.527344, 5.441022 ], [ 45.351562, 5.441022 ], [ 45.351562, 5.090944 ], [ 45.175781, 5.090944 ], [ 45.175781, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 4.740675 ], [ 43.417969, 4.740675 ], [ 43.417969, 4.565474 ], [ 43.066406, 4.565474 ], [ 43.066406, 4.390229 ], [ 42.890625, 4.390229 ], [ 42.890625, 4.214943 ], [ 42.187500, 4.214943 ], [ 42.187500, 4.039618 ], [ 42.011719, 4.039618 ], [ 42.011719, 3.864255 ], [ 40.957031, 3.864255 ], [ 40.957031, 4.039618 ], [ 40.781250, 4.039618 ], [ 40.781250, 4.214943 ], [ 40.605469, 4.214943 ], [ 40.605469, 4.039618 ], [ 40.253906, 4.039618 ], [ 40.253906, 3.864255 ], [ 39.902344, 3.864255 ], [ 39.902344, 3.688855 ], [ 39.726562, 3.688855 ], [ 39.726562, 3.337954 ], [ 39.023438, 3.337954 ], [ 39.023438, 3.513421 ], [ 37.968750, 3.513421 ], [ 37.968750, 3.688855 ], [ 37.617188, 3.688855 ], [ 37.617188, 3.864255 ], [ 37.441406, 3.864255 ], [ 37.441406, 4.039618 ], [ 37.265625, 4.039618 ], [ 37.265625, 4.214943 ], [ 36.914062, 4.214943 ], [ 36.914062, 4.390229 ], [ 36.035156, 4.390229 ], [ 36.035156, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 5.266008 ], [ 35.507812, 5.266008 ], [ 35.507812, 5.441022 ], [ 35.156250, 5.441022 ], [ 35.156250, 5.790897 ], [ 34.980469, 5.790897 ], [ 34.980469, 6.140555 ], [ 34.804688, 6.140555 ], [ 34.804688, 6.489983 ], [ 34.628906, 6.489983 ], [ 34.628906, 6.664608 ], [ 34.277344, 6.664608 ], [ 34.277344, 7.013668 ], [ 34.101562, 7.013668 ], [ 34.101562, 7.188101 ], [ 33.925781, 7.188101 ], [ 33.925781, 7.362467 ], [ 33.750000, 7.362467 ], [ 33.750000, 7.536764 ], [ 33.574219, 7.536764 ], [ 33.574219, 7.710992 ], [ 32.871094, 7.710992 ], [ 32.871094, 7.885147 ], [ 33.046875, 7.885147 ], [ 33.046875, 8.233237 ], [ 33.222656, 8.233237 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 8.581021 ], [ 33.925781, 8.581021 ], [ 33.925781, 9.795678 ], [ 34.101562, 9.795678 ], [ 34.101562, 10.314919 ], [ 34.277344, 10.314919 ], [ 34.277344, 10.660608 ], [ 34.628906, 10.660608 ], [ 34.628906, 10.833306 ], [ 34.804688, 10.833306 ], [ 34.804688, 11.350797 ], [ 34.980469, 11.350797 ], [ 34.980469, 11.695273 ], [ 35.156250, 11.695273 ], [ 35.156250, 11.867351 ], [ 35.332031, 11.867351 ], [ 35.332031, 12.039321 ], [ 35.507812, 12.039321 ], [ 35.507812, 12.211180 ], [ 35.683594, 12.211180 ], [ 35.683594, 12.382928 ], [ 35.859375, 12.382928 ], [ 35.859375, 12.726084 ], [ 36.035156, 12.726084 ], [ 36.035156, 13.239945 ], [ 36.210938, 13.239945 ], [ 36.210938, 13.923404 ], [ 36.386719, 13.923404 ], [ 36.386719, 14.434680 ], [ 36.914062, 14.434680 ], [ 36.914062, 14.264383 ], [ 37.617188, 14.264383 ], [ 37.617188, 14.434680 ], [ 37.792969, 14.434680 ], [ 37.792969, 14.774883 ], [ 38.144531, 14.774883 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.968750, 14.944785 ], [ 37.968750, 14.774883 ], [ 38.320312, 14.774883 ], [ 38.320312, 14.604847 ], [ 38.847656, 14.604847 ], [ 38.847656, 14.774883 ], [ 39.023438, 14.774883 ], [ 39.023438, 14.604847 ], [ 40.078125, 14.604847 ], [ 40.078125, 14.434680 ], [ 40.429688, 14.434680 ], [ 40.429688, 14.264383 ], [ 40.781250, 14.264383 ], [ 40.781250, 14.093957 ], [ 40.957031, 14.093957 ], [ 40.957031, 13.923404 ], [ 41.132812, 13.923404 ], [ 41.132812, 13.752725 ], [ 41.308594, 13.752725 ], [ 41.308594, 13.581921 ], [ 41.484375, 13.581921 ], [ 41.484375, 13.410994 ], [ 41.660156, 13.410994 ], [ 41.660156, 13.239945 ], [ 41.835938, 13.239945 ], [ 41.835938, 12.897489 ], [ 42.011719, 12.897489 ], [ 42.011719, 12.726084 ], [ 42.187500, 12.726084 ], [ 42.187500, 12.382928 ], [ 42.011719, 12.382928 ], [ 42.011719, 12.211180 ], [ 41.835938, 12.211180 ], [ 41.835938, 11.867351 ], [ 41.660156, 11.867351 ], [ 41.660156, 11.178402 ], [ 42.539062, 11.178402 ], [ 42.539062, 11.005904 ], [ 42.714844, 11.005904 ], [ 42.714844, 10.833306 ], [ 42.539062, 10.833306 ], [ 42.539062, 10.487812 ], [ 42.714844, 10.487812 ], [ 42.714844, 10.141932 ], [ 42.890625, 10.141932 ], [ 42.890625, 9.968851 ], [ 43.066406, 9.968851 ], [ 43.066406, 9.622414 ], [ 43.242188, 9.622414 ], [ 43.242188, 9.449062 ], [ 43.417969, 9.449062 ], [ 43.417969, 9.275622 ], [ 43.769531, 9.275622 ], [ 43.769531, 9.102097 ], [ 44.121094, 9.102097 ], [ 44.121094, 8.928487 ], [ 44.648438, 8.928487 ], [ 44.648438, 8.754795 ], [ 45.175781, 8.754795 ], [ 45.175781, 8.581021 ], [ 45.527344, 8.581021 ], [ 45.527344, 8.407168 ], [ 45.878906, 8.407168 ], [ 45.878906, 5.965754 ], [ 45.703125, 5.965754 ], [ 45.703125, 5.790897 ], [ 45.527344, 5.790897 ], [ 45.527344, 5.615986 ], [ 45.351562, 5.615986 ], [ 45.351562, 5.441022 ], [ 45.175781, 5.441022 ], [ 45.175781, 5.266008 ], [ 45.000000, 5.266008 ], [ 45.000000, 5.090944 ], [ 43.593750, 5.090944 ], [ 43.593750, 4.915833 ], [ 43.417969, 4.915833 ], [ 43.417969, 4.740675 ], [ 43.066406, 4.740675 ], [ 43.066406, 4.565474 ], [ 42.890625, 4.565474 ], [ 42.890625, 4.390229 ], [ 42.011719, 4.390229 ], [ 42.011719, 4.214943 ], [ 41.835938, 4.214943 ], [ 41.835938, 4.039618 ], [ 40.957031, 4.039618 ], [ 40.957031, 4.214943 ], [ 40.253906, 4.214943 ], [ 40.253906, 4.039618 ], [ 39.902344, 4.039618 ], [ 39.902344, 3.864255 ], [ 39.726562, 3.864255 ], [ 39.726562, 3.688855 ], [ 39.550781, 3.688855 ], [ 39.550781, 3.513421 ], [ 38.671875, 3.513421 ], [ 38.671875, 3.688855 ], [ 37.792969, 3.688855 ], [ 37.792969, 3.864255 ], [ 37.441406, 3.864255 ], [ 37.441406, 4.039618 ], [ 37.265625, 4.039618 ], [ 37.265625, 4.214943 ], [ 37.089844, 4.214943 ], [ 37.089844, 4.390229 ], [ 36.738281, 4.390229 ], [ 36.738281, 4.565474 ], [ 35.859375, 4.565474 ], [ 35.859375, 4.740675 ], [ 35.683594, 4.740675 ], [ 35.683594, 5.441022 ], [ 35.332031, 5.441022 ], [ 35.332031, 5.615986 ], [ 35.156250, 5.615986 ], [ 35.156250, 5.790897 ], [ 34.980469, 5.790897 ], [ 34.980469, 6.140555 ], [ 34.804688, 6.140555 ], [ 34.804688, 6.489983 ], [ 34.628906, 6.489983 ], [ 34.628906, 6.664608 ], [ 34.277344, 6.664608 ], [ 34.277344, 6.839170 ], [ 34.101562, 6.839170 ], [ 34.101562, 7.013668 ], [ 33.925781, 7.013668 ], [ 33.925781, 7.362467 ], [ 33.750000, 7.362467 ], [ 33.750000, 7.536764 ], [ 33.398438, 7.536764 ], [ 33.398438, 7.710992 ], [ 33.046875, 7.710992 ], [ 33.046875, 8.233237 ], [ 33.222656, 8.233237 ], [ 33.222656, 8.407168 ], [ 33.750000, 8.407168 ], [ 33.750000, 8.581021 ], [ 33.925781, 8.581021 ], [ 33.925781, 10.141932 ], [ 34.101562, 10.141932 ], [ 34.101562, 10.660608 ], [ 34.277344, 10.660608 ], [ 34.277344, 10.833306 ], [ 34.628906, 10.833306 ], [ 34.628906, 11.178402 ], [ 34.804688, 11.178402 ], [ 34.804688, 11.523088 ], [ 34.980469, 11.523088 ], [ 34.980469, 11.867351 ], [ 35.156250, 11.867351 ], [ 35.156250, 12.211180 ], [ 35.332031, 12.211180 ], [ 35.332031, 12.382928 ], [ 35.683594, 12.382928 ], [ 35.683594, 12.554564 ], [ 35.859375, 12.554564 ], [ 35.859375, 12.897489 ], [ 36.035156, 12.897489 ], [ 36.035156, 13.239945 ], [ 36.210938, 13.239945 ], [ 36.210938, 13.923404 ], [ 36.386719, 13.923404 ], [ 36.386719, 14.434680 ], [ 36.738281, 14.434680 ], [ 36.738281, 14.264383 ], [ 37.441406, 14.264383 ], [ 37.441406, 14.434680 ], [ 37.617188, 14.434680 ], [ 37.617188, 14.774883 ], [ 37.792969, 14.774883 ], [ 37.792969, 14.944785 ], [ 37.968750, 14.944785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.044438 ], [ 45.703125, 40.044438 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 40.178873 ], [ 43.769531, 40.178873 ], [ 43.769531, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 41.376809 ], [ 44.824219, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.313043 ], [ 45.878906, 40.313043 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.472656, 39.774769 ], [ 44.472656, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 40.044438 ], [ 43.945312, 40.044438 ], [ 43.945312, 40.178873 ], [ 43.593750, 40.178873 ], [ 43.593750, 40.979898 ], [ 43.417969, 40.979898 ], [ 43.417969, 41.112469 ], [ 43.945312, 41.112469 ], [ 43.945312, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.376809 ], [ 44.824219, 41.376809 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.774769 ], [ 45.000000, 39.774769 ] ] ], [ [ [ 45.878906, 40.044438 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.044438 ], [ 45.878906, 40.044438 ] ] ], [ [ [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.822591 ], [ 45.527344, 38.822591 ], [ 45.527344, 38.959409 ], [ 45.175781, 38.959409 ], [ 45.175781, 39.095963 ], [ 45.000000, 39.095963 ], [ 45.000000, 39.232253 ], [ 44.824219, 39.232253 ], [ 44.824219, 39.504041 ], [ 44.648438, 39.504041 ], [ 44.648438, 39.774769 ], [ 45.000000, 39.774769 ] ] ], [ [ [ 45.878906, 40.178873 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ] ] ], [ [ [ 45.527344, 41.244772 ], [ 45.878906, 41.244772 ], [ 45.878906, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.847060 ], [ 45.351562, 40.979898 ], [ 45.175781, 40.979898 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 44.824219, 41.244772 ], [ 44.824219, 41.376809 ], [ 45.527344, 41.376809 ], [ 45.527344, 41.244772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.741612 ], [ 45.878906, 33.284620 ], [ 45.703125, 33.284620 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.161818 ], [ 45.527344, 34.161818 ], [ 45.527344, 34.452218 ], [ 45.703125, 34.452218 ], [ 45.703125, 34.741612 ], [ 45.878906, 34.741612 ] ] ], [ [ [ 44.824219, 39.504041 ], [ 45.000000, 39.504041 ], [ 45.000000, 39.232253 ], [ 45.175781, 39.232253 ], [ 45.175781, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 45.878906, 38.822591 ], [ 45.878906, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.879621 ], [ 44.824219, 36.879621 ], [ 44.824219, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 38.134557 ], [ 44.472656, 38.134557 ], [ 44.472656, 38.548165 ], [ 44.296875, 38.548165 ], [ 44.296875, 39.095963 ], [ 44.121094, 39.095963 ], [ 44.121094, 39.368279 ], [ 44.296875, 39.368279 ], [ 44.296875, 39.504041 ], [ 44.648438, 39.504041 ], [ 44.648438, 39.639538 ], [ 44.824219, 39.639538 ], [ 44.824219, 39.504041 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.885931 ], [ 45.878906, 33.431441 ], [ 45.703125, 33.431441 ], [ 45.703125, 33.724340 ], [ 45.527344, 33.724340 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.885931 ], [ 45.878906, 34.885931 ] ] ], [ [ [ 44.648438, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 38.959409 ], [ 45.527344, 38.959409 ], [ 45.527344, 38.822591 ], [ 45.878906, 38.822591 ], [ 45.878906, 35.889050 ], [ 45.527344, 35.889050 ], [ 45.527344, 36.031332 ], [ 45.351562, 36.031332 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.456636 ], [ 45.000000, 36.456636 ], [ 45.000000, 36.738884 ], [ 44.824219, 36.738884 ], [ 44.824219, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.300275 ], [ 44.472656, 37.300275 ], [ 44.472656, 37.579413 ], [ 44.296875, 37.579413 ], [ 44.296875, 37.857507 ], [ 44.121094, 37.857507 ], [ 44.121094, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 38.685510 ], [ 44.121094, 38.685510 ], [ 44.121094, 39.232253 ], [ 43.945312, 39.232253 ], [ 43.945312, 39.504041 ], [ 44.296875, 39.504041 ], [ 44.296875, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.504041 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.726562, 32.101190 ], [ 39.726562, 31.952162 ], [ 40.429688, 31.952162 ], [ 40.429688, 31.802893 ], [ 40.781250, 31.802893 ], [ 40.781250, 31.653381 ], [ 40.957031, 31.653381 ], [ 40.957031, 31.503629 ], [ 41.308594, 31.503629 ], [ 41.308594, 31.353637 ], [ 41.660156, 31.353637 ], [ 41.660156, 31.203405 ], [ 41.835938, 31.203405 ], [ 41.835938, 31.052934 ], [ 42.011719, 31.052934 ], [ 42.011719, 30.902225 ], [ 42.363281, 30.902225 ], [ 42.363281, 30.751278 ], [ 42.539062, 30.751278 ], [ 42.539062, 30.600094 ], [ 42.714844, 30.600094 ], [ 42.714844, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.297018 ], [ 43.066406, 30.297018 ], [ 43.066406, 30.145127 ], [ 43.417969, 30.145127 ], [ 43.417969, 29.993002 ], [ 43.593750, 29.993002 ], [ 43.593750, 29.840644 ], [ 43.769531, 29.840644 ], [ 43.769531, 29.688053 ], [ 43.945312, 29.688053 ], [ 43.945312, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.175781, 29.228890 ], [ 45.175781, 29.075375 ], [ 45.878906, 29.075375 ], [ 45.878906, 17.308688 ], [ 45.175781, 17.308688 ], [ 45.175781, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 17.308688 ], [ 43.593750, 17.308688 ], [ 43.593750, 17.476432 ], [ 43.242188, 17.476432 ], [ 43.242188, 17.140790 ], [ 43.066406, 17.140790 ], [ 43.066406, 16.804541 ], [ 43.242188, 16.804541 ], [ 43.242188, 16.467695 ], [ 42.890625, 16.467695 ], [ 42.890625, 16.299051 ], [ 42.714844, 16.299051 ], [ 42.714844, 16.804541 ], [ 42.539062, 16.804541 ], [ 42.539062, 16.972741 ], [ 42.363281, 16.972741 ], [ 42.363281, 17.308688 ], [ 42.187500, 17.308688 ], [ 42.187500, 17.476432 ], [ 42.011719, 17.476432 ], [ 42.011719, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.811456 ], [ 41.660156, 17.811456 ], [ 41.660156, 18.145852 ], [ 41.484375, 18.145852 ], [ 41.484375, 18.479609 ], [ 41.308594, 18.479609 ], [ 41.308594, 18.812718 ], [ 41.132812, 18.812718 ], [ 41.132812, 19.145168 ], [ 40.957031, 19.145168 ], [ 40.957031, 19.476950 ], [ 40.781250, 19.476950 ], [ 40.781250, 19.642588 ], [ 40.605469, 19.642588 ], [ 40.605469, 19.808054 ], [ 40.429688, 19.808054 ], [ 40.429688, 19.973349 ], [ 40.253906, 19.973349 ], [ 40.253906, 20.138470 ], [ 39.902344, 20.138470 ], [ 39.902344, 20.303418 ], [ 39.726562, 20.303418 ], [ 39.726562, 20.468189 ], [ 39.550781, 20.468189 ], [ 39.550781, 20.797201 ], [ 39.375000, 20.797201 ], [ 39.375000, 21.125498 ], [ 39.199219, 21.125498 ], [ 39.199219, 21.616579 ], [ 39.023438, 21.616579 ], [ 39.023438, 22.755921 ], [ 38.847656, 22.755921 ], [ 38.847656, 23.079732 ], [ 38.671875, 23.079732 ], [ 38.671875, 23.402765 ], [ 38.496094, 23.402765 ], [ 38.496094, 23.725012 ], [ 38.320312, 23.725012 ], [ 38.320312, 23.885838 ], [ 37.968750, 23.885838 ], [ 37.968750, 24.046464 ], [ 37.617188, 24.046464 ], [ 37.617188, 24.206890 ], [ 37.441406, 24.206890 ], [ 37.441406, 24.367114 ], [ 37.265625, 24.367114 ], [ 37.265625, 24.686952 ], [ 37.089844, 24.686952 ], [ 37.089844, 24.846565 ], [ 37.265625, 24.846565 ], [ 37.265625, 25.165173 ], [ 37.089844, 25.165173 ], [ 37.089844, 25.482951 ], [ 36.914062, 25.482951 ], [ 36.914062, 25.641526 ], [ 36.562500, 25.641526 ], [ 36.562500, 25.958045 ], [ 36.386719, 25.958045 ], [ 36.386719, 26.273714 ], [ 36.210938, 26.273714 ], [ 36.210938, 26.588527 ], [ 36.035156, 26.588527 ], [ 36.035156, 26.902477 ], [ 35.859375, 26.902477 ], [ 35.859375, 27.215556 ], [ 35.683594, 27.215556 ], [ 35.683594, 27.371767 ], [ 35.507812, 27.371767 ], [ 35.507812, 27.683528 ], [ 35.332031, 27.683528 ], [ 35.332031, 27.839076 ], [ 35.156250, 27.839076 ], [ 35.156250, 27.994401 ], [ 34.628906, 27.994401 ], [ 34.628906, 28.304381 ], [ 34.804688, 28.304381 ], [ 34.804688, 29.075375 ], [ 34.980469, 29.075375 ], [ 34.980469, 29.382175 ], [ 35.332031, 29.382175 ], [ 35.332031, 29.228890 ], [ 36.210938, 29.228890 ], [ 36.210938, 29.382175 ], [ 36.562500, 29.382175 ], [ 36.562500, 29.688053 ], [ 36.738281, 29.688053 ], [ 36.738281, 29.840644 ], [ 37.265625, 29.840644 ], [ 37.265625, 29.993002 ], [ 37.441406, 29.993002 ], [ 37.441406, 30.145127 ], [ 37.617188, 30.145127 ], [ 37.617188, 30.297018 ], [ 37.968750, 30.297018 ], [ 37.968750, 30.448674 ], [ 37.792969, 30.448674 ], [ 37.792969, 30.751278 ], [ 37.617188, 30.751278 ], [ 37.617188, 30.902225 ], [ 37.441406, 30.902225 ], [ 37.441406, 31.052934 ], [ 37.265625, 31.052934 ], [ 37.265625, 31.353637 ], [ 37.089844, 31.353637 ], [ 37.089844, 31.503629 ], [ 37.441406, 31.503629 ], [ 37.441406, 31.653381 ], [ 38.144531, 31.653381 ], [ 38.144531, 31.802893 ], [ 38.847656, 31.802893 ], [ 38.847656, 31.952162 ], [ 39.199219, 31.952162 ], [ 39.199219, 32.101190 ], [ 39.726562, 32.101190 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.249974 ], [ 39.199219, 32.101190 ], [ 39.902344, 32.101190 ], [ 39.902344, 31.952162 ], [ 40.253906, 31.952162 ], [ 40.253906, 31.802893 ], [ 40.605469, 31.802893 ], [ 40.605469, 31.653381 ], [ 40.957031, 31.653381 ], [ 40.957031, 31.503629 ], [ 41.308594, 31.503629 ], [ 41.308594, 31.353637 ], [ 41.660156, 31.353637 ], [ 41.660156, 31.203405 ], [ 41.835938, 31.203405 ], [ 41.835938, 31.052934 ], [ 42.011719, 31.052934 ], [ 42.011719, 30.902225 ], [ 42.363281, 30.902225 ], [ 42.363281, 30.751278 ], [ 42.539062, 30.751278 ], [ 42.539062, 30.600094 ], [ 42.714844, 30.600094 ], [ 42.714844, 30.448674 ], [ 42.890625, 30.448674 ], [ 42.890625, 30.297018 ], [ 43.066406, 30.297018 ], [ 43.066406, 30.145127 ], [ 43.417969, 30.145127 ], [ 43.417969, 29.993002 ], [ 43.593750, 29.993002 ], [ 43.593750, 29.840644 ], [ 43.769531, 29.840644 ], [ 43.769531, 29.688053 ], [ 43.945312, 29.688053 ], [ 43.945312, 29.535230 ], [ 44.296875, 29.535230 ], [ 44.296875, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.878906, 29.228890 ], [ 45.878906, 17.308688 ], [ 45.527344, 17.308688 ], [ 45.527344, 17.476432 ], [ 43.417969, 17.476432 ], [ 43.417969, 17.644022 ], [ 43.242188, 17.644022 ], [ 43.242188, 17.308688 ], [ 43.066406, 17.308688 ], [ 43.066406, 16.636192 ], [ 42.890625, 16.636192 ], [ 42.890625, 16.467695 ], [ 42.714844, 16.467695 ], [ 42.714844, 16.636192 ], [ 42.539062, 16.636192 ], [ 42.539062, 16.804541 ], [ 42.363281, 16.804541 ], [ 42.363281, 16.972741 ], [ 42.187500, 16.972741 ], [ 42.187500, 17.476432 ], [ 42.011719, 17.476432 ], [ 42.011719, 17.644022 ], [ 41.835938, 17.644022 ], [ 41.835938, 17.811456 ], [ 41.660156, 17.811456 ], [ 41.660156, 17.978733 ], [ 41.484375, 17.978733 ], [ 41.484375, 18.312811 ], [ 41.308594, 18.312811 ], [ 41.308594, 18.646245 ], [ 41.132812, 18.646245 ], [ 41.132812, 18.979026 ], [ 40.957031, 18.979026 ], [ 40.957031, 19.311143 ], [ 40.781250, 19.311143 ], [ 40.781250, 19.642588 ], [ 40.605469, 19.642588 ], [ 40.605469, 19.808054 ], [ 40.429688, 19.808054 ], [ 40.429688, 19.973349 ], [ 40.253906, 19.973349 ], [ 40.253906, 20.138470 ], [ 40.078125, 20.138470 ], [ 40.078125, 20.303418 ], [ 39.726562, 20.303418 ], [ 39.726562, 20.468189 ], [ 39.550781, 20.468189 ], [ 39.550781, 20.632784 ], [ 39.375000, 20.632784 ], [ 39.375000, 20.961440 ], [ 39.199219, 20.961440 ], [ 39.199219, 21.125498 ], [ 39.023438, 21.125498 ], [ 39.023438, 22.593726 ], [ 38.847656, 22.593726 ], [ 38.847656, 22.917923 ], [ 38.671875, 22.917923 ], [ 38.671875, 23.241346 ], [ 38.496094, 23.241346 ], [ 38.496094, 23.563987 ], [ 38.320312, 23.563987 ], [ 38.320312, 23.725012 ], [ 38.144531, 23.725012 ], [ 38.144531, 24.046464 ], [ 37.968750, 24.046464 ], [ 37.968750, 24.206890 ], [ 37.617188, 24.206890 ], [ 37.617188, 24.367114 ], [ 37.441406, 24.367114 ], [ 37.441406, 24.527135 ], [ 37.265625, 24.527135 ], [ 37.265625, 24.846565 ], [ 37.089844, 24.846565 ], [ 37.089844, 25.324167 ], [ 36.914062, 25.324167 ], [ 36.914062, 25.641526 ], [ 36.738281, 25.641526 ], [ 36.738281, 25.799891 ], [ 36.562500, 25.799891 ], [ 36.562500, 26.115986 ], [ 36.386719, 26.115986 ], [ 36.386719, 26.431228 ], [ 36.210938, 26.431228 ], [ 36.210938, 26.588527 ], [ 36.035156, 26.588527 ], [ 36.035156, 26.902477 ], [ 35.859375, 26.902477 ], [ 35.859375, 27.059126 ], [ 35.683594, 27.059126 ], [ 35.683594, 27.371767 ], [ 35.507812, 27.371767 ], [ 35.507812, 27.527758 ], [ 35.332031, 27.527758 ], [ 35.332031, 27.839076 ], [ 35.156250, 27.839076 ], [ 35.156250, 27.994401 ], [ 34.980469, 27.994401 ], [ 34.980469, 28.149503 ], [ 34.628906, 28.149503 ], [ 34.628906, 28.767659 ], [ 34.804688, 28.767659 ], [ 34.804688, 29.382175 ], [ 35.332031, 29.382175 ], [ 35.332031, 29.228890 ], [ 36.210938, 29.228890 ], [ 36.210938, 29.382175 ], [ 36.386719, 29.382175 ], [ 36.386719, 29.535230 ], [ 36.562500, 29.535230 ], [ 36.562500, 29.840644 ], [ 36.738281, 29.840644 ], [ 36.738281, 29.993002 ], [ 37.265625, 29.993002 ], [ 37.265625, 30.145127 ], [ 37.441406, 30.145127 ], [ 37.441406, 30.297018 ], [ 37.617188, 30.297018 ], [ 37.617188, 30.448674 ], [ 37.968750, 30.448674 ], [ 37.968750, 30.600094 ], [ 37.792969, 30.600094 ], [ 37.792969, 30.751278 ], [ 37.617188, 30.751278 ], [ 37.617188, 30.902225 ], [ 37.441406, 30.902225 ], [ 37.441406, 31.203405 ], [ 37.265625, 31.203405 ], [ 37.265625, 31.353637 ], [ 37.089844, 31.353637 ], [ 37.089844, 31.503629 ], [ 36.914062, 31.503629 ], [ 36.914062, 31.653381 ], [ 37.265625, 31.653381 ], [ 37.265625, 31.802893 ], [ 37.968750, 31.802893 ], [ 37.968750, 31.952162 ], [ 38.671875, 31.952162 ], [ 38.671875, 32.101190 ], [ 39.023438, 32.101190 ], [ 39.023438, 32.249974 ], [ 39.199219, 32.249974 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.175781, 17.476432 ], [ 45.175781, 17.308688 ], [ 45.878906, 17.308688 ], [ 45.878906, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 13.068777 ], [ 45.351562, 13.068777 ], [ 45.351562, 12.897489 ], [ 45.175781, 12.897489 ], [ 45.175781, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.472656, 12.554564 ], [ 43.417969, 12.554564 ], [ 43.417969, 12.897489 ], [ 43.242188, 12.897489 ], [ 43.242188, 13.923404 ], [ 43.066406, 13.923404 ], [ 43.066406, 14.434680 ], [ 42.890625, 14.434680 ], [ 42.890625, 14.774883 ], [ 42.714844, 14.774883 ], [ 42.714844, 15.114553 ], [ 42.539062, 15.114553 ], [ 42.539062, 15.284185 ], [ 42.890625, 15.284185 ], [ 42.890625, 15.453680 ], [ 42.714844, 15.453680 ], [ 42.714844, 15.792254 ], [ 42.890625, 15.792254 ], [ 42.890625, 16.130262 ], [ 42.714844, 16.130262 ], [ 42.714844, 16.299051 ], [ 42.890625, 16.299051 ], [ 42.890625, 16.467695 ], [ 43.242188, 16.467695 ], [ 43.242188, 16.804541 ], [ 43.066406, 16.804541 ], [ 43.066406, 17.140790 ], [ 43.242188, 17.140790 ], [ 43.242188, 17.476432 ], [ 43.593750, 17.476432 ], [ 43.593750, 17.308688 ], [ 44.121094, 17.308688 ], [ 44.121094, 17.476432 ], [ 45.175781, 17.476432 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 17.644022 ], [ 43.417969, 17.476432 ], [ 45.527344, 17.476432 ], [ 45.527344, 17.308688 ], [ 45.878906, 17.308688 ], [ 45.878906, 13.410994 ], [ 45.527344, 13.410994 ], [ 45.527344, 13.239945 ], [ 45.351562, 13.239945 ], [ 45.351562, 13.068777 ], [ 45.000000, 13.068777 ], [ 45.000000, 12.897489 ], [ 44.824219, 12.897489 ], [ 44.824219, 12.726084 ], [ 43.242188, 12.726084 ], [ 43.242188, 13.068777 ], [ 43.066406, 13.068777 ], [ 43.066406, 13.581921 ], [ 43.242188, 13.581921 ], [ 43.242188, 13.923404 ], [ 43.066406, 13.923404 ], [ 43.066406, 14.434680 ], [ 42.890625, 14.434680 ], [ 42.890625, 14.944785 ], [ 42.714844, 14.944785 ], [ 42.714844, 15.114553 ], [ 42.539062, 15.114553 ], [ 42.539062, 15.284185 ], [ 42.714844, 15.284185 ], [ 42.714844, 15.453680 ], [ 42.539062, 15.453680 ], [ 42.539062, 15.792254 ], [ 42.714844, 15.792254 ], [ 42.714844, 16.467695 ], [ 42.890625, 16.467695 ], [ 42.890625, 16.636192 ], [ 43.066406, 16.636192 ], [ 43.066406, 17.308688 ], [ 43.242188, 17.308688 ], [ 43.242188, 17.644022 ], [ 43.417969, 17.644022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.417969, 11.005904 ], [ 43.593750, 11.005904 ], [ 43.593750, 10.660608 ], [ 43.945312, 10.660608 ], [ 43.945312, 10.487812 ], [ 45.175781, 10.487812 ], [ 45.175781, 10.660608 ], [ 45.878906, 10.660608 ], [ 45.878906, 8.407168 ], [ 45.527344, 8.407168 ], [ 45.527344, 8.581021 ], [ 45.000000, 8.581021 ], [ 45.000000, 8.754795 ], [ 44.296875, 8.754795 ], [ 44.296875, 8.928487 ], [ 43.769531, 8.928487 ], [ 43.769531, 9.102097 ], [ 43.417969, 9.102097 ], [ 43.417969, 9.449062 ], [ 43.242188, 9.449062 ], [ 43.242188, 9.622414 ], [ 43.066406, 9.622414 ], [ 43.066406, 9.795678 ], [ 42.890625, 9.795678 ], [ 42.890625, 9.968851 ], [ 42.714844, 9.968851 ], [ 42.714844, 10.314919 ], [ 42.539062, 10.314919 ], [ 42.539062, 10.660608 ], [ 42.714844, 10.660608 ], [ 42.714844, 11.005904 ], [ 42.890625, 11.005904 ], [ 42.890625, 11.350797 ], [ 43.417969, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.417969, 11.350797 ], [ 43.417969, 11.178402 ], [ 43.593750, 11.178402 ], [ 43.593750, 10.833306 ], [ 43.769531, 10.833306 ], [ 43.769531, 10.487812 ], [ 44.824219, 10.487812 ], [ 44.824219, 10.660608 ], [ 45.351562, 10.660608 ], [ 45.351562, 10.833306 ], [ 45.878906, 10.833306 ], [ 45.878906, 8.407168 ], [ 45.527344, 8.407168 ], [ 45.527344, 8.581021 ], [ 45.175781, 8.581021 ], [ 45.175781, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 8.928487 ], [ 44.121094, 8.928487 ], [ 44.121094, 9.102097 ], [ 43.769531, 9.102097 ], [ 43.769531, 9.275622 ], [ 43.417969, 9.275622 ], [ 43.417969, 9.449062 ], [ 43.242188, 9.449062 ], [ 43.242188, 9.622414 ], [ 43.066406, 9.622414 ], [ 43.066406, 9.968851 ], [ 42.890625, 9.968851 ], [ 42.890625, 10.141932 ], [ 42.714844, 10.141932 ], [ 42.714844, 10.487812 ], [ 42.539062, 10.487812 ], [ 42.539062, 10.833306 ], [ 42.714844, 10.833306 ], [ 42.714844, 11.005904 ], [ 42.890625, 11.005904 ], [ 42.890625, 11.350797 ], [ 43.417969, 11.350797 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.790897 ], [ 45.878906, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.351562, 1.933227 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.824219, 1.581830 ], [ 44.824219, 1.406109 ], [ 44.648438, 1.406109 ], [ 44.648438, 1.230374 ], [ 44.296875, 1.230374 ], [ 44.296875, 1.054628 ], [ 44.121094, 1.054628 ], [ 44.121094, 0.878872 ], [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.593750, 0.703107 ], [ 43.593750, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, 2.986927 ], [ 41.308594, 2.986927 ], [ 41.308594, 3.337954 ], [ 41.484375, 3.337954 ], [ 41.484375, 3.513421 ], [ 41.660156, 3.513421 ], [ 41.660156, 3.688855 ], [ 41.835938, 3.688855 ], [ 41.835938, 3.864255 ], [ 42.011719, 3.864255 ], [ 42.011719, 4.039618 ], [ 42.187500, 4.039618 ], [ 42.187500, 4.214943 ], [ 42.890625, 4.214943 ], [ 42.890625, 4.390229 ], [ 43.066406, 4.390229 ], [ 43.066406, 4.565474 ], [ 43.417969, 4.565474 ], [ 43.417969, 4.740675 ], [ 43.593750, 4.740675 ], [ 43.593750, 4.915833 ], [ 45.175781, 4.915833 ], [ 45.175781, 5.090944 ], [ 45.351562, 5.090944 ], [ 45.351562, 5.441022 ], [ 45.527344, 5.441022 ], [ 45.527344, 5.615986 ], [ 45.703125, 5.615986 ], [ 45.703125, 5.790897 ], [ 45.878906, 5.790897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.965754 ], [ 45.878906, 2.284551 ], [ 45.703125, 2.284551 ], [ 45.703125, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.175781, 1.933227 ], [ 45.175781, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.648438, 1.581830 ], [ 44.648438, 1.406109 ], [ 44.472656, 1.406109 ], [ 44.472656, 1.230374 ], [ 44.121094, 1.230374 ], [ 44.121094, 1.054628 ], [ 43.945312, 1.054628 ], [ 43.945312, 0.878872 ], [ 43.769531, 0.878872 ], [ 43.769531, 0.703107 ], [ 43.417969, 0.703107 ], [ 43.417969, 0.527336 ], [ 43.242188, 0.527336 ], [ 43.242188, 0.351560 ], [ 43.066406, 0.351560 ], [ 43.066406, 0.175781 ], [ 42.890625, 0.175781 ], [ 42.890625, 0.000000 ], [ 42.714844, 0.000000 ], [ 42.714844, -0.175781 ], [ 42.539062, -0.175781 ], [ 42.539062, -0.527336 ], [ 42.363281, -0.527336 ], [ 42.363281, -0.703107 ], [ 42.187500, -0.703107 ], [ 42.187500, -0.878872 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 41.132812, 2.811371 ], [ 41.132812, 3.162456 ], [ 41.308594, 3.162456 ], [ 41.308594, 3.337954 ], [ 41.484375, 3.337954 ], [ 41.484375, 3.513421 ], [ 41.660156, 3.513421 ], [ 41.660156, 3.864255 ], [ 41.835938, 3.864255 ], [ 41.835938, 4.214943 ], [ 42.011719, 4.214943 ], [ 42.011719, 4.390229 ], [ 42.890625, 4.390229 ], [ 42.890625, 4.565474 ], [ 43.066406, 4.565474 ], [ 43.066406, 4.740675 ], [ 43.417969, 4.740675 ], [ 43.417969, 4.915833 ], [ 43.593750, 4.915833 ], [ 43.593750, 5.090944 ], [ 45.000000, 5.090944 ], [ 45.000000, 5.266008 ], [ 45.175781, 5.266008 ], [ 45.175781, 5.441022 ], [ 45.351562, 5.441022 ], [ 45.351562, 5.615986 ], [ 45.527344, 5.615986 ], [ 45.527344, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.965754 ], [ 45.878906, 5.965754 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.007812, 2.284551 ], [ 13.007812, 1.581830 ], [ 13.183594, 1.581830 ], [ 13.183594, 1.230374 ], [ 13.886719, 1.230374 ], [ 13.886719, 1.406109 ], [ 14.062500, 1.406109 ], [ 14.062500, 1.230374 ], [ 14.238281, 1.230374 ], [ 14.238281, 0.878872 ], [ 14.062500, 0.878872 ], [ 14.062500, 0.175781 ], [ 13.886719, 0.175781 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -0.703107 ], [ 14.414062, -0.703107 ], [ 14.414062, -0.878872 ], [ 8.789062, -0.878872 ], [ 8.789062, -0.703107 ], [ 8.964844, -0.703107 ], [ 8.964844, -0.351560 ], [ 9.140625, -0.351560 ], [ 9.140625, 0.000000 ], [ 9.316406, 0.000000 ], [ 9.316406, 0.703107 ], [ 9.492188, 0.703107 ], [ 9.492188, 1.054628 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.284551 ], [ 11.953125, 2.284551 ], [ 11.953125, 2.108899 ], [ 12.832031, 2.108899 ], [ 12.832031, 2.284551 ], [ 13.007812, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.832031, 2.460181 ], [ 12.832031, 2.284551 ], [ 13.007812, 2.284551 ], [ 13.007812, 2.108899 ], [ 12.832031, 2.108899 ], [ 12.832031, 1.757537 ], [ 13.007812, 1.757537 ], [ 13.007812, 1.406109 ], [ 13.886719, 1.406109 ], [ 13.886719, 1.230374 ], [ 14.238281, 1.230374 ], [ 14.238281, 1.054628 ], [ 14.062500, 1.054628 ], [ 14.062500, 0.703107 ], [ 13.886719, 0.703107 ], [ 13.886719, 0.351560 ], [ 13.710938, 0.351560 ], [ 13.710938, 0.000000 ], [ 13.886719, 0.000000 ], [ 13.886719, -0.175781 ], [ 14.062500, -0.175781 ], [ 14.062500, -0.527336 ], [ 14.238281, -0.527336 ], [ 14.238281, -0.878872 ], [ 8.789062, -0.878872 ], [ 8.789062, -0.527336 ], [ 8.964844, -0.527336 ], [ 8.964844, 0.000000 ], [ 9.140625, 0.000000 ], [ 9.140625, 0.527336 ], [ 9.316406, 0.527336 ], [ 9.316406, 0.878872 ], [ 9.492188, 0.878872 ], [ 9.492188, 1.054628 ], [ 9.667969, 1.054628 ], [ 9.667969, 1.230374 ], [ 11.250000, 1.230374 ], [ 11.250000, 2.284551 ], [ 11.601562, 2.284551 ], [ 11.601562, 2.460181 ], [ 11.777344, 2.460181 ], [ 11.777344, 2.284551 ], [ 12.656250, 2.284551 ], [ 12.656250, 2.460181 ], [ 12.832031, 2.460181 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 3.688855 ], [ 17.226562, 3.513421 ], [ 18.457031, 3.513421 ], [ 18.457031, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 2.460181 ], [ 18.105469, 2.460181 ], [ 18.105469, 1.933227 ], [ 17.929688, 1.933227 ], [ 17.929688, 1.230374 ], [ 17.753906, 1.230374 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.878872 ], [ 14.414062, -0.878872 ], [ 14.414062, -0.703107 ], [ 14.238281, -0.703107 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.175781 ], [ 14.062500, 0.175781 ], [ 14.062500, 0.878872 ], [ 14.238281, 0.878872 ], [ 14.238281, 1.230374 ], [ 14.062500, 1.230374 ], [ 14.062500, 1.406109 ], [ 13.886719, 1.406109 ], [ 13.886719, 1.230374 ], [ 13.183594, 1.230374 ], [ 13.183594, 1.581830 ], [ 13.007812, 1.581830 ], [ 13.007812, 2.284551 ], [ 14.414062, 2.284551 ], [ 14.414062, 2.108899 ], [ 14.765625, 2.108899 ], [ 14.765625, 1.933227 ], [ 15.468750, 1.933227 ], [ 15.468750, 1.757537 ], [ 15.996094, 1.757537 ], [ 15.996094, 2.284551 ], [ 16.171875, 2.284551 ], [ 16.171875, 2.635789 ], [ 16.347656, 2.635789 ], [ 16.347656, 2.986927 ], [ 16.523438, 2.986927 ], [ 16.523438, 3.162456 ], [ 16.699219, 3.162456 ], [ 16.699219, 3.337954 ], [ 16.875000, 3.337954 ], [ 16.875000, 3.513421 ], [ 17.050781, 3.513421 ], [ 17.050781, 3.688855 ], [ 17.226562, 3.688855 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.226562, 3.864255 ], [ 17.226562, 3.688855 ], [ 17.929688, 3.688855 ], [ 17.929688, 3.513421 ], [ 18.281250, 3.513421 ], [ 18.281250, 2.811371 ], [ 18.105469, 2.811371 ], [ 18.105469, 2.460181 ], [ 17.929688, 2.460181 ], [ 17.929688, 2.108899 ], [ 17.753906, 2.108899 ], [ 17.753906, 0.175781 ], [ 17.578125, 0.175781 ], [ 17.578125, -0.527336 ], [ 17.402344, -0.527336 ], [ 17.402344, -0.878872 ], [ 14.238281, -0.878872 ], [ 14.238281, -0.527336 ], [ 14.062500, -0.527336 ], [ 14.062500, -0.175781 ], [ 13.886719, -0.175781 ], [ 13.886719, 0.000000 ], [ 13.710938, 0.000000 ], [ 13.710938, 0.351560 ], [ 13.886719, 0.351560 ], [ 13.886719, 0.703107 ], [ 14.062500, 0.703107 ], [ 14.062500, 1.054628 ], [ 14.238281, 1.054628 ], [ 14.238281, 1.230374 ], [ 13.886719, 1.230374 ], [ 13.886719, 1.406109 ], [ 13.007812, 1.406109 ], [ 13.007812, 1.757537 ], [ 12.832031, 1.757537 ], [ 12.832031, 2.108899 ], [ 13.007812, 2.108899 ], [ 13.007812, 2.284551 ], [ 14.589844, 2.284551 ], [ 14.589844, 2.108899 ], [ 15.117188, 2.108899 ], [ 15.117188, 1.933227 ], [ 15.468750, 1.933227 ], [ 15.468750, 1.757537 ], [ 15.820312, 1.757537 ], [ 15.820312, 1.933227 ], [ 15.996094, 1.933227 ], [ 15.996094, 2.460181 ], [ 16.171875, 2.460181 ], [ 16.171875, 2.811371 ], [ 16.347656, 2.811371 ], [ 16.347656, 3.162456 ], [ 16.523438, 3.162456 ], [ 16.523438, 3.337954 ], [ 16.699219, 3.337954 ], [ 16.699219, 3.513421 ], [ 16.875000, 3.513421 ], [ 16.875000, 3.688855 ], [ 17.050781, 3.688855 ], [ 17.050781, 3.864255 ], [ 17.226562, 3.864255 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.839844, 5.266008 ], [ 25.839844, 5.090944 ], [ 27.597656, 5.090944 ], [ 27.597656, 4.740675 ], [ 27.773438, 4.740675 ], [ 27.773438, 4.390229 ], [ 28.125000, 4.390229 ], [ 28.125000, 4.214943 ], [ 28.652344, 4.214943 ], [ 28.652344, 4.390229 ], [ 29.531250, 4.390229 ], [ 29.531250, 4.565474 ], [ 29.707031, 4.565474 ], [ 29.707031, 4.390229 ], [ 29.882812, 4.390229 ], [ 29.882812, 4.039618 ], [ 30.058594, 4.039618 ], [ 30.058594, 3.864255 ], [ 30.410156, 3.864255 ], [ 30.410156, 3.688855 ], [ 30.585938, 3.688855 ], [ 30.585938, 3.513421 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.284551 ], [ 31.113281, 2.284551 ], [ 31.113281, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.581830 ], [ 30.410156, 1.581830 ], [ 30.410156, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.054628 ], [ 30.058594, 1.054628 ], [ 30.058594, 0.703107 ], [ 29.882812, 0.703107 ], [ 29.882812, -0.351560 ], [ 29.707031, -0.351560 ], [ 29.707031, -0.527336 ], [ 29.531250, -0.527336 ], [ 29.531250, -0.878872 ], [ 17.578125, -0.878872 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 1.230374 ], [ 17.929688, 1.230374 ], [ 17.929688, 1.933227 ], [ 18.105469, 1.933227 ], [ 18.105469, 2.460181 ], [ 18.281250, 2.460181 ], [ 18.281250, 2.811371 ], [ 18.457031, 2.811371 ], [ 18.457031, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 4.390229 ], [ 18.808594, 4.390229 ], [ 18.808594, 4.565474 ], [ 18.984375, 4.565474 ], [ 18.984375, 4.740675 ], [ 19.160156, 4.740675 ], [ 19.160156, 4.915833 ], [ 19.863281, 4.915833 ], [ 19.863281, 4.740675 ], [ 20.214844, 4.740675 ], [ 20.214844, 4.565474 ], [ 20.566406, 4.565474 ], [ 20.566406, 4.390229 ], [ 21.093750, 4.390229 ], [ 21.093750, 4.214943 ], [ 21.796875, 4.214943 ], [ 21.796875, 4.039618 ], [ 22.500000, 4.039618 ], [ 22.500000, 4.390229 ], [ 22.675781, 4.390229 ], [ 22.675781, 4.565474 ], [ 22.851562, 4.565474 ], [ 22.851562, 4.740675 ], [ 23.027344, 4.740675 ], [ 23.027344, 4.565474 ], [ 23.730469, 4.565474 ], [ 23.730469, 4.740675 ], [ 24.082031, 4.740675 ], [ 24.082031, 4.915833 ], [ 25.312500, 4.915833 ], [ 25.312500, 5.090944 ], [ 25.664062, 5.090944 ], [ 25.664062, 5.266008 ], [ 25.839844, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.246094, 5.266008 ], [ 27.246094, 5.090944 ], [ 27.421875, 5.090944 ], [ 27.421875, 4.915833 ], [ 27.597656, 4.915833 ], [ 27.597656, 4.740675 ], [ 27.773438, 4.740675 ], [ 27.773438, 4.565474 ], [ 27.949219, 4.565474 ], [ 27.949219, 4.390229 ], [ 29.355469, 4.390229 ], [ 29.355469, 4.565474 ], [ 29.707031, 4.565474 ], [ 29.707031, 4.390229 ], [ 29.882812, 4.390229 ], [ 29.882812, 4.039618 ], [ 30.058594, 4.039618 ], [ 30.058594, 3.864255 ], [ 30.410156, 3.864255 ], [ 30.410156, 3.688855 ], [ 30.585938, 3.688855 ], [ 30.585938, 3.513421 ], [ 30.761719, 3.513421 ], [ 30.761719, 2.284551 ], [ 31.113281, 2.284551 ], [ 31.113281, 2.108899 ], [ 30.937500, 2.108899 ], [ 30.937500, 1.933227 ], [ 30.761719, 1.933227 ], [ 30.761719, 1.757537 ], [ 30.585938, 1.757537 ], [ 30.585938, 1.581830 ], [ 30.410156, 1.581830 ], [ 30.410156, 1.406109 ], [ 30.234375, 1.406109 ], [ 30.234375, 1.230374 ], [ 30.058594, 1.230374 ], [ 30.058594, 1.054628 ], [ 29.882812, 1.054628 ], [ 29.882812, 0.703107 ], [ 29.707031, 0.703107 ], [ 29.707031, -0.351560 ], [ 29.531250, -0.351560 ], [ 29.531250, -0.878872 ], [ 17.402344, -0.878872 ], [ 17.402344, -0.527336 ], [ 17.578125, -0.527336 ], [ 17.578125, 0.175781 ], [ 17.753906, 0.175781 ], [ 17.753906, 2.108899 ], [ 17.929688, 2.108899 ], [ 17.929688, 2.460181 ], [ 18.105469, 2.460181 ], [ 18.105469, 2.811371 ], [ 18.281250, 2.811371 ], [ 18.281250, 3.864255 ], [ 18.457031, 3.864255 ], [ 18.457031, 4.214943 ], [ 18.632812, 4.214943 ], [ 18.632812, 4.565474 ], [ 18.808594, 4.565474 ], [ 18.808594, 4.740675 ], [ 18.984375, 4.740675 ], [ 18.984375, 4.915833 ], [ 19.335938, 4.915833 ], [ 19.335938, 5.090944 ], [ 19.511719, 5.090944 ], [ 19.511719, 4.915833 ], [ 19.863281, 4.915833 ], [ 19.863281, 4.740675 ], [ 20.214844, 4.740675 ], [ 20.214844, 4.565474 ], [ 20.566406, 4.565474 ], [ 20.566406, 4.390229 ], [ 21.621094, 4.390229 ], [ 21.621094, 4.214943 ], [ 21.972656, 4.214943 ], [ 21.972656, 4.039618 ], [ 22.324219, 4.039618 ], [ 22.324219, 4.214943 ], [ 22.500000, 4.214943 ], [ 22.500000, 4.565474 ], [ 22.675781, 4.565474 ], [ 22.675781, 4.740675 ], [ 23.554688, 4.740675 ], [ 23.554688, 4.915833 ], [ 23.906250, 4.915833 ], [ 23.906250, 5.090944 ], [ 24.609375, 5.090944 ], [ 24.609375, 4.915833 ], [ 24.960938, 4.915833 ], [ 24.960938, 5.090944 ], [ 25.136719, 5.090944 ], [ 25.136719, 5.266008 ], [ 27.246094, 5.266008 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 54.572062 ], [ -0.703125, 54.470038 ], [ -0.351562, 54.470038 ], [ -0.351562, 54.265224 ], [ -0.175781, 54.265224 ], [ -0.175781, 53.852527 ], [ 0.000000, 53.852527 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.225768 ], [ 0.351562, 53.225768 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 0.703125, 52.908902 ], [ 0.703125, 52.802761 ], [ 1.406250, 52.802761 ], [ 1.406250, 52.696361 ], [ 1.757812, 52.696361 ], [ 1.757812, 52.375599 ], [ 1.582031, 52.375599 ], [ 1.582031, 51.944265 ], [ 1.230469, 51.944265 ], [ 1.230469, 51.835778 ], [ 1.054688, 51.835778 ], [ 1.054688, 51.618017 ], [ 1.230469, 51.618017 ], [ 1.230469, 51.399206 ], [ 1.406250, 51.399206 ], [ 1.406250, 51.179343 ], [ 1.230469, 51.179343 ], [ 1.230469, 51.069017 ], [ 1.054688, 51.069017 ], [ 1.054688, 50.958427 ], [ 0.878906, 50.958427 ], [ 0.878906, 50.847573 ], [ 0.703125, 50.847573 ], [ 0.703125, 50.736455 ], [ -0.878906, 50.736455 ], [ -0.878906, 54.572062 ], [ -0.703125, 54.572062 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 54.470038 ], [ -0.527344, 54.265224 ], [ -0.351562, 54.265224 ], [ -0.351562, 53.956086 ], [ -0.175781, 53.956086 ], [ -0.175781, 53.748711 ], [ 0.000000, 53.748711 ], [ 0.000000, 53.435719 ], [ 0.175781, 53.435719 ], [ 0.175781, 53.120405 ], [ 0.351562, 53.120405 ], [ 0.351562, 53.014783 ], [ 0.527344, 53.014783 ], [ 0.527344, 52.908902 ], [ 1.230469, 52.908902 ], [ 1.230469, 52.802761 ], [ 1.582031, 52.802761 ], [ 1.582031, 52.482780 ], [ 1.406250, 52.482780 ], [ 1.406250, 52.052490 ], [ 1.230469, 52.052490 ], [ 1.230469, 51.944265 ], [ 1.054688, 51.944265 ], [ 1.054688, 51.835778 ], [ 0.878906, 51.835778 ], [ 0.878906, 51.727028 ], [ 1.054688, 51.727028 ], [ 1.054688, 51.508742 ], [ 1.230469, 51.508742 ], [ 1.230469, 51.289406 ], [ 1.406250, 51.289406 ], [ 1.406250, 51.179343 ], [ 1.230469, 51.179343 ], [ 1.230469, 51.069017 ], [ 0.878906, 51.069017 ], [ 0.878906, 50.958427 ], [ 0.703125, 50.958427 ], [ 0.703125, 50.847573 ], [ -0.878906, 50.847573 ], [ -0.878906, 54.470038 ], [ -0.527344, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 42.940339 ], [ 9.316406, 42.553080 ], [ 9.492188, 42.553080 ], [ 9.492188, 41.771312 ], [ 9.316406, 41.771312 ], [ 9.316406, 41.376809 ], [ 9.140625, 41.376809 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.902277 ], [ 8.613281, 41.902277 ], [ 8.613281, 42.423457 ], [ 8.789062, 42.423457 ], [ 8.789062, 42.682435 ], [ 8.964844, 42.682435 ], [ 8.964844, 42.811522 ], [ 9.140625, 42.811522 ], [ 9.140625, 42.940339 ], [ 9.316406, 42.940339 ] ] ], [ [ [ 6.855469, 47.398349 ], [ 6.855469, 47.159840 ], [ 6.679688, 47.159840 ], [ 6.679688, 47.040182 ], [ 6.503906, 47.040182 ], [ 6.503906, 46.920255 ], [ 6.328125, 46.920255 ], [ 6.328125, 46.800059 ], [ 6.152344, 46.800059 ], [ 6.152344, 46.679594 ], [ 5.976562, 46.679594 ], [ 5.976562, 46.316584 ], [ 6.328125, 46.316584 ], [ 6.328125, 46.437857 ], [ 6.503906, 46.437857 ], [ 6.503906, 46.316584 ], [ 6.679688, 46.316584 ], [ 6.679688, 46.073231 ], [ 6.855469, 46.073231 ], [ 6.855469, 45.460131 ], [ 7.031250, 45.460131 ], [ 7.031250, 45.213004 ], [ 6.855469, 45.213004 ], [ 6.855469, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.840291 ], [ 6.855469, 44.840291 ], [ 6.855469, 44.339565 ], [ 7.031250, 44.339565 ], [ 7.031250, 44.213710 ], [ 7.207031, 44.213710 ], [ 7.207031, 44.087585 ], [ 7.558594, 44.087585 ], [ 7.558594, 43.834527 ], [ 7.382812, 43.834527 ], [ 7.382812, 43.580391 ], [ 7.207031, 43.580391 ], [ 7.207031, 43.452919 ], [ 7.031250, 43.452919 ], [ 7.031250, 43.325178 ], [ 6.855469, 43.325178 ], [ 6.855469, 43.197167 ], [ 6.679688, 43.197167 ], [ 6.679688, 43.068888 ], [ 6.152344, 43.068888 ], [ 6.152344, 43.197167 ], [ 5.449219, 43.197167 ], [ 5.449219, 43.325178 ], [ 4.746094, 43.325178 ], [ 4.746094, 43.452919 ], [ 4.394531, 43.452919 ], [ 4.394531, 43.325178 ], [ 4.042969, 43.325178 ], [ 4.042969, 43.197167 ], [ 3.515625, 43.197167 ], [ 3.515625, 43.068888 ], [ 3.164062, 43.068888 ], [ 3.164062, 42.682435 ], [ 2.988281, 42.682435 ], [ 2.988281, 42.423457 ], [ 2.460938, 42.423457 ], [ 2.460938, 42.293564 ], [ 1.582031, 42.293564 ], [ 1.582031, 42.423457 ], [ 1.230469, 42.423457 ], [ 1.230469, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.553080 ], [ 0.000000, 42.553080 ], [ 0.000000, 42.682435 ], [ -0.351562, 42.682435 ], [ -0.351562, 42.811522 ], [ -0.703125, 42.811522 ], [ -0.703125, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 49.382373 ], [ -0.703125, 49.382373 ], [ -0.703125, 49.496675 ], [ -0.351562, 49.496675 ], [ -0.351562, 49.610710 ], [ 0.000000, 49.610710 ], [ 0.000000, 49.724479 ], [ 0.351562, 49.724479 ], [ 0.351562, 49.837982 ], [ 0.703125, 49.837982 ], [ 0.703125, 49.951220 ], [ 1.054688, 49.951220 ], [ 1.054688, 50.064192 ], [ 1.406250, 50.064192 ], [ 1.406250, 50.513427 ], [ 1.582031, 50.513427 ], [ 1.582031, 50.958427 ], [ 1.933594, 50.958427 ], [ 1.933594, 51.069017 ], [ 2.285156, 51.069017 ], [ 2.285156, 51.179343 ], [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 2.636719, 50.958427 ], [ 2.636719, 50.847573 ], [ 2.812500, 50.847573 ], [ 2.812500, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.625073 ], [ 3.339844, 50.625073 ], [ 3.339844, 50.401515 ], [ 3.515625, 50.401515 ], [ 3.515625, 50.289339 ], [ 3.691406, 50.289339 ], [ 3.691406, 50.176898 ], [ 3.867188, 50.176898 ], [ 3.867188, 50.064192 ], [ 4.042969, 50.064192 ], [ 4.042969, 49.951220 ], [ 4.746094, 49.951220 ], [ 4.746094, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.724479 ], [ 5.273438, 49.724479 ], [ 5.273438, 49.610710 ], [ 5.449219, 49.610710 ], [ 5.449219, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.152344, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.267805 ], [ 6.503906, 49.267805 ], [ 6.503906, 49.152970 ], [ 7.207031, 49.152970 ], [ 7.207031, 49.037868 ], [ 8.085938, 49.037868 ], [ 8.085938, 48.922499 ], [ 7.910156, 48.922499 ], [ 7.910156, 48.690960 ], [ 7.734375, 48.690960 ], [ 7.734375, 48.458352 ], [ 7.558594, 48.458352 ], [ 7.558594, 47.989922 ], [ 7.382812, 47.989922 ], [ 7.382812, 47.517201 ], [ 7.207031, 47.517201 ], [ 7.207031, 47.398349 ], [ 6.855469, 47.398349 ] ], [ [ 6.855469, 47.398349 ], [ 6.855469, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.398349 ], [ 6.855469, 47.398349 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 42.940339 ], [ 9.316406, 42.553080 ], [ 9.492188, 42.553080 ], [ 9.492188, 41.902277 ], [ 9.316406, 41.902277 ], [ 9.316406, 41.640078 ], [ 9.140625, 41.640078 ], [ 9.140625, 41.508577 ], [ 8.789062, 41.508577 ], [ 8.789062, 41.640078 ], [ 8.613281, 41.640078 ], [ 8.613281, 41.902277 ], [ 8.437500, 41.902277 ], [ 8.437500, 42.423457 ], [ 8.613281, 42.423457 ], [ 8.613281, 42.682435 ], [ 8.789062, 42.682435 ], [ 8.789062, 42.811522 ], [ 9.140625, 42.811522 ], [ 9.140625, 42.940339 ], [ 9.316406, 42.940339 ] ] ], [ [ [ 2.460938, 51.179343 ], [ 2.460938, 50.958427 ], [ 2.636719, 50.958427 ], [ 2.636719, 50.847573 ], [ 2.988281, 50.847573 ], [ 2.988281, 50.736455 ], [ 3.164062, 50.736455 ], [ 3.164062, 50.625073 ], [ 3.339844, 50.625073 ], [ 3.339844, 50.401515 ], [ 3.515625, 50.401515 ], [ 3.515625, 50.289339 ], [ 3.691406, 50.289339 ], [ 3.691406, 50.176898 ], [ 3.867188, 50.176898 ], [ 3.867188, 50.064192 ], [ 4.042969, 50.064192 ], [ 4.042969, 49.951220 ], [ 4.570312, 49.951220 ], [ 4.570312, 50.064192 ], [ 4.746094, 50.064192 ], [ 4.746094, 49.951220 ], [ 4.921875, 49.951220 ], [ 4.921875, 49.837982 ], [ 5.273438, 49.837982 ], [ 5.273438, 49.724479 ], [ 5.449219, 49.724479 ], [ 5.449219, 49.610710 ], [ 5.625000, 49.610710 ], [ 5.625000, 49.496675 ], [ 6.152344, 49.496675 ], [ 6.152344, 49.382373 ], [ 6.328125, 49.382373 ], [ 6.328125, 49.267805 ], [ 6.855469, 49.267805 ], [ 6.855469, 49.152970 ], [ 7.558594, 49.152970 ], [ 7.558594, 49.037868 ], [ 8.085938, 49.037868 ], [ 8.085938, 48.922499 ], [ 7.910156, 48.922499 ], [ 7.910156, 48.690960 ], [ 7.734375, 48.690960 ], [ 7.734375, 48.458352 ], [ 7.558594, 48.458352 ], [ 7.558594, 47.989922 ], [ 7.382812, 47.989922 ], [ 7.382812, 47.517201 ], [ 6.679688, 47.517201 ], [ 6.679688, 47.279229 ], [ 6.503906, 47.279229 ], [ 6.503906, 47.159840 ], [ 6.328125, 47.159840 ], [ 6.328125, 46.920255 ], [ 6.152344, 46.920255 ], [ 6.152344, 46.800059 ], [ 5.976562, 46.800059 ], [ 5.976562, 46.316584 ], [ 6.503906, 46.316584 ], [ 6.503906, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 45.706179 ], [ 6.855469, 45.706179 ], [ 6.855469, 45.460131 ], [ 7.031250, 45.460131 ], [ 7.031250, 45.213004 ], [ 6.855469, 45.213004 ], [ 6.855469, 45.089036 ], [ 6.679688, 45.089036 ], [ 6.679688, 44.715514 ], [ 6.855469, 44.715514 ], [ 6.855469, 44.339565 ], [ 7.031250, 44.339565 ], [ 7.031250, 44.213710 ], [ 7.382812, 44.213710 ], [ 7.382812, 43.580391 ], [ 7.207031, 43.580391 ], [ 7.207031, 43.452919 ], [ 6.855469, 43.452919 ], [ 6.855469, 43.325178 ], [ 6.679688, 43.325178 ], [ 6.679688, 43.197167 ], [ 5.800781, 43.197167 ], [ 5.800781, 43.325178 ], [ 4.746094, 43.325178 ], [ 4.746094, 43.452919 ], [ 4.218750, 43.452919 ], [ 4.218750, 43.325178 ], [ 3.515625, 43.325178 ], [ 3.515625, 43.197167 ], [ 2.988281, 43.197167 ], [ 2.988281, 42.553080 ], [ 2.460938, 42.553080 ], [ 2.460938, 42.423457 ], [ 1.406250, 42.423457 ], [ 1.406250, 42.553080 ], [ 1.054688, 42.553080 ], [ 1.054688, 42.682435 ], [ 0.703125, 42.682435 ], [ 0.703125, 42.811522 ], [ 0.527344, 42.811522 ], [ 0.527344, 42.682435 ], [ -0.175781, 42.682435 ], [ -0.175781, 42.811522 ], [ -0.703125, 42.811522 ], [ -0.703125, 42.940339 ], [ -0.878906, 42.940339 ], [ -0.878906, 49.496675 ], [ -0.527344, 49.496675 ], [ -0.527344, 49.610710 ], [ -0.175781, 49.610710 ], [ -0.175781, 49.724479 ], [ 0.175781, 49.724479 ], [ 0.175781, 49.837982 ], [ 0.527344, 49.837982 ], [ 0.527344, 49.951220 ], [ 0.878906, 49.951220 ], [ 0.878906, 50.064192 ], [ 1.230469, 50.064192 ], [ 1.230469, 50.289339 ], [ 1.406250, 50.289339 ], [ 1.406250, 50.736455 ], [ 1.582031, 50.736455 ], [ 1.582031, 50.958427 ], [ 1.933594, 50.958427 ], [ 1.933594, 51.069017 ], [ 2.285156, 51.069017 ], [ 2.285156, 51.179343 ], [ 2.460938, 51.179343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 42.940339 ], [ -0.703125, 42.811522 ], [ -0.351562, 42.811522 ], [ -0.351562, 42.682435 ], [ 0.000000, 42.682435 ], [ 0.000000, 42.553080 ], [ 0.527344, 42.553080 ], [ 0.527344, 42.682435 ], [ 1.054688, 42.682435 ], [ 1.054688, 42.553080 ], [ 1.230469, 42.553080 ], [ 1.230469, 42.423457 ], [ 1.582031, 42.423457 ], [ 1.582031, 42.293564 ], [ 2.460938, 42.293564 ], [ 2.460938, 42.423457 ], [ 2.988281, 42.423457 ], [ 2.988281, 41.771312 ], [ 2.812500, 41.771312 ], [ 2.812500, 41.640078 ], [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.460938, 41.508577 ], [ 2.460938, 41.376809 ], [ 2.285156, 41.376809 ], [ 2.285156, 41.244772 ], [ 1.933594, 41.244772 ], [ 1.933594, 41.112469 ], [ 1.230469, 41.112469 ], [ 1.230469, 40.979898 ], [ 0.878906, 40.979898 ], [ 0.878906, 40.847060 ], [ 0.703125, 40.847060 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.940339 ], [ -0.703125, 42.940339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.703125, 42.940339 ], [ -0.703125, 42.811522 ], [ -0.175781, 42.811522 ], [ -0.175781, 42.682435 ], [ 0.527344, 42.682435 ], [ 0.527344, 42.811522 ], [ 0.703125, 42.811522 ], [ 0.703125, 42.682435 ], [ 1.054688, 42.682435 ], [ 1.054688, 42.553080 ], [ 1.406250, 42.553080 ], [ 1.406250, 42.423457 ], [ 2.460938, 42.423457 ], [ 2.460938, 42.553080 ], [ 2.988281, 42.553080 ], [ 2.988281, 41.771312 ], [ 2.812500, 41.771312 ], [ 2.812500, 41.640078 ], [ 2.636719, 41.640078 ], [ 2.636719, 41.508577 ], [ 2.285156, 41.508577 ], [ 2.285156, 41.376809 ], [ 2.109375, 41.376809 ], [ 2.109375, 41.244772 ], [ 1.406250, 41.244772 ], [ 1.406250, 41.112469 ], [ 0.703125, 41.112469 ], [ 0.703125, 40.580585 ], [ 0.527344, 40.580585 ], [ 0.527344, 40.446947 ], [ 0.351562, 40.446947 ], [ 0.351562, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.940339 ], [ -0.703125, 42.940339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.296875, 42.682435 ], [ 44.296875, 42.553080 ], [ 43.769531, 42.553080 ], [ 43.769531, 42.682435 ], [ 43.417969, 42.682435 ], [ 43.417969, 42.811522 ], [ 43.066406, 42.811522 ], [ 43.066406, 42.940339 ], [ 42.714844, 42.940339 ], [ 42.714844, 43.068888 ], [ 42.363281, 43.068888 ], [ 42.363281, 43.197167 ], [ 41.484375, 43.197167 ], [ 41.484375, 43.325178 ], [ 40.605469, 43.325178 ], [ 40.605469, 43.452919 ], [ 40.253906, 43.452919 ], [ 40.253906, 43.580391 ], [ 40.078125, 43.580391 ], [ 40.078125, 43.452919 ], [ 39.726562, 43.452919 ], [ 39.726562, 43.580391 ], [ 39.550781, 43.580391 ], [ 39.550781, 43.707594 ], [ 39.375000, 43.707594 ], [ 39.375000, 43.834527 ], [ 39.199219, 43.834527 ], [ 39.199219, 43.961191 ], [ 39.023438, 43.961191 ], [ 39.023438, 44.087585 ], [ 38.847656, 44.087585 ], [ 38.847656, 44.213710 ], [ 38.671875, 44.213710 ], [ 38.671875, 44.339565 ], [ 38.320312, 44.339565 ], [ 38.320312, 44.465151 ], [ 37.968750, 44.465151 ], [ 37.968750, 44.590467 ], [ 37.617188, 44.590467 ], [ 37.617188, 44.715514 ], [ 37.441406, 44.715514 ], [ 37.441406, 44.840291 ], [ 37.265625, 44.840291 ], [ 37.265625, 44.964798 ], [ 36.914062, 44.964798 ], [ 36.914062, 45.089036 ], [ 36.738281, 45.089036 ], [ 36.738281, 45.213004 ], [ 37.089844, 45.213004 ], [ 37.089844, 45.336702 ], [ 37.441406, 45.336702 ], [ 37.441406, 45.460131 ], [ 37.617188, 45.460131 ], [ 37.617188, 45.583290 ], [ 37.792969, 45.583290 ], [ 37.792969, 45.828799 ], [ 37.968750, 45.828799 ], [ 37.968750, 45.951150 ], [ 38.144531, 45.951150 ], [ 38.144531, 46.073231 ], [ 38.320312, 46.073231 ], [ 38.320312, 46.195042 ], [ 38.144531, 46.195042 ], [ 38.144531, 46.316584 ], [ 37.968750, 46.316584 ], [ 37.968750, 46.437857 ], [ 37.792969, 46.437857 ], [ 37.792969, 46.558860 ], [ 37.617188, 46.558860 ], [ 37.617188, 46.679594 ], [ 37.968750, 46.679594 ], [ 37.968750, 46.800059 ], [ 38.496094, 46.800059 ], [ 38.496094, 46.920255 ], [ 39.023438, 46.920255 ], [ 39.023438, 47.040182 ], [ 39.199219, 47.040182 ], [ 39.199219, 47.279229 ], [ 38.847656, 47.279229 ], [ 38.847656, 47.159840 ], [ 38.144531, 47.159840 ], [ 38.144531, 47.279229 ], [ 38.320312, 47.279229 ], [ 38.320312, 47.517201 ], [ 38.496094, 47.517201 ], [ 38.496094, 47.635784 ], [ 38.671875, 47.635784 ], [ 38.671875, 47.754098 ], [ 38.847656, 47.754098 ], [ 38.847656, 47.872144 ], [ 39.726562, 47.872144 ], [ 39.726562, 47.989922 ], [ 39.902344, 47.989922 ], [ 39.902344, 48.458352 ], [ 39.726562, 48.458352 ], [ 39.726562, 48.922499 ], [ 39.902344, 48.922499 ], [ 39.902344, 49.152970 ], [ 40.078125, 49.152970 ], [ 40.078125, 49.610710 ], [ 39.726562, 49.610710 ], [ 39.726562, 49.724479 ], [ 39.199219, 49.724479 ], [ 39.199219, 49.837982 ], [ 38.847656, 49.837982 ], [ 38.847656, 49.951220 ], [ 37.792969, 49.951220 ], [ 37.792969, 50.176898 ], [ 37.617188, 50.176898 ], [ 37.617188, 50.289339 ], [ 37.441406, 50.289339 ], [ 37.441406, 50.401515 ], [ 37.265625, 50.401515 ], [ 37.265625, 50.289339 ], [ 36.914062, 50.289339 ], [ 36.914062, 50.176898 ], [ 36.386719, 50.176898 ], [ 36.386719, 50.289339 ], [ 36.035156, 50.289339 ], [ 36.035156, 50.401515 ], [ 35.683594, 50.401515 ], [ 35.683594, 50.513427 ], [ 35.332031, 50.513427 ], [ 35.332031, 50.847573 ], [ 35.156250, 50.847573 ], [ 35.156250, 51.069017 ], [ 34.980469, 51.069017 ], [ 34.980469, 51.179343 ], [ 34.453125, 51.179343 ], [ 34.453125, 51.289406 ], [ 34.277344, 51.289406 ], [ 34.277344, 51.399206 ], [ 34.101562, 51.399206 ], [ 34.101562, 51.618017 ], [ 34.453125, 51.618017 ], [ 34.453125, 51.727028 ], [ 34.277344, 51.727028 ], [ 34.277344, 51.944265 ], [ 34.101562, 51.944265 ], [ 34.101562, 52.052490 ], [ 33.925781, 52.052490 ], [ 33.925781, 52.268157 ], [ 33.750000, 52.268157 ], [ 33.750000, 52.375599 ], [ 33.398438, 52.375599 ], [ 33.398438, 52.268157 ], [ 32.343750, 52.268157 ], [ 32.343750, 52.160455 ], [ 32.167969, 52.160455 ], [ 32.167969, 52.052490 ], [ 31.816406, 52.052490 ], [ 31.816406, 52.160455 ], [ 31.640625, 52.160455 ], [ 31.640625, 52.482780 ], [ 31.464844, 52.482780 ], [ 31.464844, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 32.519531, 53.120405 ], [ 32.519531, 53.225768 ], [ 32.695312, 53.225768 ], [ 32.695312, 53.330873 ], [ 32.519531, 53.330873 ], [ 32.519531, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.644638 ], [ 31.992188, 53.644638 ], [ 31.992188, 53.748711 ], [ 31.816406, 53.748711 ], [ 31.816406, 53.956086 ], [ 31.640625, 53.956086 ], [ 31.640625, 54.059388 ], [ 31.464844, 54.059388 ], [ 31.464844, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 54.367759 ], [ 31.113281, 54.367759 ], [ 31.113281, 54.470038 ], [ 30.937500, 54.470038 ], [ 30.937500, 54.673831 ], [ 30.761719, 54.673831 ], [ 30.761719, 54.876607 ], [ 30.937500, 54.876607 ], [ 30.937500, 55.578345 ], [ 30.585938, 55.578345 ], [ 30.585938, 55.677584 ], [ 30.058594, 55.677584 ], [ 30.058594, 55.776573 ], [ 29.707031, 55.776573 ], [ 29.707031, 55.677584 ], [ 29.355469, 55.677584 ], [ 29.355469, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.875311 ], [ 28.828125, 55.875311 ], [ 28.828125, 55.973798 ], [ 28.476562, 55.973798 ], [ 28.476562, 56.072035 ], [ 28.125000, 56.072035 ], [ 28.125000, 56.267761 ], [ 27.949219, 56.267761 ], [ 27.949219, 56.559482 ], [ 27.773438, 56.559482 ], [ 27.773438, 57.231503 ], [ 27.597656, 57.231503 ], [ 27.597656, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.421294 ], [ 27.246094, 57.421294 ], [ 27.246094, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.610107 ], [ 27.597656, 57.610107 ], [ 27.597656, 57.704147 ], [ 27.773438, 57.704147 ], [ 27.773438, 57.984808 ], [ 27.597656, 57.984808 ], [ 27.597656, 58.447733 ], [ 27.421875, 58.447733 ], [ 27.421875, 58.722599 ], [ 27.597656, 58.722599 ], [ 27.597656, 58.904646 ], [ 27.773438, 58.904646 ], [ 27.773438, 58.995311 ], [ 27.949219, 58.995311 ], [ 27.949219, 59.175928 ], [ 28.125000, 59.175928 ], [ 28.125000, 59.355596 ], [ 27.949219, 59.355596 ], [ 27.949219, 59.445075 ], [ 28.125000, 59.445075 ], [ 28.125000, 59.534318 ], [ 28.300781, 59.534318 ], [ 28.300781, 59.623325 ], [ 28.476562, 59.623325 ], [ 28.476562, 59.712097 ], [ 28.652344, 59.712097 ], [ 28.652344, 59.800634 ], [ 28.828125, 59.800634 ], [ 28.828125, 59.888937 ], [ 29.003906, 59.888937 ], [ 29.003906, 59.977005 ], [ 29.179688, 59.977005 ], [ 29.179688, 60.064840 ], [ 29.003906, 60.064840 ], [ 29.003906, 60.152442 ], [ 28.828125, 60.152442 ], [ 28.828125, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.326948 ], [ 28.300781, 60.326948 ], [ 28.300781, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.500525 ], [ 28.300781, 60.500525 ], [ 28.300781, 60.586967 ], [ 28.476562, 60.586967 ], [ 28.476562, 60.759160 ], [ 28.652344, 60.759160 ], [ 28.652344, 60.844911 ], [ 28.828125, 60.844911 ], [ 28.828125, 60.930432 ], [ 29.003906, 60.930432 ], [ 29.003906, 61.015725 ], [ 29.179688, 61.015725 ], [ 29.179688, 61.185625 ], [ 29.355469, 61.185625 ], [ 29.355469, 61.270233 ], [ 29.531250, 61.270233 ], [ 29.531250, 61.354614 ], [ 29.707031, 61.354614 ], [ 29.707031, 61.438767 ], [ 29.882812, 61.438767 ], [ 29.882812, 61.606396 ], [ 30.058594, 61.606396 ], [ 30.058594, 61.689872 ], [ 30.234375, 61.689872 ], [ 30.234375, 61.773123 ], [ 30.410156, 61.773123 ], [ 30.410156, 61.938950 ], [ 30.585938, 61.938950 ], [ 30.585938, 62.021528 ], [ 30.761719, 62.021528 ], [ 30.761719, 62.103883 ], [ 30.937500, 62.103883 ], [ 30.937500, 62.267923 ], [ 31.113281, 62.267923 ], [ 31.113281, 62.431074 ], [ 31.289062, 62.431074 ], [ 31.289062, 62.674143 ], [ 31.464844, 62.674143 ], [ 31.464844, 62.835089 ], [ 31.289062, 62.835089 ], [ 31.289062, 62.915233 ], [ 31.113281, 62.915233 ], [ 31.113281, 62.995158 ], [ 30.937500, 62.995158 ], [ 30.937500, 63.074866 ], [ 30.761719, 63.074866 ], [ 30.761719, 63.233627 ], [ 30.585938, 63.233627 ], [ 30.585938, 63.312683 ], [ 30.410156, 63.312683 ], [ 30.410156, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.470145 ], [ 30.058594, 63.470145 ], [ 30.058594, 63.704722 ], [ 30.234375, 63.704722 ], [ 30.234375, 64.014496 ], [ 30.410156, 64.014496 ], [ 30.410156, 64.244595 ], [ 30.234375, 64.244595 ], [ 30.234375, 64.396938 ], [ 30.058594, 64.396938 ], [ 30.058594, 64.548440 ], [ 29.882812, 64.548440 ], [ 29.882812, 64.699105 ], [ 29.707031, 64.699105 ], [ 29.707031, 64.848937 ], [ 29.531250, 64.848937 ], [ 29.531250, 64.997939 ], [ 29.707031, 64.997939 ], [ 29.707031, 65.219894 ], [ 29.882812, 65.219894 ], [ 29.882812, 65.440002 ], [ 30.058594, 65.440002 ], [ 30.058594, 65.658275 ], [ 30.234375, 65.658275 ], [ 30.234375, 65.874725 ], [ 30.058594, 65.874725 ], [ 30.058594, 66.018018 ], [ 29.882812, 66.018018 ], [ 29.882812, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.583217 ], [ 29.355469, 66.583217 ], [ 29.355469, 66.722541 ], [ 29.179688, 66.722541 ], [ 29.179688, 66.861082 ], [ 41.132812, 66.861082 ], [ 41.132812, 66.722541 ], [ 40.957031, 66.722541 ], [ 40.957031, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.605469, 66.513260 ], [ 40.605469, 66.443107 ], [ 40.429688, 66.443107 ], [ 40.429688, 66.372755 ], [ 40.253906, 66.372755 ], [ 40.253906, 66.231457 ], [ 39.902344, 66.231457 ], [ 39.902344, 66.160511 ], [ 39.375000, 66.160511 ], [ 39.375000, 66.089364 ], [ 38.671875, 66.089364 ], [ 38.671875, 66.018018 ], [ 37.968750, 66.018018 ], [ 37.968750, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.160511 ], [ 37.265625, 66.160511 ], [ 37.265625, 66.231457 ], [ 36.914062, 66.231457 ], [ 36.914062, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 36.035156, 66.372755 ], [ 36.035156, 66.443107 ], [ 35.683594, 66.443107 ], [ 35.683594, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.804688, 66.583217 ], [ 34.804688, 66.652977 ], [ 34.453125, 66.652977 ], [ 34.453125, 66.722541 ], [ 34.101562, 66.722541 ], [ 34.101562, 66.791909 ], [ 33.925781, 66.791909 ], [ 33.925781, 66.722541 ], [ 33.574219, 66.722541 ], [ 33.574219, 66.652977 ], [ 33.222656, 66.652977 ], [ 33.222656, 66.583217 ], [ 33.398438, 66.583217 ], [ 33.398438, 66.513260 ], [ 33.574219, 66.513260 ], [ 33.574219, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 34.277344, 66.160511 ], [ 34.277344, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 65.946472 ], [ 34.628906, 65.946472 ], [ 34.628906, 65.874725 ], [ 34.804688, 65.874725 ], [ 34.804688, 64.923542 ], [ 34.980469, 64.923542 ], [ 34.980469, 64.320872 ], [ 35.332031, 64.320872 ], [ 35.332031, 64.244595 ], [ 35.683594, 64.244595 ], [ 35.683594, 64.168107 ], [ 36.035156, 64.168107 ], [ 36.035156, 64.091408 ], [ 36.210938, 64.091408 ], [ 36.210938, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.937372 ], [ 36.914062, 63.937372 ], [ 36.914062, 63.860036 ], [ 37.089844, 63.860036 ], [ 37.089844, 64.396938 ], [ 36.914062, 64.396938 ], [ 36.914062, 64.548440 ], [ 36.738281, 64.548440 ], [ 36.738281, 64.699105 ], [ 36.562500, 64.699105 ], [ 36.562500, 64.774125 ], [ 36.738281, 64.774125 ], [ 36.738281, 64.923542 ], [ 36.914062, 64.923542 ], [ 36.914062, 65.072130 ], [ 37.441406, 65.072130 ], [ 37.441406, 64.997939 ], [ 37.792969, 64.997939 ], [ 37.792969, 64.923542 ], [ 38.144531, 64.923542 ], [ 38.144531, 64.848937 ], [ 38.320312, 64.848937 ], [ 38.320312, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.699105 ], [ 39.023438, 64.699105 ], [ 39.023438, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.548440 ], [ 39.726562, 64.548440 ], [ 39.726562, 64.623877 ], [ 40.078125, 64.623877 ], [ 40.078125, 64.699105 ], [ 40.429688, 64.699105 ], [ 40.429688, 64.848937 ], [ 40.253906, 64.848937 ], [ 40.253906, 64.997939 ], [ 40.078125, 64.997939 ], [ 40.078125, 65.219894 ], [ 39.902344, 65.219894 ], [ 39.902344, 65.366837 ], [ 39.726562, 65.366837 ], [ 39.726562, 65.512963 ], [ 39.902344, 65.512963 ], [ 39.902344, 65.585720 ], [ 40.078125, 65.585720 ], [ 40.078125, 65.658275 ], [ 40.253906, 65.658275 ], [ 40.253906, 65.730626 ], [ 40.429688, 65.730626 ], [ 40.429688, 65.802776 ], [ 40.605469, 65.802776 ], [ 40.605469, 65.874725 ], [ 40.781250, 65.874725 ], [ 40.781250, 65.946472 ], [ 40.957031, 65.946472 ], [ 40.957031, 66.018018 ], [ 41.132812, 66.018018 ], [ 41.132812, 66.089364 ], [ 41.308594, 66.089364 ], [ 41.308594, 66.160511 ], [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.302205 ], [ 41.835938, 66.302205 ], [ 41.835938, 66.372755 ], [ 42.011719, 66.372755 ], [ 42.011719, 66.443107 ], [ 43.066406, 66.443107 ], [ 43.066406, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.302205 ], [ 43.417969, 66.302205 ], [ 43.417969, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 43.769531, 66.160511 ], [ 43.769531, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.445312, 55.178868 ], [ 21.445312, 55.078367 ], [ 21.972656, 55.078367 ], [ 21.972656, 54.977614 ], [ 22.324219, 54.977614 ], [ 22.324219, 54.876607 ], [ 22.675781, 54.876607 ], [ 22.675781, 54.367759 ], [ 21.972656, 54.367759 ], [ 21.972656, 54.265224 ], [ 20.566406, 54.265224 ], [ 20.566406, 54.367759 ], [ 19.863281, 54.367759 ], [ 19.863281, 54.470038 ], [ 19.687500, 54.470038 ], [ 19.687500, 54.673831 ], [ 19.863281, 54.673831 ], [ 19.863281, 54.876607 ], [ 20.214844, 54.876607 ], [ 20.214844, 54.977614 ], [ 20.742188, 54.977614 ], [ 20.742188, 55.078367 ], [ 21.093750, 55.078367 ], [ 21.093750, 55.178868 ], [ 21.445312, 55.178868 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.163403 ], [ 45.527344, 42.163403 ], [ 45.527344, 42.423457 ], [ 45.351562, 42.423457 ], [ 45.351562, 42.553080 ], [ 45.000000, 42.553080 ], [ 45.000000, 42.682435 ], [ 44.648438, 42.682435 ], [ 44.648438, 42.811522 ], [ 44.472656, 42.811522 ], [ 44.472656, 42.682435 ], [ 44.121094, 42.682435 ], [ 44.121094, 42.553080 ], [ 43.769531, 42.553080 ], [ 43.769531, 42.682435 ], [ 43.593750, 42.682435 ], [ 43.593750, 42.811522 ], [ 43.417969, 42.811522 ], [ 43.417969, 42.940339 ], [ 43.066406, 42.940339 ], [ 43.066406, 43.068888 ], [ 42.714844, 43.068888 ], [ 42.714844, 43.197167 ], [ 42.363281, 43.197167 ], [ 42.363281, 43.325178 ], [ 41.484375, 43.325178 ], [ 41.484375, 43.452919 ], [ 40.253906, 43.452919 ], [ 40.253906, 43.580391 ], [ 40.078125, 43.580391 ], [ 40.078125, 43.452919 ], [ 39.726562, 43.452919 ], [ 39.726562, 43.580391 ], [ 39.550781, 43.580391 ], [ 39.550781, 43.707594 ], [ 39.375000, 43.707594 ], [ 39.375000, 43.834527 ], [ 39.199219, 43.834527 ], [ 39.199219, 43.961191 ], [ 39.023438, 43.961191 ], [ 39.023438, 44.087585 ], [ 38.847656, 44.087585 ], [ 38.847656, 44.213710 ], [ 38.671875, 44.213710 ], [ 38.671875, 44.339565 ], [ 38.320312, 44.339565 ], [ 38.320312, 44.465151 ], [ 37.968750, 44.465151 ], [ 37.968750, 44.590467 ], [ 37.617188, 44.590467 ], [ 37.617188, 44.715514 ], [ 37.265625, 44.715514 ], [ 37.265625, 44.840291 ], [ 37.089844, 44.840291 ], [ 37.089844, 44.964798 ], [ 36.914062, 44.964798 ], [ 36.914062, 45.089036 ], [ 36.738281, 45.089036 ], [ 36.738281, 45.213004 ], [ 36.562500, 45.213004 ], [ 36.562500, 45.336702 ], [ 37.089844, 45.336702 ], [ 37.089844, 45.460131 ], [ 37.441406, 45.460131 ], [ 37.441406, 45.706179 ], [ 37.617188, 45.706179 ], [ 37.617188, 45.828799 ], [ 37.792969, 45.828799 ], [ 37.792969, 45.951150 ], [ 37.968750, 45.951150 ], [ 37.968750, 46.195042 ], [ 38.144531, 46.195042 ], [ 38.144531, 46.316584 ], [ 37.968750, 46.316584 ], [ 37.968750, 46.437857 ], [ 37.792969, 46.437857 ], [ 37.792969, 46.558860 ], [ 37.617188, 46.558860 ], [ 37.617188, 46.679594 ], [ 37.968750, 46.679594 ], [ 37.968750, 46.800059 ], [ 38.320312, 46.800059 ], [ 38.320312, 46.920255 ], [ 38.671875, 46.920255 ], [ 38.671875, 47.040182 ], [ 39.023438, 47.040182 ], [ 39.023438, 47.279229 ], [ 38.671875, 47.279229 ], [ 38.671875, 47.159840 ], [ 38.144531, 47.159840 ], [ 38.144531, 47.635784 ], [ 38.320312, 47.635784 ], [ 38.320312, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.872144 ], [ 39.375000, 47.872144 ], [ 39.375000, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 48.574790 ], [ 39.550781, 48.574790 ], [ 39.550781, 48.806863 ], [ 39.726562, 48.806863 ], [ 39.726562, 49.037868 ], [ 39.902344, 49.037868 ], [ 39.902344, 49.267805 ], [ 40.078125, 49.267805 ], [ 40.078125, 49.496675 ], [ 39.902344, 49.496675 ], [ 39.902344, 49.610710 ], [ 39.550781, 49.610710 ], [ 39.550781, 49.724479 ], [ 39.023438, 49.724479 ], [ 39.023438, 49.837982 ], [ 38.671875, 49.837982 ], [ 38.671875, 49.951220 ], [ 37.792969, 49.951220 ], [ 37.792969, 50.064192 ], [ 37.617188, 50.064192 ], [ 37.617188, 50.176898 ], [ 37.441406, 50.176898 ], [ 37.441406, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.401515 ], [ 37.089844, 50.401515 ], [ 37.089844, 50.289339 ], [ 36.210938, 50.289339 ], [ 36.210938, 50.401515 ], [ 35.859375, 50.401515 ], [ 35.859375, 50.513427 ], [ 35.507812, 50.513427 ], [ 35.507812, 50.625073 ], [ 35.332031, 50.625073 ], [ 35.332031, 50.958427 ], [ 35.156250, 50.958427 ], [ 35.156250, 51.179343 ], [ 34.980469, 51.179343 ], [ 34.980469, 51.289406 ], [ 34.101562, 51.289406 ], [ 34.101562, 51.727028 ], [ 34.277344, 51.727028 ], [ 34.277344, 51.835778 ], [ 34.101562, 51.835778 ], [ 34.101562, 52.052490 ], [ 33.925781, 52.052490 ], [ 33.925781, 52.268157 ], [ 33.750000, 52.268157 ], [ 33.750000, 52.375599 ], [ 33.398438, 52.375599 ], [ 33.398438, 52.268157 ], [ 32.167969, 52.268157 ], [ 32.167969, 52.160455 ], [ 31.640625, 52.160455 ], [ 31.640625, 52.482780 ], [ 31.464844, 52.482780 ], [ 31.464844, 52.908902 ], [ 31.289062, 52.908902 ], [ 31.289062, 53.120405 ], [ 31.464844, 53.120405 ], [ 31.464844, 53.225768 ], [ 32.343750, 53.225768 ], [ 32.343750, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.435719 ], [ 32.519531, 53.435719 ], [ 32.519531, 53.540307 ], [ 32.343750, 53.540307 ], [ 32.343750, 53.644638 ], [ 31.992188, 53.644638 ], [ 31.992188, 53.748711 ], [ 31.640625, 53.748711 ], [ 31.640625, 54.059388 ], [ 31.289062, 54.059388 ], [ 31.289062, 54.162434 ], [ 31.113281, 54.162434 ], [ 31.113281, 54.367759 ], [ 30.937500, 54.367759 ], [ 30.937500, 54.572062 ], [ 30.761719, 54.572062 ], [ 30.761719, 54.775346 ], [ 30.585938, 54.775346 ], [ 30.585938, 54.876607 ], [ 30.761719, 54.876607 ], [ 30.761719, 55.078367 ], [ 30.937500, 55.078367 ], [ 30.937500, 55.379110 ], [ 30.761719, 55.379110 ], [ 30.761719, 55.578345 ], [ 30.585938, 55.578345 ], [ 30.585938, 55.677584 ], [ 30.234375, 55.677584 ], [ 30.234375, 55.776573 ], [ 29.531250, 55.776573 ], [ 29.531250, 55.677584 ], [ 29.355469, 55.677584 ], [ 29.355469, 55.776573 ], [ 29.179688, 55.776573 ], [ 29.179688, 55.973798 ], [ 28.828125, 55.973798 ], [ 28.828125, 56.072035 ], [ 28.300781, 56.072035 ], [ 28.300781, 56.170023 ], [ 28.125000, 56.170023 ], [ 28.125000, 56.267761 ], [ 27.949219, 56.267761 ], [ 27.949219, 56.656226 ], [ 27.773438, 56.656226 ], [ 27.773438, 57.040730 ], [ 27.597656, 57.040730 ], [ 27.597656, 57.326521 ], [ 27.421875, 57.326521 ], [ 27.421875, 57.421294 ], [ 27.246094, 57.421294 ], [ 27.246094, 57.515823 ], [ 27.421875, 57.515823 ], [ 27.421875, 57.704147 ], [ 27.597656, 57.704147 ], [ 27.597656, 58.263287 ], [ 27.421875, 58.263287 ], [ 27.421875, 58.813742 ], [ 27.597656, 58.813742 ], [ 27.597656, 58.995311 ], [ 27.773438, 58.995311 ], [ 27.773438, 59.085739 ], [ 27.949219, 59.085739 ], [ 27.949219, 59.265881 ], [ 28.125000, 59.265881 ], [ 28.125000, 59.445075 ], [ 27.949219, 59.445075 ], [ 27.949219, 59.534318 ], [ 28.125000, 59.534318 ], [ 28.125000, 59.623325 ], [ 28.300781, 59.623325 ], [ 28.300781, 59.712097 ], [ 28.476562, 59.712097 ], [ 28.476562, 59.800634 ], [ 28.652344, 59.800634 ], [ 28.652344, 59.888937 ], [ 28.828125, 59.888937 ], [ 28.828125, 59.977005 ], [ 29.003906, 59.977005 ], [ 29.003906, 60.064840 ], [ 28.828125, 60.064840 ], [ 28.828125, 60.152442 ], [ 28.652344, 60.152442 ], [ 28.652344, 60.239811 ], [ 28.476562, 60.239811 ], [ 28.476562, 60.326948 ], [ 28.300781, 60.326948 ], [ 28.300781, 60.413852 ], [ 28.125000, 60.413852 ], [ 28.125000, 60.500525 ], [ 27.949219, 60.500525 ], [ 27.949219, 60.586967 ], [ 28.125000, 60.586967 ], [ 28.125000, 60.673179 ], [ 28.300781, 60.673179 ], [ 28.300781, 60.844911 ], [ 28.476562, 60.844911 ], [ 28.476562, 60.930432 ], [ 28.652344, 60.930432 ], [ 28.652344, 61.015725 ], [ 28.828125, 61.015725 ], [ 28.828125, 61.100789 ], [ 29.003906, 61.100789 ], [ 29.003906, 61.270233 ], [ 29.179688, 61.270233 ], [ 29.179688, 61.354614 ], [ 29.355469, 61.354614 ], [ 29.355469, 61.438767 ], [ 29.531250, 61.438767 ], [ 29.531250, 61.522695 ], [ 29.707031, 61.522695 ], [ 29.707031, 61.689872 ], [ 29.882812, 61.689872 ], [ 29.882812, 61.773123 ], [ 30.058594, 61.773123 ], [ 30.058594, 61.856149 ], [ 30.234375, 61.856149 ], [ 30.234375, 61.938950 ], [ 30.410156, 61.938950 ], [ 30.410156, 62.021528 ], [ 30.585938, 62.021528 ], [ 30.585938, 62.186014 ], [ 30.761719, 62.186014 ], [ 30.761719, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.349609 ], [ 31.113281, 62.349609 ], [ 31.113281, 62.512318 ], [ 31.289062, 62.512318 ], [ 31.289062, 62.754726 ], [ 31.464844, 62.754726 ], [ 31.464844, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 62.995158 ], [ 31.113281, 62.995158 ], [ 31.113281, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 63.154355 ], [ 30.761719, 63.154355 ], [ 30.761719, 63.233627 ], [ 30.585938, 63.233627 ], [ 30.585938, 63.312683 ], [ 30.410156, 63.312683 ], [ 30.410156, 63.391522 ], [ 30.234375, 63.391522 ], [ 30.234375, 63.470145 ], [ 30.058594, 63.470145 ], [ 30.058594, 63.548552 ], [ 29.882812, 63.548552 ], [ 29.882812, 63.704722 ], [ 30.058594, 63.704722 ], [ 30.058594, 63.937372 ], [ 30.234375, 63.937372 ], [ 30.234375, 64.091408 ], [ 30.410156, 64.091408 ], [ 30.410156, 64.320872 ], [ 30.234375, 64.320872 ], [ 30.234375, 64.472794 ], [ 30.058594, 64.472794 ], [ 30.058594, 64.623877 ], [ 29.882812, 64.623877 ], [ 29.882812, 64.774125 ], [ 29.707031, 64.774125 ], [ 29.707031, 64.923542 ], [ 29.531250, 64.923542 ], [ 29.531250, 65.146115 ], [ 29.707031, 65.146115 ], [ 29.707031, 65.440002 ], [ 29.882812, 65.440002 ], [ 29.882812, 65.730626 ], [ 30.058594, 65.730626 ], [ 30.058594, 65.946472 ], [ 29.882812, 65.946472 ], [ 29.882812, 66.089364 ], [ 29.707031, 66.089364 ], [ 29.707031, 66.231457 ], [ 29.531250, 66.231457 ], [ 29.531250, 66.443107 ], [ 29.355469, 66.443107 ], [ 29.355469, 66.583217 ], [ 29.179688, 66.583217 ], [ 29.179688, 66.722541 ], [ 29.003906, 66.722541 ], [ 29.003906, 66.861082 ], [ 40.957031, 66.861082 ], [ 40.957031, 66.722541 ], [ 40.781250, 66.722541 ], [ 40.781250, 66.652977 ], [ 40.605469, 66.652977 ], [ 40.605469, 66.583217 ], [ 40.429688, 66.583217 ], [ 40.429688, 66.443107 ], [ 40.253906, 66.443107 ], [ 40.253906, 66.372755 ], [ 40.078125, 66.372755 ], [ 40.078125, 66.302205 ], [ 39.726562, 66.302205 ], [ 39.726562, 66.231457 ], [ 39.375000, 66.231457 ], [ 39.375000, 66.160511 ], [ 39.023438, 66.160511 ], [ 39.023438, 66.089364 ], [ 38.671875, 66.089364 ], [ 38.671875, 66.018018 ], [ 37.968750, 66.018018 ], [ 37.968750, 66.089364 ], [ 37.617188, 66.089364 ], [ 37.617188, 66.160511 ], [ 37.265625, 66.160511 ], [ 37.265625, 66.231457 ], [ 36.738281, 66.231457 ], [ 36.738281, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 35.859375, 66.372755 ], [ 35.859375, 66.443107 ], [ 35.507812, 66.443107 ], [ 35.507812, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.628906, 66.583217 ], [ 34.628906, 66.652977 ], [ 34.277344, 66.652977 ], [ 34.277344, 66.722541 ], [ 33.925781, 66.722541 ], [ 33.925781, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.722541 ], [ 33.398438, 66.722541 ], [ 33.398438, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.583217 ], [ 33.222656, 66.583217 ], [ 33.222656, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.443107 ], [ 33.574219, 66.443107 ], [ 33.574219, 66.372755 ], [ 33.750000, 66.372755 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 34.277344, 66.160511 ], [ 34.277344, 66.089364 ], [ 34.453125, 66.089364 ], [ 34.453125, 66.018018 ], [ 34.628906, 66.018018 ], [ 34.628906, 65.946472 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.396938 ], [ 35.156250, 64.396938 ], [ 35.156250, 64.320872 ], [ 35.507812, 64.320872 ], [ 35.507812, 64.244595 ], [ 35.859375, 64.244595 ], [ 35.859375, 64.168107 ], [ 36.210938, 64.168107 ], [ 36.210938, 64.091408 ], [ 36.386719, 64.091408 ], [ 36.386719, 64.014496 ], [ 36.562500, 64.014496 ], [ 36.562500, 63.937372 ], [ 36.738281, 63.937372 ], [ 36.738281, 63.860036 ], [ 36.914062, 63.860036 ], [ 36.914062, 64.091408 ], [ 37.089844, 64.091408 ], [ 37.089844, 64.396938 ], [ 36.914062, 64.396938 ], [ 36.914062, 64.472794 ], [ 36.738281, 64.472794 ], [ 36.738281, 64.623877 ], [ 36.562500, 64.623877 ], [ 36.562500, 64.699105 ], [ 36.386719, 64.699105 ], [ 36.386719, 64.774125 ], [ 36.562500, 64.774125 ], [ 36.562500, 64.848937 ], [ 36.738281, 64.848937 ], [ 36.738281, 64.997939 ], [ 36.914062, 64.997939 ], [ 36.914062, 65.072130 ], [ 37.441406, 65.072130 ], [ 37.441406, 64.997939 ], [ 37.792969, 64.997939 ], [ 37.792969, 64.923542 ], [ 38.144531, 64.923542 ], [ 38.144531, 64.848937 ], [ 38.320312, 64.848937 ], [ 38.320312, 64.774125 ], [ 38.671875, 64.774125 ], [ 38.671875, 64.699105 ], [ 39.023438, 64.699105 ], [ 39.023438, 64.623877 ], [ 39.375000, 64.623877 ], [ 39.375000, 64.548440 ], [ 39.726562, 64.548440 ], [ 39.726562, 64.623877 ], [ 40.078125, 64.623877 ], [ 40.078125, 64.699105 ], [ 40.429688, 64.699105 ], [ 40.429688, 64.848937 ], [ 40.253906, 64.848937 ], [ 40.253906, 64.997939 ], [ 40.078125, 64.997939 ], [ 40.078125, 65.219894 ], [ 39.902344, 65.219894 ], [ 39.902344, 65.366837 ], [ 39.726562, 65.366837 ], [ 39.726562, 65.512963 ], [ 39.902344, 65.512963 ], [ 39.902344, 65.585720 ], [ 40.078125, 65.585720 ], [ 40.078125, 65.658275 ], [ 40.253906, 65.658275 ], [ 40.253906, 65.730626 ], [ 40.429688, 65.730626 ], [ 40.429688, 65.802776 ], [ 40.605469, 65.802776 ], [ 40.605469, 65.874725 ], [ 40.781250, 65.874725 ], [ 40.781250, 66.018018 ], [ 40.957031, 66.018018 ], [ 40.957031, 66.089364 ], [ 41.132812, 66.089364 ], [ 41.132812, 66.160511 ], [ 41.308594, 66.160511 ], [ 41.308594, 66.231457 ], [ 41.484375, 66.231457 ], [ 41.484375, 66.302205 ], [ 41.660156, 66.302205 ], [ 41.660156, 66.372755 ], [ 41.835938, 66.372755 ], [ 41.835938, 66.443107 ], [ 42.011719, 66.443107 ], [ 42.011719, 66.513260 ], [ 42.363281, 66.513260 ], [ 42.363281, 66.443107 ], [ 42.890625, 66.443107 ], [ 42.890625, 66.372755 ], [ 43.066406, 66.372755 ], [ 43.066406, 66.302205 ], [ 43.242188, 66.302205 ], [ 43.242188, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 43.769531, 66.160511 ], [ 43.769531, 66.089364 ], [ 43.945312, 66.089364 ], [ 43.945312, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.445312, 55.279115 ], [ 21.445312, 55.178868 ], [ 21.796875, 55.178868 ], [ 21.796875, 55.078367 ], [ 22.148438, 55.078367 ], [ 22.148438, 54.977614 ], [ 22.500000, 54.977614 ], [ 22.500000, 54.876607 ], [ 22.675781, 54.876607 ], [ 22.675781, 54.775346 ], [ 22.500000, 54.775346 ], [ 22.500000, 54.470038 ], [ 22.675781, 54.470038 ], [ 22.675781, 54.367759 ], [ 20.039062, 54.367759 ], [ 20.039062, 54.470038 ], [ 19.511719, 54.470038 ], [ 19.511719, 54.572062 ], [ 19.687500, 54.572062 ], [ 19.687500, 54.775346 ], [ 19.863281, 54.775346 ], [ 19.863281, 54.876607 ], [ 20.214844, 54.876607 ], [ 20.214844, 54.977614 ], [ 20.566406, 54.977614 ], [ 20.566406, 55.078367 ], [ 20.917969, 55.078367 ], [ 20.917969, 55.178868 ], [ 21.269531, 55.178868 ], [ 21.269531, 55.279115 ], [ 21.445312, 55.279115 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.644531, 66.861082 ], [ 15.644531, 66.722541 ], [ 15.468750, 66.722541 ], [ 15.468750, 66.513260 ], [ 15.292969, 66.513260 ], [ 15.292969, 66.231457 ], [ 15.117188, 66.231457 ], [ 15.117188, 66.018018 ], [ 14.941406, 66.018018 ], [ 14.941406, 65.874725 ], [ 14.765625, 65.874725 ], [ 14.765625, 65.730626 ], [ 14.589844, 65.730626 ], [ 14.589844, 65.585720 ], [ 14.414062, 65.585720 ], [ 14.414062, 65.440002 ], [ 14.238281, 65.440002 ], [ 14.238281, 65.293468 ], [ 14.062500, 65.293468 ], [ 14.062500, 65.146115 ], [ 13.886719, 65.146115 ], [ 13.886719, 64.997939 ], [ 13.710938, 64.997939 ], [ 13.710938, 64.848937 ], [ 13.535156, 64.848937 ], [ 13.535156, 64.699105 ], [ 13.710938, 64.699105 ], [ 13.710938, 64.548440 ], [ 13.886719, 64.548440 ], [ 13.886719, 64.320872 ], [ 13.710938, 64.320872 ], [ 13.710938, 64.091408 ], [ 13.535156, 64.091408 ], [ 13.535156, 64.014496 ], [ 13.007812, 64.014496 ], [ 13.007812, 64.091408 ], [ 12.656250, 64.091408 ], [ 12.656250, 63.937372 ], [ 12.480469, 63.937372 ], [ 12.480469, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.470145 ], [ 12.128906, 63.470145 ], [ 12.128906, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 61.689872 ], [ 12.128906, 61.689872 ], [ 12.128906, 61.522695 ], [ 12.304688, 61.522695 ], [ 12.304688, 61.438767 ], [ 12.480469, 61.438767 ], [ 12.480469, 61.270233 ], [ 12.656250, 61.270233 ], [ 12.656250, 60.930432 ], [ 12.480469, 60.930432 ], [ 12.480469, 60.413852 ], [ 12.304688, 60.413852 ], [ 12.304688, 60.064840 ], [ 12.128906, 60.064840 ], [ 12.128906, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 59.800634 ], [ 11.777344, 59.800634 ], [ 11.777344, 59.623325 ], [ 11.601562, 59.623325 ], [ 11.601562, 59.445075 ], [ 11.425781, 59.445075 ], [ 11.425781, 59.265881 ], [ 11.250000, 59.265881 ], [ 11.250000, 58.904646 ], [ 11.074219, 58.904646 ], [ 11.074219, 58.813742 ], [ 10.898438, 58.813742 ], [ 10.898438, 58.995311 ], [ 10.722656, 58.995311 ], [ 10.722656, 59.175928 ], [ 10.546875, 59.175928 ], [ 10.546875, 59.355596 ], [ 10.195312, 59.355596 ], [ 10.195312, 59.265881 ], [ 10.019531, 59.265881 ], [ 10.019531, 59.175928 ], [ 9.843750, 59.175928 ], [ 9.843750, 59.085739 ], [ 9.667969, 59.085739 ], [ 9.667969, 58.995311 ], [ 9.492188, 58.995311 ], [ 9.492188, 58.904646 ], [ 9.316406, 58.904646 ], [ 9.316406, 58.722599 ], [ 9.140625, 58.722599 ], [ 9.140625, 58.631217 ], [ 8.964844, 58.631217 ], [ 8.964844, 58.539595 ], [ 8.789062, 58.539595 ], [ 8.789062, 58.447733 ], [ 8.613281, 58.447733 ], [ 8.613281, 58.355630 ], [ 8.261719, 58.355630 ], [ 8.261719, 58.263287 ], [ 7.910156, 58.263287 ], [ 7.910156, 58.170702 ], [ 7.382812, 58.170702 ], [ 7.382812, 58.077876 ], [ 6.855469, 58.077876 ], [ 6.855469, 58.170702 ], [ 6.503906, 58.170702 ], [ 6.503906, 58.263287 ], [ 6.328125, 58.263287 ], [ 6.328125, 58.355630 ], [ 6.152344, 58.355630 ], [ 6.152344, 58.447733 ], [ 5.800781, 58.447733 ], [ 5.800781, 58.539595 ], [ 5.625000, 58.539595 ], [ 5.625000, 58.813742 ], [ 5.449219, 58.813742 ], [ 5.449219, 59.355596 ], [ 5.273438, 59.355596 ], [ 5.273438, 60.152442 ], [ 5.097656, 60.152442 ], [ 5.097656, 61.354614 ], [ 4.921875, 61.354614 ], [ 4.921875, 61.938950 ], [ 5.097656, 61.938950 ], [ 5.097656, 62.103883 ], [ 5.273438, 62.103883 ], [ 5.273438, 62.186014 ], [ 5.449219, 62.186014 ], [ 5.449219, 62.267923 ], [ 5.625000, 62.267923 ], [ 5.625000, 62.431074 ], [ 5.800781, 62.431074 ], [ 5.800781, 62.512318 ], [ 5.976562, 62.512318 ], [ 5.976562, 62.593341 ], [ 6.152344, 62.593341 ], [ 6.152344, 62.674143 ], [ 6.503906, 62.674143 ], [ 6.503906, 62.754726 ], [ 6.679688, 62.754726 ], [ 6.679688, 62.835089 ], [ 6.855469, 62.835089 ], [ 6.855469, 62.915233 ], [ 7.207031, 62.915233 ], [ 7.207031, 62.995158 ], [ 7.382812, 62.995158 ], [ 7.382812, 63.074866 ], [ 7.558594, 63.074866 ], [ 7.558594, 63.154355 ], [ 7.910156, 63.154355 ], [ 7.910156, 63.233627 ], [ 8.085938, 63.233627 ], [ 8.085938, 63.312683 ], [ 8.261719, 63.312683 ], [ 8.261719, 63.391522 ], [ 8.613281, 63.391522 ], [ 8.613281, 63.470145 ], [ 8.789062, 63.470145 ], [ 8.789062, 63.548552 ], [ 8.964844, 63.548552 ], [ 8.964844, 63.626745 ], [ 9.140625, 63.626745 ], [ 9.140625, 63.782486 ], [ 9.316406, 63.782486 ], [ 9.316406, 63.860036 ], [ 9.492188, 63.860036 ], [ 9.492188, 63.937372 ], [ 9.667969, 63.937372 ], [ 9.667969, 64.014496 ], [ 9.843750, 64.014496 ], [ 9.843750, 64.091408 ], [ 10.019531, 64.091408 ], [ 10.019531, 64.244595 ], [ 10.195312, 64.244595 ], [ 10.195312, 64.320872 ], [ 10.371094, 64.320872 ], [ 10.371094, 64.396938 ], [ 10.546875, 64.396938 ], [ 10.546875, 64.472794 ], [ 10.722656, 64.472794 ], [ 10.722656, 64.623877 ], [ 10.898438, 64.623877 ], [ 10.898438, 64.774125 ], [ 11.074219, 64.774125 ], [ 11.074219, 64.923542 ], [ 11.250000, 64.923542 ], [ 11.250000, 65.072130 ], [ 11.425781, 65.072130 ], [ 11.425781, 65.219894 ], [ 11.601562, 65.219894 ], [ 11.601562, 65.366837 ], [ 11.777344, 65.366837 ], [ 11.777344, 65.512963 ], [ 11.953125, 65.512963 ], [ 11.953125, 65.658275 ], [ 12.128906, 65.658275 ], [ 12.128906, 65.802776 ], [ 12.304688, 65.802776 ], [ 12.304688, 65.946472 ], [ 12.480469, 65.946472 ], [ 12.480469, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.861082 ], [ 15.644531, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.644531, 66.861082 ], [ 15.644531, 66.722541 ], [ 15.468750, 66.722541 ], [ 15.468750, 66.583217 ], [ 15.292969, 66.583217 ], [ 15.292969, 66.443107 ], [ 15.117188, 66.443107 ], [ 15.117188, 66.302205 ], [ 14.941406, 66.302205 ], [ 14.941406, 66.089364 ], [ 14.765625, 66.089364 ], [ 14.765625, 65.946472 ], [ 14.589844, 65.946472 ], [ 14.589844, 65.802776 ], [ 14.414062, 65.802776 ], [ 14.414062, 65.585720 ], [ 14.238281, 65.585720 ], [ 14.238281, 65.440002 ], [ 14.062500, 65.440002 ], [ 14.062500, 65.219894 ], [ 13.886719, 65.219894 ], [ 13.886719, 65.072130 ], [ 13.710938, 65.072130 ], [ 13.710938, 64.923542 ], [ 13.535156, 64.923542 ], [ 13.535156, 64.699105 ], [ 13.710938, 64.699105 ], [ 13.710938, 64.548440 ], [ 13.886719, 64.548440 ], [ 13.886719, 64.320872 ], [ 13.710938, 64.320872 ], [ 13.710938, 64.168107 ], [ 13.535156, 64.168107 ], [ 13.535156, 64.091408 ], [ 12.480469, 64.091408 ], [ 12.480469, 63.937372 ], [ 12.304688, 63.937372 ], [ 12.304688, 63.704722 ], [ 12.128906, 63.704722 ], [ 12.128906, 63.470145 ], [ 11.953125, 63.470145 ], [ 11.953125, 63.233627 ], [ 11.777344, 63.233627 ], [ 11.777344, 62.512318 ], [ 11.953125, 62.512318 ], [ 11.953125, 61.773123 ], [ 12.128906, 61.773123 ], [ 12.128906, 61.606396 ], [ 12.304688, 61.606396 ], [ 12.304688, 61.438767 ], [ 12.480469, 61.438767 ], [ 12.480469, 61.015725 ], [ 12.304688, 61.015725 ], [ 12.304688, 60.413852 ], [ 12.128906, 60.413852 ], [ 12.128906, 60.064840 ], [ 11.953125, 60.064840 ], [ 11.953125, 59.888937 ], [ 11.777344, 59.888937 ], [ 11.777344, 59.712097 ], [ 11.601562, 59.712097 ], [ 11.601562, 59.534318 ], [ 11.425781, 59.534318 ], [ 11.425781, 59.355596 ], [ 11.250000, 59.355596 ], [ 11.250000, 59.175928 ], [ 11.074219, 59.175928 ], [ 11.074219, 58.995311 ], [ 10.898438, 58.995311 ], [ 10.898438, 58.904646 ], [ 10.722656, 58.904646 ], [ 10.722656, 59.085739 ], [ 10.546875, 59.085739 ], [ 10.546875, 59.265881 ], [ 10.371094, 59.265881 ], [ 10.371094, 59.445075 ], [ 10.019531, 59.445075 ], [ 10.019531, 59.355596 ], [ 9.843750, 59.355596 ], [ 9.843750, 59.265881 ], [ 9.667969, 59.265881 ], [ 9.667969, 59.085739 ], [ 9.492188, 59.085739 ], [ 9.492188, 58.995311 ], [ 9.316406, 58.995311 ], [ 9.316406, 58.904646 ], [ 9.140625, 58.904646 ], [ 9.140625, 58.813742 ], [ 8.964844, 58.813742 ], [ 8.964844, 58.722599 ], [ 8.789062, 58.722599 ], [ 8.789062, 58.539595 ], [ 8.613281, 58.539595 ], [ 8.613281, 58.447733 ], [ 8.437500, 58.447733 ], [ 8.437500, 58.355630 ], [ 8.085938, 58.355630 ], [ 8.085938, 58.263287 ], [ 7.734375, 58.263287 ], [ 7.734375, 58.170702 ], [ 7.382812, 58.170702 ], [ 7.382812, 58.077876 ], [ 6.855469, 58.077876 ], [ 6.855469, 58.170702 ], [ 6.503906, 58.170702 ], [ 6.503906, 58.263287 ], [ 6.328125, 58.263287 ], [ 6.328125, 58.355630 ], [ 6.152344, 58.355630 ], [ 6.152344, 58.447733 ], [ 5.800781, 58.447733 ], [ 5.800781, 58.539595 ], [ 5.625000, 58.539595 ], [ 5.625000, 58.904646 ], [ 5.449219, 58.904646 ], [ 5.449219, 59.445075 ], [ 5.273438, 59.445075 ], [ 5.273438, 60.239811 ], [ 5.097656, 60.239811 ], [ 5.097656, 61.438767 ], [ 4.921875, 61.438767 ], [ 4.921875, 62.021528 ], [ 5.097656, 62.021528 ], [ 5.097656, 62.186014 ], [ 5.273438, 62.186014 ], [ 5.273438, 62.349609 ], [ 5.449219, 62.349609 ], [ 5.449219, 62.431074 ], [ 5.625000, 62.431074 ], [ 5.625000, 62.593341 ], [ 5.800781, 62.593341 ], [ 5.800781, 62.674143 ], [ 5.976562, 62.674143 ], [ 5.976562, 62.754726 ], [ 6.328125, 62.754726 ], [ 6.328125, 62.835089 ], [ 6.503906, 62.835089 ], [ 6.503906, 62.915233 ], [ 6.855469, 62.915233 ], [ 6.855469, 62.995158 ], [ 7.031250, 62.995158 ], [ 7.031250, 63.074866 ], [ 7.382812, 63.074866 ], [ 7.382812, 63.154355 ], [ 7.558594, 63.154355 ], [ 7.558594, 63.233627 ], [ 7.910156, 63.233627 ], [ 7.910156, 63.312683 ], [ 8.085938, 63.312683 ], [ 8.085938, 63.391522 ], [ 8.437500, 63.391522 ], [ 8.437500, 63.470145 ], [ 8.613281, 63.470145 ], [ 8.613281, 63.548552 ], [ 8.789062, 63.548552 ], [ 8.789062, 63.704722 ], [ 8.964844, 63.704722 ], [ 8.964844, 63.782486 ], [ 9.140625, 63.782486 ], [ 9.140625, 63.860036 ], [ 9.316406, 63.860036 ], [ 9.316406, 64.014496 ], [ 9.492188, 64.014496 ], [ 9.492188, 64.091408 ], [ 9.667969, 64.091408 ], [ 9.667969, 64.168107 ], [ 9.843750, 64.168107 ], [ 9.843750, 64.244595 ], [ 10.019531, 64.244595 ], [ 10.019531, 64.396938 ], [ 10.195312, 64.396938 ], [ 10.195312, 64.472794 ], [ 10.371094, 64.472794 ], [ 10.371094, 64.548440 ], [ 10.546875, 64.548440 ], [ 10.546875, 64.699105 ], [ 10.722656, 64.699105 ], [ 10.722656, 64.848937 ], [ 10.898438, 64.848937 ], [ 10.898438, 64.997939 ], [ 11.074219, 64.997939 ], [ 11.074219, 65.072130 ], [ 11.250000, 65.072130 ], [ 11.250000, 65.219894 ], [ 11.425781, 65.219894 ], [ 11.425781, 65.366837 ], [ 11.601562, 65.366837 ], [ 11.601562, 65.440002 ], [ 11.777344, 65.440002 ], [ 11.777344, 65.585720 ], [ 11.953125, 65.585720 ], [ 11.953125, 65.730626 ], [ 12.128906, 65.730626 ], [ 12.128906, 65.874725 ], [ 12.304688, 65.874725 ], [ 12.304688, 65.946472 ], [ 12.480469, 65.946472 ], [ 12.480469, 66.089364 ], [ 12.656250, 66.089364 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.861082 ], [ 15.644531, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.072035 ], [ 12.304688, 55.875311 ], [ 12.480469, 55.875311 ], [ 12.480469, 55.677584 ], [ 12.656250, 55.677584 ], [ 12.656250, 55.379110 ], [ 12.480469, 55.379110 ], [ 12.480469, 55.178868 ], [ 12.304688, 55.178868 ], [ 12.304688, 54.876607 ], [ 12.128906, 54.876607 ], [ 12.128906, 54.775346 ], [ 11.953125, 54.775346 ], [ 11.953125, 54.876607 ], [ 11.777344, 54.876607 ], [ 11.777344, 54.977614 ], [ 11.601562, 54.977614 ], [ 11.601562, 55.078367 ], [ 11.425781, 55.078367 ], [ 11.425781, 55.178868 ], [ 11.250000, 55.178868 ], [ 11.250000, 55.279115 ], [ 11.074219, 55.279115 ], [ 11.074219, 55.578345 ], [ 10.898438, 55.578345 ], [ 10.898438, 55.776573 ], [ 11.250000, 55.776573 ], [ 11.250000, 55.875311 ], [ 11.777344, 55.875311 ], [ 11.777344, 55.973798 ], [ 12.128906, 55.973798 ], [ 12.128906, 56.072035 ], [ 12.304688, 56.072035 ] ] ], [ [ [ 10.546875, 57.610107 ], [ 10.546875, 57.136239 ], [ 10.371094, 57.136239 ], [ 10.371094, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.752723 ], [ 10.371094, 56.752723 ], [ 10.371094, 56.559482 ], [ 10.722656, 56.559482 ], [ 10.722656, 56.462490 ], [ 10.898438, 56.462490 ], [ 10.898438, 56.267761 ], [ 10.722656, 56.267761 ], [ 10.722656, 56.072035 ], [ 10.195312, 56.072035 ], [ 10.195312, 55.875311 ], [ 10.019531, 55.875311 ], [ 10.019531, 55.677584 ], [ 9.843750, 55.677584 ], [ 9.843750, 55.478853 ], [ 9.667969, 55.478853 ], [ 9.667969, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.977614 ], [ 9.667969, 54.977614 ], [ 9.667969, 54.876607 ], [ 8.789062, 54.876607 ], [ 8.789062, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.178868 ], [ 8.261719, 55.178868 ], [ 8.261719, 55.379110 ], [ 8.085938, 55.379110 ], [ 8.085938, 56.656226 ], [ 8.261719, 56.656226 ], [ 8.261719, 56.848972 ], [ 8.437500, 56.848972 ], [ 8.437500, 57.040730 ], [ 8.613281, 57.040730 ], [ 8.613281, 57.136239 ], [ 9.667969, 57.136239 ], [ 9.667969, 57.326521 ], [ 9.843750, 57.326521 ], [ 9.843750, 57.421294 ], [ 10.019531, 57.421294 ], [ 10.019531, 57.515823 ], [ 10.371094, 57.515823 ], [ 10.371094, 57.610107 ], [ 10.546875, 57.610107 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.304688, 56.170023 ], [ 12.304688, 55.973798 ], [ 12.480469, 55.973798 ], [ 12.480469, 55.776573 ], [ 12.656250, 55.776573 ], [ 12.656250, 55.578345 ], [ 12.480469, 55.578345 ], [ 12.480469, 55.379110 ], [ 12.304688, 55.379110 ], [ 12.304688, 55.178868 ], [ 12.128906, 55.178868 ], [ 12.128906, 54.977614 ], [ 11.953125, 54.977614 ], [ 11.953125, 54.876607 ], [ 11.777344, 54.876607 ], [ 11.777344, 54.977614 ], [ 11.601562, 54.977614 ], [ 11.601562, 55.078367 ], [ 11.250000, 55.078367 ], [ 11.250000, 55.178868 ], [ 11.074219, 55.178868 ], [ 11.074219, 55.279115 ], [ 10.898438, 55.279115 ], [ 10.898438, 55.875311 ], [ 11.250000, 55.875311 ], [ 11.250000, 55.973798 ], [ 11.777344, 55.973798 ], [ 11.777344, 56.072035 ], [ 12.128906, 56.072035 ], [ 12.128906, 56.170023 ], [ 12.304688, 56.170023 ] ] ], [ [ [ 10.546875, 57.704147 ], [ 10.546875, 57.136239 ], [ 10.371094, 57.136239 ], [ 10.371094, 56.944974 ], [ 10.195312, 56.944974 ], [ 10.195312, 56.752723 ], [ 10.371094, 56.752723 ], [ 10.371094, 56.559482 ], [ 10.722656, 56.559482 ], [ 10.722656, 56.462490 ], [ 10.898438, 56.462490 ], [ 10.898438, 56.365250 ], [ 10.722656, 56.365250 ], [ 10.722656, 56.170023 ], [ 10.195312, 56.170023 ], [ 10.195312, 55.973798 ], [ 10.019531, 55.973798 ], [ 10.019531, 55.875311 ], [ 9.843750, 55.875311 ], [ 9.843750, 55.677584 ], [ 9.667969, 55.677584 ], [ 9.667969, 55.478853 ], [ 9.492188, 55.478853 ], [ 9.492188, 55.379110 ], [ 9.667969, 55.379110 ], [ 9.667969, 55.178868 ], [ 9.843750, 55.178868 ], [ 9.843750, 54.977614 ], [ 9.492188, 54.977614 ], [ 9.492188, 54.876607 ], [ 8.613281, 54.876607 ], [ 8.613281, 54.977614 ], [ 8.437500, 54.977614 ], [ 8.437500, 55.078367 ], [ 8.261719, 55.078367 ], [ 8.261719, 55.379110 ], [ 8.085938, 55.379110 ], [ 8.085938, 56.848972 ], [ 8.261719, 56.848972 ], [ 8.261719, 57.040730 ], [ 8.437500, 57.040730 ], [ 8.437500, 57.136239 ], [ 8.964844, 57.136239 ], [ 8.964844, 57.231503 ], [ 9.492188, 57.231503 ], [ 9.492188, 57.421294 ], [ 9.667969, 57.421294 ], [ 9.667969, 57.515823 ], [ 9.843750, 57.515823 ], [ 9.843750, 57.610107 ], [ 10.195312, 57.610107 ], [ 10.195312, 57.704147 ], [ 10.546875, 57.704147 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.089364 ], [ 23.906250, 66.089364 ], [ 23.906250, 66.018018 ], [ 23.730469, 66.018018 ], [ 23.730469, 65.946472 ], [ 23.378906, 65.946472 ], [ 23.378906, 65.874725 ], [ 22.851562, 65.874725 ], [ 22.851562, 65.802776 ], [ 22.500000, 65.802776 ], [ 22.500000, 65.730626 ], [ 22.148438, 65.730626 ], [ 22.148438, 65.658275 ], [ 21.972656, 65.658275 ], [ 21.972656, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.366837 ], [ 21.621094, 65.366837 ], [ 21.621094, 65.219894 ], [ 21.445312, 65.219894 ], [ 21.445312, 65.072130 ], [ 21.269531, 65.072130 ], [ 21.269531, 64.699105 ], [ 21.445312, 64.699105 ], [ 21.445312, 64.320872 ], [ 21.269531, 64.320872 ], [ 21.269531, 64.244595 ], [ 21.093750, 64.244595 ], [ 21.093750, 64.168107 ], [ 20.917969, 64.168107 ], [ 20.917969, 64.091408 ], [ 20.742188, 64.091408 ], [ 20.742188, 64.014496 ], [ 20.566406, 64.014496 ], [ 20.566406, 63.860036 ], [ 20.390625, 63.860036 ], [ 20.390625, 63.782486 ], [ 20.214844, 63.782486 ], [ 20.214844, 63.704722 ], [ 20.039062, 63.704722 ], [ 20.039062, 63.626745 ], [ 19.863281, 63.626745 ], [ 19.863281, 63.548552 ], [ 19.687500, 63.548552 ], [ 19.687500, 63.470145 ], [ 19.511719, 63.470145 ], [ 19.511719, 63.391522 ], [ 19.335938, 63.391522 ], [ 19.335938, 63.312683 ], [ 19.160156, 63.312683 ], [ 19.160156, 63.233627 ], [ 18.984375, 63.233627 ], [ 18.984375, 63.154355 ], [ 18.808594, 63.154355 ], [ 18.808594, 63.074866 ], [ 18.632812, 63.074866 ], [ 18.632812, 62.995158 ], [ 18.457031, 62.995158 ], [ 18.457031, 62.915233 ], [ 18.281250, 62.915233 ], [ 18.281250, 62.835089 ], [ 18.105469, 62.835089 ], [ 18.105469, 62.754726 ], [ 17.929688, 62.754726 ], [ 17.929688, 62.593341 ], [ 17.753906, 62.593341 ], [ 17.753906, 62.267923 ], [ 17.578125, 62.267923 ], [ 17.578125, 62.021528 ], [ 17.402344, 62.021528 ], [ 17.402344, 61.773123 ], [ 17.226562, 61.773123 ], [ 17.226562, 61.438767 ], [ 17.050781, 61.438767 ], [ 17.050781, 61.270233 ], [ 17.226562, 61.270233 ], [ 17.226562, 61.100789 ], [ 17.402344, 61.100789 ], [ 17.402344, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.759160 ], [ 17.753906, 60.759160 ], [ 17.753906, 60.586967 ], [ 17.929688, 60.586967 ], [ 17.929688, 60.500525 ], [ 18.105469, 60.500525 ], [ 18.105469, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.239811 ], [ 18.457031, 60.239811 ], [ 18.457031, 60.152442 ], [ 18.632812, 60.152442 ], [ 18.632812, 60.064840 ], [ 18.808594, 60.064840 ], [ 18.808594, 59.888937 ], [ 18.632812, 59.888937 ], [ 18.632812, 59.712097 ], [ 18.457031, 59.712097 ], [ 18.457031, 59.534318 ], [ 18.281250, 59.534318 ], [ 18.281250, 59.265881 ], [ 18.105469, 59.265881 ], [ 18.105469, 59.085739 ], [ 17.929688, 59.085739 ], [ 17.929688, 58.904646 ], [ 17.578125, 58.904646 ], [ 17.578125, 58.813742 ], [ 17.226562, 58.813742 ], [ 17.226562, 58.722599 ], [ 16.875000, 58.722599 ], [ 16.875000, 58.263287 ], [ 16.699219, 58.263287 ], [ 16.699219, 57.421294 ], [ 16.523438, 57.421294 ], [ 16.523438, 56.848972 ], [ 16.347656, 56.848972 ], [ 16.347656, 56.656226 ], [ 16.171875, 56.656226 ], [ 16.171875, 56.365250 ], [ 15.996094, 56.365250 ], [ 15.996094, 56.170023 ], [ 15.820312, 56.170023 ], [ 15.820312, 56.072035 ], [ 15.117188, 56.072035 ], [ 15.117188, 56.170023 ], [ 14.589844, 56.170023 ], [ 14.589844, 55.973798 ], [ 14.414062, 55.973798 ], [ 14.414062, 55.776573 ], [ 14.238281, 55.776573 ], [ 14.238281, 55.478853 ], [ 14.062500, 55.478853 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 13.007812, 55.578345 ], [ 12.832031, 55.578345 ], [ 12.832031, 55.973798 ], [ 12.656250, 55.973798 ], [ 12.656250, 56.365250 ], [ 12.480469, 56.365250 ], [ 12.480469, 56.559482 ], [ 12.304688, 56.559482 ], [ 12.304688, 56.848972 ], [ 12.128906, 56.848972 ], [ 12.128906, 57.040730 ], [ 11.953125, 57.040730 ], [ 11.953125, 57.231503 ], [ 11.777344, 57.231503 ], [ 11.777344, 57.515823 ], [ 11.601562, 57.515823 ], [ 11.601562, 57.891497 ], [ 11.425781, 57.891497 ], [ 11.425781, 58.263287 ], [ 11.250000, 58.263287 ], [ 11.250000, 58.631217 ], [ 11.074219, 58.631217 ], [ 11.074219, 58.904646 ], [ 11.250000, 58.904646 ], [ 11.250000, 59.265881 ], [ 11.425781, 59.265881 ], [ 11.425781, 59.445075 ], [ 11.601562, 59.445075 ], [ 11.601562, 59.623325 ], [ 11.777344, 59.623325 ], [ 11.777344, 59.800634 ], [ 11.953125, 59.800634 ], [ 11.953125, 59.888937 ], [ 12.128906, 59.888937 ], [ 12.128906, 60.064840 ], [ 12.304688, 60.064840 ], [ 12.304688, 60.413852 ], [ 12.480469, 60.413852 ], [ 12.480469, 60.930432 ], [ 12.656250, 60.930432 ], [ 12.656250, 61.270233 ], [ 12.480469, 61.270233 ], [ 12.480469, 61.438767 ], [ 12.304688, 61.438767 ], [ 12.304688, 61.522695 ], [ 12.128906, 61.522695 ], [ 12.128906, 61.689872 ], [ 11.953125, 61.689872 ], [ 11.953125, 63.233627 ], [ 12.128906, 63.233627 ], [ 12.128906, 63.470145 ], [ 12.304688, 63.470145 ], [ 12.304688, 63.704722 ], [ 12.480469, 63.704722 ], [ 12.480469, 63.937372 ], [ 12.656250, 63.937372 ], [ 12.656250, 64.091408 ], [ 13.007812, 64.091408 ], [ 13.007812, 64.014496 ], [ 13.535156, 64.014496 ], [ 13.535156, 64.091408 ], [ 13.710938, 64.091408 ], [ 13.710938, 64.320872 ], [ 13.886719, 64.320872 ], [ 13.886719, 64.548440 ], [ 13.710938, 64.548440 ], [ 13.710938, 64.699105 ], [ 13.535156, 64.699105 ], [ 13.535156, 64.848937 ], [ 13.710938, 64.848937 ], [ 13.710938, 64.997939 ], [ 13.886719, 64.997939 ], [ 13.886719, 65.146115 ], [ 14.062500, 65.146115 ], [ 14.062500, 65.293468 ], [ 14.238281, 65.293468 ], [ 14.238281, 65.440002 ], [ 14.414062, 65.440002 ], [ 14.414062, 65.585720 ], [ 14.589844, 65.585720 ], [ 14.589844, 65.730626 ], [ 14.765625, 65.730626 ], [ 14.765625, 65.874725 ], [ 14.941406, 65.874725 ], [ 14.941406, 66.018018 ], [ 15.117188, 66.018018 ], [ 15.117188, 66.231457 ], [ 15.292969, 66.231457 ], [ 15.292969, 66.513260 ], [ 15.468750, 66.513260 ], [ 15.468750, 66.722541 ], [ 15.644531, 66.722541 ], [ 15.644531, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.018018 ], [ 23.554688, 66.018018 ], [ 23.554688, 65.946472 ], [ 23.203125, 65.946472 ], [ 23.203125, 65.874725 ], [ 22.851562, 65.874725 ], [ 22.851562, 65.802776 ], [ 22.500000, 65.802776 ], [ 22.500000, 65.730626 ], [ 22.148438, 65.730626 ], [ 22.148438, 65.658275 ], [ 21.972656, 65.658275 ], [ 21.972656, 65.512963 ], [ 21.796875, 65.512963 ], [ 21.796875, 65.440002 ], [ 21.621094, 65.440002 ], [ 21.621094, 65.293468 ], [ 21.445312, 65.293468 ], [ 21.445312, 65.219894 ], [ 21.269531, 65.219894 ], [ 21.269531, 65.072130 ], [ 21.093750, 65.072130 ], [ 21.093750, 64.774125 ], [ 21.269531, 64.774125 ], [ 21.269531, 64.396938 ], [ 21.093750, 64.396938 ], [ 21.093750, 64.320872 ], [ 20.917969, 64.320872 ], [ 20.917969, 64.168107 ], [ 20.742188, 64.168107 ], [ 20.742188, 64.091408 ], [ 20.566406, 64.091408 ], [ 20.566406, 64.014496 ], [ 20.390625, 64.014496 ], [ 20.390625, 63.937372 ], [ 20.214844, 63.937372 ], [ 20.214844, 63.860036 ], [ 20.039062, 63.860036 ], [ 20.039062, 63.704722 ], [ 19.863281, 63.704722 ], [ 19.863281, 63.626745 ], [ 19.687500, 63.626745 ], [ 19.687500, 63.548552 ], [ 19.511719, 63.548552 ], [ 19.511719, 63.470145 ], [ 19.335938, 63.470145 ], [ 19.335938, 63.391522 ], [ 19.160156, 63.391522 ], [ 19.160156, 63.312683 ], [ 18.984375, 63.312683 ], [ 18.984375, 63.233627 ], [ 18.808594, 63.233627 ], [ 18.808594, 63.154355 ], [ 18.632812, 63.154355 ], [ 18.632812, 63.074866 ], [ 18.457031, 63.074866 ], [ 18.457031, 62.995158 ], [ 18.281250, 62.995158 ], [ 18.281250, 62.915233 ], [ 18.105469, 62.915233 ], [ 18.105469, 62.835089 ], [ 17.929688, 62.835089 ], [ 17.929688, 62.754726 ], [ 17.753906, 62.754726 ], [ 17.753906, 62.512318 ], [ 17.578125, 62.512318 ], [ 17.578125, 62.186014 ], [ 17.402344, 62.186014 ], [ 17.402344, 61.856149 ], [ 17.226562, 61.856149 ], [ 17.226562, 61.522695 ], [ 17.050781, 61.522695 ], [ 17.050781, 61.270233 ], [ 17.226562, 61.270233 ], [ 17.226562, 61.100789 ], [ 17.402344, 61.100789 ], [ 17.402344, 60.930432 ], [ 17.578125, 60.930432 ], [ 17.578125, 60.759160 ], [ 17.753906, 60.759160 ], [ 17.753906, 60.586967 ], [ 17.929688, 60.586967 ], [ 17.929688, 60.500525 ], [ 18.105469, 60.500525 ], [ 18.105469, 60.413852 ], [ 18.281250, 60.413852 ], [ 18.281250, 60.239811 ], [ 18.457031, 60.239811 ], [ 18.457031, 60.152442 ], [ 18.632812, 60.152442 ], [ 18.632812, 59.977005 ], [ 18.457031, 59.977005 ], [ 18.457031, 59.800634 ], [ 18.281250, 59.800634 ], [ 18.281250, 59.534318 ], [ 18.105469, 59.534318 ], [ 18.105469, 59.265881 ], [ 17.929688, 59.265881 ], [ 17.929688, 59.085739 ], [ 17.753906, 59.085739 ], [ 17.753906, 58.904646 ], [ 17.402344, 58.904646 ], [ 17.402344, 58.813742 ], [ 17.050781, 58.813742 ], [ 17.050781, 58.722599 ], [ 16.699219, 58.722599 ], [ 16.699219, 58.263287 ], [ 16.523438, 58.263287 ], [ 16.523438, 57.421294 ], [ 16.347656, 57.421294 ], [ 16.347656, 56.848972 ], [ 16.171875, 56.848972 ], [ 16.171875, 56.559482 ], [ 15.996094, 56.559482 ], [ 15.996094, 56.267761 ], [ 15.820312, 56.267761 ], [ 15.820312, 56.170023 ], [ 15.117188, 56.170023 ], [ 15.117188, 56.267761 ], [ 14.589844, 56.267761 ], [ 14.589844, 56.072035 ], [ 14.414062, 56.072035 ], [ 14.414062, 55.875311 ], [ 14.238281, 55.875311 ], [ 14.238281, 55.578345 ], [ 14.062500, 55.578345 ], [ 14.062500, 55.478853 ], [ 13.535156, 55.478853 ], [ 13.535156, 55.379110 ], [ 12.832031, 55.379110 ], [ 12.832031, 55.578345 ], [ 12.656250, 55.578345 ], [ 12.656250, 56.072035 ], [ 12.480469, 56.072035 ], [ 12.480469, 56.462490 ], [ 12.304688, 56.462490 ], [ 12.304688, 56.752723 ], [ 12.128906, 56.752723 ], [ 12.128906, 57.040730 ], [ 11.953125, 57.040730 ], [ 11.953125, 57.326521 ], [ 11.777344, 57.326521 ], [ 11.777344, 57.610107 ], [ 11.601562, 57.610107 ], [ 11.601562, 57.891497 ], [ 11.425781, 57.891497 ], [ 11.425781, 58.170702 ], [ 11.250000, 58.170702 ], [ 11.250000, 58.447733 ], [ 11.074219, 58.447733 ], [ 11.074219, 58.722599 ], [ 10.898438, 58.722599 ], [ 10.898438, 58.995311 ], [ 11.074219, 58.995311 ], [ 11.074219, 59.175928 ], [ 11.250000, 59.175928 ], [ 11.250000, 59.355596 ], [ 11.425781, 59.355596 ], [ 11.425781, 59.534318 ], [ 11.601562, 59.534318 ], [ 11.601562, 59.712097 ], [ 11.777344, 59.712097 ], [ 11.777344, 59.888937 ], [ 11.953125, 59.888937 ], [ 11.953125, 60.064840 ], [ 12.128906, 60.064840 ], [ 12.128906, 60.413852 ], [ 12.304688, 60.413852 ], [ 12.304688, 61.015725 ], [ 12.480469, 61.015725 ], [ 12.480469, 61.438767 ], [ 12.304688, 61.438767 ], [ 12.304688, 61.606396 ], [ 12.128906, 61.606396 ], [ 12.128906, 61.773123 ], [ 11.953125, 61.773123 ], [ 11.953125, 62.512318 ], [ 11.777344, 62.512318 ], [ 11.777344, 63.233627 ], [ 11.953125, 63.233627 ], [ 11.953125, 63.470145 ], [ 12.128906, 63.470145 ], [ 12.128906, 63.704722 ], [ 12.304688, 63.704722 ], [ 12.304688, 63.937372 ], [ 12.480469, 63.937372 ], [ 12.480469, 64.091408 ], [ 13.535156, 64.091408 ], [ 13.535156, 64.168107 ], [ 13.710938, 64.168107 ], [ 13.710938, 64.320872 ], [ 13.886719, 64.320872 ], [ 13.886719, 64.548440 ], [ 13.710938, 64.548440 ], [ 13.710938, 64.699105 ], [ 13.535156, 64.699105 ], [ 13.535156, 64.923542 ], [ 13.710938, 64.923542 ], [ 13.710938, 65.072130 ], [ 13.886719, 65.072130 ], [ 13.886719, 65.219894 ], [ 14.062500, 65.219894 ], [ 14.062500, 65.440002 ], [ 14.238281, 65.440002 ], [ 14.238281, 65.585720 ], [ 14.414062, 65.585720 ], [ 14.414062, 65.802776 ], [ 14.589844, 65.802776 ], [ 14.589844, 65.946472 ], [ 14.765625, 65.946472 ], [ 14.765625, 66.089364 ], [ 14.941406, 66.089364 ], [ 14.941406, 66.302205 ], [ 15.117188, 66.302205 ], [ 15.117188, 66.443107 ], [ 15.292969, 66.443107 ], [ 15.292969, 66.583217 ], [ 15.468750, 66.583217 ], [ 15.468750, 66.722541 ], [ 15.644531, 66.722541 ], [ 15.644531, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.328125, 53.540307 ], [ 6.328125, 53.435719 ], [ 6.855469, 53.435719 ], [ 6.855469, 53.225768 ], [ 7.031250, 53.225768 ], [ 7.031250, 52.696361 ], [ 6.855469, 52.696361 ], [ 6.855469, 52.160455 ], [ 6.679688, 52.160455 ], [ 6.679688, 51.944265 ], [ 6.503906, 51.944265 ], [ 6.503906, 51.835778 ], [ 5.976562, 51.835778 ], [ 5.976562, 51.289406 ], [ 6.152344, 51.289406 ], [ 6.152344, 50.847573 ], [ 5.976562, 50.847573 ], [ 5.976562, 50.958427 ], [ 5.625000, 50.958427 ], [ 5.625000, 51.069017 ], [ 5.449219, 51.069017 ], [ 5.449219, 51.179343 ], [ 5.273438, 51.179343 ], [ 5.273438, 51.289406 ], [ 5.097656, 51.289406 ], [ 5.097656, 51.399206 ], [ 4.921875, 51.399206 ], [ 4.921875, 51.508742 ], [ 4.746094, 51.508742 ], [ 4.746094, 51.399206 ], [ 4.394531, 51.399206 ], [ 4.394531, 51.289406 ], [ 3.515625, 51.289406 ], [ 3.515625, 51.508742 ], [ 3.867188, 51.508742 ], [ 3.867188, 51.727028 ], [ 4.042969, 51.727028 ], [ 4.042969, 52.052490 ], [ 4.218750, 52.052490 ], [ 4.218750, 52.375599 ], [ 4.394531, 52.375599 ], [ 4.394531, 52.589701 ], [ 4.570312, 52.589701 ], [ 4.570312, 52.908902 ], [ 4.746094, 52.908902 ], [ 4.746094, 53.120405 ], [ 5.097656, 53.120405 ], [ 5.097656, 53.225768 ], [ 5.449219, 53.225768 ], [ 5.449219, 53.330873 ], [ 5.800781, 53.330873 ], [ 5.800781, 53.435719 ], [ 6.152344, 53.435719 ], [ 6.152344, 53.540307 ], [ 6.328125, 53.540307 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.855469, 53.540307 ], [ 6.855469, 53.330873 ], [ 7.031250, 53.330873 ], [ 7.031250, 52.908902 ], [ 6.855469, 52.908902 ], [ 6.855469, 52.482780 ], [ 6.679688, 52.482780 ], [ 6.679688, 52.052490 ], [ 6.503906, 52.052490 ], [ 6.503906, 51.944265 ], [ 5.976562, 51.944265 ], [ 5.976562, 51.399206 ], [ 6.152344, 51.399206 ], [ 6.152344, 50.847573 ], [ 5.800781, 50.847573 ], [ 5.800781, 50.958427 ], [ 5.449219, 50.958427 ], [ 5.449219, 51.069017 ], [ 5.273438, 51.069017 ], [ 5.273438, 51.289406 ], [ 5.097656, 51.289406 ], [ 5.097656, 51.399206 ], [ 4.921875, 51.399206 ], [ 4.921875, 51.508742 ], [ 4.746094, 51.508742 ], [ 4.746094, 51.399206 ], [ 4.394531, 51.399206 ], [ 4.394531, 51.289406 ], [ 3.515625, 51.289406 ], [ 3.515625, 51.399206 ], [ 3.339844, 51.399206 ], [ 3.339844, 51.508742 ], [ 3.515625, 51.508742 ], [ 3.515625, 51.618017 ], [ 3.691406, 51.618017 ], [ 3.691406, 51.835778 ], [ 3.867188, 51.835778 ], [ 3.867188, 52.052490 ], [ 4.042969, 52.052490 ], [ 4.042969, 52.375599 ], [ 4.218750, 52.375599 ], [ 4.218750, 52.696361 ], [ 4.394531, 52.696361 ], [ 4.394531, 52.908902 ], [ 4.570312, 52.908902 ], [ 4.570312, 53.120405 ], [ 4.921875, 53.120405 ], [ 4.921875, 53.225768 ], [ 5.273438, 53.225768 ], [ 5.273438, 53.330873 ], [ 5.625000, 53.330873 ], [ 5.625000, 53.435719 ], [ 5.976562, 53.435719 ], [ 5.976562, 53.540307 ], [ 6.855469, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 4.921875, 51.399206 ], [ 5.097656, 51.399206 ], [ 5.097656, 51.289406 ], [ 5.273438, 51.289406 ], [ 5.273438, 51.179343 ], [ 5.449219, 51.179343 ], [ 5.449219, 51.069017 ], [ 5.625000, 51.069017 ], [ 5.625000, 50.958427 ], [ 5.976562, 50.958427 ], [ 5.976562, 50.847573 ], [ 6.152344, 50.847573 ], [ 6.152344, 50.513427 ], [ 5.976562, 50.513427 ], [ 5.976562, 50.064192 ], [ 5.800781, 50.064192 ], [ 5.800781, 49.724479 ], [ 5.625000, 49.724479 ], [ 5.625000, 49.496675 ], [ 5.449219, 49.496675 ], [ 5.449219, 49.610710 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.724479 ], [ 4.921875, 49.724479 ], [ 4.921875, 49.837982 ], [ 4.746094, 49.837982 ], [ 4.746094, 49.951220 ], [ 4.042969, 49.951220 ], [ 4.042969, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 50.176898 ], [ 3.691406, 50.176898 ], [ 3.691406, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.401515 ], [ 3.339844, 50.401515 ], [ 3.339844, 50.625073 ], [ 3.164062, 50.625073 ], [ 3.164062, 50.736455 ], [ 2.812500, 50.736455 ], [ 2.812500, 50.847573 ], [ 2.636719, 50.847573 ], [ 2.636719, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.812500, 51.179343 ], [ 2.812500, 51.289406 ], [ 3.164062, 51.289406 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ], [ 3.515625, 51.289406 ], [ 4.394531, 51.289406 ], [ 4.394531, 51.399206 ], [ 4.746094, 51.399206 ], [ 4.746094, 51.508742 ], [ 4.921875, 51.508742 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.921875, 51.508742 ], [ 4.921875, 51.399206 ], [ 5.097656, 51.399206 ], [ 5.097656, 51.289406 ], [ 5.273438, 51.289406 ], [ 5.273438, 51.069017 ], [ 5.449219, 51.069017 ], [ 5.449219, 50.958427 ], [ 5.800781, 50.958427 ], [ 5.800781, 50.847573 ], [ 6.152344, 50.847573 ], [ 6.152344, 50.513427 ], [ 5.976562, 50.513427 ], [ 5.976562, 50.176898 ], [ 5.625000, 50.176898 ], [ 5.625000, 49.610710 ], [ 5.449219, 49.610710 ], [ 5.449219, 49.724479 ], [ 5.273438, 49.724479 ], [ 5.273438, 49.837982 ], [ 4.921875, 49.837982 ], [ 4.921875, 49.951220 ], [ 4.746094, 49.951220 ], [ 4.746094, 50.064192 ], [ 4.570312, 50.064192 ], [ 4.570312, 49.951220 ], [ 4.042969, 49.951220 ], [ 4.042969, 50.064192 ], [ 3.867188, 50.064192 ], [ 3.867188, 50.176898 ], [ 3.691406, 50.176898 ], [ 3.691406, 50.289339 ], [ 3.515625, 50.289339 ], [ 3.515625, 50.401515 ], [ 3.339844, 50.401515 ], [ 3.339844, 50.625073 ], [ 3.164062, 50.625073 ], [ 3.164062, 50.736455 ], [ 2.988281, 50.736455 ], [ 2.988281, 50.847573 ], [ 2.636719, 50.847573 ], [ 2.636719, 50.958427 ], [ 2.460938, 50.958427 ], [ 2.460938, 51.179343 ], [ 2.812500, 51.179343 ], [ 2.812500, 51.289406 ], [ 3.164062, 51.289406 ], [ 3.164062, 51.399206 ], [ 3.515625, 51.399206 ], [ 3.515625, 51.289406 ], [ 4.394531, 51.289406 ], [ 4.394531, 51.399206 ], [ 4.746094, 51.399206 ], [ 4.746094, 51.508742 ], [ 4.921875, 51.508742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.152344, 50.064192 ], [ 6.152344, 49.951220 ], [ 6.328125, 49.951220 ], [ 6.328125, 49.724479 ], [ 6.152344, 49.724479 ], [ 6.152344, 49.496675 ], [ 5.625000, 49.496675 ], [ 5.625000, 49.724479 ], [ 5.800781, 49.724479 ], [ 5.800781, 50.064192 ], [ 6.152344, 50.064192 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.976562, 50.176898 ], [ 5.976562, 50.064192 ], [ 6.152344, 50.064192 ], [ 6.152344, 49.496675 ], [ 5.625000, 49.496675 ], [ 5.625000, 50.176898 ], [ 5.976562, 50.176898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.775346 ], [ 10.019531, 54.775346 ], [ 10.019531, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.470038 ], [ 10.546875, 54.470038 ], [ 10.546875, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.601562, 54.059388 ], [ 11.601562, 54.162434 ], [ 12.128906, 54.162434 ], [ 12.128906, 54.265224 ], [ 12.304688, 54.265224 ], [ 12.304688, 54.367759 ], [ 12.832031, 54.367759 ], [ 12.832031, 54.265224 ], [ 13.183594, 54.265224 ], [ 13.183594, 54.162434 ], [ 13.535156, 54.162434 ], [ 13.535156, 54.059388 ], [ 13.710938, 54.059388 ], [ 13.710938, 53.956086 ], [ 13.886719, 53.956086 ], [ 13.886719, 53.748711 ], [ 14.062500, 53.748711 ], [ 14.062500, 53.540307 ], [ 14.238281, 53.540307 ], [ 14.238281, 53.330873 ], [ 14.414062, 53.330873 ], [ 14.414062, 53.120405 ], [ 14.238281, 53.120405 ], [ 14.238281, 53.014783 ], [ 14.062500, 53.014783 ], [ 14.062500, 52.908902 ], [ 14.238281, 52.908902 ], [ 14.238281, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.375599 ], [ 14.589844, 52.375599 ], [ 14.589844, 52.160455 ], [ 14.765625, 52.160455 ], [ 14.765625, 51.835778 ], [ 14.589844, 51.835778 ], [ 14.589844, 51.508742 ], [ 14.765625, 51.508742 ], [ 14.765625, 51.179343 ], [ 14.941406, 51.179343 ], [ 14.941406, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 50.847573 ], [ 13.710938, 50.847573 ], [ 13.710938, 50.736455 ], [ 13.359375, 50.736455 ], [ 13.359375, 50.625073 ], [ 13.183594, 50.625073 ], [ 13.183594, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.401515 ], [ 12.656250, 50.401515 ], [ 12.656250, 50.289339 ], [ 12.304688, 50.289339 ], [ 12.304688, 50.064192 ], [ 12.480469, 50.064192 ], [ 12.480469, 49.382373 ], [ 12.832031, 49.382373 ], [ 12.832031, 49.267805 ], [ 13.007812, 49.267805 ], [ 13.007812, 49.152970 ], [ 13.183594, 49.152970 ], [ 13.183594, 49.037868 ], [ 13.359375, 49.037868 ], [ 13.359375, 48.922499 ], [ 13.535156, 48.922499 ], [ 13.535156, 48.806863 ], [ 13.359375, 48.806863 ], [ 13.359375, 48.574790 ], [ 13.183594, 48.574790 ], [ 13.183594, 48.341646 ], [ 12.832031, 48.341646 ], [ 12.832031, 47.989922 ], [ 13.007812, 47.989922 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.635784 ], [ 12.304688, 47.635784 ], [ 12.304688, 47.754098 ], [ 12.128906, 47.754098 ], [ 12.128906, 47.635784 ], [ 11.777344, 47.635784 ], [ 11.777344, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.398349 ], [ 10.371094, 47.398349 ], [ 10.371094, 47.279229 ], [ 10.195312, 47.279229 ], [ 10.195312, 47.398349 ], [ 10.019531, 47.398349 ], [ 10.019531, 47.517201 ], [ 9.316406, 47.517201 ], [ 9.316406, 47.635784 ], [ 8.964844, 47.635784 ], [ 8.964844, 47.754098 ], [ 8.613281, 47.754098 ], [ 8.613281, 47.872144 ], [ 8.437500, 47.872144 ], [ 8.437500, 47.754098 ], [ 8.261719, 47.754098 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.382812, 47.989922 ], [ 7.558594, 47.989922 ], [ 7.558594, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 48.690960 ], [ 7.910156, 48.690960 ], [ 7.910156, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 49.037868 ], [ 7.207031, 49.037868 ], [ 7.207031, 49.152970 ], [ 6.503906, 49.152970 ], [ 6.503906, 49.267805 ], [ 6.328125, 49.267805 ], [ 6.328125, 49.382373 ], [ 6.152344, 49.382373 ], [ 6.152344, 49.724479 ], [ 6.328125, 49.724479 ], [ 6.328125, 49.951220 ], [ 6.152344, 49.951220 ], [ 6.152344, 50.064192 ], [ 5.976562, 50.064192 ], [ 5.976562, 50.513427 ], [ 6.152344, 50.513427 ], [ 6.152344, 51.289406 ], [ 5.976562, 51.289406 ], [ 5.976562, 51.835778 ], [ 6.503906, 51.835778 ], [ 6.503906, 51.944265 ], [ 6.679688, 51.944265 ], [ 6.679688, 52.160455 ], [ 6.855469, 52.160455 ], [ 6.855469, 52.696361 ], [ 7.031250, 52.696361 ], [ 7.031250, 53.225768 ], [ 6.855469, 53.225768 ], [ 6.855469, 53.540307 ], [ 7.031250, 53.540307 ], [ 7.031250, 53.644638 ], [ 7.558594, 53.644638 ], [ 7.558594, 53.748711 ], [ 7.910156, 53.748711 ], [ 7.910156, 53.644638 ], [ 8.085938, 53.644638 ], [ 8.085938, 53.540307 ], [ 8.261719, 53.540307 ], [ 8.261719, 53.644638 ], [ 8.437500, 53.644638 ], [ 8.437500, 53.852527 ], [ 8.613281, 53.852527 ], [ 8.613281, 53.956086 ], [ 8.789062, 53.956086 ], [ 8.789062, 54.162434 ], [ 8.613281, 54.162434 ], [ 8.613281, 54.977614 ], [ 8.789062, 54.977614 ], [ 8.789062, 54.876607 ], [ 9.667969, 54.876607 ], [ 9.667969, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.843750, 54.977614 ], [ 9.843750, 54.572062 ], [ 10.195312, 54.572062 ], [ 10.195312, 54.470038 ], [ 10.546875, 54.470038 ], [ 10.546875, 54.367759 ], [ 10.898438, 54.367759 ], [ 10.898438, 54.059388 ], [ 11.250000, 54.059388 ], [ 11.250000, 54.162434 ], [ 11.777344, 54.162434 ], [ 11.777344, 54.265224 ], [ 12.128906, 54.265224 ], [ 12.128906, 54.367759 ], [ 12.832031, 54.367759 ], [ 12.832031, 54.265224 ], [ 13.183594, 54.265224 ], [ 13.183594, 54.162434 ], [ 13.535156, 54.162434 ], [ 13.535156, 54.059388 ], [ 13.710938, 54.059388 ], [ 13.710938, 53.956086 ], [ 13.886719, 53.956086 ], [ 13.886719, 53.852527 ], [ 14.062500, 53.852527 ], [ 14.062500, 53.540307 ], [ 14.238281, 53.540307 ], [ 14.238281, 53.120405 ], [ 14.062500, 53.120405 ], [ 14.062500, 52.908902 ], [ 14.238281, 52.908902 ], [ 14.238281, 52.696361 ], [ 14.414062, 52.696361 ], [ 14.414062, 52.375599 ], [ 14.589844, 52.375599 ], [ 14.589844, 51.618017 ], [ 14.765625, 51.618017 ], [ 14.765625, 51.289406 ], [ 14.941406, 51.289406 ], [ 14.941406, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 51.069017 ], [ 14.062500, 51.069017 ], [ 14.062500, 50.958427 ], [ 13.886719, 50.958427 ], [ 13.886719, 50.847573 ], [ 13.535156, 50.847573 ], [ 13.535156, 50.736455 ], [ 13.183594, 50.736455 ], [ 13.183594, 50.625073 ], [ 13.007812, 50.625073 ], [ 13.007812, 50.513427 ], [ 12.832031, 50.513427 ], [ 12.832031, 50.401515 ], [ 12.480469, 50.401515 ], [ 12.480469, 50.289339 ], [ 12.128906, 50.289339 ], [ 12.128906, 50.176898 ], [ 12.304688, 50.176898 ], [ 12.304688, 49.837982 ], [ 12.480469, 49.837982 ], [ 12.480469, 49.496675 ], [ 12.832031, 49.496675 ], [ 12.832031, 49.382373 ], [ 13.007812, 49.382373 ], [ 13.007812, 49.267805 ], [ 13.183594, 49.267805 ], [ 13.183594, 49.152970 ], [ 13.359375, 49.152970 ], [ 13.359375, 48.922499 ], [ 13.535156, 48.922499 ], [ 13.535156, 48.806863 ], [ 13.359375, 48.806863 ], [ 13.359375, 48.574790 ], [ 13.183594, 48.574790 ], [ 13.183594, 48.341646 ], [ 12.832031, 48.341646 ], [ 12.832031, 47.989922 ], [ 13.007812, 47.989922 ], [ 13.007812, 47.517201 ], [ 12.656250, 47.517201 ], [ 12.656250, 47.635784 ], [ 12.480469, 47.635784 ], [ 12.480469, 47.754098 ], [ 11.953125, 47.754098 ], [ 11.953125, 47.635784 ], [ 10.546875, 47.635784 ], [ 10.546875, 47.517201 ], [ 10.371094, 47.517201 ], [ 10.371094, 47.398349 ], [ 10.195312, 47.398349 ], [ 10.195312, 47.517201 ], [ 9.843750, 47.517201 ], [ 9.843750, 47.635784 ], [ 9.140625, 47.635784 ], [ 9.140625, 47.754098 ], [ 8.613281, 47.754098 ], [ 8.613281, 47.872144 ], [ 8.437500, 47.872144 ], [ 8.437500, 47.754098 ], [ 8.261719, 47.754098 ], [ 8.261719, 47.635784 ], [ 7.382812, 47.635784 ], [ 7.382812, 47.989922 ], [ 7.558594, 47.989922 ], [ 7.558594, 48.458352 ], [ 7.734375, 48.458352 ], [ 7.734375, 48.690960 ], [ 7.910156, 48.690960 ], [ 7.910156, 48.922499 ], [ 8.085938, 48.922499 ], [ 8.085938, 49.037868 ], [ 7.558594, 49.037868 ], [ 7.558594, 49.152970 ], [ 6.855469, 49.152970 ], [ 6.855469, 49.267805 ], [ 6.328125, 49.267805 ], [ 6.328125, 49.382373 ], [ 6.152344, 49.382373 ], [ 6.152344, 50.064192 ], [ 5.976562, 50.064192 ], [ 5.976562, 50.513427 ], [ 6.152344, 50.513427 ], [ 6.152344, 51.399206 ], [ 5.976562, 51.399206 ], [ 5.976562, 51.944265 ], [ 6.503906, 51.944265 ], [ 6.503906, 52.052490 ], [ 6.679688, 52.052490 ], [ 6.679688, 52.482780 ], [ 6.855469, 52.482780 ], [ 6.855469, 52.908902 ], [ 7.031250, 52.908902 ], [ 7.031250, 53.330873 ], [ 6.855469, 53.330873 ], [ 6.855469, 53.644638 ], [ 7.031250, 53.644638 ], [ 7.031250, 53.748711 ], [ 7.910156, 53.748711 ], [ 7.910156, 53.644638 ], [ 8.085938, 53.644638 ], [ 8.085938, 53.540307 ], [ 8.261719, 53.540307 ], [ 8.261719, 53.644638 ], [ 8.437500, 53.644638 ], [ 8.437500, 53.852527 ], [ 8.613281, 53.852527 ], [ 8.613281, 53.956086 ], [ 8.789062, 53.956086 ], [ 8.789062, 54.162434 ], [ 8.613281, 54.162434 ], [ 8.613281, 54.367759 ], [ 8.437500, 54.367759 ], [ 8.437500, 54.977614 ], [ 8.613281, 54.977614 ], [ 8.613281, 54.876607 ], [ 9.492188, 54.876607 ], [ 9.492188, 54.977614 ], [ 9.843750, 54.977614 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.855469, 47.398349 ], [ 7.207031, 47.398349 ], [ 7.207031, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.261719, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.872144 ], [ 8.613281, 47.872144 ], [ 8.613281, 47.754098 ], [ 8.964844, 47.754098 ], [ 8.964844, 47.635784 ], [ 9.316406, 47.635784 ], [ 9.316406, 47.517201 ], [ 9.667969, 47.517201 ], [ 9.667969, 47.279229 ], [ 9.492188, 47.279229 ], [ 9.492188, 47.040182 ], [ 9.843750, 47.040182 ], [ 9.843750, 46.920255 ], [ 10.371094, 46.920255 ], [ 10.371094, 46.437857 ], [ 10.195312, 46.437857 ], [ 10.195312, 46.316584 ], [ 9.316406, 46.316584 ], [ 9.316406, 46.437857 ], [ 9.140625, 46.437857 ], [ 9.140625, 46.195042 ], [ 8.964844, 46.195042 ], [ 8.964844, 46.073231 ], [ 8.789062, 46.073231 ], [ 8.789062, 45.951150 ], [ 8.437500, 45.951150 ], [ 8.437500, 46.073231 ], [ 8.085938, 46.073231 ], [ 8.085938, 45.951150 ], [ 7.910156, 45.951150 ], [ 7.910156, 45.828799 ], [ 6.855469, 45.828799 ], [ 6.855469, 46.073231 ], [ 6.679688, 46.073231 ], [ 6.679688, 46.316584 ], [ 6.503906, 46.316584 ], [ 6.503906, 46.437857 ], [ 6.328125, 46.437857 ], [ 6.328125, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.679594 ], [ 6.152344, 46.679594 ], [ 6.152344, 46.800059 ], [ 6.328125, 46.800059 ], [ 6.328125, 46.920255 ], [ 6.503906, 46.920255 ], [ 6.503906, 47.040182 ], [ 6.679688, 47.040182 ], [ 6.679688, 47.159840 ], [ 6.855469, 47.159840 ], [ 6.855469, 47.398349 ] ] ], [ [ [ 6.855469, 47.398349 ], [ 6.679688, 47.398349 ], [ 6.679688, 47.517201 ], [ 6.855469, 47.517201 ], [ 6.855469, 47.398349 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.613281, 47.872144 ], [ 8.613281, 47.754098 ], [ 9.140625, 47.754098 ], [ 9.140625, 47.635784 ], [ 9.492188, 47.635784 ], [ 9.492188, 47.279229 ], [ 9.316406, 47.279229 ], [ 9.316406, 47.040182 ], [ 9.667969, 47.040182 ], [ 9.667969, 46.920255 ], [ 10.371094, 46.920255 ], [ 10.371094, 46.679594 ], [ 10.195312, 46.679594 ], [ 10.195312, 46.437857 ], [ 10.019531, 46.437857 ], [ 10.019531, 46.316584 ], [ 9.492188, 46.316584 ], [ 9.492188, 46.437857 ], [ 9.140625, 46.437857 ], [ 9.140625, 46.316584 ], [ 8.964844, 46.316584 ], [ 8.964844, 46.073231 ], [ 8.085938, 46.073231 ], [ 8.085938, 45.951150 ], [ 7.910156, 45.951150 ], [ 7.910156, 45.828799 ], [ 7.031250, 45.828799 ], [ 7.031250, 45.951150 ], [ 6.679688, 45.951150 ], [ 6.679688, 46.073231 ], [ 6.503906, 46.073231 ], [ 6.503906, 46.316584 ], [ 5.976562, 46.316584 ], [ 5.976562, 46.800059 ], [ 6.152344, 46.800059 ], [ 6.152344, 46.920255 ], [ 6.328125, 46.920255 ], [ 6.328125, 47.159840 ], [ 6.503906, 47.159840 ], [ 6.503906, 47.279229 ], [ 6.679688, 47.279229 ], [ 6.679688, 47.517201 ], [ 7.382812, 47.517201 ], [ 7.382812, 47.635784 ], [ 8.261719, 47.635784 ], [ 8.261719, 47.754098 ], [ 8.437500, 47.754098 ], [ 8.437500, 47.872144 ], [ 8.613281, 47.872144 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.117188, 50.958427 ], [ 15.117188, 50.847573 ], [ 15.292969, 50.847573 ], [ 15.292969, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.289339 ], [ 16.523438, 50.289339 ], [ 16.523438, 50.176898 ], [ 16.699219, 50.176898 ], [ 16.699219, 50.289339 ], [ 16.875000, 50.289339 ], [ 16.875000, 50.513427 ], [ 17.050781, 50.513427 ], [ 17.050781, 50.401515 ], [ 17.578125, 50.401515 ], [ 17.578125, 50.064192 ], [ 17.929688, 50.064192 ], [ 17.929688, 49.951220 ], [ 18.457031, 49.951220 ], [ 18.457031, 49.837982 ], [ 18.632812, 49.837982 ], [ 18.632812, 49.610710 ], [ 18.808594, 49.610710 ], [ 18.808594, 49.496675 ], [ 18.632812, 49.496675 ], [ 18.632812, 49.382373 ], [ 18.457031, 49.382373 ], [ 18.457031, 49.267805 ], [ 18.105469, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 49.037868 ], [ 17.929688, 48.806863 ], [ 17.050781, 48.806863 ], [ 17.050781, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 48.574790 ], [ 16.699219, 48.574790 ], [ 16.699219, 48.690960 ], [ 16.523438, 48.690960 ], [ 16.523438, 48.806863 ], [ 16.347656, 48.806863 ], [ 16.347656, 48.690960 ], [ 15.820312, 48.690960 ], [ 15.820312, 48.806863 ], [ 15.468750, 48.806863 ], [ 15.468750, 48.922499 ], [ 14.941406, 48.922499 ], [ 14.941406, 48.806863 ], [ 14.765625, 48.806863 ], [ 14.765625, 48.690960 ], [ 14.589844, 48.690960 ], [ 14.589844, 48.574790 ], [ 14.238281, 48.574790 ], [ 14.238281, 48.690960 ], [ 13.886719, 48.690960 ], [ 13.886719, 48.806863 ], [ 13.535156, 48.806863 ], [ 13.535156, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.037868 ], [ 13.183594, 49.037868 ], [ 13.183594, 49.152970 ], [ 13.007812, 49.152970 ], [ 13.007812, 49.267805 ], [ 12.832031, 49.267805 ], [ 12.832031, 49.382373 ], [ 12.480469, 49.382373 ], [ 12.480469, 50.064192 ], [ 12.304688, 50.064192 ], [ 12.304688, 50.289339 ], [ 12.656250, 50.289339 ], [ 12.656250, 50.401515 ], [ 13.007812, 50.401515 ], [ 13.007812, 50.513427 ], [ 13.183594, 50.513427 ], [ 13.183594, 50.625073 ], [ 13.359375, 50.625073 ], [ 13.359375, 50.736455 ], [ 13.710938, 50.736455 ], [ 13.710938, 50.847573 ], [ 14.062500, 50.847573 ], [ 14.062500, 50.958427 ], [ 15.117188, 50.958427 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.941406, 51.179343 ], [ 14.941406, 51.069017 ], [ 15.117188, 51.069017 ], [ 15.117188, 50.958427 ], [ 15.292969, 50.958427 ], [ 15.292969, 50.847573 ], [ 15.644531, 50.847573 ], [ 15.644531, 50.736455 ], [ 16.171875, 50.736455 ], [ 16.171875, 50.401515 ], [ 16.523438, 50.401515 ], [ 16.523438, 50.289339 ], [ 16.699219, 50.289339 ], [ 16.699219, 50.513427 ], [ 16.875000, 50.513427 ], [ 16.875000, 50.401515 ], [ 17.402344, 50.401515 ], [ 17.402344, 50.176898 ], [ 17.578125, 50.176898 ], [ 17.578125, 50.064192 ], [ 18.281250, 50.064192 ], [ 18.281250, 49.951220 ], [ 18.457031, 49.951220 ], [ 18.457031, 49.724479 ], [ 18.632812, 49.724479 ], [ 18.632812, 49.496675 ], [ 18.457031, 49.496675 ], [ 18.457031, 49.382373 ], [ 18.105469, 49.382373 ], [ 18.105469, 49.037868 ], [ 17.753906, 49.037868 ], [ 17.753906, 48.806863 ], [ 16.875000, 48.806863 ], [ 16.875000, 48.690960 ], [ 16.523438, 48.690960 ], [ 16.523438, 48.806863 ], [ 15.644531, 48.806863 ], [ 15.644531, 48.922499 ], [ 15.292969, 48.922499 ], [ 15.292969, 49.037868 ], [ 14.765625, 49.037868 ], [ 14.765625, 48.922499 ], [ 14.589844, 48.922499 ], [ 14.589844, 48.806863 ], [ 14.414062, 48.806863 ], [ 14.414062, 48.574790 ], [ 14.062500, 48.574790 ], [ 14.062500, 48.690960 ], [ 13.710938, 48.690960 ], [ 13.710938, 48.806863 ], [ 13.535156, 48.806863 ], [ 13.535156, 48.922499 ], [ 13.359375, 48.922499 ], [ 13.359375, 49.152970 ], [ 13.183594, 49.152970 ], [ 13.183594, 49.267805 ], [ 13.007812, 49.267805 ], [ 13.007812, 49.382373 ], [ 12.832031, 49.382373 ], [ 12.832031, 49.496675 ], [ 12.480469, 49.496675 ], [ 12.480469, 49.837982 ], [ 12.304688, 49.837982 ], [ 12.304688, 50.176898 ], [ 12.128906, 50.176898 ], [ 12.128906, 50.289339 ], [ 12.480469, 50.289339 ], [ 12.480469, 50.401515 ], [ 12.832031, 50.401515 ], [ 12.832031, 50.513427 ], [ 13.007812, 50.513427 ], [ 13.007812, 50.625073 ], [ 13.183594, 50.625073 ], [ 13.183594, 50.736455 ], [ 13.535156, 50.736455 ], [ 13.535156, 50.847573 ], [ 13.886719, 50.847573 ], [ 13.886719, 50.958427 ], [ 14.062500, 50.958427 ], [ 14.062500, 51.069017 ], [ 14.765625, 51.069017 ], [ 14.765625, 51.179343 ], [ 14.941406, 51.179343 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.753906, 54.876607 ], [ 17.753906, 54.775346 ], [ 18.281250, 54.775346 ], [ 18.281250, 54.673831 ], [ 18.632812, 54.673831 ], [ 18.632812, 54.470038 ], [ 19.863281, 54.470038 ], [ 19.863281, 54.367759 ], [ 20.566406, 54.367759 ], [ 20.566406, 54.265224 ], [ 21.972656, 54.265224 ], [ 21.972656, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.265224 ], [ 23.203125, 54.265224 ], [ 23.203125, 54.162434 ], [ 23.378906, 54.162434 ], [ 23.378906, 53.956086 ], [ 23.554688, 53.956086 ], [ 23.554688, 53.225768 ], [ 23.730469, 53.225768 ], [ 23.730469, 52.589701 ], [ 23.378906, 52.589701 ], [ 23.378906, 52.482780 ], [ 23.203125, 52.482780 ], [ 23.203125, 52.375599 ], [ 23.378906, 52.375599 ], [ 23.378906, 52.160455 ], [ 23.554688, 52.160455 ], [ 23.554688, 51.399206 ], [ 23.730469, 51.399206 ], [ 23.730469, 51.179343 ], [ 23.906250, 51.179343 ], [ 23.906250, 50.847573 ], [ 24.082031, 50.847573 ], [ 24.082031, 50.513427 ], [ 23.906250, 50.513427 ], [ 23.906250, 50.401515 ], [ 23.730469, 50.401515 ], [ 23.730469, 50.289339 ], [ 23.378906, 50.289339 ], [ 23.378906, 50.176898 ], [ 23.203125, 50.176898 ], [ 23.203125, 49.951220 ], [ 23.027344, 49.951220 ], [ 23.027344, 49.837982 ], [ 22.851562, 49.837982 ], [ 22.851562, 49.724479 ], [ 22.675781, 49.724479 ], [ 22.675781, 49.496675 ], [ 22.500000, 49.496675 ], [ 22.500000, 49.382373 ], [ 22.675781, 49.382373 ], [ 22.675781, 49.152970 ], [ 22.851562, 49.152970 ], [ 22.851562, 49.037868 ], [ 22.324219, 49.037868 ], [ 22.324219, 49.152970 ], [ 22.148438, 49.152970 ], [ 22.148438, 49.267805 ], [ 21.796875, 49.267805 ], [ 21.796875, 49.382373 ], [ 21.621094, 49.382373 ], [ 21.621094, 49.496675 ], [ 21.445312, 49.496675 ], [ 21.445312, 49.382373 ], [ 20.214844, 49.382373 ], [ 20.214844, 49.267805 ], [ 19.687500, 49.267805 ], [ 19.687500, 49.382373 ], [ 19.511719, 49.382373 ], [ 19.511719, 49.496675 ], [ 19.160156, 49.496675 ], [ 19.160156, 49.382373 ], [ 18.808594, 49.382373 ], [ 18.808594, 49.610710 ], [ 18.632812, 49.610710 ], [ 18.632812, 49.837982 ], [ 18.457031, 49.837982 ], [ 18.457031, 49.951220 ], [ 17.929688, 49.951220 ], [ 17.929688, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.401515 ], [ 17.050781, 50.401515 ], [ 17.050781, 50.513427 ], [ 16.875000, 50.513427 ], [ 16.875000, 50.289339 ], [ 16.699219, 50.289339 ], [ 16.699219, 50.176898 ], [ 16.523438, 50.176898 ], [ 16.523438, 50.289339 ], [ 16.171875, 50.289339 ], [ 16.171875, 50.736455 ], [ 15.292969, 50.736455 ], [ 15.292969, 50.847573 ], [ 15.117188, 50.847573 ], [ 15.117188, 50.958427 ], [ 14.941406, 50.958427 ], [ 14.941406, 51.179343 ], [ 14.765625, 51.179343 ], [ 14.765625, 51.508742 ], [ 14.589844, 51.508742 ], [ 14.589844, 51.835778 ], [ 14.765625, 51.835778 ], [ 14.765625, 52.160455 ], [ 14.589844, 52.160455 ], [ 14.589844, 52.375599 ], [ 14.414062, 52.375599 ], [ 14.414062, 52.696361 ], [ 14.238281, 52.696361 ], [ 14.238281, 52.908902 ], [ 14.062500, 52.908902 ], [ 14.062500, 53.014783 ], [ 14.238281, 53.014783 ], [ 14.238281, 53.120405 ], [ 14.414062, 53.120405 ], [ 14.414062, 53.330873 ], [ 14.238281, 53.330873 ], [ 14.238281, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.748711 ], [ 14.238281, 53.748711 ], [ 14.238281, 53.852527 ], [ 14.589844, 53.852527 ], [ 14.589844, 53.956086 ], [ 14.765625, 53.956086 ], [ 14.765625, 54.059388 ], [ 15.117188, 54.059388 ], [ 15.117188, 54.162434 ], [ 15.468750, 54.162434 ], [ 15.468750, 54.265224 ], [ 15.820312, 54.265224 ], [ 15.820312, 54.367759 ], [ 16.171875, 54.367759 ], [ 16.171875, 54.470038 ], [ 16.523438, 54.470038 ], [ 16.523438, 54.572062 ], [ 16.875000, 54.572062 ], [ 16.875000, 54.673831 ], [ 17.226562, 54.673831 ], [ 17.226562, 54.775346 ], [ 17.578125, 54.775346 ], [ 17.578125, 54.876607 ], [ 17.753906, 54.876607 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.929688, 54.876607 ], [ 17.929688, 54.775346 ], [ 18.457031, 54.775346 ], [ 18.457031, 54.572062 ], [ 18.632812, 54.572062 ], [ 18.632812, 54.470038 ], [ 20.039062, 54.470038 ], [ 20.039062, 54.367759 ], [ 22.851562, 54.367759 ], [ 22.851562, 54.265224 ], [ 23.203125, 54.265224 ], [ 23.203125, 54.059388 ], [ 23.378906, 54.059388 ], [ 23.378906, 53.435719 ], [ 23.554688, 53.435719 ], [ 23.554688, 53.225768 ], [ 23.730469, 53.225768 ], [ 23.730469, 52.696361 ], [ 23.554688, 52.696361 ], [ 23.554688, 52.589701 ], [ 23.027344, 52.589701 ], [ 23.027344, 52.375599 ], [ 23.203125, 52.375599 ], [ 23.203125, 52.160455 ], [ 23.378906, 52.160455 ], [ 23.378906, 51.399206 ], [ 23.554688, 51.399206 ], [ 23.554688, 51.179343 ], [ 23.730469, 51.179343 ], [ 23.730469, 50.847573 ], [ 23.906250, 50.847573 ], [ 23.906250, 50.513427 ], [ 23.730469, 50.513427 ], [ 23.730469, 50.401515 ], [ 23.378906, 50.401515 ], [ 23.378906, 50.289339 ], [ 23.203125, 50.289339 ], [ 23.203125, 50.064192 ], [ 23.027344, 50.064192 ], [ 23.027344, 49.951220 ], [ 22.851562, 49.951220 ], [ 22.851562, 49.724479 ], [ 22.675781, 49.724479 ], [ 22.675781, 49.496675 ], [ 22.500000, 49.496675 ], [ 22.500000, 49.267805 ], [ 22.675781, 49.267805 ], [ 22.675781, 49.037868 ], [ 22.500000, 49.037868 ], [ 22.500000, 49.152970 ], [ 22.148438, 49.152970 ], [ 22.148438, 49.267805 ], [ 21.796875, 49.267805 ], [ 21.796875, 49.382373 ], [ 21.445312, 49.382373 ], [ 21.445312, 49.496675 ], [ 21.269531, 49.496675 ], [ 21.269531, 49.382373 ], [ 20.039062, 49.382373 ], [ 20.039062, 49.267805 ], [ 19.511719, 49.267805 ], [ 19.511719, 49.382373 ], [ 19.335938, 49.382373 ], [ 19.335938, 49.496675 ], [ 18.632812, 49.496675 ], [ 18.632812, 49.724479 ], [ 18.457031, 49.724479 ], [ 18.457031, 49.951220 ], [ 18.281250, 49.951220 ], [ 18.281250, 50.064192 ], [ 17.578125, 50.064192 ], [ 17.578125, 50.176898 ], [ 17.402344, 50.176898 ], [ 17.402344, 50.401515 ], [ 16.875000, 50.401515 ], [ 16.875000, 50.513427 ], [ 16.699219, 50.513427 ], [ 16.699219, 50.289339 ], [ 16.523438, 50.289339 ], [ 16.523438, 50.401515 ], [ 16.171875, 50.401515 ], [ 16.171875, 50.736455 ], [ 15.644531, 50.736455 ], [ 15.644531, 50.847573 ], [ 15.292969, 50.847573 ], [ 15.292969, 50.958427 ], [ 15.117188, 50.958427 ], [ 15.117188, 51.069017 ], [ 14.941406, 51.069017 ], [ 14.941406, 51.289406 ], [ 14.765625, 51.289406 ], [ 14.765625, 51.618017 ], [ 14.589844, 51.618017 ], [ 14.589844, 52.375599 ], [ 14.414062, 52.375599 ], [ 14.414062, 52.696361 ], [ 14.238281, 52.696361 ], [ 14.238281, 52.908902 ], [ 14.062500, 52.908902 ], [ 14.062500, 53.120405 ], [ 14.238281, 53.120405 ], [ 14.238281, 53.540307 ], [ 14.062500, 53.540307 ], [ 14.062500, 53.852527 ], [ 14.414062, 53.852527 ], [ 14.414062, 53.956086 ], [ 14.765625, 53.956086 ], [ 14.765625, 54.059388 ], [ 14.941406, 54.059388 ], [ 14.941406, 54.162434 ], [ 15.292969, 54.162434 ], [ 15.292969, 54.265224 ], [ 15.644531, 54.265224 ], [ 15.644531, 54.367759 ], [ 15.996094, 54.367759 ], [ 15.996094, 54.470038 ], [ 16.347656, 54.470038 ], [ 16.347656, 54.572062 ], [ 16.699219, 54.572062 ], [ 16.699219, 54.673831 ], [ 17.050781, 54.673831 ], [ 17.050781, 54.775346 ], [ 17.402344, 54.775346 ], [ 17.402344, 54.876607 ], [ 17.929688, 54.876607 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.468750, 48.922499 ], [ 15.468750, 48.806863 ], [ 15.820312, 48.806863 ], [ 15.820312, 48.690960 ], [ 16.347656, 48.690960 ], [ 16.347656, 48.806863 ], [ 16.523438, 48.806863 ], [ 16.523438, 48.690960 ], [ 16.699219, 48.690960 ], [ 16.699219, 48.574790 ], [ 16.875000, 48.574790 ], [ 16.875000, 48.224673 ], [ 17.050781, 48.224673 ], [ 17.050781, 47.872144 ], [ 16.875000, 47.872144 ], [ 16.875000, 47.754098 ], [ 16.347656, 47.754098 ], [ 16.347656, 47.635784 ], [ 16.523438, 47.635784 ], [ 16.523438, 47.279229 ], [ 16.347656, 47.279229 ], [ 16.347656, 46.920255 ], [ 16.171875, 46.920255 ], [ 16.171875, 46.679594 ], [ 15.117188, 46.679594 ], [ 15.117188, 46.558860 ], [ 14.765625, 46.558860 ], [ 14.765625, 46.437857 ], [ 14.062500, 46.437857 ], [ 14.062500, 46.558860 ], [ 13.359375, 46.558860 ], [ 13.359375, 46.679594 ], [ 12.656250, 46.679594 ], [ 12.656250, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 46.920255 ], [ 12.128906, 46.920255 ], [ 12.128906, 47.159840 ], [ 11.953125, 47.159840 ], [ 11.953125, 47.040182 ], [ 11.601562, 47.040182 ], [ 11.601562, 46.920255 ], [ 11.250000, 46.920255 ], [ 11.250000, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.920255 ], [ 9.843750, 46.920255 ], [ 9.843750, 47.040182 ], [ 9.492188, 47.040182 ], [ 9.492188, 47.279229 ], [ 9.667969, 47.279229 ], [ 9.667969, 47.517201 ], [ 10.019531, 47.517201 ], [ 10.019531, 47.398349 ], [ 10.195312, 47.398349 ], [ 10.195312, 47.279229 ], [ 10.371094, 47.279229 ], [ 10.371094, 47.398349 ], [ 10.546875, 47.398349 ], [ 10.546875, 47.517201 ], [ 11.777344, 47.517201 ], [ 11.777344, 47.635784 ], [ 12.128906, 47.635784 ], [ 12.128906, 47.754098 ], [ 12.304688, 47.754098 ], [ 12.304688, 47.635784 ], [ 12.656250, 47.635784 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 47.989922 ], [ 12.832031, 47.989922 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.341646 ], [ 13.183594, 48.574790 ], [ 13.359375, 48.574790 ], [ 13.359375, 48.806863 ], [ 13.886719, 48.806863 ], [ 13.886719, 48.690960 ], [ 14.238281, 48.690960 ], [ 14.238281, 48.574790 ], [ 14.589844, 48.574790 ], [ 14.589844, 48.690960 ], [ 14.765625, 48.690960 ], [ 14.765625, 48.806863 ], [ 14.941406, 48.806863 ], [ 14.941406, 48.922499 ], [ 15.468750, 48.922499 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 49.037868 ], [ 15.292969, 48.922499 ], [ 15.644531, 48.922499 ], [ 15.644531, 48.806863 ], [ 16.523438, 48.806863 ], [ 16.523438, 48.690960 ], [ 16.875000, 48.690960 ], [ 16.875000, 47.754098 ], [ 16.171875, 47.754098 ], [ 16.171875, 47.635784 ], [ 16.347656, 47.635784 ], [ 16.347656, 47.517201 ], [ 16.523438, 47.517201 ], [ 16.523438, 47.279229 ], [ 16.347656, 47.279229 ], [ 16.347656, 47.040182 ], [ 16.171875, 47.040182 ], [ 16.171875, 46.800059 ], [ 15.644531, 46.800059 ], [ 15.644531, 46.679594 ], [ 15.117188, 46.679594 ], [ 15.117188, 46.558860 ], [ 14.765625, 46.558860 ], [ 14.765625, 46.437857 ], [ 14.062500, 46.437857 ], [ 14.062500, 46.558860 ], [ 13.183594, 46.558860 ], [ 13.183594, 46.679594 ], [ 12.480469, 46.679594 ], [ 12.480469, 46.800059 ], [ 12.304688, 46.800059 ], [ 12.304688, 46.920255 ], [ 12.128906, 46.920255 ], [ 12.128906, 47.159840 ], [ 11.777344, 47.159840 ], [ 11.777344, 47.040182 ], [ 11.074219, 47.040182 ], [ 11.074219, 46.920255 ], [ 10.898438, 46.920255 ], [ 10.898438, 46.800059 ], [ 10.546875, 46.800059 ], [ 10.546875, 46.920255 ], [ 9.667969, 46.920255 ], [ 9.667969, 47.040182 ], [ 9.316406, 47.040182 ], [ 9.316406, 47.279229 ], [ 9.492188, 47.279229 ], [ 9.492188, 47.635784 ], [ 9.843750, 47.635784 ], [ 9.843750, 47.517201 ], [ 10.195312, 47.517201 ], [ 10.195312, 47.398349 ], [ 10.371094, 47.398349 ], [ 10.371094, 47.517201 ], [ 10.546875, 47.517201 ], [ 10.546875, 47.635784 ], [ 11.953125, 47.635784 ], [ 11.953125, 47.754098 ], [ 12.480469, 47.754098 ], [ 12.480469, 47.635784 ], [ 12.656250, 47.635784 ], [ 12.656250, 47.517201 ], [ 13.007812, 47.517201 ], [ 13.007812, 47.989922 ], [ 12.832031, 47.989922 ], [ 12.832031, 48.341646 ], [ 13.183594, 48.341646 ], [ 13.183594, 48.574790 ], [ 13.359375, 48.574790 ], [ 13.359375, 48.806863 ], [ 13.710938, 48.806863 ], [ 13.710938, 48.690960 ], [ 14.062500, 48.690960 ], [ 14.062500, 48.574790 ], [ 14.414062, 48.574790 ], [ 14.414062, 48.806863 ], [ 14.589844, 48.806863 ], [ 14.589844, 48.922499 ], [ 14.765625, 48.922499 ], [ 14.765625, 49.037868 ], [ 15.292969, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.800059 ], [ 16.347656, 46.679594 ], [ 16.523438, 46.679594 ], [ 16.523438, 46.437857 ], [ 16.347656, 46.437857 ], [ 16.347656, 46.316584 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.195042 ], [ 15.820312, 46.195042 ], [ 15.820312, 45.951150 ], [ 15.644531, 45.951150 ], [ 15.644531, 45.706179 ], [ 15.292969, 45.706179 ], [ 15.292969, 45.460131 ], [ 13.886719, 45.460131 ], [ 13.886719, 45.828799 ], [ 13.710938, 45.828799 ], [ 13.710938, 46.316584 ], [ 13.886719, 46.316584 ], [ 13.886719, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.437857 ], [ 14.765625, 46.437857 ], [ 14.765625, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.679594 ], [ 16.171875, 46.679594 ], [ 16.171875, 46.800059 ], [ 16.347656, 46.800059 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.920255 ], [ 16.347656, 46.679594 ], [ 16.523438, 46.679594 ], [ 16.523438, 46.558860 ], [ 16.347656, 46.558860 ], [ 16.347656, 46.437857 ], [ 15.996094, 46.437857 ], [ 15.996094, 46.316584 ], [ 15.644531, 46.316584 ], [ 15.644531, 45.828799 ], [ 15.292969, 45.828799 ], [ 15.292969, 45.460131 ], [ 14.941406, 45.460131 ], [ 14.941406, 45.583290 ], [ 13.886719, 45.583290 ], [ 13.886719, 45.706179 ], [ 13.710938, 45.706179 ], [ 13.710938, 45.951150 ], [ 13.535156, 45.951150 ], [ 13.535156, 46.316584 ], [ 13.710938, 46.316584 ], [ 13.710938, 46.558860 ], [ 14.062500, 46.558860 ], [ 14.062500, 46.437857 ], [ 14.765625, 46.437857 ], [ 14.765625, 46.558860 ], [ 15.117188, 46.558860 ], [ 15.117188, 46.679594 ], [ 15.644531, 46.679594 ], [ 15.644531, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 46.920255 ], [ 16.347656, 46.920255 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.713956 ], [ 9.667969, 40.713956 ], [ 9.667969, 40.446947 ], [ 9.843750, 40.446947 ], [ 9.843750, 40.313043 ], [ 8.437500, 40.313043 ], [ 8.437500, 40.446947 ], [ 8.261719, 40.446947 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.261719, 40.979898 ], [ 8.261719, 40.847060 ], [ 8.964844, 40.847060 ], [ 8.964844, 41.112469 ], [ 9.316406, 41.112469 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.128906, 46.920255 ], [ 12.304688, 46.920255 ], [ 12.304688, 46.800059 ], [ 12.656250, 46.800059 ], [ 12.656250, 46.679594 ], [ 13.359375, 46.679594 ], [ 13.359375, 46.558860 ], [ 13.886719, 46.558860 ], [ 13.886719, 46.316584 ], [ 13.710938, 46.316584 ], [ 13.710938, 45.828799 ], [ 13.886719, 45.828799 ], [ 13.886719, 45.583290 ], [ 13.359375, 45.583290 ], [ 13.359375, 45.706179 ], [ 13.183594, 45.706179 ], [ 13.183594, 45.583290 ], [ 12.832031, 45.583290 ], [ 12.832031, 45.460131 ], [ 12.480469, 45.460131 ], [ 12.480469, 45.336702 ], [ 12.304688, 45.336702 ], [ 12.304688, 44.465151 ], [ 12.480469, 44.465151 ], [ 12.480469, 44.213710 ], [ 12.656250, 44.213710 ], [ 12.656250, 43.961191 ], [ 12.832031, 43.961191 ], [ 12.832031, 43.834527 ], [ 13.183594, 43.834527 ], [ 13.183594, 43.707594 ], [ 13.359375, 43.707594 ], [ 13.359375, 43.580391 ], [ 13.535156, 43.580391 ], [ 13.535156, 43.452919 ], [ 13.710938, 43.452919 ], [ 13.710938, 43.197167 ], [ 13.886719, 43.197167 ], [ 13.886719, 42.940339 ], [ 14.062500, 42.940339 ], [ 14.062500, 42.682435 ], [ 14.238281, 42.682435 ], [ 14.238281, 42.553080 ], [ 14.414062, 42.553080 ], [ 14.414062, 42.423457 ], [ 14.589844, 42.423457 ], [ 14.589844, 42.163403 ], [ 14.765625, 42.163403 ], [ 14.765625, 42.032974 ], [ 14.941406, 42.032974 ], [ 14.941406, 41.902277 ], [ 15.996094, 41.902277 ], [ 15.996094, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.640078 ], [ 15.996094, 41.640078 ], [ 15.996094, 41.376809 ], [ 16.347656, 41.376809 ], [ 16.347656, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.753906, 40.713956 ], [ 17.753906, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 17.050781, 40.313043 ], [ 17.050781, 40.446947 ], [ 16.875000, 40.446947 ], [ 16.875000, 40.313043 ], [ 14.941406, 40.313043 ], [ 14.941406, 40.446947 ], [ 14.765625, 40.446947 ], [ 14.765625, 40.580585 ], [ 14.414062, 40.580585 ], [ 14.414062, 40.713956 ], [ 14.062500, 40.713956 ], [ 14.062500, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 41.112469 ], [ 13.710938, 41.112469 ], [ 13.710938, 41.244772 ], [ 12.656250, 41.244772 ], [ 12.656250, 41.376809 ], [ 12.304688, 41.376809 ], [ 12.304688, 41.508577 ], [ 12.128906, 41.508577 ], [ 12.128906, 41.640078 ], [ 11.953125, 41.640078 ], [ 11.953125, 41.771312 ], [ 11.777344, 41.771312 ], [ 11.777344, 41.902277 ], [ 11.601562, 41.902277 ], [ 11.601562, 42.032974 ], [ 11.425781, 42.032974 ], [ 11.425781, 42.163403 ], [ 11.250000, 42.163403 ], [ 11.250000, 42.293564 ], [ 11.074219, 42.293564 ], [ 11.074219, 42.423457 ], [ 10.898438, 42.423457 ], [ 10.898438, 42.682435 ], [ 10.722656, 42.682435 ], [ 10.722656, 42.811522 ], [ 10.546875, 42.811522 ], [ 10.546875, 43.197167 ], [ 10.371094, 43.197167 ], [ 10.371094, 43.707594 ], [ 10.195312, 43.707594 ], [ 10.195312, 43.961191 ], [ 9.843750, 43.961191 ], [ 9.843750, 44.087585 ], [ 9.316406, 44.087585 ], [ 9.316406, 44.213710 ], [ 8.964844, 44.213710 ], [ 8.964844, 44.339565 ], [ 8.789062, 44.339565 ], [ 8.789062, 44.213710 ], [ 8.437500, 44.213710 ], [ 8.437500, 44.087585 ], [ 8.261719, 44.087585 ], [ 8.261719, 43.961191 ], [ 8.085938, 43.961191 ], [ 8.085938, 43.707594 ], [ 7.382812, 43.707594 ], [ 7.382812, 43.834527 ], [ 7.558594, 43.834527 ], [ 7.558594, 44.087585 ], [ 7.207031, 44.087585 ], [ 7.207031, 44.213710 ], [ 7.031250, 44.213710 ], [ 7.031250, 44.339565 ], [ 6.855469, 44.339565 ], [ 6.855469, 44.840291 ], [ 6.679688, 44.840291 ], [ 6.679688, 45.089036 ], [ 6.855469, 45.089036 ], [ 6.855469, 45.213004 ], [ 7.031250, 45.213004 ], [ 7.031250, 45.460131 ], [ 6.855469, 45.460131 ], [ 6.855469, 45.828799 ], [ 7.910156, 45.828799 ], [ 7.910156, 45.951150 ], [ 8.085938, 45.951150 ], [ 8.085938, 46.073231 ], [ 8.437500, 46.073231 ], [ 8.437500, 45.951150 ], [ 8.789062, 45.951150 ], [ 8.789062, 46.073231 ], [ 8.964844, 46.073231 ], [ 8.964844, 46.195042 ], [ 9.140625, 46.195042 ], [ 9.140625, 46.437857 ], [ 9.316406, 46.437857 ], [ 9.316406, 46.316584 ], [ 10.195312, 46.316584 ], [ 10.195312, 46.437857 ], [ 10.371094, 46.437857 ], [ 10.371094, 46.920255 ], [ 10.546875, 46.920255 ], [ 10.546875, 46.800059 ], [ 11.250000, 46.800059 ], [ 11.250000, 46.920255 ], [ 11.601562, 46.920255 ], [ 11.601562, 47.040182 ], [ 11.953125, 47.040182 ], [ 11.953125, 47.159840 ], [ 12.128906, 47.159840 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.316406, 41.112469 ], [ 9.316406, 40.847060 ], [ 9.492188, 40.847060 ], [ 9.492188, 40.580585 ], [ 9.667969, 40.580585 ], [ 9.667969, 40.313043 ], [ 8.261719, 40.313043 ], [ 8.261719, 40.713956 ], [ 8.085938, 40.713956 ], [ 8.085938, 40.979898 ], [ 8.789062, 40.979898 ], [ 8.789062, 41.112469 ], [ 9.316406, 41.112469 ] ] ], [ [ [ 12.128906, 47.159840 ], [ 12.128906, 46.920255 ], [ 12.304688, 46.920255 ], [ 12.304688, 46.800059 ], [ 12.480469, 46.800059 ], [ 12.480469, 46.679594 ], [ 13.183594, 46.679594 ], [ 13.183594, 46.558860 ], [ 13.710938, 46.558860 ], [ 13.710938, 46.316584 ], [ 13.535156, 46.316584 ], [ 13.535156, 45.951150 ], [ 13.710938, 45.951150 ], [ 13.710938, 45.706179 ], [ 13.359375, 45.706179 ], [ 13.359375, 45.828799 ], [ 13.007812, 45.828799 ], [ 13.007812, 45.706179 ], [ 12.832031, 45.706179 ], [ 12.832031, 45.583290 ], [ 12.480469, 45.583290 ], [ 12.480469, 45.460131 ], [ 12.304688, 45.460131 ], [ 12.304688, 44.840291 ], [ 12.128906, 44.840291 ], [ 12.128906, 44.590467 ], [ 12.304688, 44.590467 ], [ 12.304688, 44.339565 ], [ 12.480469, 44.339565 ], [ 12.480469, 44.087585 ], [ 12.656250, 44.087585 ], [ 12.656250, 43.961191 ], [ 13.007812, 43.961191 ], [ 13.007812, 43.834527 ], [ 13.183594, 43.834527 ], [ 13.183594, 43.707594 ], [ 13.359375, 43.707594 ], [ 13.359375, 43.452919 ], [ 13.535156, 43.452919 ], [ 13.535156, 43.197167 ], [ 13.710938, 43.197167 ], [ 13.710938, 42.940339 ], [ 13.886719, 42.940339 ], [ 13.886719, 42.682435 ], [ 14.062500, 42.682435 ], [ 14.062500, 42.553080 ], [ 14.238281, 42.553080 ], [ 14.238281, 42.423457 ], [ 14.589844, 42.423457 ], [ 14.589844, 42.293564 ], [ 14.765625, 42.293564 ], [ 14.765625, 42.163403 ], [ 14.941406, 42.163403 ], [ 14.941406, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.902277 ], [ 15.996094, 41.902277 ], [ 15.996094, 41.771312 ], [ 16.171875, 41.771312 ], [ 16.171875, 41.640078 ], [ 15.820312, 41.640078 ], [ 15.820312, 41.508577 ], [ 16.171875, 41.508577 ], [ 16.171875, 41.376809 ], [ 16.523438, 41.376809 ], [ 16.523438, 41.244772 ], [ 16.699219, 41.244772 ], [ 16.699219, 41.112469 ], [ 17.050781, 41.112469 ], [ 17.050781, 40.979898 ], [ 17.402344, 40.979898 ], [ 17.402344, 40.847060 ], [ 17.578125, 40.847060 ], [ 17.578125, 40.713956 ], [ 17.929688, 40.713956 ], [ 17.929688, 40.580585 ], [ 18.105469, 40.580585 ], [ 18.105469, 40.446947 ], [ 18.281250, 40.446947 ], [ 18.281250, 40.313043 ], [ 16.875000, 40.313043 ], [ 16.875000, 40.446947 ], [ 16.699219, 40.446947 ], [ 16.699219, 40.313043 ], [ 14.765625, 40.313043 ], [ 14.765625, 40.446947 ], [ 14.589844, 40.446947 ], [ 14.589844, 40.713956 ], [ 14.238281, 40.713956 ], [ 14.238281, 40.847060 ], [ 13.886719, 40.847060 ], [ 13.886719, 40.979898 ], [ 13.710938, 40.979898 ], [ 13.710938, 41.112469 ], [ 13.535156, 41.112469 ], [ 13.535156, 41.244772 ], [ 13.007812, 41.244772 ], [ 13.007812, 41.376809 ], [ 12.656250, 41.376809 ], [ 12.656250, 41.508577 ], [ 12.304688, 41.508577 ], [ 12.304688, 41.640078 ], [ 11.953125, 41.640078 ], [ 11.953125, 41.771312 ], [ 11.777344, 41.771312 ], [ 11.777344, 41.902277 ], [ 11.601562, 41.902277 ], [ 11.601562, 42.032974 ], [ 11.425781, 42.032974 ], [ 11.425781, 42.163403 ], [ 11.250000, 42.163403 ], [ 11.250000, 42.293564 ], [ 11.074219, 42.293564 ], [ 11.074219, 42.423457 ], [ 10.898438, 42.423457 ], [ 10.898438, 42.553080 ], [ 10.722656, 42.553080 ], [ 10.722656, 42.682435 ], [ 10.546875, 42.682435 ], [ 10.546875, 42.811522 ], [ 10.371094, 42.811522 ], [ 10.371094, 43.452919 ], [ 10.195312, 43.452919 ], [ 10.195312, 43.961191 ], [ 9.843750, 43.961191 ], [ 9.843750, 44.087585 ], [ 9.492188, 44.087585 ], [ 9.492188, 44.213710 ], [ 9.140625, 44.213710 ], [ 9.140625, 44.339565 ], [ 8.789062, 44.339565 ], [ 8.789062, 44.465151 ], [ 8.613281, 44.465151 ], [ 8.613281, 44.339565 ], [ 8.261719, 44.339565 ], [ 8.261719, 44.213710 ], [ 8.085938, 44.213710 ], [ 8.085938, 44.087585 ], [ 7.910156, 44.087585 ], [ 7.910156, 43.834527 ], [ 7.734375, 43.834527 ], [ 7.734375, 43.707594 ], [ 7.382812, 43.707594 ], [ 7.382812, 44.213710 ], [ 7.031250, 44.213710 ], [ 7.031250, 44.339565 ], [ 6.855469, 44.339565 ], [ 6.855469, 44.715514 ], [ 6.679688, 44.715514 ], [ 6.679688, 45.089036 ], [ 6.855469, 45.089036 ], [ 6.855469, 45.213004 ], [ 7.031250, 45.213004 ], [ 7.031250, 45.460131 ], [ 6.855469, 45.460131 ], [ 6.855469, 45.706179 ], [ 6.679688, 45.706179 ], [ 6.679688, 45.951150 ], [ 7.031250, 45.951150 ], [ 7.031250, 45.828799 ], [ 7.910156, 45.828799 ], [ 7.910156, 45.951150 ], [ 8.085938, 45.951150 ], [ 8.085938, 46.073231 ], [ 8.964844, 46.073231 ], [ 8.964844, 46.316584 ], [ 9.140625, 46.316584 ], [ 9.140625, 46.437857 ], [ 9.492188, 46.437857 ], [ 9.492188, 46.316584 ], [ 10.019531, 46.316584 ], [ 10.019531, 46.437857 ], [ 10.195312, 46.437857 ], [ 10.195312, 46.679594 ], [ 10.371094, 46.679594 ], [ 10.371094, 46.920255 ], [ 10.546875, 46.920255 ], [ 10.546875, 46.800059 ], [ 10.898438, 46.800059 ], [ 10.898438, 46.920255 ], [ 11.074219, 46.920255 ], [ 11.074219, 47.040182 ], [ 11.777344, 47.040182 ], [ 11.777344, 47.159840 ], [ 12.128906, 47.159840 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.875000, 46.437857 ], [ 16.875000, 46.316584 ], [ 17.050781, 46.316584 ], [ 17.050781, 46.195042 ], [ 17.226562, 46.195042 ], [ 17.226562, 46.073231 ], [ 17.402344, 46.073231 ], [ 17.402344, 45.951150 ], [ 17.753906, 45.951150 ], [ 17.753906, 45.828799 ], [ 18.105469, 45.828799 ], [ 18.105469, 45.706179 ], [ 18.632812, 45.706179 ], [ 18.632812, 45.828799 ], [ 18.984375, 45.828799 ], [ 18.984375, 45.583290 ], [ 19.160156, 45.583290 ], [ 19.160156, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.089036 ], [ 19.160156, 45.089036 ], [ 19.160156, 44.840291 ], [ 18.808594, 44.840291 ], [ 18.808594, 44.964798 ], [ 18.632812, 44.964798 ], [ 18.632812, 45.089036 ], [ 17.402344, 45.089036 ], [ 17.402344, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.523438, 45.089036 ], [ 16.347656, 45.089036 ], [ 16.347656, 44.964798 ], [ 16.171875, 44.964798 ], [ 16.171875, 45.089036 ], [ 15.996094, 45.089036 ], [ 15.996094, 44.964798 ], [ 15.820312, 44.964798 ], [ 15.820312, 44.715514 ], [ 15.996094, 44.715514 ], [ 15.996094, 44.465151 ], [ 16.171875, 44.465151 ], [ 16.171875, 44.213710 ], [ 16.347656, 44.213710 ], [ 16.347656, 44.087585 ], [ 16.523438, 44.087585 ], [ 16.523438, 43.961191 ], [ 16.699219, 43.961191 ], [ 16.699219, 43.707594 ], [ 16.875000, 43.707594 ], [ 16.875000, 43.580391 ], [ 17.050781, 43.580391 ], [ 17.050781, 43.452919 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.325178 ], [ 17.402344, 43.325178 ], [ 17.402344, 43.197167 ], [ 17.578125, 43.197167 ], [ 17.578125, 43.068888 ], [ 17.753906, 43.068888 ], [ 17.753906, 42.940339 ], [ 18.105469, 42.940339 ], [ 18.105469, 42.811522 ], [ 18.457031, 42.811522 ], [ 18.457031, 42.682435 ], [ 18.632812, 42.682435 ], [ 18.632812, 42.553080 ], [ 18.457031, 42.553080 ], [ 18.457031, 42.423457 ], [ 18.281250, 42.423457 ], [ 18.281250, 42.553080 ], [ 17.929688, 42.553080 ], [ 17.929688, 42.682435 ], [ 17.578125, 42.682435 ], [ 17.578125, 42.811522 ], [ 17.402344, 42.811522 ], [ 17.402344, 42.940339 ], [ 17.050781, 42.940339 ], [ 17.050781, 43.068888 ], [ 16.875000, 43.068888 ], [ 16.875000, 43.197167 ], [ 16.523438, 43.197167 ], [ 16.523438, 43.325178 ], [ 16.171875, 43.325178 ], [ 16.171875, 43.452919 ], [ 15.820312, 43.452919 ], [ 15.820312, 43.580391 ], [ 15.644531, 43.580391 ], [ 15.644531, 43.834527 ], [ 15.468750, 43.834527 ], [ 15.468750, 43.961191 ], [ 15.292969, 43.961191 ], [ 15.292969, 44.087585 ], [ 15.117188, 44.087585 ], [ 15.117188, 44.213710 ], [ 15.292969, 44.213710 ], [ 15.292969, 44.339565 ], [ 15.117188, 44.339565 ], [ 15.117188, 44.590467 ], [ 14.941406, 44.590467 ], [ 14.941406, 45.089036 ], [ 14.414062, 45.089036 ], [ 14.414062, 45.213004 ], [ 14.238281, 45.213004 ], [ 14.238281, 45.089036 ], [ 14.062500, 45.089036 ], [ 14.062500, 44.840291 ], [ 13.886719, 44.840291 ], [ 13.886719, 44.964798 ], [ 13.710938, 44.964798 ], [ 13.710938, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.706179 ], [ 15.644531, 45.951150 ], [ 15.820312, 45.951150 ], [ 15.820312, 46.195042 ], [ 15.996094, 46.195042 ], [ 15.996094, 46.316584 ], [ 16.347656, 46.316584 ], [ 16.347656, 46.437857 ], [ 16.875000, 46.437857 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.558860 ], [ 16.523438, 46.437857 ], [ 16.875000, 46.437857 ], [ 16.875000, 46.316584 ], [ 17.050781, 46.316584 ], [ 17.050781, 46.195042 ], [ 17.226562, 46.195042 ], [ 17.226562, 46.073231 ], [ 17.402344, 46.073231 ], [ 17.402344, 45.951150 ], [ 17.929688, 45.951150 ], [ 17.929688, 45.828799 ], [ 18.808594, 45.828799 ], [ 18.808594, 45.706179 ], [ 18.984375, 45.706179 ], [ 18.984375, 45.460131 ], [ 19.160156, 45.460131 ], [ 19.160156, 45.336702 ], [ 19.335938, 45.336702 ], [ 19.335938, 45.213004 ], [ 19.160156, 45.213004 ], [ 19.160156, 44.964798 ], [ 18.632812, 44.964798 ], [ 18.632812, 45.089036 ], [ 17.402344, 45.089036 ], [ 17.402344, 45.213004 ], [ 17.050781, 45.213004 ], [ 17.050781, 45.336702 ], [ 16.875000, 45.336702 ], [ 16.875000, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.523438, 45.089036 ], [ 15.996094, 45.089036 ], [ 15.996094, 45.213004 ], [ 15.820312, 45.213004 ], [ 15.820312, 45.089036 ], [ 15.644531, 45.089036 ], [ 15.644531, 44.715514 ], [ 15.820312, 44.715514 ], [ 15.820312, 44.590467 ], [ 15.996094, 44.590467 ], [ 15.996094, 44.465151 ], [ 16.171875, 44.465151 ], [ 16.171875, 44.213710 ], [ 16.347656, 44.213710 ], [ 16.347656, 43.961191 ], [ 16.523438, 43.961191 ], [ 16.523438, 43.834527 ], [ 16.699219, 43.834527 ], [ 16.699219, 43.707594 ], [ 16.875000, 43.707594 ], [ 16.875000, 43.580391 ], [ 17.050781, 43.580391 ], [ 17.050781, 43.452919 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.325178 ], [ 17.402344, 43.325178 ], [ 17.402344, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 42.940339 ], [ 17.929688, 42.940339 ], [ 17.929688, 42.811522 ], [ 18.281250, 42.811522 ], [ 18.281250, 42.682435 ], [ 18.457031, 42.682435 ], [ 18.457031, 42.553080 ], [ 18.105469, 42.553080 ], [ 18.105469, 42.682435 ], [ 17.753906, 42.682435 ], [ 17.753906, 42.811522 ], [ 17.402344, 42.811522 ], [ 17.402344, 42.940339 ], [ 17.226562, 42.940339 ], [ 17.226562, 43.068888 ], [ 17.050781, 43.068888 ], [ 17.050781, 43.197167 ], [ 16.875000, 43.197167 ], [ 16.875000, 43.325178 ], [ 16.523438, 43.325178 ], [ 16.523438, 43.452919 ], [ 16.171875, 43.452919 ], [ 16.171875, 43.580391 ], [ 15.820312, 43.580391 ], [ 15.820312, 43.707594 ], [ 15.644531, 43.707594 ], [ 15.644531, 43.961191 ], [ 15.468750, 43.961191 ], [ 15.468750, 44.087585 ], [ 15.292969, 44.087585 ], [ 15.292969, 44.213710 ], [ 15.117188, 44.213710 ], [ 15.117188, 44.590467 ], [ 14.941406, 44.590467 ], [ 14.941406, 44.715514 ], [ 14.765625, 44.715514 ], [ 14.765625, 45.089036 ], [ 14.589844, 45.089036 ], [ 14.589844, 45.213004 ], [ 14.062500, 45.213004 ], [ 14.062500, 44.964798 ], [ 13.886719, 44.964798 ], [ 13.886719, 44.840291 ], [ 13.710938, 44.840291 ], [ 13.710938, 45.089036 ], [ 13.535156, 45.089036 ], [ 13.535156, 45.583290 ], [ 14.941406, 45.583290 ], [ 14.941406, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.828799 ], [ 15.644531, 45.828799 ], [ 15.644531, 46.316584 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.437857 ], [ 16.347656, 46.437857 ], [ 16.347656, 46.558860 ], [ 16.523438, 46.558860 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.917969, 48.574790 ], [ 20.917969, 48.458352 ], [ 21.445312, 48.458352 ], [ 21.445312, 48.341646 ], [ 22.324219, 48.341646 ], [ 22.324219, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 48.107431 ], [ 22.675781, 48.107431 ], [ 22.675781, 47.754098 ], [ 22.324219, 47.754098 ], [ 22.324219, 47.635784 ], [ 22.148438, 47.635784 ], [ 22.148438, 47.517201 ], [ 21.972656, 47.517201 ], [ 21.972656, 47.279229 ], [ 21.796875, 47.279229 ], [ 21.796875, 47.040182 ], [ 21.621094, 47.040182 ], [ 21.621094, 46.920255 ], [ 21.445312, 46.920255 ], [ 21.445312, 46.679594 ], [ 21.269531, 46.679594 ], [ 21.269531, 46.437857 ], [ 21.093750, 46.437857 ], [ 21.093750, 46.316584 ], [ 20.917969, 46.316584 ], [ 20.917969, 46.195042 ], [ 20.566406, 46.195042 ], [ 20.566406, 46.073231 ], [ 19.687500, 46.073231 ], [ 19.687500, 46.195042 ], [ 19.511719, 46.195042 ], [ 19.511719, 46.073231 ], [ 19.160156, 46.073231 ], [ 19.160156, 45.951150 ], [ 18.808594, 45.951150 ], [ 18.808594, 45.828799 ], [ 18.632812, 45.828799 ], [ 18.632812, 45.706179 ], [ 18.105469, 45.706179 ], [ 18.105469, 45.828799 ], [ 17.753906, 45.828799 ], [ 17.753906, 45.951150 ], [ 17.402344, 45.951150 ], [ 17.402344, 46.073231 ], [ 17.226562, 46.073231 ], [ 17.226562, 46.195042 ], [ 17.050781, 46.195042 ], [ 17.050781, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.437857 ], [ 16.523438, 46.437857 ], [ 16.523438, 46.679594 ], [ 16.347656, 46.679594 ], [ 16.347656, 46.800059 ], [ 16.171875, 46.800059 ], [ 16.171875, 46.920255 ], [ 16.347656, 46.920255 ], [ 16.347656, 47.279229 ], [ 16.523438, 47.279229 ], [ 16.523438, 47.635784 ], [ 16.347656, 47.635784 ], [ 16.347656, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 47.872144 ], [ 17.050781, 47.872144 ], [ 17.050781, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.872144 ], [ 17.578125, 47.872144 ], [ 17.578125, 47.754098 ], [ 18.457031, 47.754098 ], [ 18.457031, 47.872144 ], [ 18.632812, 47.872144 ], [ 18.632812, 47.989922 ], [ 18.808594, 47.989922 ], [ 18.808594, 48.107431 ], [ 19.511719, 48.107431 ], [ 19.511719, 48.224673 ], [ 20.039062, 48.224673 ], [ 20.039062, 48.341646 ], [ 20.214844, 48.341646 ], [ 20.214844, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.574790 ], [ 20.917969, 48.574790 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 48.574790 ], [ 21.093750, 48.458352 ], [ 21.445312, 48.458352 ], [ 21.445312, 48.341646 ], [ 22.324219, 48.341646 ], [ 22.324219, 48.224673 ], [ 22.500000, 48.224673 ], [ 22.500000, 48.107431 ], [ 22.675781, 48.107431 ], [ 22.675781, 47.872144 ], [ 22.324219, 47.872144 ], [ 22.324219, 47.754098 ], [ 21.972656, 47.754098 ], [ 21.972656, 47.517201 ], [ 21.796875, 47.517201 ], [ 21.796875, 47.159840 ], [ 21.621094, 47.159840 ], [ 21.621094, 46.920255 ], [ 21.445312, 46.920255 ], [ 21.445312, 46.679594 ], [ 21.269531, 46.679594 ], [ 21.269531, 46.558860 ], [ 21.093750, 46.558860 ], [ 21.093750, 46.316584 ], [ 20.742188, 46.316584 ], [ 20.742188, 46.195042 ], [ 19.511719, 46.195042 ], [ 19.511719, 46.073231 ], [ 19.160156, 46.073231 ], [ 19.160156, 45.951150 ], [ 18.808594, 45.951150 ], [ 18.808594, 45.828799 ], [ 17.929688, 45.828799 ], [ 17.929688, 45.951150 ], [ 17.402344, 45.951150 ], [ 17.402344, 46.073231 ], [ 17.226562, 46.073231 ], [ 17.226562, 46.195042 ], [ 17.050781, 46.195042 ], [ 17.050781, 46.316584 ], [ 16.875000, 46.316584 ], [ 16.875000, 46.437857 ], [ 16.523438, 46.437857 ], [ 16.523438, 46.679594 ], [ 16.347656, 46.679594 ], [ 16.347656, 46.920255 ], [ 16.171875, 46.920255 ], [ 16.171875, 47.040182 ], [ 16.347656, 47.040182 ], [ 16.347656, 47.279229 ], [ 16.523438, 47.279229 ], [ 16.523438, 47.517201 ], [ 16.347656, 47.517201 ], [ 16.347656, 47.635784 ], [ 16.171875, 47.635784 ], [ 16.171875, 47.754098 ], [ 16.875000, 47.754098 ], [ 16.875000, 48.107431 ], [ 17.050781, 48.107431 ], [ 17.050781, 47.989922 ], [ 17.226562, 47.989922 ], [ 17.226562, 47.872144 ], [ 18.281250, 47.872144 ], [ 18.281250, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 48.107431 ], [ 18.984375, 48.107431 ], [ 18.984375, 48.224673 ], [ 20.039062, 48.224673 ], [ 20.039062, 48.341646 ], [ 20.214844, 48.341646 ], [ 20.214844, 48.458352 ], [ 20.390625, 48.458352 ], [ 20.390625, 48.574790 ], [ 21.093750, 48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.621094, 49.496675 ], [ 21.621094, 49.382373 ], [ 21.796875, 49.382373 ], [ 21.796875, 49.267805 ], [ 22.148438, 49.267805 ], [ 22.148438, 49.152970 ], [ 22.324219, 49.152970 ], [ 22.324219, 49.037868 ], [ 22.500000, 49.037868 ], [ 22.500000, 48.922499 ], [ 22.324219, 48.922499 ], [ 22.324219, 48.574790 ], [ 22.148438, 48.574790 ], [ 22.148438, 48.341646 ], [ 21.445312, 48.341646 ], [ 21.445312, 48.458352 ], [ 20.917969, 48.458352 ], [ 20.917969, 48.574790 ], [ 20.390625, 48.574790 ], [ 20.390625, 48.458352 ], [ 20.214844, 48.458352 ], [ 20.214844, 48.341646 ], [ 20.039062, 48.341646 ], [ 20.039062, 48.224673 ], [ 19.511719, 48.224673 ], [ 19.511719, 48.107431 ], [ 18.808594, 48.107431 ], [ 18.808594, 47.989922 ], [ 18.632812, 47.989922 ], [ 18.632812, 47.872144 ], [ 18.457031, 47.872144 ], [ 18.457031, 47.754098 ], [ 17.578125, 47.754098 ], [ 17.578125, 47.872144 ], [ 17.226562, 47.872144 ], [ 17.226562, 47.989922 ], [ 17.050781, 47.989922 ], [ 17.050781, 48.224673 ], [ 16.875000, 48.224673 ], [ 16.875000, 48.690960 ], [ 17.050781, 48.690960 ], [ 17.050781, 48.806863 ], [ 17.929688, 48.806863 ], [ 17.929688, 49.037868 ], [ 18.105469, 49.037868 ], [ 18.105469, 49.267805 ], [ 18.457031, 49.267805 ], [ 18.457031, 49.382373 ], [ 18.632812, 49.382373 ], [ 18.632812, 49.496675 ], [ 18.808594, 49.496675 ], [ 18.808594, 49.382373 ], [ 19.160156, 49.382373 ], [ 19.160156, 49.496675 ], [ 19.511719, 49.496675 ], [ 19.511719, 49.382373 ], [ 19.687500, 49.382373 ], [ 19.687500, 49.267805 ], [ 20.214844, 49.267805 ], [ 20.214844, 49.382373 ], [ 21.445312, 49.382373 ], [ 21.445312, 49.496675 ], [ 21.621094, 49.496675 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.445312, 49.496675 ], [ 21.445312, 49.382373 ], [ 21.796875, 49.382373 ], [ 21.796875, 49.267805 ], [ 22.148438, 49.267805 ], [ 22.148438, 49.152970 ], [ 22.500000, 49.152970 ], [ 22.500000, 49.037868 ], [ 22.324219, 49.037868 ], [ 22.324219, 48.922499 ], [ 22.148438, 48.922499 ], [ 22.148438, 48.690960 ], [ 21.972656, 48.690960 ], [ 21.972656, 48.341646 ], [ 21.445312, 48.341646 ], [ 21.445312, 48.458352 ], [ 21.093750, 48.458352 ], [ 21.093750, 48.574790 ], [ 20.390625, 48.574790 ], [ 20.390625, 48.458352 ], [ 20.214844, 48.458352 ], [ 20.214844, 48.341646 ], [ 20.039062, 48.341646 ], [ 20.039062, 48.224673 ], [ 18.984375, 48.224673 ], [ 18.984375, 48.107431 ], [ 18.632812, 48.107431 ], [ 18.632812, 47.989922 ], [ 18.281250, 47.989922 ], [ 18.281250, 47.872144 ], [ 17.226562, 47.872144 ], [ 17.226562, 47.989922 ], [ 17.050781, 47.989922 ], [ 17.050781, 48.107431 ], [ 16.875000, 48.107431 ], [ 16.875000, 48.806863 ], [ 17.753906, 48.806863 ], [ 17.753906, 49.037868 ], [ 18.105469, 49.037868 ], [ 18.105469, 49.382373 ], [ 18.457031, 49.382373 ], [ 18.457031, 49.496675 ], [ 19.335938, 49.496675 ], [ 19.335938, 49.382373 ], [ 19.511719, 49.382373 ], [ 19.511719, 49.267805 ], [ 20.039062, 49.267805 ], [ 20.039062, 49.382373 ], [ 21.269531, 49.382373 ], [ 21.269531, 49.496675 ], [ 21.445312, 49.496675 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.402344, 45.213004 ], [ 17.402344, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.964798 ], [ 18.808594, 44.964798 ], [ 18.808594, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.590467 ], [ 19.160156, 44.590467 ], [ 19.160156, 44.339565 ], [ 19.335938, 44.339565 ], [ 19.335938, 44.213710 ], [ 19.511719, 44.213710 ], [ 19.511719, 44.087585 ], [ 19.687500, 44.087585 ], [ 19.687500, 43.834527 ], [ 19.511719, 43.834527 ], [ 19.511719, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.160156, 43.452919 ], [ 18.984375, 43.452919 ], [ 18.984375, 43.325178 ], [ 18.808594, 43.325178 ], [ 18.808594, 43.197167 ], [ 18.632812, 43.197167 ], [ 18.632812, 42.682435 ], [ 18.457031, 42.682435 ], [ 18.457031, 42.811522 ], [ 18.105469, 42.811522 ], [ 18.105469, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.753906, 43.068888 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.197167 ], [ 17.402344, 43.197167 ], [ 17.402344, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.452919 ], [ 17.050781, 43.452919 ], [ 17.050781, 43.580391 ], [ 16.875000, 43.580391 ], [ 16.875000, 43.707594 ], [ 16.699219, 43.707594 ], [ 16.699219, 43.961191 ], [ 16.523438, 43.961191 ], [ 16.523438, 44.087585 ], [ 16.347656, 44.087585 ], [ 16.347656, 44.213710 ], [ 16.171875, 44.213710 ], [ 16.171875, 44.465151 ], [ 15.996094, 44.465151 ], [ 15.996094, 44.715514 ], [ 15.820312, 44.715514 ], [ 15.820312, 44.964798 ], [ 15.996094, 44.964798 ], [ 15.996094, 45.089036 ], [ 16.171875, 45.089036 ], [ 16.171875, 44.964798 ], [ 16.347656, 44.964798 ], [ 16.347656, 45.089036 ], [ 16.523438, 45.089036 ], [ 16.523438, 45.213004 ], [ 17.402344, 45.213004 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.050781, 45.336702 ], [ 17.050781, 45.213004 ], [ 17.402344, 45.213004 ], [ 17.402344, 45.089036 ], [ 18.632812, 45.089036 ], [ 18.632812, 44.964798 ], [ 19.335938, 44.964798 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.840291 ], [ 19.160156, 44.590467 ], [ 18.984375, 44.590467 ], [ 18.984375, 44.339565 ], [ 19.160156, 44.339565 ], [ 19.160156, 44.213710 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.087585 ], [ 19.511719, 44.087585 ], [ 19.511719, 43.834527 ], [ 19.335938, 43.834527 ], [ 19.335938, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.160156, 43.452919 ], [ 18.984375, 43.452919 ], [ 18.984375, 43.325178 ], [ 18.632812, 43.325178 ], [ 18.632812, 42.940339 ], [ 18.457031, 42.940339 ], [ 18.457031, 42.682435 ], [ 18.281250, 42.682435 ], [ 18.281250, 42.811522 ], [ 17.929688, 42.811522 ], [ 17.929688, 42.940339 ], [ 17.578125, 42.940339 ], [ 17.578125, 43.068888 ], [ 17.402344, 43.068888 ], [ 17.402344, 43.325178 ], [ 17.226562, 43.325178 ], [ 17.226562, 43.452919 ], [ 17.050781, 43.452919 ], [ 17.050781, 43.580391 ], [ 16.875000, 43.580391 ], [ 16.875000, 43.707594 ], [ 16.699219, 43.707594 ], [ 16.699219, 43.834527 ], [ 16.523438, 43.834527 ], [ 16.523438, 43.961191 ], [ 16.347656, 43.961191 ], [ 16.347656, 44.213710 ], [ 16.171875, 44.213710 ], [ 16.171875, 44.465151 ], [ 15.996094, 44.465151 ], [ 15.996094, 44.590467 ], [ 15.820312, 44.590467 ], [ 15.820312, 44.715514 ], [ 15.644531, 44.715514 ], [ 15.644531, 45.089036 ], [ 15.820312, 45.089036 ], [ 15.820312, 45.213004 ], [ 15.996094, 45.213004 ], [ 15.996094, 45.089036 ], [ 16.523438, 45.089036 ], [ 16.523438, 45.213004 ], [ 16.875000, 45.213004 ], [ 16.875000, 45.336702 ], [ 17.050781, 45.336702 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.335938, 43.452919 ], [ 19.335938, 43.325178 ], [ 19.511719, 43.325178 ], [ 19.511719, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.687500, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.940339 ], [ 20.390625, 42.940339 ], [ 20.390625, 42.811522 ], [ 20.214844, 42.811522 ], [ 20.214844, 42.682435 ], [ 20.039062, 42.682435 ], [ 20.039062, 42.553080 ], [ 19.511719, 42.553080 ], [ 19.511719, 42.293564 ], [ 19.335938, 42.293564 ], [ 19.335938, 41.902277 ], [ 18.984375, 41.902277 ], [ 18.984375, 42.163403 ], [ 18.808594, 42.163403 ], [ 18.808594, 42.293564 ], [ 18.457031, 42.293564 ], [ 18.457031, 42.553080 ], [ 18.632812, 42.553080 ], [ 18.632812, 43.197167 ], [ 18.808594, 43.197167 ], [ 18.808594, 43.325178 ], [ 18.984375, 43.325178 ], [ 18.984375, 43.452919 ], [ 19.335938, 43.452919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 19.160156, 42.032974 ], [ 18.984375, 42.032974 ], [ 18.984375, 42.163403 ], [ 18.808594, 42.163403 ], [ 18.808594, 42.293564 ], [ 18.632812, 42.293564 ], [ 18.632812, 42.423457 ], [ 18.281250, 42.423457 ], [ 18.281250, 42.553080 ], [ 18.457031, 42.553080 ], [ 18.457031, 42.940339 ], [ 18.632812, 42.940339 ], [ 18.632812, 43.325178 ], [ 18.984375, 43.325178 ], [ 18.984375, 43.452919 ], [ 19.335938, 43.452919 ], [ 19.335938, 43.325178 ], [ 19.511719, 43.325178 ], [ 19.511719, 43.197167 ], [ 19.863281, 43.197167 ], [ 19.863281, 43.068888 ], [ 20.039062, 43.068888 ], [ 20.039062, 42.940339 ], [ 20.214844, 42.940339 ], [ 20.214844, 42.682435 ], [ 20.039062, 42.682435 ], [ 20.039062, 42.553080 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.511719, 42.682435 ], [ 19.511719, 42.553080 ], [ 19.335938, 42.553080 ], [ 19.335938, 42.293564 ], [ 19.160156, 42.293564 ], [ 19.160156, 42.032974 ] ] ], [ [ [ 19.160156, 42.032974 ], [ 19.335938, 42.032974 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.902277 ], [ 19.160156, 42.032974 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 46.195042 ], [ 19.687500, 46.073231 ], [ 20.214844, 46.073231 ], [ 20.214844, 45.951150 ], [ 20.390625, 45.951150 ], [ 20.390625, 45.828799 ], [ 20.566406, 45.828799 ], [ 20.566406, 45.706179 ], [ 20.742188, 45.706179 ], [ 20.742188, 45.583290 ], [ 20.917969, 45.583290 ], [ 20.917969, 45.336702 ], [ 21.269531, 45.336702 ], [ 21.269531, 45.213004 ], [ 21.445312, 45.213004 ], [ 21.445312, 44.964798 ], [ 21.621094, 44.964798 ], [ 21.621094, 44.590467 ], [ 21.972656, 44.590467 ], [ 21.972656, 44.465151 ], [ 22.324219, 44.465151 ], [ 22.324219, 44.590467 ], [ 22.675781, 44.590467 ], [ 22.675781, 44.465151 ], [ 22.500000, 44.465151 ], [ 22.500000, 44.339565 ], [ 22.675781, 44.339565 ], [ 22.675781, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 43.961191 ], [ 22.324219, 43.961191 ], [ 22.324219, 43.707594 ], [ 22.500000, 43.707594 ], [ 22.500000, 43.452919 ], [ 22.675781, 43.452919 ], [ 22.675781, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.197167 ], [ 23.027344, 43.197167 ], [ 23.027344, 43.068888 ], [ 22.851562, 43.068888 ], [ 22.851562, 42.940339 ], [ 22.675781, 42.940339 ], [ 22.675781, 42.682435 ], [ 22.500000, 42.682435 ], [ 22.500000, 42.293564 ], [ 21.621094, 42.293564 ], [ 21.621094, 42.553080 ], [ 21.796875, 42.553080 ], [ 21.796875, 42.682435 ], [ 21.445312, 42.682435 ], [ 21.445312, 42.811522 ], [ 21.269531, 42.811522 ], [ 21.269531, 42.940339 ], [ 21.093750, 42.940339 ], [ 21.093750, 43.068888 ], [ 20.917969, 43.068888 ], [ 20.917969, 43.197167 ], [ 20.566406, 43.197167 ], [ 20.566406, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 42.940339 ], [ 20.039062, 42.940339 ], [ 20.039062, 43.068888 ], [ 19.687500, 43.068888 ], [ 19.687500, 43.197167 ], [ 19.511719, 43.197167 ], [ 19.511719, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.452919 ], [ 19.160156, 43.452919 ], [ 19.160156, 43.580391 ], [ 19.511719, 43.580391 ], [ 19.511719, 43.834527 ], [ 19.687500, 43.834527 ], [ 19.687500, 44.087585 ], [ 19.511719, 44.087585 ], [ 19.511719, 44.213710 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.339565 ], [ 19.160156, 44.339565 ], [ 19.160156, 44.590467 ], [ 19.335938, 44.590467 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.840291 ], [ 19.160156, 45.089036 ], [ 19.335938, 45.089036 ], [ 19.335938, 45.336702 ], [ 19.160156, 45.336702 ], [ 19.160156, 45.583290 ], [ 18.984375, 45.583290 ], [ 18.984375, 45.828799 ], [ 18.808594, 45.828799 ], [ 18.808594, 45.951150 ], [ 19.160156, 45.951150 ], [ 19.160156, 46.073231 ], [ 19.511719, 46.073231 ], [ 19.511719, 46.195042 ], [ 19.687500, 46.195042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.214844, 46.195042 ], [ 20.214844, 46.073231 ], [ 20.390625, 46.073231 ], [ 20.390625, 45.951150 ], [ 20.566406, 45.951150 ], [ 20.566406, 45.828799 ], [ 20.742188, 45.828799 ], [ 20.742188, 45.336702 ], [ 21.093750, 45.336702 ], [ 21.093750, 45.213004 ], [ 21.445312, 45.213004 ], [ 21.445312, 44.715514 ], [ 21.796875, 44.715514 ], [ 21.796875, 44.590467 ], [ 22.675781, 44.590467 ], [ 22.675781, 44.465151 ], [ 22.324219, 44.465151 ], [ 22.324219, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 44.213710 ], [ 22.324219, 44.213710 ], [ 22.324219, 43.834527 ], [ 22.500000, 43.834527 ], [ 22.500000, 43.580391 ], [ 22.675781, 43.580391 ], [ 22.675781, 43.325178 ], [ 22.851562, 43.325178 ], [ 22.851562, 43.197167 ], [ 22.675781, 43.197167 ], [ 22.675781, 42.940339 ], [ 22.500000, 42.940339 ], [ 22.500000, 42.811522 ], [ 22.324219, 42.811522 ], [ 22.324219, 42.553080 ], [ 22.500000, 42.553080 ], [ 22.500000, 42.423457 ], [ 21.796875, 42.423457 ], [ 21.796875, 42.293564 ], [ 21.445312, 42.293564 ], [ 21.445312, 42.423457 ], [ 21.621094, 42.423457 ], [ 21.621094, 42.682435 ], [ 21.445312, 42.682435 ], [ 21.445312, 42.811522 ], [ 21.269531, 42.811522 ], [ 21.269531, 42.940339 ], [ 21.093750, 42.940339 ], [ 21.093750, 43.068888 ], [ 20.917969, 43.068888 ], [ 20.917969, 43.197167 ], [ 20.742188, 43.197167 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.325178 ], [ 20.566406, 43.068888 ], [ 20.390625, 43.068888 ], [ 20.390625, 42.811522 ], [ 20.214844, 42.811522 ], [ 20.214844, 42.940339 ], [ 20.039062, 42.940339 ], [ 20.039062, 43.068888 ], [ 19.863281, 43.068888 ], [ 19.863281, 43.197167 ], [ 19.511719, 43.197167 ], [ 19.511719, 43.325178 ], [ 19.335938, 43.325178 ], [ 19.335938, 43.452919 ], [ 19.160156, 43.452919 ], [ 19.160156, 43.580391 ], [ 19.335938, 43.580391 ], [ 19.335938, 43.834527 ], [ 19.511719, 43.834527 ], [ 19.511719, 44.087585 ], [ 19.335938, 44.087585 ], [ 19.335938, 44.213710 ], [ 19.160156, 44.213710 ], [ 19.160156, 44.339565 ], [ 18.984375, 44.339565 ], [ 18.984375, 44.590467 ], [ 19.160156, 44.590467 ], [ 19.160156, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.335938, 44.964798 ], [ 19.160156, 44.964798 ], [ 19.160156, 45.213004 ], [ 19.335938, 45.213004 ], [ 19.335938, 45.336702 ], [ 19.160156, 45.336702 ], [ 19.160156, 45.460131 ], [ 18.984375, 45.460131 ], [ 18.984375, 45.706179 ], [ 18.808594, 45.706179 ], [ 18.808594, 45.951150 ], [ 19.160156, 45.951150 ], [ 19.160156, 46.073231 ], [ 19.511719, 46.073231 ], [ 19.511719, 46.195042 ], [ 20.214844, 46.195042 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.917969, 43.197167 ], [ 20.917969, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.940339 ], [ 21.269531, 42.940339 ], [ 21.269531, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.796875, 42.553080 ], [ 21.621094, 42.553080 ], [ 21.621094, 42.163403 ], [ 21.093750, 42.163403 ], [ 21.093750, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.902277 ], [ 20.566406, 41.902277 ], [ 20.566406, 42.163403 ], [ 20.214844, 42.163403 ], [ 20.214844, 42.423457 ], [ 20.039062, 42.423457 ], [ 20.039062, 42.682435 ], [ 20.214844, 42.682435 ], [ 20.214844, 42.811522 ], [ 20.566406, 42.811522 ], [ 20.566406, 43.197167 ], [ 20.917969, 43.197167 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 43.325178 ], [ 20.742188, 43.197167 ], [ 20.917969, 43.197167 ], [ 20.917969, 43.068888 ], [ 21.093750, 43.068888 ], [ 21.093750, 42.940339 ], [ 21.269531, 42.940339 ], [ 21.269531, 42.811522 ], [ 21.445312, 42.811522 ], [ 21.445312, 42.682435 ], [ 21.621094, 42.682435 ], [ 21.621094, 42.423457 ], [ 21.445312, 42.423457 ], [ 21.445312, 42.293564 ], [ 21.093750, 42.293564 ], [ 21.093750, 42.163403 ], [ 20.742188, 42.163403 ], [ 20.742188, 42.032974 ], [ 20.390625, 42.032974 ], [ 20.390625, 42.293564 ], [ 20.214844, 42.293564 ], [ 20.214844, 42.553080 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.682435 ], [ 20.214844, 42.682435 ], [ 20.214844, 42.811522 ], [ 20.390625, 42.811522 ], [ 20.390625, 43.068888 ], [ 20.566406, 43.068888 ], [ 20.566406, 43.325178 ], [ 20.742188, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.039062, 42.553080 ], [ 20.039062, 42.423457 ], [ 20.214844, 42.423457 ], [ 20.214844, 42.163403 ], [ 20.566406, 42.163403 ], [ 20.566406, 41.640078 ], [ 20.390625, 41.640078 ], [ 20.390625, 41.244772 ], [ 20.566406, 41.244772 ], [ 20.566406, 40.979898 ], [ 20.917969, 40.979898 ], [ 20.917969, 40.847060 ], [ 21.093750, 40.847060 ], [ 21.093750, 40.713956 ], [ 20.917969, 40.713956 ], [ 20.917969, 40.446947 ], [ 20.742188, 40.446947 ], [ 20.742188, 40.313043 ], [ 19.335938, 40.313043 ], [ 19.335938, 41.508577 ], [ 19.511719, 41.508577 ], [ 19.511719, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.293564 ], [ 19.511719, 42.293564 ], [ 19.511719, 42.553080 ], [ 20.039062, 42.553080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 20.214844, 42.553080 ], [ 20.214844, 42.293564 ], [ 20.390625, 42.293564 ], [ 20.390625, 42.032974 ], [ 20.566406, 42.032974 ], [ 20.566406, 41.771312 ], [ 20.390625, 41.771312 ], [ 20.390625, 41.376809 ], [ 20.566406, 41.376809 ], [ 20.566406, 40.979898 ], [ 20.742188, 40.979898 ], [ 20.742188, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.446947 ], [ 20.566406, 40.446947 ], [ 20.566406, 40.313043 ], [ 19.335938, 40.313043 ], [ 19.335938, 40.580585 ], [ 19.160156, 40.580585 ], [ 19.160156, 41.112469 ], [ 19.335938, 41.112469 ], [ 19.335938, 41.640078 ], [ 19.511719, 41.640078 ], [ 19.511719, 41.771312 ], [ 19.335938, 41.771312 ], [ 19.335938, 42.032974 ], [ 19.160156, 42.032974 ], [ 19.160156, 42.293564 ], [ 19.335938, 42.293564 ], [ 19.335938, 42.553080 ], [ 19.511719, 42.553080 ], [ 19.511719, 42.682435 ], [ 19.687500, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.293564 ], [ 22.324219, 42.163403 ], [ 22.675781, 42.163403 ], [ 22.675781, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.640078 ], [ 23.027344, 41.640078 ], [ 23.027344, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.917969, 40.847060 ], [ 20.917969, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.244772 ], [ 20.390625, 41.244772 ], [ 20.390625, 41.640078 ], [ 20.566406, 41.640078 ], [ 20.566406, 41.902277 ], [ 20.742188, 41.902277 ], [ 20.742188, 42.032974 ], [ 21.093750, 42.032974 ], [ 21.093750, 42.163403 ], [ 21.621094, 42.163403 ], [ 21.621094, 42.293564 ], [ 22.324219, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.423457 ], [ 22.324219, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.163403 ], [ 22.675781, 42.163403 ], [ 22.675781, 42.032974 ], [ 22.851562, 42.032974 ], [ 22.851562, 41.376809 ], [ 22.675781, 41.376809 ], [ 22.675781, 41.244772 ], [ 21.972656, 41.244772 ], [ 21.972656, 41.112469 ], [ 21.796875, 41.112469 ], [ 21.796875, 40.979898 ], [ 21.445312, 40.979898 ], [ 21.445312, 40.847060 ], [ 20.742188, 40.847060 ], [ 20.742188, 40.979898 ], [ 20.566406, 40.979898 ], [ 20.566406, 41.376809 ], [ 20.390625, 41.376809 ], [ 20.390625, 41.771312 ], [ 20.566406, 41.771312 ], [ 20.566406, 42.032974 ], [ 20.742188, 42.032974 ], [ 20.742188, 42.163403 ], [ 21.093750, 42.163403 ], [ 21.093750, 42.293564 ], [ 21.796875, 42.293564 ], [ 21.796875, 42.423457 ], [ 22.324219, 42.423457 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.179688, 66.861082 ], [ 29.179688, 66.722541 ], [ 29.355469, 66.722541 ], [ 29.355469, 66.583217 ], [ 29.531250, 66.583217 ], [ 29.531250, 66.372755 ], [ 29.707031, 66.372755 ], [ 29.707031, 66.231457 ], [ 29.882812, 66.231457 ], [ 29.882812, 66.018018 ], [ 30.058594, 66.018018 ], [ 30.058594, 65.874725 ], [ 30.234375, 65.874725 ], [ 30.234375, 65.658275 ], [ 30.058594, 65.658275 ], [ 30.058594, 65.440002 ], [ 29.882812, 65.440002 ], [ 29.882812, 65.219894 ], [ 29.707031, 65.219894 ], [ 29.707031, 64.997939 ], [ 29.531250, 64.997939 ], [ 29.531250, 64.848937 ], [ 29.707031, 64.848937 ], [ 29.707031, 64.699105 ], [ 29.882812, 64.699105 ], [ 29.882812, 64.548440 ], [ 30.058594, 64.548440 ], [ 30.058594, 64.396938 ], [ 30.234375, 64.396938 ], [ 30.234375, 64.244595 ], [ 30.410156, 64.244595 ], [ 30.410156, 64.014496 ], [ 30.234375, 64.014496 ], [ 30.234375, 63.704722 ], [ 30.058594, 63.704722 ], [ 30.058594, 63.470145 ], [ 30.234375, 63.470145 ], [ 30.234375, 63.391522 ], [ 30.410156, 63.391522 ], [ 30.410156, 63.312683 ], [ 30.585938, 63.312683 ], [ 30.585938, 63.233627 ], [ 30.761719, 63.233627 ], [ 30.761719, 63.074866 ], [ 30.937500, 63.074866 ], [ 30.937500, 62.995158 ], [ 31.113281, 62.995158 ], [ 31.113281, 62.915233 ], [ 31.289062, 62.915233 ], [ 31.289062, 62.835089 ], [ 31.464844, 62.835089 ], [ 31.464844, 62.674143 ], [ 31.289062, 62.674143 ], [ 31.289062, 62.431074 ], [ 31.113281, 62.431074 ], [ 31.113281, 62.267923 ], [ 30.937500, 62.267923 ], [ 30.937500, 62.103883 ], [ 30.761719, 62.103883 ], [ 30.761719, 62.021528 ], [ 30.585938, 62.021528 ], [ 30.585938, 61.938950 ], [ 30.410156, 61.938950 ], [ 30.410156, 61.773123 ], [ 30.234375, 61.773123 ], [ 30.234375, 61.689872 ], [ 30.058594, 61.689872 ], [ 30.058594, 61.606396 ], [ 29.882812, 61.606396 ], [ 29.882812, 61.438767 ], [ 29.707031, 61.438767 ], [ 29.707031, 61.354614 ], [ 29.531250, 61.354614 ], [ 29.531250, 61.270233 ], [ 29.355469, 61.270233 ], [ 29.355469, 61.185625 ], [ 29.179688, 61.185625 ], [ 29.179688, 61.015725 ], [ 29.003906, 61.015725 ], [ 29.003906, 60.930432 ], [ 28.828125, 60.930432 ], [ 28.828125, 60.844911 ], [ 28.652344, 60.844911 ], [ 28.652344, 60.759160 ], [ 28.476562, 60.759160 ], [ 28.476562, 60.586967 ], [ 28.300781, 60.586967 ], [ 28.300781, 60.500525 ], [ 27.246094, 60.500525 ], [ 27.246094, 60.413852 ], [ 26.015625, 60.413852 ], [ 26.015625, 60.326948 ], [ 25.664062, 60.326948 ], [ 25.664062, 60.239811 ], [ 25.136719, 60.239811 ], [ 25.136719, 60.152442 ], [ 24.785156, 60.152442 ], [ 24.785156, 60.064840 ], [ 24.082031, 60.064840 ], [ 24.082031, 59.977005 ], [ 23.378906, 59.977005 ], [ 23.378906, 59.888937 ], [ 22.851562, 59.888937 ], [ 22.851562, 59.977005 ], [ 22.675781, 59.977005 ], [ 22.675781, 60.152442 ], [ 22.500000, 60.152442 ], [ 22.500000, 60.326948 ], [ 22.324219, 60.326948 ], [ 22.324219, 60.413852 ], [ 22.148438, 60.413852 ], [ 22.148438, 60.500525 ], [ 21.796875, 60.500525 ], [ 21.796875, 60.586967 ], [ 21.621094, 60.586967 ], [ 21.621094, 60.673179 ], [ 21.269531, 60.673179 ], [ 21.269531, 60.930432 ], [ 21.445312, 60.930432 ], [ 21.445312, 61.438767 ], [ 21.621094, 61.438767 ], [ 21.621094, 61.773123 ], [ 21.445312, 61.773123 ], [ 21.445312, 62.103883 ], [ 21.269531, 62.103883 ], [ 21.269531, 62.431074 ], [ 21.093750, 62.431074 ], [ 21.093750, 62.674143 ], [ 21.269531, 62.674143 ], [ 21.269531, 62.835089 ], [ 21.445312, 62.835089 ], [ 21.445312, 62.995158 ], [ 21.621094, 62.995158 ], [ 21.621094, 63.154355 ], [ 21.796875, 63.154355 ], [ 21.796875, 63.312683 ], [ 21.972656, 63.312683 ], [ 21.972656, 63.470145 ], [ 22.148438, 63.470145 ], [ 22.148438, 63.548552 ], [ 22.324219, 63.548552 ], [ 22.324219, 63.704722 ], [ 22.500000, 63.704722 ], [ 22.500000, 63.782486 ], [ 22.675781, 63.782486 ], [ 22.675781, 63.860036 ], [ 22.851562, 63.860036 ], [ 22.851562, 63.937372 ], [ 23.027344, 63.937372 ], [ 23.027344, 64.091408 ], [ 23.203125, 64.091408 ], [ 23.203125, 64.168107 ], [ 23.378906, 64.168107 ], [ 23.378906, 64.244595 ], [ 23.554688, 64.244595 ], [ 23.554688, 64.320872 ], [ 23.730469, 64.320872 ], [ 23.730469, 64.396938 ], [ 23.906250, 64.396938 ], [ 23.906250, 64.472794 ], [ 24.082031, 64.472794 ], [ 24.082031, 64.548440 ], [ 24.257812, 64.548440 ], [ 24.257812, 64.699105 ], [ 24.433594, 64.699105 ], [ 24.433594, 64.774125 ], [ 24.609375, 64.774125 ], [ 24.609375, 64.848937 ], [ 24.785156, 64.848937 ], [ 24.785156, 64.923542 ], [ 24.960938, 64.923542 ], [ 24.960938, 64.997939 ], [ 25.136719, 64.997939 ], [ 25.136719, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.512963 ], [ 25.136719, 65.512963 ], [ 25.136719, 65.585720 ], [ 24.960938, 65.585720 ], [ 24.960938, 65.658275 ], [ 24.785156, 65.658275 ], [ 24.785156, 65.730626 ], [ 24.433594, 65.730626 ], [ 24.433594, 65.802776 ], [ 24.257812, 65.802776 ], [ 24.257812, 65.874725 ], [ 24.082031, 65.874725 ], [ 24.082031, 65.946472 ], [ 23.906250, 65.946472 ], [ 23.906250, 66.089364 ], [ 23.730469, 66.089364 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 66.861082 ], [ 29.179688, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.003906, 66.861082 ], [ 29.003906, 66.722541 ], [ 29.179688, 66.722541 ], [ 29.179688, 66.583217 ], [ 29.355469, 66.583217 ], [ 29.355469, 66.443107 ], [ 29.531250, 66.443107 ], [ 29.531250, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.089364 ], [ 29.882812, 66.089364 ], [ 29.882812, 65.946472 ], [ 30.058594, 65.946472 ], [ 30.058594, 65.730626 ], [ 29.882812, 65.730626 ], [ 29.882812, 65.440002 ], [ 29.707031, 65.440002 ], [ 29.707031, 65.146115 ], [ 29.531250, 65.146115 ], [ 29.531250, 64.923542 ], [ 29.707031, 64.923542 ], [ 29.707031, 64.774125 ], [ 29.882812, 64.774125 ], [ 29.882812, 64.623877 ], [ 30.058594, 64.623877 ], [ 30.058594, 64.472794 ], [ 30.234375, 64.472794 ], [ 30.234375, 64.320872 ], [ 30.410156, 64.320872 ], [ 30.410156, 64.091408 ], [ 30.234375, 64.091408 ], [ 30.234375, 63.937372 ], [ 30.058594, 63.937372 ], [ 30.058594, 63.704722 ], [ 29.882812, 63.704722 ], [ 29.882812, 63.548552 ], [ 30.058594, 63.548552 ], [ 30.058594, 63.470145 ], [ 30.234375, 63.470145 ], [ 30.234375, 63.391522 ], [ 30.410156, 63.391522 ], [ 30.410156, 63.312683 ], [ 30.585938, 63.312683 ], [ 30.585938, 63.233627 ], [ 30.761719, 63.233627 ], [ 30.761719, 63.154355 ], [ 30.937500, 63.154355 ], [ 30.937500, 63.074866 ], [ 31.113281, 63.074866 ], [ 31.113281, 62.995158 ], [ 31.289062, 62.995158 ], [ 31.289062, 62.915233 ], [ 31.464844, 62.915233 ], [ 31.464844, 62.754726 ], [ 31.289062, 62.754726 ], [ 31.289062, 62.512318 ], [ 31.113281, 62.512318 ], [ 31.113281, 62.349609 ], [ 30.937500, 62.349609 ], [ 30.937500, 62.267923 ], [ 30.761719, 62.267923 ], [ 30.761719, 62.186014 ], [ 30.585938, 62.186014 ], [ 30.585938, 62.021528 ], [ 30.410156, 62.021528 ], [ 30.410156, 61.938950 ], [ 30.234375, 61.938950 ], [ 30.234375, 61.856149 ], [ 30.058594, 61.856149 ], [ 30.058594, 61.773123 ], [ 29.882812, 61.773123 ], [ 29.882812, 61.689872 ], [ 29.707031, 61.689872 ], [ 29.707031, 61.522695 ], [ 29.531250, 61.522695 ], [ 29.531250, 61.438767 ], [ 29.355469, 61.438767 ], [ 29.355469, 61.354614 ], [ 29.179688, 61.354614 ], [ 29.179688, 61.270233 ], [ 29.003906, 61.270233 ], [ 29.003906, 61.100789 ], [ 28.828125, 61.100789 ], [ 28.828125, 61.015725 ], [ 28.652344, 61.015725 ], [ 28.652344, 60.930432 ], [ 28.476562, 60.930432 ], [ 28.476562, 60.844911 ], [ 28.300781, 60.844911 ], [ 28.300781, 60.673179 ], [ 28.125000, 60.673179 ], [ 28.125000, 60.586967 ], [ 27.246094, 60.586967 ], [ 27.246094, 60.500525 ], [ 26.191406, 60.500525 ], [ 26.191406, 60.413852 ], [ 25.839844, 60.413852 ], [ 25.839844, 60.326948 ], [ 25.488281, 60.326948 ], [ 25.488281, 60.239811 ], [ 25.136719, 60.239811 ], [ 25.136719, 60.152442 ], [ 24.785156, 60.152442 ], [ 24.785156, 60.064840 ], [ 24.082031, 60.064840 ], [ 24.082031, 59.977005 ], [ 23.378906, 59.977005 ], [ 23.378906, 59.888937 ], [ 22.675781, 59.888937 ], [ 22.675781, 60.064840 ], [ 22.500000, 60.064840 ], [ 22.500000, 60.152442 ], [ 22.324219, 60.152442 ], [ 22.324219, 60.326948 ], [ 22.148438, 60.326948 ], [ 22.148438, 60.413852 ], [ 21.972656, 60.413852 ], [ 21.972656, 60.500525 ], [ 21.796875, 60.500525 ], [ 21.796875, 60.586967 ], [ 21.445312, 60.586967 ], [ 21.445312, 60.673179 ], [ 21.269531, 60.673179 ], [ 21.269531, 61.270233 ], [ 21.445312, 61.270233 ], [ 21.445312, 61.856149 ], [ 21.269531, 61.856149 ], [ 21.269531, 62.186014 ], [ 21.093750, 62.186014 ], [ 21.093750, 62.512318 ], [ 20.917969, 62.512318 ], [ 20.917969, 62.754726 ], [ 21.093750, 62.754726 ], [ 21.093750, 62.915233 ], [ 21.269531, 62.915233 ], [ 21.269531, 63.074866 ], [ 21.445312, 63.074866 ], [ 21.445312, 63.233627 ], [ 21.621094, 63.233627 ], [ 21.621094, 63.391522 ], [ 21.796875, 63.391522 ], [ 21.796875, 63.548552 ], [ 21.972656, 63.548552 ], [ 21.972656, 63.626745 ], [ 22.148438, 63.626745 ], [ 22.148438, 63.782486 ], [ 22.324219, 63.782486 ], [ 22.324219, 63.860036 ], [ 22.500000, 63.860036 ], [ 22.500000, 63.937372 ], [ 22.675781, 63.937372 ], [ 22.675781, 64.014496 ], [ 22.851562, 64.014496 ], [ 22.851562, 64.091408 ], [ 23.027344, 64.091408 ], [ 23.027344, 64.168107 ], [ 23.203125, 64.168107 ], [ 23.203125, 64.244595 ], [ 23.378906, 64.244595 ], [ 23.378906, 64.396938 ], [ 23.554688, 64.396938 ], [ 23.554688, 64.472794 ], [ 23.730469, 64.472794 ], [ 23.730469, 64.548440 ], [ 23.906250, 64.548440 ], [ 23.906250, 64.623877 ], [ 24.082031, 64.623877 ], [ 24.082031, 64.699105 ], [ 24.257812, 64.699105 ], [ 24.257812, 64.774125 ], [ 24.433594, 64.774125 ], [ 24.433594, 64.848937 ], [ 24.609375, 64.848937 ], [ 24.609375, 64.923542 ], [ 24.785156, 64.923542 ], [ 24.785156, 64.997939 ], [ 25.136719, 64.997939 ], [ 25.136719, 65.072130 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.366837 ], [ 25.136719, 65.366837 ], [ 25.136719, 65.585720 ], [ 24.960938, 65.585720 ], [ 24.960938, 65.658275 ], [ 24.609375, 65.658275 ], [ 24.609375, 65.730626 ], [ 24.433594, 65.730626 ], [ 24.433594, 65.802776 ], [ 24.257812, 65.802776 ], [ 24.257812, 65.874725 ], [ 23.906250, 65.874725 ], [ 23.906250, 65.946472 ], [ 23.730469, 65.946472 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 66.861082 ], [ 29.003906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.312500, 57.984808 ], [ 25.312500, 57.891497 ], [ 25.664062, 57.891497 ], [ 25.664062, 57.797944 ], [ 25.839844, 57.797944 ], [ 25.839844, 57.704147 ], [ 26.191406, 57.704147 ], [ 26.191406, 57.610107 ], [ 26.367188, 57.610107 ], [ 26.367188, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.246094, 57.421294 ], [ 27.421875, 57.421294 ], [ 27.421875, 57.326521 ], [ 27.597656, 57.326521 ], [ 27.597656, 57.231503 ], [ 27.773438, 57.231503 ], [ 27.773438, 56.559482 ], [ 27.949219, 56.559482 ], [ 27.949219, 56.267761 ], [ 28.125000, 56.267761 ], [ 28.125000, 56.072035 ], [ 27.773438, 56.072035 ], [ 27.773438, 55.973798 ], [ 27.597656, 55.973798 ], [ 27.597656, 55.875311 ], [ 27.246094, 55.875311 ], [ 27.246094, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.677584 ], [ 26.718750, 55.677584 ], [ 26.718750, 55.578345 ], [ 26.367188, 55.578345 ], [ 26.367188, 55.677584 ], [ 26.191406, 55.677584 ], [ 26.191406, 55.776573 ], [ 25.839844, 55.776573 ], [ 25.839844, 55.875311 ], [ 25.664062, 55.875311 ], [ 25.664062, 55.973798 ], [ 25.488281, 55.973798 ], [ 25.488281, 56.072035 ], [ 25.136719, 56.072035 ], [ 25.136719, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.267761 ], [ 24.785156, 56.267761 ], [ 24.785156, 56.365250 ], [ 24.433594, 56.365250 ], [ 24.433594, 56.267761 ], [ 22.851562, 56.267761 ], [ 22.851562, 56.365250 ], [ 22.148438, 56.365250 ], [ 22.148438, 56.267761 ], [ 21.796875, 56.267761 ], [ 21.796875, 56.170023 ], [ 21.445312, 56.170023 ], [ 21.445312, 56.072035 ], [ 21.093750, 56.072035 ], [ 21.093750, 56.848972 ], [ 21.269531, 56.848972 ], [ 21.269531, 57.040730 ], [ 21.445312, 57.040730 ], [ 21.445312, 57.231503 ], [ 21.621094, 57.231503 ], [ 21.621094, 57.421294 ], [ 21.796875, 57.421294 ], [ 21.796875, 57.515823 ], [ 21.972656, 57.515823 ], [ 21.972656, 57.610107 ], [ 22.324219, 57.610107 ], [ 22.324219, 57.704147 ], [ 22.675781, 57.704147 ], [ 22.675781, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.421294 ], [ 23.027344, 57.421294 ], [ 23.027344, 57.231503 ], [ 23.203125, 57.231503 ], [ 23.203125, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.082031, 57.421294 ], [ 24.257812, 57.421294 ], [ 24.257812, 57.797944 ], [ 24.609375, 57.797944 ], [ 24.609375, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.984808 ], [ 25.312500, 57.984808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 57.984808 ], [ 25.136719, 57.891497 ], [ 25.488281, 57.891497 ], [ 25.488281, 57.797944 ], [ 25.664062, 57.797944 ], [ 25.664062, 57.704147 ], [ 26.015625, 57.704147 ], [ 26.015625, 57.610107 ], [ 26.191406, 57.610107 ], [ 26.191406, 57.515823 ], [ 27.246094, 57.515823 ], [ 27.246094, 57.421294 ], [ 27.421875, 57.421294 ], [ 27.421875, 57.326521 ], [ 27.597656, 57.326521 ], [ 27.597656, 57.040730 ], [ 27.773438, 57.040730 ], [ 27.773438, 56.656226 ], [ 27.949219, 56.656226 ], [ 27.949219, 56.267761 ], [ 28.125000, 56.267761 ], [ 28.125000, 56.072035 ], [ 27.773438, 56.072035 ], [ 27.773438, 55.973798 ], [ 27.421875, 55.973798 ], [ 27.421875, 55.875311 ], [ 27.070312, 55.875311 ], [ 27.070312, 55.776573 ], [ 26.718750, 55.776573 ], [ 26.718750, 55.677584 ], [ 26.191406, 55.677584 ], [ 26.191406, 55.776573 ], [ 26.015625, 55.776573 ], [ 26.015625, 55.875311 ], [ 25.839844, 55.875311 ], [ 25.839844, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 56.072035 ], [ 25.488281, 56.072035 ], [ 25.488281, 56.170023 ], [ 24.960938, 56.170023 ], [ 24.960938, 56.267761 ], [ 24.785156, 56.267761 ], [ 24.785156, 56.462490 ], [ 24.433594, 56.462490 ], [ 24.433594, 56.365250 ], [ 21.972656, 56.365250 ], [ 21.972656, 56.267761 ], [ 21.621094, 56.267761 ], [ 21.621094, 56.170023 ], [ 21.269531, 56.170023 ], [ 21.269531, 56.072035 ], [ 20.917969, 56.072035 ], [ 20.917969, 56.944974 ], [ 21.093750, 56.944974 ], [ 21.093750, 57.136239 ], [ 21.269531, 57.136239 ], [ 21.269531, 57.326521 ], [ 21.445312, 57.326521 ], [ 21.445312, 57.421294 ], [ 21.621094, 57.421294 ], [ 21.621094, 57.515823 ], [ 21.972656, 57.515823 ], [ 21.972656, 57.610107 ], [ 22.148438, 57.610107 ], [ 22.148438, 57.704147 ], [ 22.675781, 57.704147 ], [ 22.675781, 57.515823 ], [ 22.851562, 57.515823 ], [ 22.851562, 57.326521 ], [ 23.027344, 57.326521 ], [ 23.027344, 57.136239 ], [ 23.203125, 57.136239 ], [ 23.203125, 57.040730 ], [ 24.082031, 57.040730 ], [ 24.082031, 57.421294 ], [ 24.257812, 57.421294 ], [ 24.257812, 57.797944 ], [ 24.609375, 57.797944 ], [ 24.609375, 57.891497 ], [ 24.960938, 57.891497 ], [ 24.960938, 57.984808 ], [ 25.136719, 57.984808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 59.623325 ], [ 26.015625, 59.534318 ], [ 26.542969, 59.534318 ], [ 26.542969, 59.445075 ], [ 27.949219, 59.445075 ], [ 27.949219, 59.355596 ], [ 28.125000, 59.355596 ], [ 28.125000, 59.175928 ], [ 27.949219, 59.175928 ], [ 27.949219, 58.995311 ], [ 27.773438, 58.995311 ], [ 27.773438, 58.904646 ], [ 27.597656, 58.904646 ], [ 27.597656, 58.722599 ], [ 27.421875, 58.722599 ], [ 27.421875, 58.447733 ], [ 27.597656, 58.447733 ], [ 27.597656, 57.984808 ], [ 27.773438, 57.984808 ], [ 27.773438, 57.704147 ], [ 27.597656, 57.704147 ], [ 27.597656, 57.610107 ], [ 27.421875, 57.610107 ], [ 27.421875, 57.515823 ], [ 26.367188, 57.515823 ], [ 26.367188, 57.610107 ], [ 26.191406, 57.610107 ], [ 26.191406, 57.704147 ], [ 25.839844, 57.704147 ], [ 25.839844, 57.797944 ], [ 25.664062, 57.797944 ], [ 25.664062, 57.891497 ], [ 25.312500, 57.891497 ], [ 25.312500, 57.984808 ], [ 24.960938, 57.984808 ], [ 24.960938, 57.891497 ], [ 24.609375, 57.891497 ], [ 24.609375, 57.797944 ], [ 24.257812, 57.797944 ], [ 24.257812, 58.077876 ], [ 24.433594, 58.077876 ], [ 24.433594, 58.263287 ], [ 23.906250, 58.263287 ], [ 23.906250, 58.355630 ], [ 23.730469, 58.355630 ], [ 23.730469, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.539595 ], [ 23.378906, 58.539595 ], [ 23.378906, 59.175928 ], [ 23.730469, 59.175928 ], [ 23.730469, 59.265881 ], [ 24.082031, 59.265881 ], [ 24.082031, 59.355596 ], [ 24.433594, 59.355596 ], [ 24.433594, 59.445075 ], [ 24.960938, 59.445075 ], [ 24.960938, 59.534318 ], [ 25.664062, 59.534318 ], [ 25.664062, 59.623325 ], [ 26.015625, 59.623325 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.015625, 59.623325 ], [ 26.015625, 59.534318 ], [ 26.542969, 59.534318 ], [ 26.542969, 59.445075 ], [ 27.597656, 59.445075 ], [ 27.597656, 59.534318 ], [ 27.949219, 59.534318 ], [ 27.949219, 59.445075 ], [ 28.125000, 59.445075 ], [ 28.125000, 59.265881 ], [ 27.949219, 59.265881 ], [ 27.949219, 59.085739 ], [ 27.773438, 59.085739 ], [ 27.773438, 58.995311 ], [ 27.597656, 58.995311 ], [ 27.597656, 58.813742 ], [ 27.421875, 58.813742 ], [ 27.421875, 58.263287 ], [ 27.597656, 58.263287 ], [ 27.597656, 57.704147 ], [ 27.421875, 57.704147 ], [ 27.421875, 57.515823 ], [ 26.191406, 57.515823 ], [ 26.191406, 57.610107 ], [ 26.015625, 57.610107 ], [ 26.015625, 57.704147 ], [ 25.664062, 57.704147 ], [ 25.664062, 57.797944 ], [ 25.488281, 57.797944 ], [ 25.488281, 57.891497 ], [ 25.136719, 57.891497 ], [ 25.136719, 57.984808 ], [ 24.960938, 57.984808 ], [ 24.960938, 57.891497 ], [ 24.609375, 57.891497 ], [ 24.609375, 57.797944 ], [ 24.257812, 57.797944 ], [ 24.257812, 58.355630 ], [ 24.082031, 58.355630 ], [ 24.082031, 58.263287 ], [ 23.730469, 58.263287 ], [ 23.730469, 58.447733 ], [ 23.554688, 58.447733 ], [ 23.554688, 58.539595 ], [ 23.378906, 58.539595 ], [ 23.378906, 58.904646 ], [ 23.203125, 58.904646 ], [ 23.203125, 59.265881 ], [ 23.554688, 59.265881 ], [ 23.554688, 59.355596 ], [ 23.906250, 59.355596 ], [ 23.906250, 59.445075 ], [ 24.257812, 59.445075 ], [ 24.257812, 59.534318 ], [ 25.312500, 59.534318 ], [ 25.312500, 59.623325 ], [ 26.015625, 59.623325 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.365250 ], [ 24.785156, 56.267761 ], [ 24.960938, 56.267761 ], [ 24.960938, 56.170023 ], [ 25.136719, 56.170023 ], [ 25.136719, 56.072035 ], [ 25.488281, 56.072035 ], [ 25.488281, 55.973798 ], [ 25.664062, 55.973798 ], [ 25.664062, 55.875311 ], [ 25.839844, 55.875311 ], [ 25.839844, 55.776573 ], [ 26.191406, 55.776573 ], [ 26.191406, 55.677584 ], [ 26.367188, 55.677584 ], [ 26.367188, 55.578345 ], [ 26.542969, 55.578345 ], [ 26.542969, 55.078367 ], [ 26.367188, 55.078367 ], [ 26.367188, 54.977614 ], [ 26.015625, 54.977614 ], [ 26.015625, 54.876607 ], [ 25.839844, 54.876607 ], [ 25.839844, 54.673831 ], [ 25.664062, 54.673831 ], [ 25.664062, 54.367759 ], [ 25.488281, 54.367759 ], [ 25.488281, 54.162434 ], [ 25.136719, 54.162434 ], [ 25.136719, 54.059388 ], [ 24.785156, 54.059388 ], [ 24.785156, 53.956086 ], [ 23.378906, 53.956086 ], [ 23.378906, 54.162434 ], [ 23.203125, 54.162434 ], [ 23.203125, 54.265224 ], [ 22.851562, 54.265224 ], [ 22.851562, 54.367759 ], [ 22.675781, 54.367759 ], [ 22.675781, 54.876607 ], [ 22.324219, 54.876607 ], [ 22.324219, 54.977614 ], [ 21.972656, 54.977614 ], [ 21.972656, 55.078367 ], [ 21.445312, 55.078367 ], [ 21.445312, 55.178868 ], [ 21.269531, 55.178868 ], [ 21.269531, 55.578345 ], [ 21.093750, 55.578345 ], [ 21.093750, 56.072035 ], [ 21.445312, 56.072035 ], [ 21.445312, 56.170023 ], [ 21.796875, 56.170023 ], [ 21.796875, 56.267761 ], [ 22.148438, 56.267761 ], [ 22.148438, 56.365250 ], [ 22.851562, 56.365250 ], [ 22.851562, 56.267761 ], [ 24.433594, 56.267761 ], [ 24.433594, 56.365250 ], [ 24.785156, 56.365250 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.785156, 56.462490 ], [ 24.785156, 56.267761 ], [ 24.960938, 56.267761 ], [ 24.960938, 56.170023 ], [ 25.488281, 56.170023 ], [ 25.488281, 56.072035 ], [ 25.664062, 56.072035 ], [ 25.664062, 55.973798 ], [ 25.839844, 55.973798 ], [ 25.839844, 55.875311 ], [ 26.015625, 55.875311 ], [ 26.015625, 55.776573 ], [ 26.191406, 55.776573 ], [ 26.191406, 55.677584 ], [ 26.367188, 55.677584 ], [ 26.367188, 55.379110 ], [ 26.542969, 55.379110 ], [ 26.542969, 55.078367 ], [ 26.191406, 55.078367 ], [ 26.191406, 54.977614 ], [ 25.839844, 54.977614 ], [ 25.839844, 54.876607 ], [ 25.664062, 54.876607 ], [ 25.664062, 54.572062 ], [ 25.488281, 54.572062 ], [ 25.488281, 54.265224 ], [ 25.136719, 54.265224 ], [ 25.136719, 54.162434 ], [ 24.960938, 54.162434 ], [ 24.960938, 54.059388 ], [ 24.609375, 54.059388 ], [ 24.609375, 53.956086 ], [ 23.378906, 53.956086 ], [ 23.378906, 54.059388 ], [ 23.203125, 54.059388 ], [ 23.203125, 54.265224 ], [ 22.851562, 54.265224 ], [ 22.851562, 54.367759 ], [ 22.675781, 54.367759 ], [ 22.675781, 54.470038 ], [ 22.500000, 54.470038 ], [ 22.500000, 54.775346 ], [ 22.675781, 54.775346 ], [ 22.675781, 54.876607 ], [ 22.500000, 54.876607 ], [ 22.500000, 54.977614 ], [ 22.148438, 54.977614 ], [ 22.148438, 55.078367 ], [ 21.796875, 55.078367 ], [ 21.796875, 55.178868 ], [ 21.445312, 55.178868 ], [ 21.445312, 55.279115 ], [ 21.269531, 55.279115 ], [ 21.269531, 55.478853 ], [ 21.093750, 55.478853 ], [ 21.093750, 55.875311 ], [ 20.917969, 55.875311 ], [ 20.917969, 56.072035 ], [ 21.269531, 56.072035 ], [ 21.269531, 56.170023 ], [ 21.621094, 56.170023 ], [ 21.621094, 56.267761 ], [ 21.972656, 56.267761 ], [ 21.972656, 56.365250 ], [ 24.433594, 56.365250 ], [ 24.433594, 56.462490 ], [ 24.785156, 56.462490 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.476562, 56.072035 ], [ 28.476562, 55.973798 ], [ 28.828125, 55.973798 ], [ 28.828125, 55.875311 ], [ 29.179688, 55.875311 ], [ 29.179688, 55.776573 ], [ 29.355469, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.707031, 55.677584 ], [ 29.707031, 55.776573 ], [ 30.058594, 55.776573 ], [ 30.058594, 55.677584 ], [ 30.585938, 55.677584 ], [ 30.585938, 55.578345 ], [ 30.937500, 55.578345 ], [ 30.937500, 54.876607 ], [ 30.761719, 54.876607 ], [ 30.761719, 54.673831 ], [ 30.937500, 54.673831 ], [ 30.937500, 54.470038 ], [ 31.113281, 54.470038 ], [ 31.113281, 54.367759 ], [ 31.289062, 54.367759 ], [ 31.289062, 54.162434 ], [ 31.464844, 54.162434 ], [ 31.464844, 54.059388 ], [ 31.640625, 54.059388 ], [ 31.640625, 53.956086 ], [ 31.816406, 53.956086 ], [ 31.816406, 53.748711 ], [ 31.992188, 53.748711 ], [ 31.992188, 53.644638 ], [ 32.343750, 53.644638 ], [ 32.343750, 53.540307 ], [ 32.519531, 53.540307 ], [ 32.519531, 53.330873 ], [ 32.695312, 53.330873 ], [ 32.695312, 53.225768 ], [ 32.519531, 53.225768 ], [ 32.519531, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.464844, 52.908902 ], [ 31.464844, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.160455 ], [ 31.816406, 52.160455 ], [ 31.816406, 52.052490 ], [ 30.937500, 52.052490 ], [ 30.937500, 51.944265 ], [ 30.761719, 51.944265 ], [ 30.761719, 51.835778 ], [ 30.585938, 51.835778 ], [ 30.585938, 51.289406 ], [ 30.234375, 51.289406 ], [ 30.234375, 51.399206 ], [ 29.179688, 51.399206 ], [ 29.179688, 51.508742 ], [ 28.828125, 51.508742 ], [ 28.828125, 51.399206 ], [ 28.476562, 51.399206 ], [ 28.476562, 51.508742 ], [ 28.300781, 51.508742 ], [ 28.300781, 51.618017 ], [ 27.070312, 51.618017 ], [ 27.070312, 51.727028 ], [ 26.542969, 51.727028 ], [ 26.542969, 51.835778 ], [ 25.664062, 51.835778 ], [ 25.664062, 51.944265 ], [ 25.136719, 51.944265 ], [ 25.136719, 51.835778 ], [ 24.609375, 51.835778 ], [ 24.609375, 51.727028 ], [ 24.257812, 51.727028 ], [ 24.257812, 51.618017 ], [ 23.554688, 51.618017 ], [ 23.554688, 52.160455 ], [ 23.378906, 52.160455 ], [ 23.378906, 52.375599 ], [ 23.203125, 52.375599 ], [ 23.203125, 52.482780 ], [ 23.378906, 52.482780 ], [ 23.378906, 52.589701 ], [ 23.730469, 52.589701 ], [ 23.730469, 53.225768 ], [ 23.554688, 53.225768 ], [ 23.554688, 53.956086 ], [ 24.785156, 53.956086 ], [ 24.785156, 54.059388 ], [ 25.136719, 54.059388 ], [ 25.136719, 54.162434 ], [ 25.488281, 54.162434 ], [ 25.488281, 54.367759 ], [ 25.664062, 54.367759 ], [ 25.664062, 54.673831 ], [ 25.839844, 54.673831 ], [ 25.839844, 54.876607 ], [ 26.015625, 54.876607 ], [ 26.015625, 54.977614 ], [ 26.367188, 54.977614 ], [ 26.367188, 55.078367 ], [ 26.542969, 55.078367 ], [ 26.542969, 55.578345 ], [ 26.718750, 55.578345 ], [ 26.718750, 55.677584 ], [ 27.070312, 55.677584 ], [ 27.070312, 55.776573 ], [ 27.246094, 55.776573 ], [ 27.246094, 55.875311 ], [ 27.597656, 55.875311 ], [ 27.597656, 55.973798 ], [ 27.773438, 55.973798 ], [ 27.773438, 56.072035 ], [ 28.476562, 56.072035 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.300781, 56.170023 ], [ 28.300781, 56.072035 ], [ 28.828125, 56.072035 ], [ 28.828125, 55.973798 ], [ 29.179688, 55.973798 ], [ 29.179688, 55.776573 ], [ 29.355469, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.531250, 55.677584 ], [ 29.531250, 55.776573 ], [ 30.234375, 55.776573 ], [ 30.234375, 55.677584 ], [ 30.585938, 55.677584 ], [ 30.585938, 55.578345 ], [ 30.761719, 55.578345 ], [ 30.761719, 55.379110 ], [ 30.937500, 55.379110 ], [ 30.937500, 55.078367 ], [ 30.761719, 55.078367 ], [ 30.761719, 54.876607 ], [ 30.585938, 54.876607 ], [ 30.585938, 54.775346 ], [ 30.761719, 54.775346 ], [ 30.761719, 54.572062 ], [ 30.937500, 54.572062 ], [ 30.937500, 54.367759 ], [ 31.113281, 54.367759 ], [ 31.113281, 54.162434 ], [ 31.289062, 54.162434 ], [ 31.289062, 54.059388 ], [ 31.640625, 54.059388 ], [ 31.640625, 53.748711 ], [ 31.992188, 53.748711 ], [ 31.992188, 53.644638 ], [ 32.343750, 53.644638 ], [ 32.343750, 53.540307 ], [ 32.519531, 53.540307 ], [ 32.519531, 53.435719 ], [ 32.695312, 53.435719 ], [ 32.695312, 53.330873 ], [ 32.343750, 53.330873 ], [ 32.343750, 53.225768 ], [ 31.464844, 53.225768 ], [ 31.464844, 53.120405 ], [ 31.289062, 53.120405 ], [ 31.289062, 52.908902 ], [ 31.464844, 52.908902 ], [ 31.464844, 52.482780 ], [ 31.640625, 52.482780 ], [ 31.640625, 52.160455 ], [ 31.289062, 52.160455 ], [ 31.289062, 52.052490 ], [ 30.761719, 52.052490 ], [ 30.761719, 51.944265 ], [ 30.585938, 51.944265 ], [ 30.585938, 51.618017 ], [ 30.410156, 51.618017 ], [ 30.410156, 51.399206 ], [ 30.058594, 51.399206 ], [ 30.058594, 51.508742 ], [ 29.707031, 51.508742 ], [ 29.707031, 51.399206 ], [ 29.003906, 51.399206 ], [ 29.003906, 51.508742 ], [ 28.125000, 51.508742 ], [ 28.125000, 51.618017 ], [ 27.070312, 51.618017 ], [ 27.070312, 51.727028 ], [ 26.367188, 51.727028 ], [ 26.367188, 51.835778 ], [ 25.664062, 51.835778 ], [ 25.664062, 51.944265 ], [ 24.433594, 51.944265 ], [ 24.433594, 51.835778 ], [ 24.257812, 51.835778 ], [ 24.257812, 51.727028 ], [ 24.082031, 51.727028 ], [ 24.082031, 51.618017 ], [ 23.378906, 51.618017 ], [ 23.378906, 52.160455 ], [ 23.203125, 52.160455 ], [ 23.203125, 52.375599 ], [ 23.027344, 52.375599 ], [ 23.027344, 52.589701 ], [ 23.554688, 52.589701 ], [ 23.554688, 52.696361 ], [ 23.730469, 52.696361 ], [ 23.730469, 53.225768 ], [ 23.554688, 53.225768 ], [ 23.554688, 53.435719 ], [ 23.378906, 53.435719 ], [ 23.378906, 53.956086 ], [ 24.609375, 53.956086 ], [ 24.609375, 54.059388 ], [ 24.960938, 54.059388 ], [ 24.960938, 54.162434 ], [ 25.136719, 54.162434 ], [ 25.136719, 54.265224 ], [ 25.488281, 54.265224 ], [ 25.488281, 54.572062 ], [ 25.664062, 54.572062 ], [ 25.664062, 54.876607 ], [ 25.839844, 54.876607 ], [ 25.839844, 54.977614 ], [ 26.191406, 54.977614 ], [ 26.191406, 55.078367 ], [ 26.542969, 55.078367 ], [ 26.542969, 55.379110 ], [ 26.367188, 55.379110 ], [ 26.367188, 55.677584 ], [ 26.718750, 55.677584 ], [ 26.718750, 55.776573 ], [ 27.070312, 55.776573 ], [ 27.070312, 55.875311 ], [ 27.421875, 55.875311 ], [ 27.421875, 55.973798 ], [ 27.773438, 55.973798 ], [ 27.773438, 56.072035 ], [ 28.125000, 56.072035 ], [ 28.125000, 56.170023 ], [ 28.300781, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.542969, 48.224673 ], [ 26.542969, 48.107431 ], [ 26.894531, 48.107431 ], [ 26.894531, 47.989922 ], [ 27.070312, 47.989922 ], [ 27.070312, 47.872144 ], [ 27.246094, 47.872144 ], [ 27.246094, 47.754098 ], [ 27.421875, 47.754098 ], [ 27.421875, 47.517201 ], [ 27.597656, 47.517201 ], [ 27.597656, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 47.040182 ], [ 27.949219, 47.040182 ], [ 27.949219, 46.800059 ], [ 28.125000, 46.800059 ], [ 28.125000, 45.706179 ], [ 28.300781, 45.706179 ], [ 28.300781, 45.336702 ], [ 29.003906, 45.336702 ], [ 29.003906, 45.460131 ], [ 29.179688, 45.460131 ], [ 29.179688, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 45.213004 ], [ 29.707031, 45.213004 ], [ 29.707031, 44.964798 ], [ 29.355469, 44.964798 ], [ 29.355469, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.590467 ], [ 28.652344, 44.590467 ], [ 28.652344, 43.961191 ], [ 28.476562, 43.961191 ], [ 28.476562, 43.707594 ], [ 28.125000, 43.707594 ], [ 28.125000, 43.834527 ], [ 27.773438, 43.834527 ], [ 27.773438, 43.961191 ], [ 27.421875, 43.961191 ], [ 27.421875, 44.087585 ], [ 27.246094, 44.087585 ], [ 27.246094, 44.213710 ], [ 27.070312, 44.213710 ], [ 27.070312, 44.087585 ], [ 26.367188, 44.087585 ], [ 26.367188, 43.961191 ], [ 26.015625, 43.961191 ], [ 26.015625, 43.834527 ], [ 25.664062, 43.834527 ], [ 25.664062, 43.707594 ], [ 23.554688, 43.707594 ], [ 23.554688, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 44.087585 ], [ 22.675781, 44.087585 ], [ 22.675781, 44.339565 ], [ 22.500000, 44.339565 ], [ 22.500000, 44.465151 ], [ 22.675781, 44.465151 ], [ 22.675781, 44.590467 ], [ 22.324219, 44.590467 ], [ 22.324219, 44.465151 ], [ 21.972656, 44.465151 ], [ 21.972656, 44.590467 ], [ 21.621094, 44.590467 ], [ 21.621094, 44.964798 ], [ 21.445312, 44.964798 ], [ 21.445312, 45.213004 ], [ 21.269531, 45.213004 ], [ 21.269531, 45.336702 ], [ 20.917969, 45.336702 ], [ 20.917969, 45.583290 ], [ 20.742188, 45.583290 ], [ 20.742188, 45.706179 ], [ 20.566406, 45.706179 ], [ 20.566406, 45.828799 ], [ 20.390625, 45.828799 ], [ 20.390625, 45.951150 ], [ 20.214844, 45.951150 ], [ 20.214844, 46.073231 ], [ 20.566406, 46.073231 ], [ 20.566406, 46.195042 ], [ 20.917969, 46.195042 ], [ 20.917969, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.437857 ], [ 21.269531, 46.437857 ], [ 21.269531, 46.679594 ], [ 21.445312, 46.679594 ], [ 21.445312, 46.920255 ], [ 21.621094, 46.920255 ], [ 21.621094, 47.040182 ], [ 21.796875, 47.040182 ], [ 21.796875, 47.279229 ], [ 21.972656, 47.279229 ], [ 21.972656, 47.517201 ], [ 22.148438, 47.517201 ], [ 22.148438, 47.635784 ], [ 22.324219, 47.635784 ], [ 22.324219, 47.754098 ], [ 22.675781, 47.754098 ], [ 22.675781, 47.872144 ], [ 22.851562, 47.872144 ], [ 22.851562, 47.989922 ], [ 23.203125, 47.989922 ], [ 23.203125, 48.107431 ], [ 23.378906, 48.107431 ], [ 23.378906, 47.989922 ], [ 24.433594, 47.989922 ], [ 24.433594, 47.872144 ], [ 24.609375, 47.872144 ], [ 24.609375, 47.754098 ], [ 25.136719, 47.754098 ], [ 25.136719, 47.872144 ], [ 25.664062, 47.872144 ], [ 25.664062, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.107431 ], [ 26.191406, 48.107431 ], [ 26.191406, 48.224673 ], [ 26.542969, 48.224673 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.894531, 48.224673 ], [ 26.894531, 47.989922 ], [ 27.070312, 47.989922 ], [ 27.070312, 47.754098 ], [ 27.246094, 47.754098 ], [ 27.246094, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.398349 ], [ 27.597656, 47.398349 ], [ 27.597656, 47.279229 ], [ 27.773438, 47.279229 ], [ 27.773438, 47.040182 ], [ 27.949219, 47.040182 ], [ 27.949219, 46.920255 ], [ 28.125000, 46.920255 ], [ 28.125000, 46.195042 ], [ 27.949219, 46.195042 ], [ 27.949219, 45.706179 ], [ 28.125000, 45.706179 ], [ 28.125000, 45.460131 ], [ 28.476562, 45.460131 ], [ 28.476562, 45.336702 ], [ 28.828125, 45.336702 ], [ 28.828125, 45.460131 ], [ 29.355469, 45.460131 ], [ 29.355469, 45.336702 ], [ 29.531250, 45.336702 ], [ 29.531250, 44.964798 ], [ 29.179688, 44.964798 ], [ 29.179688, 44.840291 ], [ 28.828125, 44.840291 ], [ 28.828125, 44.590467 ], [ 28.652344, 44.590467 ], [ 28.652344, 43.961191 ], [ 28.476562, 43.961191 ], [ 28.476562, 43.707594 ], [ 28.125000, 43.707594 ], [ 28.125000, 43.834527 ], [ 27.773438, 43.834527 ], [ 27.773438, 43.961191 ], [ 27.421875, 43.961191 ], [ 27.421875, 44.087585 ], [ 27.070312, 44.087585 ], [ 27.070312, 44.213710 ], [ 26.894531, 44.213710 ], [ 26.894531, 44.087585 ], [ 26.367188, 44.087585 ], [ 26.367188, 43.961191 ], [ 26.015625, 43.961191 ], [ 26.015625, 43.834527 ], [ 25.664062, 43.834527 ], [ 25.664062, 43.707594 ], [ 24.609375, 43.707594 ], [ 24.609375, 43.834527 ], [ 23.554688, 43.834527 ], [ 23.554688, 43.961191 ], [ 23.203125, 43.961191 ], [ 23.203125, 43.834527 ], [ 22.851562, 43.834527 ], [ 22.851562, 43.961191 ], [ 22.675781, 43.961191 ], [ 22.675781, 44.213710 ], [ 22.500000, 44.213710 ], [ 22.500000, 44.339565 ], [ 22.324219, 44.339565 ], [ 22.324219, 44.465151 ], [ 22.675781, 44.465151 ], [ 22.675781, 44.590467 ], [ 21.796875, 44.590467 ], [ 21.796875, 44.715514 ], [ 21.445312, 44.715514 ], [ 21.445312, 45.213004 ], [ 21.093750, 45.213004 ], [ 21.093750, 45.336702 ], [ 20.742188, 45.336702 ], [ 20.742188, 45.828799 ], [ 20.566406, 45.828799 ], [ 20.566406, 45.951150 ], [ 20.390625, 45.951150 ], [ 20.390625, 46.073231 ], [ 20.214844, 46.073231 ], [ 20.214844, 46.195042 ], [ 20.742188, 46.195042 ], [ 20.742188, 46.316584 ], [ 21.093750, 46.316584 ], [ 21.093750, 46.558860 ], [ 21.269531, 46.558860 ], [ 21.269531, 46.679594 ], [ 21.445312, 46.679594 ], [ 21.445312, 46.920255 ], [ 21.621094, 46.920255 ], [ 21.621094, 47.159840 ], [ 21.796875, 47.159840 ], [ 21.796875, 47.517201 ], [ 21.972656, 47.517201 ], [ 21.972656, 47.754098 ], [ 22.324219, 47.754098 ], [ 22.324219, 47.872144 ], [ 22.675781, 47.872144 ], [ 22.675781, 47.989922 ], [ 23.027344, 47.989922 ], [ 23.027344, 48.107431 ], [ 23.203125, 48.107431 ], [ 23.203125, 47.989922 ], [ 24.257812, 47.989922 ], [ 24.257812, 47.872144 ], [ 24.609375, 47.872144 ], [ 24.609375, 47.754098 ], [ 24.960938, 47.754098 ], [ 24.960938, 47.872144 ], [ 25.136719, 47.872144 ], [ 25.136719, 47.989922 ], [ 26.015625, 47.989922 ], [ 26.015625, 48.107431 ], [ 26.191406, 48.107431 ], [ 26.191406, 48.224673 ], [ 26.894531, 48.224673 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.246094, 44.213710 ], [ 27.246094, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.961191 ], [ 27.773438, 43.961191 ], [ 27.773438, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.707594 ], [ 28.476562, 43.707594 ], [ 28.476562, 43.580391 ], [ 28.300781, 43.580391 ], [ 28.300781, 43.325178 ], [ 28.125000, 43.325178 ], [ 28.125000, 43.197167 ], [ 27.949219, 43.197167 ], [ 27.949219, 42.940339 ], [ 27.773438, 42.940339 ], [ 27.773438, 42.682435 ], [ 27.597656, 42.682435 ], [ 27.597656, 42.423457 ], [ 27.773438, 42.423457 ], [ 27.773438, 42.163403 ], [ 27.949219, 42.163403 ], [ 27.949219, 42.032974 ], [ 27.421875, 42.032974 ], [ 27.421875, 42.163403 ], [ 27.070312, 42.163403 ], [ 27.070312, 42.032974 ], [ 26.718750, 42.032974 ], [ 26.718750, 41.902277 ], [ 26.367188, 41.902277 ], [ 26.367188, 41.771312 ], [ 26.191406, 41.771312 ], [ 26.191406, 41.376809 ], [ 25.839844, 41.376809 ], [ 25.839844, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.376809 ], [ 23.906250, 41.376809 ], [ 23.906250, 41.244772 ], [ 23.203125, 41.244772 ], [ 23.203125, 41.376809 ], [ 23.027344, 41.376809 ], [ 23.027344, 41.640078 ], [ 22.851562, 41.640078 ], [ 22.851562, 42.032974 ], [ 22.675781, 42.032974 ], [ 22.675781, 42.163403 ], [ 22.324219, 42.163403 ], [ 22.324219, 42.293564 ], [ 22.500000, 42.293564 ], [ 22.500000, 42.682435 ], [ 22.675781, 42.682435 ], [ 22.675781, 42.940339 ], [ 22.851562, 42.940339 ], [ 22.851562, 43.068888 ], [ 23.027344, 43.068888 ], [ 23.027344, 43.197167 ], [ 22.851562, 43.197167 ], [ 22.851562, 43.325178 ], [ 22.675781, 43.325178 ], [ 22.675781, 43.452919 ], [ 22.500000, 43.452919 ], [ 22.500000, 43.707594 ], [ 22.324219, 43.707594 ], [ 22.324219, 43.961191 ], [ 22.500000, 43.961191 ], [ 22.500000, 44.087585 ], [ 22.851562, 44.087585 ], [ 22.851562, 43.834527 ], [ 23.554688, 43.834527 ], [ 23.554688, 43.707594 ], [ 25.664062, 43.707594 ], [ 25.664062, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.961191 ], [ 26.367188, 43.961191 ], [ 26.367188, 44.087585 ], [ 27.070312, 44.087585 ], [ 27.070312, 44.213710 ], [ 27.246094, 44.213710 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.070312, 44.213710 ], [ 27.070312, 44.087585 ], [ 27.421875, 44.087585 ], [ 27.421875, 43.961191 ], [ 27.773438, 43.961191 ], [ 27.773438, 43.834527 ], [ 28.125000, 43.834527 ], [ 28.125000, 43.707594 ], [ 28.476562, 43.707594 ], [ 28.476562, 43.580391 ], [ 28.300781, 43.580391 ], [ 28.300781, 43.452919 ], [ 28.125000, 43.452919 ], [ 28.125000, 43.325178 ], [ 27.949219, 43.325178 ], [ 27.949219, 43.068888 ], [ 27.773438, 43.068888 ], [ 27.773438, 42.811522 ], [ 27.597656, 42.811522 ], [ 27.597656, 42.423457 ], [ 27.773438, 42.423457 ], [ 27.773438, 42.163403 ], [ 27.949219, 42.163403 ], [ 27.949219, 42.032974 ], [ 27.421875, 42.032974 ], [ 27.421875, 42.163403 ], [ 26.894531, 42.163403 ], [ 26.894531, 42.032974 ], [ 26.367188, 42.032974 ], [ 26.367188, 41.902277 ], [ 26.015625, 41.902277 ], [ 26.015625, 41.376809 ], [ 25.664062, 41.376809 ], [ 25.664062, 41.244772 ], [ 24.960938, 41.244772 ], [ 24.960938, 41.376809 ], [ 24.609375, 41.376809 ], [ 24.609375, 41.508577 ], [ 24.433594, 41.508577 ], [ 24.433594, 41.640078 ], [ 24.257812, 41.640078 ], [ 24.257812, 41.508577 ], [ 23.906250, 41.508577 ], [ 23.906250, 41.376809 ], [ 22.851562, 41.376809 ], [ 22.851562, 42.032974 ], [ 22.675781, 42.032974 ], [ 22.675781, 42.163403 ], [ 22.500000, 42.163403 ], [ 22.500000, 42.293564 ], [ 22.324219, 42.293564 ], [ 22.324219, 42.423457 ], [ 22.500000, 42.423457 ], [ 22.500000, 42.553080 ], [ 22.324219, 42.553080 ], [ 22.324219, 42.811522 ], [ 22.500000, 42.811522 ], [ 22.500000, 42.940339 ], [ 22.675781, 42.940339 ], [ 22.675781, 43.197167 ], [ 22.851562, 43.197167 ], [ 22.851562, 43.325178 ], [ 22.675781, 43.325178 ], [ 22.675781, 43.580391 ], [ 22.500000, 43.580391 ], [ 22.500000, 43.834527 ], [ 22.324219, 43.834527 ], [ 22.324219, 44.213710 ], [ 22.675781, 44.213710 ], [ 22.675781, 43.961191 ], [ 22.851562, 43.961191 ], [ 22.851562, 43.834527 ], [ 23.203125, 43.834527 ], [ 23.203125, 43.961191 ], [ 23.554688, 43.961191 ], [ 23.554688, 43.834527 ], [ 24.609375, 43.834527 ], [ 24.609375, 43.707594 ], [ 25.664062, 43.707594 ], [ 25.664062, 43.834527 ], [ 26.015625, 43.834527 ], [ 26.015625, 43.961191 ], [ 26.367188, 43.961191 ], [ 26.367188, 44.087585 ], [ 26.894531, 44.087585 ], [ 26.894531, 44.213710 ], [ 27.070312, 44.213710 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.597656, 48.458352 ], [ 27.597656, 48.341646 ], [ 27.773438, 48.341646 ], [ 27.773438, 48.224673 ], [ 28.125000, 48.224673 ], [ 28.125000, 48.107431 ], [ 28.652344, 48.107431 ], [ 28.652344, 47.989922 ], [ 29.003906, 47.989922 ], [ 29.003906, 47.872144 ], [ 29.179688, 47.872144 ], [ 29.179688, 47.635784 ], [ 29.003906, 47.635784 ], [ 29.003906, 47.398349 ], [ 29.355469, 47.398349 ], [ 29.355469, 47.159840 ], [ 29.531250, 47.159840 ], [ 29.531250, 46.800059 ], [ 29.707031, 46.800059 ], [ 29.707031, 46.679594 ], [ 29.882812, 46.679594 ], [ 29.882812, 46.437857 ], [ 30.058594, 46.437857 ], [ 30.058594, 46.316584 ], [ 29.355469, 46.316584 ], [ 29.355469, 46.437857 ], [ 28.828125, 46.437857 ], [ 28.828125, 46.316584 ], [ 29.003906, 46.316584 ], [ 29.003906, 46.195042 ], [ 28.828125, 46.195042 ], [ 28.828125, 45.951150 ], [ 28.652344, 45.951150 ], [ 28.652344, 45.706179 ], [ 28.476562, 45.706179 ], [ 28.476562, 45.460131 ], [ 28.300781, 45.460131 ], [ 28.300781, 45.706179 ], [ 28.125000, 45.706179 ], [ 28.125000, 46.800059 ], [ 27.949219, 46.800059 ], [ 27.949219, 47.040182 ], [ 27.773438, 47.040182 ], [ 27.773438, 47.279229 ], [ 27.597656, 47.279229 ], [ 27.597656, 47.517201 ], [ 27.421875, 47.517201 ], [ 27.421875, 47.754098 ], [ 27.246094, 47.754098 ], [ 27.246094, 47.872144 ], [ 27.070312, 47.872144 ], [ 27.070312, 47.989922 ], [ 26.894531, 47.989922 ], [ 26.894531, 48.107431 ], [ 26.542969, 48.107431 ], [ 26.542969, 48.224673 ], [ 26.894531, 48.224673 ], [ 26.894531, 48.341646 ], [ 27.421875, 48.341646 ], [ 27.421875, 48.458352 ], [ 27.597656, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.421875, 48.574790 ], [ 27.421875, 48.458352 ], [ 27.597656, 48.458352 ], [ 27.597656, 48.341646 ], [ 27.949219, 48.341646 ], [ 27.949219, 48.224673 ], [ 28.652344, 48.224673 ], [ 28.652344, 48.107431 ], [ 28.828125, 48.107431 ], [ 28.828125, 47.872144 ], [ 29.003906, 47.872144 ], [ 29.003906, 47.398349 ], [ 29.355469, 47.398349 ], [ 29.355469, 47.159840 ], [ 29.531250, 47.159840 ], [ 29.531250, 46.920255 ], [ 29.707031, 46.920255 ], [ 29.707031, 46.679594 ], [ 29.882812, 46.679594 ], [ 29.882812, 46.558860 ], [ 29.707031, 46.558860 ], [ 29.707031, 46.437857 ], [ 28.828125, 46.437857 ], [ 28.828125, 46.073231 ], [ 28.652344, 46.073231 ], [ 28.652344, 45.828799 ], [ 28.476562, 45.828799 ], [ 28.476562, 45.583290 ], [ 28.125000, 45.583290 ], [ 28.125000, 45.706179 ], [ 27.949219, 45.706179 ], [ 27.949219, 46.195042 ], [ 28.125000, 46.195042 ], [ 28.125000, 46.920255 ], [ 27.949219, 46.920255 ], [ 27.949219, 47.040182 ], [ 27.773438, 47.040182 ], [ 27.773438, 47.279229 ], [ 27.597656, 47.279229 ], [ 27.597656, 47.398349 ], [ 27.421875, 47.398349 ], [ 27.421875, 47.517201 ], [ 27.246094, 47.517201 ], [ 27.246094, 47.754098 ], [ 27.070312, 47.754098 ], [ 27.070312, 47.989922 ], [ 26.894531, 47.989922 ], [ 26.894531, 48.224673 ], [ 26.542969, 48.224673 ], [ 26.542969, 48.341646 ], [ 26.718750, 48.341646 ], [ 26.718750, 48.458352 ], [ 27.246094, 48.458352 ], [ 27.246094, 48.574790 ], [ 27.421875, 48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 33.750000, 52.268157 ], [ 33.925781, 52.268157 ], [ 33.925781, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.944265 ], [ 34.277344, 51.944265 ], [ 34.277344, 51.727028 ], [ 34.453125, 51.727028 ], [ 34.453125, 51.618017 ], [ 34.101562, 51.618017 ], [ 34.101562, 51.399206 ], [ 34.277344, 51.399206 ], [ 34.277344, 51.289406 ], [ 34.453125, 51.289406 ], [ 34.453125, 51.179343 ], [ 34.980469, 51.179343 ], [ 34.980469, 51.069017 ], [ 35.156250, 51.069017 ], [ 35.156250, 50.847573 ], [ 35.332031, 50.847573 ], [ 35.332031, 50.513427 ], [ 35.683594, 50.513427 ], [ 35.683594, 50.401515 ], [ 36.035156, 50.401515 ], [ 36.035156, 50.289339 ], [ 36.386719, 50.289339 ], [ 36.386719, 50.176898 ], [ 36.914062, 50.176898 ], [ 36.914062, 50.289339 ], [ 37.265625, 50.289339 ], [ 37.265625, 50.401515 ], [ 37.441406, 50.401515 ], [ 37.441406, 50.289339 ], [ 37.617188, 50.289339 ], [ 37.617188, 50.176898 ], [ 37.792969, 50.176898 ], [ 37.792969, 49.951220 ], [ 38.847656, 49.951220 ], [ 38.847656, 49.837982 ], [ 39.199219, 49.837982 ], [ 39.199219, 49.724479 ], [ 39.726562, 49.724479 ], [ 39.726562, 49.610710 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.152970 ], [ 39.902344, 49.152970 ], [ 39.902344, 48.922499 ], [ 39.726562, 48.922499 ], [ 39.726562, 48.458352 ], [ 39.902344, 48.458352 ], [ 39.902344, 47.989922 ], [ 39.726562, 47.989922 ], [ 39.726562, 47.872144 ], [ 38.847656, 47.872144 ], [ 38.847656, 47.754098 ], [ 38.671875, 47.754098 ], [ 38.671875, 47.635784 ], [ 38.496094, 47.635784 ], [ 38.496094, 47.517201 ], [ 38.320312, 47.517201 ], [ 38.320312, 47.279229 ], [ 38.144531, 47.279229 ], [ 38.144531, 47.159840 ], [ 37.968750, 47.159840 ], [ 37.968750, 47.040182 ], [ 37.441406, 47.040182 ], [ 37.441406, 46.920255 ], [ 37.265625, 46.920255 ], [ 37.265625, 46.800059 ], [ 36.914062, 46.800059 ], [ 36.914062, 46.679594 ], [ 35.859375, 46.679594 ], [ 35.859375, 46.558860 ], [ 35.507812, 46.558860 ], [ 35.507812, 46.437857 ], [ 35.156250, 46.437857 ], [ 35.156250, 46.316584 ], [ 34.980469, 46.316584 ], [ 34.980469, 45.583290 ], [ 35.332031, 45.583290 ], [ 35.332031, 45.460131 ], [ 36.562500, 45.460131 ], [ 36.562500, 45.213004 ], [ 36.386719, 45.213004 ], [ 36.386719, 45.089036 ], [ 35.859375, 45.089036 ], [ 35.859375, 44.964798 ], [ 35.156250, 44.964798 ], [ 35.156250, 44.840291 ], [ 34.804688, 44.840291 ], [ 34.804688, 44.715514 ], [ 34.628906, 44.715514 ], [ 34.628906, 44.590467 ], [ 34.453125, 44.590467 ], [ 34.453125, 44.465151 ], [ 34.101562, 44.465151 ], [ 34.101562, 44.339565 ], [ 33.750000, 44.339565 ], [ 33.750000, 44.465151 ], [ 33.398438, 44.465151 ], [ 33.398438, 44.840291 ], [ 33.574219, 44.840291 ], [ 33.574219, 45.089036 ], [ 33.222656, 45.089036 ], [ 33.222656, 45.213004 ], [ 32.695312, 45.213004 ], [ 32.695312, 45.460131 ], [ 32.871094, 45.460131 ], [ 32.871094, 45.583290 ], [ 33.222656, 45.583290 ], [ 33.222656, 45.706179 ], [ 33.574219, 45.706179 ], [ 33.574219, 45.828799 ], [ 33.398438, 45.828799 ], [ 33.398438, 45.951150 ], [ 33.222656, 45.951150 ], [ 33.222656, 46.073231 ], [ 32.695312, 46.073231 ], [ 32.695312, 46.195042 ], [ 31.992188, 46.195042 ], [ 31.992188, 46.316584 ], [ 31.816406, 46.316584 ], [ 31.816406, 46.437857 ], [ 31.640625, 46.437857 ], [ 31.640625, 46.679594 ], [ 31.289062, 46.679594 ], [ 31.289062, 46.558860 ], [ 30.761719, 46.558860 ], [ 30.761719, 46.437857 ], [ 30.585938, 46.437857 ], [ 30.585938, 46.195042 ], [ 30.410156, 46.195042 ], [ 30.410156, 45.951150 ], [ 30.234375, 45.951150 ], [ 30.234375, 45.828799 ], [ 30.058594, 45.828799 ], [ 30.058594, 45.706179 ], [ 29.882812, 45.706179 ], [ 29.882812, 45.460131 ], [ 29.707031, 45.460131 ], [ 29.707031, 45.336702 ], [ 29.179688, 45.336702 ], [ 29.179688, 45.460131 ], [ 29.003906, 45.460131 ], [ 29.003906, 45.336702 ], [ 28.300781, 45.336702 ], [ 28.300781, 45.460131 ], [ 28.476562, 45.460131 ], [ 28.476562, 45.706179 ], [ 28.652344, 45.706179 ], [ 28.652344, 45.951150 ], [ 28.828125, 45.951150 ], [ 28.828125, 46.195042 ], [ 29.003906, 46.195042 ], [ 29.003906, 46.316584 ], [ 28.828125, 46.316584 ], [ 28.828125, 46.437857 ], [ 29.355469, 46.437857 ], [ 29.355469, 46.316584 ], [ 30.058594, 46.316584 ], [ 30.058594, 46.437857 ], [ 29.882812, 46.437857 ], [ 29.882812, 46.679594 ], [ 29.707031, 46.679594 ], [ 29.707031, 46.800059 ], [ 29.531250, 46.800059 ], [ 29.531250, 47.159840 ], [ 29.355469, 47.159840 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.398349 ], [ 29.003906, 47.635784 ], [ 29.179688, 47.635784 ], [ 29.179688, 47.872144 ], [ 29.003906, 47.872144 ], [ 29.003906, 47.989922 ], [ 28.652344, 47.989922 ], [ 28.652344, 48.107431 ], [ 28.125000, 48.107431 ], [ 28.125000, 48.224673 ], [ 27.773438, 48.224673 ], [ 27.773438, 48.341646 ], [ 27.597656, 48.341646 ], [ 27.597656, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 48.341646 ], [ 26.894531, 48.341646 ], [ 26.894531, 48.224673 ], [ 26.191406, 48.224673 ], [ 26.191406, 48.107431 ], [ 26.015625, 48.107431 ], [ 26.015625, 47.989922 ], [ 25.664062, 47.989922 ], [ 25.664062, 47.872144 ], [ 25.136719, 47.872144 ], [ 25.136719, 47.754098 ], [ 24.609375, 47.754098 ], [ 24.609375, 47.872144 ], [ 24.433594, 47.872144 ], [ 24.433594, 47.989922 ], [ 23.378906, 47.989922 ], [ 23.378906, 48.107431 ], [ 23.203125, 48.107431 ], [ 23.203125, 47.989922 ], [ 22.851562, 47.989922 ], [ 22.851562, 47.872144 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.107431 ], [ 22.500000, 48.107431 ], [ 22.500000, 48.224673 ], [ 22.324219, 48.224673 ], [ 22.324219, 48.341646 ], [ 22.148438, 48.341646 ], [ 22.148438, 48.574790 ], [ 22.324219, 48.574790 ], [ 22.324219, 48.922499 ], [ 22.500000, 48.922499 ], [ 22.500000, 49.037868 ], [ 22.851562, 49.037868 ], [ 22.851562, 49.152970 ], [ 22.675781, 49.152970 ], [ 22.675781, 49.382373 ], [ 22.500000, 49.382373 ], [ 22.500000, 49.496675 ], [ 22.675781, 49.496675 ], [ 22.675781, 49.724479 ], [ 22.851562, 49.724479 ], [ 22.851562, 49.837982 ], [ 23.027344, 49.837982 ], [ 23.027344, 49.951220 ], [ 23.203125, 49.951220 ], [ 23.203125, 50.176898 ], [ 23.378906, 50.176898 ], [ 23.378906, 50.289339 ], [ 23.730469, 50.289339 ], [ 23.730469, 50.401515 ], [ 23.906250, 50.401515 ], [ 23.906250, 50.513427 ], [ 24.082031, 50.513427 ], [ 24.082031, 50.847573 ], [ 23.906250, 50.847573 ], [ 23.906250, 51.179343 ], [ 23.730469, 51.179343 ], [ 23.730469, 51.399206 ], [ 23.554688, 51.399206 ], [ 23.554688, 51.618017 ], [ 24.257812, 51.618017 ], [ 24.257812, 51.727028 ], [ 24.609375, 51.727028 ], [ 24.609375, 51.835778 ], [ 25.136719, 51.835778 ], [ 25.136719, 51.944265 ], [ 25.664062, 51.944265 ], [ 25.664062, 51.835778 ], [ 26.542969, 51.835778 ], [ 26.542969, 51.727028 ], [ 27.070312, 51.727028 ], [ 27.070312, 51.618017 ], [ 28.300781, 51.618017 ], [ 28.300781, 51.508742 ], [ 28.476562, 51.508742 ], [ 28.476562, 51.399206 ], [ 28.828125, 51.399206 ], [ 28.828125, 51.508742 ], [ 29.179688, 51.508742 ], [ 29.179688, 51.399206 ], [ 30.234375, 51.399206 ], [ 30.234375, 51.289406 ], [ 30.585938, 51.289406 ], [ 30.585938, 51.835778 ], [ 30.761719, 51.835778 ], [ 30.761719, 51.944265 ], [ 30.937500, 51.944265 ], [ 30.937500, 52.052490 ], [ 32.167969, 52.052490 ], [ 32.167969, 52.160455 ], [ 32.343750, 52.160455 ], [ 32.343750, 52.268157 ], [ 33.398438, 52.268157 ], [ 33.398438, 52.375599 ], [ 33.750000, 52.375599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.375599 ], [ 33.750000, 52.268157 ], [ 33.925781, 52.268157 ], [ 33.925781, 52.052490 ], [ 34.101562, 52.052490 ], [ 34.101562, 51.835778 ], [ 34.277344, 51.835778 ], [ 34.277344, 51.727028 ], [ 34.101562, 51.727028 ], [ 34.101562, 51.289406 ], [ 34.980469, 51.289406 ], [ 34.980469, 51.179343 ], [ 35.156250, 51.179343 ], [ 35.156250, 50.958427 ], [ 35.332031, 50.958427 ], [ 35.332031, 50.625073 ], [ 35.507812, 50.625073 ], [ 35.507812, 50.513427 ], [ 35.859375, 50.513427 ], [ 35.859375, 50.401515 ], [ 36.210938, 50.401515 ], [ 36.210938, 50.289339 ], [ 37.089844, 50.289339 ], [ 37.089844, 50.401515 ], [ 37.265625, 50.401515 ], [ 37.265625, 50.289339 ], [ 37.441406, 50.289339 ], [ 37.441406, 50.176898 ], [ 37.617188, 50.176898 ], [ 37.617188, 50.064192 ], [ 37.792969, 50.064192 ], [ 37.792969, 49.951220 ], [ 38.671875, 49.951220 ], [ 38.671875, 49.837982 ], [ 39.023438, 49.837982 ], [ 39.023438, 49.724479 ], [ 39.550781, 49.724479 ], [ 39.550781, 49.610710 ], [ 39.902344, 49.610710 ], [ 39.902344, 49.496675 ], [ 40.078125, 49.496675 ], [ 40.078125, 49.267805 ], [ 39.902344, 49.267805 ], [ 39.902344, 49.037868 ], [ 39.726562, 49.037868 ], [ 39.726562, 48.806863 ], [ 39.550781, 48.806863 ], [ 39.550781, 48.574790 ], [ 39.726562, 48.574790 ], [ 39.726562, 47.989922 ], [ 39.375000, 47.989922 ], [ 39.375000, 47.872144 ], [ 38.671875, 47.872144 ], [ 38.671875, 47.754098 ], [ 38.320312, 47.754098 ], [ 38.320312, 47.635784 ], [ 38.144531, 47.635784 ], [ 38.144531, 47.159840 ], [ 37.792969, 47.159840 ], [ 37.792969, 47.040182 ], [ 37.265625, 47.040182 ], [ 37.265625, 46.920255 ], [ 36.914062, 46.920255 ], [ 36.914062, 46.800059 ], [ 36.386719, 46.800059 ], [ 36.386719, 46.679594 ], [ 35.683594, 46.679594 ], [ 35.683594, 46.558860 ], [ 35.332031, 46.558860 ], [ 35.332031, 46.437857 ], [ 34.980469, 46.437857 ], [ 34.980469, 46.316584 ], [ 34.804688, 46.316584 ], [ 34.804688, 45.951150 ], [ 34.980469, 45.951150 ], [ 34.980469, 45.583290 ], [ 35.332031, 45.583290 ], [ 35.332031, 45.460131 ], [ 36.035156, 45.460131 ], [ 36.035156, 45.583290 ], [ 36.386719, 45.583290 ], [ 36.386719, 45.336702 ], [ 36.210938, 45.336702 ], [ 36.210938, 45.213004 ], [ 36.035156, 45.213004 ], [ 36.035156, 45.089036 ], [ 35.507812, 45.089036 ], [ 35.507812, 44.964798 ], [ 35.156250, 44.964798 ], [ 35.156250, 44.840291 ], [ 34.804688, 44.840291 ], [ 34.804688, 44.715514 ], [ 34.453125, 44.715514 ], [ 34.453125, 44.590467 ], [ 34.101562, 44.590467 ], [ 34.101562, 44.465151 ], [ 33.398438, 44.465151 ], [ 33.398438, 44.590467 ], [ 33.222656, 44.590467 ], [ 33.222656, 44.840291 ], [ 33.398438, 44.840291 ], [ 33.398438, 45.089036 ], [ 33.046875, 45.089036 ], [ 33.046875, 45.213004 ], [ 32.519531, 45.213004 ], [ 32.519531, 45.336702 ], [ 32.343750, 45.336702 ], [ 32.343750, 45.460131 ], [ 32.519531, 45.460131 ], [ 32.519531, 45.583290 ], [ 32.871094, 45.583290 ], [ 32.871094, 45.706179 ], [ 33.222656, 45.706179 ], [ 33.222656, 45.828799 ], [ 33.574219, 45.828799 ], [ 33.574219, 45.951150 ], [ 33.398438, 45.951150 ], [ 33.398438, 46.073231 ], [ 33.222656, 46.073231 ], [ 33.222656, 46.195042 ], [ 32.695312, 46.195042 ], [ 32.695312, 46.316584 ], [ 31.992188, 46.316584 ], [ 31.992188, 46.437857 ], [ 31.640625, 46.437857 ], [ 31.640625, 46.800059 ], [ 31.289062, 46.800059 ], [ 31.289062, 46.679594 ], [ 30.585938, 46.679594 ], [ 30.585938, 46.437857 ], [ 30.410156, 46.437857 ], [ 30.410156, 46.195042 ], [ 30.234375, 46.195042 ], [ 30.234375, 45.951150 ], [ 30.058594, 45.951150 ], [ 30.058594, 45.706179 ], [ 29.882812, 45.706179 ], [ 29.882812, 45.583290 ], [ 29.707031, 45.583290 ], [ 29.707031, 45.336702 ], [ 29.355469, 45.336702 ], [ 29.355469, 45.460131 ], [ 28.828125, 45.460131 ], [ 28.828125, 45.336702 ], [ 28.476562, 45.336702 ], [ 28.476562, 45.460131 ], [ 28.125000, 45.460131 ], [ 28.125000, 45.583290 ], [ 28.476562, 45.583290 ], [ 28.476562, 45.828799 ], [ 28.652344, 45.828799 ], [ 28.652344, 46.073231 ], [ 28.828125, 46.073231 ], [ 28.828125, 46.437857 ], [ 29.707031, 46.437857 ], [ 29.707031, 46.558860 ], [ 29.882812, 46.558860 ], [ 29.882812, 46.679594 ], [ 29.707031, 46.679594 ], [ 29.707031, 46.920255 ], [ 29.531250, 46.920255 ], [ 29.531250, 47.159840 ], [ 29.355469, 47.159840 ], [ 29.355469, 47.398349 ], [ 29.003906, 47.398349 ], [ 29.003906, 47.872144 ], [ 28.828125, 47.872144 ], [ 28.828125, 48.107431 ], [ 28.652344, 48.107431 ], [ 28.652344, 48.224673 ], [ 27.949219, 48.224673 ], [ 27.949219, 48.341646 ], [ 27.597656, 48.341646 ], [ 27.597656, 48.458352 ], [ 27.421875, 48.458352 ], [ 27.421875, 48.574790 ], [ 27.246094, 48.574790 ], [ 27.246094, 48.458352 ], [ 26.718750, 48.458352 ], [ 26.718750, 48.341646 ], [ 26.542969, 48.341646 ], [ 26.542969, 48.224673 ], [ 26.191406, 48.224673 ], [ 26.191406, 48.107431 ], [ 26.015625, 48.107431 ], [ 26.015625, 47.989922 ], [ 25.136719, 47.989922 ], [ 25.136719, 47.872144 ], [ 24.960938, 47.872144 ], [ 24.960938, 47.754098 ], [ 24.609375, 47.754098 ], [ 24.609375, 47.872144 ], [ 24.257812, 47.872144 ], [ 24.257812, 47.989922 ], [ 23.203125, 47.989922 ], [ 23.203125, 48.107431 ], [ 23.027344, 48.107431 ], [ 23.027344, 47.989922 ], [ 22.675781, 47.989922 ], [ 22.675781, 48.107431 ], [ 22.500000, 48.107431 ], [ 22.500000, 48.224673 ], [ 22.324219, 48.224673 ], [ 22.324219, 48.341646 ], [ 21.972656, 48.341646 ], [ 21.972656, 48.690960 ], [ 22.148438, 48.690960 ], [ 22.148438, 48.922499 ], [ 22.324219, 48.922499 ], [ 22.324219, 49.037868 ], [ 22.675781, 49.037868 ], [ 22.675781, 49.267805 ], [ 22.500000, 49.267805 ], [ 22.500000, 49.496675 ], [ 22.675781, 49.496675 ], [ 22.675781, 49.724479 ], [ 22.851562, 49.724479 ], [ 22.851562, 49.951220 ], [ 23.027344, 49.951220 ], [ 23.027344, 50.064192 ], [ 23.203125, 50.064192 ], [ 23.203125, 50.289339 ], [ 23.378906, 50.289339 ], [ 23.378906, 50.401515 ], [ 23.730469, 50.401515 ], [ 23.730469, 50.513427 ], [ 23.906250, 50.513427 ], [ 23.906250, 50.847573 ], [ 23.730469, 50.847573 ], [ 23.730469, 51.179343 ], [ 23.554688, 51.179343 ], [ 23.554688, 51.399206 ], [ 23.378906, 51.399206 ], [ 23.378906, 51.618017 ], [ 24.082031, 51.618017 ], [ 24.082031, 51.727028 ], [ 24.257812, 51.727028 ], [ 24.257812, 51.835778 ], [ 24.433594, 51.835778 ], [ 24.433594, 51.944265 ], [ 25.664062, 51.944265 ], [ 25.664062, 51.835778 ], [ 26.367188, 51.835778 ], [ 26.367188, 51.727028 ], [ 27.070312, 51.727028 ], [ 27.070312, 51.618017 ], [ 28.125000, 51.618017 ], [ 28.125000, 51.508742 ], [ 29.003906, 51.508742 ], [ 29.003906, 51.399206 ], [ 29.707031, 51.399206 ], [ 29.707031, 51.508742 ], [ 30.058594, 51.508742 ], [ 30.058594, 51.399206 ], [ 30.410156, 51.399206 ], [ 30.410156, 51.618017 ], [ 30.585938, 51.618017 ], [ 30.585938, 51.944265 ], [ 30.761719, 51.944265 ], [ 30.761719, 52.052490 ], [ 31.289062, 52.052490 ], [ 31.289062, 52.160455 ], [ 32.167969, 52.160455 ], [ 32.167969, 52.268157 ], [ 33.398438, 52.268157 ], [ 33.398438, 52.375599 ], [ 33.750000, 52.375599 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, 43.580391 ], [ 40.253906, 43.452919 ], [ 40.605469, 43.452919 ], [ 40.605469, 43.325178 ], [ 41.484375, 43.325178 ], [ 41.484375, 43.197167 ], [ 42.363281, 43.197167 ], [ 42.363281, 43.068888 ], [ 42.714844, 43.068888 ], [ 42.714844, 42.940339 ], [ 43.066406, 42.940339 ], [ 43.066406, 42.811522 ], [ 43.417969, 42.811522 ], [ 43.417969, 42.682435 ], [ 43.769531, 42.682435 ], [ 43.769531, 42.553080 ], [ 44.296875, 42.553080 ], [ 44.296875, 42.682435 ], [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.472656, 41.244772 ], [ 44.472656, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.890625, 41.376809 ], [ 42.890625, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 42.187500, 41.640078 ], [ 42.187500, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.640078 ], [ 41.660156, 41.640078 ], [ 41.660156, 42.293564 ], [ 41.484375, 42.293564 ], [ 41.484375, 42.682435 ], [ 41.308594, 42.682435 ], [ 41.308594, 42.811522 ], [ 41.132812, 42.811522 ], [ 41.132812, 42.940339 ], [ 40.957031, 42.940339 ], [ 40.957031, 43.068888 ], [ 40.078125, 43.068888 ], [ 40.078125, 43.325178 ], [ 39.902344, 43.325178 ], [ 39.902344, 43.452919 ], [ 40.078125, 43.452919 ], [ 40.078125, 43.580391 ], [ 40.253906, 43.580391 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.253906, 43.580391 ], [ 40.253906, 43.452919 ], [ 41.484375, 43.452919 ], [ 41.484375, 43.325178 ], [ 42.363281, 43.325178 ], [ 42.363281, 43.197167 ], [ 42.714844, 43.197167 ], [ 42.714844, 43.068888 ], [ 43.066406, 43.068888 ], [ 43.066406, 42.940339 ], [ 43.417969, 42.940339 ], [ 43.417969, 42.811522 ], [ 43.593750, 42.811522 ], [ 43.593750, 42.682435 ], [ 43.769531, 42.682435 ], [ 43.769531, 42.553080 ], [ 44.121094, 42.553080 ], [ 44.121094, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.811522 ], [ 44.648438, 42.811522 ], [ 44.648438, 42.682435 ], [ 45.000000, 42.682435 ], [ 45.000000, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.423457 ], [ 45.527344, 42.423457 ], [ 45.527344, 42.163403 ], [ 45.878906, 42.163403 ], [ 45.878906, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.376809 ], [ 44.648438, 41.376809 ], [ 44.648438, 41.244772 ], [ 43.945312, 41.244772 ], [ 43.945312, 41.112469 ], [ 43.242188, 41.112469 ], [ 43.242188, 41.244772 ], [ 43.066406, 41.244772 ], [ 43.066406, 41.376809 ], [ 42.714844, 41.376809 ], [ 42.714844, 41.508577 ], [ 42.539062, 41.508577 ], [ 42.539062, 41.640078 ], [ 41.484375, 41.640078 ], [ 41.484375, 41.771312 ], [ 41.660156, 41.771312 ], [ 41.660156, 42.163403 ], [ 41.484375, 42.163403 ], [ 41.484375, 42.423457 ], [ 41.308594, 42.423457 ], [ 41.308594, 42.682435 ], [ 41.132812, 42.682435 ], [ 41.132812, 42.811522 ], [ 40.957031, 42.811522 ], [ 40.957031, 42.940339 ], [ 40.781250, 42.940339 ], [ 40.781250, 43.068888 ], [ 40.429688, 43.068888 ], [ 40.429688, 43.197167 ], [ 40.078125, 43.197167 ], [ 40.078125, 43.325178 ], [ 39.902344, 43.325178 ], [ 39.902344, 43.452919 ], [ 40.078125, 43.452919 ], [ 40.078125, 43.580391 ], [ 40.253906, 43.580391 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.367188, 41.640078 ], [ 26.367188, 41.508577 ], [ 26.542969, 41.508577 ], [ 26.542969, 41.244772 ], [ 26.367188, 41.244772 ], [ 26.367188, 40.847060 ], [ 25.136719, 40.847060 ], [ 25.136719, 40.979898 ], [ 24.785156, 40.979898 ], [ 24.785156, 40.847060 ], [ 24.082031, 40.847060 ], [ 24.082031, 40.713956 ], [ 23.730469, 40.713956 ], [ 23.730469, 40.580585 ], [ 23.906250, 40.580585 ], [ 23.906250, 40.446947 ], [ 24.082031, 40.446947 ], [ 24.082031, 40.313043 ], [ 20.742188, 40.313043 ], [ 20.742188, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.713956 ], [ 21.093750, 40.713956 ], [ 21.093750, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.972656, 40.979898 ], [ 21.972656, 41.112469 ], [ 22.675781, 41.112469 ], [ 22.675781, 41.244772 ], [ 23.027344, 41.244772 ], [ 23.027344, 41.376809 ], [ 23.203125, 41.376809 ], [ 23.203125, 41.244772 ], [ 23.906250, 41.244772 ], [ 23.906250, 41.376809 ], [ 24.257812, 41.376809 ], [ 24.257812, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.839844, 41.244772 ], [ 25.839844, 41.376809 ], [ 26.191406, 41.376809 ], [ 26.191406, 41.640078 ], [ 26.367188, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.367188, 41.771312 ], [ 26.367188, 41.640078 ], [ 26.542969, 41.640078 ], [ 26.542969, 41.376809 ], [ 26.367188, 41.376809 ], [ 26.367188, 41.112469 ], [ 26.191406, 41.112469 ], [ 26.191406, 40.847060 ], [ 25.488281, 40.847060 ], [ 25.488281, 40.979898 ], [ 24.609375, 40.979898 ], [ 24.609375, 40.847060 ], [ 23.906250, 40.847060 ], [ 23.906250, 40.713956 ], [ 23.554688, 40.713956 ], [ 23.554688, 40.580585 ], [ 23.730469, 40.580585 ], [ 23.730469, 40.446947 ], [ 23.906250, 40.446947 ], [ 23.906250, 40.313043 ], [ 22.851562, 40.313043 ], [ 22.851562, 40.446947 ], [ 22.500000, 40.446947 ], [ 22.500000, 40.313043 ], [ 20.566406, 40.313043 ], [ 20.566406, 40.446947 ], [ 20.917969, 40.446947 ], [ 20.917969, 40.847060 ], [ 21.445312, 40.847060 ], [ 21.445312, 40.979898 ], [ 21.796875, 40.979898 ], [ 21.796875, 41.112469 ], [ 21.972656, 41.112469 ], [ 21.972656, 41.244772 ], [ 22.675781, 41.244772 ], [ 22.675781, 41.376809 ], [ 23.906250, 41.376809 ], [ 23.906250, 41.508577 ], [ 24.257812, 41.508577 ], [ 24.257812, 41.640078 ], [ 24.433594, 41.640078 ], [ 24.433594, 41.508577 ], [ 24.609375, 41.508577 ], [ 24.609375, 41.376809 ], [ 24.960938, 41.376809 ], [ 24.960938, 41.244772 ], [ 25.664062, 41.244772 ], [ 25.664062, 41.376809 ], [ 26.015625, 41.376809 ], [ 26.015625, 41.771312 ], [ 26.367188, 41.771312 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.032974 ], [ 35.156250, 41.902277 ], [ 35.507812, 41.902277 ], [ 35.507812, 41.771312 ], [ 35.859375, 41.771312 ], [ 35.859375, 41.640078 ], [ 36.210938, 41.640078 ], [ 36.210938, 41.508577 ], [ 36.562500, 41.508577 ], [ 36.562500, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 39.902344, 41.112469 ], [ 39.902344, 40.979898 ], [ 40.605469, 40.979898 ], [ 40.605469, 41.112469 ], [ 40.957031, 41.112469 ], [ 40.957031, 41.244772 ], [ 41.132812, 41.244772 ], [ 41.132812, 41.376809 ], [ 41.484375, 41.376809 ], [ 41.484375, 41.508577 ], [ 42.187500, 41.508577 ], [ 42.187500, 41.640078 ], [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.890625, 41.508577 ], [ 42.890625, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.417969, 41.244772 ], [ 43.417969, 41.112469 ], [ 43.593750, 41.112469 ], [ 43.593750, 40.847060 ], [ 43.769531, 40.847060 ], [ 43.769531, 40.446947 ], [ 43.593750, 40.446947 ], [ 43.593750, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.580585 ], [ 29.003906, 40.580585 ], [ 29.003906, 40.979898 ], [ 29.179688, 40.979898 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 31.992188, 41.508577 ], [ 31.992188, 41.640078 ], [ 32.343750, 41.640078 ], [ 32.343750, 41.771312 ], [ 32.695312, 41.771312 ], [ 32.695312, 41.902277 ], [ 33.398438, 41.902277 ], [ 33.398438, 42.032974 ], [ 35.156250, 42.032974 ] ] ], [ [ [ 27.421875, 42.163403 ], [ 27.421875, 42.032974 ], [ 27.949219, 42.032974 ], [ 27.949219, 41.771312 ], [ 28.125000, 41.771312 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 29.003906, 41.244772 ], [ 29.003906, 41.112469 ], [ 28.300781, 41.112469 ], [ 28.300781, 40.979898 ], [ 27.597656, 40.979898 ], [ 27.597656, 40.847060 ], [ 27.421875, 40.847060 ], [ 27.421875, 40.713956 ], [ 27.246094, 40.713956 ], [ 27.246094, 40.580585 ], [ 27.070312, 40.580585 ], [ 27.070312, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.191406, 40.313043 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.367188, 40.847060 ], [ 26.367188, 41.244772 ], [ 26.542969, 41.244772 ], [ 26.542969, 41.508577 ], [ 26.367188, 41.508577 ], [ 26.367188, 41.640078 ], [ 26.191406, 41.640078 ], [ 26.191406, 41.771312 ], [ 26.367188, 41.771312 ], [ 26.367188, 41.902277 ], [ 26.718750, 41.902277 ], [ 26.718750, 42.032974 ], [ 27.070312, 42.032974 ], [ 27.070312, 42.163403 ], [ 27.421875, 42.163403 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.156250, 42.163403 ], [ 35.156250, 42.032974 ], [ 35.507812, 42.032974 ], [ 35.507812, 41.902277 ], [ 35.859375, 41.902277 ], [ 35.859375, 41.771312 ], [ 36.035156, 41.771312 ], [ 36.035156, 41.640078 ], [ 36.386719, 41.640078 ], [ 36.386719, 41.508577 ], [ 36.738281, 41.508577 ], [ 36.738281, 41.376809 ], [ 37.089844, 41.376809 ], [ 37.089844, 41.244772 ], [ 37.441406, 41.244772 ], [ 37.441406, 41.112469 ], [ 37.968750, 41.112469 ], [ 37.968750, 40.979898 ], [ 39.023438, 40.979898 ], [ 39.023438, 41.112469 ], [ 40.429688, 41.112469 ], [ 40.429688, 41.244772 ], [ 40.781250, 41.244772 ], [ 40.781250, 41.376809 ], [ 41.132812, 41.376809 ], [ 41.132812, 41.508577 ], [ 41.484375, 41.508577 ], [ 41.484375, 41.640078 ], [ 42.539062, 41.640078 ], [ 42.539062, 41.508577 ], [ 42.714844, 41.508577 ], [ 42.714844, 41.376809 ], [ 43.066406, 41.376809 ], [ 43.066406, 41.244772 ], [ 43.242188, 41.244772 ], [ 43.242188, 41.112469 ], [ 43.417969, 41.112469 ], [ 43.417969, 40.979898 ], [ 43.593750, 40.979898 ], [ 43.593750, 40.313043 ], [ 27.246094, 40.313043 ], [ 27.246094, 40.446947 ], [ 28.125000, 40.446947 ], [ 28.125000, 40.580585 ], [ 28.828125, 40.580585 ], [ 28.828125, 40.847060 ], [ 29.003906, 40.847060 ], [ 29.003906, 41.112469 ], [ 29.179688, 41.112469 ], [ 29.179688, 41.244772 ], [ 30.058594, 41.244772 ], [ 30.058594, 41.112469 ], [ 31.289062, 41.112469 ], [ 31.289062, 41.244772 ], [ 31.640625, 41.244772 ], [ 31.640625, 41.376809 ], [ 31.816406, 41.376809 ], [ 31.816406, 41.508577 ], [ 31.992188, 41.508577 ], [ 31.992188, 41.640078 ], [ 32.343750, 41.640078 ], [ 32.343750, 41.771312 ], [ 32.695312, 41.771312 ], [ 32.695312, 41.902277 ], [ 33.222656, 41.902277 ], [ 33.222656, 42.032974 ], [ 34.453125, 42.032974 ], [ 34.453125, 42.163403 ], [ 35.156250, 42.163403 ] ] ], [ [ [ 27.421875, 42.163403 ], [ 27.421875, 42.032974 ], [ 27.949219, 42.032974 ], [ 27.949219, 41.640078 ], [ 28.125000, 41.640078 ], [ 28.125000, 41.508577 ], [ 28.476562, 41.508577 ], [ 28.476562, 41.376809 ], [ 28.828125, 41.376809 ], [ 28.828125, 41.244772 ], [ 28.652344, 41.244772 ], [ 28.652344, 41.112469 ], [ 27.597656, 41.112469 ], [ 27.597656, 40.979898 ], [ 27.421875, 40.979898 ], [ 27.421875, 40.847060 ], [ 27.246094, 40.847060 ], [ 27.246094, 40.713956 ], [ 27.070312, 40.713956 ], [ 27.070312, 40.580585 ], [ 26.894531, 40.580585 ], [ 26.894531, 40.446947 ], [ 26.718750, 40.446947 ], [ 26.718750, 40.313043 ], [ 26.191406, 40.313043 ], [ 26.191406, 40.446947 ], [ 26.015625, 40.446947 ], [ 26.015625, 40.847060 ], [ 26.191406, 40.847060 ], [ 26.191406, 41.112469 ], [ 26.367188, 41.112469 ], [ 26.367188, 41.376809 ], [ 26.542969, 41.376809 ], [ 26.542969, 41.640078 ], [ 26.367188, 41.640078 ], [ 26.367188, 41.771312 ], [ 26.015625, 41.771312 ], [ 26.015625, 41.902277 ], [ 26.367188, 41.902277 ], [ 26.367188, 42.032974 ], [ 26.894531, 42.032974 ], [ 26.894531, 42.163403 ], [ 27.421875, 42.163403 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.446947 ], [ 43.769531, 40.446947 ], [ 43.769531, 40.847060 ], [ 43.593750, 40.847060 ], [ 43.593750, 41.112469 ], [ 44.472656, 41.112469 ], [ 44.472656, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 41.376809 ], [ 44.824219, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 43.593750, 40.313043 ], [ 43.593750, 40.979898 ], [ 43.417969, 40.979898 ], [ 43.417969, 41.112469 ], [ 43.945312, 41.112469 ], [ 43.945312, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.376809 ], [ 44.824219, 41.376809 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 45.878906, 41.112469 ], [ 45.878906, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.527344, 41.376809 ], [ 45.527344, 41.244772 ], [ 45.878906, 41.244772 ], [ 45.878906, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.847060 ], [ 45.351562, 40.979898 ], [ 45.175781, 40.979898 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 44.824219, 41.244772 ], [ 44.824219, 41.376809 ], [ 45.527344, 41.376809 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.089844, 66.160511 ], [ 37.089844, 66.231457 ], [ 36.738281, 66.231457 ], [ 36.738281, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 36.035156, 66.372755 ], [ 36.035156, 66.443107 ], [ 35.507812, 66.443107 ], [ 35.507812, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.804688, 66.583217 ], [ 34.804688, 66.652977 ], [ 34.453125, 66.652977 ], [ 34.453125, 66.722541 ], [ 34.101562, 66.722541 ], [ 34.101562, 66.791909 ], [ 33.925781, 66.791909 ], [ 33.925781, 66.722541 ], [ 33.574219, 66.722541 ], [ 33.574219, 66.652977 ], [ 33.222656, 66.652977 ], [ 33.222656, 66.583217 ], [ 33.398438, 66.583217 ], [ 33.398438, 66.513260 ], [ 33.574219, 66.513260 ], [ 33.574219, 66.443107 ], [ 33.750000, 66.443107 ], [ 33.750000, 66.302205 ], [ 33.925781, 66.302205 ], [ 33.925781, 66.231457 ], [ 34.101562, 66.231457 ], [ 34.101562, 66.160511 ], [ 29.882812, 66.160511 ], [ 29.882812, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.372755 ], [ 29.531250, 66.372755 ], [ 29.531250, 66.513260 ], [ 29.355469, 66.513260 ], [ 29.355469, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 66.791909 ], [ 29.003906, 66.791909 ], [ 29.003906, 66.930060 ], [ 29.179688, 66.930060 ], [ 29.179688, 67.067433 ], [ 29.355469, 67.067433 ], [ 29.355469, 67.204032 ], [ 29.531250, 67.204032 ], [ 29.531250, 67.339861 ], [ 29.707031, 67.339861 ], [ 29.707031, 67.474922 ], [ 29.882812, 67.474922 ], [ 29.882812, 67.609221 ], [ 30.058594, 67.609221 ], [ 30.058594, 67.676085 ], [ 29.882812, 67.676085 ], [ 29.882812, 67.742759 ], [ 29.707031, 67.742759 ], [ 29.707031, 67.809245 ], [ 29.531250, 67.809245 ], [ 29.531250, 67.875541 ], [ 29.355469, 67.875541 ], [ 29.355469, 68.007571 ], [ 29.179688, 68.007571 ], [ 29.179688, 68.073305 ], [ 29.003906, 68.073305 ], [ 29.003906, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.204212 ], [ 28.652344, 68.204212 ], [ 28.652344, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 68.656555 ], [ 28.652344, 68.656555 ], [ 28.652344, 69.037142 ], [ 29.003906, 69.037142 ], [ 29.003906, 69.099940 ], [ 29.355469, 69.099940 ], [ 29.355469, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.224997 ], [ 29.882812, 69.224997 ], [ 29.882812, 69.287257 ], [ 30.234375, 69.287257 ], [ 30.234375, 69.349339 ], [ 30.410156, 69.349339 ], [ 30.410156, 69.411242 ], [ 30.761719, 69.411242 ], [ 30.761719, 69.472969 ], [ 31.113281, 69.472969 ], [ 31.113281, 69.534518 ], [ 31.289062, 69.534518 ], [ 31.289062, 69.595890 ], [ 31.464844, 69.595890 ], [ 31.464844, 69.657086 ], [ 31.640625, 69.657086 ], [ 31.640625, 69.718107 ], [ 31.816406, 69.718107 ], [ 31.816406, 69.778952 ], [ 31.992188, 69.778952 ], [ 31.992188, 69.839622 ], [ 32.343750, 69.839622 ], [ 32.343750, 69.778952 ], [ 32.519531, 69.778952 ], [ 32.519531, 69.718107 ], [ 32.695312, 69.718107 ], [ 32.695312, 69.657086 ], [ 32.871094, 69.657086 ], [ 32.871094, 69.595890 ], [ 33.046875, 69.595890 ], [ 33.046875, 69.472969 ], [ 33.222656, 69.472969 ], [ 33.222656, 69.411242 ], [ 33.398438, 69.411242 ], [ 33.398438, 69.349339 ], [ 33.574219, 69.349339 ], [ 33.574219, 69.287257 ], [ 33.925781, 69.287257 ], [ 33.925781, 69.224997 ], [ 34.628906, 69.224997 ], [ 34.628906, 69.162558 ], [ 35.332031, 69.162558 ], [ 35.332031, 69.099940 ], [ 36.035156, 69.099940 ], [ 36.035156, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.974164 ], [ 36.738281, 68.974164 ], [ 36.738281, 68.911005 ], [ 37.089844, 68.911005 ], [ 37.089844, 68.847665 ], [ 37.265625, 68.847665 ], [ 37.265625, 68.784144 ], [ 37.441406, 68.784144 ], [ 37.441406, 68.720441 ], [ 37.617188, 68.720441 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.592487 ], [ 38.144531, 68.592487 ], [ 38.144531, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.463800 ], [ 38.496094, 68.463800 ], [ 38.496094, 68.399180 ], [ 38.671875, 68.399180 ], [ 38.671875, 68.334376 ], [ 39.023438, 68.334376 ], [ 39.023438, 68.269387 ], [ 39.199219, 68.269387 ], [ 39.199219, 68.204212 ], [ 39.375000, 68.204212 ], [ 39.375000, 68.138852 ], [ 39.550781, 68.138852 ], [ 39.550781, 68.073305 ], [ 39.902344, 68.073305 ], [ 39.902344, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.941650 ], [ 40.253906, 67.941650 ], [ 40.253906, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.605469, 67.742759 ], [ 40.605469, 67.676085 ], [ 40.781250, 67.676085 ], [ 40.781250, 67.609221 ], [ 40.957031, 67.609221 ], [ 40.957031, 67.474922 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.722541 ], [ 40.957031, 66.722541 ], [ 40.957031, 66.652977 ], [ 40.781250, 66.652977 ], [ 40.781250, 66.513260 ], [ 40.605469, 66.513260 ], [ 40.605469, 66.443107 ], [ 40.429688, 66.443107 ], [ 40.429688, 66.372755 ], [ 40.253906, 66.372755 ], [ 40.253906, 66.231457 ], [ 39.902344, 66.231457 ], [ 39.902344, 66.160511 ], [ 37.089844, 66.160511 ] ] ], [ [ [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.302205 ], [ 41.835938, 66.302205 ], [ 41.835938, 66.372755 ], [ 42.011719, 66.372755 ], [ 42.011719, 66.443107 ], [ 43.066406, 66.443107 ], [ 43.066406, 66.372755 ], [ 43.242188, 66.372755 ], [ 43.242188, 66.302205 ], [ 43.417969, 66.302205 ], [ 43.417969, 66.231457 ], [ 43.593750, 66.231457 ], [ 43.593750, 66.160511 ], [ 41.484375, 66.160511 ] ] ], [ [ [ 43.945312, 66.160511 ], [ 43.945312, 66.231457 ], [ 44.121094, 66.231457 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.583217 ], [ 44.472656, 66.583217 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.769531, 67.204032 ], [ 43.769531, 67.474922 ], [ 43.945312, 67.474922 ], [ 43.945312, 67.742759 ], [ 44.121094, 67.742759 ], [ 44.121094, 68.007571 ], [ 43.945312, 68.007571 ], [ 43.945312, 68.138852 ], [ 43.769531, 68.138852 ], [ 43.769531, 68.334376 ], [ 43.593750, 68.334376 ], [ 43.593750, 68.463800 ], [ 43.417969, 68.463800 ], [ 43.417969, 68.592487 ], [ 43.593750, 68.592487 ], [ 43.593750, 68.528235 ], [ 44.121094, 68.528235 ], [ 44.121094, 68.463800 ], [ 44.472656, 68.463800 ], [ 44.472656, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.334376 ], [ 45.527344, 68.334376 ], [ 45.527344, 68.269387 ], [ 45.878906, 68.269387 ], [ 45.878906, 67.542167 ], [ 45.527344, 67.542167 ], [ 45.527344, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.160511 ], [ 43.945312, 66.160511 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.089844, 66.160511 ], [ 37.089844, 66.231457 ], [ 36.738281, 66.231457 ], [ 36.738281, 66.302205 ], [ 36.386719, 66.302205 ], [ 36.386719, 66.372755 ], [ 35.859375, 66.372755 ], [ 35.859375, 66.443107 ], [ 35.507812, 66.443107 ], [ 35.507812, 66.513260 ], [ 35.156250, 66.513260 ], [ 35.156250, 66.583217 ], [ 34.628906, 66.583217 ], [ 34.628906, 66.652977 ], [ 34.277344, 66.652977 ], [ 34.277344, 66.722541 ], [ 33.925781, 66.722541 ], [ 33.925781, 66.791909 ], [ 33.750000, 66.791909 ], [ 33.750000, 66.722541 ], [ 33.398438, 66.722541 ], [ 33.398438, 66.652977 ], [ 33.046875, 66.652977 ], [ 33.046875, 66.583217 ], [ 33.222656, 66.583217 ], [ 33.222656, 66.513260 ], [ 33.398438, 66.513260 ], [ 33.398438, 66.443107 ], [ 33.574219, 66.443107 ], [ 33.574219, 66.302205 ], [ 33.750000, 66.302205 ], [ 33.750000, 66.231457 ], [ 33.925781, 66.231457 ], [ 33.925781, 66.160511 ], [ 29.707031, 66.160511 ], [ 29.707031, 66.231457 ], [ 29.531250, 66.231457 ], [ 29.531250, 66.443107 ], [ 29.355469, 66.443107 ], [ 29.355469, 66.652977 ], [ 29.179688, 66.652977 ], [ 29.179688, 66.861082 ], [ 29.003906, 66.861082 ], [ 29.003906, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.355469, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.474922 ], [ 29.707031, 67.474922 ], [ 29.707031, 67.609221 ], [ 29.882812, 67.609221 ], [ 29.882812, 67.742759 ], [ 29.707031, 67.742759 ], [ 29.707031, 67.809245 ], [ 29.531250, 67.809245 ], [ 29.531250, 67.875541 ], [ 29.355469, 67.875541 ], [ 29.355469, 67.941650 ], [ 29.179688, 67.941650 ], [ 29.179688, 68.073305 ], [ 29.003906, 68.073305 ], [ 29.003906, 68.138852 ], [ 28.828125, 68.138852 ], [ 28.828125, 68.204212 ], [ 28.652344, 68.204212 ], [ 28.652344, 68.269387 ], [ 28.476562, 68.269387 ], [ 28.476562, 68.334376 ], [ 28.300781, 68.334376 ], [ 28.300781, 68.720441 ], [ 28.476562, 68.720441 ], [ 28.476562, 69.099940 ], [ 29.003906, 69.099940 ], [ 29.003906, 69.162558 ], [ 29.531250, 69.162558 ], [ 29.531250, 69.224997 ], [ 29.707031, 69.224997 ], [ 29.707031, 69.287257 ], [ 30.058594, 69.287257 ], [ 30.058594, 69.349339 ], [ 30.234375, 69.349339 ], [ 30.234375, 69.411242 ], [ 30.410156, 69.411242 ], [ 30.410156, 69.472969 ], [ 30.761719, 69.472969 ], [ 30.761719, 69.534518 ], [ 30.937500, 69.534518 ], [ 30.937500, 69.595890 ], [ 31.113281, 69.595890 ], [ 31.113281, 69.657086 ], [ 31.289062, 69.657086 ], [ 31.289062, 69.718107 ], [ 31.464844, 69.718107 ], [ 31.464844, 69.778952 ], [ 31.640625, 69.778952 ], [ 31.640625, 69.839622 ], [ 31.816406, 69.839622 ], [ 31.816406, 69.900118 ], [ 32.167969, 69.900118 ], [ 32.167969, 69.839622 ], [ 32.343750, 69.839622 ], [ 32.343750, 69.778952 ], [ 32.519531, 69.778952 ], [ 32.519531, 69.718107 ], [ 32.695312, 69.718107 ], [ 32.695312, 69.657086 ], [ 32.871094, 69.657086 ], [ 32.871094, 69.595890 ], [ 33.046875, 69.595890 ], [ 33.046875, 69.534518 ], [ 33.222656, 69.534518 ], [ 33.222656, 69.472969 ], [ 33.398438, 69.472969 ], [ 33.398438, 69.411242 ], [ 33.574219, 69.411242 ], [ 33.574219, 69.349339 ], [ 33.925781, 69.349339 ], [ 33.925781, 69.287257 ], [ 34.628906, 69.287257 ], [ 34.628906, 69.224997 ], [ 35.332031, 69.224997 ], [ 35.332031, 69.162558 ], [ 36.035156, 69.162558 ], [ 36.035156, 69.099940 ], [ 36.386719, 69.099940 ], [ 36.386719, 69.037142 ], [ 36.562500, 69.037142 ], [ 36.562500, 68.974164 ], [ 36.914062, 68.974164 ], [ 36.914062, 68.911005 ], [ 37.089844, 68.911005 ], [ 37.089844, 68.847665 ], [ 37.265625, 68.847665 ], [ 37.265625, 68.784144 ], [ 37.441406, 68.784144 ], [ 37.441406, 68.720441 ], [ 37.617188, 68.720441 ], [ 37.617188, 68.656555 ], [ 37.968750, 68.656555 ], [ 37.968750, 68.592487 ], [ 38.144531, 68.592487 ], [ 38.144531, 68.528235 ], [ 38.320312, 68.528235 ], [ 38.320312, 68.463800 ], [ 38.496094, 68.463800 ], [ 38.496094, 68.399180 ], [ 38.847656, 68.399180 ], [ 38.847656, 68.334376 ], [ 39.023438, 68.334376 ], [ 39.023438, 68.269387 ], [ 39.199219, 68.269387 ], [ 39.199219, 68.204212 ], [ 39.375000, 68.204212 ], [ 39.375000, 68.138852 ], [ 39.550781, 68.138852 ], [ 39.550781, 68.073305 ], [ 39.902344, 68.073305 ], [ 39.902344, 68.007571 ], [ 40.078125, 68.007571 ], [ 40.078125, 67.941650 ], [ 40.253906, 67.941650 ], [ 40.253906, 67.875541 ], [ 40.429688, 67.875541 ], [ 40.429688, 67.742759 ], [ 40.605469, 67.742759 ], [ 40.605469, 67.609221 ], [ 40.781250, 67.609221 ], [ 40.781250, 67.474922 ], [ 40.957031, 67.474922 ], [ 40.957031, 66.722541 ], [ 40.781250, 66.722541 ], [ 40.781250, 66.652977 ], [ 40.605469, 66.652977 ], [ 40.605469, 66.583217 ], [ 40.429688, 66.583217 ], [ 40.429688, 66.443107 ], [ 40.253906, 66.443107 ], [ 40.253906, 66.372755 ], [ 40.078125, 66.372755 ], [ 40.078125, 66.302205 ], [ 39.902344, 66.302205 ], [ 39.902344, 66.231457 ], [ 39.550781, 66.231457 ], [ 39.550781, 66.160511 ], [ 37.089844, 66.160511 ] ] ], [ [ [ 41.484375, 66.160511 ], [ 41.484375, 66.231457 ], [ 41.660156, 66.231457 ], [ 41.660156, 66.372755 ], [ 41.835938, 66.372755 ], [ 41.835938, 66.443107 ], [ 42.011719, 66.443107 ], [ 42.011719, 66.513260 ], [ 42.363281, 66.513260 ], [ 42.363281, 66.443107 ], [ 42.890625, 66.443107 ], [ 42.890625, 66.372755 ], [ 43.066406, 66.372755 ], [ 43.066406, 66.302205 ], [ 43.242188, 66.302205 ], [ 43.242188, 66.231457 ], [ 43.417969, 66.231457 ], [ 43.417969, 66.160511 ], [ 41.484375, 66.160511 ] ] ], [ [ [ 43.945312, 66.160511 ], [ 43.945312, 66.231457 ], [ 44.121094, 66.231457 ], [ 44.121094, 66.443107 ], [ 44.296875, 66.443107 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 67.067433 ], [ 43.945312, 67.067433 ], [ 43.945312, 67.204032 ], [ 43.769531, 67.204032 ], [ 43.769531, 67.339861 ], [ 43.593750, 67.339861 ], [ 43.593750, 67.474922 ], [ 43.769531, 67.474922 ], [ 43.769531, 67.676085 ], [ 43.945312, 67.676085 ], [ 43.945312, 67.875541 ], [ 44.121094, 67.875541 ], [ 44.121094, 68.073305 ], [ 43.945312, 68.073305 ], [ 43.945312, 68.204212 ], [ 43.769531, 68.204212 ], [ 43.769531, 68.334376 ], [ 43.593750, 68.334376 ], [ 43.593750, 68.463800 ], [ 43.417969, 68.463800 ], [ 43.417969, 68.592487 ], [ 43.593750, 68.592487 ], [ 43.593750, 68.528235 ], [ 44.296875, 68.528235 ], [ 44.296875, 68.463800 ], [ 44.824219, 68.463800 ], [ 44.824219, 68.399180 ], [ 45.527344, 68.399180 ], [ 45.527344, 68.334376 ], [ 45.878906, 68.334376 ], [ 45.878906, 67.609221 ], [ 45.527344, 67.609221 ], [ 45.527344, 66.998844 ], [ 45.703125, 66.998844 ], [ 45.703125, 66.930060 ], [ 45.878906, 66.930060 ], [ 45.878906, 66.160511 ], [ 43.945312, 66.160511 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.130988 ], [ 28.476562, 71.130988 ], [ 28.476562, 71.074056 ], [ 28.652344, 71.074056 ], [ 28.652344, 71.016960 ], [ 28.828125, 71.016960 ], [ 28.828125, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.902268 ], [ 29.355469, 70.902268 ], [ 29.355469, 70.844673 ], [ 29.531250, 70.844673 ], [ 29.531250, 70.786910 ], [ 29.882812, 70.786910 ], [ 29.882812, 70.728979 ], [ 30.058594, 70.728979 ], [ 30.058594, 70.670881 ], [ 30.410156, 70.670881 ], [ 30.410156, 70.612614 ], [ 30.585938, 70.612614 ], [ 30.585938, 70.554179 ], [ 30.761719, 70.554179 ], [ 30.761719, 70.495574 ], [ 31.113281, 70.495574 ], [ 31.113281, 70.436799 ], [ 31.289062, 70.436799 ], [ 31.289062, 70.377854 ], [ 30.937500, 70.377854 ], [ 30.937500, 70.318738 ], [ 30.585938, 70.318738 ], [ 30.585938, 70.259452 ], [ 30.234375, 70.259452 ], [ 30.234375, 70.199994 ], [ 30.058594, 70.199994 ], [ 30.058594, 70.140364 ], [ 30.234375, 70.140364 ], [ 30.234375, 70.020587 ], [ 30.410156, 70.020587 ], [ 30.410156, 69.900118 ], [ 30.585938, 69.900118 ], [ 30.585938, 69.778952 ], [ 30.761719, 69.778952 ], [ 30.761719, 69.657086 ], [ 30.937500, 69.657086 ], [ 30.937500, 69.534518 ], [ 31.113281, 69.534518 ], [ 31.113281, 69.472969 ], [ 30.761719, 69.472969 ], [ 30.761719, 69.411242 ], [ 30.410156, 69.411242 ], [ 30.410156, 69.349339 ], [ 30.234375, 69.349339 ], [ 30.234375, 69.287257 ], [ 29.882812, 69.287257 ], [ 29.882812, 69.224997 ], [ 29.531250, 69.224997 ], [ 29.531250, 69.162558 ], [ 29.355469, 69.162558 ], [ 29.355469, 69.099940 ], [ 29.003906, 69.099940 ], [ 29.003906, 69.037142 ], [ 28.652344, 69.037142 ], [ 28.652344, 69.224997 ], [ 28.828125, 69.224997 ], [ 28.828125, 69.595890 ], [ 29.003906, 69.595890 ], [ 29.003906, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.839622 ], [ 28.652344, 69.839622 ], [ 28.652344, 69.900118 ], [ 28.476562, 69.900118 ], [ 28.476562, 69.960439 ], [ 28.125000, 69.960439 ], [ 28.125000, 70.020587 ], [ 27.949219, 70.020587 ], [ 27.949219, 70.080562 ], [ 27.421875, 70.080562 ], [ 27.421875, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 69.960439 ], [ 26.718750, 69.960439 ], [ 26.718750, 69.900118 ], [ 26.367188, 69.900118 ], [ 26.367188, 69.839622 ], [ 26.191406, 69.839622 ], [ 26.191406, 69.718107 ], [ 26.015625, 69.718107 ], [ 26.015625, 69.472969 ], [ 25.839844, 69.472969 ], [ 25.839844, 69.224997 ], [ 25.664062, 69.224997 ], [ 25.664062, 69.037142 ], [ 25.488281, 69.037142 ], [ 25.488281, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.847665 ], [ 25.136719, 68.847665 ], [ 25.136719, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.656555 ], [ 24.609375, 68.656555 ], [ 24.609375, 68.720441 ], [ 24.257812, 68.720441 ], [ 24.257812, 68.784144 ], [ 24.082031, 68.784144 ], [ 24.082031, 68.847665 ], [ 23.730469, 68.847665 ], [ 23.730469, 68.911005 ], [ 23.203125, 68.911005 ], [ 23.203125, 68.847665 ], [ 22.148438, 68.847665 ], [ 22.148438, 68.974164 ], [ 21.972656, 68.974164 ], [ 21.972656, 69.037142 ], [ 21.796875, 69.037142 ], [ 21.796875, 69.099940 ], [ 21.621094, 69.099940 ], [ 21.621094, 69.224997 ], [ 21.445312, 69.224997 ], [ 21.445312, 69.287257 ], [ 21.093750, 69.287257 ], [ 21.093750, 69.224997 ], [ 20.917969, 69.224997 ], [ 20.917969, 69.162558 ], [ 20.742188, 69.162558 ], [ 20.742188, 69.099940 ], [ 20.390625, 69.099940 ], [ 20.390625, 69.037142 ], [ 20.039062, 69.037142 ], [ 20.039062, 68.720441 ], [ 19.863281, 68.720441 ], [ 19.863281, 68.399180 ], [ 19.511719, 68.399180 ], [ 19.511719, 68.463800 ], [ 18.808594, 68.463800 ], [ 18.808594, 68.528235 ], [ 18.105469, 68.528235 ], [ 18.105469, 68.592487 ], [ 17.929688, 68.592487 ], [ 17.929688, 68.269387 ], [ 17.753906, 68.269387 ], [ 17.753906, 68.007571 ], [ 16.699219, 68.007571 ], [ 16.699219, 67.875541 ], [ 16.523438, 67.875541 ], [ 16.523438, 67.609221 ], [ 16.347656, 67.609221 ], [ 16.347656, 67.339861 ], [ 16.171875, 67.339861 ], [ 16.171875, 67.135829 ], [ 15.996094, 67.135829 ], [ 15.996094, 66.998844 ], [ 15.820312, 66.998844 ], [ 15.820312, 66.791909 ], [ 15.644531, 66.791909 ], [ 15.644531, 66.583217 ], [ 15.468750, 66.583217 ], [ 15.468750, 66.443107 ], [ 15.292969, 66.443107 ], [ 15.292969, 66.231457 ], [ 15.117188, 66.231457 ], [ 15.117188, 66.160511 ], [ 12.656250, 66.160511 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.791909 ], [ 13.535156, 66.791909 ], [ 13.535156, 66.930060 ], [ 13.710938, 66.930060 ], [ 13.710938, 67.067433 ], [ 13.886719, 67.067433 ], [ 13.886719, 67.204032 ], [ 14.062500, 67.204032 ], [ 14.062500, 67.339861 ], [ 14.238281, 67.339861 ], [ 14.238281, 67.474922 ], [ 14.414062, 67.474922 ], [ 14.414062, 67.609221 ], [ 14.589844, 67.609221 ], [ 14.589844, 67.742759 ], [ 14.765625, 67.742759 ], [ 14.765625, 67.809245 ], [ 14.941406, 67.809245 ], [ 14.941406, 67.875541 ], [ 15.117188, 67.875541 ], [ 15.117188, 68.007571 ], [ 15.292969, 68.007571 ], [ 15.292969, 68.073305 ], [ 15.468750, 68.073305 ], [ 15.468750, 68.138852 ], [ 15.644531, 68.138852 ], [ 15.644531, 68.204212 ], [ 15.820312, 68.204212 ], [ 15.820312, 68.269387 ], [ 15.996094, 68.269387 ], [ 15.996094, 68.399180 ], [ 16.171875, 68.399180 ], [ 16.171875, 68.463800 ], [ 16.347656, 68.463800 ], [ 16.347656, 68.528235 ], [ 16.523438, 68.528235 ], [ 16.523438, 68.592487 ], [ 16.699219, 68.592487 ], [ 16.699219, 68.720441 ], [ 16.875000, 68.720441 ], [ 16.875000, 68.784144 ], [ 17.050781, 68.784144 ], [ 17.050781, 68.847665 ], [ 17.226562, 68.847665 ], [ 17.226562, 68.974164 ], [ 17.402344, 68.974164 ], [ 17.402344, 69.037142 ], [ 17.578125, 69.037142 ], [ 17.578125, 69.099940 ], [ 17.753906, 69.099940 ], [ 17.753906, 69.224997 ], [ 17.929688, 69.224997 ], [ 17.929688, 69.287257 ], [ 18.105469, 69.287257 ], [ 18.105469, 69.349339 ], [ 18.281250, 69.349339 ], [ 18.281250, 69.472969 ], [ 18.457031, 69.472969 ], [ 18.457031, 69.534518 ], [ 18.632812, 69.534518 ], [ 18.632812, 69.595890 ], [ 18.808594, 69.595890 ], [ 18.808594, 69.718107 ], [ 18.984375, 69.718107 ], [ 18.984375, 69.778952 ], [ 19.160156, 69.778952 ], [ 19.160156, 69.839622 ], [ 19.335938, 69.839622 ], [ 19.335938, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 69.960439 ], [ 20.039062, 69.960439 ], [ 20.039062, 70.020587 ], [ 20.390625, 70.020587 ], [ 20.390625, 70.080562 ], [ 20.742188, 70.080562 ], [ 20.742188, 70.140364 ], [ 21.093750, 70.140364 ], [ 21.093750, 70.199994 ], [ 21.445312, 70.199994 ], [ 21.445312, 70.259452 ], [ 22.148438, 70.259452 ], [ 22.148438, 70.199994 ], [ 23.203125, 70.199994 ], [ 23.203125, 70.318738 ], [ 23.378906, 70.318738 ], [ 23.378906, 70.377854 ], [ 23.554688, 70.377854 ], [ 23.554688, 70.495574 ], [ 23.730469, 70.495574 ], [ 23.730469, 70.612614 ], [ 23.906250, 70.612614 ], [ 23.906250, 70.670881 ], [ 24.082031, 70.670881 ], [ 24.082031, 70.786910 ], [ 24.257812, 70.786910 ], [ 24.257812, 70.844673 ], [ 24.433594, 70.844673 ], [ 24.433594, 70.959697 ], [ 24.609375, 70.959697 ], [ 24.609375, 71.016960 ], [ 25.312500, 71.016960 ], [ 25.312500, 70.959697 ], [ 26.718750, 70.959697 ], [ 26.718750, 71.016960 ], [ 27.070312, 71.016960 ], [ 27.070312, 71.074056 ], [ 27.597656, 71.074056 ], [ 27.597656, 71.130988 ], [ 27.949219, 71.130988 ], [ 27.949219, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.237185 ], [ 20.390625, 79.237185 ], [ 20.390625, 79.204309 ], [ 20.566406, 79.204309 ], [ 20.566406, 79.171335 ], [ 20.742188, 79.171335 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.071812 ], [ 21.093750, 79.071812 ], [ 21.093750, 79.038437 ], [ 21.269531, 79.038437 ], [ 21.269531, 79.004962 ], [ 21.445312, 79.004962 ], [ 21.445312, 78.971386 ], [ 21.621094, 78.971386 ], [ 21.621094, 78.937708 ], [ 21.445312, 78.937708 ], [ 21.445312, 78.903929 ], [ 21.093750, 78.903929 ], [ 21.093750, 78.870048 ], [ 20.917969, 78.870048 ], [ 20.917969, 78.836065 ], [ 20.742188, 78.836065 ], [ 20.742188, 78.801980 ], [ 20.566406, 78.801980 ], [ 20.566406, 78.767792 ], [ 20.214844, 78.767792 ], [ 20.214844, 78.733501 ], [ 20.039062, 78.733501 ], [ 20.039062, 78.699106 ], [ 19.863281, 78.699106 ], [ 19.863281, 78.664608 ], [ 19.687500, 78.664608 ], [ 19.687500, 78.630006 ], [ 19.335938, 78.630006 ], [ 19.335938, 78.595299 ], [ 19.160156, 78.595299 ], [ 19.160156, 78.560488 ], [ 18.984375, 78.560488 ], [ 18.984375, 78.420193 ], [ 18.808594, 78.420193 ], [ 18.808594, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.952414 ], [ 18.457031, 77.952414 ], [ 18.457031, 77.804771 ], [ 18.281250, 77.804771 ], [ 18.281250, 77.767582 ], [ 18.105469, 77.767582 ], [ 18.105469, 77.730282 ], [ 17.929688, 77.730282 ], [ 17.929688, 77.692870 ], [ 17.753906, 77.692870 ], [ 17.753906, 77.655346 ], [ 17.578125, 77.655346 ], [ 17.578125, 77.504119 ], [ 17.402344, 77.504119 ], [ 17.402344, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.920614 ], [ 17.050781, 76.920614 ], [ 17.050781, 76.800739 ], [ 16.699219, 76.800739 ], [ 16.699219, 76.760541 ], [ 15.820312, 76.760541 ], [ 15.820312, 76.800739 ], [ 15.644531, 76.800739 ], [ 15.644531, 76.880775 ], [ 15.468750, 76.880775 ], [ 15.468750, 76.920614 ], [ 15.292969, 76.920614 ], [ 15.292969, 76.960334 ], [ 15.117188, 76.960334 ], [ 15.117188, 76.999935 ], [ 14.941406, 76.999935 ], [ 14.941406, 77.078784 ], [ 14.765625, 77.078784 ], [ 14.765625, 77.118032 ], [ 14.589844, 77.118032 ], [ 14.589844, 77.157163 ], [ 14.414062, 77.157163 ], [ 14.414062, 77.196176 ], [ 14.238281, 77.196176 ], [ 14.238281, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.886719, 77.312520 ], [ 13.886719, 77.351070 ], [ 13.710938, 77.351070 ], [ 13.710938, 77.389504 ], [ 13.886719, 77.389504 ], [ 13.886719, 77.466028 ], [ 14.062500, 77.466028 ], [ 14.062500, 77.542096 ], [ 14.238281, 77.542096 ], [ 14.238281, 77.617709 ], [ 14.414062, 77.617709 ], [ 14.414062, 77.692870 ], [ 14.589844, 77.692870 ], [ 14.589844, 77.730282 ], [ 14.414062, 77.730282 ], [ 14.414062, 77.767582 ], [ 14.238281, 77.767582 ], [ 14.238281, 77.804771 ], [ 14.062500, 77.804771 ], [ 14.062500, 77.841848 ], [ 13.886719, 77.841848 ], [ 13.886719, 77.878814 ], [ 13.710938, 77.878814 ], [ 13.710938, 77.915669 ], [ 13.535156, 77.915669 ], [ 13.535156, 77.952414 ], [ 13.359375, 77.952414 ], [ 13.359375, 77.989049 ], [ 13.183594, 77.989049 ], [ 13.183594, 78.061989 ], [ 13.007812, 78.061989 ], [ 13.007812, 78.134493 ], [ 12.832031, 78.134493 ], [ 12.832031, 78.206563 ], [ 12.656250, 78.206563 ], [ 12.656250, 78.278201 ], [ 12.480469, 78.278201 ], [ 12.480469, 78.349411 ], [ 12.304688, 78.349411 ], [ 12.304688, 78.455425 ], [ 12.128906, 78.455425 ], [ 12.128906, 78.525573 ], [ 11.953125, 78.525573 ], [ 11.953125, 78.595299 ], [ 11.777344, 78.595299 ], [ 11.777344, 78.664608 ], [ 11.601562, 78.664608 ], [ 11.601562, 78.733501 ], [ 11.425781, 78.733501 ], [ 11.425781, 78.801980 ], [ 11.250000, 78.801980 ], [ 11.250000, 78.937708 ], [ 11.074219, 78.937708 ], [ 11.074219, 79.105086 ], [ 10.898438, 79.105086 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.335219 ], [ 19.863281, 79.335219 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 22.851562, 78.349411 ], [ 23.027344, 78.349411 ], [ 23.027344, 78.134493 ], [ 23.203125, 78.134493 ], [ 23.203125, 78.025574 ], [ 23.554688, 78.025574 ], [ 23.554688, 77.989049 ], [ 23.730469, 77.989049 ], [ 23.730469, 77.952414 ], [ 24.082031, 77.952414 ], [ 24.082031, 77.915669 ], [ 24.257812, 77.915669 ], [ 24.257812, 77.878814 ], [ 24.609375, 77.878814 ], [ 24.609375, 77.841848 ], [ 24.785156, 77.841848 ], [ 24.785156, 77.804771 ], [ 24.609375, 77.804771 ], [ 24.609375, 77.767582 ], [ 24.433594, 77.767582 ], [ 24.433594, 77.730282 ], [ 24.082031, 77.730282 ], [ 24.082031, 77.692870 ], [ 23.906250, 77.692870 ], [ 23.906250, 77.655346 ], [ 23.730469, 77.655346 ], [ 23.730469, 77.617709 ], [ 23.554688, 77.617709 ], [ 23.554688, 77.579959 ], [ 23.378906, 77.579959 ], [ 23.378906, 77.542096 ], [ 23.027344, 77.542096 ], [ 23.027344, 77.504119 ], [ 22.851562, 77.504119 ], [ 22.851562, 77.466028 ], [ 22.675781, 77.466028 ], [ 22.675781, 77.427824 ], [ 22.324219, 77.427824 ], [ 22.324219, 77.466028 ], [ 21.972656, 77.466028 ], [ 21.972656, 77.504119 ], [ 21.796875, 77.504119 ], [ 21.796875, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.579959 ], [ 21.269531, 77.579959 ], [ 21.269531, 77.617709 ], [ 21.093750, 77.617709 ], [ 21.093750, 77.655346 ], [ 20.742188, 77.655346 ], [ 20.742188, 77.692870 ], [ 20.917969, 77.692870 ], [ 20.917969, 77.767582 ], [ 21.093750, 77.767582 ], [ 21.093750, 77.841848 ], [ 21.269531, 77.841848 ], [ 21.269531, 77.915669 ], [ 21.445312, 77.915669 ], [ 21.445312, 77.989049 ], [ 21.269531, 77.989049 ], [ 21.269531, 78.061989 ], [ 21.093750, 78.061989 ], [ 21.093750, 78.134493 ], [ 20.917969, 78.134493 ], [ 20.917969, 78.206563 ], [ 20.742188, 78.206563 ], [ 20.742188, 78.242436 ], [ 21.093750, 78.242436 ], [ 21.093750, 78.278201 ], [ 21.445312, 78.278201 ], [ 21.445312, 78.313860 ], [ 21.796875, 78.313860 ], [ 21.796875, 78.349411 ], [ 22.148438, 78.349411 ], [ 22.148438, 78.384855 ], [ 22.500000, 78.384855 ], [ 22.500000, 78.420193 ], [ 22.851562, 78.420193 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 28.125000, 71.130988 ], [ 28.476562, 71.130988 ], [ 28.476562, 71.074056 ], [ 28.652344, 71.074056 ], [ 28.652344, 71.016960 ], [ 29.003906, 71.016960 ], [ 29.003906, 70.959697 ], [ 29.179688, 70.959697 ], [ 29.179688, 70.902268 ], [ 29.531250, 70.902268 ], [ 29.531250, 70.844673 ], [ 29.707031, 70.844673 ], [ 29.707031, 70.786910 ], [ 30.058594, 70.786910 ], [ 30.058594, 70.728979 ], [ 30.234375, 70.728979 ], [ 30.234375, 70.670881 ], [ 30.585938, 70.670881 ], [ 30.585938, 70.612614 ], [ 30.761719, 70.612614 ], [ 30.761719, 70.554179 ], [ 31.113281, 70.554179 ], [ 31.113281, 70.495574 ], [ 31.289062, 70.495574 ], [ 31.289062, 70.436799 ], [ 30.937500, 70.436799 ], [ 30.937500, 70.377854 ], [ 30.761719, 70.377854 ], [ 30.761719, 70.318738 ], [ 30.410156, 70.318738 ], [ 30.410156, 70.259452 ], [ 30.058594, 70.259452 ], [ 30.058594, 70.199994 ], [ 29.882812, 70.199994 ], [ 29.882812, 70.140364 ], [ 30.058594, 70.140364 ], [ 30.058594, 70.020587 ], [ 30.234375, 70.020587 ], [ 30.234375, 69.900118 ], [ 30.410156, 69.900118 ], [ 30.410156, 69.839622 ], [ 30.585938, 69.839622 ], [ 30.585938, 69.718107 ], [ 30.761719, 69.718107 ], [ 30.761719, 69.595890 ], [ 30.937500, 69.595890 ], [ 30.937500, 69.534518 ], [ 30.761719, 69.534518 ], [ 30.761719, 69.472969 ], [ 30.410156, 69.472969 ], [ 30.410156, 69.411242 ], [ 30.234375, 69.411242 ], [ 30.234375, 69.349339 ], [ 30.058594, 69.349339 ], [ 30.058594, 69.287257 ], [ 29.707031, 69.287257 ], [ 29.707031, 69.224997 ], [ 29.531250, 69.224997 ], [ 29.531250, 69.162558 ], [ 29.003906, 69.162558 ], [ 29.003906, 69.099940 ], [ 28.476562, 69.099940 ], [ 28.476562, 69.162558 ], [ 28.652344, 69.162558 ], [ 28.652344, 69.411242 ], [ 28.828125, 69.411242 ], [ 28.828125, 69.657086 ], [ 29.003906, 69.657086 ], [ 29.003906, 69.778952 ], [ 28.828125, 69.778952 ], [ 28.828125, 69.839622 ], [ 28.652344, 69.839622 ], [ 28.652344, 69.900118 ], [ 28.476562, 69.900118 ], [ 28.476562, 69.960439 ], [ 28.125000, 69.960439 ], [ 28.125000, 70.020587 ], [ 27.949219, 70.020587 ], [ 27.949219, 70.080562 ], [ 27.773438, 70.080562 ], [ 27.773438, 70.140364 ], [ 27.246094, 70.140364 ], [ 27.246094, 70.080562 ], [ 27.070312, 70.080562 ], [ 27.070312, 70.020587 ], [ 26.718750, 70.020587 ], [ 26.718750, 69.960439 ], [ 26.542969, 69.960439 ], [ 26.542969, 69.900118 ], [ 26.191406, 69.900118 ], [ 26.191406, 69.839622 ], [ 26.015625, 69.839622 ], [ 26.015625, 69.657086 ], [ 25.839844, 69.657086 ], [ 25.839844, 69.287257 ], [ 25.664062, 69.287257 ], [ 25.664062, 69.037142 ], [ 25.488281, 69.037142 ], [ 25.488281, 68.974164 ], [ 25.312500, 68.974164 ], [ 25.312500, 68.911005 ], [ 25.136719, 68.911005 ], [ 25.136719, 68.784144 ], [ 24.960938, 68.784144 ], [ 24.960938, 68.720441 ], [ 24.785156, 68.720441 ], [ 24.785156, 68.656555 ], [ 24.433594, 68.656555 ], [ 24.433594, 68.720441 ], [ 24.082031, 68.720441 ], [ 24.082031, 68.784144 ], [ 23.906250, 68.784144 ], [ 23.906250, 68.847665 ], [ 23.554688, 68.847665 ], [ 23.554688, 68.911005 ], [ 23.027344, 68.911005 ], [ 23.027344, 68.847665 ], [ 22.148438, 68.847665 ], [ 22.148438, 68.911005 ], [ 21.972656, 68.911005 ], [ 21.972656, 69.037142 ], [ 21.796875, 69.037142 ], [ 21.796875, 69.099940 ], [ 21.621094, 69.099940 ], [ 21.621094, 69.162558 ], [ 21.445312, 69.162558 ], [ 21.445312, 69.287257 ], [ 21.269531, 69.287257 ], [ 21.269531, 69.349339 ], [ 20.917969, 69.349339 ], [ 20.917969, 69.287257 ], [ 20.742188, 69.287257 ], [ 20.742188, 69.162558 ], [ 20.390625, 69.162558 ], [ 20.390625, 69.099940 ], [ 19.863281, 69.099940 ], [ 19.863281, 68.463800 ], [ 19.335938, 68.463800 ], [ 19.335938, 68.528235 ], [ 18.281250, 68.528235 ], [ 18.281250, 68.592487 ], [ 17.929688, 68.592487 ], [ 17.929688, 68.463800 ], [ 17.753906, 68.463800 ], [ 17.753906, 68.204212 ], [ 17.578125, 68.204212 ], [ 17.578125, 68.073305 ], [ 16.699219, 68.073305 ], [ 16.699219, 67.941650 ], [ 16.523438, 67.941650 ], [ 16.523438, 67.742759 ], [ 16.347656, 67.742759 ], [ 16.347656, 67.609221 ], [ 16.171875, 67.609221 ], [ 16.171875, 67.407487 ], [ 15.996094, 67.407487 ], [ 15.996094, 67.204032 ], [ 15.820312, 67.204032 ], [ 15.820312, 67.067433 ], [ 15.644531, 67.067433 ], [ 15.644531, 66.861082 ], [ 15.468750, 66.861082 ], [ 15.468750, 66.652977 ], [ 15.292969, 66.652977 ], [ 15.292969, 66.513260 ], [ 15.117188, 66.513260 ], [ 15.117188, 66.302205 ], [ 14.941406, 66.302205 ], [ 14.941406, 66.160511 ], [ 12.656250, 66.160511 ], [ 12.656250, 66.231457 ], [ 12.832031, 66.231457 ], [ 12.832031, 66.372755 ], [ 13.007812, 66.372755 ], [ 13.007812, 66.513260 ], [ 13.183594, 66.513260 ], [ 13.183594, 66.652977 ], [ 13.359375, 66.652977 ], [ 13.359375, 66.861082 ], [ 13.535156, 66.861082 ], [ 13.535156, 66.998844 ], [ 13.710938, 66.998844 ], [ 13.710938, 67.135829 ], [ 13.886719, 67.135829 ], [ 13.886719, 67.339861 ], [ 14.062500, 67.339861 ], [ 14.062500, 67.474922 ], [ 14.238281, 67.474922 ], [ 14.238281, 67.609221 ], [ 14.414062, 67.609221 ], [ 14.414062, 67.742759 ], [ 14.589844, 67.742759 ], [ 14.589844, 67.875541 ], [ 14.765625, 67.875541 ], [ 14.765625, 67.941650 ], [ 14.941406, 67.941650 ], [ 14.941406, 68.007571 ], [ 15.117188, 68.007571 ], [ 15.117188, 68.073305 ], [ 15.292969, 68.073305 ], [ 15.292969, 68.138852 ], [ 15.468750, 68.138852 ], [ 15.468750, 68.269387 ], [ 15.644531, 68.269387 ], [ 15.644531, 68.334376 ], [ 15.820312, 68.334376 ], [ 15.820312, 68.399180 ], [ 15.996094, 68.399180 ], [ 15.996094, 68.463800 ], [ 16.171875, 68.463800 ], [ 16.171875, 68.528235 ], [ 16.347656, 68.528235 ], [ 16.347656, 68.592487 ], [ 16.523438, 68.592487 ], [ 16.523438, 68.656555 ], [ 16.699219, 68.656555 ], [ 16.699219, 68.784144 ], [ 16.875000, 68.784144 ], [ 16.875000, 68.847665 ], [ 17.050781, 68.847665 ], [ 17.050781, 68.911005 ], [ 17.226562, 68.911005 ], [ 17.226562, 68.974164 ], [ 17.402344, 68.974164 ], [ 17.402344, 69.099940 ], [ 17.578125, 69.099940 ], [ 17.578125, 69.162558 ], [ 17.753906, 69.162558 ], [ 17.753906, 69.224997 ], [ 17.929688, 69.224997 ], [ 17.929688, 69.287257 ], [ 18.105469, 69.287257 ], [ 18.105469, 69.411242 ], [ 18.281250, 69.411242 ], [ 18.281250, 69.472969 ], [ 18.457031, 69.472969 ], [ 18.457031, 69.534518 ], [ 18.632812, 69.534518 ], [ 18.632812, 69.595890 ], [ 18.808594, 69.595890 ], [ 18.808594, 69.718107 ], [ 18.984375, 69.718107 ], [ 18.984375, 69.778952 ], [ 19.160156, 69.778952 ], [ 19.160156, 69.839622 ], [ 19.335938, 69.839622 ], [ 19.335938, 69.900118 ], [ 19.687500, 69.900118 ], [ 19.687500, 69.960439 ], [ 20.039062, 69.960439 ], [ 20.039062, 70.020587 ], [ 20.390625, 70.020587 ], [ 20.390625, 70.080562 ], [ 20.566406, 70.080562 ], [ 20.566406, 70.140364 ], [ 20.917969, 70.140364 ], [ 20.917969, 70.199994 ], [ 21.269531, 70.199994 ], [ 21.269531, 70.259452 ], [ 23.027344, 70.259452 ], [ 23.027344, 70.377854 ], [ 23.203125, 70.377854 ], [ 23.203125, 70.436799 ], [ 23.378906, 70.436799 ], [ 23.378906, 70.554179 ], [ 23.554688, 70.554179 ], [ 23.554688, 70.670881 ], [ 23.730469, 70.670881 ], [ 23.730469, 70.728979 ], [ 23.906250, 70.728979 ], [ 23.906250, 70.844673 ], [ 24.082031, 70.844673 ], [ 24.082031, 70.902268 ], [ 24.257812, 70.902268 ], [ 24.257812, 71.016960 ], [ 24.433594, 71.016960 ], [ 24.433594, 71.074056 ], [ 25.312500, 71.074056 ], [ 25.312500, 71.016960 ], [ 26.718750, 71.016960 ], [ 26.718750, 71.074056 ], [ 27.421875, 71.074056 ], [ 27.421875, 71.130988 ], [ 27.949219, 71.130988 ], [ 27.949219, 71.187754 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.204309 ], [ 20.390625, 79.204309 ], [ 20.390625, 79.171335 ], [ 20.566406, 79.171335 ], [ 20.566406, 79.138260 ], [ 20.742188, 79.138260 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.071812 ], [ 21.093750, 79.071812 ], [ 21.093750, 79.004962 ], [ 21.269531, 79.004962 ], [ 21.269531, 78.971386 ], [ 21.445312, 78.971386 ], [ 21.445312, 78.937708 ], [ 21.269531, 78.937708 ], [ 21.269531, 78.903929 ], [ 20.917969, 78.903929 ], [ 20.917969, 78.870048 ], [ 20.742188, 78.870048 ], [ 20.742188, 78.836065 ], [ 20.566406, 78.836065 ], [ 20.566406, 78.801980 ], [ 20.390625, 78.801980 ], [ 20.390625, 78.767792 ], [ 20.039062, 78.767792 ], [ 20.039062, 78.733501 ], [ 19.863281, 78.733501 ], [ 19.863281, 78.699106 ], [ 19.687500, 78.699106 ], [ 19.687500, 78.664608 ], [ 19.335938, 78.664608 ], [ 19.335938, 78.630006 ], [ 19.160156, 78.630006 ], [ 19.160156, 78.595299 ], [ 18.984375, 78.595299 ], [ 18.984375, 78.455425 ], [ 18.808594, 78.455425 ], [ 18.808594, 78.206563 ], [ 18.632812, 78.206563 ], [ 18.632812, 77.952414 ], [ 18.457031, 77.952414 ], [ 18.457031, 77.804771 ], [ 18.281250, 77.804771 ], [ 18.281250, 77.767582 ], [ 18.105469, 77.767582 ], [ 18.105469, 77.730282 ], [ 17.929688, 77.730282 ], [ 17.929688, 77.692870 ], [ 17.753906, 77.692870 ], [ 17.753906, 77.655346 ], [ 17.578125, 77.655346 ], [ 17.578125, 77.504119 ], [ 17.402344, 77.504119 ], [ 17.402344, 77.235074 ], [ 17.226562, 77.235074 ], [ 17.226562, 76.960334 ], [ 17.050781, 76.960334 ], [ 17.050781, 76.840816 ], [ 16.523438, 76.840816 ], [ 16.523438, 76.800739 ], [ 15.644531, 76.800739 ], [ 15.644531, 76.840816 ], [ 15.468750, 76.840816 ], [ 15.468750, 76.920614 ], [ 15.292969, 76.920614 ], [ 15.292969, 76.960334 ], [ 15.117188, 76.960334 ], [ 15.117188, 76.999935 ], [ 14.941406, 76.999935 ], [ 14.941406, 77.039418 ], [ 14.765625, 77.039418 ], [ 14.765625, 77.118032 ], [ 14.589844, 77.118032 ], [ 14.589844, 77.157163 ], [ 14.414062, 77.157163 ], [ 14.414062, 77.196176 ], [ 14.238281, 77.196176 ], [ 14.238281, 77.235074 ], [ 14.062500, 77.235074 ], [ 14.062500, 77.312520 ], [ 13.886719, 77.312520 ], [ 13.886719, 77.351070 ], [ 13.710938, 77.351070 ], [ 13.710938, 77.427824 ], [ 13.886719, 77.427824 ], [ 13.886719, 77.504119 ], [ 14.062500, 77.504119 ], [ 14.062500, 77.579959 ], [ 14.238281, 77.579959 ], [ 14.238281, 77.655346 ], [ 14.414062, 77.655346 ], [ 14.414062, 77.730282 ], [ 14.589844, 77.730282 ], [ 14.589844, 77.767582 ], [ 14.414062, 77.767582 ], [ 14.414062, 77.804771 ], [ 14.238281, 77.804771 ], [ 14.238281, 77.841848 ], [ 13.886719, 77.841848 ], [ 13.886719, 77.878814 ], [ 13.710938, 77.878814 ], [ 13.710938, 77.915669 ], [ 13.535156, 77.915669 ], [ 13.535156, 77.952414 ], [ 13.183594, 77.952414 ], [ 13.183594, 77.989049 ], [ 13.007812, 77.989049 ], [ 13.007812, 78.061989 ], [ 12.832031, 78.061989 ], [ 12.832031, 78.134493 ], [ 12.656250, 78.134493 ], [ 12.656250, 78.206563 ], [ 12.480469, 78.206563 ], [ 12.480469, 78.278201 ], [ 12.304688, 78.278201 ], [ 12.304688, 78.349411 ], [ 12.128906, 78.349411 ], [ 12.128906, 78.455425 ], [ 11.953125, 78.455425 ], [ 11.953125, 78.525573 ], [ 11.777344, 78.525573 ], [ 11.777344, 78.595299 ], [ 11.601562, 78.595299 ], [ 11.601562, 78.664608 ], [ 11.425781, 78.664608 ], [ 11.425781, 78.733501 ], [ 11.250000, 78.733501 ], [ 11.250000, 78.801980 ], [ 11.074219, 78.801980 ], [ 11.074219, 78.971386 ], [ 10.898438, 78.971386 ], [ 10.898438, 79.204309 ], [ 10.722656, 79.204309 ], [ 10.722656, 79.335219 ], [ 19.863281, 79.335219 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 22.851562, 78.349411 ], [ 23.027344, 78.349411 ], [ 23.027344, 78.170582 ], [ 23.203125, 78.170582 ], [ 23.203125, 78.061989 ], [ 23.378906, 78.061989 ], [ 23.378906, 78.025574 ], [ 23.730469, 78.025574 ], [ 23.730469, 77.989049 ], [ 23.906250, 77.989049 ], [ 23.906250, 77.952414 ], [ 24.082031, 77.952414 ], [ 24.082031, 77.915669 ], [ 24.433594, 77.915669 ], [ 24.433594, 77.878814 ], [ 24.609375, 77.878814 ], [ 24.609375, 77.841848 ], [ 24.433594, 77.841848 ], [ 24.433594, 77.804771 ], [ 24.257812, 77.804771 ], [ 24.257812, 77.767582 ], [ 23.906250, 77.767582 ], [ 23.906250, 77.730282 ], [ 23.730469, 77.730282 ], [ 23.730469, 77.692870 ], [ 23.554688, 77.692870 ], [ 23.554688, 77.655346 ], [ 23.378906, 77.655346 ], [ 23.378906, 77.617709 ], [ 23.203125, 77.617709 ], [ 23.203125, 77.579959 ], [ 22.851562, 77.579959 ], [ 22.851562, 77.542096 ], [ 22.675781, 77.542096 ], [ 22.675781, 77.504119 ], [ 22.500000, 77.504119 ], [ 22.500000, 77.466028 ], [ 22.148438, 77.466028 ], [ 22.148438, 77.504119 ], [ 21.796875, 77.504119 ], [ 21.796875, 77.542096 ], [ 21.445312, 77.542096 ], [ 21.445312, 77.579959 ], [ 21.269531, 77.579959 ], [ 21.269531, 77.617709 ], [ 20.917969, 77.617709 ], [ 20.917969, 77.655346 ], [ 20.566406, 77.655346 ], [ 20.566406, 77.692870 ], [ 20.742188, 77.692870 ], [ 20.742188, 77.767582 ], [ 20.917969, 77.767582 ], [ 20.917969, 77.841848 ], [ 21.093750, 77.841848 ], [ 21.093750, 77.915669 ], [ 21.269531, 77.915669 ], [ 21.269531, 77.989049 ], [ 21.093750, 77.989049 ], [ 21.093750, 78.098296 ], [ 20.917969, 78.098296 ], [ 20.917969, 78.206563 ], [ 20.742188, 78.206563 ], [ 20.742188, 78.278201 ], [ 21.093750, 78.278201 ], [ 21.093750, 78.313860 ], [ 21.445312, 78.313860 ], [ 21.445312, 78.349411 ], [ 21.972656, 78.349411 ], [ 21.972656, 78.384855 ], [ 22.324219, 78.384855 ], [ 22.324219, 78.420193 ], [ 22.675781, 78.420193 ], [ 22.675781, 78.455425 ], [ 22.851562, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.099940 ], [ 20.566406, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 68.974164 ], [ 20.917969, 68.974164 ], [ 20.917969, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.847665 ], [ 21.269531, 68.847665 ], [ 21.269531, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.720441 ], [ 21.621094, 68.720441 ], [ 21.621094, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.592487 ], [ 21.972656, 68.592487 ], [ 21.972656, 68.528235 ], [ 22.148438, 68.528235 ], [ 22.148438, 68.463800 ], [ 22.324219, 68.463800 ], [ 22.324219, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.334376 ], [ 22.675781, 68.334376 ], [ 22.675781, 68.269387 ], [ 22.851562, 68.269387 ], [ 22.851562, 68.138852 ], [ 23.027344, 68.138852 ], [ 23.027344, 68.073305 ], [ 23.203125, 68.073305 ], [ 23.203125, 68.007571 ], [ 23.378906, 68.007571 ], [ 23.378906, 67.941650 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.231457 ], [ 23.730469, 66.231457 ], [ 23.730469, 66.160511 ], [ 15.117188, 66.160511 ], [ 15.117188, 66.231457 ], [ 15.292969, 66.231457 ], [ 15.292969, 66.443107 ], [ 15.468750, 66.443107 ], [ 15.468750, 66.583217 ], [ 15.644531, 66.583217 ], [ 15.644531, 66.791909 ], [ 15.820312, 66.791909 ], [ 15.820312, 66.998844 ], [ 15.996094, 66.998844 ], [ 15.996094, 67.135829 ], [ 16.171875, 67.135829 ], [ 16.171875, 67.339861 ], [ 16.347656, 67.339861 ], [ 16.347656, 67.609221 ], [ 16.523438, 67.609221 ], [ 16.523438, 67.875541 ], [ 16.699219, 67.875541 ], [ 16.699219, 68.007571 ], [ 17.753906, 68.007571 ], [ 17.753906, 68.269387 ], [ 17.929688, 68.269387 ], [ 17.929688, 68.592487 ], [ 18.105469, 68.592487 ], [ 18.105469, 68.528235 ], [ 18.808594, 68.528235 ], [ 18.808594, 68.463800 ], [ 19.511719, 68.463800 ], [ 19.511719, 68.399180 ], [ 19.863281, 68.399180 ], [ 19.863281, 68.720441 ], [ 20.039062, 68.720441 ], [ 20.039062, 69.037142 ], [ 20.390625, 69.037142 ], [ 20.390625, 69.099940 ], [ 20.566406, 69.099940 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.566406, 69.162558 ], [ 20.566406, 69.099940 ], [ 20.742188, 69.099940 ], [ 20.742188, 69.037142 ], [ 20.917969, 69.037142 ], [ 20.917969, 68.974164 ], [ 21.093750, 68.974164 ], [ 21.093750, 68.911005 ], [ 21.269531, 68.911005 ], [ 21.269531, 68.847665 ], [ 21.445312, 68.847665 ], [ 21.445312, 68.784144 ], [ 21.621094, 68.784144 ], [ 21.621094, 68.720441 ], [ 21.796875, 68.720441 ], [ 21.796875, 68.656555 ], [ 21.972656, 68.656555 ], [ 21.972656, 68.592487 ], [ 22.148438, 68.592487 ], [ 22.148438, 68.463800 ], [ 22.324219, 68.463800 ], [ 22.324219, 68.399180 ], [ 22.500000, 68.399180 ], [ 22.500000, 68.334376 ], [ 22.675781, 68.334376 ], [ 22.675781, 68.204212 ], [ 22.851562, 68.204212 ], [ 22.851562, 68.138852 ], [ 23.027344, 68.138852 ], [ 23.027344, 68.073305 ], [ 23.203125, 68.073305 ], [ 23.203125, 67.941650 ], [ 23.378906, 67.941650 ], [ 23.378906, 67.204032 ], [ 23.554688, 67.204032 ], [ 23.554688, 66.302205 ], [ 23.730469, 66.302205 ], [ 23.730469, 66.160511 ], [ 14.941406, 66.160511 ], [ 14.941406, 66.302205 ], [ 15.117188, 66.302205 ], [ 15.117188, 66.513260 ], [ 15.292969, 66.513260 ], [ 15.292969, 66.652977 ], [ 15.468750, 66.652977 ], [ 15.468750, 66.861082 ], [ 15.644531, 66.861082 ], [ 15.644531, 67.067433 ], [ 15.820312, 67.067433 ], [ 15.820312, 67.204032 ], [ 15.996094, 67.204032 ], [ 15.996094, 67.407487 ], [ 16.171875, 67.407487 ], [ 16.171875, 67.609221 ], [ 16.347656, 67.609221 ], [ 16.347656, 67.742759 ], [ 16.523438, 67.742759 ], [ 16.523438, 67.941650 ], [ 16.699219, 67.941650 ], [ 16.699219, 68.073305 ], [ 17.578125, 68.073305 ], [ 17.578125, 68.204212 ], [ 17.753906, 68.204212 ], [ 17.753906, 68.463800 ], [ 17.929688, 68.463800 ], [ 17.929688, 68.592487 ], [ 18.281250, 68.592487 ], [ 18.281250, 68.528235 ], [ 19.335938, 68.528235 ], [ 19.335938, 68.463800 ], [ 19.863281, 68.463800 ], [ 19.863281, 69.099940 ], [ 20.390625, 69.099940 ], [ 20.390625, 69.162558 ], [ 20.566406, 69.162558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.949219, 70.080562 ], [ 27.949219, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.960439 ], [ 28.476562, 69.960439 ], [ 28.476562, 69.900118 ], [ 28.652344, 69.900118 ], [ 28.652344, 69.839622 ], [ 28.828125, 69.839622 ], [ 28.828125, 69.778952 ], [ 29.003906, 69.778952 ], [ 29.003906, 69.595890 ], [ 28.828125, 69.595890 ], [ 28.828125, 69.224997 ], [ 28.652344, 69.224997 ], [ 28.652344, 68.656555 ], [ 28.476562, 68.656555 ], [ 28.476562, 68.269387 ], [ 28.652344, 68.269387 ], [ 28.652344, 68.204212 ], [ 28.828125, 68.204212 ], [ 28.828125, 68.138852 ], [ 29.003906, 68.138852 ], [ 29.003906, 68.073305 ], [ 29.179688, 68.073305 ], [ 29.179688, 68.007571 ], [ 29.355469, 68.007571 ], [ 29.355469, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.809245 ], [ 29.707031, 67.809245 ], [ 29.707031, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.676085 ], [ 30.058594, 67.676085 ], [ 30.058594, 67.609221 ], [ 29.882812, 67.609221 ], [ 29.882812, 67.474922 ], [ 29.707031, 67.474922 ], [ 29.707031, 67.339861 ], [ 29.531250, 67.339861 ], [ 29.531250, 67.204032 ], [ 29.355469, 67.204032 ], [ 29.355469, 67.067433 ], [ 29.179688, 67.067433 ], [ 29.179688, 66.930060 ], [ 29.003906, 66.930060 ], [ 29.003906, 66.791909 ], [ 29.179688, 66.791909 ], [ 29.179688, 66.652977 ], [ 29.355469, 66.652977 ], [ 29.355469, 66.513260 ], [ 29.531250, 66.513260 ], [ 29.531250, 66.372755 ], [ 29.707031, 66.372755 ], [ 29.707031, 66.231457 ], [ 29.882812, 66.231457 ], [ 29.882812, 66.160511 ], [ 23.730469, 66.160511 ], [ 23.730469, 66.231457 ], [ 23.554688, 66.231457 ], [ 23.554688, 67.941650 ], [ 23.378906, 67.941650 ], [ 23.378906, 68.007571 ], [ 23.203125, 68.007571 ], [ 23.203125, 68.073305 ], [ 23.027344, 68.073305 ], [ 23.027344, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.269387 ], [ 22.675781, 68.269387 ], [ 22.675781, 68.334376 ], [ 22.500000, 68.334376 ], [ 22.500000, 68.399180 ], [ 22.324219, 68.399180 ], [ 22.324219, 68.463800 ], [ 22.148438, 68.463800 ], [ 22.148438, 68.528235 ], [ 21.972656, 68.528235 ], [ 21.972656, 68.592487 ], [ 21.796875, 68.592487 ], [ 21.796875, 68.656555 ], [ 21.621094, 68.656555 ], [ 21.621094, 68.720441 ], [ 21.445312, 68.720441 ], [ 21.445312, 68.784144 ], [ 21.269531, 68.784144 ], [ 21.269531, 68.847665 ], [ 21.093750, 68.847665 ], [ 21.093750, 68.911005 ], [ 20.917969, 68.911005 ], [ 20.917969, 68.974164 ], [ 20.742188, 68.974164 ], [ 20.742188, 69.037142 ], [ 20.566406, 69.037142 ], [ 20.566406, 69.099940 ], [ 20.742188, 69.099940 ], [ 20.742188, 69.162558 ], [ 20.917969, 69.162558 ], [ 20.917969, 69.224997 ], [ 21.093750, 69.224997 ], [ 21.093750, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.224997 ], [ 21.621094, 69.224997 ], [ 21.621094, 69.099940 ], [ 21.796875, 69.099940 ], [ 21.796875, 69.037142 ], [ 21.972656, 69.037142 ], [ 21.972656, 68.974164 ], [ 22.148438, 68.974164 ], [ 22.148438, 68.847665 ], [ 23.203125, 68.847665 ], [ 23.203125, 68.911005 ], [ 23.730469, 68.911005 ], [ 23.730469, 68.847665 ], [ 24.082031, 68.847665 ], [ 24.082031, 68.784144 ], [ 24.257812, 68.784144 ], [ 24.257812, 68.720441 ], [ 24.609375, 68.720441 ], [ 24.609375, 68.656555 ], [ 24.960938, 68.656555 ], [ 24.960938, 68.784144 ], [ 25.136719, 68.784144 ], [ 25.136719, 68.847665 ], [ 25.312500, 68.847665 ], [ 25.312500, 68.911005 ], [ 25.488281, 68.911005 ], [ 25.488281, 69.037142 ], [ 25.664062, 69.037142 ], [ 25.664062, 69.224997 ], [ 25.839844, 69.224997 ], [ 25.839844, 69.472969 ], [ 26.015625, 69.472969 ], [ 26.015625, 69.718107 ], [ 26.191406, 69.718107 ], [ 26.191406, 69.839622 ], [ 26.367188, 69.839622 ], [ 26.367188, 69.900118 ], [ 26.718750, 69.900118 ], [ 26.718750, 69.960439 ], [ 27.070312, 69.960439 ], [ 27.070312, 70.020587 ], [ 27.421875, 70.020587 ], [ 27.421875, 70.080562 ], [ 27.949219, 70.080562 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 70.140364 ], [ 27.773438, 70.080562 ], [ 27.949219, 70.080562 ], [ 27.949219, 70.020587 ], [ 28.125000, 70.020587 ], [ 28.125000, 69.960439 ], [ 28.476562, 69.960439 ], [ 28.476562, 69.900118 ], [ 28.652344, 69.900118 ], [ 28.652344, 69.839622 ], [ 28.828125, 69.839622 ], [ 28.828125, 69.778952 ], [ 29.003906, 69.778952 ], [ 29.003906, 69.657086 ], [ 28.828125, 69.657086 ], [ 28.828125, 69.411242 ], [ 28.652344, 69.411242 ], [ 28.652344, 69.162558 ], [ 28.476562, 69.162558 ], [ 28.476562, 68.720441 ], [ 28.300781, 68.720441 ], [ 28.300781, 68.334376 ], [ 28.476562, 68.334376 ], [ 28.476562, 68.269387 ], [ 28.652344, 68.269387 ], [ 28.652344, 68.204212 ], [ 28.828125, 68.204212 ], [ 28.828125, 68.138852 ], [ 29.003906, 68.138852 ], [ 29.003906, 68.073305 ], [ 29.179688, 68.073305 ], [ 29.179688, 67.941650 ], [ 29.355469, 67.941650 ], [ 29.355469, 67.875541 ], [ 29.531250, 67.875541 ], [ 29.531250, 67.809245 ], [ 29.707031, 67.809245 ], [ 29.707031, 67.742759 ], [ 29.882812, 67.742759 ], [ 29.882812, 67.609221 ], [ 29.707031, 67.609221 ], [ 29.707031, 67.474922 ], [ 29.531250, 67.474922 ], [ 29.531250, 67.339861 ], [ 29.355469, 67.339861 ], [ 29.355469, 67.204032 ], [ 29.179688, 67.204032 ], [ 29.179688, 67.067433 ], [ 29.003906, 67.067433 ], [ 29.003906, 66.861082 ], [ 29.179688, 66.861082 ], [ 29.179688, 66.652977 ], [ 29.355469, 66.652977 ], [ 29.355469, 66.443107 ], [ 29.531250, 66.443107 ], [ 29.531250, 66.231457 ], [ 29.707031, 66.231457 ], [ 29.707031, 66.160511 ], [ 23.730469, 66.160511 ], [ 23.730469, 66.302205 ], [ 23.554688, 66.302205 ], [ 23.554688, 67.204032 ], [ 23.378906, 67.204032 ], [ 23.378906, 67.941650 ], [ 23.203125, 67.941650 ], [ 23.203125, 68.073305 ], [ 23.027344, 68.073305 ], [ 23.027344, 68.138852 ], [ 22.851562, 68.138852 ], [ 22.851562, 68.204212 ], [ 22.675781, 68.204212 ], [ 22.675781, 68.334376 ], [ 22.500000, 68.334376 ], [ 22.500000, 68.399180 ], [ 22.324219, 68.399180 ], [ 22.324219, 68.463800 ], [ 22.148438, 68.463800 ], [ 22.148438, 68.592487 ], [ 21.972656, 68.592487 ], [ 21.972656, 68.656555 ], [ 21.796875, 68.656555 ], [ 21.796875, 68.720441 ], [ 21.621094, 68.720441 ], [ 21.621094, 68.784144 ], [ 21.445312, 68.784144 ], [ 21.445312, 68.847665 ], [ 21.269531, 68.847665 ], [ 21.269531, 68.911005 ], [ 21.093750, 68.911005 ], [ 21.093750, 68.974164 ], [ 20.917969, 68.974164 ], [ 20.917969, 69.037142 ], [ 20.742188, 69.037142 ], [ 20.742188, 69.099940 ], [ 20.566406, 69.099940 ], [ 20.566406, 69.162558 ], [ 20.742188, 69.162558 ], [ 20.742188, 69.287257 ], [ 20.917969, 69.287257 ], [ 20.917969, 69.349339 ], [ 21.269531, 69.349339 ], [ 21.269531, 69.287257 ], [ 21.445312, 69.287257 ], [ 21.445312, 69.162558 ], [ 21.621094, 69.162558 ], [ 21.621094, 69.099940 ], [ 21.796875, 69.099940 ], [ 21.796875, 69.037142 ], [ 21.972656, 69.037142 ], [ 21.972656, 68.911005 ], [ 22.148438, 68.911005 ], [ 22.148438, 68.847665 ], [ 23.027344, 68.847665 ], [ 23.027344, 68.911005 ], [ 23.554688, 68.911005 ], [ 23.554688, 68.847665 ], [ 23.906250, 68.847665 ], [ 23.906250, 68.784144 ], [ 24.082031, 68.784144 ], [ 24.082031, 68.720441 ], [ 24.433594, 68.720441 ], [ 24.433594, 68.656555 ], [ 24.785156, 68.656555 ], [ 24.785156, 68.720441 ], [ 24.960938, 68.720441 ], [ 24.960938, 68.784144 ], [ 25.136719, 68.784144 ], [ 25.136719, 68.911005 ], [ 25.312500, 68.911005 ], [ 25.312500, 68.974164 ], [ 25.488281, 68.974164 ], [ 25.488281, 69.037142 ], [ 25.664062, 69.037142 ], [ 25.664062, 69.287257 ], [ 25.839844, 69.287257 ], [ 25.839844, 69.657086 ], [ 26.015625, 69.657086 ], [ 26.015625, 69.839622 ], [ 26.191406, 69.839622 ], [ 26.191406, 69.900118 ], [ 26.542969, 69.900118 ], [ 26.542969, 69.960439 ], [ 26.718750, 69.960439 ], [ 26.718750, 70.020587 ], [ 27.070312, 70.020587 ], [ 27.070312, 70.080562 ], [ 27.246094, 70.080562 ], [ 27.246094, 70.140364 ], [ 27.773438, 70.140364 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.647035 ], [ 45.878906, 80.589727 ], [ 45.175781, 80.589727 ], [ 45.175781, 80.618424 ], [ 45.527344, 80.618424 ], [ 45.527344, 80.647035 ], [ 45.878906, 80.647035 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.675559 ], [ 45.878906, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.618424 ], [ 45.351562, 80.618424 ], [ 45.351562, 80.647035 ], [ 45.527344, 80.647035 ], [ 45.527344, 80.675559 ], [ 45.878906, 80.675559 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.050781, 80.058050 ], [ 17.050781, 80.027655 ], [ 17.226562, 80.027655 ], [ 17.226562, 79.966590 ], [ 17.402344, 79.966590 ], [ 17.402344, 79.905154 ], [ 17.578125, 79.905154 ], [ 17.578125, 79.874297 ], [ 17.753906, 79.874297 ], [ 17.753906, 79.812302 ], [ 17.929688, 79.812302 ], [ 17.929688, 79.749932 ], [ 18.105469, 79.749932 ], [ 18.105469, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.655668 ], [ 18.457031, 79.655668 ], [ 18.457031, 79.624056 ], [ 18.632812, 79.624056 ], [ 18.632812, 79.560546 ], [ 18.808594, 79.560546 ], [ 18.808594, 79.528647 ], [ 18.984375, 79.528647 ], [ 18.984375, 79.496652 ], [ 19.160156, 79.496652 ], [ 19.160156, 79.464560 ], [ 19.335938, 79.464560 ], [ 19.335938, 79.400085 ], [ 19.511719, 79.400085 ], [ 19.511719, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.335219 ], [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.269962 ], [ 20.214844, 79.269962 ], [ 20.214844, 79.204309 ], [ 20.390625, 79.204309 ], [ 20.390625, 79.171335 ], [ 20.566406, 79.171335 ], [ 20.566406, 79.138260 ], [ 20.742188, 79.138260 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 79.004962 ], [ 11.074219, 79.004962 ], [ 11.074219, 79.071812 ], [ 10.898438, 79.071812 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.400085 ], [ 10.546875, 79.400085 ], [ 10.546875, 79.560546 ], [ 10.371094, 79.560546 ], [ 10.371094, 79.655668 ], [ 10.546875, 79.655668 ], [ 10.546875, 79.687184 ], [ 10.898438, 79.687184 ], [ 10.898438, 79.718605 ], [ 11.074219, 79.718605 ], [ 11.074219, 79.749932 ], [ 11.425781, 79.749932 ], [ 11.425781, 79.781164 ], [ 11.601562, 79.781164 ], [ 11.601562, 79.812302 ], [ 11.953125, 79.812302 ], [ 11.953125, 79.843346 ], [ 12.128906, 79.843346 ], [ 12.128906, 79.874297 ], [ 12.304688, 79.874297 ], [ 12.304688, 79.905154 ], [ 12.656250, 79.905154 ], [ 12.656250, 79.935918 ], [ 12.832031, 79.935918 ], [ 12.832031, 79.966590 ], [ 13.183594, 79.966590 ], [ 13.183594, 79.935918 ], [ 13.359375, 79.935918 ], [ 13.359375, 79.812302 ], [ 13.535156, 79.812302 ], [ 13.535156, 79.687184 ], [ 13.710938, 79.687184 ], [ 13.710938, 79.655668 ], [ 14.589844, 79.655668 ], [ 14.589844, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.749932 ], [ 15.292969, 79.749932 ], [ 15.292969, 79.935918 ], [ 15.468750, 79.935918 ], [ 15.468750, 80.027655 ], [ 16.347656, 80.027655 ], [ 16.347656, 80.058050 ], [ 17.050781, 80.058050 ] ] ], [ [ [ 23.203125, 80.618424 ], [ 23.203125, 80.589727 ], [ 23.554688, 80.589727 ], [ 23.554688, 80.560943 ], [ 23.906250, 80.560943 ], [ 23.906250, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.503112 ], [ 24.609375, 80.503112 ], [ 24.609375, 80.474065 ], [ 24.960938, 80.474065 ], [ 24.960938, 80.444931 ], [ 25.312500, 80.444931 ], [ 25.312500, 80.415707 ], [ 25.488281, 80.415707 ], [ 25.488281, 80.386396 ], [ 25.664062, 80.386396 ], [ 25.664062, 80.356995 ], [ 25.839844, 80.356995 ], [ 25.839844, 80.327506 ], [ 26.015625, 80.327506 ], [ 26.015625, 80.297927 ], [ 26.191406, 80.297927 ], [ 26.191406, 80.268259 ], [ 26.367188, 80.268259 ], [ 26.367188, 80.238501 ], [ 26.542969, 80.238501 ], [ 26.542969, 80.178713 ], [ 26.718750, 80.178713 ], [ 26.718750, 80.148684 ], [ 26.894531, 80.148684 ], [ 26.894531, 80.118564 ], [ 27.070312, 80.118564 ], [ 27.070312, 80.088352 ], [ 27.246094, 80.088352 ], [ 27.246094, 80.058050 ], [ 27.421875, 80.058050 ], [ 27.421875, 80.027655 ], [ 27.246094, 80.027655 ], [ 27.246094, 79.966590 ], [ 27.070312, 79.966590 ], [ 27.070312, 79.905154 ], [ 26.894531, 79.905154 ], [ 26.894531, 79.843346 ], [ 26.718750, 79.843346 ], [ 26.718750, 79.781164 ], [ 26.542969, 79.781164 ], [ 26.542969, 79.718605 ], [ 26.367188, 79.718605 ], [ 26.367188, 79.655668 ], [ 26.191406, 79.655668 ], [ 26.191406, 79.592349 ], [ 26.015625, 79.592349 ], [ 26.015625, 79.528647 ], [ 25.664062, 79.528647 ], [ 25.664062, 79.496652 ], [ 24.960938, 79.496652 ], [ 24.960938, 79.464560 ], [ 24.257812, 79.464560 ], [ 24.257812, 79.432371 ], [ 23.554688, 79.432371 ], [ 23.554688, 79.400085 ], [ 22.675781, 79.400085 ], [ 22.675781, 79.432371 ], [ 21.972656, 79.432371 ], [ 21.972656, 79.464560 ], [ 21.445312, 79.464560 ], [ 21.445312, 79.496652 ], [ 20.917969, 79.496652 ], [ 20.917969, 79.528647 ], [ 20.214844, 79.528647 ], [ 20.214844, 79.560546 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.687184 ], [ 19.863281, 79.687184 ], [ 19.863281, 79.843346 ], [ 18.984375, 79.843346 ], [ 18.984375, 79.874297 ], [ 18.457031, 79.874297 ], [ 18.457031, 79.905154 ], [ 18.281250, 79.905154 ], [ 18.281250, 79.966590 ], [ 18.105469, 79.966590 ], [ 18.105469, 80.058050 ], [ 17.929688, 80.058050 ], [ 17.929688, 80.118564 ], [ 17.753906, 80.118564 ], [ 17.753906, 80.208652 ], [ 17.578125, 80.208652 ], [ 17.578125, 80.268259 ], [ 17.402344, 80.268259 ], [ 17.402344, 80.327506 ], [ 17.578125, 80.327506 ], [ 17.578125, 80.356995 ], [ 17.929688, 80.356995 ], [ 17.929688, 80.386396 ], [ 18.281250, 80.386396 ], [ 18.281250, 80.415707 ], [ 18.632812, 80.415707 ], [ 18.632812, 80.444931 ], [ 18.984375, 80.444931 ], [ 18.984375, 80.474065 ], [ 19.335938, 80.474065 ], [ 19.335938, 80.503112 ], [ 19.687500, 80.503112 ], [ 19.687500, 80.532071 ], [ 20.039062, 80.532071 ], [ 20.039062, 80.560943 ], [ 20.566406, 80.560943 ], [ 20.566406, 80.532071 ], [ 20.742188, 80.532071 ], [ 20.742188, 80.503112 ], [ 20.917969, 80.503112 ], [ 20.917969, 80.474065 ], [ 21.269531, 80.474065 ], [ 21.269531, 80.444931 ], [ 21.445312, 80.444931 ], [ 21.445312, 80.415707 ], [ 21.621094, 80.415707 ], [ 21.621094, 80.386396 ], [ 21.796875, 80.386396 ], [ 21.796875, 80.356995 ], [ 21.972656, 80.356995 ], [ 21.972656, 80.386396 ], [ 22.148438, 80.386396 ], [ 22.148438, 80.444931 ], [ 22.324219, 80.444931 ], [ 22.324219, 80.503112 ], [ 22.500000, 80.503112 ], [ 22.500000, 80.560943 ], [ 22.675781, 80.560943 ], [ 22.675781, 80.618424 ], [ 23.203125, 80.618424 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.875000, 80.058050 ], [ 16.875000, 80.027655 ], [ 17.050781, 80.027655 ], [ 17.050781, 79.966590 ], [ 17.226562, 79.966590 ], [ 17.226562, 79.935918 ], [ 17.402344, 79.935918 ], [ 17.402344, 79.874297 ], [ 17.578125, 79.874297 ], [ 17.578125, 79.812302 ], [ 17.753906, 79.812302 ], [ 17.753906, 79.781164 ], [ 17.929688, 79.781164 ], [ 17.929688, 79.718605 ], [ 18.105469, 79.718605 ], [ 18.105469, 79.687184 ], [ 18.281250, 79.687184 ], [ 18.281250, 79.655668 ], [ 18.457031, 79.655668 ], [ 18.457031, 79.592349 ], [ 18.632812, 79.592349 ], [ 18.632812, 79.560546 ], [ 18.808594, 79.560546 ], [ 18.808594, 79.528647 ], [ 18.984375, 79.528647 ], [ 18.984375, 79.496652 ], [ 19.160156, 79.496652 ], [ 19.160156, 79.464560 ], [ 19.335938, 79.464560 ], [ 19.335938, 79.400085 ], [ 19.511719, 79.400085 ], [ 19.511719, 79.367701 ], [ 19.687500, 79.367701 ], [ 19.687500, 79.335219 ], [ 19.863281, 79.335219 ], [ 19.863281, 79.302640 ], [ 20.039062, 79.302640 ], [ 20.039062, 79.237185 ], [ 20.214844, 79.237185 ], [ 20.214844, 79.204309 ], [ 20.390625, 79.204309 ], [ 20.390625, 79.171335 ], [ 20.566406, 79.171335 ], [ 20.566406, 79.138260 ], [ 20.742188, 79.138260 ], [ 20.742188, 79.105086 ], [ 20.917969, 79.105086 ], [ 20.917969, 79.038437 ], [ 21.093750, 79.038437 ], [ 21.093750, 79.004962 ], [ 11.074219, 79.004962 ], [ 11.074219, 79.071812 ], [ 10.898438, 79.071812 ], [ 10.898438, 79.237185 ], [ 10.722656, 79.237185 ], [ 10.722656, 79.400085 ], [ 10.546875, 79.400085 ], [ 10.546875, 79.560546 ], [ 10.371094, 79.560546 ], [ 10.371094, 79.655668 ], [ 10.546875, 79.655668 ], [ 10.546875, 79.687184 ], [ 10.722656, 79.687184 ], [ 10.722656, 79.718605 ], [ 11.074219, 79.718605 ], [ 11.074219, 79.749932 ], [ 11.250000, 79.749932 ], [ 11.250000, 79.781164 ], [ 11.425781, 79.781164 ], [ 11.425781, 79.812302 ], [ 11.601562, 79.812302 ], [ 11.601562, 79.843346 ], [ 11.953125, 79.843346 ], [ 11.953125, 79.874297 ], [ 12.128906, 79.874297 ], [ 12.128906, 79.905154 ], [ 12.304688, 79.905154 ], [ 12.304688, 79.935918 ], [ 12.480469, 79.935918 ], [ 12.480469, 79.966590 ], [ 12.832031, 79.966590 ], [ 12.832031, 79.997168 ], [ 13.007812, 79.997168 ], [ 13.007812, 79.966590 ], [ 13.183594, 79.966590 ], [ 13.183594, 79.874297 ], [ 13.359375, 79.874297 ], [ 13.359375, 79.812302 ], [ 13.535156, 79.812302 ], [ 13.535156, 79.718605 ], [ 13.710938, 79.718605 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.117188, 79.749932 ], [ 15.292969, 79.749932 ], [ 15.292969, 79.935918 ], [ 15.468750, 79.935918 ], [ 15.468750, 80.027655 ], [ 16.347656, 80.027655 ], [ 16.347656, 80.058050 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 23.203125, 80.647035 ], [ 23.203125, 80.618424 ], [ 23.378906, 80.618424 ], [ 23.378906, 80.589727 ], [ 23.730469, 80.589727 ], [ 23.730469, 80.560943 ], [ 23.906250, 80.560943 ], [ 23.906250, 80.532071 ], [ 24.257812, 80.532071 ], [ 24.257812, 80.503112 ], [ 24.609375, 80.503112 ], [ 24.609375, 80.474065 ], [ 24.785156, 80.474065 ], [ 24.785156, 80.444931 ], [ 25.136719, 80.444931 ], [ 25.136719, 80.415707 ], [ 25.312500, 80.415707 ], [ 25.312500, 80.386396 ], [ 25.488281, 80.386396 ], [ 25.488281, 80.356995 ], [ 25.664062, 80.356995 ], [ 25.664062, 80.327506 ], [ 25.839844, 80.327506 ], [ 25.839844, 80.297927 ], [ 26.015625, 80.297927 ], [ 26.015625, 80.268259 ], [ 26.191406, 80.268259 ], [ 26.191406, 80.238501 ], [ 26.367188, 80.238501 ], [ 26.367188, 80.178713 ], [ 26.542969, 80.178713 ], [ 26.542969, 80.148684 ], [ 26.718750, 80.148684 ], [ 26.718750, 80.118564 ], [ 26.894531, 80.118564 ], [ 26.894531, 80.088352 ], [ 27.070312, 80.088352 ], [ 27.070312, 80.058050 ], [ 27.246094, 80.058050 ], [ 27.246094, 79.997168 ], [ 27.070312, 79.997168 ], [ 27.070312, 79.935918 ], [ 26.894531, 79.935918 ], [ 26.894531, 79.874297 ], [ 26.718750, 79.874297 ], [ 26.718750, 79.812302 ], [ 26.542969, 79.812302 ], [ 26.542969, 79.749932 ], [ 26.367188, 79.749932 ], [ 26.367188, 79.687184 ], [ 26.191406, 79.687184 ], [ 26.191406, 79.624056 ], [ 26.015625, 79.624056 ], [ 26.015625, 79.560546 ], [ 25.839844, 79.560546 ], [ 25.839844, 79.528647 ], [ 25.488281, 79.528647 ], [ 25.488281, 79.496652 ], [ 24.785156, 79.496652 ], [ 24.785156, 79.464560 ], [ 24.082031, 79.464560 ], [ 24.082031, 79.432371 ], [ 23.378906, 79.432371 ], [ 23.378906, 79.400085 ], [ 22.500000, 79.400085 ], [ 22.500000, 79.432371 ], [ 21.972656, 79.432371 ], [ 21.972656, 79.464560 ], [ 21.621094, 79.464560 ], [ 21.621094, 79.496652 ], [ 21.093750, 79.496652 ], [ 21.093750, 79.528647 ], [ 20.566406, 79.528647 ], [ 20.566406, 79.560546 ], [ 20.214844, 79.560546 ], [ 20.214844, 79.592349 ], [ 20.039062, 79.592349 ], [ 20.039062, 79.718605 ], [ 19.863281, 79.718605 ], [ 19.863281, 79.843346 ], [ 18.984375, 79.843346 ], [ 18.984375, 79.874297 ], [ 18.457031, 79.874297 ], [ 18.457031, 79.905154 ], [ 18.281250, 79.905154 ], [ 18.281250, 79.966590 ], [ 18.105469, 79.966590 ], [ 18.105469, 80.027655 ], [ 17.929688, 80.027655 ], [ 17.929688, 80.088352 ], [ 17.753906, 80.088352 ], [ 17.753906, 80.148684 ], [ 17.578125, 80.148684 ], [ 17.578125, 80.208652 ], [ 17.402344, 80.208652 ], [ 17.402344, 80.268259 ], [ 17.226562, 80.268259 ], [ 17.226562, 80.327506 ], [ 17.402344, 80.327506 ], [ 17.402344, 80.356995 ], [ 17.753906, 80.356995 ], [ 17.753906, 80.386396 ], [ 18.105469, 80.386396 ], [ 18.105469, 80.415707 ], [ 18.457031, 80.415707 ], [ 18.457031, 80.444931 ], [ 18.808594, 80.444931 ], [ 18.808594, 80.474065 ], [ 18.984375, 80.474065 ], [ 18.984375, 80.503112 ], [ 19.335938, 80.503112 ], [ 19.335938, 80.532071 ], [ 19.687500, 80.532071 ], [ 19.687500, 80.560943 ], [ 20.039062, 80.560943 ], [ 20.039062, 80.589727 ], [ 20.566406, 80.589727 ], [ 20.566406, 80.560943 ], [ 20.742188, 80.560943 ], [ 20.742188, 80.532071 ], [ 20.917969, 80.532071 ], [ 20.917969, 80.503112 ], [ 21.093750, 80.503112 ], [ 21.093750, 80.474065 ], [ 21.269531, 80.474065 ], [ 21.269531, 80.444931 ], [ 21.445312, 80.444931 ], [ 21.445312, 80.415707 ], [ 21.621094, 80.415707 ], [ 21.621094, 80.386396 ], [ 21.972656, 80.386396 ], [ 21.972656, 80.444931 ], [ 22.148438, 80.444931 ], [ 22.148438, 80.503112 ], [ 22.324219, 80.503112 ], [ 22.324219, 80.532071 ], [ 22.500000, 80.532071 ], [ 22.500000, 80.589727 ], [ 22.675781, 80.589727 ], [ 22.675781, 80.647035 ], [ 23.203125, 80.647035 ] ] ] ] } } ] } ] } , @@ -1916,121 +1906,121 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.443107 ], [ 57.304688, -66.443107 ], [ 57.304688, -66.722541 ], [ 57.480469, -66.722541 ], [ 57.480469, -66.791909 ], [ 57.656250, -66.791909 ], [ 57.656250, -66.861082 ], [ 57.832031, -66.861082 ], [ 57.832031, -66.930060 ], [ 58.007812, -66.930060 ], [ 58.007812, -66.998844 ], [ 58.183594, -66.998844 ], [ 58.183594, -67.067433 ], [ 58.359375, -67.067433 ], [ 58.359375, -67.135829 ], [ 58.535156, -67.135829 ], [ 58.535156, -67.272043 ], [ 58.886719, -67.272043 ], [ 58.886719, -67.339861 ], [ 59.589844, -67.339861 ], [ 59.589844, -67.407487 ], [ 59.941406, -67.407487 ], [ 59.941406, -67.474922 ], [ 60.117188, -67.474922 ], [ 60.117188, -67.542167 ], [ 60.292969, -67.542167 ], [ 60.292969, -67.609221 ], [ 60.468750, -67.609221 ], [ 60.468750, -67.676085 ], [ 60.644531, -67.676085 ], [ 60.644531, -67.742759 ], [ 60.820312, -67.742759 ], [ 60.820312, -67.809245 ], [ 60.996094, -67.809245 ], [ 60.996094, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -67.941650 ], [ 61.699219, -67.941650 ], [ 61.699219, -68.007571 ], [ 62.578125, -68.007571 ], [ 62.578125, -67.941650 ], [ 62.929688, -67.941650 ], [ 62.929688, -67.875541 ], [ 63.105469, -67.875541 ], [ 63.105469, -67.809245 ], [ 63.281250, -67.809245 ], [ 63.281250, -67.742759 ], [ 63.457031, -67.742759 ], [ 63.457031, -67.609221 ], [ 63.632812, -67.609221 ], [ 63.632812, -67.542167 ], [ 63.808594, -67.542167 ], [ 63.808594, -67.474922 ], [ 64.335938, -67.474922 ], [ 64.335938, -67.542167 ], [ 64.687500, -67.542167 ], [ 64.687500, -67.609221 ], [ 65.214844, -67.609221 ], [ 65.214844, -67.676085 ], [ 65.566406, -67.676085 ], [ 65.566406, -67.742759 ], [ 66.093750, -67.742759 ], [ 66.093750, -67.809245 ], [ 66.621094, -67.809245 ], [ 66.621094, -67.875541 ], [ 67.324219, -67.875541 ], [ 67.324219, -67.941650 ], [ 68.906250, -67.941650 ], [ 68.906250, -68.073305 ], [ 69.082031, -68.073305 ], [ 69.082031, -68.269387 ], [ 69.257812, -68.269387 ], [ 69.257812, -68.463800 ], [ 69.433594, -68.463800 ], [ 69.433594, -68.720441 ], [ 69.609375, -68.720441 ], [ 69.609375, -68.911005 ], [ 69.785156, -68.911005 ], [ 69.785156, -69.099940 ], [ 69.609375, -69.099940 ], [ 69.609375, -69.718107 ], [ 69.433594, -69.718107 ], [ 69.433594, -69.778952 ], [ 69.257812, -69.778952 ], [ 69.257812, -69.839622 ], [ 68.906250, -69.839622 ], [ 68.906250, -69.900118 ], [ 68.730469, -69.900118 ], [ 68.730469, -69.960439 ], [ 68.554688, -69.960439 ], [ 68.554688, -70.020587 ], [ 68.378906, -70.020587 ], [ 68.378906, -70.140364 ], [ 68.203125, -70.140364 ], [ 68.203125, -70.199994 ], [ 68.027344, -70.199994 ], [ 68.027344, -70.318738 ], [ 67.851562, -70.318738 ], [ 67.851562, -70.495574 ], [ 68.027344, -70.495574 ], [ 68.027344, -70.670881 ], [ 69.082031, -70.670881 ], [ 69.082031, -70.902268 ], [ 68.906250, -70.902268 ], [ 68.906250, -71.187754 ], [ 68.730469, -71.187754 ], [ 68.730469, -71.300793 ], [ 68.554688, -71.300793 ], [ 68.554688, -71.413177 ], [ 68.378906, -71.413177 ], [ 68.378906, -71.580532 ], [ 68.203125, -71.580532 ], [ 68.203125, -71.801410 ], [ 68.027344, -71.801410 ], [ 68.027344, -71.910888 ], [ 68.203125, -71.910888 ], [ 68.203125, -72.019729 ], [ 68.378906, -72.019729 ], [ 68.378906, -72.073911 ], [ 68.554688, -72.073911 ], [ 68.554688, -72.181804 ], [ 68.906250, -72.181804 ], [ 68.906250, -72.235514 ], [ 69.433594, -72.235514 ], [ 69.433594, -72.289067 ], [ 69.960938, -72.289067 ], [ 69.960938, -72.235514 ], [ 70.312500, -72.235514 ], [ 70.312500, -72.181804 ], [ 70.664062, -72.181804 ], [ 70.664062, -72.127936 ], [ 71.015625, -72.127936 ], [ 71.015625, -72.019729 ], [ 71.191406, -72.019729 ], [ 71.191406, -71.910888 ], [ 71.367188, -71.910888 ], [ 71.367188, -71.801410 ], [ 71.542969, -71.801410 ], [ 71.542969, -71.635993 ], [ 71.718750, -71.635993 ], [ 71.718750, -71.413177 ], [ 71.894531, -71.413177 ], [ 71.894531, -71.300793 ], [ 72.070312, -71.300793 ], [ 72.070312, -71.187754 ], [ 72.246094, -71.187754 ], [ 72.246094, -71.074056 ], [ 72.421875, -71.074056 ], [ 72.421875, -71.016960 ], [ 72.597656, -71.016960 ], [ 72.597656, -70.959697 ], [ 72.773438, -70.959697 ], [ 72.773438, -70.844673 ], [ 72.949219, -70.844673 ], [ 72.949219, -70.786910 ], [ 73.125000, -70.786910 ], [ 73.125000, -70.554179 ], [ 73.300781, -70.554179 ], [ 73.300781, -70.318738 ], [ 73.476562, -70.318738 ], [ 73.476562, -70.140364 ], [ 73.652344, -70.140364 ], [ 73.652344, -70.020587 ], [ 73.828125, -70.020587 ], [ 73.828125, -69.900118 ], [ 74.179688, -69.900118 ], [ 74.179688, -69.839622 ], [ 74.531250, -69.839622 ], [ 74.531250, -69.778952 ], [ 75.234375, -69.778952 ], [ 75.234375, -69.718107 ], [ 75.937500, -69.718107 ], [ 75.937500, -69.657086 ], [ 76.464844, -69.657086 ], [ 76.464844, -69.595890 ], [ 76.992188, -69.595890 ], [ 76.992188, -69.534518 ], [ 77.519531, -69.534518 ], [ 77.519531, -69.472969 ], [ 77.695312, -69.472969 ], [ 77.695312, -69.411242 ], [ 77.871094, -69.411242 ], [ 77.871094, -69.224997 ], [ 78.046875, -69.224997 ], [ 78.046875, -69.037142 ], [ 78.222656, -69.037142 ], [ 78.222656, -68.847665 ], [ 78.398438, -68.847665 ], [ 78.398438, -68.720441 ], [ 78.574219, -68.720441 ], [ 78.574219, -68.592487 ], [ 78.750000, -68.592487 ], [ 78.750000, -68.528235 ], [ 78.925781, -68.528235 ], [ 78.925781, -68.399180 ], [ 79.101562, -68.399180 ], [ 79.101562, -68.334376 ], [ 79.277344, -68.334376 ], [ 79.277344, -68.269387 ], [ 79.628906, -68.269387 ], [ 79.628906, -68.204212 ], [ 79.804688, -68.204212 ], [ 79.804688, -68.138852 ], [ 80.156250, -68.138852 ], [ 80.156250, -68.073305 ], [ 80.332031, -68.073305 ], [ 80.332031, -68.007571 ], [ 80.683594, -68.007571 ], [ 80.683594, -67.941650 ], [ 80.859375, -67.941650 ], [ 80.859375, -67.875541 ], [ 81.035156, -67.875541 ], [ 81.035156, -67.809245 ], [ 81.210938, -67.809245 ], [ 81.210938, -67.676085 ], [ 81.386719, -67.676085 ], [ 81.386719, -67.609221 ], [ 81.562500, -67.609221 ], [ 81.562500, -67.542167 ], [ 81.738281, -67.542167 ], [ 81.738281, -67.474922 ], [ 81.914062, -67.474922 ], [ 81.914062, -67.407487 ], [ 82.089844, -67.407487 ], [ 82.089844, -67.339861 ], [ 82.441406, -67.339861 ], [ 82.441406, -67.272043 ], [ 82.792969, -67.272043 ], [ 82.792969, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.272043 ], [ 83.496094, -67.272043 ], [ 83.496094, -67.339861 ], [ 84.199219, -67.339861 ], [ 84.199219, -67.272043 ], [ 84.550781, -67.272043 ], [ 84.550781, -67.204032 ], [ 85.078125, -67.204032 ], [ 85.078125, -67.135829 ], [ 85.429688, -67.135829 ], [ 85.429688, -67.067433 ], [ 86.132812, -67.067433 ], [ 86.132812, -67.135829 ], [ 87.011719, -67.135829 ], [ 87.011719, -67.067433 ], [ 87.187500, -67.067433 ], [ 87.187500, -66.998844 ], [ 87.363281, -66.998844 ], [ 87.363281, -66.930060 ], [ 87.539062, -66.930060 ], [ 87.539062, -66.791909 ], [ 87.714844, -66.791909 ], [ 87.714844, -66.583217 ], [ 87.890625, -66.583217 ], [ 87.890625, -66.372755 ], [ 88.066406, -66.372755 ], [ 88.066406, -66.302205 ], [ 88.242188, -66.302205 ], [ 88.242188, -66.443107 ], [ 88.417969, -66.443107 ], [ 88.417969, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.861082 ], [ 88.769531, -66.861082 ], [ 88.769531, -66.998844 ], [ 89.121094, -66.998844 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 90.878906, -67.204032 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.269387 ], [ 44.296875, -68.269387 ], [ 44.296875, -68.204212 ], [ 44.648438, -68.204212 ], [ 44.648438, -68.138852 ], [ 44.824219, -68.138852 ], [ 44.824219, -68.073305 ], [ 45.000000, -68.073305 ], [ 45.000000, -68.007571 ], [ 45.175781, -68.007571 ], [ 45.175781, -67.941650 ], [ 45.527344, -67.941650 ], [ 45.527344, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ], [ 45.878906, -67.742759 ], [ 46.230469, -67.742759 ], [ 46.230469, -67.676085 ], [ 46.582031, -67.676085 ], [ 46.582031, -67.609221 ], [ 46.757812, -67.609221 ], [ 46.757812, -67.676085 ], [ 47.109375, -67.676085 ], [ 47.109375, -67.742759 ], [ 47.636719, -67.742759 ], [ 47.636719, -67.676085 ], [ 47.812500, -67.676085 ], [ 47.812500, -67.542167 ], [ 47.988281, -67.542167 ], [ 47.988281, -67.474922 ], [ 48.164062, -67.474922 ], [ 48.164062, -67.407487 ], [ 48.339844, -67.407487 ], [ 48.339844, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.272043 ], [ 48.691406, -67.272043 ], [ 48.691406, -67.204032 ], [ 48.867188, -67.204032 ], [ 48.867188, -67.135829 ], [ 49.042969, -67.135829 ], [ 49.042969, -67.067433 ], [ 49.394531, -67.067433 ], [ 49.394531, -67.135829 ], [ 50.097656, -67.135829 ], [ 50.097656, -67.067433 ], [ 50.273438, -67.067433 ], [ 50.273438, -66.998844 ], [ 50.625000, -66.998844 ], [ 50.625000, -66.930060 ], [ 50.800781, -66.930060 ], [ 50.800781, -66.722541 ], [ 50.976562, -66.722541 ], [ 50.976562, -66.513260 ], [ 51.152344, -66.513260 ], [ 51.152344, -66.443107 ], [ 51.328125, -66.443107 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.302205 ], [ 51.855469, -66.302205 ], [ 51.855469, -66.231457 ], [ 52.207031, -66.231457 ], [ 52.207031, -66.160511 ], [ 56.953125, -66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.777344, -66.160511 ], [ 56.777344, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.722541 ], [ 57.304688, -66.722541 ], [ 57.304688, -66.791909 ], [ 57.480469, -66.791909 ], [ 57.480469, -66.861082 ], [ 57.656250, -66.861082 ], [ 57.656250, -66.930060 ], [ 57.832031, -66.930060 ], [ 57.832031, -66.998844 ], [ 58.007812, -66.998844 ], [ 58.007812, -67.067433 ], [ 58.183594, -67.067433 ], [ 58.183594, -67.135829 ], [ 58.359375, -67.135829 ], [ 58.359375, -67.204032 ], [ 58.535156, -67.204032 ], [ 58.535156, -67.272043 ], [ 59.238281, -67.272043 ], [ 59.238281, -67.339861 ], [ 59.941406, -67.339861 ], [ 59.941406, -67.407487 ], [ 60.117188, -67.407487 ], [ 60.117188, -67.542167 ], [ 60.292969, -67.542167 ], [ 60.292969, -67.676085 ], [ 60.468750, -67.676085 ], [ 60.468750, -67.742759 ], [ 60.644531, -67.742759 ], [ 60.644531, -67.809245 ], [ 60.996094, -67.809245 ], [ 60.996094, -67.875541 ], [ 61.171875, -67.875541 ], [ 61.171875, -67.941650 ], [ 61.699219, -67.941650 ], [ 61.699219, -68.007571 ], [ 62.402344, -68.007571 ], [ 62.402344, -67.941650 ], [ 62.753906, -67.941650 ], [ 62.753906, -67.875541 ], [ 63.105469, -67.875541 ], [ 63.105469, -67.809245 ], [ 63.281250, -67.809245 ], [ 63.281250, -67.676085 ], [ 63.457031, -67.676085 ], [ 63.457031, -67.609221 ], [ 63.632812, -67.609221 ], [ 63.632812, -67.542167 ], [ 63.808594, -67.542167 ], [ 63.808594, -67.407487 ], [ 64.160156, -67.407487 ], [ 64.160156, -67.474922 ], [ 64.511719, -67.474922 ], [ 64.511719, -67.542167 ], [ 64.687500, -67.542167 ], [ 64.687500, -67.609221 ], [ 65.214844, -67.609221 ], [ 65.214844, -67.676085 ], [ 66.093750, -67.676085 ], [ 66.093750, -67.742759 ], [ 66.445312, -67.742759 ], [ 66.445312, -67.809245 ], [ 67.148438, -67.809245 ], [ 67.148438, -67.875541 ], [ 68.730469, -67.875541 ], [ 68.730469, -68.007571 ], [ 68.906250, -68.007571 ], [ 68.906250, -68.204212 ], [ 69.082031, -68.204212 ], [ 69.082031, -68.399180 ], [ 69.257812, -68.399180 ], [ 69.257812, -68.656555 ], [ 69.433594, -68.656555 ], [ 69.433594, -68.847665 ], [ 69.609375, -68.847665 ], [ 69.609375, -69.472969 ], [ 69.433594, -69.472969 ], [ 69.433594, -69.718107 ], [ 69.257812, -69.718107 ], [ 69.257812, -69.778952 ], [ 68.906250, -69.778952 ], [ 68.906250, -69.839622 ], [ 68.730469, -69.839622 ], [ 68.730469, -69.900118 ], [ 68.554688, -69.900118 ], [ 68.554688, -69.960439 ], [ 68.378906, -69.960439 ], [ 68.378906, -70.020587 ], [ 68.203125, -70.020587 ], [ 68.203125, -70.080562 ], [ 68.027344, -70.080562 ], [ 68.027344, -70.199994 ], [ 67.851562, -70.199994 ], [ 67.851562, -70.259452 ], [ 67.675781, -70.259452 ], [ 67.675781, -70.495574 ], [ 67.851562, -70.495574 ], [ 67.851562, -70.670881 ], [ 68.906250, -70.670881 ], [ 68.906250, -71.130988 ], [ 68.730469, -71.130988 ], [ 68.730469, -71.244356 ], [ 68.554688, -71.244356 ], [ 68.554688, -71.357067 ], [ 68.378906, -71.357067 ], [ 68.378906, -71.524909 ], [ 68.203125, -71.524909 ], [ 68.203125, -71.635993 ], [ 68.027344, -71.635993 ], [ 68.027344, -71.746432 ], [ 67.851562, -71.746432 ], [ 67.851562, -71.856229 ], [ 68.027344, -71.856229 ], [ 68.027344, -71.965388 ], [ 68.203125, -71.965388 ], [ 68.203125, -72.019729 ], [ 68.378906, -72.019729 ], [ 68.378906, -72.127936 ], [ 68.730469, -72.127936 ], [ 68.730469, -72.181804 ], [ 69.433594, -72.181804 ], [ 69.433594, -72.235514 ], [ 70.136719, -72.235514 ], [ 70.136719, -72.181804 ], [ 70.488281, -72.181804 ], [ 70.488281, -72.127936 ], [ 70.839844, -72.127936 ], [ 70.839844, -72.073911 ], [ 71.015625, -72.073911 ], [ 71.015625, -72.019729 ], [ 71.191406, -72.019729 ], [ 71.191406, -71.910888 ], [ 71.367188, -71.910888 ], [ 71.367188, -71.801410 ], [ 71.542969, -71.801410 ], [ 71.542969, -71.635993 ], [ 71.718750, -71.635993 ], [ 71.718750, -71.413177 ], [ 71.894531, -71.413177 ], [ 71.894531, -71.244356 ], [ 72.070312, -71.244356 ], [ 72.070312, -71.130988 ], [ 72.246094, -71.130988 ], [ 72.246094, -71.016960 ], [ 72.421875, -71.016960 ], [ 72.421875, -70.959697 ], [ 72.597656, -70.959697 ], [ 72.597656, -70.844673 ], [ 72.773438, -70.844673 ], [ 72.773438, -70.728979 ], [ 72.949219, -70.728979 ], [ 72.949219, -70.612614 ], [ 73.125000, -70.612614 ], [ 73.125000, -70.436799 ], [ 73.300781, -70.436799 ], [ 73.300781, -70.259452 ], [ 73.476562, -70.259452 ], [ 73.476562, -70.080562 ], [ 73.652344, -70.080562 ], [ 73.652344, -69.960439 ], [ 73.828125, -69.960439 ], [ 73.828125, -69.839622 ], [ 74.003906, -69.839622 ], [ 74.003906, -69.778952 ], [ 74.355469, -69.778952 ], [ 74.355469, -69.718107 ], [ 75.937500, -69.718107 ], [ 75.937500, -69.657086 ], [ 76.289062, -69.657086 ], [ 76.289062, -69.595890 ], [ 76.816406, -69.595890 ], [ 76.816406, -69.534518 ], [ 77.167969, -69.534518 ], [ 77.167969, -69.472969 ], [ 77.519531, -69.472969 ], [ 77.519531, -69.349339 ], [ 77.695312, -69.349339 ], [ 77.695312, -69.224997 ], [ 77.871094, -69.224997 ], [ 77.871094, -69.099940 ], [ 78.046875, -69.099940 ], [ 78.046875, -68.974164 ], [ 78.222656, -68.974164 ], [ 78.222656, -68.784144 ], [ 78.398438, -68.784144 ], [ 78.398438, -68.656555 ], [ 78.574219, -68.656555 ], [ 78.574219, -68.528235 ], [ 78.750000, -68.528235 ], [ 78.750000, -68.463800 ], [ 78.925781, -68.463800 ], [ 78.925781, -68.334376 ], [ 79.101562, -68.334376 ], [ 79.101562, -68.269387 ], [ 79.277344, -68.269387 ], [ 79.277344, -68.204212 ], [ 79.453125, -68.204212 ], [ 79.453125, -68.138852 ], [ 79.804688, -68.138852 ], [ 79.804688, -68.073305 ], [ 79.980469, -68.073305 ], [ 79.980469, -68.007571 ], [ 80.332031, -68.007571 ], [ 80.332031, -67.941650 ], [ 80.683594, -67.941650 ], [ 80.683594, -67.875541 ], [ 81.035156, -67.875541 ], [ 81.035156, -67.742759 ], [ 81.210938, -67.742759 ], [ 81.210938, -67.609221 ], [ 81.386719, -67.609221 ], [ 81.386719, -67.542167 ], [ 81.562500, -67.542167 ], [ 81.562500, -67.474922 ], [ 81.738281, -67.474922 ], [ 81.738281, -67.407487 ], [ 81.914062, -67.407487 ], [ 81.914062, -67.339861 ], [ 82.265625, -67.339861 ], [ 82.265625, -67.272043 ], [ 82.617188, -67.272043 ], [ 82.617188, -67.204032 ], [ 82.968750, -67.204032 ], [ 82.968750, -67.272043 ], [ 84.199219, -67.272043 ], [ 84.199219, -67.204032 ], [ 84.902344, -67.204032 ], [ 84.902344, -67.135829 ], [ 85.429688, -67.135829 ], [ 85.429688, -67.067433 ], [ 85.957031, -67.067433 ], [ 85.957031, -67.135829 ], [ 86.835938, -67.135829 ], [ 86.835938, -67.067433 ], [ 87.011719, -67.067433 ], [ 87.011719, -66.998844 ], [ 87.187500, -66.998844 ], [ 87.187500, -66.930060 ], [ 87.363281, -66.930060 ], [ 87.363281, -66.791909 ], [ 87.539062, -66.791909 ], [ 87.539062, -66.513260 ], [ 87.714844, -66.513260 ], [ 87.714844, -66.302205 ], [ 87.890625, -66.302205 ], [ 87.890625, -66.231457 ], [ 88.066406, -66.231457 ], [ 88.066406, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.583217 ], [ 88.417969, -66.583217 ], [ 88.417969, -66.722541 ], [ 88.593750, -66.722541 ], [ 88.593750, -66.861082 ], [ 88.769531, -66.861082 ], [ 88.769531, -66.998844 ], [ 89.121094, -66.998844 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 90.878906, -67.204032 ], [ 90.878906, -79.335219 ], [ 44.121094, -79.335219 ], [ 44.121094, -68.204212 ], [ 44.296875, -68.204212 ], [ 44.296875, -68.138852 ], [ 44.648438, -68.138852 ], [ 44.648438, -68.073305 ], [ 44.824219, -68.073305 ], [ 44.824219, -68.007571 ], [ 45.000000, -68.007571 ], [ 45.000000, -67.941650 ], [ 45.351562, -67.941650 ], [ 45.351562, -67.875541 ], [ 45.703125, -67.875541 ], [ 45.703125, -67.809245 ], [ 45.878906, -67.809245 ], [ 45.878906, -67.742759 ], [ 46.054688, -67.742759 ], [ 46.054688, -67.676085 ], [ 46.230469, -67.676085 ], [ 46.230469, -67.609221 ], [ 46.406250, -67.609221 ], [ 46.406250, -67.542167 ], [ 46.582031, -67.542167 ], [ 46.582031, -67.609221 ], [ 46.933594, -67.609221 ], [ 46.933594, -67.676085 ], [ 47.460938, -67.676085 ], [ 47.460938, -67.609221 ], [ 47.636719, -67.609221 ], [ 47.636719, -67.542167 ], [ 47.988281, -67.542167 ], [ 47.988281, -67.474922 ], [ 48.164062, -67.474922 ], [ 48.164062, -67.407487 ], [ 48.339844, -67.407487 ], [ 48.339844, -67.339861 ], [ 48.515625, -67.339861 ], [ 48.515625, -67.204032 ], [ 48.691406, -67.204032 ], [ 48.691406, -67.135829 ], [ 48.867188, -67.135829 ], [ 48.867188, -67.067433 ], [ 50.097656, -67.067433 ], [ 50.097656, -66.998844 ], [ 50.449219, -66.998844 ], [ 50.449219, -66.930060 ], [ 50.625000, -66.930060 ], [ 50.625000, -66.722541 ], [ 50.800781, -66.722541 ], [ 50.800781, -66.513260 ], [ 50.976562, -66.513260 ], [ 50.976562, -66.443107 ], [ 51.152344, -66.443107 ], [ 51.152344, -66.372755 ], [ 51.503906, -66.372755 ], [ 51.503906, -66.302205 ], [ 51.679688, -66.302205 ], [ 51.679688, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.160511 ], [ 56.777344, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, -65.802776 ], [ 54.843750, -65.874725 ], [ 55.722656, -65.874725 ], [ 55.722656, -65.946472 ], [ 56.425781, -65.946472 ], [ 56.425781, -66.018018 ], [ 56.601562, -66.018018 ], [ 56.601562, -66.089364 ], [ 56.777344, -66.089364 ], [ 56.777344, -66.160511 ], [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.443107 ], [ 57.304688, -66.443107 ], [ 57.304688, -66.722541 ], [ 57.480469, -66.722541 ], [ 57.480469, -66.861082 ], [ 50.800781, -66.861082 ], [ 50.800781, -66.722541 ], [ 50.976562, -66.722541 ], [ 50.976562, -66.513260 ], [ 51.152344, -66.513260 ], [ 51.152344, -66.443107 ], [ 51.328125, -66.443107 ], [ 51.328125, -66.372755 ], [ 51.679688, -66.372755 ], [ 51.679688, -66.302205 ], [ 51.855469, -66.302205 ], [ 51.855469, -66.231457 ], [ 52.031250, -66.231457 ], [ 52.031250, -66.160511 ], [ 52.382812, -66.160511 ], [ 52.382812, -66.089364 ], [ 52.558594, -66.089364 ], [ 52.558594, -66.018018 ], [ 52.910156, -66.018018 ], [ 52.910156, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.874725 ], [ 54.140625, -65.874725 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ] ] ], [ [ [ 87.539062, -66.861082 ], [ 87.539062, -66.791909 ], [ 87.714844, -66.791909 ], [ 87.714844, -66.583217 ], [ 87.890625, -66.583217 ], [ 87.890625, -66.372755 ], [ 88.066406, -66.372755 ], [ 88.066406, -66.302205 ], [ 88.242188, -66.302205 ], [ 88.242188, -66.443107 ], [ 88.417969, -66.443107 ], [ 88.417969, -66.652977 ], [ 88.593750, -66.652977 ], [ 88.593750, -66.791909 ], [ 88.769531, -66.791909 ], [ 88.769531, -66.861082 ], [ 87.539062, -66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.843750, -65.802776 ], [ 54.843750, -65.874725 ], [ 55.722656, -65.874725 ], [ 55.722656, -65.946472 ], [ 56.250000, -65.946472 ], [ 56.250000, -66.018018 ], [ 56.425781, -66.018018 ], [ 56.425781, -66.089364 ], [ 56.777344, -66.089364 ], [ 56.777344, -66.160511 ], [ 56.953125, -66.160511 ], [ 56.953125, -66.231457 ], [ 57.128906, -66.231457 ], [ 57.128906, -66.722541 ], [ 57.304688, -66.722541 ], [ 57.304688, -66.791909 ], [ 57.480469, -66.791909 ], [ 57.480469, -66.861082 ], [ 50.625000, -66.861082 ], [ 50.625000, -66.722541 ], [ 50.800781, -66.722541 ], [ 50.800781, -66.513260 ], [ 50.976562, -66.513260 ], [ 50.976562, -66.443107 ], [ 51.152344, -66.443107 ], [ 51.152344, -66.372755 ], [ 51.503906, -66.372755 ], [ 51.503906, -66.302205 ], [ 51.679688, -66.302205 ], [ 51.679688, -66.231457 ], [ 51.855469, -66.231457 ], [ 51.855469, -66.160511 ], [ 52.207031, -66.160511 ], [ 52.207031, -66.089364 ], [ 52.558594, -66.089364 ], [ 52.558594, -66.018018 ], [ 52.910156, -66.018018 ], [ 52.910156, -65.946472 ], [ 53.437500, -65.946472 ], [ 53.437500, -65.874725 ], [ 54.140625, -65.874725 ], [ 54.140625, -65.802776 ], [ 54.843750, -65.802776 ] ] ], [ [ [ 87.363281, -66.861082 ], [ 87.363281, -66.791909 ], [ 87.539062, -66.791909 ], [ 87.539062, -66.513260 ], [ 87.714844, -66.513260 ], [ 87.714844, -66.302205 ], [ 87.890625, -66.302205 ], [ 87.890625, -66.231457 ], [ 88.066406, -66.231457 ], [ 88.066406, -66.372755 ], [ 88.242188, -66.372755 ], [ 88.242188, -66.583217 ], [ 88.417969, -66.583217 ], [ 88.417969, -66.791909 ], [ 88.593750, -66.791909 ], [ 88.593750, -66.861082 ], [ 87.363281, -66.861082 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, -48.690960 ], [ 69.082031, -48.806863 ], [ 69.433594, -48.806863 ], [ 69.433594, -48.922499 ], [ 69.960938, -48.922499 ], [ 69.960938, -49.037868 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.496675 ], [ 70.312500, -49.496675 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.724479 ], [ 68.730469, -49.037868 ], [ 68.906250, -49.037868 ], [ 68.906250, -48.690960 ], [ 69.082031, -48.690960 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, -48.690960 ], [ 69.082031, -48.806863 ], [ 69.257812, -48.806863 ], [ 69.257812, -48.922499 ], [ 69.785156, -48.922499 ], [ 69.785156, -49.037868 ], [ 70.488281, -49.037868 ], [ 70.488281, -49.267805 ], [ 70.312500, -49.267805 ], [ 70.312500, -49.496675 ], [ 70.136719, -49.496675 ], [ 70.136719, -49.610710 ], [ 69.609375, -49.610710 ], [ 69.609375, -49.724479 ], [ 68.730469, -49.724479 ], [ 68.730469, -49.496675 ], [ 68.554688, -49.496675 ], [ 68.554688, -49.037868 ], [ 68.730469, -49.037868 ], [ 68.730469, -48.690960 ], [ 69.082031, -48.690960 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.394531, -12.211180 ], [ 49.394531, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -12.726084 ], [ 49.746094, -12.726084 ], [ 49.746094, -13.068777 ], [ 49.921875, -13.068777 ], [ 49.921875, -13.410994 ], [ 50.097656, -13.410994 ], [ 50.097656, -14.264383 ], [ 50.273438, -14.264383 ], [ 50.273438, -15.114553 ], [ 50.449219, -15.114553 ], [ 50.449219, -15.792254 ], [ 50.273438, -15.792254 ], [ 50.273438, -15.961329 ], [ 50.097656, -15.961329 ], [ 50.097656, -15.623037 ], [ 49.746094, -15.623037 ], [ 49.746094, -16.130262 ], [ 49.921875, -16.130262 ], [ 49.921875, -16.636192 ], [ 49.746094, -16.636192 ], [ 49.746094, -16.972741 ], [ 49.570312, -16.972741 ], [ 49.570312, -17.644022 ], [ 49.394531, -17.644022 ], [ 49.394531, -18.312811 ], [ 49.218750, -18.312811 ], [ 49.218750, -18.979026 ], [ 49.042969, -18.979026 ], [ 49.042969, -19.476950 ], [ 48.867188, -19.476950 ], [ 48.867188, -19.808054 ], [ 48.691406, -19.808054 ], [ 48.691406, -20.303418 ], [ 48.515625, -20.303418 ], [ 48.515625, -20.797201 ], [ 48.339844, -20.797201 ], [ 48.339844, -21.453069 ], [ 48.164062, -21.453069 ], [ 48.164062, -22.105999 ], [ 47.988281, -22.105999 ], [ 47.988281, -22.755921 ], [ 47.812500, -22.755921 ], [ 47.812500, -23.079732 ], [ 47.636719, -23.079732 ], [ 47.636719, -23.563987 ], [ 47.460938, -23.563987 ], [ 47.460938, -24.046464 ], [ 47.285156, -24.046464 ], [ 47.285156, -24.686952 ], [ 47.109375, -24.686952 ], [ 47.109375, -25.005973 ], [ 46.757812, -25.005973 ], [ 46.757812, -25.165173 ], [ 46.230469, -25.165173 ], [ 46.230469, -25.324167 ], [ 45.878906, -25.324167 ], [ 45.878906, -25.482951 ], [ 45.527344, -25.482951 ], [ 45.527344, -25.641526 ], [ 45.175781, -25.641526 ], [ 45.175781, -25.482951 ], [ 44.824219, -25.482951 ], [ 44.824219, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.808054 ], [ 44.472656, -19.808054 ], [ 44.472656, -19.311143 ], [ 44.296875, -19.311143 ], [ 44.296875, -18.812718 ], [ 44.121094, -18.812718 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.636192 ], [ 44.472656, -16.636192 ], [ 44.472656, -16.299051 ], [ 44.824219, -16.299051 ], [ 44.824219, -16.130262 ], [ 45.351562, -16.130262 ], [ 45.351562, -15.961329 ], [ 45.878906, -15.961329 ], [ 45.878906, -15.792254 ], [ 46.406250, -15.792254 ], [ 46.406250, -15.623037 ], [ 46.757812, -15.623037 ], [ 46.757812, -15.453680 ], [ 46.933594, -15.453680 ], [ 46.933594, -15.284185 ], [ 47.109375, -15.284185 ], [ 47.109375, -15.114553 ], [ 47.285156, -15.114553 ], [ 47.285156, -14.944785 ], [ 47.460938, -14.944785 ], [ 47.460938, -14.774883 ], [ 47.636719, -14.774883 ], [ 47.636719, -14.604847 ], [ 47.812500, -14.604847 ], [ 47.812500, -14.264383 ], [ 47.988281, -14.264383 ], [ 47.988281, -13.923404 ], [ 47.812500, -13.923404 ], [ 47.812500, -13.581921 ], [ 47.988281, -13.581921 ], [ 47.988281, -13.752725 ], [ 48.515625, -13.752725 ], [ 48.515625, -13.410994 ], [ 48.691406, -13.410994 ], [ 48.691406, -13.239945 ], [ 48.867188, -13.239945 ], [ 48.867188, -12.554564 ], [ 49.042969, -12.554564 ], [ 49.042969, -12.211180 ], [ 49.394531, -12.211180 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -12.211180 ], [ 49.218750, -12.382928 ], [ 49.394531, -12.382928 ], [ 49.394531, -12.554564 ], [ 49.570312, -12.554564 ], [ 49.570312, -12.897489 ], [ 49.746094, -12.897489 ], [ 49.746094, -13.239945 ], [ 49.921875, -13.239945 ], [ 49.921875, -14.093957 ], [ 50.097656, -14.093957 ], [ 50.097656, -14.774883 ], [ 50.273438, -14.774883 ], [ 50.273438, -15.114553 ], [ 50.449219, -15.114553 ], [ 50.449219, -15.453680 ], [ 50.273438, -15.453680 ], [ 50.273438, -15.792254 ], [ 49.921875, -15.792254 ], [ 49.921875, -15.453680 ], [ 49.570312, -15.453680 ], [ 49.570312, -15.961329 ], [ 49.746094, -15.961329 ], [ 49.746094, -16.972741 ], [ 49.394531, -16.972741 ], [ 49.394531, -18.145852 ], [ 49.218750, -18.145852 ], [ 49.218750, -18.812718 ], [ 49.042969, -18.812718 ], [ 49.042969, -19.311143 ], [ 48.867188, -19.311143 ], [ 48.867188, -19.808054 ], [ 48.691406, -19.808054 ], [ 48.691406, -20.303418 ], [ 48.515625, -20.303418 ], [ 48.515625, -20.797201 ], [ 48.339844, -20.797201 ], [ 48.339844, -21.289374 ], [ 48.164062, -21.289374 ], [ 48.164062, -21.616579 ], [ 47.988281, -21.616579 ], [ 47.988281, -22.105999 ], [ 47.812500, -22.105999 ], [ 47.812500, -22.755921 ], [ 47.636719, -22.755921 ], [ 47.636719, -23.402765 ], [ 47.460938, -23.402765 ], [ 47.460938, -24.046464 ], [ 47.285156, -24.046464 ], [ 47.285156, -24.367114 ], [ 47.109375, -24.367114 ], [ 47.109375, -24.686952 ], [ 46.933594, -24.686952 ], [ 46.933594, -25.005973 ], [ 46.582031, -25.005973 ], [ 46.582031, -25.165173 ], [ 46.054688, -25.165173 ], [ 46.054688, -25.324167 ], [ 45.703125, -25.324167 ], [ 45.703125, -25.482951 ], [ 45.000000, -25.482951 ], [ 45.000000, -25.324167 ], [ 44.472656, -25.324167 ], [ 44.472656, -25.165173 ], [ 44.121094, -25.165173 ], [ 44.121094, -20.303418 ], [ 44.296875, -20.303418 ], [ 44.296875, -19.145168 ], [ 44.121094, -19.145168 ], [ 44.121094, -16.972741 ], [ 44.296875, -16.972741 ], [ 44.296875, -16.130262 ], [ 45.175781, -16.130262 ], [ 45.175781, -15.961329 ], [ 45.703125, -15.961329 ], [ 45.703125, -15.792254 ], [ 46.054688, -15.792254 ], [ 46.054688, -15.623037 ], [ 46.406250, -15.623037 ], [ 46.406250, -15.453680 ], [ 46.582031, -15.453680 ], [ 46.582031, -15.284185 ], [ 46.757812, -15.284185 ], [ 46.757812, -15.114553 ], [ 46.933594, -15.114553 ], [ 46.933594, -14.944785 ], [ 47.109375, -14.944785 ], [ 47.109375, -14.774883 ], [ 47.460938, -14.774883 ], [ 47.460938, -14.604847 ], [ 47.636719, -14.604847 ], [ 47.636719, -14.434680 ], [ 47.812500, -14.434680 ], [ 47.812500, -14.093957 ], [ 47.988281, -14.093957 ], [ 47.988281, -13.752725 ], [ 48.339844, -13.752725 ], [ 48.339844, -13.410994 ], [ 48.515625, -13.410994 ], [ 48.515625, -13.239945 ], [ 48.691406, -13.239945 ], [ 48.691406, -12.382928 ], [ 48.867188, -12.382928 ], [ 48.867188, -12.211180 ], [ 49.218750, -12.211180 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 48.339844, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.164062, 41.640078 ], [ 48.164062, 41.508577 ], [ 47.988281, 41.508577 ], [ 47.988281, 41.376809 ], [ 47.812500, 41.376809 ], [ 47.812500, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.376809 ], [ 46.933594, 41.376809 ], [ 46.933594, 41.508577 ], [ 46.757812, 41.508577 ], [ 46.757812, 41.640078 ], [ 48.164062, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.230469, 41.640078 ], [ 46.230469, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.582031, 41.244772 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 41.640078 ], [ 46.230469, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.054688, 41.640078 ], [ 46.054688, 41.508577 ], [ 46.230469, 41.508577 ], [ 46.230469, 41.376809 ], [ 46.406250, 41.376809 ], [ 46.406250, 41.244772 ], [ 46.582031, 41.244772 ], [ 46.582031, 41.112469 ], [ 46.054688, 41.112469 ], [ 46.054688, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.376809 ], [ 44.648438, 41.376809 ], [ 44.648438, 41.244772 ], [ 44.121094, 41.244772 ], [ 44.121094, 41.640078 ], [ 46.054688, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.095963 ], [ 44.296875, 39.095963 ], [ 44.296875, 38.548165 ], [ 44.472656, 38.548165 ], [ 44.472656, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 37.857507 ], [ 44.472656, 37.857507 ], [ 44.472656, 37.579413 ], [ 44.648438, 37.579413 ], [ 44.648438, 37.300275 ], [ 44.824219, 37.300275 ], [ 44.824219, 37.160317 ], [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 39.095963 ] ] ], [ [ [ 44.472656, 39.909736 ], [ 44.648438, 39.909736 ], [ 44.648438, 39.774769 ], [ 44.824219, 39.774769 ], [ 44.824219, 39.639538 ], [ 44.472656, 39.639538 ], [ 44.472656, 39.504041 ], [ 44.121094, 39.504041 ], [ 44.121094, 40.044438 ], [ 44.472656, 40.044438 ], [ 44.472656, 39.909736 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.160317 ], [ 44.296875, 37.160317 ], [ 44.296875, 37.020098 ], [ 44.121094, 37.020098 ], [ 44.121094, 37.857507 ] ] ], [ [ [ 44.121094, 38.959409 ], [ 44.296875, 38.959409 ], [ 44.296875, 38.134557 ], [ 44.121094, 38.134557 ], [ 44.121094, 38.959409 ] ] ], [ [ [ 44.296875, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.639538 ], [ 44.296875, 39.639538 ], [ 44.296875, 39.504041 ], [ 44.121094, 39.504041 ], [ 44.121094, 40.044438 ], [ 44.296875, 40.044438 ], [ 44.296875, 39.909736 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 37.160317 ], [ 44.824219, 36.879621 ], [ 45.000000, 36.879621 ], [ 45.000000, 36.597889 ], [ 45.175781, 36.597889 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 35.317366 ], [ 46.230469, 35.317366 ], [ 46.230469, 34.885931 ], [ 45.878906, 34.885931 ], [ 45.878906, 34.741612 ], [ 45.703125, 34.741612 ], [ 45.703125, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.161818 ], [ 45.351562, 34.161818 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.284620 ], [ 45.878906, 33.284620 ], [ 45.878906, 32.990236 ], [ 46.054688, 32.990236 ], [ 46.054688, 32.842674 ], [ 46.406250, 32.842674 ], [ 46.406250, 32.694866 ], [ 46.757812, 32.694866 ], [ 46.757812, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 32.398516 ], [ 47.285156, 32.398516 ], [ 47.285156, 32.249974 ], [ 47.460938, 32.249974 ], [ 47.460938, 31.952162 ], [ 47.636719, 31.952162 ], [ 47.636719, 31.653381 ], [ 47.812500, 31.653381 ], [ 47.812500, 31.353637 ], [ 47.636719, 31.353637 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.297018 ], [ 48.164062, 30.297018 ], [ 48.164062, 30.145127 ], [ 48.339844, 30.145127 ], [ 48.339844, 29.993002 ], [ 47.285156, 29.993002 ], [ 47.285156, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.535230 ], [ 46.933594, 29.535230 ], [ 46.933594, 29.382175 ], [ 46.757812, 29.382175 ], [ 46.757812, 29.075375 ], [ 45.527344, 29.075375 ], [ 45.527344, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.121094, 29.382175 ], [ 44.121094, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.160317 ], [ 44.824219, 37.160317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.648438, 37.160317 ], [ 44.648438, 37.020098 ], [ 44.824219, 37.020098 ], [ 44.824219, 36.738884 ], [ 45.000000, 36.738884 ], [ 45.000000, 36.456636 ], [ 45.175781, 36.456636 ], [ 45.175781, 36.173357 ], [ 45.351562, 36.173357 ], [ 45.351562, 35.889050 ], [ 45.703125, 35.889050 ], [ 45.703125, 35.746512 ], [ 46.054688, 35.746512 ], [ 46.054688, 35.029996 ], [ 45.703125, 35.029996 ], [ 45.703125, 34.885931 ], [ 45.527344, 34.885931 ], [ 45.527344, 34.452218 ], [ 45.351562, 34.452218 ], [ 45.351562, 33.870416 ], [ 45.527344, 33.870416 ], [ 45.527344, 33.578015 ], [ 45.703125, 33.578015 ], [ 45.703125, 33.431441 ], [ 45.878906, 33.431441 ], [ 45.878906, 33.137551 ], [ 46.054688, 33.137551 ], [ 46.054688, 32.990236 ], [ 46.406250, 32.990236 ], [ 46.406250, 32.842674 ], [ 46.757812, 32.842674 ], [ 46.757812, 32.694866 ], [ 47.109375, 32.694866 ], [ 47.109375, 32.546813 ], [ 47.285156, 32.546813 ], [ 47.285156, 32.398516 ], [ 47.460938, 32.398516 ], [ 47.460938, 32.101190 ], [ 47.636719, 32.101190 ], [ 47.636719, 31.802893 ], [ 47.812500, 31.802893 ], [ 47.812500, 31.353637 ], [ 47.636719, 31.353637 ], [ 47.636719, 31.052934 ], [ 47.988281, 31.052934 ], [ 47.988281, 30.448674 ], [ 48.164062, 30.448674 ], [ 48.164062, 30.297018 ], [ 48.339844, 30.297018 ], [ 48.339844, 29.993002 ], [ 47.460938, 29.993002 ], [ 47.460938, 30.145127 ], [ 47.285156, 30.145127 ], [ 47.285156, 29.993002 ], [ 47.109375, 29.993002 ], [ 47.109375, 29.840644 ], [ 46.933594, 29.840644 ], [ 46.933594, 29.688053 ], [ 46.757812, 29.688053 ], [ 46.757812, 29.382175 ], [ 46.582031, 29.382175 ], [ 46.582031, 29.228890 ], [ 44.472656, 29.228890 ], [ 44.472656, 29.382175 ], [ 44.296875, 29.382175 ], [ 44.296875, 29.535230 ], [ 44.121094, 29.535230 ], [ 44.121094, 37.020098 ], [ 44.296875, 37.020098 ], [ 44.296875, 37.160317 ], [ 44.648438, 37.160317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.296875, 9.102097 ], [ 44.296875, 8.928487 ], [ 44.648438, 8.928487 ], [ 44.648438, 8.754795 ], [ 45.175781, 8.754795 ], [ 45.175781, 8.581021 ], [ 45.703125, 8.581021 ], [ 45.703125, 8.407168 ], [ 46.054688, 8.407168 ], [ 46.054688, 8.233237 ], [ 46.582031, 8.233237 ], [ 46.582031, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 7.885147 ], [ 47.636719, 7.885147 ], [ 47.636719, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.536764 ], [ 47.285156, 7.536764 ], [ 47.285156, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.013668 ], [ 46.933594, 7.013668 ], [ 46.933594, 6.839170 ], [ 46.757812, 6.839170 ], [ 46.757812, 6.664608 ], [ 46.582031, 6.664608 ], [ 46.582031, 6.489983 ], [ 46.406250, 6.489983 ], [ 46.406250, 6.315299 ], [ 46.230469, 6.315299 ], [ 46.230469, 6.140555 ], [ 46.054688, 6.140555 ], [ 46.054688, 5.965754 ], [ 45.878906, 5.965754 ], [ 45.878906, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.441022 ], [ 45.527344, 5.441022 ], [ 45.527344, 5.266008 ], [ 45.351562, 5.266008 ], [ 45.351562, 5.090944 ], [ 45.175781, 5.090944 ], [ 45.175781, 4.915833 ], [ 44.121094, 4.915833 ], [ 44.121094, 9.102097 ], [ 44.296875, 9.102097 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.296875, 9.102097 ], [ 44.296875, 8.928487 ], [ 44.648438, 8.928487 ], [ 44.648438, 8.754795 ], [ 45.175781, 8.754795 ], [ 45.175781, 8.581021 ], [ 45.703125, 8.581021 ], [ 45.703125, 8.407168 ], [ 46.054688, 8.407168 ], [ 46.054688, 8.233237 ], [ 46.582031, 8.233237 ], [ 46.582031, 8.059230 ], [ 47.636719, 8.059230 ], [ 47.636719, 7.885147 ], [ 47.460938, 7.885147 ], [ 47.460938, 7.710992 ], [ 47.285156, 7.710992 ], [ 47.285156, 7.536764 ], [ 47.109375, 7.536764 ], [ 47.109375, 7.362467 ], [ 46.933594, 7.362467 ], [ 46.933594, 7.188101 ], [ 46.757812, 7.188101 ], [ 46.757812, 7.013668 ], [ 46.582031, 7.013668 ], [ 46.582031, 6.839170 ], [ 46.406250, 6.839170 ], [ 46.406250, 6.664608 ], [ 46.230469, 6.664608 ], [ 46.230469, 6.315299 ], [ 46.054688, 6.315299 ], [ 46.054688, 6.140555 ], [ 45.878906, 6.140555 ], [ 45.878906, 5.965754 ], [ 45.703125, 5.965754 ], [ 45.703125, 5.790897 ], [ 45.527344, 5.790897 ], [ 45.527344, 5.615986 ], [ 45.351562, 5.615986 ], [ 45.351562, 5.441022 ], [ 45.175781, 5.441022 ], [ 45.175781, 5.266008 ], [ 45.000000, 5.266008 ], [ 45.000000, 5.090944 ], [ 44.121094, 5.090944 ], [ 44.121094, 9.102097 ], [ 44.296875, 9.102097 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.609375, 41.640078 ], [ 69.609375, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.376809 ], [ 69.082031, 41.376809 ], [ 69.082031, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 40.979898 ], [ 68.730469, 40.979898 ], [ 68.730469, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 66.796875, 41.112469 ], [ 66.796875, 41.376809 ], [ 66.621094, 41.376809 ], [ 66.621094, 41.640078 ], [ 69.609375, 41.640078 ] ] ], [ [ [ 55.898438, 41.640078 ], [ 55.898438, 41.376809 ], [ 55.722656, 41.376809 ], [ 55.722656, 41.244772 ], [ 55.371094, 41.244772 ], [ 55.371094, 41.376809 ], [ 55.195312, 41.376809 ], [ 55.195312, 41.640078 ], [ 55.898438, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.257812, 41.640078 ], [ 69.257812, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 41.244772 ], [ 68.730469, 41.244772 ], [ 68.730469, 40.847060 ], [ 68.554688, 40.847060 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 67.851562, 41.112469 ], [ 67.851562, 41.244772 ], [ 66.621094, 41.244772 ], [ 66.621094, 41.376809 ], [ 66.445312, 41.376809 ], [ 66.445312, 41.640078 ], [ 69.257812, 41.640078 ] ] ], [ [ [ 55.898438, 41.640078 ], [ 55.898438, 41.376809 ], [ 55.195312, 41.376809 ], [ 55.195312, 41.508577 ], [ 55.019531, 41.508577 ], [ 55.019531, 41.640078 ], [ 55.898438, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.488281, 41.640078 ], [ 70.488281, 41.376809 ], [ 70.664062, 41.376809 ], [ 70.664062, 41.244772 ], [ 71.015625, 41.244772 ], [ 71.015625, 41.112469 ], [ 71.542969, 41.112469 ], [ 71.542969, 41.244772 ], [ 72.246094, 41.244772 ], [ 72.246094, 41.112469 ], [ 72.597656, 41.112469 ], [ 72.597656, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 73.125000, 40.847060 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.313043 ], [ 71.894531, 40.313043 ], [ 71.894531, 40.178873 ], [ 70.664062, 40.178873 ], [ 70.664062, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.488281, 40.979898 ], [ 70.488281, 40.847060 ], [ 69.785156, 40.847060 ], [ 69.785156, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 39.909736 ], [ 68.906250, 39.909736 ], [ 68.906250, 39.774769 ], [ 68.730469, 39.774769 ], [ 68.730469, 39.504041 ], [ 68.027344, 39.504041 ], [ 68.027344, 39.639538 ], [ 67.675781, 39.639538 ], [ 67.675781, 39.368279 ], [ 67.500000, 39.368279 ], [ 67.500000, 39.095963 ], [ 67.675781, 39.095963 ], [ 67.675781, 38.959409 ], [ 68.203125, 38.959409 ], [ 68.203125, 38.548165 ], [ 68.378906, 38.548165 ], [ 68.378906, 37.857507 ], [ 68.203125, 37.857507 ], [ 68.203125, 37.579413 ], [ 68.027344, 37.579413 ], [ 68.027344, 37.300275 ], [ 67.851562, 37.300275 ], [ 67.851562, 37.160317 ], [ 67.324219, 37.160317 ], [ 67.324219, 37.300275 ], [ 66.445312, 37.300275 ], [ 66.445312, 37.579413 ], [ 66.621094, 37.579413 ], [ 66.621094, 37.996163 ], [ 66.269531, 37.996163 ], [ 66.269531, 38.134557 ], [ 65.742188, 38.134557 ], [ 65.742188, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 38.410558 ], [ 65.039062, 38.410558 ], [ 65.039062, 38.548165 ], [ 64.687500, 38.548165 ], [ 64.687500, 38.685510 ], [ 64.511719, 38.685510 ], [ 64.511719, 38.822591 ], [ 64.160156, 38.822591 ], [ 64.160156, 38.959409 ], [ 63.984375, 38.959409 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.232253 ], [ 63.457031, 39.232253 ], [ 63.457031, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.504041 ], [ 63.105469, 39.504041 ], [ 63.105469, 39.639538 ], [ 62.753906, 39.639538 ], [ 62.753906, 39.774769 ], [ 62.578125, 39.774769 ], [ 62.578125, 39.909736 ], [ 62.402344, 39.909736 ], [ 62.402344, 40.178873 ], [ 62.226562, 40.178873 ], [ 62.226562, 40.580585 ], [ 62.050781, 40.580585 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.640078 ], [ 66.621094, 41.640078 ], [ 66.621094, 41.376809 ], [ 66.796875, 41.376809 ], [ 66.796875, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.730469, 40.713956 ], [ 68.730469, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.244772 ], [ 69.082031, 41.244772 ], [ 69.082031, 41.376809 ], [ 69.257812, 41.376809 ], [ 69.257812, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.640078 ], [ 70.488281, 41.640078 ] ] ], [ [ [ 56.953125, 41.640078 ], [ 56.953125, 41.508577 ], [ 57.128906, 41.508577 ], [ 57.128906, 41.376809 ], [ 55.898438, 41.376809 ], [ 55.898438, 41.640078 ], [ 56.953125, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.312500, 41.640078 ], [ 70.312500, 41.508577 ], [ 70.488281, 41.508577 ], [ 70.488281, 41.376809 ], [ 70.839844, 41.376809 ], [ 70.839844, 41.244772 ], [ 71.367188, 41.244772 ], [ 71.367188, 41.376809 ], [ 72.070312, 41.376809 ], [ 72.070312, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 41.112469 ], [ 72.773438, 41.112469 ], [ 72.773438, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 72.773438, 40.847060 ], [ 72.773438, 40.713956 ], [ 72.597656, 40.713956 ], [ 72.597656, 40.580585 ], [ 72.246094, 40.580585 ], [ 72.246094, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.313043 ], [ 71.894531, 40.313043 ], [ 71.894531, 40.178873 ], [ 71.191406, 40.178873 ], [ 71.191406, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.446947 ], [ 70.312500, 40.446947 ], [ 70.312500, 40.580585 ], [ 70.488281, 40.580585 ], [ 70.488281, 40.847060 ], [ 70.664062, 40.847060 ], [ 70.664062, 40.979898 ], [ 70.136719, 40.979898 ], [ 70.136719, 40.847060 ], [ 69.257812, 40.847060 ], [ 69.257812, 40.580585 ], [ 69.082031, 40.580585 ], [ 69.082031, 40.313043 ], [ 68.906250, 40.313043 ], [ 68.906250, 40.044438 ], [ 68.730469, 40.044438 ], [ 68.730469, 39.909736 ], [ 68.554688, 39.909736 ], [ 68.554688, 39.639538 ], [ 67.675781, 39.639538 ], [ 67.675781, 39.504041 ], [ 67.500000, 39.504041 ], [ 67.500000, 39.232253 ], [ 67.324219, 39.232253 ], [ 67.324219, 39.095963 ], [ 67.675781, 39.095963 ], [ 67.675781, 38.959409 ], [ 68.027344, 38.959409 ], [ 68.027344, 38.685510 ], [ 68.203125, 38.685510 ], [ 68.203125, 38.410558 ], [ 68.378906, 38.410558 ], [ 68.378906, 38.134557 ], [ 68.203125, 38.134557 ], [ 68.203125, 37.857507 ], [ 68.027344, 37.857507 ], [ 68.027344, 37.579413 ], [ 67.851562, 37.579413 ], [ 67.851562, 37.300275 ], [ 67.675781, 37.300275 ], [ 67.675781, 37.160317 ], [ 67.324219, 37.160317 ], [ 67.324219, 37.300275 ], [ 66.972656, 37.300275 ], [ 66.972656, 37.439974 ], [ 66.445312, 37.439974 ], [ 66.445312, 37.996163 ], [ 66.093750, 37.996163 ], [ 66.093750, 38.134557 ], [ 65.742188, 38.134557 ], [ 65.742188, 38.272689 ], [ 65.390625, 38.272689 ], [ 65.390625, 38.410558 ], [ 65.039062, 38.410558 ], [ 65.039062, 38.548165 ], [ 64.687500, 38.548165 ], [ 64.687500, 38.685510 ], [ 64.511719, 38.685510 ], [ 64.511719, 38.822591 ], [ 64.160156, 38.822591 ], [ 64.160156, 38.959409 ], [ 63.984375, 38.959409 ], [ 63.984375, 39.095963 ], [ 63.632812, 39.095963 ], [ 63.632812, 39.232253 ], [ 63.457031, 39.232253 ], [ 63.457031, 39.368279 ], [ 63.281250, 39.368279 ], [ 63.281250, 39.504041 ], [ 63.105469, 39.504041 ], [ 63.105469, 39.639538 ], [ 62.929688, 39.639538 ], [ 62.929688, 39.774769 ], [ 62.578125, 39.774769 ], [ 62.578125, 39.909736 ], [ 62.402344, 39.909736 ], [ 62.402344, 40.044438 ], [ 62.226562, 40.044438 ], [ 62.226562, 40.313043 ], [ 62.050781, 40.313043 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.699219, 41.112469 ], [ 61.699219, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.376809 ], [ 60.996094, 41.376809 ], [ 60.996094, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.376809 ], [ 59.941406, 41.376809 ], [ 59.941406, 41.640078 ], [ 66.445312, 41.640078 ], [ 66.445312, 41.376809 ], [ 66.621094, 41.376809 ], [ 66.621094, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.847060 ], [ 68.730469, 40.847060 ], [ 68.730469, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.640078 ], [ 70.312500, 41.640078 ] ] ], [ [ [ 56.953125, 41.640078 ], [ 56.953125, 41.376809 ], [ 55.898438, 41.376809 ], [ 55.898438, 41.640078 ], [ 56.953125, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.574219, 41.640078 ], [ 78.574219, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 41.112469 ], [ 76.992188, 41.112469 ], [ 76.992188, 40.979898 ], [ 76.816406, 40.979898 ], [ 76.816406, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.410156, 40.580585 ], [ 75.410156, 40.446947 ], [ 75.058594, 40.446947 ], [ 75.058594, 40.313043 ], [ 74.707031, 40.313043 ], [ 74.707031, 40.178873 ], [ 74.355469, 40.178873 ], [ 74.355469, 40.044438 ], [ 74.003906, 40.044438 ], [ 74.003906, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 39.774769 ], [ 74.003906, 39.774769 ], [ 74.003906, 39.504041 ], [ 73.828125, 39.504041 ], [ 73.828125, 39.368279 ], [ 72.773438, 39.368279 ], [ 72.773438, 39.232253 ], [ 71.367188, 39.232253 ], [ 71.367188, 39.368279 ], [ 71.015625, 39.368279 ], [ 71.015625, 39.504041 ], [ 70.664062, 39.504041 ], [ 70.664062, 39.639538 ], [ 70.136719, 39.639538 ], [ 70.136719, 39.504041 ], [ 69.433594, 39.504041 ], [ 69.433594, 39.774769 ], [ 69.609375, 39.774769 ], [ 69.609375, 40.044438 ], [ 69.960938, 40.044438 ], [ 69.960938, 39.909736 ], [ 70.839844, 39.909736 ], [ 70.839844, 40.044438 ], [ 71.015625, 40.044438 ], [ 71.015625, 40.178873 ], [ 71.894531, 40.178873 ], [ 71.894531, 40.313043 ], [ 72.246094, 40.313043 ], [ 72.246094, 40.446947 ], [ 72.597656, 40.446947 ], [ 72.597656, 40.580585 ], [ 72.773438, 40.580585 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.597656, 40.979898 ], [ 72.597656, 41.112469 ], [ 72.246094, 41.112469 ], [ 72.246094, 41.244772 ], [ 71.542969, 41.244772 ], [ 71.542969, 41.112469 ], [ 71.015625, 41.112469 ], [ 71.015625, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.640078 ], [ 78.574219, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.398438, 41.640078 ], [ 78.398438, 41.508577 ], [ 78.222656, 41.508577 ], [ 78.222656, 41.244772 ], [ 77.519531, 41.244772 ], [ 77.519531, 41.112469 ], [ 76.816406, 41.112469 ], [ 76.816406, 40.847060 ], [ 76.640625, 40.847060 ], [ 76.640625, 40.580585 ], [ 76.464844, 40.580585 ], [ 76.464844, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.234375, 40.580585 ], [ 75.234375, 40.446947 ], [ 74.707031, 40.446947 ], [ 74.707031, 40.313043 ], [ 74.355469, 40.313043 ], [ 74.355469, 40.178873 ], [ 74.179688, 40.178873 ], [ 74.179688, 40.044438 ], [ 73.828125, 40.044438 ], [ 73.828125, 39.909736 ], [ 73.652344, 39.909736 ], [ 73.652344, 39.774769 ], [ 73.828125, 39.774769 ], [ 73.828125, 39.639538 ], [ 73.652344, 39.639538 ], [ 73.652344, 39.504041 ], [ 72.773438, 39.504041 ], [ 72.773438, 39.368279 ], [ 71.367188, 39.368279 ], [ 71.367188, 39.504041 ], [ 70.664062, 39.504041 ], [ 70.664062, 39.639538 ], [ 69.433594, 39.639538 ], [ 69.433594, 40.178873 ], [ 69.785156, 40.178873 ], [ 69.785156, 40.044438 ], [ 70.664062, 40.044438 ], [ 70.664062, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 40.313043 ], [ 71.191406, 40.313043 ], [ 71.191406, 40.178873 ], [ 71.894531, 40.178873 ], [ 71.894531, 40.313043 ], [ 72.070312, 40.313043 ], [ 72.070312, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.773438, 40.979898 ], [ 72.773438, 41.112469 ], [ 72.421875, 41.112469 ], [ 72.421875, 41.244772 ], [ 72.070312, 41.244772 ], [ 72.070312, 41.376809 ], [ 71.367188, 41.376809 ], [ 71.367188, 41.244772 ], [ 70.839844, 41.244772 ], [ 70.839844, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.640078 ], [ 78.398438, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.044438 ], [ 45.703125, 40.044438 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.878906, 39.774769 ], [ 45.878906, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.504041 ], [ 46.406250, 39.504041 ], [ 46.406250, 39.095963 ], [ 46.582031, 39.095963 ], [ 46.582031, 38.685510 ], [ 46.054688, 38.685510 ], [ 46.054688, 38.959409 ], [ 45.878906, 38.959409 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.648438, 39.774769 ], [ 44.648438, 39.909736 ], [ 44.472656, 39.909736 ], [ 44.472656, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 41.112469 ], [ 44.648438, 41.112469 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 41.376809 ], [ 44.824219, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.703125, 40.446947 ], [ 45.703125, 40.313043 ], [ 45.878906, 40.313043 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 39.909736 ], [ 45.527344, 39.909736 ], [ 45.527344, 39.774769 ], [ 45.703125, 39.774769 ], [ 45.703125, 39.639538 ], [ 46.054688, 39.639538 ], [ 46.054688, 39.504041 ], [ 46.406250, 39.504041 ], [ 46.406250, 38.822591 ], [ 46.054688, 38.822591 ], [ 46.054688, 38.959409 ], [ 45.878906, 38.959409 ], [ 45.878906, 39.232253 ], [ 45.703125, 39.232253 ], [ 45.703125, 39.504041 ], [ 45.175781, 39.504041 ], [ 45.175781, 39.639538 ], [ 45.000000, 39.639538 ], [ 45.000000, 39.774769 ], [ 44.472656, 39.774769 ], [ 44.472656, 39.909736 ], [ 44.296875, 39.909736 ], [ 44.296875, 40.044438 ], [ 44.121094, 40.044438 ], [ 44.121094, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.376809 ], [ 44.824219, 41.376809 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.042969, 41.244772 ], [ 49.042969, 41.112469 ], [ 49.218750, 41.112469 ], [ 49.218750, 40.847060 ], [ 49.394531, 40.847060 ], [ 49.394531, 40.580585 ], [ 50.097656, 40.580585 ], [ 50.097656, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.313043 ], [ 50.097656, 40.313043 ], [ 50.097656, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.774769 ], [ 49.394531, 39.774769 ], [ 49.394531, 39.232253 ], [ 49.218750, 39.232253 ], [ 49.218750, 38.959409 ], [ 49.042969, 38.959409 ], [ 49.042969, 38.822591 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.272689 ], [ 48.515625, 38.272689 ], [ 48.515625, 38.410558 ], [ 48.339844, 38.410558 ], [ 48.339844, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 38.685510 ], [ 47.988281, 38.685510 ], [ 47.988281, 38.822591 ], [ 48.164062, 38.822591 ], [ 48.164062, 39.095963 ], [ 48.339844, 39.095963 ], [ 48.339844, 39.232253 ], [ 48.164062, 39.232253 ], [ 48.164062, 39.504041 ], [ 47.636719, 39.504041 ], [ 47.636719, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.232253 ], [ 47.285156, 39.232253 ], [ 47.285156, 39.095963 ], [ 46.933594, 39.095963 ], [ 46.933594, 38.959409 ], [ 46.757812, 38.959409 ], [ 46.757812, 38.822591 ], [ 46.582031, 38.822591 ], [ 46.582031, 39.095963 ], [ 46.406250, 39.095963 ], [ 46.406250, 39.504041 ], [ 46.054688, 39.504041 ], [ 46.054688, 39.639538 ], [ 45.878906, 39.639538 ], [ 45.878906, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.044438 ], [ 45.878906, 40.044438 ], [ 45.878906, 40.178873 ], [ 45.703125, 40.178873 ], [ 45.703125, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.230469, 41.508577 ], [ 46.230469, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.376809 ], [ 47.285156, 41.376809 ], [ 47.285156, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 41.112469 ], [ 47.812500, 41.112469 ], [ 47.812500, 41.244772 ], [ 47.988281, 41.244772 ], [ 47.988281, 41.376809 ], [ 48.164062, 41.376809 ], [ 48.164062, 41.508577 ], [ 48.339844, 41.508577 ], [ 48.339844, 41.640078 ], [ 48.691406, 41.640078 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.959409 ], [ 46.054688, 38.959409 ], [ 46.054688, 38.685510 ], [ 45.703125, 38.685510 ], [ 45.703125, 38.822591 ], [ 45.351562, 38.822591 ], [ 45.351562, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.376809 ], [ 49.042969, 41.376809 ], [ 49.042969, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.979898 ], [ 49.394531, 40.979898 ], [ 49.394531, 40.713956 ], [ 49.570312, 40.713956 ], [ 49.570312, 40.580585 ], [ 49.921875, 40.580585 ], [ 49.921875, 40.446947 ], [ 50.097656, 40.446947 ], [ 50.097656, 40.178873 ], [ 49.570312, 40.178873 ], [ 49.570312, 39.774769 ], [ 49.394531, 39.774769 ], [ 49.394531, 39.232253 ], [ 49.218750, 39.232253 ], [ 49.218750, 38.959409 ], [ 48.867188, 38.959409 ], [ 48.867188, 38.822591 ], [ 48.691406, 38.822591 ], [ 48.691406, 38.548165 ], [ 48.867188, 38.548165 ], [ 48.867188, 38.272689 ], [ 48.339844, 38.272689 ], [ 48.339844, 38.548165 ], [ 48.164062, 38.548165 ], [ 48.164062, 38.685510 ], [ 47.988281, 38.685510 ], [ 47.988281, 38.959409 ], [ 48.164062, 38.959409 ], [ 48.164062, 39.232253 ], [ 48.339844, 39.232253 ], [ 48.339844, 39.368279 ], [ 48.164062, 39.368279 ], [ 48.164062, 39.504041 ], [ 47.988281, 39.504041 ], [ 47.988281, 39.639538 ], [ 47.636719, 39.639538 ], [ 47.636719, 39.504041 ], [ 47.460938, 39.504041 ], [ 47.460938, 39.368279 ], [ 47.285156, 39.368279 ], [ 47.285156, 39.232253 ], [ 46.933594, 39.232253 ], [ 46.933594, 39.095963 ], [ 46.757812, 39.095963 ], [ 46.757812, 38.959409 ], [ 46.582031, 38.959409 ], [ 46.582031, 38.822591 ], [ 46.406250, 38.822591 ], [ 46.406250, 39.504041 ], [ 46.054688, 39.504041 ], [ 46.054688, 39.639538 ], [ 45.703125, 39.639538 ], [ 45.703125, 39.774769 ], [ 45.527344, 39.774769 ], [ 45.527344, 39.909736 ], [ 45.703125, 39.909736 ], [ 45.703125, 40.178873 ], [ 45.878906, 40.178873 ], [ 45.878906, 40.313043 ], [ 45.703125, 40.313043 ], [ 45.703125, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.847060 ], [ 45.351562, 40.979898 ], [ 45.175781, 40.979898 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 44.824219, 41.244772 ], [ 44.824219, 41.376809 ], [ 45.527344, 41.376809 ], [ 45.527344, 41.244772 ], [ 46.054688, 41.244772 ], [ 46.054688, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.376809 ], [ 46.230469, 41.376809 ], [ 46.230469, 41.508577 ], [ 46.054688, 41.508577 ], [ 46.054688, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.640078 ], [ 48.691406, 41.640078 ] ] ], [ [ [ 45.000000, 39.774769 ], [ 45.000000, 39.639538 ], [ 45.175781, 39.639538 ], [ 45.175781, 39.504041 ], [ 45.703125, 39.504041 ], [ 45.703125, 39.232253 ], [ 45.878906, 39.232253 ], [ 45.878906, 38.959409 ], [ 46.054688, 38.959409 ], [ 46.054688, 38.822591 ], [ 45.527344, 38.822591 ], [ 45.527344, 38.959409 ], [ 45.175781, 38.959409 ], [ 45.175781, 39.095963 ], [ 45.000000, 39.095963 ], [ 45.000000, 39.232253 ], [ 44.824219, 39.232253 ], [ 44.824219, 39.504041 ], [ 44.648438, 39.504041 ], [ 44.648438, 39.774769 ], [ 45.000000, 39.774769 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 39.639538 ], [ 44.824219, 39.504041 ], [ 45.000000, 39.504041 ], [ 45.000000, 39.232253 ], [ 45.175781, 39.232253 ], [ 45.175781, 39.095963 ], [ 45.351562, 39.095963 ], [ 45.351562, 38.822591 ], [ 45.703125, 38.822591 ], [ 45.703125, 38.685510 ], [ 46.582031, 38.685510 ], [ 46.582031, 38.822591 ], [ 46.757812, 38.822591 ], [ 46.757812, 38.959409 ], [ 46.933594, 38.959409 ], [ 46.933594, 39.095963 ], [ 47.285156, 39.095963 ], [ 47.285156, 39.232253 ], [ 47.460938, 39.232253 ], [ 47.460938, 39.368279 ], [ 47.636719, 39.368279 ], [ 47.636719, 39.504041 ], [ 48.164062, 39.504041 ], [ 48.164062, 39.232253 ], [ 48.339844, 39.232253 ], [ 48.339844, 39.095963 ], [ 48.164062, 39.095963 ], [ 48.164062, 38.822591 ], [ 47.988281, 38.822591 ], [ 47.988281, 38.685510 ], [ 48.164062, 38.685510 ], [ 48.164062, 38.548165 ], [ 48.339844, 38.548165 ], [ 48.339844, 38.410558 ], [ 48.515625, 38.410558 ], [ 48.515625, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.042969, 37.996163 ], [ 49.042969, 37.718590 ], [ 49.218750, 37.718590 ], [ 49.218750, 37.579413 ], [ 49.570312, 37.579413 ], [ 49.570312, 37.439974 ], [ 50.097656, 37.439974 ], [ 50.097656, 37.300275 ], [ 50.273438, 37.300275 ], [ 50.273438, 37.160317 ], [ 50.449219, 37.160317 ], [ 50.449219, 37.020098 ], [ 50.625000, 37.020098 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.738884 ], [ 52.734375, 36.738884 ], [ 52.734375, 36.879621 ], [ 53.437500, 36.879621 ], [ 53.437500, 37.020098 ], [ 53.964844, 37.020098 ], [ 53.964844, 37.160317 ], [ 54.316406, 37.160317 ], [ 54.316406, 37.300275 ], [ 54.667969, 37.300275 ], [ 54.667969, 37.439974 ], [ 55.019531, 37.439974 ], [ 55.019531, 37.579413 ], [ 55.195312, 37.579413 ], [ 55.195312, 37.718590 ], [ 55.371094, 37.718590 ], [ 55.371094, 37.857507 ], [ 55.546875, 37.857507 ], [ 55.546875, 37.996163 ], [ 56.601562, 37.996163 ], [ 56.601562, 38.134557 ], [ 56.777344, 38.134557 ], [ 56.777344, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 37.857507 ], [ 57.656250, 37.857507 ], [ 57.656250, 37.718590 ], [ 58.007812, 37.718590 ], [ 58.007812, 37.579413 ], [ 58.710938, 37.579413 ], [ 58.710938, 37.439974 ], [ 59.238281, 37.439974 ], [ 59.238281, 37.300275 ], [ 59.414062, 37.300275 ], [ 59.414062, 37.160317 ], [ 59.589844, 37.160317 ], [ 59.589844, 37.020098 ], [ 59.765625, 37.020098 ], [ 59.765625, 36.879621 ], [ 59.941406, 36.879621 ], [ 59.941406, 36.738884 ], [ 60.117188, 36.738884 ], [ 60.117188, 36.597889 ], [ 60.644531, 36.597889 ], [ 60.644531, 36.456636 ], [ 61.171875, 36.456636 ], [ 61.171875, 35.317366 ], [ 60.996094, 35.317366 ], [ 60.996094, 34.741612 ], [ 60.820312, 34.741612 ], [ 60.820312, 34.161818 ], [ 60.644531, 34.161818 ], [ 60.644531, 33.870416 ], [ 60.468750, 33.870416 ], [ 60.468750, 33.724340 ], [ 60.644531, 33.724340 ], [ 60.644531, 33.578015 ], [ 60.996094, 33.578015 ], [ 60.996094, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.284620 ], [ 60.644531, 33.284620 ], [ 60.644531, 32.990236 ], [ 60.468750, 32.990236 ], [ 60.468750, 32.694866 ], [ 60.644531, 32.694866 ], [ 60.644531, 32.398516 ], [ 60.820312, 32.398516 ], [ 60.820312, 31.802893 ], [ 60.996094, 31.802893 ], [ 60.996094, 31.503629 ], [ 61.171875, 31.503629 ], [ 61.171875, 31.353637 ], [ 61.699219, 31.353637 ], [ 61.699219, 30.600094 ], [ 61.523438, 30.600094 ], [ 61.523438, 30.448674 ], [ 61.347656, 30.448674 ], [ 61.347656, 30.297018 ], [ 61.171875, 30.297018 ], [ 61.171875, 29.993002 ], [ 60.996094, 29.993002 ], [ 60.996094, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.228890 ], [ 61.347656, 29.228890 ], [ 61.347656, 29.075375 ], [ 61.523438, 29.075375 ], [ 61.523438, 28.767659 ], [ 61.699219, 28.767659 ], [ 61.699219, 28.613459 ], [ 62.050781, 28.613459 ], [ 62.050781, 28.459033 ], [ 62.402344, 28.459033 ], [ 62.402344, 28.304381 ], [ 62.753906, 28.304381 ], [ 62.753906, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.215556 ], [ 63.281250, 27.215556 ], [ 63.281250, 26.745610 ], [ 63.105469, 26.745610 ], [ 63.105469, 26.588527 ], [ 62.753906, 26.588527 ], [ 62.753906, 26.431228 ], [ 62.226562, 26.431228 ], [ 62.226562, 26.273714 ], [ 61.875000, 26.273714 ], [ 61.875000, 25.958045 ], [ 61.699219, 25.958045 ], [ 61.699219, 25.324167 ], [ 61.523438, 25.324167 ], [ 61.523438, 25.005973 ], [ 60.996094, 25.005973 ], [ 60.996094, 25.165173 ], [ 59.941406, 25.165173 ], [ 59.941406, 25.324167 ], [ 59.238281, 25.324167 ], [ 59.238281, 25.482951 ], [ 58.710938, 25.482951 ], [ 58.710938, 25.641526 ], [ 57.832031, 25.641526 ], [ 57.832031, 25.799891 ], [ 57.480469, 25.799891 ], [ 57.480469, 25.958045 ], [ 57.304688, 25.958045 ], [ 57.304688, 26.273714 ], [ 57.128906, 26.273714 ], [ 57.128906, 26.588527 ], [ 56.953125, 26.588527 ], [ 56.953125, 26.902477 ], [ 56.777344, 26.902477 ], [ 56.777344, 27.059126 ], [ 56.074219, 27.059126 ], [ 56.074219, 26.902477 ], [ 55.722656, 26.902477 ], [ 55.722656, 26.745610 ], [ 55.371094, 26.745610 ], [ 55.371094, 26.588527 ], [ 55.019531, 26.588527 ], [ 55.019531, 26.431228 ], [ 54.316406, 26.431228 ], [ 54.316406, 26.588527 ], [ 53.613281, 26.588527 ], [ 53.613281, 26.745610 ], [ 53.261719, 26.745610 ], [ 53.261719, 26.902477 ], [ 53.085938, 26.902477 ], [ 53.085938, 27.059126 ], [ 52.910156, 27.059126 ], [ 52.910156, 27.215556 ], [ 52.734375, 27.215556 ], [ 52.734375, 27.371767 ], [ 52.558594, 27.371767 ], [ 52.558594, 27.527758 ], [ 52.207031, 27.527758 ], [ 52.207031, 27.683528 ], [ 51.679688, 27.683528 ], [ 51.679688, 27.839076 ], [ 51.328125, 27.839076 ], [ 51.328125, 28.149503 ], [ 51.152344, 28.149503 ], [ 51.152344, 28.304381 ], [ 50.976562, 28.304381 ], [ 50.976562, 28.613459 ], [ 50.800781, 28.613459 ], [ 50.800781, 28.921631 ], [ 50.625000, 28.921631 ], [ 50.625000, 29.228890 ], [ 50.449219, 29.228890 ], [ 50.449219, 29.535230 ], [ 50.273438, 29.535230 ], [ 50.273438, 29.840644 ], [ 50.097656, 29.840644 ], [ 50.097656, 30.145127 ], [ 49.921875, 30.145127 ], [ 49.921875, 29.993002 ], [ 49.218750, 29.993002 ], [ 49.218750, 30.145127 ], [ 48.691406, 30.145127 ], [ 48.691406, 29.993002 ], [ 48.339844, 29.993002 ], [ 48.339844, 30.145127 ], [ 48.164062, 30.145127 ], [ 48.164062, 30.297018 ], [ 47.988281, 30.297018 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.636719, 31.353637 ], [ 47.812500, 31.353637 ], [ 47.812500, 31.653381 ], [ 47.636719, 31.653381 ], [ 47.636719, 31.952162 ], [ 47.460938, 31.952162 ], [ 47.460938, 32.249974 ], [ 47.285156, 32.249974 ], [ 47.285156, 32.398516 ], [ 47.109375, 32.398516 ], [ 47.109375, 32.546813 ], [ 46.757812, 32.546813 ], [ 46.757812, 32.694866 ], [ 46.406250, 32.694866 ], [ 46.406250, 32.842674 ], [ 46.054688, 32.842674 ], [ 46.054688, 32.990236 ], [ 45.878906, 32.990236 ], [ 45.878906, 33.284620 ], [ 45.703125, 33.284620 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.161818 ], [ 45.527344, 34.161818 ], [ 45.527344, 34.452218 ], [ 45.703125, 34.452218 ], [ 45.703125, 34.741612 ], [ 45.878906, 34.741612 ], [ 45.878906, 34.885931 ], [ 46.230469, 34.885931 ], [ 46.230469, 35.317366 ], [ 46.054688, 35.317366 ], [ 46.054688, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.597889 ], [ 45.000000, 36.597889 ], [ 45.000000, 36.879621 ], [ 44.824219, 36.879621 ], [ 44.824219, 37.300275 ], [ 44.648438, 37.300275 ], [ 44.648438, 37.579413 ], [ 44.472656, 37.579413 ], [ 44.472656, 37.857507 ], [ 44.296875, 37.857507 ], [ 44.296875, 38.134557 ], [ 44.472656, 38.134557 ], [ 44.472656, 38.548165 ], [ 44.296875, 38.548165 ], [ 44.296875, 39.095963 ], [ 44.121094, 39.095963 ], [ 44.121094, 39.504041 ], [ 44.472656, 39.504041 ], [ 44.472656, 39.639538 ], [ 44.824219, 39.639538 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.988281, 39.639538 ], [ 47.988281, 39.504041 ], [ 48.164062, 39.504041 ], [ 48.164062, 39.368279 ], [ 48.339844, 39.368279 ], [ 48.339844, 39.232253 ], [ 48.164062, 39.232253 ], [ 48.164062, 38.959409 ], [ 47.988281, 38.959409 ], [ 47.988281, 38.685510 ], [ 48.164062, 38.685510 ], [ 48.164062, 38.548165 ], [ 48.339844, 38.548165 ], [ 48.339844, 38.272689 ], [ 48.867188, 38.272689 ], [ 48.867188, 37.996163 ], [ 49.042969, 37.996163 ], [ 49.042969, 37.718590 ], [ 49.218750, 37.718590 ], [ 49.218750, 37.579413 ], [ 49.746094, 37.579413 ], [ 49.746094, 37.439974 ], [ 50.097656, 37.439974 ], [ 50.097656, 37.300275 ], [ 50.273438, 37.300275 ], [ 50.273438, 37.160317 ], [ 50.449219, 37.160317 ], [ 50.449219, 37.020098 ], [ 50.625000, 37.020098 ], [ 50.625000, 36.879621 ], [ 51.328125, 36.879621 ], [ 51.328125, 36.738884 ], [ 52.734375, 36.738884 ], [ 52.734375, 36.879621 ], [ 53.437500, 36.879621 ], [ 53.437500, 37.020098 ], [ 53.789062, 37.020098 ], [ 53.789062, 37.300275 ], [ 54.316406, 37.300275 ], [ 54.316406, 37.439974 ], [ 54.843750, 37.439974 ], [ 54.843750, 37.579413 ], [ 55.019531, 37.579413 ], [ 55.019531, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.857507 ], [ 55.371094, 37.857507 ], [ 55.371094, 37.996163 ], [ 56.425781, 37.996163 ], [ 56.425781, 38.134557 ], [ 57.304688, 38.134557 ], [ 57.304688, 37.996163 ], [ 57.656250, 37.996163 ], [ 57.656250, 37.857507 ], [ 57.832031, 37.857507 ], [ 57.832031, 37.718590 ], [ 58.183594, 37.718590 ], [ 58.183594, 37.579413 ], [ 58.535156, 37.579413 ], [ 58.535156, 37.439974 ], [ 59.062500, 37.439974 ], [ 59.062500, 37.300275 ], [ 59.238281, 37.300275 ], [ 59.238281, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 37.020098 ], [ 59.765625, 37.020098 ], [ 59.765625, 36.879621 ], [ 59.941406, 36.879621 ], [ 59.941406, 36.738884 ], [ 60.117188, 36.738884 ], [ 60.117188, 36.597889 ], [ 60.996094, 36.597889 ], [ 60.996094, 36.173357 ], [ 61.171875, 36.173357 ], [ 61.171875, 35.460670 ], [ 60.996094, 35.460670 ], [ 60.996094, 35.029996 ], [ 60.820312, 35.029996 ], [ 60.820312, 34.597042 ], [ 60.644531, 34.597042 ], [ 60.644531, 34.016242 ], [ 60.468750, 34.016242 ], [ 60.468750, 33.578015 ], [ 60.820312, 33.578015 ], [ 60.820312, 33.431441 ], [ 60.644531, 33.431441 ], [ 60.644531, 33.137551 ], [ 60.468750, 33.137551 ], [ 60.468750, 32.694866 ], [ 60.644531, 32.694866 ], [ 60.644531, 32.398516 ], [ 60.820312, 32.398516 ], [ 60.820312, 31.653381 ], [ 61.171875, 31.653381 ], [ 61.171875, 31.503629 ], [ 61.699219, 31.503629 ], [ 61.699219, 30.600094 ], [ 61.523438, 30.600094 ], [ 61.523438, 30.448674 ], [ 61.347656, 30.448674 ], [ 61.347656, 30.297018 ], [ 61.171875, 30.297018 ], [ 61.171875, 29.993002 ], [ 60.996094, 29.993002 ], [ 60.996094, 29.840644 ], [ 60.820312, 29.840644 ], [ 60.820312, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.535230 ], [ 61.171875, 29.535230 ], [ 61.171875, 29.382175 ], [ 61.347656, 29.382175 ], [ 61.347656, 29.228890 ], [ 61.523438, 29.228890 ], [ 61.523438, 28.921631 ], [ 61.699219, 28.921631 ], [ 61.699219, 28.613459 ], [ 62.050781, 28.613459 ], [ 62.050781, 28.459033 ], [ 62.402344, 28.459033 ], [ 62.402344, 28.304381 ], [ 62.578125, 28.304381 ], [ 62.578125, 27.839076 ], [ 62.753906, 27.839076 ], [ 62.753906, 27.371767 ], [ 62.929688, 27.371767 ], [ 62.929688, 27.215556 ], [ 63.105469, 27.215556 ], [ 63.105469, 27.059126 ], [ 63.281250, 27.059126 ], [ 63.281250, 26.745610 ], [ 62.929688, 26.745610 ], [ 62.929688, 26.588527 ], [ 62.578125, 26.588527 ], [ 62.578125, 26.431228 ], [ 62.226562, 26.431228 ], [ 62.226562, 26.273714 ], [ 61.875000, 26.273714 ], [ 61.875000, 25.958045 ], [ 61.699219, 25.958045 ], [ 61.699219, 25.641526 ], [ 61.523438, 25.641526 ], [ 61.523438, 25.324167 ], [ 61.347656, 25.324167 ], [ 61.347656, 25.165173 ], [ 60.820312, 25.165173 ], [ 60.820312, 25.324167 ], [ 59.941406, 25.324167 ], [ 59.941406, 25.482951 ], [ 58.886719, 25.482951 ], [ 58.886719, 25.641526 ], [ 57.656250, 25.641526 ], [ 57.656250, 25.799891 ], [ 57.304688, 25.799891 ], [ 57.304688, 26.115986 ], [ 57.128906, 26.115986 ], [ 57.128906, 26.745610 ], [ 56.953125, 26.745610 ], [ 56.953125, 27.059126 ], [ 56.601562, 27.059126 ], [ 56.601562, 27.215556 ], [ 56.250000, 27.215556 ], [ 56.250000, 27.059126 ], [ 55.722656, 27.059126 ], [ 55.722656, 26.902477 ], [ 55.371094, 26.902477 ], [ 55.371094, 26.745610 ], [ 55.019531, 26.745610 ], [ 55.019531, 26.588527 ], [ 54.316406, 26.588527 ], [ 54.316406, 26.745610 ], [ 53.613281, 26.745610 ], [ 53.613281, 26.902477 ], [ 53.261719, 26.902477 ], [ 53.261719, 27.059126 ], [ 53.085938, 27.059126 ], [ 53.085938, 27.215556 ], [ 52.734375, 27.215556 ], [ 52.734375, 27.371767 ], [ 52.558594, 27.371767 ], [ 52.558594, 27.527758 ], [ 52.382812, 27.527758 ], [ 52.382812, 27.683528 ], [ 52.031250, 27.683528 ], [ 52.031250, 27.839076 ], [ 51.679688, 27.839076 ], [ 51.679688, 27.994401 ], [ 51.328125, 27.994401 ], [ 51.328125, 28.304381 ], [ 51.152344, 28.304381 ], [ 51.152344, 28.459033 ], [ 50.976562, 28.459033 ], [ 50.976562, 28.767659 ], [ 50.800781, 28.767659 ], [ 50.800781, 29.075375 ], [ 50.625000, 29.075375 ], [ 50.625000, 29.382175 ], [ 50.449219, 29.382175 ], [ 50.449219, 29.688053 ], [ 50.273438, 29.688053 ], [ 50.273438, 29.993002 ], [ 50.097656, 29.993002 ], [ 50.097656, 30.145127 ], [ 49.746094, 30.145127 ], [ 49.746094, 29.993002 ], [ 49.394531, 29.993002 ], [ 49.394531, 30.145127 ], [ 49.042969, 30.145127 ], [ 49.042969, 30.297018 ], [ 48.691406, 30.297018 ], [ 48.691406, 29.993002 ], [ 48.339844, 29.993002 ], [ 48.339844, 30.297018 ], [ 48.164062, 30.297018 ], [ 48.164062, 30.448674 ], [ 47.988281, 30.448674 ], [ 47.988281, 31.052934 ], [ 47.636719, 31.052934 ], [ 47.636719, 31.353637 ], [ 47.812500, 31.353637 ], [ 47.812500, 31.802893 ], [ 47.636719, 31.802893 ], [ 47.636719, 32.101190 ], [ 47.460938, 32.101190 ], [ 47.460938, 32.398516 ], [ 47.285156, 32.398516 ], [ 47.285156, 32.546813 ], [ 47.109375, 32.546813 ], [ 47.109375, 32.694866 ], [ 46.757812, 32.694866 ], [ 46.757812, 32.842674 ], [ 46.406250, 32.842674 ], [ 46.406250, 32.990236 ], [ 46.054688, 32.990236 ], [ 46.054688, 33.137551 ], [ 45.878906, 33.137551 ], [ 45.878906, 33.431441 ], [ 45.703125, 33.431441 ], [ 45.703125, 33.578015 ], [ 45.527344, 33.578015 ], [ 45.527344, 33.870416 ], [ 45.351562, 33.870416 ], [ 45.351562, 34.452218 ], [ 45.527344, 34.452218 ], [ 45.527344, 34.885931 ], [ 45.703125, 34.885931 ], [ 45.703125, 35.029996 ], [ 46.054688, 35.029996 ], [ 46.054688, 35.746512 ], [ 45.703125, 35.746512 ], [ 45.703125, 35.889050 ], [ 45.351562, 35.889050 ], [ 45.351562, 36.173357 ], [ 45.175781, 36.173357 ], [ 45.175781, 36.456636 ], [ 45.000000, 36.456636 ], [ 45.000000, 36.738884 ], [ 44.824219, 36.738884 ], [ 44.824219, 37.020098 ], [ 44.648438, 37.020098 ], [ 44.648438, 37.300275 ], [ 44.472656, 37.300275 ], [ 44.472656, 37.579413 ], [ 44.296875, 37.579413 ], [ 44.296875, 37.857507 ], [ 44.121094, 37.857507 ], [ 44.121094, 38.134557 ], [ 44.296875, 38.134557 ], [ 44.296875, 38.959409 ], [ 44.121094, 38.959409 ], [ 44.121094, 39.504041 ], [ 44.296875, 39.504041 ], [ 44.296875, 39.639538 ], [ 44.648438, 39.639538 ], [ 44.648438, 39.504041 ], [ 44.824219, 39.504041 ], [ 44.824219, 39.232253 ], [ 45.000000, 39.232253 ], [ 45.000000, 39.095963 ], [ 45.175781, 39.095963 ], [ 45.175781, 38.959409 ], [ 45.527344, 38.959409 ], [ 45.527344, 38.822591 ], [ 46.582031, 38.822591 ], [ 46.582031, 38.959409 ], [ 46.757812, 38.959409 ], [ 46.757812, 39.095963 ], [ 46.933594, 39.095963 ], [ 46.933594, 39.232253 ], [ 47.285156, 39.232253 ], [ 47.285156, 39.368279 ], [ 47.460938, 39.368279 ], [ 47.460938, 39.504041 ], [ 47.636719, 39.504041 ], [ 47.636719, 39.639538 ], [ 47.988281, 39.639538 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.988281, 29.993002 ], [ 47.988281, 29.688053 ], [ 48.164062, 29.688053 ], [ 48.164062, 28.921631 ], [ 48.339844, 28.921631 ], [ 48.339844, 28.613459 ], [ 48.164062, 28.613459 ], [ 48.164062, 28.459033 ], [ 47.636719, 28.459033 ], [ 47.636719, 28.767659 ], [ 47.460938, 28.767659 ], [ 47.460938, 29.075375 ], [ 46.757812, 29.075375 ], [ 46.757812, 29.382175 ], [ 46.933594, 29.382175 ], [ 46.933594, 29.535230 ], [ 47.109375, 29.535230 ], [ 47.109375, 29.840644 ], [ 47.285156, 29.840644 ], [ 47.285156, 29.993002 ], [ 47.988281, 29.993002 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.460938, 30.145127 ], [ 47.460938, 29.993002 ], [ 47.812500, 29.993002 ], [ 47.812500, 29.840644 ], [ 47.988281, 29.840644 ], [ 47.988281, 29.535230 ], [ 48.164062, 29.535230 ], [ 48.164062, 29.382175 ], [ 47.988281, 29.382175 ], [ 47.988281, 29.075375 ], [ 48.164062, 29.075375 ], [ 48.164062, 28.767659 ], [ 48.339844, 28.767659 ], [ 48.339844, 28.613459 ], [ 47.636719, 28.613459 ], [ 47.636719, 28.767659 ], [ 47.460938, 28.767659 ], [ 47.460938, 29.075375 ], [ 46.757812, 29.075375 ], [ 46.757812, 29.228890 ], [ 46.582031, 29.228890 ], [ 46.582031, 29.382175 ], [ 46.757812, 29.382175 ], [ 46.757812, 29.688053 ], [ 46.933594, 29.688053 ], [ 46.933594, 29.840644 ], [ 47.109375, 29.840644 ], [ 47.109375, 29.993002 ], [ 47.285156, 29.993002 ], [ 47.285156, 30.145127 ], [ 47.460938, 30.145127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 45.527344, 29.228890 ], [ 45.527344, 29.075375 ], [ 47.460938, 29.075375 ], [ 47.460938, 28.767659 ], [ 47.636719, 28.767659 ], [ 47.636719, 28.459033 ], [ 48.164062, 28.459033 ], [ 48.164062, 28.613459 ], [ 48.339844, 28.613459 ], [ 48.339844, 28.459033 ], [ 48.515625, 28.459033 ], [ 48.515625, 28.149503 ], [ 48.691406, 28.149503 ], [ 48.691406, 27.839076 ], [ 48.867188, 27.839076 ], [ 48.867188, 27.527758 ], [ 49.218750, 27.527758 ], [ 49.218750, 27.215556 ], [ 49.394531, 27.215556 ], [ 49.394531, 26.902477 ], [ 49.746094, 26.902477 ], [ 49.746094, 26.745610 ], [ 50.097656, 26.745610 ], [ 50.097656, 26.431228 ], [ 50.273438, 26.431228 ], [ 50.273438, 26.115986 ], [ 50.097656, 26.115986 ], [ 50.097656, 25.799891 ], [ 50.273438, 25.799891 ], [ 50.273438, 25.482951 ], [ 50.449219, 25.482951 ], [ 50.449219, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.846565 ], [ 50.800781, 24.846565 ], [ 50.800781, 24.527135 ], [ 51.328125, 24.527135 ], [ 51.328125, 24.367114 ], [ 51.503906, 24.367114 ], [ 51.503906, 24.046464 ], [ 51.679688, 24.046464 ], [ 51.679688, 23.725012 ], [ 51.855469, 23.725012 ], [ 51.855469, 23.241346 ], [ 52.031250, 23.241346 ], [ 52.031250, 23.079732 ], [ 52.382812, 23.079732 ], [ 52.382812, 22.917923 ], [ 53.085938, 22.917923 ], [ 53.085938, 22.755921 ], [ 53.789062, 22.755921 ], [ 53.789062, 22.593726 ], [ 54.492188, 22.593726 ], [ 54.492188, 22.431340 ], [ 55.019531, 22.431340 ], [ 55.019531, 22.593726 ], [ 55.371094, 22.593726 ], [ 55.371094, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.943046 ], [ 55.722656, 21.943046 ], [ 55.722656, 21.616579 ], [ 55.546875, 21.616579 ], [ 55.546875, 21.125498 ], [ 55.371094, 21.125498 ], [ 55.371094, 20.632784 ], [ 55.195312, 20.632784 ], [ 55.195312, 20.138470 ], [ 55.019531, 20.138470 ], [ 55.019531, 19.973349 ], [ 54.843750, 19.973349 ], [ 54.843750, 19.808054 ], [ 54.316406, 19.808054 ], [ 54.316406, 19.642588 ], [ 53.789062, 19.642588 ], [ 53.789062, 19.476950 ], [ 53.437500, 19.476950 ], [ 53.437500, 19.311143 ], [ 52.910156, 19.311143 ], [ 52.910156, 19.145168 ], [ 52.382812, 19.145168 ], [ 52.382812, 18.979026 ], [ 51.328125, 18.979026 ], [ 51.328125, 18.812718 ], [ 49.921875, 18.812718 ], [ 49.921875, 18.646245 ], [ 49.042969, 18.646245 ], [ 49.042969, 18.479609 ], [ 48.691406, 18.479609 ], [ 48.691406, 18.312811 ], [ 48.339844, 18.312811 ], [ 48.339844, 18.145852 ], [ 48.164062, 18.145852 ], [ 48.164062, 17.978733 ], [ 47.988281, 17.978733 ], [ 47.988281, 17.644022 ], [ 47.812500, 17.644022 ], [ 47.812500, 17.476432 ], [ 47.636719, 17.476432 ], [ 47.636719, 17.140790 ], [ 47.285156, 17.140790 ], [ 47.285156, 16.972741 ], [ 46.933594, 16.972741 ], [ 46.933594, 17.140790 ], [ 46.757812, 17.140790 ], [ 46.757812, 17.308688 ], [ 45.175781, 17.308688 ], [ 45.175781, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 29.382175 ], [ 44.472656, 29.382175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.296875, 29.535230 ], [ 44.296875, 29.382175 ], [ 44.472656, 29.382175 ], [ 44.472656, 29.228890 ], [ 46.757812, 29.228890 ], [ 46.757812, 29.075375 ], [ 47.460938, 29.075375 ], [ 47.460938, 28.767659 ], [ 47.636719, 28.767659 ], [ 47.636719, 28.613459 ], [ 48.339844, 28.613459 ], [ 48.339844, 28.304381 ], [ 48.515625, 28.304381 ], [ 48.515625, 27.994401 ], [ 48.691406, 27.994401 ], [ 48.691406, 27.683528 ], [ 49.042969, 27.683528 ], [ 49.042969, 27.527758 ], [ 49.218750, 27.527758 ], [ 49.218750, 27.371767 ], [ 49.394531, 27.371767 ], [ 49.394531, 27.059126 ], [ 49.570312, 27.059126 ], [ 49.570312, 26.902477 ], [ 49.921875, 26.902477 ], [ 49.921875, 26.745610 ], [ 50.097656, 26.745610 ], [ 50.097656, 25.482951 ], [ 50.449219, 25.482951 ], [ 50.449219, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 24.846565 ], [ 50.800781, 24.846565 ], [ 50.800781, 24.686952 ], [ 51.328125, 24.686952 ], [ 51.328125, 24.527135 ], [ 51.503906, 24.527135 ], [ 51.503906, 23.725012 ], [ 51.679688, 23.725012 ], [ 51.679688, 23.241346 ], [ 51.855469, 23.241346 ], [ 51.855469, 23.079732 ], [ 52.207031, 23.079732 ], [ 52.207031, 22.917923 ], [ 53.261719, 22.917923 ], [ 53.261719, 22.755921 ], [ 54.316406, 22.755921 ], [ 54.316406, 22.593726 ], [ 55.371094, 22.593726 ], [ 55.371094, 22.268764 ], [ 55.546875, 22.268764 ], [ 55.546875, 21.779905 ], [ 55.371094, 21.779905 ], [ 55.371094, 21.289374 ], [ 55.195312, 21.289374 ], [ 55.195312, 20.797201 ], [ 55.019531, 20.797201 ], [ 55.019531, 20.303418 ], [ 54.843750, 20.303418 ], [ 54.843750, 20.138470 ], [ 54.667969, 20.138470 ], [ 54.667969, 19.973349 ], [ 54.140625, 19.973349 ], [ 54.140625, 19.808054 ], [ 53.613281, 19.808054 ], [ 53.613281, 19.642588 ], [ 53.261719, 19.642588 ], [ 53.261719, 19.476950 ], [ 52.734375, 19.476950 ], [ 52.734375, 19.311143 ], [ 52.207031, 19.311143 ], [ 52.207031, 19.145168 ], [ 51.503906, 19.145168 ], [ 51.503906, 18.979026 ], [ 50.625000, 18.979026 ], [ 50.625000, 18.812718 ], [ 49.570312, 18.812718 ], [ 49.570312, 18.646245 ], [ 48.867188, 18.646245 ], [ 48.867188, 18.479609 ], [ 48.515625, 18.479609 ], [ 48.515625, 18.312811 ], [ 48.164062, 18.312811 ], [ 48.164062, 18.145852 ], [ 47.988281, 18.145852 ], [ 47.988281, 17.811456 ], [ 47.812500, 17.811456 ], [ 47.812500, 17.476432 ], [ 47.636719, 17.476432 ], [ 47.636719, 17.140790 ], [ 47.285156, 17.140790 ], [ 47.285156, 16.972741 ], [ 46.757812, 16.972741 ], [ 46.757812, 17.140790 ], [ 46.582031, 17.140790 ], [ 46.582031, 17.308688 ], [ 45.703125, 17.308688 ], [ 45.703125, 17.476432 ], [ 44.121094, 17.476432 ], [ 44.121094, 29.535230 ], [ 44.296875, 29.535230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.503906, 25.958045 ], [ 51.503906, 25.482951 ], [ 51.679688, 25.482951 ], [ 51.679688, 25.005973 ], [ 51.503906, 25.005973 ], [ 51.503906, 24.686952 ], [ 51.328125, 24.686952 ], [ 51.328125, 24.527135 ], [ 50.800781, 24.527135 ], [ 50.800781, 25.641526 ], [ 50.976562, 25.641526 ], [ 50.976562, 25.958045 ], [ 51.503906, 25.958045 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 26.115986 ], [ 51.152344, 25.958045 ], [ 51.328125, 25.958045 ], [ 51.328125, 25.799891 ], [ 51.503906, 25.799891 ], [ 51.503906, 25.005973 ], [ 51.328125, 25.005973 ], [ 51.328125, 24.686952 ], [ 50.800781, 24.686952 ], [ 50.800781, 25.165173 ], [ 50.625000, 25.165173 ], [ 50.625000, 25.641526 ], [ 50.800781, 25.641526 ], [ 50.800781, 25.958045 ], [ 50.976562, 25.958045 ], [ 50.976562, 26.115986 ], [ 51.152344, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 25.958045 ], [ 56.074219, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 25.165173 ], [ 56.425781, 25.165173 ], [ 56.425781, 24.846565 ], [ 55.898438, 24.846565 ], [ 55.898438, 24.527135 ], [ 55.722656, 24.527135 ], [ 55.722656, 24.206890 ], [ 55.898438, 24.206890 ], [ 55.898438, 24.046464 ], [ 55.722656, 24.046464 ], [ 55.722656, 23.885838 ], [ 55.546875, 23.885838 ], [ 55.546875, 23.402765 ], [ 55.371094, 23.402765 ], [ 55.371094, 23.079732 ], [ 55.195312, 23.079732 ], [ 55.195312, 22.593726 ], [ 55.019531, 22.593726 ], [ 55.019531, 22.431340 ], [ 54.492188, 22.431340 ], [ 54.492188, 22.593726 ], [ 53.789062, 22.593726 ], [ 53.789062, 22.755921 ], [ 53.085938, 22.755921 ], [ 53.085938, 22.917923 ], [ 52.382812, 22.917923 ], [ 52.382812, 23.079732 ], [ 52.031250, 23.079732 ], [ 52.031250, 23.241346 ], [ 51.855469, 23.241346 ], [ 51.855469, 23.725012 ], [ 51.679688, 23.725012 ], [ 51.679688, 24.046464 ], [ 51.503906, 24.046464 ], [ 51.503906, 24.206890 ], [ 51.855469, 24.206890 ], [ 51.855469, 24.046464 ], [ 52.382812, 24.046464 ], [ 52.382812, 24.206890 ], [ 53.613281, 24.206890 ], [ 53.613281, 24.046464 ], [ 54.140625, 24.046464 ], [ 54.140625, 24.206890 ], [ 54.316406, 24.206890 ], [ 54.316406, 24.527135 ], [ 54.492188, 24.527135 ], [ 54.492188, 24.686952 ], [ 54.667969, 24.686952 ], [ 54.667969, 24.846565 ], [ 54.843750, 24.846565 ], [ 54.843750, 25.005973 ], [ 55.019531, 25.005973 ], [ 55.019531, 25.165173 ], [ 55.195312, 25.165173 ], [ 55.195312, 25.324167 ], [ 55.371094, 25.324167 ], [ 55.371094, 25.482951 ], [ 55.546875, 25.482951 ], [ 55.546875, 25.641526 ], [ 55.722656, 25.641526 ], [ 55.722656, 25.799891 ], [ 55.898438, 25.799891 ], [ 55.898438, 25.958045 ], [ 56.074219, 25.958045 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.074219, 25.958045 ], [ 56.074219, 25.799891 ], [ 56.250000, 25.799891 ], [ 56.250000, 25.005973 ], [ 55.722656, 25.005973 ], [ 55.722656, 24.046464 ], [ 55.371094, 24.046464 ], [ 55.371094, 23.402765 ], [ 55.195312, 23.402765 ], [ 55.195312, 22.593726 ], [ 54.316406, 22.593726 ], [ 54.316406, 22.755921 ], [ 53.261719, 22.755921 ], [ 53.261719, 22.917923 ], [ 52.207031, 22.917923 ], [ 52.207031, 23.079732 ], [ 51.855469, 23.079732 ], [ 51.855469, 23.241346 ], [ 51.679688, 23.241346 ], [ 51.679688, 23.725012 ], [ 51.503906, 23.725012 ], [ 51.503906, 24.367114 ], [ 51.679688, 24.367114 ], [ 51.679688, 24.046464 ], [ 52.207031, 24.046464 ], [ 52.207031, 24.206890 ], [ 54.140625, 24.206890 ], [ 54.140625, 24.367114 ], [ 54.316406, 24.367114 ], [ 54.316406, 24.527135 ], [ 54.492188, 24.527135 ], [ 54.492188, 24.686952 ], [ 54.667969, 24.686952 ], [ 54.667969, 24.846565 ], [ 54.843750, 24.846565 ], [ 54.843750, 25.005973 ], [ 55.019531, 25.005973 ], [ 55.019531, 25.165173 ], [ 55.195312, 25.165173 ], [ 55.195312, 25.324167 ], [ 55.371094, 25.324167 ], [ 55.371094, 25.482951 ], [ 55.546875, 25.482951 ], [ 55.546875, 25.799891 ], [ 55.722656, 25.799891 ], [ 55.722656, 25.958045 ], [ 56.074219, 25.958045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.117188, 41.640078 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.580585 ], [ 62.226562, 40.580585 ], [ 62.226562, 40.178873 ], [ 62.402344, 40.178873 ], [ 62.402344, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.774769 ], [ 62.753906, 39.774769 ], [ 62.753906, 39.639538 ], [ 63.105469, 39.639538 ], [ 63.105469, 39.504041 ], [ 63.281250, 39.504041 ], [ 63.281250, 39.368279 ], [ 63.457031, 39.368279 ], [ 63.457031, 39.232253 ], [ 63.632812, 39.232253 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.959409 ], [ 64.160156, 38.959409 ], [ 64.160156, 38.822591 ], [ 64.511719, 38.822591 ], [ 64.511719, 38.685510 ], [ 64.687500, 38.685510 ], [ 64.687500, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.410558 ], [ 65.390625, 38.410558 ], [ 65.390625, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 38.134557 ], [ 66.269531, 38.134557 ], [ 66.269531, 37.996163 ], [ 66.621094, 37.996163 ], [ 66.621094, 37.579413 ], [ 66.445312, 37.579413 ], [ 66.445312, 37.300275 ], [ 66.269531, 37.300275 ], [ 66.269531, 37.439974 ], [ 66.093750, 37.439974 ], [ 66.093750, 37.579413 ], [ 65.742188, 37.579413 ], [ 65.742188, 37.439974 ], [ 65.566406, 37.439974 ], [ 65.566406, 37.300275 ], [ 65.214844, 37.300275 ], [ 65.214844, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.738884 ], [ 64.511719, 36.738884 ], [ 64.511719, 36.173357 ], [ 64.160156, 36.173357 ], [ 64.160156, 36.031332 ], [ 63.808594, 36.031332 ], [ 63.808594, 35.889050 ], [ 63.281250, 35.889050 ], [ 63.281250, 35.746512 ], [ 63.105469, 35.746512 ], [ 63.105469, 35.460670 ], [ 62.753906, 35.460670 ], [ 62.753906, 35.317366 ], [ 61.875000, 35.317366 ], [ 61.875000, 35.460670 ], [ 61.347656, 35.460670 ], [ 61.347656, 35.603719 ], [ 61.171875, 35.603719 ], [ 61.171875, 36.456636 ], [ 60.644531, 36.456636 ], [ 60.644531, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.738884 ], [ 59.941406, 36.738884 ], [ 59.941406, 36.879621 ], [ 59.765625, 36.879621 ], [ 59.765625, 37.020098 ], [ 59.589844, 37.020098 ], [ 59.589844, 37.160317 ], [ 59.414062, 37.160317 ], [ 59.414062, 37.300275 ], [ 59.238281, 37.300275 ], [ 59.238281, 37.439974 ], [ 58.710938, 37.439974 ], [ 58.710938, 37.579413 ], [ 58.007812, 37.579413 ], [ 58.007812, 37.718590 ], [ 57.656250, 37.718590 ], [ 57.656250, 37.857507 ], [ 57.304688, 37.857507 ], [ 57.304688, 37.996163 ], [ 56.777344, 37.996163 ], [ 56.777344, 38.134557 ], [ 56.601562, 38.134557 ], [ 56.601562, 37.996163 ], [ 55.546875, 37.996163 ], [ 55.546875, 37.857507 ], [ 55.371094, 37.857507 ], [ 55.371094, 37.718590 ], [ 55.195312, 37.718590 ], [ 55.195312, 37.579413 ], [ 55.019531, 37.579413 ], [ 55.019531, 37.439974 ], [ 54.667969, 37.439974 ], [ 54.667969, 37.300275 ], [ 54.316406, 37.300275 ], [ 54.316406, 37.160317 ], [ 53.964844, 37.160317 ], [ 53.964844, 37.439974 ], [ 53.789062, 37.439974 ], [ 53.789062, 38.410558 ], [ 53.964844, 38.410558 ], [ 53.964844, 38.959409 ], [ 53.613281, 38.959409 ], [ 53.613281, 39.095963 ], [ 53.261719, 39.095963 ], [ 53.261719, 39.232253 ], [ 53.085938, 39.232253 ], [ 53.085938, 39.368279 ], [ 53.261719, 39.368279 ], [ 53.261719, 39.639538 ], [ 53.437500, 39.639538 ], [ 53.437500, 39.909736 ], [ 52.910156, 39.909736 ], [ 52.910156, 40.044438 ], [ 52.734375, 40.044438 ], [ 52.734375, 40.446947 ], [ 52.910156, 40.446947 ], [ 52.910156, 40.847060 ], [ 53.085938, 40.847060 ], [ 53.085938, 40.713956 ], [ 53.437500, 40.713956 ], [ 53.437500, 40.580585 ], [ 53.964844, 40.580585 ], [ 53.964844, 40.713956 ], [ 54.316406, 40.713956 ], [ 54.316406, 40.847060 ], [ 54.667969, 40.847060 ], [ 54.667969, 40.979898 ], [ 54.492188, 40.979898 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.376809 ], [ 53.964844, 41.376809 ], [ 53.964844, 41.640078 ], [ 55.195312, 41.640078 ], [ 55.195312, 41.376809 ], [ 55.371094, 41.376809 ], [ 55.371094, 41.244772 ], [ 55.722656, 41.244772 ], [ 55.722656, 41.376809 ], [ 57.128906, 41.376809 ], [ 57.128906, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.640078 ], [ 60.117188, 41.640078 ] ] ], [ [ [ 52.910156, 41.640078 ], [ 52.910156, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.640078 ], [ 52.910156, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.941406, 41.640078 ], [ 59.941406, 41.376809 ], [ 60.117188, 41.376809 ], [ 60.117188, 41.244772 ], [ 60.996094, 41.244772 ], [ 60.996094, 41.376809 ], [ 61.523438, 41.376809 ], [ 61.523438, 41.244772 ], [ 61.699219, 41.244772 ], [ 61.699219, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.313043 ], [ 62.226562, 40.313043 ], [ 62.226562, 40.044438 ], [ 62.402344, 40.044438 ], [ 62.402344, 39.909736 ], [ 62.578125, 39.909736 ], [ 62.578125, 39.774769 ], [ 62.929688, 39.774769 ], [ 62.929688, 39.639538 ], [ 63.105469, 39.639538 ], [ 63.105469, 39.504041 ], [ 63.281250, 39.504041 ], [ 63.281250, 39.368279 ], [ 63.457031, 39.368279 ], [ 63.457031, 39.232253 ], [ 63.632812, 39.232253 ], [ 63.632812, 39.095963 ], [ 63.984375, 39.095963 ], [ 63.984375, 38.959409 ], [ 64.160156, 38.959409 ], [ 64.160156, 38.822591 ], [ 64.511719, 38.822591 ], [ 64.511719, 38.685510 ], [ 64.687500, 38.685510 ], [ 64.687500, 38.548165 ], [ 65.039062, 38.548165 ], [ 65.039062, 38.410558 ], [ 65.390625, 38.410558 ], [ 65.390625, 38.272689 ], [ 65.742188, 38.272689 ], [ 65.742188, 38.134557 ], [ 66.093750, 38.134557 ], [ 66.093750, 37.996163 ], [ 66.445312, 37.996163 ], [ 66.445312, 37.439974 ], [ 65.917969, 37.439974 ], [ 65.917969, 37.579413 ], [ 65.566406, 37.579413 ], [ 65.566406, 37.439974 ], [ 65.390625, 37.439974 ], [ 65.390625, 37.300275 ], [ 65.039062, 37.300275 ], [ 65.039062, 37.160317 ], [ 64.687500, 37.160317 ], [ 64.687500, 36.738884 ], [ 64.511719, 36.738884 ], [ 64.511719, 36.173357 ], [ 64.160156, 36.173357 ], [ 64.160156, 36.031332 ], [ 63.632812, 36.031332 ], [ 63.632812, 35.889050 ], [ 63.105469, 35.889050 ], [ 63.105469, 35.603719 ], [ 62.929688, 35.603719 ], [ 62.929688, 35.460670 ], [ 62.753906, 35.460670 ], [ 62.753906, 35.317366 ], [ 61.875000, 35.317366 ], [ 61.875000, 35.460670 ], [ 61.523438, 35.460670 ], [ 61.523438, 35.603719 ], [ 61.171875, 35.603719 ], [ 61.171875, 36.173357 ], [ 60.996094, 36.173357 ], [ 60.996094, 36.597889 ], [ 60.117188, 36.597889 ], [ 60.117188, 36.738884 ], [ 59.941406, 36.738884 ], [ 59.941406, 36.879621 ], [ 59.765625, 36.879621 ], [ 59.765625, 37.020098 ], [ 59.414062, 37.020098 ], [ 59.414062, 37.160317 ], [ 59.238281, 37.160317 ], [ 59.238281, 37.300275 ], [ 59.062500, 37.300275 ], [ 59.062500, 37.439974 ], [ 58.535156, 37.439974 ], [ 58.535156, 37.579413 ], [ 58.183594, 37.579413 ], [ 58.183594, 37.718590 ], [ 57.832031, 37.718590 ], [ 57.832031, 37.857507 ], [ 57.656250, 37.857507 ], [ 57.656250, 37.996163 ], [ 57.304688, 37.996163 ], [ 57.304688, 38.134557 ], [ 56.425781, 38.134557 ], [ 56.425781, 37.996163 ], [ 55.371094, 37.996163 ], [ 55.371094, 37.857507 ], [ 55.195312, 37.857507 ], [ 55.195312, 37.718590 ], [ 55.019531, 37.718590 ], [ 55.019531, 37.579413 ], [ 54.843750, 37.579413 ], [ 54.843750, 37.439974 ], [ 54.316406, 37.439974 ], [ 54.316406, 37.300275 ], [ 53.789062, 37.300275 ], [ 53.789062, 37.579413 ], [ 53.613281, 37.579413 ], [ 53.613281, 38.410558 ], [ 53.789062, 38.410558 ], [ 53.789062, 38.959409 ], [ 53.613281, 38.959409 ], [ 53.613281, 39.095963 ], [ 53.261719, 39.095963 ], [ 53.261719, 39.232253 ], [ 53.085938, 39.232253 ], [ 53.085938, 39.639538 ], [ 53.261719, 39.639538 ], [ 53.261719, 40.044438 ], [ 52.558594, 40.044438 ], [ 52.558594, 40.178873 ], [ 52.734375, 40.178873 ], [ 52.734375, 40.713956 ], [ 52.910156, 40.713956 ], [ 52.910156, 40.979898 ], [ 53.085938, 40.979898 ], [ 53.085938, 40.847060 ], [ 53.437500, 40.847060 ], [ 53.437500, 40.713956 ], [ 54.140625, 40.713956 ], [ 54.140625, 40.847060 ], [ 54.492188, 40.847060 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.376809 ], [ 54.140625, 41.376809 ], [ 54.140625, 41.508577 ], [ 53.964844, 41.508577 ], [ 53.964844, 41.640078 ], [ 55.019531, 41.640078 ], [ 55.019531, 41.508577 ], [ 55.195312, 41.508577 ], [ 55.195312, 41.376809 ], [ 56.953125, 41.376809 ], [ 56.953125, 41.640078 ], [ 59.941406, 41.640078 ] ] ], [ [ [ 52.734375, 41.640078 ], [ 52.734375, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.640078 ], [ 52.734375, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 52.031250, 18.646245 ], [ 52.207031, 18.646245 ], [ 52.207031, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.811456 ], [ 52.558594, 17.811456 ], [ 52.558594, 17.476432 ], [ 52.734375, 17.476432 ], [ 52.734375, 17.140790 ], [ 52.910156, 17.140790 ], [ 52.910156, 16.804541 ], [ 53.085938, 16.804541 ], [ 53.085938, 16.467695 ], [ 52.734375, 16.467695 ], [ 52.734375, 16.299051 ], [ 52.382812, 16.299051 ], [ 52.382812, 16.130262 ], [ 52.207031, 16.130262 ], [ 52.207031, 15.453680 ], [ 51.855469, 15.453680 ], [ 51.855469, 15.284185 ], [ 51.503906, 15.284185 ], [ 51.503906, 15.114553 ], [ 50.800781, 15.114553 ], [ 50.800781, 14.944785 ], [ 50.097656, 14.944785 ], [ 50.097656, 14.774883 ], [ 49.570312, 14.774883 ], [ 49.570312, 14.604847 ], [ 49.394531, 14.604847 ], [ 49.394531, 14.434680 ], [ 49.218750, 14.434680 ], [ 49.218750, 14.264383 ], [ 49.042969, 14.264383 ], [ 49.042969, 14.093957 ], [ 48.867188, 14.093957 ], [ 48.867188, 13.923404 ], [ 47.988281, 13.923404 ], [ 47.988281, 13.752725 ], [ 47.636719, 13.752725 ], [ 47.636719, 13.581921 ], [ 47.109375, 13.581921 ], [ 47.109375, 13.410994 ], [ 45.878906, 13.410994 ], [ 45.878906, 13.239945 ], [ 45.703125, 13.239945 ], [ 45.703125, 13.068777 ], [ 45.351562, 13.068777 ], [ 45.351562, 12.897489 ], [ 45.175781, 12.897489 ], [ 45.175781, 12.726084 ], [ 44.472656, 12.726084 ], [ 44.472656, 12.554564 ], [ 44.121094, 12.554564 ], [ 44.121094, 17.476432 ], [ 45.175781, 17.476432 ], [ 45.175781, 17.308688 ], [ 46.757812, 17.308688 ], [ 46.757812, 17.140790 ], [ 46.933594, 17.140790 ], [ 46.933594, 16.972741 ], [ 47.285156, 16.972741 ], [ 47.285156, 17.140790 ], [ 47.636719, 17.140790 ], [ 47.636719, 17.476432 ], [ 47.812500, 17.476432 ], [ 47.812500, 17.644022 ], [ 47.988281, 17.644022 ], [ 47.988281, 17.978733 ], [ 48.164062, 17.978733 ], [ 48.164062, 18.145852 ], [ 48.339844, 18.145852 ], [ 48.339844, 18.312811 ], [ 48.691406, 18.312811 ], [ 48.691406, 18.479609 ], [ 49.042969, 18.479609 ], [ 49.042969, 18.646245 ], [ 49.921875, 18.646245 ], [ 49.921875, 18.812718 ], [ 51.328125, 18.812718 ], [ 51.328125, 18.979026 ], [ 52.031250, 18.979026 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.855469, 19.145168 ], [ 51.855469, 18.979026 ], [ 52.031250, 18.979026 ], [ 52.031250, 18.646245 ], [ 52.207031, 18.646245 ], [ 52.207031, 18.312811 ], [ 52.382812, 18.312811 ], [ 52.382812, 17.978733 ], [ 52.558594, 17.978733 ], [ 52.558594, 17.644022 ], [ 52.734375, 17.644022 ], [ 52.734375, 17.308688 ], [ 52.910156, 17.308688 ], [ 52.910156, 16.972741 ], [ 53.085938, 16.972741 ], [ 53.085938, 16.636192 ], [ 52.734375, 16.636192 ], [ 52.734375, 16.467695 ], [ 52.382812, 16.467695 ], [ 52.382812, 16.299051 ], [ 52.207031, 16.299051 ], [ 52.207031, 15.961329 ], [ 52.031250, 15.961329 ], [ 52.031250, 15.623037 ], [ 51.855469, 15.623037 ], [ 51.855469, 15.453680 ], [ 51.503906, 15.453680 ], [ 51.503906, 15.284185 ], [ 50.976562, 15.284185 ], [ 50.976562, 15.114553 ], [ 50.449219, 15.114553 ], [ 50.449219, 14.944785 ], [ 49.921875, 14.944785 ], [ 49.921875, 14.774883 ], [ 49.570312, 14.774883 ], [ 49.570312, 14.604847 ], [ 49.218750, 14.604847 ], [ 49.218750, 14.434680 ], [ 49.042969, 14.434680 ], [ 49.042969, 14.264383 ], [ 48.691406, 14.264383 ], [ 48.691406, 14.093957 ], [ 47.812500, 14.093957 ], [ 47.812500, 13.923404 ], [ 47.460938, 13.923404 ], [ 47.460938, 13.752725 ], [ 47.285156, 13.752725 ], [ 47.285156, 13.581921 ], [ 46.933594, 13.581921 ], [ 46.933594, 13.410994 ], [ 45.527344, 13.410994 ], [ 45.527344, 13.239945 ], [ 45.351562, 13.239945 ], [ 45.351562, 13.068777 ], [ 45.000000, 13.068777 ], [ 45.000000, 12.897489 ], [ 44.824219, 12.897489 ], [ 44.824219, 12.726084 ], [ 44.121094, 12.726084 ], [ 44.121094, 17.476432 ], [ 45.703125, 17.476432 ], [ 45.703125, 17.308688 ], [ 46.582031, 17.308688 ], [ 46.582031, 17.140790 ], [ 46.757812, 17.140790 ], [ 46.757812, 16.972741 ], [ 47.285156, 16.972741 ], [ 47.285156, 17.140790 ], [ 47.636719, 17.140790 ], [ 47.636719, 17.476432 ], [ 47.812500, 17.476432 ], [ 47.812500, 17.811456 ], [ 47.988281, 17.811456 ], [ 47.988281, 18.145852 ], [ 48.164062, 18.145852 ], [ 48.164062, 18.312811 ], [ 48.515625, 18.312811 ], [ 48.515625, 18.479609 ], [ 48.867188, 18.479609 ], [ 48.867188, 18.646245 ], [ 49.570312, 18.646245 ], [ 49.570312, 18.812718 ], [ 50.625000, 18.812718 ], [ 50.625000, 18.979026 ], [ 51.503906, 18.979026 ], [ 51.503906, 19.145168 ], [ 51.855469, 19.145168 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.425781, 24.846565 ], [ 56.425781, 24.686952 ], [ 56.601562, 24.686952 ], [ 56.601562, 24.367114 ], [ 56.777344, 24.367114 ], [ 56.777344, 24.046464 ], [ 57.128906, 24.046464 ], [ 57.128906, 23.885838 ], [ 57.656250, 23.885838 ], [ 57.656250, 23.725012 ], [ 58.359375, 23.725012 ], [ 58.359375, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.402765 ], [ 58.886719, 23.402765 ], [ 58.886719, 23.241346 ], [ 59.062500, 23.241346 ], [ 59.062500, 22.917923 ], [ 59.238281, 22.917923 ], [ 59.238281, 22.755921 ], [ 59.414062, 22.755921 ], [ 59.414062, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.105999 ], [ 59.589844, 22.105999 ], [ 59.589844, 21.779905 ], [ 59.414062, 21.779905 ], [ 59.414062, 21.616579 ], [ 59.238281, 21.616579 ], [ 59.238281, 21.289374 ], [ 59.062500, 21.289374 ], [ 59.062500, 21.125498 ], [ 58.886719, 21.125498 ], [ 58.886719, 20.961440 ], [ 58.710938, 20.961440 ], [ 58.710938, 20.632784 ], [ 58.535156, 20.632784 ], [ 58.535156, 20.468189 ], [ 58.007812, 20.468189 ], [ 58.007812, 20.303418 ], [ 57.832031, 20.303418 ], [ 57.832031, 19.973349 ], [ 57.656250, 19.973349 ], [ 57.656250, 19.476950 ], [ 57.832031, 19.476950 ], [ 57.832031, 18.979026 ], [ 57.304688, 18.979026 ], [ 57.304688, 18.812718 ], [ 56.953125, 18.812718 ], [ 56.953125, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 18.312811 ], [ 56.425781, 18.312811 ], [ 56.425781, 17.978733 ], [ 56.250000, 17.978733 ], [ 56.250000, 17.811456 ], [ 55.546875, 17.811456 ], [ 55.546875, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.140790 ], [ 55.019531, 17.140790 ], [ 55.019531, 16.972741 ], [ 54.316406, 16.972741 ], [ 54.316406, 16.804541 ], [ 53.964844, 16.804541 ], [ 53.964844, 16.636192 ], [ 53.085938, 16.636192 ], [ 53.085938, 16.804541 ], [ 52.910156, 16.804541 ], [ 52.910156, 17.140790 ], [ 52.734375, 17.140790 ], [ 52.734375, 17.476432 ], [ 52.558594, 17.476432 ], [ 52.558594, 17.811456 ], [ 52.382812, 17.811456 ], [ 52.382812, 18.312811 ], [ 52.207031, 18.312811 ], [ 52.207031, 18.646245 ], [ 52.031250, 18.646245 ], [ 52.031250, 18.979026 ], [ 52.382812, 18.979026 ], [ 52.382812, 19.145168 ], [ 52.910156, 19.145168 ], [ 52.910156, 19.311143 ], [ 53.437500, 19.311143 ], [ 53.437500, 19.476950 ], [ 53.789062, 19.476950 ], [ 53.789062, 19.642588 ], [ 54.316406, 19.642588 ], [ 54.316406, 19.808054 ], [ 54.843750, 19.808054 ], [ 54.843750, 19.973349 ], [ 55.019531, 19.973349 ], [ 55.019531, 20.138470 ], [ 55.195312, 20.138470 ], [ 55.195312, 20.632784 ], [ 55.371094, 20.632784 ], [ 55.371094, 21.125498 ], [ 55.546875, 21.125498 ], [ 55.546875, 21.616579 ], [ 55.722656, 21.616579 ], [ 55.722656, 21.943046 ], [ 55.546875, 21.943046 ], [ 55.546875, 22.268764 ], [ 55.371094, 22.268764 ], [ 55.371094, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 23.079732 ], [ 55.371094, 23.079732 ], [ 55.371094, 23.402765 ], [ 55.546875, 23.402765 ], [ 55.546875, 23.885838 ], [ 55.722656, 23.885838 ], [ 55.722656, 24.046464 ], [ 55.898438, 24.046464 ], [ 55.898438, 24.206890 ], [ 55.722656, 24.206890 ], [ 55.722656, 24.527135 ], [ 55.898438, 24.527135 ], [ 55.898438, 24.846565 ], [ 56.425781, 24.846565 ] ] ], [ [ [ 56.425781, 26.273714 ], [ 56.425781, 25.799891 ], [ 56.074219, 25.799891 ], [ 56.074219, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 26.273714 ], [ 56.425781, 26.273714 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.250000, 25.005973 ], [ 56.250000, 24.846565 ], [ 56.425781, 24.846565 ], [ 56.425781, 24.686952 ], [ 56.601562, 24.686952 ], [ 56.601562, 24.367114 ], [ 56.777344, 24.367114 ], [ 56.777344, 24.206890 ], [ 56.953125, 24.206890 ], [ 56.953125, 24.046464 ], [ 57.128906, 24.046464 ], [ 57.128906, 23.885838 ], [ 58.007812, 23.885838 ], [ 58.007812, 23.725012 ], [ 58.359375, 23.725012 ], [ 58.359375, 23.563987 ], [ 58.710938, 23.563987 ], [ 58.710938, 23.402765 ], [ 58.886719, 23.402765 ], [ 58.886719, 23.079732 ], [ 59.062500, 23.079732 ], [ 59.062500, 22.917923 ], [ 59.238281, 22.917923 ], [ 59.238281, 22.755921 ], [ 59.414062, 22.755921 ], [ 59.414062, 22.593726 ], [ 59.765625, 22.593726 ], [ 59.765625, 22.268764 ], [ 59.589844, 22.268764 ], [ 59.589844, 21.943046 ], [ 59.414062, 21.943046 ], [ 59.414062, 21.616579 ], [ 59.238281, 21.616579 ], [ 59.238281, 21.289374 ], [ 58.886719, 21.289374 ], [ 58.886719, 21.125498 ], [ 58.710938, 21.125498 ], [ 58.710938, 20.961440 ], [ 58.535156, 20.961440 ], [ 58.535156, 20.632784 ], [ 58.359375, 20.632784 ], [ 58.359375, 20.468189 ], [ 57.832031, 20.468189 ], [ 57.832031, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 57.128906, 18.979026 ], [ 57.128906, 18.812718 ], [ 56.777344, 18.812718 ], [ 56.777344, 18.646245 ], [ 56.601562, 18.646245 ], [ 56.601562, 18.312811 ], [ 56.425781, 18.312811 ], [ 56.425781, 17.978733 ], [ 55.546875, 17.978733 ], [ 55.546875, 17.811456 ], [ 55.371094, 17.811456 ], [ 55.371094, 17.644022 ], [ 55.195312, 17.644022 ], [ 55.195312, 17.140790 ], [ 54.843750, 17.140790 ], [ 54.843750, 16.972741 ], [ 54.316406, 16.972741 ], [ 54.316406, 17.140790 ], [ 54.140625, 17.140790 ], [ 54.140625, 16.972741 ], [ 53.789062, 16.972741 ], [ 53.789062, 16.804541 ], [ 53.085938, 16.804541 ], [ 53.085938, 16.972741 ], [ 52.910156, 16.972741 ], [ 52.910156, 17.308688 ], [ 52.734375, 17.308688 ], [ 52.734375, 17.644022 ], [ 52.558594, 17.644022 ], [ 52.558594, 17.978733 ], [ 52.382812, 17.978733 ], [ 52.382812, 18.312811 ], [ 52.207031, 18.312811 ], [ 52.207031, 18.646245 ], [ 52.031250, 18.646245 ], [ 52.031250, 18.979026 ], [ 51.855469, 18.979026 ], [ 51.855469, 19.145168 ], [ 52.207031, 19.145168 ], [ 52.207031, 19.311143 ], [ 52.734375, 19.311143 ], [ 52.734375, 19.476950 ], [ 53.261719, 19.476950 ], [ 53.261719, 19.642588 ], [ 53.613281, 19.642588 ], [ 53.613281, 19.808054 ], [ 54.140625, 19.808054 ], [ 54.140625, 19.973349 ], [ 54.667969, 19.973349 ], [ 54.667969, 20.138470 ], [ 54.843750, 20.138470 ], [ 54.843750, 20.303418 ], [ 55.019531, 20.303418 ], [ 55.019531, 20.797201 ], [ 55.195312, 20.797201 ], [ 55.195312, 21.289374 ], [ 55.371094, 21.289374 ], [ 55.371094, 21.779905 ], [ 55.546875, 21.779905 ], [ 55.546875, 22.268764 ], [ 55.371094, 22.268764 ], [ 55.371094, 22.593726 ], [ 55.195312, 22.593726 ], [ 55.195312, 23.402765 ], [ 55.371094, 23.402765 ], [ 55.371094, 24.046464 ], [ 55.722656, 24.046464 ], [ 55.722656, 25.005973 ], [ 56.250000, 25.005973 ] ] ], [ [ [ 56.425781, 26.431228 ], [ 56.425781, 26.115986 ], [ 56.250000, 26.115986 ], [ 56.250000, 25.799891 ], [ 56.074219, 25.799891 ], [ 56.074219, 25.958045 ], [ 55.898438, 25.958045 ], [ 55.898438, 26.115986 ], [ 56.074219, 26.115986 ], [ 56.074219, 26.273714 ], [ 56.250000, 26.273714 ], [ 56.250000, 26.431228 ], [ 56.425781, 26.431228 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.350797 ], [ 48.867188, 9.275622 ], [ 48.691406, 9.275622 ], [ 48.691406, 8.928487 ], [ 48.515625, 8.928487 ], [ 48.515625, 8.581021 ], [ 48.339844, 8.581021 ], [ 48.339844, 8.407168 ], [ 48.164062, 8.407168 ], [ 48.164062, 8.233237 ], [ 47.988281, 8.233237 ], [ 47.988281, 8.059230 ], [ 46.582031, 8.059230 ], [ 46.582031, 8.233237 ], [ 46.054688, 8.233237 ], [ 46.054688, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 8.581021 ], [ 45.175781, 8.581021 ], [ 45.175781, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 9.102097 ], [ 44.121094, 9.102097 ], [ 44.121094, 10.487812 ], [ 45.175781, 10.487812 ], [ 45.175781, 10.660608 ], [ 46.230469, 10.660608 ], [ 46.230469, 10.833306 ], [ 46.933594, 10.833306 ], [ 46.933594, 11.005904 ], [ 47.285156, 11.005904 ], [ 47.285156, 11.178402 ], [ 48.339844, 11.178402 ], [ 48.339844, 11.350797 ], [ 48.867188, 11.350797 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 11.523088 ], [ 48.867188, 9.275622 ], [ 48.691406, 9.275622 ], [ 48.691406, 9.102097 ], [ 48.515625, 9.102097 ], [ 48.515625, 8.928487 ], [ 48.339844, 8.928487 ], [ 48.339844, 8.754795 ], [ 48.164062, 8.754795 ], [ 48.164062, 8.581021 ], [ 47.988281, 8.581021 ], [ 47.988281, 8.233237 ], [ 47.812500, 8.233237 ], [ 47.812500, 8.059230 ], [ 46.582031, 8.059230 ], [ 46.582031, 8.233237 ], [ 46.054688, 8.233237 ], [ 46.054688, 8.407168 ], [ 45.703125, 8.407168 ], [ 45.703125, 8.581021 ], [ 45.175781, 8.581021 ], [ 45.175781, 8.754795 ], [ 44.648438, 8.754795 ], [ 44.648438, 8.928487 ], [ 44.296875, 8.928487 ], [ 44.296875, 9.102097 ], [ 44.121094, 9.102097 ], [ 44.121094, 10.487812 ], [ 44.824219, 10.487812 ], [ 44.824219, 10.660608 ], [ 45.351562, 10.660608 ], [ 45.351562, 10.833306 ], [ 46.933594, 10.833306 ], [ 46.933594, 11.005904 ], [ 47.285156, 11.005904 ], [ 47.285156, 11.178402 ], [ 47.812500, 11.178402 ], [ 47.812500, 11.350797 ], [ 48.339844, 11.350797 ], [ 48.339844, 11.523088 ], [ 48.867188, 11.523088 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 12.039321 ], [ 51.152344, 11.350797 ], [ 50.976562, 11.350797 ], [ 50.976562, 10.487812 ], [ 50.800781, 10.487812 ], [ 50.800781, 9.795678 ], [ 50.625000, 9.795678 ], [ 50.625000, 8.928487 ], [ 50.449219, 8.928487 ], [ 50.449219, 8.581021 ], [ 50.273438, 8.581021 ], [ 50.273438, 8.233237 ], [ 50.097656, 8.233237 ], [ 50.097656, 7.885147 ], [ 49.921875, 7.885147 ], [ 49.921875, 7.536764 ], [ 49.746094, 7.536764 ], [ 49.746094, 7.188101 ], [ 49.570312, 7.188101 ], [ 49.570312, 6.839170 ], [ 49.394531, 6.839170 ], [ 49.394531, 6.664608 ], [ 49.218750, 6.664608 ], [ 49.218750, 6.315299 ], [ 49.042969, 6.315299 ], [ 49.042969, 5.965754 ], [ 48.867188, 5.965754 ], [ 48.867188, 5.615986 ], [ 48.691406, 5.615986 ], [ 48.691406, 5.266008 ], [ 48.515625, 5.266008 ], [ 48.515625, 5.090944 ], [ 48.339844, 5.090944 ], [ 48.339844, 4.740675 ], [ 48.164062, 4.740675 ], [ 48.164062, 4.565474 ], [ 47.988281, 4.565474 ], [ 47.988281, 4.214943 ], [ 47.812500, 4.214943 ], [ 47.812500, 4.039618 ], [ 47.636719, 4.039618 ], [ 47.636719, 3.864255 ], [ 47.460938, 3.864255 ], [ 47.460938, 3.688855 ], [ 47.285156, 3.688855 ], [ 47.285156, 3.513421 ], [ 47.109375, 3.513421 ], [ 47.109375, 3.162456 ], [ 46.933594, 3.162456 ], [ 46.933594, 2.986927 ], [ 46.757812, 2.986927 ], [ 46.757812, 2.811371 ], [ 46.582031, 2.811371 ], [ 46.582031, 2.635789 ], [ 46.230469, 2.635789 ], [ 46.230469, 2.460181 ], [ 46.054688, 2.460181 ], [ 46.054688, 2.284551 ], [ 45.703125, 2.284551 ], [ 45.703125, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.351562, 1.933227 ], [ 45.351562, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.824219, 1.581830 ], [ 44.824219, 1.406109 ], [ 44.648438, 1.406109 ], [ 44.648438, 1.230374 ], [ 44.296875, 1.230374 ], [ 44.296875, 1.054628 ], [ 44.121094, 1.054628 ], [ 44.121094, 4.915833 ], [ 45.175781, 4.915833 ], [ 45.175781, 5.090944 ], [ 45.351562, 5.090944 ], [ 45.351562, 5.266008 ], [ 45.527344, 5.266008 ], [ 45.527344, 5.441022 ], [ 45.703125, 5.441022 ], [ 45.703125, 5.790897 ], [ 45.878906, 5.790897 ], [ 45.878906, 5.965754 ], [ 46.054688, 5.965754 ], [ 46.054688, 6.140555 ], [ 46.230469, 6.140555 ], [ 46.230469, 6.315299 ], [ 46.406250, 6.315299 ], [ 46.406250, 6.489983 ], [ 46.582031, 6.489983 ], [ 46.582031, 6.664608 ], [ 46.757812, 6.664608 ], [ 46.757812, 6.839170 ], [ 46.933594, 6.839170 ], [ 46.933594, 7.013668 ], [ 47.109375, 7.013668 ], [ 47.109375, 7.362467 ], [ 47.285156, 7.362467 ], [ 47.285156, 7.536764 ], [ 47.460938, 7.536764 ], [ 47.460938, 7.710992 ], [ 47.636719, 7.710992 ], [ 47.636719, 7.885147 ], [ 47.812500, 7.885147 ], [ 47.812500, 8.059230 ], [ 47.988281, 8.059230 ], [ 47.988281, 8.233237 ], [ 48.164062, 8.233237 ], [ 48.164062, 8.407168 ], [ 48.339844, 8.407168 ], [ 48.339844, 8.581021 ], [ 48.515625, 8.581021 ], [ 48.515625, 8.928487 ], [ 48.691406, 8.928487 ], [ 48.691406, 9.275622 ], [ 48.867188, 9.275622 ], [ 48.867188, 11.350797 ], [ 49.570312, 11.350797 ], [ 49.570312, 11.523088 ], [ 50.097656, 11.523088 ], [ 50.097656, 11.695273 ], [ 50.449219, 11.695273 ], [ 50.449219, 11.867351 ], [ 50.800781, 11.867351 ], [ 50.800781, 12.039321 ], [ 51.152344, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.976562, 12.039321 ], [ 50.976562, 10.487812 ], [ 50.800781, 10.487812 ], [ 50.800781, 9.968851 ], [ 50.625000, 9.968851 ], [ 50.625000, 9.449062 ], [ 50.449219, 9.449062 ], [ 50.449219, 9.102097 ], [ 50.273438, 9.102097 ], [ 50.273438, 8.754795 ], [ 50.097656, 8.754795 ], [ 50.097656, 8.407168 ], [ 49.921875, 8.407168 ], [ 49.921875, 7.885147 ], [ 49.746094, 7.885147 ], [ 49.746094, 7.536764 ], [ 49.570312, 7.536764 ], [ 49.570312, 7.013668 ], [ 49.394531, 7.013668 ], [ 49.394531, 6.664608 ], [ 49.218750, 6.664608 ], [ 49.218750, 6.315299 ], [ 49.042969, 6.315299 ], [ 49.042969, 6.140555 ], [ 48.867188, 6.140555 ], [ 48.867188, 5.790897 ], [ 48.691406, 5.790897 ], [ 48.691406, 5.441022 ], [ 48.515625, 5.441022 ], [ 48.515625, 5.266008 ], [ 48.339844, 5.266008 ], [ 48.339844, 5.090944 ], [ 48.164062, 5.090944 ], [ 48.164062, 4.915833 ], [ 47.988281, 4.915833 ], [ 47.988281, 4.565474 ], [ 47.812500, 4.565474 ], [ 47.812500, 4.390229 ], [ 47.636719, 4.390229 ], [ 47.636719, 4.214943 ], [ 47.460938, 4.214943 ], [ 47.460938, 4.039618 ], [ 47.285156, 4.039618 ], [ 47.285156, 3.864255 ], [ 47.109375, 3.864255 ], [ 47.109375, 3.688855 ], [ 46.933594, 3.688855 ], [ 46.933594, 3.337954 ], [ 46.757812, 3.337954 ], [ 46.757812, 3.162456 ], [ 46.582031, 3.162456 ], [ 46.582031, 2.986927 ], [ 46.406250, 2.986927 ], [ 46.406250, 2.811371 ], [ 46.230469, 2.811371 ], [ 46.230469, 2.635789 ], [ 46.054688, 2.635789 ], [ 46.054688, 2.460181 ], [ 45.878906, 2.460181 ], [ 45.878906, 2.284551 ], [ 45.703125, 2.284551 ], [ 45.703125, 2.108899 ], [ 45.527344, 2.108899 ], [ 45.527344, 1.933227 ], [ 45.175781, 1.933227 ], [ 45.175781, 1.757537 ], [ 45.000000, 1.757537 ], [ 45.000000, 1.581830 ], [ 44.648438, 1.581830 ], [ 44.648438, 1.406109 ], [ 44.296875, 1.406109 ], [ 44.296875, 1.230374 ], [ 44.121094, 1.230374 ], [ 44.121094, 5.090944 ], [ 45.000000, 5.090944 ], [ 45.000000, 5.266008 ], [ 45.175781, 5.266008 ], [ 45.175781, 5.441022 ], [ 45.351562, 5.441022 ], [ 45.351562, 5.615986 ], [ 45.527344, 5.615986 ], [ 45.527344, 5.790897 ], [ 45.703125, 5.790897 ], [ 45.703125, 5.965754 ], [ 45.878906, 5.965754 ], [ 45.878906, 6.140555 ], [ 46.054688, 6.140555 ], [ 46.054688, 6.315299 ], [ 46.230469, 6.315299 ], [ 46.230469, 6.664608 ], [ 46.406250, 6.664608 ], [ 46.406250, 6.839170 ], [ 46.582031, 6.839170 ], [ 46.582031, 7.013668 ], [ 46.757812, 7.013668 ], [ 46.757812, 7.188101 ], [ 46.933594, 7.188101 ], [ 46.933594, 7.362467 ], [ 47.109375, 7.362467 ], [ 47.109375, 7.536764 ], [ 47.285156, 7.536764 ], [ 47.285156, 7.710992 ], [ 47.460938, 7.710992 ], [ 47.460938, 7.885147 ], [ 47.636719, 7.885147 ], [ 47.636719, 8.059230 ], [ 47.812500, 8.059230 ], [ 47.812500, 8.233237 ], [ 47.988281, 8.233237 ], [ 47.988281, 8.581021 ], [ 48.164062, 8.581021 ], [ 48.164062, 8.754795 ], [ 48.339844, 8.754795 ], [ 48.339844, 8.928487 ], [ 48.515625, 8.928487 ], [ 48.515625, 9.102097 ], [ 48.691406, 9.102097 ], [ 48.691406, 9.275622 ], [ 48.867188, 9.275622 ], [ 48.867188, 11.523088 ], [ 49.570312, 11.523088 ], [ 49.570312, 11.695273 ], [ 50.273438, 11.695273 ], [ 50.273438, 11.867351 ], [ 50.625000, 11.867351 ], [ 50.625000, 12.039321 ], [ 50.976562, 12.039321 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.488281, 40.713956 ], [ 70.488281, 40.313043 ], [ 70.664062, 40.313043 ], [ 70.664062, 40.178873 ], [ 71.015625, 40.178873 ], [ 71.015625, 40.044438 ], [ 70.839844, 40.044438 ], [ 70.839844, 39.909736 ], [ 69.960938, 39.909736 ], [ 69.960938, 40.044438 ], [ 69.609375, 40.044438 ], [ 69.609375, 39.774769 ], [ 69.433594, 39.774769 ], [ 69.433594, 39.504041 ], [ 70.136719, 39.504041 ], [ 70.136719, 39.639538 ], [ 70.664062, 39.639538 ], [ 70.664062, 39.504041 ], [ 71.015625, 39.504041 ], [ 71.015625, 39.368279 ], [ 71.367188, 39.368279 ], [ 71.367188, 39.232253 ], [ 72.773438, 39.232253 ], [ 72.773438, 39.368279 ], [ 73.652344, 39.368279 ], [ 73.652344, 39.095963 ], [ 73.828125, 39.095963 ], [ 73.828125, 38.685510 ], [ 74.003906, 38.685510 ], [ 74.003906, 38.548165 ], [ 74.355469, 38.548165 ], [ 74.355469, 38.410558 ], [ 74.882812, 38.410558 ], [ 74.882812, 37.718590 ], [ 75.058594, 37.718590 ], [ 75.058594, 37.439974 ], [ 73.300781, 37.439974 ], [ 73.300781, 37.300275 ], [ 73.125000, 37.300275 ], [ 73.125000, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 37.020098 ], [ 72.597656, 37.020098 ], [ 72.597656, 36.879621 ], [ 72.246094, 36.879621 ], [ 72.246094, 36.738884 ], [ 71.718750, 36.738884 ], [ 71.718750, 36.879621 ], [ 71.367188, 36.879621 ], [ 71.367188, 37.439974 ], [ 71.542969, 37.439974 ], [ 71.542969, 37.857507 ], [ 71.191406, 37.857507 ], [ 71.191406, 38.134557 ], [ 71.367188, 38.134557 ], [ 71.367188, 38.272689 ], [ 71.191406, 38.272689 ], [ 71.191406, 38.410558 ], [ 70.664062, 38.410558 ], [ 70.664062, 38.272689 ], [ 70.488281, 38.272689 ], [ 70.488281, 38.134557 ], [ 70.312500, 38.134557 ], [ 70.312500, 37.579413 ], [ 69.433594, 37.579413 ], [ 69.433594, 37.300275 ], [ 69.257812, 37.300275 ], [ 69.257812, 37.160317 ], [ 68.554688, 37.160317 ], [ 68.554688, 37.020098 ], [ 67.851562, 37.020098 ], [ 67.851562, 37.300275 ], [ 68.027344, 37.300275 ], [ 68.027344, 37.579413 ], [ 68.203125, 37.579413 ], [ 68.203125, 37.857507 ], [ 68.378906, 37.857507 ], [ 68.378906, 38.548165 ], [ 68.203125, 38.548165 ], [ 68.203125, 38.959409 ], [ 67.675781, 38.959409 ], [ 67.675781, 39.095963 ], [ 67.500000, 39.095963 ], [ 67.500000, 39.368279 ], [ 67.675781, 39.368279 ], [ 67.675781, 39.639538 ], [ 68.027344, 39.639538 ], [ 68.027344, 39.504041 ], [ 68.730469, 39.504041 ], [ 68.730469, 39.774769 ], [ 68.906250, 39.774769 ], [ 68.906250, 39.909736 ], [ 69.082031, 39.909736 ], [ 69.082031, 40.313043 ], [ 69.257812, 40.313043 ], [ 69.257812, 40.713956 ], [ 69.785156, 40.713956 ], [ 69.785156, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.580585 ], [ 70.312500, 40.580585 ], [ 70.312500, 40.446947 ], [ 70.488281, 40.446947 ], [ 70.488281, 40.313043 ], [ 71.015625, 40.313043 ], [ 71.015625, 40.178873 ], [ 70.664062, 40.178873 ], [ 70.664062, 40.044438 ], [ 69.785156, 40.044438 ], [ 69.785156, 40.178873 ], [ 69.433594, 40.178873 ], [ 69.433594, 39.639538 ], [ 70.664062, 39.639538 ], [ 70.664062, 39.504041 ], [ 71.367188, 39.504041 ], [ 71.367188, 39.368279 ], [ 72.773438, 39.368279 ], [ 72.773438, 39.504041 ], [ 73.652344, 39.504041 ], [ 73.652344, 38.959409 ], [ 73.828125, 38.959409 ], [ 73.828125, 38.548165 ], [ 74.531250, 38.548165 ], [ 74.531250, 38.410558 ], [ 74.707031, 38.410558 ], [ 74.707031, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 37.439974 ], [ 73.300781, 37.439974 ], [ 73.300781, 37.579413 ], [ 73.125000, 37.579413 ], [ 73.125000, 37.439974 ], [ 72.949219, 37.439974 ], [ 72.949219, 37.300275 ], [ 72.773438, 37.300275 ], [ 72.773438, 37.160317 ], [ 72.421875, 37.160317 ], [ 72.421875, 37.020098 ], [ 72.070312, 37.020098 ], [ 72.070312, 36.879621 ], [ 71.894531, 36.879621 ], [ 71.894531, 36.738884 ], [ 71.542969, 36.738884 ], [ 71.542969, 37.020098 ], [ 71.367188, 37.020098 ], [ 71.367188, 37.579413 ], [ 71.542969, 37.579413 ], [ 71.542969, 37.996163 ], [ 71.191406, 37.996163 ], [ 71.191406, 38.272689 ], [ 71.015625, 38.272689 ], [ 71.015625, 38.410558 ], [ 70.488281, 38.410558 ], [ 70.488281, 38.272689 ], [ 70.312500, 38.272689 ], [ 70.312500, 37.996163 ], [ 70.136719, 37.996163 ], [ 70.136719, 37.718590 ], [ 69.433594, 37.718590 ], [ 69.433594, 37.579413 ], [ 69.257812, 37.579413 ], [ 69.257812, 37.300275 ], [ 69.082031, 37.300275 ], [ 69.082031, 37.160317 ], [ 68.906250, 37.160317 ], [ 68.906250, 37.300275 ], [ 68.378906, 37.300275 ], [ 68.378906, 37.160317 ], [ 67.675781, 37.160317 ], [ 67.675781, 37.300275 ], [ 67.851562, 37.300275 ], [ 67.851562, 37.579413 ], [ 68.027344, 37.579413 ], [ 68.027344, 37.857507 ], [ 68.203125, 37.857507 ], [ 68.203125, 38.134557 ], [ 68.378906, 38.134557 ], [ 68.378906, 38.410558 ], [ 68.203125, 38.410558 ], [ 68.203125, 38.685510 ], [ 68.027344, 38.685510 ], [ 68.027344, 38.959409 ], [ 67.675781, 38.959409 ], [ 67.675781, 39.095963 ], [ 67.324219, 39.095963 ], [ 67.324219, 39.232253 ], [ 67.500000, 39.232253 ], [ 67.500000, 39.504041 ], [ 67.675781, 39.504041 ], [ 67.675781, 39.639538 ], [ 68.554688, 39.639538 ], [ 68.554688, 39.909736 ], [ 68.730469, 39.909736 ], [ 68.730469, 40.044438 ], [ 68.906250, 40.044438 ], [ 68.906250, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 40.580585 ], [ 69.257812, 40.580585 ], [ 69.257812, 40.847060 ], [ 70.136719, 40.847060 ], [ 70.136719, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.191406, 38.410558 ], [ 71.191406, 38.272689 ], [ 71.367188, 38.272689 ], [ 71.367188, 38.134557 ], [ 71.191406, 38.134557 ], [ 71.191406, 37.857507 ], [ 71.542969, 37.857507 ], [ 71.542969, 37.439974 ], [ 71.367188, 37.439974 ], [ 71.367188, 36.879621 ], [ 71.718750, 36.879621 ], [ 71.718750, 36.738884 ], [ 72.246094, 36.738884 ], [ 72.246094, 36.879621 ], [ 72.597656, 36.879621 ], [ 72.597656, 37.020098 ], [ 72.773438, 37.020098 ], [ 72.773438, 37.160317 ], [ 73.125000, 37.160317 ], [ 73.125000, 37.300275 ], [ 73.300781, 37.300275 ], [ 73.300781, 37.439974 ], [ 75.058594, 37.439974 ], [ 75.058594, 37.300275 ], [ 75.234375, 37.300275 ], [ 75.234375, 37.160317 ], [ 75.058594, 37.160317 ], [ 75.058594, 37.020098 ], [ 74.355469, 37.020098 ], [ 74.355469, 36.879621 ], [ 73.652344, 36.879621 ], [ 73.652344, 36.738884 ], [ 72.773438, 36.738884 ], [ 72.773438, 36.597889 ], [ 72.246094, 36.597889 ], [ 72.246094, 36.456636 ], [ 71.894531, 36.456636 ], [ 71.894531, 36.315125 ], [ 71.718750, 36.315125 ], [ 71.718750, 36.173357 ], [ 71.367188, 36.173357 ], [ 71.367188, 36.031332 ], [ 71.191406, 36.031332 ], [ 71.191406, 35.889050 ], [ 71.367188, 35.889050 ], [ 71.367188, 35.603719 ], [ 71.542969, 35.603719 ], [ 71.542969, 35.029996 ], [ 71.367188, 35.029996 ], [ 71.367188, 34.741612 ], [ 71.191406, 34.741612 ], [ 71.191406, 34.161818 ], [ 71.015625, 34.161818 ], [ 71.015625, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.870416 ], [ 70.136719, 33.870416 ], [ 70.136719, 33.578015 ], [ 70.312500, 33.578015 ], [ 70.312500, 33.284620 ], [ 69.960938, 33.284620 ], [ 69.960938, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.990236 ], [ 69.433594, 32.990236 ], [ 69.433594, 32.694866 ], [ 69.257812, 32.694866 ], [ 69.257812, 31.802893 ], [ 69.082031, 31.802893 ], [ 69.082031, 31.653381 ], [ 67.851562, 31.653381 ], [ 67.851562, 31.503629 ], [ 67.675781, 31.503629 ], [ 67.675781, 31.353637 ], [ 66.972656, 31.353637 ], [ 66.972656, 31.203405 ], [ 66.796875, 31.203405 ], [ 66.796875, 31.052934 ], [ 66.621094, 31.052934 ], [ 66.621094, 30.751278 ], [ 66.445312, 30.751278 ], [ 66.445312, 30.297018 ], [ 66.269531, 30.297018 ], [ 66.269531, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.688053 ], [ 65.390625, 29.688053 ], [ 65.390625, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.382175 ], [ 63.808594, 29.382175 ], [ 63.808594, 29.535230 ], [ 63.281250, 29.535230 ], [ 63.281250, 29.382175 ], [ 62.226562, 29.382175 ], [ 62.226562, 29.535230 ], [ 61.523438, 29.535230 ], [ 61.523438, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.993002 ], [ 61.171875, 29.993002 ], [ 61.171875, 30.297018 ], [ 61.347656, 30.297018 ], [ 61.347656, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.600094 ], [ 61.699219, 30.600094 ], [ 61.699219, 31.353637 ], [ 61.171875, 31.353637 ], [ 61.171875, 31.503629 ], [ 60.996094, 31.503629 ], [ 60.996094, 31.802893 ], [ 60.820312, 31.802893 ], [ 60.820312, 32.398516 ], [ 60.644531, 32.398516 ], [ 60.644531, 32.694866 ], [ 60.468750, 32.694866 ], [ 60.468750, 32.990236 ], [ 60.644531, 32.990236 ], [ 60.644531, 33.284620 ], [ 60.820312, 33.284620 ], [ 60.820312, 33.431441 ], [ 60.996094, 33.431441 ], [ 60.996094, 33.578015 ], [ 60.644531, 33.578015 ], [ 60.644531, 33.724340 ], [ 60.468750, 33.724340 ], [ 60.468750, 33.870416 ], [ 60.644531, 33.870416 ], [ 60.644531, 34.161818 ], [ 60.820312, 34.161818 ], [ 60.820312, 34.741612 ], [ 60.996094, 34.741612 ], [ 60.996094, 35.317366 ], [ 61.171875, 35.317366 ], [ 61.171875, 35.603719 ], [ 61.347656, 35.603719 ], [ 61.347656, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.317366 ], [ 62.753906, 35.317366 ], [ 62.753906, 35.460670 ], [ 63.105469, 35.460670 ], [ 63.105469, 35.746512 ], [ 63.281250, 35.746512 ], [ 63.281250, 35.889050 ], [ 63.808594, 35.889050 ], [ 63.808594, 36.031332 ], [ 64.160156, 36.031332 ], [ 64.160156, 36.173357 ], [ 64.511719, 36.173357 ], [ 64.511719, 36.738884 ], [ 64.687500, 36.738884 ], [ 64.687500, 37.160317 ], [ 65.214844, 37.160317 ], [ 65.214844, 37.300275 ], [ 65.566406, 37.300275 ], [ 65.566406, 37.439974 ], [ 65.742188, 37.439974 ], [ 65.742188, 37.579413 ], [ 66.093750, 37.579413 ], [ 66.093750, 37.439974 ], [ 66.269531, 37.439974 ], [ 66.269531, 37.300275 ], [ 67.324219, 37.300275 ], [ 67.324219, 37.160317 ], [ 67.851562, 37.160317 ], [ 67.851562, 37.020098 ], [ 68.554688, 37.020098 ], [ 68.554688, 37.160317 ], [ 69.257812, 37.160317 ], [ 69.257812, 37.300275 ], [ 69.433594, 37.300275 ], [ 69.433594, 37.579413 ], [ 70.312500, 37.579413 ], [ 70.312500, 38.134557 ], [ 70.488281, 38.134557 ], [ 70.488281, 38.272689 ], [ 70.664062, 38.272689 ], [ 70.664062, 38.410558 ], [ 71.191406, 38.410558 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 71.015625, 38.410558 ], [ 71.015625, 38.272689 ], [ 71.191406, 38.272689 ], [ 71.191406, 37.996163 ], [ 71.542969, 37.996163 ], [ 71.542969, 37.579413 ], [ 71.367188, 37.579413 ], [ 71.367188, 37.020098 ], [ 71.542969, 37.020098 ], [ 71.542969, 36.738884 ], [ 71.894531, 36.738884 ], [ 71.894531, 36.879621 ], [ 72.070312, 36.879621 ], [ 72.070312, 37.020098 ], [ 72.421875, 37.020098 ], [ 72.421875, 37.160317 ], [ 72.773438, 37.160317 ], [ 72.773438, 37.300275 ], [ 72.949219, 37.300275 ], [ 72.949219, 37.439974 ], [ 73.125000, 37.439974 ], [ 73.125000, 37.579413 ], [ 73.300781, 37.579413 ], [ 73.300781, 37.439974 ], [ 74.882812, 37.439974 ], [ 74.882812, 37.300275 ], [ 75.058594, 37.300275 ], [ 75.058594, 37.160317 ], [ 74.882812, 37.160317 ], [ 74.882812, 37.020098 ], [ 74.355469, 37.020098 ], [ 74.355469, 36.879621 ], [ 73.476562, 36.879621 ], [ 73.476562, 36.738884 ], [ 72.421875, 36.738884 ], [ 72.421875, 36.597889 ], [ 71.718750, 36.597889 ], [ 71.718750, 36.456636 ], [ 71.542969, 36.456636 ], [ 71.542969, 36.315125 ], [ 71.367188, 36.315125 ], [ 71.367188, 36.173357 ], [ 71.191406, 36.173357 ], [ 71.191406, 35.889050 ], [ 71.367188, 35.889050 ], [ 71.367188, 35.460670 ], [ 71.542969, 35.460670 ], [ 71.542969, 35.029996 ], [ 71.367188, 35.029996 ], [ 71.367188, 34.885931 ], [ 71.191406, 34.885931 ], [ 71.191406, 34.741612 ], [ 71.015625, 34.741612 ], [ 71.015625, 34.161818 ], [ 70.839844, 34.161818 ], [ 70.839844, 34.016242 ], [ 70.136719, 34.016242 ], [ 70.136719, 34.161818 ], [ 69.785156, 34.161818 ], [ 69.785156, 34.016242 ], [ 69.960938, 34.016242 ], [ 69.960938, 33.724340 ], [ 70.136719, 33.724340 ], [ 70.136719, 33.431441 ], [ 70.312500, 33.431441 ], [ 70.312500, 33.284620 ], [ 69.960938, 33.284620 ], [ 69.960938, 33.137551 ], [ 69.609375, 33.137551 ], [ 69.609375, 32.990236 ], [ 69.433594, 32.990236 ], [ 69.433594, 32.694866 ], [ 69.257812, 32.694866 ], [ 69.257812, 31.802893 ], [ 69.082031, 31.802893 ], [ 69.082031, 31.653381 ], [ 68.554688, 31.653381 ], [ 68.554688, 31.802893 ], [ 68.203125, 31.802893 ], [ 68.203125, 31.653381 ], [ 67.675781, 31.653381 ], [ 67.675781, 31.353637 ], [ 66.796875, 31.353637 ], [ 66.796875, 31.203405 ], [ 66.621094, 31.203405 ], [ 66.621094, 31.052934 ], [ 66.445312, 31.052934 ], [ 66.445312, 30.751278 ], [ 66.269531, 30.751278 ], [ 66.269531, 29.993002 ], [ 66.093750, 29.993002 ], [ 66.093750, 29.840644 ], [ 65.742188, 29.840644 ], [ 65.742188, 29.688053 ], [ 65.390625, 29.688053 ], [ 65.390625, 29.535230 ], [ 64.511719, 29.535230 ], [ 64.511719, 29.688053 ], [ 64.335938, 29.688053 ], [ 64.335938, 29.535230 ], [ 64.160156, 29.535230 ], [ 64.160156, 29.382175 ], [ 63.632812, 29.382175 ], [ 63.632812, 29.535230 ], [ 63.105469, 29.535230 ], [ 63.105469, 29.382175 ], [ 62.050781, 29.382175 ], [ 62.050781, 29.535230 ], [ 61.523438, 29.535230 ], [ 61.523438, 29.688053 ], [ 60.996094, 29.688053 ], [ 60.996094, 29.993002 ], [ 61.171875, 29.993002 ], [ 61.171875, 30.297018 ], [ 61.347656, 30.297018 ], [ 61.347656, 30.448674 ], [ 61.523438, 30.448674 ], [ 61.523438, 30.600094 ], [ 61.699219, 30.600094 ], [ 61.699219, 31.503629 ], [ 61.171875, 31.503629 ], [ 61.171875, 31.653381 ], [ 60.820312, 31.653381 ], [ 60.820312, 32.398516 ], [ 60.644531, 32.398516 ], [ 60.644531, 32.694866 ], [ 60.468750, 32.694866 ], [ 60.468750, 33.137551 ], [ 60.644531, 33.137551 ], [ 60.644531, 33.431441 ], [ 60.820312, 33.431441 ], [ 60.820312, 33.578015 ], [ 60.468750, 33.578015 ], [ 60.468750, 34.016242 ], [ 60.644531, 34.016242 ], [ 60.644531, 34.597042 ], [ 60.820312, 34.597042 ], [ 60.820312, 35.029996 ], [ 60.996094, 35.029996 ], [ 60.996094, 35.460670 ], [ 61.171875, 35.460670 ], [ 61.171875, 35.603719 ], [ 61.523438, 35.603719 ], [ 61.523438, 35.460670 ], [ 61.875000, 35.460670 ], [ 61.875000, 35.317366 ], [ 62.753906, 35.317366 ], [ 62.753906, 35.460670 ], [ 62.929688, 35.460670 ], [ 62.929688, 35.603719 ], [ 63.105469, 35.603719 ], [ 63.105469, 35.889050 ], [ 63.632812, 35.889050 ], [ 63.632812, 36.031332 ], [ 64.160156, 36.031332 ], [ 64.160156, 36.173357 ], [ 64.511719, 36.173357 ], [ 64.511719, 36.738884 ], [ 64.687500, 36.738884 ], [ 64.687500, 37.160317 ], [ 65.039062, 37.160317 ], [ 65.039062, 37.300275 ], [ 65.390625, 37.300275 ], [ 65.390625, 37.439974 ], [ 65.566406, 37.439974 ], [ 65.566406, 37.579413 ], [ 65.917969, 37.579413 ], [ 65.917969, 37.439974 ], [ 66.972656, 37.439974 ], [ 66.972656, 37.300275 ], [ 67.324219, 37.300275 ], [ 67.324219, 37.160317 ], [ 68.378906, 37.160317 ], [ 68.378906, 37.300275 ], [ 68.906250, 37.300275 ], [ 68.906250, 37.160317 ], [ 69.082031, 37.160317 ], [ 69.082031, 37.300275 ], [ 69.257812, 37.300275 ], [ 69.257812, 37.579413 ], [ 69.433594, 37.579413 ], [ 69.433594, 37.718590 ], [ 70.136719, 37.718590 ], [ 70.136719, 37.996163 ], [ 70.312500, 37.996163 ], [ 70.312500, 38.272689 ], [ 70.488281, 38.272689 ], [ 70.488281, 38.410558 ], [ 71.015625, 38.410558 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.996094, 29.688053 ], [ 61.523438, 29.688053 ], [ 61.523438, 29.535230 ], [ 62.226562, 29.535230 ], [ 62.226562, 29.382175 ], [ 63.281250, 29.382175 ], [ 63.281250, 29.535230 ], [ 63.808594, 29.535230 ], [ 63.808594, 29.382175 ], [ 64.335938, 29.382175 ], [ 64.335938, 29.535230 ], [ 65.390625, 29.535230 ], [ 65.390625, 29.688053 ], [ 66.093750, 29.688053 ], [ 66.093750, 29.840644 ], [ 66.269531, 29.840644 ], [ 66.269531, 30.297018 ], [ 66.445312, 30.297018 ], [ 66.445312, 30.751278 ], [ 66.621094, 30.751278 ], [ 66.621094, 31.052934 ], [ 66.796875, 31.052934 ], [ 66.796875, 31.203405 ], [ 66.972656, 31.203405 ], [ 66.972656, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.675781, 31.503629 ], [ 67.851562, 31.503629 ], [ 67.851562, 31.653381 ], [ 69.082031, 31.653381 ], [ 69.082031, 31.802893 ], [ 69.257812, 31.802893 ], [ 69.257812, 32.694866 ], [ 69.433594, 32.694866 ], [ 69.433594, 32.990236 ], [ 69.609375, 32.990236 ], [ 69.609375, 33.137551 ], [ 69.960938, 33.137551 ], [ 69.960938, 33.284620 ], [ 70.312500, 33.284620 ], [ 70.312500, 33.578015 ], [ 70.136719, 33.578015 ], [ 70.136719, 33.870416 ], [ 69.960938, 33.870416 ], [ 69.960938, 34.016242 ], [ 71.015625, 34.016242 ], [ 71.015625, 34.161818 ], [ 71.191406, 34.161818 ], [ 71.191406, 34.741612 ], [ 71.367188, 34.741612 ], [ 71.367188, 35.029996 ], [ 71.542969, 35.029996 ], [ 71.542969, 35.603719 ], [ 71.367188, 35.603719 ], [ 71.367188, 35.889050 ], [ 71.191406, 35.889050 ], [ 71.191406, 36.031332 ], [ 71.367188, 36.031332 ], [ 71.367188, 36.173357 ], [ 71.718750, 36.173357 ], [ 71.718750, 36.315125 ], [ 71.894531, 36.315125 ], [ 71.894531, 36.456636 ], [ 72.246094, 36.456636 ], [ 72.246094, 36.597889 ], [ 72.773438, 36.597889 ], [ 72.773438, 36.738884 ], [ 73.652344, 36.738884 ], [ 73.652344, 36.879621 ], [ 74.355469, 36.879621 ], [ 74.355469, 37.020098 ], [ 75.058594, 37.020098 ], [ 75.058594, 37.160317 ], [ 75.234375, 37.160317 ], [ 75.234375, 37.020098 ], [ 75.410156, 37.020098 ], [ 75.410156, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.738884 ], [ 75.761719, 36.738884 ], [ 75.761719, 36.597889 ], [ 75.937500, 36.597889 ], [ 75.937500, 36.173357 ], [ 76.113281, 36.173357 ], [ 76.113281, 35.889050 ], [ 76.289062, 35.889050 ], [ 76.289062, 35.746512 ], [ 76.816406, 35.746512 ], [ 76.816406, 35.603719 ], [ 77.519531, 35.603719 ], [ 77.519531, 35.460670 ], [ 77.871094, 35.460670 ], [ 77.871094, 35.317366 ], [ 77.695312, 35.317366 ], [ 77.695312, 35.173808 ], [ 77.519531, 35.173808 ], [ 77.519531, 35.029996 ], [ 77.343750, 35.029996 ], [ 77.343750, 34.885931 ], [ 77.167969, 34.885931 ], [ 77.167969, 34.741612 ], [ 76.992188, 34.741612 ], [ 76.992188, 34.597042 ], [ 76.464844, 34.597042 ], [ 76.464844, 34.452218 ], [ 75.234375, 34.452218 ], [ 75.234375, 34.597042 ], [ 74.531250, 34.597042 ], [ 74.531250, 34.741612 ], [ 74.179688, 34.741612 ], [ 74.179688, 34.597042 ], [ 74.003906, 34.597042 ], [ 74.003906, 34.307144 ], [ 73.828125, 34.307144 ], [ 73.828125, 34.016242 ], [ 74.003906, 34.016242 ], [ 74.003906, 33.578015 ], [ 74.179688, 33.578015 ], [ 74.179688, 33.137551 ], [ 74.355469, 33.137551 ], [ 74.355469, 32.842674 ], [ 74.531250, 32.842674 ], [ 74.531250, 32.546813 ], [ 74.707031, 32.546813 ], [ 74.707031, 32.398516 ], [ 75.058594, 32.398516 ], [ 75.058594, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 32.101190 ], [ 75.058594, 32.101190 ], [ 75.058594, 31.952162 ], [ 74.707031, 31.952162 ], [ 74.707031, 31.802893 ], [ 74.531250, 31.802893 ], [ 74.531250, 31.653381 ], [ 74.355469, 31.653381 ], [ 74.355469, 30.902225 ], [ 74.179688, 30.902225 ], [ 74.179688, 30.600094 ], [ 74.003906, 30.600094 ], [ 74.003906, 30.448674 ], [ 73.828125, 30.448674 ], [ 73.828125, 30.297018 ], [ 73.652344, 30.297018 ], [ 73.652344, 29.993002 ], [ 73.476562, 29.993002 ], [ 73.476562, 29.840644 ], [ 73.300781, 29.840644 ], [ 73.300781, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 29.228890 ], [ 72.949219, 29.228890 ], [ 72.949219, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 28.767659 ], [ 72.597656, 28.767659 ], [ 72.597656, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.459033 ], [ 72.246094, 28.459033 ], [ 72.246094, 28.149503 ], [ 72.070312, 28.149503 ], [ 72.070312, 27.994401 ], [ 71.894531, 27.994401 ], [ 71.894531, 27.839076 ], [ 71.015625, 27.839076 ], [ 71.015625, 27.994401 ], [ 70.664062, 27.994401 ], [ 70.664062, 27.839076 ], [ 70.488281, 27.839076 ], [ 70.488281, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.527758 ], [ 70.136719, 27.527758 ], [ 70.136719, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.215556 ], [ 69.785156, 27.215556 ], [ 69.785156, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 26.902477 ], [ 69.433594, 26.902477 ], [ 69.433594, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 26.588527 ], [ 69.960938, 26.588527 ], [ 69.960938, 26.431228 ], [ 70.136719, 26.431228 ], [ 70.136719, 26.115986 ], [ 70.312500, 26.115986 ], [ 70.312500, 25.641526 ], [ 70.488281, 25.641526 ], [ 70.488281, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.165173 ], [ 70.839844, 25.165173 ], [ 70.839844, 24.686952 ], [ 71.015625, 24.686952 ], [ 71.015625, 24.367114 ], [ 68.906250, 24.367114 ], [ 68.906250, 24.206890 ], [ 68.730469, 24.206890 ], [ 68.730469, 24.046464 ], [ 68.554688, 24.046464 ], [ 68.554688, 23.885838 ], [ 68.378906, 23.885838 ], [ 68.378906, 23.725012 ], [ 67.675781, 23.725012 ], [ 67.675781, 23.885838 ], [ 67.500000, 23.885838 ], [ 67.500000, 24.046464 ], [ 67.324219, 24.046464 ], [ 67.324219, 24.367114 ], [ 67.148438, 24.367114 ], [ 67.148438, 24.686952 ], [ 66.972656, 24.686952 ], [ 66.972656, 24.846565 ], [ 66.796875, 24.846565 ], [ 66.796875, 25.165173 ], [ 66.621094, 25.165173 ], [ 66.621094, 25.324167 ], [ 66.445312, 25.324167 ], [ 66.445312, 25.482951 ], [ 66.093750, 25.482951 ], [ 66.093750, 25.324167 ], [ 65.039062, 25.324167 ], [ 65.039062, 25.165173 ], [ 62.402344, 25.165173 ], [ 62.402344, 25.005973 ], [ 61.523438, 25.005973 ], [ 61.523438, 25.324167 ], [ 61.699219, 25.324167 ], [ 61.699219, 25.958045 ], [ 61.875000, 25.958045 ], [ 61.875000, 26.273714 ], [ 62.226562, 26.273714 ], [ 62.226562, 26.431228 ], [ 62.753906, 26.431228 ], [ 62.753906, 26.588527 ], [ 63.105469, 26.588527 ], [ 63.105469, 26.745610 ], [ 63.281250, 26.745610 ], [ 63.281250, 27.215556 ], [ 62.929688, 27.215556 ], [ 62.929688, 27.371767 ], [ 62.753906, 27.371767 ], [ 62.753906, 28.304381 ], [ 62.402344, 28.304381 ], [ 62.402344, 28.459033 ], [ 62.050781, 28.459033 ], [ 62.050781, 28.613459 ], [ 61.699219, 28.613459 ], [ 61.699219, 28.767659 ], [ 61.523438, 28.767659 ], [ 61.523438, 29.075375 ], [ 61.347656, 29.075375 ], [ 61.347656, 29.228890 ], [ 61.171875, 29.228890 ], [ 61.171875, 29.535230 ], [ 60.996094, 29.535230 ], [ 60.996094, 29.688053 ] ] ], [ [ [ 60.996094, 29.688053 ], [ 60.820312, 29.688053 ], [ 60.820312, 29.840644 ], [ 60.996094, 29.840644 ], [ 60.996094, 29.688053 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.996094, 29.688053 ], [ 61.523438, 29.688053 ], [ 61.523438, 29.535230 ], [ 62.050781, 29.535230 ], [ 62.050781, 29.382175 ], [ 63.105469, 29.382175 ], [ 63.105469, 29.535230 ], [ 63.632812, 29.535230 ], [ 63.632812, 29.382175 ], [ 64.160156, 29.382175 ], [ 64.160156, 29.535230 ], [ 64.335938, 29.535230 ], [ 64.335938, 29.688053 ], [ 64.511719, 29.688053 ], [ 64.511719, 29.535230 ], [ 65.390625, 29.535230 ], [ 65.390625, 29.688053 ], [ 65.742188, 29.688053 ], [ 65.742188, 29.840644 ], [ 66.093750, 29.840644 ], [ 66.093750, 29.993002 ], [ 66.269531, 29.993002 ], [ 66.269531, 30.751278 ], [ 66.445312, 30.751278 ], [ 66.445312, 31.052934 ], [ 66.621094, 31.052934 ], [ 66.621094, 31.203405 ], [ 66.796875, 31.203405 ], [ 66.796875, 31.353637 ], [ 67.675781, 31.353637 ], [ 67.675781, 31.653381 ], [ 68.203125, 31.653381 ], [ 68.203125, 31.802893 ], [ 68.554688, 31.802893 ], [ 68.554688, 31.653381 ], [ 69.082031, 31.653381 ], [ 69.082031, 31.802893 ], [ 69.257812, 31.802893 ], [ 69.257812, 32.694866 ], [ 69.433594, 32.694866 ], [ 69.433594, 32.990236 ], [ 69.609375, 32.990236 ], [ 69.609375, 33.137551 ], [ 69.960938, 33.137551 ], [ 69.960938, 33.284620 ], [ 70.312500, 33.284620 ], [ 70.312500, 33.431441 ], [ 70.136719, 33.431441 ], [ 70.136719, 33.724340 ], [ 69.960938, 33.724340 ], [ 69.960938, 34.016242 ], [ 69.785156, 34.016242 ], [ 69.785156, 34.161818 ], [ 70.136719, 34.161818 ], [ 70.136719, 34.016242 ], [ 70.839844, 34.016242 ], [ 70.839844, 34.161818 ], [ 71.015625, 34.161818 ], [ 71.015625, 34.741612 ], [ 71.191406, 34.741612 ], [ 71.191406, 34.885931 ], [ 71.367188, 34.885931 ], [ 71.367188, 35.029996 ], [ 71.542969, 35.029996 ], [ 71.542969, 35.460670 ], [ 71.367188, 35.460670 ], [ 71.367188, 35.889050 ], [ 71.191406, 35.889050 ], [ 71.191406, 36.173357 ], [ 71.367188, 36.173357 ], [ 71.367188, 36.315125 ], [ 71.542969, 36.315125 ], [ 71.542969, 36.456636 ], [ 71.718750, 36.456636 ], [ 71.718750, 36.597889 ], [ 72.421875, 36.597889 ], [ 72.421875, 36.738884 ], [ 73.476562, 36.738884 ], [ 73.476562, 36.879621 ], [ 74.355469, 36.879621 ], [ 74.355469, 37.020098 ], [ 74.882812, 37.020098 ], [ 74.882812, 37.160317 ], [ 75.058594, 37.160317 ], [ 75.058594, 37.020098 ], [ 75.234375, 37.020098 ], [ 75.234375, 36.879621 ], [ 75.585938, 36.879621 ], [ 75.585938, 36.738884 ], [ 75.761719, 36.738884 ], [ 75.761719, 36.456636 ], [ 75.937500, 36.456636 ], [ 75.937500, 36.173357 ], [ 76.113281, 36.173357 ], [ 76.113281, 36.031332 ], [ 76.289062, 36.031332 ], [ 76.289062, 35.889050 ], [ 76.816406, 35.889050 ], [ 76.816406, 35.746512 ], [ 77.343750, 35.746512 ], [ 77.343750, 35.603719 ], [ 77.695312, 35.603719 ], [ 77.695312, 35.460670 ], [ 77.519531, 35.460670 ], [ 77.519531, 35.317366 ], [ 77.343750, 35.317366 ], [ 77.343750, 35.173808 ], [ 77.167969, 35.173808 ], [ 77.167969, 34.885931 ], [ 76.992188, 34.885931 ], [ 76.992188, 34.741612 ], [ 76.289062, 34.741612 ], [ 76.289062, 34.597042 ], [ 75.058594, 34.597042 ], [ 75.058594, 34.741612 ], [ 74.355469, 34.741612 ], [ 74.355469, 34.885931 ], [ 74.179688, 34.885931 ], [ 74.179688, 34.741612 ], [ 74.003906, 34.741612 ], [ 74.003906, 34.597042 ], [ 73.828125, 34.597042 ], [ 73.828125, 34.452218 ], [ 73.652344, 34.452218 ], [ 73.652344, 34.161818 ], [ 73.828125, 34.161818 ], [ 73.828125, 33.724340 ], [ 74.003906, 33.724340 ], [ 74.003906, 33.284620 ], [ 74.179688, 33.284620 ], [ 74.179688, 32.990236 ], [ 74.355469, 32.990236 ], [ 74.355469, 32.694866 ], [ 74.707031, 32.694866 ], [ 74.707031, 32.546813 ], [ 75.058594, 32.546813 ], [ 75.058594, 32.398516 ], [ 75.234375, 32.398516 ], [ 75.234375, 32.249974 ], [ 75.058594, 32.249974 ], [ 75.058594, 32.101190 ], [ 74.707031, 32.101190 ], [ 74.707031, 31.952162 ], [ 74.531250, 31.952162 ], [ 74.531250, 31.802893 ], [ 74.355469, 31.802893 ], [ 74.355469, 30.902225 ], [ 74.179688, 30.902225 ], [ 74.179688, 30.751278 ], [ 74.003906, 30.751278 ], [ 74.003906, 30.600094 ], [ 73.828125, 30.600094 ], [ 73.828125, 30.297018 ], [ 73.652344, 30.297018 ], [ 73.652344, 30.145127 ], [ 73.476562, 30.145127 ], [ 73.476562, 29.993002 ], [ 73.300781, 29.993002 ], [ 73.300781, 29.840644 ], [ 73.125000, 29.840644 ], [ 73.125000, 29.535230 ], [ 72.949219, 29.535230 ], [ 72.949219, 29.228890 ], [ 72.773438, 29.228890 ], [ 72.773438, 28.921631 ], [ 72.597656, 28.921631 ], [ 72.597656, 28.767659 ], [ 72.421875, 28.767659 ], [ 72.421875, 28.613459 ], [ 72.246094, 28.613459 ], [ 72.246094, 28.304381 ], [ 72.070312, 28.304381 ], [ 72.070312, 28.149503 ], [ 71.894531, 28.149503 ], [ 71.894531, 27.994401 ], [ 70.488281, 27.994401 ], [ 70.488281, 27.839076 ], [ 70.312500, 27.839076 ], [ 70.312500, 27.683528 ], [ 70.136719, 27.683528 ], [ 70.136719, 27.527758 ], [ 69.960938, 27.527758 ], [ 69.960938, 27.371767 ], [ 69.785156, 27.371767 ], [ 69.785156, 27.215556 ], [ 69.609375, 27.215556 ], [ 69.609375, 27.059126 ], [ 69.433594, 27.059126 ], [ 69.433594, 26.902477 ], [ 69.609375, 26.902477 ], [ 69.609375, 26.745610 ], [ 69.960938, 26.745610 ], [ 69.960938, 26.588527 ], [ 70.136719, 26.588527 ], [ 70.136719, 25.641526 ], [ 70.312500, 25.641526 ], [ 70.312500, 25.482951 ], [ 70.664062, 25.482951 ], [ 70.664062, 25.324167 ], [ 70.839844, 25.324167 ], [ 70.839844, 24.846565 ], [ 71.015625, 24.846565 ], [ 71.015625, 24.367114 ], [ 68.730469, 24.367114 ], [ 68.730469, 24.206890 ], [ 68.554688, 24.206890 ], [ 68.554688, 24.046464 ], [ 68.378906, 24.046464 ], [ 68.378906, 23.885838 ], [ 68.203125, 23.885838 ], [ 68.203125, 23.725012 ], [ 67.675781, 23.725012 ], [ 67.675781, 23.885838 ], [ 67.324219, 23.885838 ], [ 67.324219, 24.206890 ], [ 67.148438, 24.206890 ], [ 67.148438, 24.527135 ], [ 66.972656, 24.527135 ], [ 66.972656, 24.686952 ], [ 66.796875, 24.686952 ], [ 66.796875, 24.846565 ], [ 66.621094, 24.846565 ], [ 66.621094, 25.165173 ], [ 66.445312, 25.165173 ], [ 66.445312, 25.324167 ], [ 66.269531, 25.324167 ], [ 66.269531, 25.482951 ], [ 65.566406, 25.482951 ], [ 65.566406, 25.324167 ], [ 62.226562, 25.324167 ], [ 62.226562, 25.165173 ], [ 61.347656, 25.165173 ], [ 61.347656, 25.324167 ], [ 61.523438, 25.324167 ], [ 61.523438, 25.641526 ], [ 61.699219, 25.641526 ], [ 61.699219, 25.958045 ], [ 61.875000, 25.958045 ], [ 61.875000, 26.273714 ], [ 62.226562, 26.273714 ], [ 62.226562, 26.431228 ], [ 62.578125, 26.431228 ], [ 62.578125, 26.588527 ], [ 62.929688, 26.588527 ], [ 62.929688, 26.745610 ], [ 63.281250, 26.745610 ], [ 63.281250, 27.059126 ], [ 63.105469, 27.059126 ], [ 63.105469, 27.215556 ], [ 62.929688, 27.215556 ], [ 62.929688, 27.371767 ], [ 62.753906, 27.371767 ], [ 62.753906, 27.839076 ], [ 62.578125, 27.839076 ], [ 62.578125, 28.304381 ], [ 62.402344, 28.304381 ], [ 62.402344, 28.459033 ], [ 62.050781, 28.459033 ], [ 62.050781, 28.613459 ], [ 61.699219, 28.613459 ], [ 61.699219, 28.921631 ], [ 61.523438, 28.921631 ], [ 61.523438, 29.228890 ], [ 61.347656, 29.228890 ], [ 61.347656, 29.382175 ], [ 61.171875, 29.382175 ], [ 61.171875, 29.535230 ], [ 60.996094, 29.535230 ], [ 60.996094, 29.688053 ] ] ], [ [ [ 60.996094, 29.688053 ], [ 60.820312, 29.688053 ], [ 60.820312, 29.840644 ], [ 60.996094, 29.840644 ], [ 60.996094, 29.688053 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.914062, 30.297018 ], [ 81.914062, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.993002 ], [ 82.617188, 29.993002 ], [ 82.617188, 29.840644 ], [ 82.792969, 29.840644 ], [ 82.792969, 29.688053 ], [ 83.144531, 29.688053 ], [ 83.144531, 29.535230 ], [ 83.496094, 29.535230 ], [ 83.496094, 29.382175 ], [ 83.847656, 29.382175 ], [ 83.847656, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.199219, 28.921631 ], [ 84.199219, 28.767659 ], [ 84.550781, 28.767659 ], [ 84.550781, 28.613459 ], [ 85.078125, 28.613459 ], [ 85.078125, 28.459033 ], [ 85.253906, 28.459033 ], [ 85.253906, 28.304381 ], [ 85.605469, 28.304381 ], [ 85.605469, 28.149503 ], [ 86.308594, 28.149503 ], [ 86.308594, 27.994401 ], [ 87.363281, 27.994401 ], [ 87.363281, 27.839076 ], [ 88.066406, 27.839076 ], [ 88.066406, 27.059126 ], [ 88.242188, 27.059126 ], [ 88.242188, 26.588527 ], [ 88.066406, 26.588527 ], [ 88.066406, 26.431228 ], [ 86.484375, 26.431228 ], [ 86.484375, 26.588527 ], [ 85.429688, 26.588527 ], [ 85.429688, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 26.902477 ], [ 84.902344, 26.902477 ], [ 84.902344, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.215556 ], [ 83.847656, 27.215556 ], [ 83.847656, 27.371767 ], [ 82.968750, 27.371767 ], [ 82.968750, 27.527758 ], [ 82.617188, 27.527758 ], [ 82.617188, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.839076 ], [ 81.914062, 27.839076 ], [ 81.914062, 27.994401 ], [ 81.738281, 27.994401 ], [ 81.738281, 28.149503 ], [ 81.386719, 28.149503 ], [ 81.386719, 28.304381 ], [ 81.035156, 28.304381 ], [ 81.035156, 28.459033 ], [ 80.683594, 28.459033 ], [ 80.683594, 28.613459 ], [ 80.332031, 28.613459 ], [ 80.332031, 28.767659 ], [ 80.156250, 28.767659 ], [ 80.156250, 28.921631 ], [ 80.332031, 28.921631 ], [ 80.332031, 29.382175 ], [ 80.507812, 29.382175 ], [ 80.507812, 29.688053 ], [ 80.683594, 29.688053 ], [ 80.683594, 29.840644 ], [ 80.859375, 29.840644 ], [ 80.859375, 29.993002 ], [ 81.035156, 29.993002 ], [ 81.035156, 30.145127 ], [ 81.210938, 30.145127 ], [ 81.210938, 30.297018 ], [ 81.914062, 30.297018 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.562500, 30.448674 ], [ 81.562500, 30.297018 ], [ 81.914062, 30.297018 ], [ 81.914062, 30.145127 ], [ 82.265625, 30.145127 ], [ 82.265625, 29.993002 ], [ 82.617188, 29.993002 ], [ 82.617188, 29.840644 ], [ 82.792969, 29.840644 ], [ 82.792969, 29.688053 ], [ 83.144531, 29.688053 ], [ 83.144531, 29.535230 ], [ 83.496094, 29.535230 ], [ 83.496094, 29.382175 ], [ 83.847656, 29.382175 ], [ 83.847656, 29.228890 ], [ 84.023438, 29.228890 ], [ 84.023438, 28.921631 ], [ 84.375000, 28.921631 ], [ 84.375000, 28.767659 ], [ 84.902344, 28.767659 ], [ 84.902344, 28.613459 ], [ 85.253906, 28.613459 ], [ 85.253906, 28.459033 ], [ 85.605469, 28.459033 ], [ 85.605469, 28.304381 ], [ 85.957031, 28.304381 ], [ 85.957031, 28.149503 ], [ 86.484375, 28.149503 ], [ 86.484375, 27.994401 ], [ 88.066406, 27.994401 ], [ 88.066406, 27.683528 ], [ 87.890625, 27.683528 ], [ 87.890625, 27.215556 ], [ 88.066406, 27.215556 ], [ 88.066406, 26.588527 ], [ 87.890625, 26.588527 ], [ 87.890625, 26.431228 ], [ 86.835938, 26.431228 ], [ 86.835938, 26.588527 ], [ 86.132812, 26.588527 ], [ 86.132812, 26.745610 ], [ 85.078125, 26.745610 ], [ 85.078125, 26.902477 ], [ 84.902344, 26.902477 ], [ 84.902344, 27.059126 ], [ 84.726562, 27.059126 ], [ 84.726562, 27.215556 ], [ 84.550781, 27.215556 ], [ 84.550781, 27.371767 ], [ 82.968750, 27.371767 ], [ 82.968750, 27.527758 ], [ 82.617188, 27.527758 ], [ 82.617188, 27.683528 ], [ 82.265625, 27.683528 ], [ 82.265625, 27.839076 ], [ 81.914062, 27.839076 ], [ 81.914062, 27.994401 ], [ 81.738281, 27.994401 ], [ 81.738281, 28.149503 ], [ 81.386719, 28.149503 ], [ 81.386719, 28.304381 ], [ 81.035156, 28.304381 ], [ 81.035156, 28.459033 ], [ 80.683594, 28.459033 ], [ 80.683594, 28.613459 ], [ 80.332031, 28.613459 ], [ 80.332031, 28.767659 ], [ 79.980469, 28.767659 ], [ 79.980469, 29.075375 ], [ 80.156250, 29.075375 ], [ 80.156250, 29.535230 ], [ 80.332031, 29.535230 ], [ 80.332031, 29.840644 ], [ 80.507812, 29.840644 ], [ 80.507812, 29.993002 ], [ 80.859375, 29.993002 ], [ 80.859375, 30.145127 ], [ 81.035156, 30.145127 ], [ 81.035156, 30.297018 ], [ 81.386719, 30.297018 ], [ 81.386719, 30.448674 ], [ 81.562500, 30.448674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.046875, 35.317366 ], [ 78.046875, 35.173808 ], [ 78.222656, 35.173808 ], [ 78.222656, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.741612 ], [ 78.574219, 34.741612 ], [ 78.574219, 34.597042 ], [ 78.750000, 34.597042 ], [ 78.750000, 34.307144 ], [ 78.925781, 34.307144 ], [ 78.925781, 33.870416 ], [ 78.750000, 33.870416 ], [ 78.750000, 33.431441 ], [ 78.925781, 33.431441 ], [ 78.925781, 33.284620 ], [ 79.101562, 33.284620 ], [ 79.101562, 32.990236 ], [ 79.277344, 32.990236 ], [ 79.277344, 32.694866 ], [ 79.101562, 32.694866 ], [ 79.101562, 32.546813 ], [ 78.398438, 32.546813 ], [ 78.398438, 32.249974 ], [ 78.574219, 32.249974 ], [ 78.574219, 31.653381 ], [ 78.750000, 31.653381 ], [ 78.750000, 31.353637 ], [ 79.101562, 31.353637 ], [ 79.101562, 31.203405 ], [ 79.277344, 31.203405 ], [ 79.277344, 31.052934 ], [ 79.628906, 31.052934 ], [ 79.628906, 30.902225 ], [ 79.804688, 30.902225 ], [ 79.804688, 30.751278 ], [ 80.156250, 30.751278 ], [ 80.156250, 30.600094 ], [ 80.332031, 30.600094 ], [ 80.332031, 30.448674 ], [ 80.507812, 30.448674 ], [ 80.507812, 30.297018 ], [ 80.859375, 30.297018 ], [ 80.859375, 30.145127 ], [ 81.035156, 30.145127 ], [ 81.035156, 29.993002 ], [ 80.859375, 29.993002 ], [ 80.859375, 29.840644 ], [ 80.683594, 29.840644 ], [ 80.683594, 29.688053 ], [ 80.507812, 29.688053 ], [ 80.507812, 29.382175 ], [ 80.332031, 29.382175 ], [ 80.332031, 28.921631 ], [ 80.156250, 28.921631 ], [ 80.156250, 28.767659 ], [ 80.332031, 28.767659 ], [ 80.332031, 28.613459 ], [ 80.683594, 28.613459 ], [ 80.683594, 28.459033 ], [ 81.035156, 28.459033 ], [ 81.035156, 28.304381 ], [ 81.386719, 28.304381 ], [ 81.386719, 28.149503 ], [ 81.738281, 28.149503 ], [ 81.738281, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.839076 ], [ 82.265625, 27.839076 ], [ 82.265625, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.527758 ], [ 82.968750, 27.527758 ], [ 82.968750, 27.371767 ], [ 83.847656, 27.371767 ], [ 83.847656, 27.215556 ], [ 84.726562, 27.215556 ], [ 84.726562, 27.059126 ], [ 84.902344, 27.059126 ], [ 84.902344, 26.902477 ], [ 85.078125, 26.902477 ], [ 85.078125, 26.745610 ], [ 85.429688, 26.745610 ], [ 85.429688, 26.588527 ], [ 86.484375, 26.588527 ], [ 86.484375, 26.431228 ], [ 88.066406, 26.431228 ], [ 88.066406, 26.588527 ], [ 88.242188, 26.588527 ], [ 88.242188, 27.059126 ], [ 88.066406, 27.059126 ], [ 88.066406, 27.839076 ], [ 88.417969, 27.839076 ], [ 88.417969, 27.994401 ], [ 88.769531, 27.994401 ], [ 88.769531, 27.059126 ], [ 88.945312, 27.059126 ], [ 88.945312, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.878906, 26.902477 ], [ 90.878906, 25.165173 ], [ 90.351562, 25.165173 ], [ 90.351562, 25.324167 ], [ 90.000000, 25.324167 ], [ 90.000000, 25.641526 ], [ 89.824219, 25.641526 ], [ 89.824219, 25.958045 ], [ 89.121094, 25.958045 ], [ 89.121094, 26.115986 ], [ 88.769531, 26.115986 ], [ 88.769531, 26.273714 ], [ 88.417969, 26.273714 ], [ 88.417969, 25.958045 ], [ 88.242188, 25.958045 ], [ 88.242188, 25.641526 ], [ 88.417969, 25.641526 ], [ 88.417969, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.324167 ], [ 88.769531, 25.324167 ], [ 88.769531, 25.165173 ], [ 88.945312, 25.165173 ], [ 88.945312, 25.005973 ], [ 88.593750, 25.005973 ], [ 88.593750, 24.846565 ], [ 88.242188, 24.846565 ], [ 88.242188, 24.686952 ], [ 88.066406, 24.686952 ], [ 88.066406, 24.367114 ], [ 88.417969, 24.367114 ], [ 88.417969, 24.206890 ], [ 88.769531, 24.206890 ], [ 88.769531, 23.885838 ], [ 88.593750, 23.885838 ], [ 88.593750, 23.402765 ], [ 88.769531, 23.402765 ], [ 88.769531, 23.079732 ], [ 88.945312, 23.079732 ], [ 88.945312, 21.616579 ], [ 88.417969, 21.616579 ], [ 88.417969, 21.779905 ], [ 88.066406, 21.779905 ], [ 88.066406, 21.616579 ], [ 87.363281, 21.616579 ], [ 87.363281, 21.453069 ], [ 87.011719, 21.453069 ], [ 87.011719, 20.632784 ], [ 86.835938, 20.632784 ], [ 86.835938, 20.468189 ], [ 86.660156, 20.468189 ], [ 86.660156, 20.138470 ], [ 86.484375, 20.138470 ], [ 86.484375, 19.973349 ], [ 86.132812, 19.973349 ], [ 86.132812, 19.808054 ], [ 85.781250, 19.808054 ], [ 85.781250, 19.642588 ], [ 85.429688, 19.642588 ], [ 85.429688, 19.476950 ], [ 85.078125, 19.476950 ], [ 85.078125, 19.311143 ], [ 84.902344, 19.311143 ], [ 84.902344, 19.145168 ], [ 84.726562, 19.145168 ], [ 84.726562, 18.979026 ], [ 84.550781, 18.979026 ], [ 84.550781, 18.646245 ], [ 84.375000, 18.646245 ], [ 84.375000, 18.479609 ], [ 84.199219, 18.479609 ], [ 84.199219, 18.312811 ], [ 84.023438, 18.312811 ], [ 84.023438, 18.145852 ], [ 83.847656, 18.145852 ], [ 83.847656, 17.978733 ], [ 83.496094, 17.978733 ], [ 83.496094, 17.811456 ], [ 83.320312, 17.811456 ], [ 83.320312, 17.644022 ], [ 83.144531, 17.644022 ], [ 83.144531, 17.476432 ], [ 82.968750, 17.476432 ], [ 82.968750, 17.308688 ], [ 82.617188, 17.308688 ], [ 82.617188, 17.140790 ], [ 82.441406, 17.140790 ], [ 82.441406, 16.972741 ], [ 82.265625, 16.972741 ], [ 82.265625, 16.467695 ], [ 81.914062, 16.467695 ], [ 81.914062, 16.299051 ], [ 81.562500, 16.299051 ], [ 81.562500, 16.130262 ], [ 81.210938, 16.130262 ], [ 81.210938, 15.961329 ], [ 80.332031, 15.961329 ], [ 80.332031, 15.623037 ], [ 80.156250, 15.623037 ], [ 80.156250, 15.284185 ], [ 79.980469, 15.284185 ], [ 79.980469, 14.434680 ], [ 80.156250, 14.434680 ], [ 80.156250, 13.410994 ], [ 80.332031, 13.410994 ], [ 80.332031, 12.897489 ], [ 80.156250, 12.897489 ], [ 80.156250, 12.554564 ], [ 79.980469, 12.554564 ], [ 79.980469, 12.211180 ], [ 79.804688, 12.211180 ], [ 79.804688, 10.314919 ], [ 79.277344, 10.314919 ], [ 79.277344, 10.141932 ], [ 79.101562, 10.141932 ], [ 79.101562, 9.795678 ], [ 78.925781, 9.795678 ], [ 78.925781, 9.449062 ], [ 79.101562, 9.449062 ], [ 79.101562, 9.102097 ], [ 78.574219, 9.102097 ], [ 78.574219, 8.928487 ], [ 78.222656, 8.928487 ], [ 78.222656, 8.754795 ], [ 78.046875, 8.754795 ], [ 78.046875, 8.407168 ], [ 77.871094, 8.407168 ], [ 77.871094, 8.059230 ], [ 77.695312, 8.059230 ], [ 77.695312, 7.885147 ], [ 77.343750, 7.885147 ], [ 77.343750, 8.059230 ], [ 77.167969, 8.059230 ], [ 77.167969, 8.407168 ], [ 76.992188, 8.407168 ], [ 76.992188, 8.581021 ], [ 76.816406, 8.581021 ], [ 76.816406, 8.754795 ], [ 76.640625, 8.754795 ], [ 76.640625, 9.102097 ], [ 76.464844, 9.102097 ], [ 76.464844, 9.622414 ], [ 76.289062, 9.622414 ], [ 76.289062, 9.968851 ], [ 76.113281, 9.968851 ], [ 76.113281, 10.487812 ], [ 75.937500, 10.487812 ], [ 75.937500, 11.005904 ], [ 75.761719, 11.005904 ], [ 75.761719, 11.350797 ], [ 75.585938, 11.350797 ], [ 75.585938, 11.523088 ], [ 75.410156, 11.523088 ], [ 75.410156, 11.867351 ], [ 75.234375, 11.867351 ], [ 75.234375, 12.211180 ], [ 75.058594, 12.211180 ], [ 75.058594, 12.554564 ], [ 74.882812, 12.554564 ], [ 74.882812, 12.897489 ], [ 74.707031, 12.897489 ], [ 74.707031, 13.581921 ], [ 74.531250, 13.581921 ], [ 74.531250, 14.604847 ], [ 74.355469, 14.604847 ], [ 74.355469, 14.944785 ], [ 74.179688, 14.944785 ], [ 74.179688, 15.114553 ], [ 74.003906, 15.114553 ], [ 74.003906, 15.284185 ], [ 73.828125, 15.284185 ], [ 73.828125, 15.623037 ], [ 73.652344, 15.623037 ], [ 73.652344, 15.792254 ], [ 73.476562, 15.792254 ], [ 73.476562, 16.467695 ], [ 73.300781, 16.467695 ], [ 73.300781, 17.476432 ], [ 73.125000, 17.476432 ], [ 73.125000, 18.145852 ], [ 72.949219, 18.145852 ], [ 72.949219, 18.812718 ], [ 72.773438, 18.812718 ], [ 72.773438, 20.797201 ], [ 72.597656, 20.797201 ], [ 72.597656, 21.289374 ], [ 72.421875, 21.289374 ], [ 72.421875, 21.125498 ], [ 72.070312, 21.125498 ], [ 72.070312, 20.961440 ], [ 71.542969, 20.961440 ], [ 71.542969, 20.797201 ], [ 70.312500, 20.797201 ], [ 70.312500, 20.961440 ], [ 70.136719, 20.961440 ], [ 70.136719, 21.125498 ], [ 69.960938, 21.125498 ], [ 69.960938, 21.289374 ], [ 69.785156, 21.289374 ], [ 69.785156, 21.453069 ], [ 69.609375, 21.453069 ], [ 69.609375, 21.616579 ], [ 69.433594, 21.616579 ], [ 69.433594, 21.779905 ], [ 69.257812, 21.779905 ], [ 69.257812, 21.943046 ], [ 69.082031, 21.943046 ], [ 69.082031, 22.105999 ], [ 69.257812, 22.105999 ], [ 69.257812, 22.268764 ], [ 69.609375, 22.268764 ], [ 69.609375, 22.593726 ], [ 69.433594, 22.593726 ], [ 69.433594, 22.917923 ], [ 69.257812, 22.917923 ], [ 69.257812, 23.079732 ], [ 68.906250, 23.079732 ], [ 68.906250, 23.241346 ], [ 68.730469, 23.241346 ], [ 68.730469, 23.402765 ], [ 68.554688, 23.402765 ], [ 68.554688, 23.563987 ], [ 68.203125, 23.563987 ], [ 68.203125, 23.725012 ], [ 68.378906, 23.725012 ], [ 68.378906, 23.885838 ], [ 68.554688, 23.885838 ], [ 68.554688, 24.046464 ], [ 68.730469, 24.046464 ], [ 68.730469, 24.206890 ], [ 68.906250, 24.206890 ], [ 68.906250, 24.367114 ], [ 71.015625, 24.367114 ], [ 71.015625, 24.686952 ], [ 70.839844, 24.686952 ], [ 70.839844, 25.165173 ], [ 70.664062, 25.165173 ], [ 70.664062, 25.482951 ], [ 70.488281, 25.482951 ], [ 70.488281, 25.641526 ], [ 70.312500, 25.641526 ], [ 70.312500, 26.115986 ], [ 70.136719, 26.115986 ], [ 70.136719, 26.431228 ], [ 69.960938, 26.431228 ], [ 69.960938, 26.588527 ], [ 69.609375, 26.588527 ], [ 69.609375, 26.745610 ], [ 69.433594, 26.745610 ], [ 69.433594, 26.902477 ], [ 69.609375, 26.902477 ], [ 69.609375, 27.059126 ], [ 69.785156, 27.059126 ], [ 69.785156, 27.215556 ], [ 69.960938, 27.215556 ], [ 69.960938, 27.371767 ], [ 70.136719, 27.371767 ], [ 70.136719, 27.527758 ], [ 70.312500, 27.527758 ], [ 70.312500, 27.683528 ], [ 70.488281, 27.683528 ], [ 70.488281, 27.839076 ], [ 70.664062, 27.839076 ], [ 70.664062, 27.994401 ], [ 71.015625, 27.994401 ], [ 71.015625, 27.839076 ], [ 71.894531, 27.839076 ], [ 71.894531, 27.994401 ], [ 72.070312, 27.994401 ], [ 72.070312, 28.149503 ], [ 72.246094, 28.149503 ], [ 72.246094, 28.459033 ], [ 72.421875, 28.459033 ], [ 72.421875, 28.613459 ], [ 72.597656, 28.613459 ], [ 72.597656, 28.767659 ], [ 72.773438, 28.767659 ], [ 72.773438, 28.921631 ], [ 72.949219, 28.921631 ], [ 72.949219, 29.228890 ], [ 73.125000, 29.228890 ], [ 73.125000, 29.535230 ], [ 73.300781, 29.535230 ], [ 73.300781, 29.840644 ], [ 73.476562, 29.840644 ], [ 73.476562, 29.993002 ], [ 73.652344, 29.993002 ], [ 73.652344, 30.297018 ], [ 73.828125, 30.297018 ], [ 73.828125, 30.448674 ], [ 74.003906, 30.448674 ], [ 74.003906, 30.600094 ], [ 74.179688, 30.600094 ], [ 74.179688, 30.902225 ], [ 74.355469, 30.902225 ], [ 74.355469, 31.653381 ], [ 74.531250, 31.653381 ], [ 74.531250, 31.802893 ], [ 74.707031, 31.802893 ], [ 74.707031, 31.952162 ], [ 75.058594, 31.952162 ], [ 75.058594, 32.101190 ], [ 75.234375, 32.101190 ], [ 75.234375, 32.249974 ], [ 75.058594, 32.249974 ], [ 75.058594, 32.398516 ], [ 74.707031, 32.398516 ], [ 74.707031, 32.546813 ], [ 74.531250, 32.546813 ], [ 74.531250, 32.842674 ], [ 74.355469, 32.842674 ], [ 74.355469, 33.137551 ], [ 74.179688, 33.137551 ], [ 74.179688, 33.578015 ], [ 74.003906, 33.578015 ], [ 74.003906, 34.016242 ], [ 73.828125, 34.016242 ], [ 73.828125, 34.307144 ], [ 74.003906, 34.307144 ], [ 74.003906, 34.597042 ], [ 74.179688, 34.597042 ], [ 74.179688, 34.741612 ], [ 74.531250, 34.741612 ], [ 74.531250, 34.597042 ], [ 75.234375, 34.597042 ], [ 75.234375, 34.452218 ], [ 76.464844, 34.452218 ], [ 76.464844, 34.597042 ], [ 76.992188, 34.597042 ], [ 76.992188, 34.741612 ], [ 77.167969, 34.741612 ], [ 77.167969, 34.885931 ], [ 77.343750, 34.885931 ], [ 77.343750, 35.029996 ], [ 77.519531, 35.029996 ], [ 77.519531, 35.173808 ], [ 77.695312, 35.173808 ], [ 77.695312, 35.317366 ], [ 78.046875, 35.317366 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.871094, 35.460670 ], [ 77.871094, 35.317366 ], [ 78.046875, 35.317366 ], [ 78.046875, 35.029996 ], [ 78.222656, 35.029996 ], [ 78.222656, 34.885931 ], [ 78.398438, 34.885931 ], [ 78.398438, 34.741612 ], [ 78.574219, 34.741612 ], [ 78.574219, 34.452218 ], [ 78.750000, 34.452218 ], [ 78.750000, 33.431441 ], [ 78.925781, 33.431441 ], [ 78.925781, 33.137551 ], [ 79.101562, 33.137551 ], [ 79.101562, 32.546813 ], [ 78.574219, 32.546813 ], [ 78.574219, 32.694866 ], [ 78.398438, 32.694866 ], [ 78.398438, 32.101190 ], [ 78.574219, 32.101190 ], [ 78.574219, 31.503629 ], [ 78.750000, 31.503629 ], [ 78.750000, 31.353637 ], [ 78.925781, 31.353637 ], [ 78.925781, 31.203405 ], [ 79.277344, 31.203405 ], [ 79.277344, 31.052934 ], [ 79.453125, 31.052934 ], [ 79.453125, 30.902225 ], [ 79.628906, 30.902225 ], [ 79.628906, 30.751278 ], [ 79.980469, 30.751278 ], [ 79.980469, 30.600094 ], [ 80.332031, 30.600094 ], [ 80.332031, 30.448674 ], [ 80.683594, 30.448674 ], [ 80.683594, 30.297018 ], [ 81.035156, 30.297018 ], [ 81.035156, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 29.993002 ], [ 80.507812, 29.993002 ], [ 80.507812, 29.840644 ], [ 80.332031, 29.840644 ], [ 80.332031, 29.535230 ], [ 80.156250, 29.535230 ], [ 80.156250, 29.075375 ], [ 79.980469, 29.075375 ], [ 79.980469, 28.767659 ], [ 80.332031, 28.767659 ], [ 80.332031, 28.613459 ], [ 80.683594, 28.613459 ], [ 80.683594, 28.459033 ], [ 81.035156, 28.459033 ], [ 81.035156, 28.304381 ], [ 81.386719, 28.304381 ], [ 81.386719, 28.149503 ], [ 81.738281, 28.149503 ], [ 81.738281, 27.994401 ], [ 81.914062, 27.994401 ], [ 81.914062, 27.839076 ], [ 82.265625, 27.839076 ], [ 82.265625, 27.683528 ], [ 82.617188, 27.683528 ], [ 82.617188, 27.527758 ], [ 82.968750, 27.527758 ], [ 82.968750, 27.371767 ], [ 84.550781, 27.371767 ], [ 84.550781, 27.215556 ], [ 84.726562, 27.215556 ], [ 84.726562, 27.059126 ], [ 84.902344, 27.059126 ], [ 84.902344, 26.902477 ], [ 85.078125, 26.902477 ], [ 85.078125, 26.745610 ], [ 86.132812, 26.745610 ], [ 86.132812, 26.588527 ], [ 86.835938, 26.588527 ], [ 86.835938, 26.431228 ], [ 87.890625, 26.431228 ], [ 87.890625, 26.588527 ], [ 88.066406, 26.588527 ], [ 88.066406, 27.215556 ], [ 87.890625, 27.215556 ], [ 87.890625, 27.683528 ], [ 88.066406, 27.683528 ], [ 88.066406, 27.994401 ], [ 88.417969, 27.994401 ], [ 88.417969, 28.149503 ], [ 88.593750, 28.149503 ], [ 88.593750, 27.683528 ], [ 88.769531, 27.683528 ], [ 88.769531, 27.059126 ], [ 89.121094, 27.059126 ], [ 89.121094, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.878906, 26.902477 ], [ 90.878906, 25.165173 ], [ 90.175781, 25.165173 ], [ 90.175781, 25.324167 ], [ 89.824219, 25.324167 ], [ 89.824219, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 26.273714 ], [ 88.769531, 26.273714 ], [ 88.769531, 26.431228 ], [ 88.417969, 26.431228 ], [ 88.417969, 26.273714 ], [ 88.242188, 26.273714 ], [ 88.242188, 25.958045 ], [ 88.066406, 25.958045 ], [ 88.066406, 25.641526 ], [ 88.242188, 25.641526 ], [ 88.242188, 25.482951 ], [ 88.593750, 25.482951 ], [ 88.593750, 25.324167 ], [ 88.769531, 25.324167 ], [ 88.769531, 25.165173 ], [ 88.417969, 25.165173 ], [ 88.417969, 25.005973 ], [ 88.242188, 25.005973 ], [ 88.242188, 24.686952 ], [ 88.066406, 24.686952 ], [ 88.066406, 24.527135 ], [ 88.242188, 24.527135 ], [ 88.242188, 24.367114 ], [ 88.593750, 24.367114 ], [ 88.593750, 24.046464 ], [ 88.417969, 24.046464 ], [ 88.417969, 23.402765 ], [ 88.593750, 23.402765 ], [ 88.593750, 23.079732 ], [ 88.769531, 23.079732 ], [ 88.769531, 22.431340 ], [ 88.945312, 22.431340 ], [ 88.945312, 21.943046 ], [ 88.769531, 21.943046 ], [ 88.769531, 21.779905 ], [ 87.539062, 21.779905 ], [ 87.539062, 21.616579 ], [ 86.835938, 21.616579 ], [ 86.835938, 21.125498 ], [ 87.011719, 21.125498 ], [ 87.011719, 20.632784 ], [ 86.835938, 20.632784 ], [ 86.835938, 20.468189 ], [ 86.660156, 20.468189 ], [ 86.660156, 20.303418 ], [ 86.484375, 20.303418 ], [ 86.484375, 20.138470 ], [ 86.132812, 20.138470 ], [ 86.132812, 19.973349 ], [ 85.781250, 19.973349 ], [ 85.781250, 19.808054 ], [ 85.429688, 19.808054 ], [ 85.429688, 19.642588 ], [ 85.078125, 19.642588 ], [ 85.078125, 19.476950 ], [ 84.902344, 19.476950 ], [ 84.902344, 19.311143 ], [ 84.726562, 19.311143 ], [ 84.726562, 19.145168 ], [ 84.550781, 19.145168 ], [ 84.550781, 18.979026 ], [ 84.375000, 18.979026 ], [ 84.375000, 18.646245 ], [ 84.199219, 18.646245 ], [ 84.199219, 18.479609 ], [ 84.023438, 18.479609 ], [ 84.023438, 18.312811 ], [ 83.847656, 18.312811 ], [ 83.847656, 18.145852 ], [ 83.671875, 18.145852 ], [ 83.671875, 17.978733 ], [ 83.320312, 17.978733 ], [ 83.320312, 17.811456 ], [ 83.144531, 17.811456 ], [ 83.144531, 17.644022 ], [ 82.792969, 17.644022 ], [ 82.792969, 17.476432 ], [ 82.617188, 17.476432 ], [ 82.617188, 17.308688 ], [ 82.265625, 17.308688 ], [ 82.265625, 17.140790 ], [ 82.089844, 17.140790 ], [ 82.089844, 16.636192 ], [ 81.914062, 16.636192 ], [ 81.914062, 16.467695 ], [ 81.562500, 16.467695 ], [ 81.562500, 16.299051 ], [ 81.210938, 16.299051 ], [ 81.210938, 16.130262 ], [ 80.859375, 16.130262 ], [ 80.859375, 15.961329 ], [ 80.156250, 15.961329 ], [ 80.156250, 15.623037 ], [ 79.980469, 15.623037 ], [ 79.980469, 14.604847 ], [ 80.156250, 14.604847 ], [ 80.156250, 12.726084 ], [ 79.980469, 12.726084 ], [ 79.980469, 12.382928 ], [ 79.804688, 12.382928 ], [ 79.804688, 10.487812 ], [ 79.628906, 10.487812 ], [ 79.628906, 10.314919 ], [ 79.277344, 10.314919 ], [ 79.277344, 10.141932 ], [ 79.101562, 10.141932 ], [ 79.101562, 9.968851 ], [ 78.925781, 9.968851 ], [ 78.925781, 9.622414 ], [ 78.750000, 9.622414 ], [ 78.750000, 9.449062 ], [ 78.925781, 9.449062 ], [ 78.925781, 9.275622 ], [ 78.750000, 9.275622 ], [ 78.750000, 9.102097 ], [ 78.222656, 9.102097 ], [ 78.222656, 8.928487 ], [ 78.046875, 8.928487 ], [ 78.046875, 8.581021 ], [ 77.871094, 8.581021 ], [ 77.871094, 8.233237 ], [ 77.695312, 8.233237 ], [ 77.695312, 8.059230 ], [ 77.343750, 8.059230 ], [ 77.343750, 8.233237 ], [ 77.167969, 8.233237 ], [ 77.167969, 8.407168 ], [ 76.816406, 8.407168 ], [ 76.816406, 8.581021 ], [ 76.640625, 8.581021 ], [ 76.640625, 8.754795 ], [ 76.464844, 8.754795 ], [ 76.464844, 9.275622 ], [ 76.289062, 9.275622 ], [ 76.289062, 9.968851 ], [ 76.113281, 9.968851 ], [ 76.113281, 10.487812 ], [ 75.937500, 10.487812 ], [ 75.937500, 10.833306 ], [ 75.761719, 10.833306 ], [ 75.761719, 11.178402 ], [ 75.585938, 11.178402 ], [ 75.585938, 11.350797 ], [ 75.410156, 11.350797 ], [ 75.410156, 11.695273 ], [ 75.234375, 11.695273 ], [ 75.234375, 12.039321 ], [ 75.058594, 12.039321 ], [ 75.058594, 12.382928 ], [ 74.882812, 12.382928 ], [ 74.882812, 12.726084 ], [ 74.707031, 12.726084 ], [ 74.707031, 13.410994 ], [ 74.531250, 13.410994 ], [ 74.531250, 14.434680 ], [ 74.355469, 14.434680 ], [ 74.355469, 14.774883 ], [ 74.179688, 14.774883 ], [ 74.179688, 15.114553 ], [ 74.003906, 15.114553 ], [ 74.003906, 15.453680 ], [ 73.828125, 15.453680 ], [ 73.828125, 15.623037 ], [ 73.652344, 15.623037 ], [ 73.652344, 15.961329 ], [ 73.476562, 15.961329 ], [ 73.476562, 16.299051 ], [ 73.300781, 16.299051 ], [ 73.300781, 16.972741 ], [ 73.125000, 16.972741 ], [ 73.125000, 17.644022 ], [ 72.949219, 17.644022 ], [ 72.949219, 18.646245 ], [ 72.773438, 18.646245 ], [ 72.773438, 20.961440 ], [ 72.597656, 20.961440 ], [ 72.597656, 21.453069 ], [ 72.421875, 21.453069 ], [ 72.421875, 21.289374 ], [ 72.070312, 21.289374 ], [ 72.070312, 21.125498 ], [ 71.718750, 21.125498 ], [ 71.718750, 20.961440 ], [ 71.367188, 20.961440 ], [ 71.367188, 20.797201 ], [ 70.488281, 20.797201 ], [ 70.488281, 20.961440 ], [ 70.136719, 20.961440 ], [ 70.136719, 21.125498 ], [ 69.960938, 21.125498 ], [ 69.960938, 21.289374 ], [ 69.785156, 21.289374 ], [ 69.785156, 21.453069 ], [ 69.609375, 21.453069 ], [ 69.609375, 21.616579 ], [ 69.433594, 21.616579 ], [ 69.433594, 21.779905 ], [ 69.257812, 21.779905 ], [ 69.257812, 21.943046 ], [ 69.082031, 21.943046 ], [ 69.082031, 22.105999 ], [ 69.257812, 22.105999 ], [ 69.257812, 22.268764 ], [ 69.433594, 22.268764 ], [ 69.433594, 22.431340 ], [ 69.609375, 22.431340 ], [ 69.609375, 22.593726 ], [ 69.433594, 22.593726 ], [ 69.433594, 22.755921 ], [ 69.257812, 22.755921 ], [ 69.257812, 22.917923 ], [ 69.082031, 22.917923 ], [ 69.082031, 23.079732 ], [ 68.730469, 23.079732 ], [ 68.730469, 23.241346 ], [ 68.554688, 23.241346 ], [ 68.554688, 23.402765 ], [ 68.378906, 23.402765 ], [ 68.378906, 23.563987 ], [ 68.027344, 23.563987 ], [ 68.027344, 23.725012 ], [ 68.203125, 23.725012 ], [ 68.203125, 23.885838 ], [ 68.378906, 23.885838 ], [ 68.378906, 24.046464 ], [ 68.554688, 24.046464 ], [ 68.554688, 24.206890 ], [ 68.730469, 24.206890 ], [ 68.730469, 24.367114 ], [ 71.015625, 24.367114 ], [ 71.015625, 24.846565 ], [ 70.839844, 24.846565 ], [ 70.839844, 25.324167 ], [ 70.664062, 25.324167 ], [ 70.664062, 25.482951 ], [ 70.312500, 25.482951 ], [ 70.312500, 25.641526 ], [ 70.136719, 25.641526 ], [ 70.136719, 26.588527 ], [ 69.960938, 26.588527 ], [ 69.960938, 26.745610 ], [ 69.609375, 26.745610 ], [ 69.609375, 26.902477 ], [ 69.433594, 26.902477 ], [ 69.433594, 27.059126 ], [ 69.609375, 27.059126 ], [ 69.609375, 27.215556 ], [ 69.785156, 27.215556 ], [ 69.785156, 27.371767 ], [ 69.960938, 27.371767 ], [ 69.960938, 27.527758 ], [ 70.136719, 27.527758 ], [ 70.136719, 27.683528 ], [ 70.312500, 27.683528 ], [ 70.312500, 27.839076 ], [ 70.488281, 27.839076 ], [ 70.488281, 27.994401 ], [ 71.894531, 27.994401 ], [ 71.894531, 28.149503 ], [ 72.070312, 28.149503 ], [ 72.070312, 28.304381 ], [ 72.246094, 28.304381 ], [ 72.246094, 28.613459 ], [ 72.421875, 28.613459 ], [ 72.421875, 28.767659 ], [ 72.597656, 28.767659 ], [ 72.597656, 28.921631 ], [ 72.773438, 28.921631 ], [ 72.773438, 29.228890 ], [ 72.949219, 29.228890 ], [ 72.949219, 29.535230 ], [ 73.125000, 29.535230 ], [ 73.125000, 29.840644 ], [ 73.300781, 29.840644 ], [ 73.300781, 29.993002 ], [ 73.476562, 29.993002 ], [ 73.476562, 30.145127 ], [ 73.652344, 30.145127 ], [ 73.652344, 30.297018 ], [ 73.828125, 30.297018 ], [ 73.828125, 30.600094 ], [ 74.003906, 30.600094 ], [ 74.003906, 30.751278 ], [ 74.179688, 30.751278 ], [ 74.179688, 30.902225 ], [ 74.355469, 30.902225 ], [ 74.355469, 31.802893 ], [ 74.531250, 31.802893 ], [ 74.531250, 31.952162 ], [ 74.707031, 31.952162 ], [ 74.707031, 32.101190 ], [ 75.058594, 32.101190 ], [ 75.058594, 32.249974 ], [ 75.234375, 32.249974 ], [ 75.234375, 32.398516 ], [ 75.058594, 32.398516 ], [ 75.058594, 32.546813 ], [ 74.707031, 32.546813 ], [ 74.707031, 32.694866 ], [ 74.355469, 32.694866 ], [ 74.355469, 32.990236 ], [ 74.179688, 32.990236 ], [ 74.179688, 33.284620 ], [ 74.003906, 33.284620 ], [ 74.003906, 33.724340 ], [ 73.828125, 33.724340 ], [ 73.828125, 34.161818 ], [ 73.652344, 34.161818 ], [ 73.652344, 34.452218 ], [ 73.828125, 34.452218 ], [ 73.828125, 34.597042 ], [ 74.003906, 34.597042 ], [ 74.003906, 34.741612 ], [ 74.179688, 34.741612 ], [ 74.179688, 34.885931 ], [ 74.355469, 34.885931 ], [ 74.355469, 34.741612 ], [ 75.058594, 34.741612 ], [ 75.058594, 34.597042 ], [ 76.289062, 34.597042 ], [ 76.289062, 34.741612 ], [ 76.992188, 34.741612 ], [ 76.992188, 34.885931 ], [ 77.167969, 34.885931 ], [ 77.167969, 35.173808 ], [ 77.343750, 35.173808 ], [ 77.343750, 35.317366 ], [ 77.519531, 35.317366 ], [ 77.519531, 35.460670 ], [ 77.871094, 35.460670 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.332031, 9.622414 ], [ 80.332031, 9.449062 ], [ 80.683594, 9.449062 ], [ 80.683594, 9.275622 ], [ 80.859375, 9.275622 ], [ 80.859375, 9.102097 ], [ 81.035156, 9.102097 ], [ 81.035156, 8.928487 ], [ 81.210938, 8.928487 ], [ 81.210938, 8.581021 ], [ 81.386719, 8.581021 ], [ 81.386719, 8.233237 ], [ 81.562500, 8.233237 ], [ 81.562500, 7.710992 ], [ 81.738281, 7.710992 ], [ 81.738281, 7.013668 ], [ 81.562500, 7.013668 ], [ 81.562500, 6.315299 ], [ 81.386719, 6.315299 ], [ 81.386719, 6.140555 ], [ 80.859375, 6.140555 ], [ 80.859375, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.980469, 6.315299 ], [ 79.980469, 6.664608 ], [ 79.804688, 6.664608 ], [ 79.804688, 7.536764 ], [ 79.628906, 7.536764 ], [ 79.628906, 8.407168 ], [ 79.804688, 8.407168 ], [ 79.804688, 8.928487 ], [ 79.980469, 8.928487 ], [ 79.980469, 9.449062 ], [ 80.156250, 9.449062 ], [ 80.156250, 9.622414 ], [ 80.332031, 9.622414 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.156250, 9.795678 ], [ 80.156250, 9.622414 ], [ 80.332031, 9.622414 ], [ 80.332031, 9.449062 ], [ 80.507812, 9.449062 ], [ 80.507812, 9.275622 ], [ 80.683594, 9.275622 ], [ 80.683594, 9.102097 ], [ 80.859375, 9.102097 ], [ 80.859375, 8.928487 ], [ 81.035156, 8.928487 ], [ 81.035156, 8.581021 ], [ 81.210938, 8.581021 ], [ 81.210938, 8.407168 ], [ 81.386719, 8.407168 ], [ 81.386719, 8.059230 ], [ 81.562500, 8.059230 ], [ 81.562500, 7.710992 ], [ 81.738281, 7.710992 ], [ 81.738281, 7.013668 ], [ 81.562500, 7.013668 ], [ 81.562500, 6.315299 ], [ 81.035156, 6.315299 ], [ 81.035156, 6.140555 ], [ 80.683594, 6.140555 ], [ 80.683594, 5.965754 ], [ 80.156250, 5.965754 ], [ 80.156250, 6.315299 ], [ 79.980469, 6.315299 ], [ 79.980469, 6.664608 ], [ 79.804688, 6.664608 ], [ 79.804688, 7.536764 ], [ 79.628906, 7.536764 ], [ 79.628906, 8.581021 ], [ 79.804688, 8.581021 ], [ 79.804688, 9.449062 ], [ 79.980469, 9.449062 ], [ 79.980469, 9.795678 ], [ 80.156250, 9.795678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 90.878906, 27.994401 ], [ 90.878906, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 88.945312, 26.902477 ], [ 88.945312, 27.059126 ], [ 88.769531, 27.059126 ], [ 88.769531, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.527758 ], [ 89.121094, 27.527758 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.175781, 28.304381 ], [ 90.175781, 28.149503 ], [ 90.878906, 28.149503 ], [ 90.878906, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 89.121094, 26.902477 ], [ 89.121094, 27.059126 ], [ 88.769531, 27.059126 ], [ 88.769531, 27.371767 ], [ 88.945312, 27.371767 ], [ 88.945312, 27.527758 ], [ 89.121094, 27.527758 ], [ 89.121094, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 28.149503 ], [ 89.824219, 28.149503 ], [ 89.824219, 28.304381 ], [ 90.175781, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.769531, 26.273714 ], [ 88.769531, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 90.878906, 25.165173 ], [ 90.878906, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 22.105999 ], [ 88.945312, 22.105999 ], [ 88.945312, 23.079732 ], [ 88.769531, 23.079732 ], [ 88.769531, 23.402765 ], [ 88.593750, 23.402765 ], [ 88.593750, 23.885838 ], [ 88.769531, 23.885838 ], [ 88.769531, 24.206890 ], [ 88.417969, 24.206890 ], [ 88.417969, 24.367114 ], [ 88.066406, 24.367114 ], [ 88.066406, 24.686952 ], [ 88.242188, 24.686952 ], [ 88.242188, 24.846565 ], [ 88.593750, 24.846565 ], [ 88.593750, 25.005973 ], [ 88.945312, 25.005973 ], [ 88.945312, 25.165173 ], [ 88.769531, 25.165173 ], [ 88.769531, 25.324167 ], [ 88.593750, 25.324167 ], [ 88.593750, 25.482951 ], [ 88.417969, 25.482951 ], [ 88.417969, 25.641526 ], [ 88.242188, 25.641526 ], [ 88.242188, 25.958045 ], [ 88.417969, 25.958045 ], [ 88.417969, 26.273714 ], [ 88.769531, 26.273714 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.769531, 26.431228 ], [ 88.769531, 26.273714 ], [ 89.121094, 26.273714 ], [ 89.121094, 26.115986 ], [ 89.824219, 26.115986 ], [ 89.824219, 25.324167 ], [ 90.175781, 25.324167 ], [ 90.175781, 25.165173 ], [ 90.878906, 25.165173 ], [ 90.878906, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.527344, 22.593726 ], [ 90.527344, 22.268764 ], [ 90.351562, 22.268764 ], [ 90.351562, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.105999 ], [ 88.945312, 22.105999 ], [ 88.945312, 22.431340 ], [ 88.769531, 22.431340 ], [ 88.769531, 23.079732 ], [ 88.593750, 23.079732 ], [ 88.593750, 23.402765 ], [ 88.417969, 23.402765 ], [ 88.417969, 24.046464 ], [ 88.593750, 24.046464 ], [ 88.593750, 24.367114 ], [ 88.242188, 24.367114 ], [ 88.242188, 24.527135 ], [ 88.066406, 24.527135 ], [ 88.066406, 24.686952 ], [ 88.242188, 24.686952 ], [ 88.242188, 25.005973 ], [ 88.417969, 25.005973 ], [ 88.417969, 25.165173 ], [ 88.769531, 25.165173 ], [ 88.769531, 25.324167 ], [ 88.593750, 25.324167 ], [ 88.593750, 25.482951 ], [ 88.242188, 25.482951 ], [ 88.242188, 25.641526 ], [ 88.066406, 25.641526 ], [ 88.066406, 25.958045 ], [ 88.242188, 25.958045 ], [ 88.242188, 26.273714 ], [ 88.417969, 26.273714 ], [ 88.417969, 26.431228 ], [ 88.769531, 26.431228 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 27.527758 ], [ 88.945312, 27.527758 ], [ 88.945312, 27.371767 ], [ 88.769531, 27.371767 ], [ 88.769531, 27.994401 ], [ 88.417969, 27.994401 ], [ 88.417969, 27.839076 ], [ 87.363281, 27.839076 ], [ 87.363281, 27.994401 ], [ 86.308594, 27.994401 ], [ 86.308594, 28.149503 ], [ 85.605469, 28.149503 ], [ 85.605469, 28.304381 ], [ 85.253906, 28.304381 ], [ 85.253906, 28.459033 ], [ 85.078125, 28.459033 ], [ 85.078125, 28.613459 ], [ 84.550781, 28.613459 ], [ 84.550781, 28.767659 ], [ 84.199219, 28.767659 ], [ 84.199219, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.847656, 29.228890 ], [ 83.847656, 29.382175 ], [ 83.496094, 29.382175 ], [ 83.496094, 29.535230 ], [ 83.144531, 29.535230 ], [ 83.144531, 29.688053 ], [ 82.792969, 29.688053 ], [ 82.792969, 29.840644 ], [ 82.617188, 29.840644 ], [ 82.617188, 29.993002 ], [ 82.265625, 29.993002 ], [ 82.265625, 30.145127 ], [ 81.914062, 30.145127 ], [ 81.914062, 30.297018 ], [ 81.210938, 30.297018 ], [ 81.210938, 30.145127 ], [ 80.859375, 30.145127 ], [ 80.859375, 30.297018 ], [ 80.507812, 30.297018 ], [ 80.507812, 30.448674 ], [ 80.332031, 30.448674 ], [ 80.332031, 30.600094 ], [ 80.156250, 30.600094 ], [ 80.156250, 30.751278 ], [ 79.804688, 30.751278 ], [ 79.804688, 30.902225 ], [ 79.628906, 30.902225 ], [ 79.628906, 31.052934 ], [ 79.277344, 31.052934 ], [ 79.277344, 31.203405 ], [ 79.101562, 31.203405 ], [ 79.101562, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.653381 ], [ 78.574219, 31.653381 ], [ 78.574219, 32.249974 ], [ 78.398438, 32.249974 ], [ 78.398438, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 32.694866 ], [ 79.277344, 32.694866 ], [ 79.277344, 32.990236 ], [ 79.101562, 32.990236 ], [ 79.101562, 33.284620 ], [ 78.925781, 33.284620 ], [ 78.925781, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 33.870416 ], [ 78.925781, 33.870416 ], [ 78.925781, 34.307144 ], [ 78.750000, 34.307144 ], [ 78.750000, 34.597042 ], [ 78.574219, 34.597042 ], [ 78.574219, 34.741612 ], [ 78.398438, 34.741612 ], [ 78.398438, 34.885931 ], [ 78.222656, 34.885931 ], [ 78.222656, 35.173808 ], [ 78.046875, 35.173808 ], [ 78.046875, 35.317366 ], [ 77.871094, 35.317366 ], [ 77.871094, 35.460670 ], [ 77.519531, 35.460670 ], [ 77.519531, 35.603719 ], [ 76.816406, 35.603719 ], [ 76.816406, 35.746512 ], [ 76.289062, 35.746512 ], [ 76.289062, 35.889050 ], [ 76.113281, 35.889050 ], [ 76.113281, 36.173357 ], [ 75.937500, 36.173357 ], [ 75.937500, 36.597889 ], [ 75.761719, 36.597889 ], [ 75.761719, 36.738884 ], [ 75.585938, 36.738884 ], [ 75.585938, 36.879621 ], [ 75.410156, 36.879621 ], [ 75.410156, 37.020098 ], [ 75.234375, 37.020098 ], [ 75.234375, 37.300275 ], [ 75.058594, 37.300275 ], [ 75.058594, 37.718590 ], [ 74.882812, 37.718590 ], [ 74.882812, 38.410558 ], [ 74.355469, 38.410558 ], [ 74.355469, 38.548165 ], [ 74.003906, 38.548165 ], [ 74.003906, 38.685510 ], [ 73.828125, 38.685510 ], [ 73.828125, 39.095963 ], [ 73.652344, 39.095963 ], [ 73.652344, 39.368279 ], [ 73.828125, 39.368279 ], [ 73.828125, 39.504041 ], [ 74.003906, 39.504041 ], [ 74.003906, 39.774769 ], [ 73.828125, 39.774769 ], [ 73.828125, 39.909736 ], [ 74.003906, 39.909736 ], [ 74.003906, 40.044438 ], [ 74.355469, 40.044438 ], [ 74.355469, 40.178873 ], [ 74.707031, 40.178873 ], [ 74.707031, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.149503 ], [ 90.175781, 28.149503 ], [ 90.175781, 28.304381 ], [ 89.824219, 28.304381 ], [ 89.824219, 28.149503 ], [ 89.472656, 28.149503 ], [ 89.472656, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 27.839076 ], [ 89.121094, 27.839076 ], [ 89.121094, 27.527758 ], [ 88.945312, 27.527758 ], [ 88.945312, 27.371767 ], [ 88.769531, 27.371767 ], [ 88.769531, 27.683528 ], [ 88.593750, 27.683528 ], [ 88.593750, 28.149503 ], [ 88.417969, 28.149503 ], [ 88.417969, 27.994401 ], [ 86.484375, 27.994401 ], [ 86.484375, 28.149503 ], [ 85.957031, 28.149503 ], [ 85.957031, 28.304381 ], [ 85.605469, 28.304381 ], [ 85.605469, 28.459033 ], [ 85.253906, 28.459033 ], [ 85.253906, 28.613459 ], [ 84.902344, 28.613459 ], [ 84.902344, 28.767659 ], [ 84.375000, 28.767659 ], [ 84.375000, 28.921631 ], [ 84.023438, 28.921631 ], [ 84.023438, 29.228890 ], [ 83.847656, 29.228890 ], [ 83.847656, 29.382175 ], [ 83.496094, 29.382175 ], [ 83.496094, 29.535230 ], [ 83.144531, 29.535230 ], [ 83.144531, 29.688053 ], [ 82.792969, 29.688053 ], [ 82.792969, 29.840644 ], [ 82.617188, 29.840644 ], [ 82.617188, 29.993002 ], [ 82.265625, 29.993002 ], [ 82.265625, 30.145127 ], [ 81.914062, 30.145127 ], [ 81.914062, 30.297018 ], [ 81.562500, 30.297018 ], [ 81.562500, 30.448674 ], [ 81.386719, 30.448674 ], [ 81.386719, 30.297018 ], [ 80.683594, 30.297018 ], [ 80.683594, 30.448674 ], [ 80.332031, 30.448674 ], [ 80.332031, 30.600094 ], [ 79.980469, 30.600094 ], [ 79.980469, 30.751278 ], [ 79.628906, 30.751278 ], [ 79.628906, 30.902225 ], [ 79.453125, 30.902225 ], [ 79.453125, 31.052934 ], [ 79.277344, 31.052934 ], [ 79.277344, 31.203405 ], [ 78.925781, 31.203405 ], [ 78.925781, 31.353637 ], [ 78.750000, 31.353637 ], [ 78.750000, 31.503629 ], [ 78.574219, 31.503629 ], [ 78.574219, 32.101190 ], [ 78.398438, 32.101190 ], [ 78.398438, 32.694866 ], [ 78.574219, 32.694866 ], [ 78.574219, 32.546813 ], [ 79.101562, 32.546813 ], [ 79.101562, 33.137551 ], [ 78.925781, 33.137551 ], [ 78.925781, 33.431441 ], [ 78.750000, 33.431441 ], [ 78.750000, 34.452218 ], [ 78.574219, 34.452218 ], [ 78.574219, 34.741612 ], [ 78.398438, 34.741612 ], [ 78.398438, 34.885931 ], [ 78.222656, 34.885931 ], [ 78.222656, 35.029996 ], [ 78.046875, 35.029996 ], [ 78.046875, 35.317366 ], [ 77.871094, 35.317366 ], [ 77.871094, 35.460670 ], [ 77.695312, 35.460670 ], [ 77.695312, 35.603719 ], [ 77.343750, 35.603719 ], [ 77.343750, 35.746512 ], [ 76.816406, 35.746512 ], [ 76.816406, 35.889050 ], [ 76.289062, 35.889050 ], [ 76.289062, 36.031332 ], [ 76.113281, 36.031332 ], [ 76.113281, 36.173357 ], [ 75.937500, 36.173357 ], [ 75.937500, 36.456636 ], [ 75.761719, 36.456636 ], [ 75.761719, 36.738884 ], [ 75.585938, 36.738884 ], [ 75.585938, 36.879621 ], [ 75.234375, 36.879621 ], [ 75.234375, 37.020098 ], [ 75.058594, 37.020098 ], [ 75.058594, 37.300275 ], [ 74.882812, 37.300275 ], [ 74.882812, 37.718590 ], [ 74.707031, 37.718590 ], [ 74.707031, 38.410558 ], [ 74.531250, 38.410558 ], [ 74.531250, 38.548165 ], [ 73.828125, 38.548165 ], [ 73.828125, 38.959409 ], [ 73.652344, 38.959409 ], [ 73.652344, 39.639538 ], [ 73.828125, 39.639538 ], [ 73.828125, 39.774769 ], [ 73.652344, 39.774769 ], [ 73.652344, 39.909736 ], [ 73.828125, 39.909736 ], [ 73.828125, 40.044438 ], [ 74.179688, 40.044438 ], [ 74.179688, 40.178873 ], [ 74.355469, 40.178873 ], [ 74.355469, 40.313043 ], [ 74.707031, 40.313043 ], [ 74.707031, 40.446947 ], [ 75.234375, 40.446947 ], [ 75.234375, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.464844, 40.446947 ], [ 76.464844, 40.580585 ], [ 76.640625, 40.580585 ], [ 76.640625, 40.847060 ], [ 76.816406, 40.847060 ], [ 76.816406, 41.112469 ], [ 77.519531, 41.112469 ], [ 77.519531, 41.244772 ], [ 78.222656, 41.244772 ], [ 78.222656, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.472656, 49.837982 ], [ 89.472656, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.496675 ], [ 88.593750, 49.496675 ], [ 88.593750, 49.382373 ], [ 88.066406, 49.382373 ], [ 88.066406, 49.267805 ], [ 87.187500, 49.267805 ], [ 87.187500, 49.496675 ], [ 87.011719, 49.496675 ], [ 87.011719, 49.724479 ], [ 86.835938, 49.724479 ], [ 86.835938, 49.837982 ], [ 86.308594, 49.837982 ], [ 86.308594, 49.724479 ], [ 85.429688, 49.724479 ], [ 85.429688, 49.837982 ], [ 85.253906, 49.837982 ], [ 85.253906, 49.951220 ], [ 85.078125, 49.951220 ], [ 85.078125, 50.064192 ], [ 84.726562, 50.064192 ], [ 84.726562, 50.176898 ], [ 84.375000, 50.176898 ], [ 84.375000, 50.289339 ], [ 84.199219, 50.289339 ], [ 84.199219, 50.513427 ], [ 84.023438, 50.513427 ], [ 84.023438, 50.736455 ], [ 83.847656, 50.736455 ], [ 83.847656, 50.847573 ], [ 83.671875, 50.847573 ], [ 83.671875, 50.958427 ], [ 83.320312, 50.958427 ], [ 83.320312, 51.069017 ], [ 83.144531, 51.069017 ], [ 83.144531, 50.958427 ], [ 82.441406, 50.958427 ], [ 82.441406, 50.847573 ], [ 81.738281, 50.847573 ], [ 81.738281, 50.958427 ], [ 81.386719, 50.958427 ], [ 81.386719, 51.069017 ], [ 81.035156, 51.069017 ], [ 81.035156, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 51.289406 ], [ 80.332031, 51.289406 ], [ 80.332031, 51.069017 ], [ 80.156250, 51.069017 ], [ 80.156250, 50.847573 ], [ 79.980469, 50.847573 ], [ 79.980469, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.628906, 51.179343 ], [ 79.628906, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.277344, 51.618017 ], [ 79.277344, 51.835778 ], [ 79.101562, 51.835778 ], [ 79.101562, 52.052490 ], [ 78.925781, 52.052490 ], [ 78.925781, 52.268157 ], [ 78.750000, 52.268157 ], [ 78.750000, 52.482780 ], [ 78.574219, 52.482780 ], [ 78.574219, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.908902 ], [ 78.222656, 52.908902 ], [ 78.222656, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 53.330873 ], [ 77.871094, 53.330873 ], [ 77.871094, 53.435719 ], [ 77.695312, 53.435719 ], [ 77.695312, 53.540307 ], [ 77.519531, 53.540307 ], [ 77.519531, 53.644638 ], [ 77.343750, 53.644638 ], [ 77.343750, 53.748711 ], [ 76.992188, 53.748711 ], [ 76.992188, 53.852527 ], [ 76.816406, 53.852527 ], [ 76.816406, 53.956086 ], [ 76.640625, 53.956086 ], [ 76.640625, 54.059388 ], [ 76.464844, 54.059388 ], [ 76.464844, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 54.367759 ], [ 76.464844, 54.367759 ], [ 76.464844, 54.265224 ], [ 76.289062, 54.265224 ], [ 76.289062, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.059388 ], [ 75.761719, 54.059388 ], [ 75.761719, 53.956086 ], [ 75.410156, 53.956086 ], [ 75.410156, 53.852527 ], [ 75.058594, 53.852527 ], [ 75.058594, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.644638 ], [ 74.531250, 53.644638 ], [ 74.531250, 53.540307 ], [ 73.476562, 53.540307 ], [ 73.476562, 54.059388 ], [ 73.125000, 54.059388 ], [ 73.125000, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.265224 ], [ 72.421875, 54.265224 ], [ 72.421875, 54.367759 ], [ 72.070312, 54.367759 ], [ 72.070312, 54.265224 ], [ 71.542969, 54.265224 ], [ 71.542969, 54.162434 ], [ 71.191406, 54.162434 ], [ 71.191406, 54.367759 ], [ 71.015625, 54.367759 ], [ 71.015625, 54.876607 ], [ 70.839844, 54.876607 ], [ 70.839844, 55.178868 ], [ 70.312500, 55.178868 ], [ 70.312500, 55.279115 ], [ 69.433594, 55.279115 ], [ 69.433594, 55.379110 ], [ 69.082031, 55.379110 ], [ 69.082031, 55.279115 ], [ 68.906250, 55.279115 ], [ 68.906250, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.078367 ], [ 68.378906, 55.078367 ], [ 68.378906, 54.977614 ], [ 68.027344, 54.977614 ], [ 68.027344, 54.876607 ], [ 67.324219, 54.876607 ], [ 67.324219, 54.775346 ], [ 66.796875, 54.775346 ], [ 66.796875, 54.673831 ], [ 66.093750, 54.673831 ], [ 66.093750, 54.572062 ], [ 65.742188, 54.572062 ], [ 65.742188, 54.470038 ], [ 65.390625, 54.470038 ], [ 65.390625, 54.367759 ], [ 64.863281, 54.367759 ], [ 64.863281, 54.265224 ], [ 63.984375, 54.265224 ], [ 63.984375, 54.162434 ], [ 62.929688, 54.162434 ], [ 62.929688, 54.059388 ], [ 62.050781, 54.059388 ], [ 62.050781, 53.956086 ], [ 61.523438, 53.956086 ], [ 61.523438, 53.852527 ], [ 61.347656, 53.852527 ], [ 61.347656, 53.748711 ], [ 61.171875, 53.748711 ], [ 61.171875, 53.644638 ], [ 60.996094, 53.644638 ], [ 60.996094, 53.540307 ], [ 61.171875, 53.540307 ], [ 61.171875, 53.330873 ], [ 61.347656, 53.330873 ], [ 61.347656, 53.225768 ], [ 61.523438, 53.225768 ], [ 61.523438, 53.014783 ], [ 61.699219, 53.014783 ], [ 61.699219, 52.908902 ], [ 61.347656, 52.908902 ], [ 61.347656, 52.802761 ], [ 60.996094, 52.802761 ], [ 60.996094, 52.696361 ], [ 60.820312, 52.696361 ], [ 60.820312, 52.589701 ], [ 60.996094, 52.589701 ], [ 60.996094, 52.375599 ], [ 60.820312, 52.375599 ], [ 60.820312, 52.268157 ], [ 60.644531, 52.268157 ], [ 60.644531, 52.160455 ], [ 60.292969, 52.160455 ], [ 60.292969, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 51.944265 ], [ 59.941406, 51.944265 ], [ 59.941406, 51.835778 ], [ 60.292969, 51.835778 ], [ 60.292969, 51.727028 ], [ 60.468750, 51.727028 ], [ 60.468750, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.508742 ], [ 60.996094, 51.508742 ], [ 60.996094, 51.399206 ], [ 61.347656, 51.399206 ], [ 61.347656, 51.289406 ], [ 61.523438, 51.289406 ], [ 61.523438, 51.069017 ], [ 61.347656, 51.069017 ], [ 61.347656, 50.847573 ], [ 59.941406, 50.847573 ], [ 59.941406, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.513427 ], [ 59.414062, 50.513427 ], [ 59.414062, 50.625073 ], [ 59.062500, 50.625073 ], [ 59.062500, 50.736455 ], [ 58.886719, 50.736455 ], [ 58.886719, 50.847573 ], [ 58.710938, 50.847573 ], [ 58.710938, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 56.777344, 50.958427 ], [ 56.425781, 50.958427 ], [ 56.425781, 50.847573 ], [ 56.250000, 50.847573 ], [ 56.250000, 50.736455 ], [ 55.898438, 50.736455 ], [ 55.898438, 50.625073 ], [ 55.546875, 50.625073 ], [ 55.546875, 50.736455 ], [ 55.195312, 50.736455 ], [ 55.195312, 50.847573 ], [ 54.843750, 50.847573 ], [ 54.843750, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.069017 ], [ 54.140625, 51.069017 ], [ 54.140625, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.289406 ], [ 53.437500, 51.289406 ], [ 53.437500, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.508742 ], [ 52.734375, 51.508742 ], [ 52.734375, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.727028 ], [ 50.800781, 51.727028 ], [ 50.800781, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.508742 ], [ 50.449219, 51.508742 ], [ 50.449219, 51.399206 ], [ 50.097656, 51.399206 ], [ 50.097656, 51.289406 ], [ 49.921875, 51.289406 ], [ 49.921875, 51.179343 ], [ 49.746094, 51.179343 ], [ 49.746094, 51.069017 ], [ 49.570312, 51.069017 ], [ 49.570312, 50.958427 ], [ 49.394531, 50.958427 ], [ 49.394531, 50.847573 ], [ 49.042969, 50.847573 ], [ 49.042969, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.625073 ], [ 48.691406, 50.625073 ], [ 48.691406, 50.176898 ], [ 48.515625, 50.176898 ], [ 48.515625, 49.837982 ], [ 48.339844, 49.837982 ], [ 48.339844, 49.951220 ], [ 48.164062, 49.951220 ], [ 48.164062, 50.064192 ], [ 47.988281, 50.064192 ], [ 47.988281, 50.176898 ], [ 47.812500, 50.176898 ], [ 47.812500, 50.289339 ], [ 47.460938, 50.289339 ], [ 47.460938, 50.064192 ], [ 47.285156, 50.064192 ], [ 47.285156, 49.837982 ], [ 47.109375, 49.837982 ], [ 47.109375, 49.610710 ], [ 46.933594, 49.610710 ], [ 46.933594, 49.382373 ], [ 46.757812, 49.382373 ], [ 46.757812, 49.267805 ], [ 46.933594, 49.267805 ], [ 46.933594, 49.152970 ], [ 47.109375, 49.152970 ], [ 47.109375, 49.037868 ], [ 46.933594, 49.037868 ], [ 46.933594, 48.806863 ], [ 46.757812, 48.806863 ], [ 46.757812, 48.574790 ], [ 46.582031, 48.574790 ], [ 46.582031, 48.341646 ], [ 46.406250, 48.341646 ], [ 46.406250, 48.224673 ], [ 46.582031, 48.224673 ], [ 46.582031, 48.107431 ], [ 46.757812, 48.107431 ], [ 46.757812, 47.989922 ], [ 46.933594, 47.989922 ], [ 46.933594, 47.872144 ], [ 47.109375, 47.872144 ], [ 47.109375, 47.754098 ], [ 47.988281, 47.754098 ], [ 47.988281, 47.635784 ], [ 48.164062, 47.635784 ], [ 48.164062, 47.398349 ], [ 48.339844, 47.398349 ], [ 48.339844, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 47.040182 ], [ 48.691406, 47.040182 ], [ 48.691406, 46.800059 ], [ 48.515625, 46.800059 ], [ 48.515625, 46.558860 ], [ 48.691406, 46.558860 ], [ 48.691406, 46.437857 ], [ 49.042969, 46.437857 ], [ 49.042969, 46.195042 ], [ 48.867188, 46.195042 ], [ 48.867188, 45.951150 ], [ 48.691406, 45.951150 ], [ 48.691406, 45.828799 ], [ 48.515625, 45.828799 ], [ 48.515625, 45.706179 ], [ 47.988281, 45.706179 ], [ 47.988281, 45.583290 ], [ 47.636719, 45.583290 ], [ 47.636719, 45.460131 ], [ 47.460938, 45.460131 ], [ 47.460938, 45.213004 ], [ 47.285156, 45.213004 ], [ 47.285156, 45.089036 ], [ 47.109375, 45.089036 ], [ 47.109375, 44.840291 ], [ 46.933594, 44.840291 ], [ 46.933594, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.465151 ], [ 46.933594, 44.465151 ], [ 46.933594, 44.213710 ], [ 47.109375, 44.213710 ], [ 47.109375, 44.087585 ], [ 47.285156, 44.087585 ], [ 47.285156, 43.961191 ], [ 47.460938, 43.961191 ], [ 47.460938, 43.707594 ], [ 47.636719, 43.707594 ], [ 47.636719, 43.325178 ], [ 47.460938, 43.325178 ], [ 47.460938, 42.811522 ], [ 47.636719, 42.811522 ], [ 47.636719, 42.553080 ], [ 47.812500, 42.553080 ], [ 47.812500, 42.423457 ], [ 47.988281, 42.423457 ], [ 47.988281, 42.163403 ], [ 48.164062, 42.163403 ], [ 48.164062, 42.032974 ], [ 48.339844, 42.032974 ], [ 48.339844, 41.771312 ], [ 48.515625, 41.771312 ], [ 48.515625, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.112469 ], [ 47.460938, 41.112469 ], [ 47.460938, 41.244772 ], [ 47.285156, 41.244772 ], [ 47.285156, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.508577 ], [ 46.933594, 41.508577 ], [ 46.933594, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 41.902277 ], [ 45.878906, 41.902277 ], [ 45.878906, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.293564 ], [ 45.527344, 42.293564 ], [ 45.527344, 42.553080 ], [ 44.824219, 42.553080 ], [ 44.824219, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.553080 ], [ 44.121094, 42.553080 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.109375, 66.722541 ], [ 47.109375, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.791909 ], [ 71.894531, 66.791909 ], [ 71.894531, 66.652977 ], [ 71.718750, 66.652977 ], [ 71.718750, 66.513260 ], [ 71.542969, 66.513260 ], [ 71.542969, 66.372755 ], [ 71.367188, 66.372755 ], [ 71.367188, 66.302205 ], [ 71.542969, 66.302205 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.401515 ], [ 90.703125, 50.401515 ], [ 90.703125, 50.289339 ], [ 90.351562, 50.289339 ], [ 90.351562, 50.176898 ], [ 90.175781, 50.176898 ], [ 90.175781, 50.064192 ], [ 90.000000, 50.064192 ], [ 90.000000, 49.951220 ], [ 89.648438, 49.951220 ], [ 89.648438, 49.837982 ], [ 89.472656, 49.837982 ], [ 89.472656, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 88.945312, 49.610710 ], [ 88.945312, 49.496675 ], [ 88.417969, 49.496675 ], [ 88.417969, 49.382373 ], [ 87.539062, 49.382373 ], [ 87.539062, 49.267805 ], [ 87.011719, 49.267805 ], [ 87.011719, 49.496675 ], [ 86.835938, 49.496675 ], [ 86.835938, 49.724479 ], [ 86.660156, 49.724479 ], [ 86.660156, 49.837982 ], [ 86.132812, 49.837982 ], [ 86.132812, 49.724479 ], [ 85.429688, 49.724479 ], [ 85.429688, 49.837982 ], [ 85.253906, 49.837982 ], [ 85.253906, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 50.176898 ], [ 84.726562, 50.176898 ], [ 84.726562, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.401515 ], [ 84.199219, 50.401515 ], [ 84.199219, 50.625073 ], [ 84.023438, 50.625073 ], [ 84.023438, 50.847573 ], [ 83.847656, 50.847573 ], [ 83.847656, 50.958427 ], [ 83.496094, 50.958427 ], [ 83.496094, 51.069017 ], [ 83.144531, 51.069017 ], [ 83.144531, 50.958427 ], [ 82.441406, 50.958427 ], [ 82.441406, 50.847573 ], [ 81.738281, 50.847573 ], [ 81.738281, 50.958427 ], [ 81.386719, 50.958427 ], [ 81.386719, 51.069017 ], [ 81.035156, 51.069017 ], [ 81.035156, 51.179343 ], [ 80.859375, 51.179343 ], [ 80.859375, 51.289406 ], [ 80.332031, 51.289406 ], [ 80.332031, 51.179343 ], [ 80.156250, 51.179343 ], [ 80.156250, 50.958427 ], [ 79.804688, 50.958427 ], [ 79.804688, 51.179343 ], [ 79.628906, 51.179343 ], [ 79.628906, 51.399206 ], [ 79.453125, 51.399206 ], [ 79.453125, 51.618017 ], [ 79.277344, 51.618017 ], [ 79.277344, 51.727028 ], [ 79.101562, 51.727028 ], [ 79.101562, 51.944265 ], [ 78.925781, 51.944265 ], [ 78.925781, 52.160455 ], [ 78.750000, 52.160455 ], [ 78.750000, 52.375599 ], [ 78.574219, 52.375599 ], [ 78.574219, 52.589701 ], [ 78.398438, 52.589701 ], [ 78.398438, 52.696361 ], [ 78.222656, 52.696361 ], [ 78.222656, 52.908902 ], [ 78.046875, 52.908902 ], [ 78.046875, 53.120405 ], [ 77.871094, 53.120405 ], [ 77.871094, 53.330873 ], [ 77.695312, 53.330873 ], [ 77.695312, 53.435719 ], [ 77.519531, 53.435719 ], [ 77.519531, 53.540307 ], [ 77.343750, 53.540307 ], [ 77.343750, 53.644638 ], [ 77.167969, 53.644638 ], [ 77.167969, 53.852527 ], [ 76.992188, 53.852527 ], [ 76.992188, 53.956086 ], [ 76.816406, 53.956086 ], [ 76.816406, 54.059388 ], [ 76.640625, 54.059388 ], [ 76.640625, 54.162434 ], [ 76.464844, 54.162434 ], [ 76.464844, 54.265224 ], [ 76.640625, 54.265224 ], [ 76.640625, 54.470038 ], [ 76.464844, 54.470038 ], [ 76.464844, 54.367759 ], [ 76.289062, 54.367759 ], [ 76.289062, 54.265224 ], [ 75.937500, 54.265224 ], [ 75.937500, 54.162434 ], [ 75.761719, 54.162434 ], [ 75.761719, 54.059388 ], [ 75.410156, 54.059388 ], [ 75.410156, 53.956086 ], [ 75.058594, 53.956086 ], [ 75.058594, 53.852527 ], [ 74.882812, 53.852527 ], [ 74.882812, 53.748711 ], [ 74.531250, 53.748711 ], [ 74.531250, 53.644638 ], [ 74.003906, 53.644638 ], [ 74.003906, 53.540307 ], [ 73.300781, 53.540307 ], [ 73.300781, 53.748711 ], [ 73.476562, 53.748711 ], [ 73.476562, 54.059388 ], [ 73.125000, 54.059388 ], [ 73.125000, 54.162434 ], [ 72.773438, 54.162434 ], [ 72.773438, 54.265224 ], [ 72.421875, 54.265224 ], [ 72.421875, 54.367759 ], [ 71.718750, 54.367759 ], [ 71.718750, 54.265224 ], [ 71.367188, 54.265224 ], [ 71.367188, 54.162434 ], [ 71.015625, 54.162434 ], [ 71.015625, 54.673831 ], [ 70.839844, 54.673831 ], [ 70.839844, 55.178868 ], [ 70.488281, 55.178868 ], [ 70.488281, 55.279115 ], [ 69.785156, 55.279115 ], [ 69.785156, 55.379110 ], [ 69.082031, 55.379110 ], [ 69.082031, 55.478853 ], [ 68.906250, 55.478853 ], [ 68.906250, 55.379110 ], [ 68.730469, 55.379110 ], [ 68.730469, 55.279115 ], [ 68.554688, 55.279115 ], [ 68.554688, 55.178868 ], [ 68.378906, 55.178868 ], [ 68.378906, 55.078367 ], [ 68.203125, 55.078367 ], [ 68.203125, 54.977614 ], [ 67.675781, 54.977614 ], [ 67.675781, 54.876607 ], [ 66.972656, 54.876607 ], [ 66.972656, 54.775346 ], [ 66.093750, 54.775346 ], [ 66.093750, 54.673831 ], [ 65.566406, 54.673831 ], [ 65.566406, 54.572062 ], [ 65.390625, 54.572062 ], [ 65.390625, 54.470038 ], [ 65.214844, 54.470038 ], [ 65.214844, 54.367759 ], [ 64.511719, 54.367759 ], [ 64.511719, 54.265224 ], [ 63.281250, 54.265224 ], [ 63.281250, 54.162434 ], [ 62.050781, 54.162434 ], [ 62.050781, 54.059388 ], [ 61.347656, 54.059388 ], [ 61.347656, 53.956086 ], [ 61.171875, 53.956086 ], [ 61.171875, 53.852527 ], [ 60.996094, 53.852527 ], [ 60.996094, 53.748711 ], [ 60.820312, 53.748711 ], [ 60.820312, 53.644638 ], [ 60.996094, 53.644638 ], [ 60.996094, 53.435719 ], [ 61.171875, 53.435719 ], [ 61.171875, 53.330873 ], [ 61.347656, 53.330873 ], [ 61.347656, 53.225768 ], [ 61.523438, 53.225768 ], [ 61.523438, 52.908902 ], [ 60.996094, 52.908902 ], [ 60.996094, 52.802761 ], [ 60.644531, 52.802761 ], [ 60.644531, 52.589701 ], [ 60.820312, 52.589701 ], [ 60.820312, 52.375599 ], [ 60.644531, 52.375599 ], [ 60.644531, 52.268157 ], [ 60.292969, 52.268157 ], [ 60.292969, 52.160455 ], [ 60.117188, 52.160455 ], [ 60.117188, 52.052490 ], [ 59.941406, 52.052490 ], [ 59.941406, 51.944265 ], [ 60.117188, 51.944265 ], [ 60.117188, 51.835778 ], [ 60.468750, 51.835778 ], [ 60.468750, 51.727028 ], [ 60.644531, 51.727028 ], [ 60.644531, 51.618017 ], [ 60.820312, 51.618017 ], [ 60.820312, 51.508742 ], [ 61.171875, 51.508742 ], [ 61.171875, 51.399206 ], [ 61.347656, 51.399206 ], [ 61.347656, 51.289406 ], [ 61.523438, 51.289406 ], [ 61.523438, 51.179343 ], [ 61.347656, 51.179343 ], [ 61.347656, 50.958427 ], [ 61.171875, 50.958427 ], [ 61.171875, 50.847573 ], [ 59.765625, 50.847573 ], [ 59.765625, 50.736455 ], [ 59.589844, 50.736455 ], [ 59.589844, 50.625073 ], [ 59.414062, 50.625073 ], [ 59.414062, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.847573 ], [ 58.710938, 50.847573 ], [ 58.710938, 50.958427 ], [ 58.359375, 50.958427 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 56.777344, 50.958427 ], [ 56.425781, 50.958427 ], [ 56.425781, 50.847573 ], [ 56.074219, 50.847573 ], [ 56.074219, 50.736455 ], [ 55.722656, 50.736455 ], [ 55.722656, 50.625073 ], [ 55.371094, 50.625073 ], [ 55.371094, 50.736455 ], [ 55.019531, 50.736455 ], [ 55.019531, 50.847573 ], [ 54.843750, 50.847573 ], [ 54.843750, 50.958427 ], [ 54.492188, 50.958427 ], [ 54.492188, 51.069017 ], [ 54.140625, 51.069017 ], [ 54.140625, 51.179343 ], [ 53.789062, 51.179343 ], [ 53.789062, 51.289406 ], [ 53.437500, 51.289406 ], [ 53.437500, 51.399206 ], [ 53.085938, 51.399206 ], [ 53.085938, 51.508742 ], [ 52.734375, 51.508742 ], [ 52.734375, 51.618017 ], [ 52.382812, 51.618017 ], [ 52.382812, 51.727028 ], [ 50.625000, 51.727028 ], [ 50.625000, 51.618017 ], [ 50.449219, 51.618017 ], [ 50.449219, 51.508742 ], [ 50.273438, 51.508742 ], [ 50.273438, 51.399206 ], [ 50.097656, 51.399206 ], [ 50.097656, 51.289406 ], [ 49.921875, 51.289406 ], [ 49.921875, 51.179343 ], [ 49.570312, 51.179343 ], [ 49.570312, 51.069017 ], [ 49.394531, 51.069017 ], [ 49.394531, 50.958427 ], [ 49.218750, 50.958427 ], [ 49.218750, 50.847573 ], [ 49.042969, 50.847573 ], [ 49.042969, 50.736455 ], [ 48.867188, 50.736455 ], [ 48.867188, 50.625073 ], [ 48.691406, 50.625073 ], [ 48.691406, 50.289339 ], [ 48.515625, 50.289339 ], [ 48.515625, 49.951220 ], [ 48.339844, 49.951220 ], [ 48.339844, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 50.176898 ], [ 47.812500, 50.176898 ], [ 47.812500, 50.289339 ], [ 47.636719, 50.289339 ], [ 47.636719, 50.401515 ], [ 47.285156, 50.401515 ], [ 47.285156, 50.176898 ], [ 47.109375, 50.176898 ], [ 47.109375, 49.951220 ], [ 46.933594, 49.951220 ], [ 46.933594, 49.724479 ], [ 46.757812, 49.724479 ], [ 46.757812, 49.496675 ], [ 46.582031, 49.496675 ], [ 46.582031, 49.267805 ], [ 46.757812, 49.267805 ], [ 46.757812, 49.152970 ], [ 46.933594, 49.152970 ], [ 46.933594, 49.037868 ], [ 46.757812, 49.037868 ], [ 46.757812, 48.806863 ], [ 46.582031, 48.806863 ], [ 46.582031, 48.574790 ], [ 46.406250, 48.574790 ], [ 46.406250, 48.341646 ], [ 46.582031, 48.341646 ], [ 46.582031, 48.224673 ], [ 46.757812, 48.224673 ], [ 46.757812, 48.107431 ], [ 46.933594, 48.107431 ], [ 46.933594, 47.872144 ], [ 47.109375, 47.872144 ], [ 47.109375, 47.754098 ], [ 47.988281, 47.754098 ], [ 47.988281, 47.635784 ], [ 48.164062, 47.635784 ], [ 48.164062, 47.517201 ], [ 48.339844, 47.517201 ], [ 48.339844, 47.279229 ], [ 48.515625, 47.279229 ], [ 48.515625, 47.159840 ], [ 48.691406, 47.159840 ], [ 48.691406, 46.920255 ], [ 48.515625, 46.920255 ], [ 48.515625, 46.558860 ], [ 48.867188, 46.558860 ], [ 48.867188, 46.437857 ], [ 49.042969, 46.437857 ], [ 49.042969, 46.316584 ], [ 48.867188, 46.316584 ], [ 48.867188, 46.073231 ], [ 48.691406, 46.073231 ], [ 48.691406, 45.828799 ], [ 48.164062, 45.828799 ], [ 48.164062, 45.706179 ], [ 47.636719, 45.706179 ], [ 47.636719, 45.583290 ], [ 47.460938, 45.583290 ], [ 47.460938, 45.460131 ], [ 47.285156, 45.460131 ], [ 47.285156, 45.213004 ], [ 47.109375, 45.213004 ], [ 47.109375, 45.089036 ], [ 46.933594, 45.089036 ], [ 46.933594, 44.964798 ], [ 46.757812, 44.964798 ], [ 46.757812, 44.715514 ], [ 46.582031, 44.715514 ], [ 46.582031, 44.590467 ], [ 46.757812, 44.590467 ], [ 46.757812, 44.339565 ], [ 46.933594, 44.339565 ], [ 46.933594, 44.213710 ], [ 47.109375, 44.213710 ], [ 47.109375, 43.961191 ], [ 47.285156, 43.961191 ], [ 47.285156, 43.707594 ], [ 47.460938, 43.707594 ], [ 47.460938, 42.940339 ], [ 47.636719, 42.940339 ], [ 47.636719, 42.682435 ], [ 47.812500, 42.682435 ], [ 47.812500, 42.553080 ], [ 47.988281, 42.553080 ], [ 47.988281, 42.293564 ], [ 48.164062, 42.293564 ], [ 48.164062, 42.163403 ], [ 48.339844, 42.163403 ], [ 48.339844, 41.902277 ], [ 48.515625, 41.902277 ], [ 48.515625, 41.771312 ], [ 48.339844, 41.771312 ], [ 48.339844, 41.640078 ], [ 48.164062, 41.640078 ], [ 48.164062, 41.508577 ], [ 47.988281, 41.508577 ], [ 47.988281, 41.376809 ], [ 47.812500, 41.376809 ], [ 47.812500, 41.244772 ], [ 47.109375, 41.244772 ], [ 47.109375, 41.376809 ], [ 46.933594, 41.376809 ], [ 46.933594, 41.640078 ], [ 46.757812, 41.640078 ], [ 46.757812, 41.771312 ], [ 46.582031, 41.771312 ], [ 46.582031, 41.902277 ], [ 46.054688, 41.902277 ], [ 46.054688, 42.032974 ], [ 45.703125, 42.032974 ], [ 45.703125, 42.163403 ], [ 45.527344, 42.163403 ], [ 45.527344, 42.423457 ], [ 45.351562, 42.423457 ], [ 45.351562, 42.553080 ], [ 45.000000, 42.553080 ], [ 45.000000, 42.682435 ], [ 44.648438, 42.682435 ], [ 44.648438, 42.811522 ], [ 44.472656, 42.811522 ], [ 44.472656, 42.682435 ], [ 44.121094, 42.682435 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.757812, 66.722541 ], [ 46.757812, 66.791909 ], [ 47.460938, 66.791909 ], [ 47.460938, 66.861082 ], [ 71.894531, 66.861082 ], [ 71.894531, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.652977 ], [ 71.542969, 66.652977 ], [ 71.542969, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.302205 ], [ 72.070312, 66.302205 ], [ 72.070312, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.302205 ], [ 72.597656, 66.302205 ], [ 72.597656, 66.443107 ], [ 72.773438, 66.443107 ], [ 72.773438, 66.583217 ], [ 73.125000, 66.583217 ], [ 73.125000, 66.652977 ], [ 73.476562, 66.652977 ], [ 73.476562, 66.722541 ], [ 73.828125, 66.722541 ], [ 73.828125, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 42.682435 ], [ 44.824219, 42.553080 ], [ 45.527344, 42.553080 ], [ 45.527344, 42.293564 ], [ 45.703125, 42.293564 ], [ 45.703125, 42.032974 ], [ 45.878906, 42.032974 ], [ 45.878906, 41.902277 ], [ 46.406250, 41.902277 ], [ 46.406250, 41.771312 ], [ 46.230469, 41.771312 ], [ 46.230469, 41.640078 ], [ 46.406250, 41.640078 ], [ 46.406250, 41.376809 ], [ 46.582031, 41.376809 ], [ 46.582031, 41.112469 ], [ 45.527344, 41.112469 ], [ 45.527344, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.112469 ], [ 44.121094, 41.112469 ], [ 44.121094, 42.553080 ], [ 44.472656, 42.553080 ], [ 44.472656, 42.682435 ], [ 44.824219, 42.682435 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.648438, 42.811522 ], [ 44.648438, 42.682435 ], [ 45.000000, 42.682435 ], [ 45.000000, 42.553080 ], [ 45.351562, 42.553080 ], [ 45.351562, 42.423457 ], [ 45.527344, 42.423457 ], [ 45.527344, 42.163403 ], [ 45.703125, 42.163403 ], [ 45.703125, 42.032974 ], [ 46.054688, 42.032974 ], [ 46.054688, 41.902277 ], [ 46.406250, 41.902277 ], [ 46.406250, 41.771312 ], [ 46.054688, 41.771312 ], [ 46.054688, 41.640078 ], [ 46.230469, 41.640078 ], [ 46.230469, 41.508577 ], [ 46.406250, 41.508577 ], [ 46.406250, 41.244772 ], [ 46.582031, 41.244772 ], [ 46.582031, 41.112469 ], [ 46.054688, 41.112469 ], [ 46.054688, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.376809 ], [ 44.648438, 41.376809 ], [ 44.648438, 41.244772 ], [ 44.121094, 41.244772 ], [ 44.121094, 42.682435 ], [ 44.472656, 42.682435 ], [ 44.472656, 42.811522 ], [ 44.648438, 42.811522 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.433594, 55.379110 ], [ 69.433594, 55.279115 ], [ 70.312500, 55.279115 ], [ 70.312500, 55.178868 ], [ 70.839844, 55.178868 ], [ 70.839844, 54.876607 ], [ 71.015625, 54.876607 ], [ 71.015625, 54.367759 ], [ 71.191406, 54.367759 ], [ 71.191406, 54.162434 ], [ 71.542969, 54.162434 ], [ 71.542969, 54.265224 ], [ 72.070312, 54.265224 ], [ 72.070312, 54.367759 ], [ 72.421875, 54.367759 ], [ 72.421875, 54.265224 ], [ 72.773438, 54.265224 ], [ 72.773438, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 54.059388 ], [ 73.476562, 54.059388 ], [ 73.476562, 53.540307 ], [ 74.531250, 53.540307 ], [ 74.531250, 53.644638 ], [ 74.882812, 53.644638 ], [ 74.882812, 53.748711 ], [ 75.058594, 53.748711 ], [ 75.058594, 53.852527 ], [ 75.410156, 53.852527 ], [ 75.410156, 53.956086 ], [ 75.761719, 53.956086 ], [ 75.761719, 54.059388 ], [ 75.937500, 54.059388 ], [ 75.937500, 54.162434 ], [ 76.289062, 54.162434 ], [ 76.289062, 54.265224 ], [ 76.464844, 54.265224 ], [ 76.464844, 54.367759 ], [ 76.640625, 54.367759 ], [ 76.640625, 54.162434 ], [ 76.464844, 54.162434 ], [ 76.464844, 54.059388 ], [ 76.640625, 54.059388 ], [ 76.640625, 53.956086 ], [ 76.816406, 53.956086 ], [ 76.816406, 53.852527 ], [ 76.992188, 53.852527 ], [ 76.992188, 53.748711 ], [ 77.343750, 53.748711 ], [ 77.343750, 53.644638 ], [ 77.519531, 53.644638 ], [ 77.519531, 53.540307 ], [ 77.695312, 53.540307 ], [ 77.695312, 53.435719 ], [ 77.871094, 53.435719 ], [ 77.871094, 53.330873 ], [ 78.046875, 53.330873 ], [ 78.046875, 53.120405 ], [ 78.222656, 53.120405 ], [ 78.222656, 52.908902 ], [ 78.398438, 52.908902 ], [ 78.398438, 52.696361 ], [ 78.574219, 52.696361 ], [ 78.574219, 52.482780 ], [ 78.750000, 52.482780 ], [ 78.750000, 52.268157 ], [ 78.925781, 52.268157 ], [ 78.925781, 52.052490 ], [ 79.101562, 52.052490 ], [ 79.101562, 51.835778 ], [ 79.277344, 51.835778 ], [ 79.277344, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.628906, 51.399206 ], [ 79.628906, 51.179343 ], [ 79.804688, 51.179343 ], [ 79.804688, 50.958427 ], [ 79.980469, 50.958427 ], [ 79.980469, 50.847573 ], [ 80.156250, 50.847573 ], [ 80.156250, 51.069017 ], [ 80.332031, 51.069017 ], [ 80.332031, 51.289406 ], [ 80.859375, 51.289406 ], [ 80.859375, 51.179343 ], [ 81.035156, 51.179343 ], [ 81.035156, 51.069017 ], [ 81.386719, 51.069017 ], [ 81.386719, 50.958427 ], [ 81.738281, 50.958427 ], [ 81.738281, 50.847573 ], [ 82.441406, 50.847573 ], [ 82.441406, 50.958427 ], [ 83.144531, 50.958427 ], [ 83.144531, 51.069017 ], [ 83.320312, 51.069017 ], [ 83.320312, 50.958427 ], [ 83.671875, 50.958427 ], [ 83.671875, 50.847573 ], [ 83.847656, 50.847573 ], [ 83.847656, 50.736455 ], [ 84.023438, 50.736455 ], [ 84.023438, 50.513427 ], [ 84.199219, 50.513427 ], [ 84.199219, 50.289339 ], [ 84.375000, 50.289339 ], [ 84.375000, 50.176898 ], [ 84.726562, 50.176898 ], [ 84.726562, 50.064192 ], [ 85.078125, 50.064192 ], [ 85.078125, 49.951220 ], [ 85.253906, 49.951220 ], [ 85.253906, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.724479 ], [ 86.308594, 49.724479 ], [ 86.308594, 49.837982 ], [ 86.835938, 49.837982 ], [ 86.835938, 49.724479 ], [ 87.011719, 49.724479 ], [ 87.011719, 49.496675 ], [ 87.187500, 49.496675 ], [ 87.187500, 49.267805 ], [ 87.363281, 49.267805 ], [ 87.363281, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 48.922499 ], [ 87.011719, 48.922499 ], [ 87.011719, 48.806863 ], [ 86.835938, 48.806863 ], [ 86.835938, 48.574790 ], [ 86.308594, 48.574790 ], [ 86.308594, 48.458352 ], [ 85.781250, 48.458352 ], [ 85.781250, 47.279229 ], [ 85.605469, 47.279229 ], [ 85.605469, 47.159840 ], [ 85.253906, 47.159840 ], [ 85.253906, 47.040182 ], [ 84.550781, 47.040182 ], [ 84.550781, 47.159840 ], [ 83.496094, 47.159840 ], [ 83.496094, 47.279229 ], [ 83.144531, 47.279229 ], [ 83.144531, 47.040182 ], [ 82.968750, 47.040182 ], [ 82.968750, 46.558860 ], [ 82.792969, 46.558860 ], [ 82.792969, 46.195042 ], [ 82.617188, 46.195042 ], [ 82.617188, 45.706179 ], [ 82.441406, 45.706179 ], [ 82.441406, 45.460131 ], [ 82.089844, 45.460131 ], [ 82.089844, 45.336702 ], [ 81.738281, 45.336702 ], [ 81.738281, 45.213004 ], [ 81.035156, 45.213004 ], [ 81.035156, 45.089036 ], [ 80.332031, 45.089036 ], [ 80.332031, 44.964798 ], [ 79.980469, 44.964798 ], [ 79.980469, 44.715514 ], [ 80.156250, 44.715514 ], [ 80.156250, 44.339565 ], [ 80.332031, 44.339565 ], [ 80.332031, 44.087585 ], [ 80.507812, 44.087585 ], [ 80.507812, 43.707594 ], [ 80.683594, 43.707594 ], [ 80.683594, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 43.068888 ], [ 80.507812, 43.068888 ], [ 80.507812, 42.940339 ], [ 80.156250, 42.940339 ], [ 80.156250, 42.553080 ], [ 80.332031, 42.553080 ], [ 80.332031, 42.293564 ], [ 79.980469, 42.293564 ], [ 79.980469, 42.423457 ], [ 79.628906, 42.423457 ], [ 79.628906, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.682435 ], [ 79.101562, 42.682435 ], [ 79.101562, 42.811522 ], [ 78.222656, 42.811522 ], [ 78.222656, 42.940339 ], [ 75.234375, 42.940339 ], [ 75.234375, 43.068888 ], [ 74.707031, 43.068888 ], [ 74.707031, 43.197167 ], [ 74.355469, 43.197167 ], [ 74.355469, 43.325178 ], [ 74.179688, 43.325178 ], [ 74.179688, 43.197167 ], [ 73.828125, 43.197167 ], [ 73.828125, 43.068888 ], [ 73.652344, 43.068888 ], [ 73.652344, 42.811522 ], [ 73.476562, 42.811522 ], [ 73.476562, 42.553080 ], [ 72.949219, 42.553080 ], [ 72.949219, 42.682435 ], [ 72.246094, 42.682435 ], [ 72.246094, 42.811522 ], [ 71.718750, 42.811522 ], [ 71.718750, 42.682435 ], [ 71.191406, 42.682435 ], [ 71.191406, 42.423457 ], [ 71.015625, 42.423457 ], [ 71.015625, 42.163403 ], [ 70.664062, 42.163403 ], [ 70.664062, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 41.902277 ], [ 69.960938, 41.902277 ], [ 69.960938, 41.771312 ], [ 69.785156, 41.771312 ], [ 69.785156, 41.640078 ], [ 69.609375, 41.640078 ], [ 69.609375, 41.508577 ], [ 69.257812, 41.508577 ], [ 69.257812, 41.376809 ], [ 69.082031, 41.376809 ], [ 69.082031, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 40.979898 ], [ 68.730469, 40.979898 ], [ 68.730469, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 66.796875, 41.112469 ], [ 66.796875, 41.244772 ], [ 66.621094, 41.244772 ], [ 66.621094, 41.771312 ], [ 66.445312, 41.771312 ], [ 66.445312, 42.032974 ], [ 66.093750, 42.032974 ], [ 66.093750, 42.940339 ], [ 65.917969, 42.940339 ], [ 65.917969, 43.068888 ], [ 65.742188, 43.068888 ], [ 65.742188, 43.197167 ], [ 65.566406, 43.197167 ], [ 65.566406, 43.325178 ], [ 65.214844, 43.325178 ], [ 65.214844, 43.452919 ], [ 65.039062, 43.452919 ], [ 65.039062, 43.580391 ], [ 64.863281, 43.580391 ], [ 64.863281, 43.707594 ], [ 62.929688, 43.707594 ], [ 62.929688, 43.580391 ], [ 62.402344, 43.580391 ], [ 62.402344, 43.452919 ], [ 61.875000, 43.452919 ], [ 61.875000, 43.707594 ], [ 61.699219, 43.707594 ], [ 61.699219, 43.834527 ], [ 61.523438, 43.834527 ], [ 61.523438, 43.961191 ], [ 61.347656, 43.961191 ], [ 61.347656, 44.213710 ], [ 61.171875, 44.213710 ], [ 61.171875, 44.339565 ], [ 60.996094, 44.339565 ], [ 60.996094, 44.465151 ], [ 60.820312, 44.465151 ], [ 60.820312, 44.590467 ], [ 60.468750, 44.590467 ], [ 60.468750, 44.715514 ], [ 60.292969, 44.715514 ], [ 60.292969, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.964798 ], [ 59.765625, 44.964798 ], [ 59.765625, 45.089036 ], [ 59.414062, 45.089036 ], [ 59.414062, 45.213004 ], [ 59.062500, 45.213004 ], [ 59.062500, 45.336702 ], [ 58.710938, 45.336702 ], [ 58.710938, 45.460131 ], [ 58.535156, 45.460131 ], [ 58.535156, 45.583290 ], [ 58.359375, 45.583290 ], [ 58.359375, 45.460131 ], [ 57.832031, 45.460131 ], [ 57.832031, 45.336702 ], [ 57.304688, 45.336702 ], [ 57.304688, 45.213004 ], [ 56.777344, 45.213004 ], [ 56.777344, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 44.964798 ], [ 55.898438, 44.964798 ], [ 55.898438, 41.244772 ], [ 55.195312, 41.244772 ], [ 55.195312, 41.508577 ], [ 55.019531, 41.508577 ], [ 55.019531, 41.640078 ], [ 54.843750, 41.640078 ], [ 54.843750, 41.902277 ], [ 54.667969, 41.902277 ], [ 54.667969, 42.032974 ], [ 54.492188, 42.032974 ], [ 54.492188, 42.163403 ], [ 54.140625, 42.163403 ], [ 54.140625, 42.293564 ], [ 53.613281, 42.293564 ], [ 53.613281, 42.163403 ], [ 52.910156, 42.163403 ], [ 52.910156, 42.032974 ], [ 52.734375, 42.032974 ], [ 52.734375, 41.771312 ], [ 52.558594, 41.771312 ], [ 52.558594, 41.902277 ], [ 52.382812, 41.902277 ], [ 52.382812, 42.032974 ], [ 52.558594, 42.032974 ], [ 52.558594, 42.293564 ], [ 52.734375, 42.293564 ], [ 52.734375, 42.553080 ], [ 52.558594, 42.553080 ], [ 52.558594, 42.811522 ], [ 52.207031, 42.811522 ], [ 52.207031, 42.940339 ], [ 51.503906, 42.940339 ], [ 51.503906, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.325178 ], [ 51.152344, 43.325178 ], [ 51.152344, 43.834527 ], [ 50.976562, 43.834527 ], [ 50.976562, 44.087585 ], [ 50.625000, 44.087585 ], [ 50.625000, 44.213710 ], [ 50.273438, 44.213710 ], [ 50.273438, 44.590467 ], [ 50.625000, 44.590467 ], [ 50.625000, 44.465151 ], [ 51.328125, 44.465151 ], [ 51.328125, 45.213004 ], [ 51.679688, 45.213004 ], [ 51.679688, 45.336702 ], [ 52.031250, 45.336702 ], [ 52.031250, 45.460131 ], [ 52.382812, 45.460131 ], [ 52.382812, 45.336702 ], [ 52.734375, 45.336702 ], [ 52.734375, 45.213004 ], [ 53.085938, 45.213004 ], [ 53.085938, 45.706179 ], [ 53.261719, 45.706179 ], [ 53.261719, 46.437857 ], [ 53.085938, 46.437857 ], [ 53.085938, 46.800059 ], [ 51.679688, 46.800059 ], [ 51.679688, 46.920255 ], [ 51.328125, 46.920255 ], [ 51.328125, 47.040182 ], [ 51.152344, 47.040182 ], [ 51.152344, 46.920255 ], [ 50.800781, 46.920255 ], [ 50.800781, 46.800059 ], [ 50.625000, 46.800059 ], [ 50.625000, 46.679594 ], [ 50.273438, 46.679594 ], [ 50.273438, 46.558860 ], [ 49.746094, 46.558860 ], [ 49.746094, 46.437857 ], [ 48.691406, 46.437857 ], [ 48.691406, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 46.800059 ], [ 48.691406, 46.800059 ], [ 48.691406, 47.040182 ], [ 48.515625, 47.040182 ], [ 48.515625, 47.279229 ], [ 48.339844, 47.279229 ], [ 48.339844, 47.398349 ], [ 48.164062, 47.398349 ], [ 48.164062, 47.635784 ], [ 47.988281, 47.635784 ], [ 47.988281, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.872144 ], [ 46.933594, 47.872144 ], [ 46.933594, 47.989922 ], [ 46.757812, 47.989922 ], [ 46.757812, 48.107431 ], [ 46.582031, 48.107431 ], [ 46.582031, 48.224673 ], [ 46.406250, 48.224673 ], [ 46.406250, 48.341646 ], [ 46.582031, 48.341646 ], [ 46.582031, 48.574790 ], [ 46.757812, 48.574790 ], [ 46.757812, 48.806863 ], [ 46.933594, 48.806863 ], [ 46.933594, 49.037868 ], [ 47.109375, 49.037868 ], [ 47.109375, 49.152970 ], [ 46.933594, 49.152970 ], [ 46.933594, 49.267805 ], [ 46.757812, 49.267805 ], [ 46.757812, 49.382373 ], [ 46.933594, 49.382373 ], [ 46.933594, 49.610710 ], [ 47.109375, 49.610710 ], [ 47.109375, 49.837982 ], [ 47.285156, 49.837982 ], [ 47.285156, 50.064192 ], [ 47.460938, 50.064192 ], [ 47.460938, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.176898 ], [ 47.988281, 50.176898 ], [ 47.988281, 50.064192 ], [ 48.164062, 50.064192 ], [ 48.164062, 49.951220 ], [ 48.339844, 49.951220 ], [ 48.339844, 49.837982 ], [ 48.515625, 49.837982 ], [ 48.515625, 50.176898 ], [ 48.691406, 50.176898 ], [ 48.691406, 50.625073 ], [ 48.867188, 50.625073 ], [ 48.867188, 50.736455 ], [ 49.042969, 50.736455 ], [ 49.042969, 50.847573 ], [ 49.394531, 50.847573 ], [ 49.394531, 50.958427 ], [ 49.570312, 50.958427 ], [ 49.570312, 51.069017 ], [ 49.746094, 51.069017 ], [ 49.746094, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.289406 ], [ 50.097656, 51.289406 ], [ 50.097656, 51.399206 ], [ 50.449219, 51.399206 ], [ 50.449219, 51.508742 ], [ 50.625000, 51.508742 ], [ 50.625000, 51.618017 ], [ 50.800781, 51.618017 ], [ 50.800781, 51.727028 ], [ 52.382812, 51.727028 ], [ 52.382812, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.508742 ], [ 53.085938, 51.508742 ], [ 53.085938, 51.399206 ], [ 53.437500, 51.399206 ], [ 53.437500, 51.289406 ], [ 53.789062, 51.289406 ], [ 53.789062, 51.179343 ], [ 54.140625, 51.179343 ], [ 54.140625, 51.069017 ], [ 54.492188, 51.069017 ], [ 54.492188, 50.958427 ], [ 54.843750, 50.958427 ], [ 54.843750, 50.847573 ], [ 55.195312, 50.847573 ], [ 55.195312, 50.736455 ], [ 55.546875, 50.736455 ], [ 55.546875, 50.625073 ], [ 55.898438, 50.625073 ], [ 55.898438, 50.736455 ], [ 56.250000, 50.736455 ], [ 56.250000, 50.847573 ], [ 56.425781, 50.847573 ], [ 56.425781, 50.958427 ], [ 56.777344, 50.958427 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 58.359375, 50.958427 ], [ 58.710938, 50.958427 ], [ 58.710938, 50.847573 ], [ 58.886719, 50.847573 ], [ 58.886719, 50.736455 ], [ 59.062500, 50.736455 ], [ 59.062500, 50.625073 ], [ 59.414062, 50.625073 ], [ 59.414062, 50.513427 ], [ 59.765625, 50.513427 ], [ 59.765625, 50.736455 ], [ 59.941406, 50.736455 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.847573 ], [ 61.347656, 51.069017 ], [ 61.523438, 51.069017 ], [ 61.523438, 51.289406 ], [ 61.347656, 51.289406 ], [ 61.347656, 51.399206 ], [ 60.996094, 51.399206 ], [ 60.996094, 51.508742 ], [ 60.820312, 51.508742 ], [ 60.820312, 51.618017 ], [ 60.468750, 51.618017 ], [ 60.468750, 51.727028 ], [ 60.292969, 51.727028 ], [ 60.292969, 51.835778 ], [ 59.941406, 51.835778 ], [ 59.941406, 51.944265 ], [ 60.117188, 51.944265 ], [ 60.117188, 52.052490 ], [ 60.292969, 52.052490 ], [ 60.292969, 52.160455 ], [ 60.644531, 52.160455 ], [ 60.644531, 52.268157 ], [ 60.820312, 52.268157 ], [ 60.820312, 52.375599 ], [ 60.996094, 52.375599 ], [ 60.996094, 52.589701 ], [ 60.820312, 52.589701 ], [ 60.820312, 52.696361 ], [ 60.996094, 52.696361 ], [ 60.996094, 52.802761 ], [ 61.347656, 52.802761 ], [ 61.347656, 52.908902 ], [ 61.699219, 52.908902 ], [ 61.699219, 53.014783 ], [ 61.523438, 53.014783 ], [ 61.523438, 53.225768 ], [ 61.347656, 53.225768 ], [ 61.347656, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.540307 ], [ 60.996094, 53.540307 ], [ 60.996094, 53.644638 ], [ 61.171875, 53.644638 ], [ 61.171875, 53.748711 ], [ 61.347656, 53.748711 ], [ 61.347656, 53.852527 ], [ 61.523438, 53.852527 ], [ 61.523438, 53.956086 ], [ 62.050781, 53.956086 ], [ 62.050781, 54.059388 ], [ 62.929688, 54.059388 ], [ 62.929688, 54.162434 ], [ 63.984375, 54.162434 ], [ 63.984375, 54.265224 ], [ 64.863281, 54.265224 ], [ 64.863281, 54.367759 ], [ 65.390625, 54.367759 ], [ 65.390625, 54.470038 ], [ 65.742188, 54.470038 ], [ 65.742188, 54.572062 ], [ 66.093750, 54.572062 ], [ 66.093750, 54.673831 ], [ 66.796875, 54.673831 ], [ 66.796875, 54.775346 ], [ 67.324219, 54.775346 ], [ 67.324219, 54.876607 ], [ 68.027344, 54.876607 ], [ 68.027344, 54.977614 ], [ 68.378906, 54.977614 ], [ 68.378906, 55.078367 ], [ 68.554688, 55.078367 ], [ 68.554688, 55.178868 ], [ 68.906250, 55.178868 ], [ 68.906250, 55.279115 ], [ 69.082031, 55.279115 ], [ 69.082031, 55.379110 ], [ 69.433594, 55.379110 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.478853 ], [ 69.082031, 55.379110 ], [ 69.785156, 55.379110 ], [ 69.785156, 55.279115 ], [ 70.488281, 55.279115 ], [ 70.488281, 55.178868 ], [ 70.839844, 55.178868 ], [ 70.839844, 54.673831 ], [ 71.015625, 54.673831 ], [ 71.015625, 54.162434 ], [ 71.367188, 54.162434 ], [ 71.367188, 54.265224 ], [ 71.718750, 54.265224 ], [ 71.718750, 54.367759 ], [ 72.421875, 54.367759 ], [ 72.421875, 54.265224 ], [ 72.773438, 54.265224 ], [ 72.773438, 54.162434 ], [ 73.125000, 54.162434 ], [ 73.125000, 54.059388 ], [ 73.476562, 54.059388 ], [ 73.476562, 53.748711 ], [ 73.300781, 53.748711 ], [ 73.300781, 53.540307 ], [ 74.003906, 53.540307 ], [ 74.003906, 53.644638 ], [ 74.531250, 53.644638 ], [ 74.531250, 53.748711 ], [ 74.882812, 53.748711 ], [ 74.882812, 53.852527 ], [ 75.058594, 53.852527 ], [ 75.058594, 53.956086 ], [ 75.410156, 53.956086 ], [ 75.410156, 54.059388 ], [ 75.761719, 54.059388 ], [ 75.761719, 54.162434 ], [ 75.937500, 54.162434 ], [ 75.937500, 54.265224 ], [ 76.289062, 54.265224 ], [ 76.289062, 54.367759 ], [ 76.464844, 54.367759 ], [ 76.464844, 54.470038 ], [ 76.640625, 54.470038 ], [ 76.640625, 54.265224 ], [ 76.464844, 54.265224 ], [ 76.464844, 54.162434 ], [ 76.640625, 54.162434 ], [ 76.640625, 54.059388 ], [ 76.816406, 54.059388 ], [ 76.816406, 53.956086 ], [ 76.992188, 53.956086 ], [ 76.992188, 53.852527 ], [ 77.167969, 53.852527 ], [ 77.167969, 53.644638 ], [ 77.343750, 53.644638 ], [ 77.343750, 53.540307 ], [ 77.519531, 53.540307 ], [ 77.519531, 53.435719 ], [ 77.695312, 53.435719 ], [ 77.695312, 53.330873 ], [ 77.871094, 53.330873 ], [ 77.871094, 53.120405 ], [ 78.046875, 53.120405 ], [ 78.046875, 52.908902 ], [ 78.222656, 52.908902 ], [ 78.222656, 52.696361 ], [ 78.398438, 52.696361 ], [ 78.398438, 52.589701 ], [ 78.574219, 52.589701 ], [ 78.574219, 52.375599 ], [ 78.750000, 52.375599 ], [ 78.750000, 52.160455 ], [ 78.925781, 52.160455 ], [ 78.925781, 51.944265 ], [ 79.101562, 51.944265 ], [ 79.101562, 51.727028 ], [ 79.277344, 51.727028 ], [ 79.277344, 51.618017 ], [ 79.453125, 51.618017 ], [ 79.453125, 51.399206 ], [ 79.628906, 51.399206 ], [ 79.628906, 51.179343 ], [ 79.804688, 51.179343 ], [ 79.804688, 50.958427 ], [ 80.156250, 50.958427 ], [ 80.156250, 51.179343 ], [ 80.332031, 51.179343 ], [ 80.332031, 51.289406 ], [ 80.859375, 51.289406 ], [ 80.859375, 51.179343 ], [ 81.035156, 51.179343 ], [ 81.035156, 51.069017 ], [ 81.386719, 51.069017 ], [ 81.386719, 50.958427 ], [ 81.738281, 50.958427 ], [ 81.738281, 50.847573 ], [ 82.441406, 50.847573 ], [ 82.441406, 50.958427 ], [ 83.144531, 50.958427 ], [ 83.144531, 51.069017 ], [ 83.496094, 51.069017 ], [ 83.496094, 50.958427 ], [ 83.847656, 50.958427 ], [ 83.847656, 50.847573 ], [ 84.023438, 50.847573 ], [ 84.023438, 50.625073 ], [ 84.199219, 50.625073 ], [ 84.199219, 50.401515 ], [ 84.375000, 50.401515 ], [ 84.375000, 50.289339 ], [ 84.726562, 50.289339 ], [ 84.726562, 50.176898 ], [ 85.078125, 50.176898 ], [ 85.078125, 50.064192 ], [ 85.253906, 50.064192 ], [ 85.253906, 49.837982 ], [ 85.429688, 49.837982 ], [ 85.429688, 49.724479 ], [ 86.132812, 49.724479 ], [ 86.132812, 49.837982 ], [ 86.660156, 49.837982 ], [ 86.660156, 49.724479 ], [ 86.835938, 49.724479 ], [ 86.835938, 49.496675 ], [ 87.011719, 49.496675 ], [ 87.011719, 49.267805 ], [ 87.187500, 49.267805 ], [ 87.187500, 49.152970 ], [ 87.011719, 49.152970 ], [ 87.011719, 48.922499 ], [ 86.835938, 48.922499 ], [ 86.835938, 48.806863 ], [ 86.660156, 48.806863 ], [ 86.660156, 48.574790 ], [ 86.132812, 48.574790 ], [ 86.132812, 48.458352 ], [ 85.605469, 48.458352 ], [ 85.605469, 47.398349 ], [ 85.429688, 47.398349 ], [ 85.429688, 47.279229 ], [ 85.253906, 47.279229 ], [ 85.253906, 47.040182 ], [ 84.726562, 47.040182 ], [ 84.726562, 47.159840 ], [ 84.023438, 47.159840 ], [ 84.023438, 47.279229 ], [ 83.320312, 47.279229 ], [ 83.320312, 47.398349 ], [ 83.144531, 47.398349 ], [ 83.144531, 47.159840 ], [ 82.968750, 47.159840 ], [ 82.968750, 46.679594 ], [ 82.792969, 46.679594 ], [ 82.792969, 46.195042 ], [ 82.617188, 46.195042 ], [ 82.617188, 45.706179 ], [ 82.441406, 45.706179 ], [ 82.441406, 45.460131 ], [ 82.089844, 45.460131 ], [ 82.089844, 45.336702 ], [ 81.738281, 45.336702 ], [ 81.738281, 45.213004 ], [ 81.035156, 45.213004 ], [ 81.035156, 45.089036 ], [ 80.332031, 45.089036 ], [ 80.332031, 44.964798 ], [ 79.804688, 44.964798 ], [ 79.804688, 44.715514 ], [ 79.980469, 44.715514 ], [ 79.980469, 44.465151 ], [ 80.156250, 44.465151 ], [ 80.156250, 44.213710 ], [ 80.332031, 44.213710 ], [ 80.332031, 43.834527 ], [ 80.507812, 43.834527 ], [ 80.507812, 43.580391 ], [ 80.683594, 43.580391 ], [ 80.683594, 43.325178 ], [ 80.859375, 43.325178 ], [ 80.859375, 43.068888 ], [ 80.507812, 43.068888 ], [ 80.507812, 42.940339 ], [ 80.156250, 42.940339 ], [ 80.156250, 42.423457 ], [ 79.804688, 42.423457 ], [ 79.804688, 42.553080 ], [ 79.453125, 42.553080 ], [ 79.453125, 42.682435 ], [ 79.277344, 42.682435 ], [ 79.277344, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.940339 ], [ 78.222656, 42.940339 ], [ 78.222656, 43.068888 ], [ 75.937500, 43.068888 ], [ 75.937500, 42.940339 ], [ 75.234375, 42.940339 ], [ 75.234375, 43.068888 ], [ 74.707031, 43.068888 ], [ 74.707031, 43.197167 ], [ 74.355469, 43.197167 ], [ 74.355469, 43.325178 ], [ 74.003906, 43.325178 ], [ 74.003906, 43.197167 ], [ 73.476562, 43.197167 ], [ 73.476562, 42.553080 ], [ 73.125000, 42.553080 ], [ 73.125000, 42.682435 ], [ 72.421875, 42.682435 ], [ 72.421875, 42.811522 ], [ 71.894531, 42.811522 ], [ 71.894531, 42.940339 ], [ 71.542969, 42.940339 ], [ 71.542969, 42.811522 ], [ 71.015625, 42.811522 ], [ 71.015625, 42.553080 ], [ 70.839844, 42.553080 ], [ 70.839844, 42.293564 ], [ 70.664062, 42.293564 ], [ 70.664062, 42.163403 ], [ 70.312500, 42.163403 ], [ 70.312500, 42.032974 ], [ 69.960938, 42.032974 ], [ 69.960938, 41.902277 ], [ 69.785156, 41.902277 ], [ 69.785156, 41.771312 ], [ 69.433594, 41.771312 ], [ 69.433594, 41.640078 ], [ 69.082031, 41.640078 ], [ 69.082031, 41.508577 ], [ 68.906250, 41.508577 ], [ 68.906250, 41.244772 ], [ 68.730469, 41.244772 ], [ 68.730469, 40.847060 ], [ 68.554688, 40.847060 ], [ 68.554688, 40.713956 ], [ 68.203125, 40.713956 ], [ 68.203125, 40.847060 ], [ 68.027344, 40.847060 ], [ 68.027344, 41.112469 ], [ 67.851562, 41.112469 ], [ 67.851562, 41.244772 ], [ 66.621094, 41.244772 ], [ 66.621094, 41.640078 ], [ 66.445312, 41.640078 ], [ 66.445312, 42.032974 ], [ 65.917969, 42.032974 ], [ 65.917969, 42.553080 ], [ 66.093750, 42.553080 ], [ 66.093750, 43.068888 ], [ 65.917969, 43.068888 ], [ 65.917969, 43.197167 ], [ 65.742188, 43.197167 ], [ 65.742188, 43.325178 ], [ 65.566406, 43.325178 ], [ 65.566406, 43.452919 ], [ 65.214844, 43.452919 ], [ 65.214844, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.707594 ], [ 64.863281, 43.707594 ], [ 64.863281, 43.834527 ], [ 64.160156, 43.834527 ], [ 64.160156, 43.707594 ], [ 62.578125, 43.707594 ], [ 62.578125, 43.580391 ], [ 61.699219, 43.580391 ], [ 61.699219, 43.834527 ], [ 61.523438, 43.834527 ], [ 61.523438, 43.961191 ], [ 61.347656, 43.961191 ], [ 61.347656, 44.087585 ], [ 61.171875, 44.087585 ], [ 61.171875, 44.339565 ], [ 60.996094, 44.339565 ], [ 60.996094, 44.465151 ], [ 60.820312, 44.465151 ], [ 60.820312, 44.590467 ], [ 60.468750, 44.590467 ], [ 60.468750, 44.715514 ], [ 60.117188, 44.715514 ], [ 60.117188, 44.840291 ], [ 59.941406, 44.840291 ], [ 59.941406, 44.964798 ], [ 59.589844, 44.964798 ], [ 59.589844, 45.089036 ], [ 59.414062, 45.089036 ], [ 59.414062, 45.213004 ], [ 59.062500, 45.213004 ], [ 59.062500, 45.336702 ], [ 58.886719, 45.336702 ], [ 58.886719, 45.460131 ], [ 58.535156, 45.460131 ], [ 58.535156, 45.583290 ], [ 58.359375, 45.583290 ], [ 58.359375, 45.706179 ], [ 58.183594, 45.706179 ], [ 58.183594, 45.583290 ], [ 57.656250, 45.583290 ], [ 57.656250, 45.460131 ], [ 57.304688, 45.460131 ], [ 57.304688, 45.336702 ], [ 56.777344, 45.336702 ], [ 56.777344, 45.213004 ], [ 56.250000, 45.213004 ], [ 56.250000, 45.089036 ], [ 55.898438, 45.089036 ], [ 55.898438, 41.376809 ], [ 55.195312, 41.376809 ], [ 55.195312, 41.640078 ], [ 55.019531, 41.640078 ], [ 55.019531, 41.771312 ], [ 54.843750, 41.771312 ], [ 54.843750, 42.032974 ], [ 54.667969, 42.032974 ], [ 54.667969, 42.163403 ], [ 54.316406, 42.163403 ], [ 54.316406, 42.293564 ], [ 53.964844, 42.293564 ], [ 53.964844, 42.423457 ], [ 53.789062, 42.423457 ], [ 53.789062, 42.293564 ], [ 53.261719, 42.293564 ], [ 53.261719, 42.163403 ], [ 52.910156, 42.163403 ], [ 52.910156, 42.032974 ], [ 52.558594, 42.032974 ], [ 52.558594, 41.902277 ], [ 52.382812, 41.902277 ], [ 52.382812, 42.293564 ], [ 52.558594, 42.293564 ], [ 52.558594, 42.682435 ], [ 52.382812, 42.682435 ], [ 52.382812, 42.811522 ], [ 52.031250, 42.811522 ], [ 52.031250, 42.940339 ], [ 51.679688, 42.940339 ], [ 51.679688, 43.068888 ], [ 51.328125, 43.068888 ], [ 51.328125, 43.325178 ], [ 51.152344, 43.325178 ], [ 51.152344, 43.580391 ], [ 50.976562, 43.580391 ], [ 50.976562, 43.834527 ], [ 50.800781, 43.834527 ], [ 50.800781, 44.087585 ], [ 50.625000, 44.087585 ], [ 50.625000, 44.213710 ], [ 50.273438, 44.213710 ], [ 50.273438, 44.715514 ], [ 50.625000, 44.715514 ], [ 50.625000, 44.590467 ], [ 51.152344, 44.590467 ], [ 51.152344, 45.336702 ], [ 51.679688, 45.336702 ], [ 51.679688, 45.460131 ], [ 52.382812, 45.460131 ], [ 52.382812, 45.336702 ], [ 52.910156, 45.336702 ], [ 52.910156, 45.828799 ], [ 53.085938, 45.828799 ], [ 53.085938, 46.558860 ], [ 52.910156, 46.558860 ], [ 52.910156, 46.920255 ], [ 51.679688, 46.920255 ], [ 51.679688, 47.040182 ], [ 51.328125, 47.040182 ], [ 51.328125, 47.159840 ], [ 51.152344, 47.159840 ], [ 51.152344, 47.040182 ], [ 50.800781, 47.040182 ], [ 50.800781, 46.920255 ], [ 50.449219, 46.920255 ], [ 50.449219, 46.800059 ], [ 50.097656, 46.800059 ], [ 50.097656, 46.679594 ], [ 49.746094, 46.679594 ], [ 49.746094, 46.558860 ], [ 49.394531, 46.558860 ], [ 49.394531, 46.437857 ], [ 48.867188, 46.437857 ], [ 48.867188, 46.558860 ], [ 48.515625, 46.558860 ], [ 48.515625, 46.920255 ], [ 48.691406, 46.920255 ], [ 48.691406, 47.159840 ], [ 48.515625, 47.159840 ], [ 48.515625, 47.279229 ], [ 48.339844, 47.279229 ], [ 48.339844, 47.517201 ], [ 48.164062, 47.517201 ], [ 48.164062, 47.635784 ], [ 47.988281, 47.635784 ], [ 47.988281, 47.754098 ], [ 47.109375, 47.754098 ], [ 47.109375, 47.872144 ], [ 46.933594, 47.872144 ], [ 46.933594, 48.107431 ], [ 46.757812, 48.107431 ], [ 46.757812, 48.224673 ], [ 46.582031, 48.224673 ], [ 46.582031, 48.341646 ], [ 46.406250, 48.341646 ], [ 46.406250, 48.574790 ], [ 46.582031, 48.574790 ], [ 46.582031, 48.806863 ], [ 46.757812, 48.806863 ], [ 46.757812, 49.037868 ], [ 46.933594, 49.037868 ], [ 46.933594, 49.152970 ], [ 46.757812, 49.152970 ], [ 46.757812, 49.267805 ], [ 46.582031, 49.267805 ], [ 46.582031, 49.496675 ], [ 46.757812, 49.496675 ], [ 46.757812, 49.724479 ], [ 46.933594, 49.724479 ], [ 46.933594, 49.951220 ], [ 47.109375, 49.951220 ], [ 47.109375, 50.176898 ], [ 47.285156, 50.176898 ], [ 47.285156, 50.401515 ], [ 47.636719, 50.401515 ], [ 47.636719, 50.289339 ], [ 47.812500, 50.289339 ], [ 47.812500, 50.176898 ], [ 48.164062, 50.176898 ], [ 48.164062, 50.064192 ], [ 48.339844, 50.064192 ], [ 48.339844, 49.951220 ], [ 48.515625, 49.951220 ], [ 48.515625, 50.289339 ], [ 48.691406, 50.289339 ], [ 48.691406, 50.625073 ], [ 48.867188, 50.625073 ], [ 48.867188, 50.736455 ], [ 49.042969, 50.736455 ], [ 49.042969, 50.847573 ], [ 49.218750, 50.847573 ], [ 49.218750, 50.958427 ], [ 49.394531, 50.958427 ], [ 49.394531, 51.069017 ], [ 49.570312, 51.069017 ], [ 49.570312, 51.179343 ], [ 49.921875, 51.179343 ], [ 49.921875, 51.289406 ], [ 50.097656, 51.289406 ], [ 50.097656, 51.399206 ], [ 50.273438, 51.399206 ], [ 50.273438, 51.508742 ], [ 50.449219, 51.508742 ], [ 50.449219, 51.618017 ], [ 50.625000, 51.618017 ], [ 50.625000, 51.727028 ], [ 52.382812, 51.727028 ], [ 52.382812, 51.618017 ], [ 52.734375, 51.618017 ], [ 52.734375, 51.508742 ], [ 53.085938, 51.508742 ], [ 53.085938, 51.399206 ], [ 53.437500, 51.399206 ], [ 53.437500, 51.289406 ], [ 53.789062, 51.289406 ], [ 53.789062, 51.179343 ], [ 54.140625, 51.179343 ], [ 54.140625, 51.069017 ], [ 54.492188, 51.069017 ], [ 54.492188, 50.958427 ], [ 54.843750, 50.958427 ], [ 54.843750, 50.847573 ], [ 55.019531, 50.847573 ], [ 55.019531, 50.736455 ], [ 55.371094, 50.736455 ], [ 55.371094, 50.625073 ], [ 55.722656, 50.625073 ], [ 55.722656, 50.736455 ], [ 56.074219, 50.736455 ], [ 56.074219, 50.847573 ], [ 56.425781, 50.847573 ], [ 56.425781, 50.958427 ], [ 56.777344, 50.958427 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 58.359375, 50.958427 ], [ 58.710938, 50.958427 ], [ 58.710938, 50.847573 ], [ 59.062500, 50.847573 ], [ 59.062500, 50.736455 ], [ 59.414062, 50.736455 ], [ 59.414062, 50.625073 ], [ 59.589844, 50.625073 ], [ 59.589844, 50.736455 ], [ 59.765625, 50.736455 ], [ 59.765625, 50.847573 ], [ 61.171875, 50.847573 ], [ 61.171875, 50.958427 ], [ 61.347656, 50.958427 ], [ 61.347656, 51.179343 ], [ 61.523438, 51.179343 ], [ 61.523438, 51.289406 ], [ 61.347656, 51.289406 ], [ 61.347656, 51.399206 ], [ 61.171875, 51.399206 ], [ 61.171875, 51.508742 ], [ 60.820312, 51.508742 ], [ 60.820312, 51.618017 ], [ 60.644531, 51.618017 ], [ 60.644531, 51.727028 ], [ 60.468750, 51.727028 ], [ 60.468750, 51.835778 ], [ 60.117188, 51.835778 ], [ 60.117188, 51.944265 ], [ 59.941406, 51.944265 ], [ 59.941406, 52.052490 ], [ 60.117188, 52.052490 ], [ 60.117188, 52.160455 ], [ 60.292969, 52.160455 ], [ 60.292969, 52.268157 ], [ 60.644531, 52.268157 ], [ 60.644531, 52.375599 ], [ 60.820312, 52.375599 ], [ 60.820312, 52.589701 ], [ 60.644531, 52.589701 ], [ 60.644531, 52.802761 ], [ 60.996094, 52.802761 ], [ 60.996094, 52.908902 ], [ 61.523438, 52.908902 ], [ 61.523438, 53.225768 ], [ 61.347656, 53.225768 ], [ 61.347656, 53.330873 ], [ 61.171875, 53.330873 ], [ 61.171875, 53.435719 ], [ 60.996094, 53.435719 ], [ 60.996094, 53.644638 ], [ 60.820312, 53.644638 ], [ 60.820312, 53.748711 ], [ 60.996094, 53.748711 ], [ 60.996094, 53.852527 ], [ 61.171875, 53.852527 ], [ 61.171875, 53.956086 ], [ 61.347656, 53.956086 ], [ 61.347656, 54.059388 ], [ 62.050781, 54.059388 ], [ 62.050781, 54.162434 ], [ 63.281250, 54.162434 ], [ 63.281250, 54.265224 ], [ 64.511719, 54.265224 ], [ 64.511719, 54.367759 ], [ 65.214844, 54.367759 ], [ 65.214844, 54.470038 ], [ 65.390625, 54.470038 ], [ 65.390625, 54.572062 ], [ 65.566406, 54.572062 ], [ 65.566406, 54.673831 ], [ 66.093750, 54.673831 ], [ 66.093750, 54.775346 ], [ 66.972656, 54.775346 ], [ 66.972656, 54.876607 ], [ 67.675781, 54.876607 ], [ 67.675781, 54.977614 ], [ 68.203125, 54.977614 ], [ 68.203125, 55.078367 ], [ 68.378906, 55.078367 ], [ 68.378906, 55.178868 ], [ 68.554688, 55.178868 ], [ 68.554688, 55.279115 ], [ 68.730469, 55.279115 ], [ 68.730469, 55.379110 ], [ 68.906250, 55.379110 ], [ 68.906250, 55.478853 ], [ 69.082031, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.535156, 45.583290 ], [ 58.535156, 45.460131 ], [ 58.710938, 45.460131 ], [ 58.710938, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.213004 ], [ 59.414062, 45.213004 ], [ 59.414062, 45.089036 ], [ 59.765625, 45.089036 ], [ 59.765625, 44.964798 ], [ 60.117188, 44.964798 ], [ 60.117188, 44.840291 ], [ 60.292969, 44.840291 ], [ 60.292969, 44.715514 ], [ 60.468750, 44.715514 ], [ 60.468750, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.465151 ], [ 60.996094, 44.465151 ], [ 60.996094, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.213710 ], [ 61.347656, 44.213710 ], [ 61.347656, 43.961191 ], [ 61.523438, 43.961191 ], [ 61.523438, 43.834527 ], [ 61.699219, 43.834527 ], [ 61.699219, 43.707594 ], [ 61.875000, 43.707594 ], [ 61.875000, 43.452919 ], [ 62.402344, 43.452919 ], [ 62.402344, 43.580391 ], [ 62.929688, 43.580391 ], [ 62.929688, 43.707594 ], [ 64.863281, 43.707594 ], [ 64.863281, 43.580391 ], [ 65.039062, 43.580391 ], [ 65.039062, 43.452919 ], [ 65.214844, 43.452919 ], [ 65.214844, 43.325178 ], [ 65.566406, 43.325178 ], [ 65.566406, 43.197167 ], [ 65.742188, 43.197167 ], [ 65.742188, 43.068888 ], [ 65.917969, 43.068888 ], [ 65.917969, 42.940339 ], [ 66.093750, 42.940339 ], [ 66.093750, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.771312 ], [ 66.621094, 41.771312 ], [ 66.621094, 41.244772 ], [ 66.796875, 41.244772 ], [ 66.796875, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.730469, 40.713956 ], [ 68.730469, 40.979898 ], [ 68.906250, 40.979898 ], [ 68.906250, 41.244772 ], [ 69.082031, 41.244772 ], [ 69.082031, 41.376809 ], [ 69.257812, 41.376809 ], [ 69.257812, 41.508577 ], [ 69.609375, 41.508577 ], [ 69.609375, 41.640078 ], [ 69.785156, 41.640078 ], [ 69.785156, 41.771312 ], [ 69.960938, 41.771312 ], [ 69.960938, 41.902277 ], [ 70.312500, 41.902277 ], [ 70.312500, 42.032974 ], [ 70.664062, 42.032974 ], [ 70.664062, 42.163403 ], [ 71.191406, 42.163403 ], [ 71.191406, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 41.902277 ], [ 70.839844, 41.902277 ], [ 70.839844, 41.640078 ], [ 70.664062, 41.640078 ], [ 70.664062, 41.508577 ], [ 70.488281, 41.508577 ], [ 70.488281, 41.376809 ], [ 70.664062, 41.376809 ], [ 70.664062, 41.244772 ], [ 71.015625, 41.244772 ], [ 71.015625, 41.112469 ], [ 71.542969, 41.112469 ], [ 71.542969, 41.244772 ], [ 72.246094, 41.244772 ], [ 72.246094, 41.112469 ], [ 72.597656, 41.112469 ], [ 72.597656, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 73.125000, 40.847060 ], [ 73.125000, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.713956 ], [ 70.664062, 40.713956 ], [ 70.664062, 40.979898 ], [ 70.488281, 40.979898 ], [ 70.488281, 40.847060 ], [ 69.785156, 40.847060 ], [ 69.785156, 40.713956 ], [ 69.257812, 40.713956 ], [ 69.257812, 40.446947 ], [ 69.082031, 40.446947 ], [ 69.082031, 40.313043 ], [ 62.226562, 40.313043 ], [ 62.226562, 40.446947 ], [ 62.050781, 40.446947 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.523438, 41.112469 ], [ 61.523438, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.771312 ], [ 59.941406, 41.771312 ], [ 59.941406, 42.163403 ], [ 59.765625, 42.163403 ], [ 59.765625, 42.293564 ], [ 59.414062, 42.293564 ], [ 59.414062, 42.423457 ], [ 59.238281, 42.423457 ], [ 59.238281, 42.553080 ], [ 59.062500, 42.553080 ], [ 59.062500, 42.682435 ], [ 58.535156, 42.682435 ], [ 58.535156, 42.553080 ], [ 58.359375, 42.553080 ], [ 58.359375, 42.423457 ], [ 58.183594, 42.423457 ], [ 58.183594, 42.293564 ], [ 58.007812, 42.293564 ], [ 58.007812, 42.163403 ], [ 57.832031, 42.163403 ], [ 57.832031, 42.032974 ], [ 57.480469, 42.032974 ], [ 57.480469, 41.902277 ], [ 57.128906, 41.902277 ], [ 57.128906, 41.771312 ], [ 56.953125, 41.771312 ], [ 56.953125, 41.508577 ], [ 57.128906, 41.508577 ], [ 57.128906, 41.376809 ], [ 56.601562, 41.376809 ], [ 56.601562, 41.244772 ], [ 55.898438, 41.244772 ], [ 55.898438, 44.964798 ], [ 56.250000, 44.964798 ], [ 56.250000, 45.089036 ], [ 56.777344, 45.089036 ], [ 56.777344, 45.213004 ], [ 57.304688, 45.213004 ], [ 57.304688, 45.336702 ], [ 57.832031, 45.336702 ], [ 57.832031, 45.460131 ], [ 58.359375, 45.460131 ], [ 58.359375, 45.583290 ], [ 58.535156, 45.583290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.359375, 45.706179 ], [ 58.359375, 45.583290 ], [ 58.535156, 45.583290 ], [ 58.535156, 45.460131 ], [ 58.886719, 45.460131 ], [ 58.886719, 45.336702 ], [ 59.062500, 45.336702 ], [ 59.062500, 45.213004 ], [ 59.414062, 45.213004 ], [ 59.414062, 45.089036 ], [ 59.589844, 45.089036 ], [ 59.589844, 44.964798 ], [ 59.941406, 44.964798 ], [ 59.941406, 44.840291 ], [ 60.117188, 44.840291 ], [ 60.117188, 44.715514 ], [ 60.468750, 44.715514 ], [ 60.468750, 44.590467 ], [ 60.820312, 44.590467 ], [ 60.820312, 44.465151 ], [ 60.996094, 44.465151 ], [ 60.996094, 44.339565 ], [ 61.171875, 44.339565 ], [ 61.171875, 44.087585 ], [ 61.347656, 44.087585 ], [ 61.347656, 43.961191 ], [ 61.523438, 43.961191 ], [ 61.523438, 43.834527 ], [ 61.699219, 43.834527 ], [ 61.699219, 43.580391 ], [ 62.578125, 43.580391 ], [ 62.578125, 43.707594 ], [ 64.160156, 43.707594 ], [ 64.160156, 43.834527 ], [ 64.863281, 43.834527 ], [ 64.863281, 43.707594 ], [ 65.039062, 43.707594 ], [ 65.039062, 43.580391 ], [ 65.214844, 43.580391 ], [ 65.214844, 43.452919 ], [ 65.566406, 43.452919 ], [ 65.566406, 43.325178 ], [ 65.742188, 43.325178 ], [ 65.742188, 43.197167 ], [ 65.917969, 43.197167 ], [ 65.917969, 43.068888 ], [ 66.093750, 43.068888 ], [ 66.093750, 42.553080 ], [ 65.917969, 42.553080 ], [ 65.917969, 42.032974 ], [ 66.445312, 42.032974 ], [ 66.445312, 41.640078 ], [ 66.621094, 41.640078 ], [ 66.621094, 41.244772 ], [ 67.851562, 41.244772 ], [ 67.851562, 41.112469 ], [ 68.027344, 41.112469 ], [ 68.027344, 40.847060 ], [ 68.203125, 40.847060 ], [ 68.203125, 40.713956 ], [ 68.554688, 40.713956 ], [ 68.554688, 40.847060 ], [ 68.730469, 40.847060 ], [ 68.730469, 41.244772 ], [ 68.906250, 41.244772 ], [ 68.906250, 41.508577 ], [ 69.082031, 41.508577 ], [ 69.082031, 41.640078 ], [ 69.433594, 41.640078 ], [ 69.433594, 41.771312 ], [ 69.785156, 41.771312 ], [ 69.785156, 41.902277 ], [ 69.960938, 41.902277 ], [ 69.960938, 42.032974 ], [ 70.312500, 42.032974 ], [ 70.312500, 42.163403 ], [ 70.664062, 42.163403 ], [ 70.664062, 42.293564 ], [ 71.191406, 42.293564 ], [ 71.191406, 42.163403 ], [ 71.015625, 42.163403 ], [ 71.015625, 42.032974 ], [ 70.839844, 42.032974 ], [ 70.839844, 41.902277 ], [ 70.664062, 41.902277 ], [ 70.664062, 41.771312 ], [ 70.488281, 41.771312 ], [ 70.488281, 41.640078 ], [ 70.312500, 41.640078 ], [ 70.312500, 41.508577 ], [ 70.488281, 41.508577 ], [ 70.488281, 41.376809 ], [ 70.839844, 41.376809 ], [ 70.839844, 41.244772 ], [ 71.367188, 41.244772 ], [ 71.367188, 41.376809 ], [ 72.070312, 41.376809 ], [ 72.070312, 41.244772 ], [ 72.421875, 41.244772 ], [ 72.421875, 41.112469 ], [ 72.773438, 41.112469 ], [ 72.773438, 40.979898 ], [ 72.949219, 40.979898 ], [ 72.949219, 40.847060 ], [ 72.773438, 40.847060 ], [ 72.773438, 40.713956 ], [ 72.597656, 40.713956 ], [ 72.597656, 40.580585 ], [ 72.246094, 40.580585 ], [ 72.246094, 40.446947 ], [ 72.070312, 40.446947 ], [ 72.070312, 40.313043 ], [ 70.488281, 40.313043 ], [ 70.488281, 40.446947 ], [ 70.312500, 40.446947 ], [ 70.312500, 40.580585 ], [ 70.488281, 40.580585 ], [ 70.488281, 40.847060 ], [ 70.664062, 40.847060 ], [ 70.664062, 40.979898 ], [ 70.136719, 40.979898 ], [ 70.136719, 40.847060 ], [ 69.257812, 40.847060 ], [ 69.257812, 40.580585 ], [ 69.082031, 40.580585 ], [ 69.082031, 40.313043 ], [ 62.226562, 40.313043 ], [ 62.226562, 40.446947 ], [ 62.050781, 40.446947 ], [ 62.050781, 40.847060 ], [ 61.875000, 40.847060 ], [ 61.875000, 41.112469 ], [ 61.699219, 41.112469 ], [ 61.699219, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.376809 ], [ 60.996094, 41.376809 ], [ 60.996094, 41.244772 ], [ 60.117188, 41.244772 ], [ 60.117188, 41.376809 ], [ 59.941406, 41.376809 ], [ 59.941406, 42.293564 ], [ 59.589844, 42.293564 ], [ 59.589844, 42.423457 ], [ 59.238281, 42.423457 ], [ 59.238281, 42.553080 ], [ 58.886719, 42.553080 ], [ 58.886719, 42.682435 ], [ 58.359375, 42.682435 ], [ 58.359375, 42.553080 ], [ 58.007812, 42.553080 ], [ 58.007812, 42.423457 ], [ 57.832031, 42.423457 ], [ 57.832031, 42.293564 ], [ 57.656250, 42.293564 ], [ 57.656250, 42.163403 ], [ 57.304688, 42.163403 ], [ 57.304688, 42.032974 ], [ 56.953125, 42.032974 ], [ 56.953125, 41.902277 ], [ 56.777344, 41.902277 ], [ 56.777344, 41.640078 ], [ 56.953125, 41.640078 ], [ 56.953125, 41.376809 ], [ 55.898438, 41.376809 ], [ 55.898438, 45.089036 ], [ 56.250000, 45.089036 ], [ 56.250000, 45.213004 ], [ 56.777344, 45.213004 ], [ 56.777344, 45.336702 ], [ 57.304688, 45.336702 ], [ 57.304688, 45.460131 ], [ 57.656250, 45.460131 ], [ 57.656250, 45.583290 ], [ 58.183594, 45.583290 ], [ 58.183594, 45.706179 ], [ 58.359375, 45.706179 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.355469, 43.325178 ], [ 74.355469, 43.197167 ], [ 74.707031, 43.197167 ], [ 74.707031, 43.068888 ], [ 75.234375, 43.068888 ], [ 75.234375, 42.940339 ], [ 78.222656, 42.940339 ], [ 78.222656, 42.811522 ], [ 79.101562, 42.811522 ], [ 79.101562, 42.682435 ], [ 79.453125, 42.682435 ], [ 79.453125, 42.553080 ], [ 79.628906, 42.553080 ], [ 79.628906, 42.423457 ], [ 79.980469, 42.423457 ], [ 79.980469, 42.293564 ], [ 80.332031, 42.293564 ], [ 80.332031, 42.163403 ], [ 79.980469, 42.163403 ], [ 79.980469, 42.032974 ], [ 79.628906, 42.032974 ], [ 79.628906, 41.902277 ], [ 79.277344, 41.902277 ], [ 79.277344, 41.771312 ], [ 78.925781, 41.771312 ], [ 78.925781, 41.640078 ], [ 78.574219, 41.640078 ], [ 78.574219, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.244772 ], [ 77.695312, 41.244772 ], [ 77.695312, 41.112469 ], [ 76.992188, 41.112469 ], [ 76.992188, 40.979898 ], [ 76.816406, 40.979898 ], [ 76.816406, 40.713956 ], [ 76.640625, 40.713956 ], [ 76.640625, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.410156, 40.580585 ], [ 75.410156, 40.446947 ], [ 75.058594, 40.446947 ], [ 75.058594, 40.313043 ], [ 72.246094, 40.313043 ], [ 72.246094, 40.446947 ], [ 72.597656, 40.446947 ], [ 72.597656, 40.580585 ], [ 72.773438, 40.580585 ], [ 72.773438, 40.713956 ], [ 73.125000, 40.713956 ], [ 73.125000, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.597656, 40.979898 ], [ 72.597656, 41.112469 ], [ 72.246094, 41.112469 ], [ 72.246094, 41.244772 ], [ 71.542969, 41.244772 ], [ 71.542969, 41.112469 ], [ 71.015625, 41.112469 ], [ 71.015625, 41.244772 ], [ 70.664062, 41.244772 ], [ 70.664062, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.508577 ], [ 70.664062, 41.508577 ], [ 70.664062, 41.640078 ], [ 70.839844, 41.640078 ], [ 70.839844, 41.902277 ], [ 71.015625, 41.902277 ], [ 71.015625, 42.032974 ], [ 71.191406, 42.032974 ], [ 71.191406, 42.163403 ], [ 71.015625, 42.163403 ], [ 71.015625, 42.423457 ], [ 71.191406, 42.423457 ], [ 71.191406, 42.682435 ], [ 71.718750, 42.682435 ], [ 71.718750, 42.811522 ], [ 72.246094, 42.811522 ], [ 72.246094, 42.682435 ], [ 72.949219, 42.682435 ], [ 72.949219, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 42.811522 ], [ 73.652344, 42.811522 ], [ 73.652344, 43.068888 ], [ 73.828125, 43.068888 ], [ 73.828125, 43.197167 ], [ 74.179688, 43.197167 ], [ 74.179688, 43.325178 ], [ 74.355469, 43.325178 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.355469, 43.325178 ], [ 74.355469, 43.197167 ], [ 74.707031, 43.197167 ], [ 74.707031, 43.068888 ], [ 75.234375, 43.068888 ], [ 75.234375, 42.940339 ], [ 75.937500, 42.940339 ], [ 75.937500, 43.068888 ], [ 78.222656, 43.068888 ], [ 78.222656, 42.940339 ], [ 79.101562, 42.940339 ], [ 79.101562, 42.811522 ], [ 79.277344, 42.811522 ], [ 79.277344, 42.682435 ], [ 79.453125, 42.682435 ], [ 79.453125, 42.553080 ], [ 79.804688, 42.553080 ], [ 79.804688, 42.423457 ], [ 80.156250, 42.423457 ], [ 80.156250, 42.293564 ], [ 79.980469, 42.293564 ], [ 79.980469, 42.163403 ], [ 79.804688, 42.163403 ], [ 79.804688, 42.032974 ], [ 79.453125, 42.032974 ], [ 79.453125, 41.902277 ], [ 79.101562, 41.902277 ], [ 79.101562, 41.771312 ], [ 78.750000, 41.771312 ], [ 78.750000, 41.640078 ], [ 78.398438, 41.640078 ], [ 78.398438, 41.508577 ], [ 78.222656, 41.508577 ], [ 78.222656, 41.244772 ], [ 77.519531, 41.244772 ], [ 77.519531, 41.112469 ], [ 76.816406, 41.112469 ], [ 76.816406, 40.847060 ], [ 76.640625, 40.847060 ], [ 76.640625, 40.580585 ], [ 76.464844, 40.580585 ], [ 76.464844, 40.446947 ], [ 75.761719, 40.446947 ], [ 75.761719, 40.580585 ], [ 75.234375, 40.580585 ], [ 75.234375, 40.446947 ], [ 74.707031, 40.446947 ], [ 74.707031, 40.313043 ], [ 72.070312, 40.313043 ], [ 72.070312, 40.446947 ], [ 72.246094, 40.446947 ], [ 72.246094, 40.580585 ], [ 72.597656, 40.580585 ], [ 72.597656, 40.713956 ], [ 72.773438, 40.713956 ], [ 72.773438, 40.847060 ], [ 72.949219, 40.847060 ], [ 72.949219, 40.979898 ], [ 72.773438, 40.979898 ], [ 72.773438, 41.112469 ], [ 72.421875, 41.112469 ], [ 72.421875, 41.244772 ], [ 72.070312, 41.244772 ], [ 72.070312, 41.376809 ], [ 71.367188, 41.376809 ], [ 71.367188, 41.244772 ], [ 70.839844, 41.244772 ], [ 70.839844, 41.376809 ], [ 70.488281, 41.376809 ], [ 70.488281, 41.508577 ], [ 70.312500, 41.508577 ], [ 70.312500, 41.640078 ], [ 70.488281, 41.640078 ], [ 70.488281, 41.771312 ], [ 70.664062, 41.771312 ], [ 70.664062, 41.902277 ], [ 70.839844, 41.902277 ], [ 70.839844, 42.032974 ], [ 71.015625, 42.032974 ], [ 71.015625, 42.163403 ], [ 71.191406, 42.163403 ], [ 71.191406, 42.293564 ], [ 70.839844, 42.293564 ], [ 70.839844, 42.553080 ], [ 71.015625, 42.553080 ], [ 71.015625, 42.811522 ], [ 71.542969, 42.811522 ], [ 71.542969, 42.940339 ], [ 71.894531, 42.940339 ], [ 71.894531, 42.811522 ], [ 72.421875, 42.811522 ], [ 72.421875, 42.682435 ], [ 73.125000, 42.682435 ], [ 73.125000, 42.553080 ], [ 73.476562, 42.553080 ], [ 73.476562, 43.197167 ], [ 74.003906, 43.197167 ], [ 74.003906, 43.325178 ], [ 74.355469, 43.325178 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.112469 ], [ 44.648438, 41.112469 ], [ 44.648438, 41.244772 ], [ 45.000000, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 41.376809 ], [ 44.824219, 41.244772 ], [ 45.000000, 41.244772 ], [ 45.000000, 41.112469 ], [ 45.175781, 41.112469 ], [ 45.175781, 40.979898 ], [ 45.351562, 40.979898 ], [ 45.351562, 40.847060 ], [ 45.527344, 40.847060 ], [ 45.527344, 40.713956 ], [ 45.351562, 40.713956 ], [ 45.351562, 40.446947 ], [ 45.527344, 40.446947 ], [ 45.527344, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.244772 ], [ 44.648438, 41.244772 ], [ 44.648438, 41.376809 ], [ 44.824219, 41.376809 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.757812, 41.771312 ], [ 46.757812, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.508577 ], [ 47.109375, 41.508577 ], [ 47.109375, 41.376809 ], [ 47.285156, 41.376809 ], [ 47.285156, 41.244772 ], [ 47.460938, 41.244772 ], [ 47.460938, 41.112469 ], [ 47.812500, 41.112469 ], [ 47.812500, 41.244772 ], [ 47.988281, 41.244772 ], [ 47.988281, 41.376809 ], [ 48.164062, 41.376809 ], [ 48.164062, 41.508577 ], [ 48.339844, 41.508577 ], [ 48.339844, 41.640078 ], [ 48.691406, 41.640078 ], [ 48.691406, 41.508577 ], [ 48.867188, 41.508577 ], [ 48.867188, 41.244772 ], [ 49.042969, 41.244772 ], [ 49.042969, 41.112469 ], [ 49.218750, 41.112469 ], [ 49.218750, 40.847060 ], [ 49.394531, 40.847060 ], [ 49.394531, 40.580585 ], [ 50.097656, 40.580585 ], [ 50.097656, 40.446947 ], [ 50.273438, 40.446947 ], [ 50.273438, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.175781, 40.847060 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 45.527344, 41.244772 ], [ 45.527344, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.376809 ], [ 46.406250, 41.376809 ], [ 46.406250, 41.640078 ], [ 46.230469, 41.640078 ], [ 46.230469, 41.771312 ], [ 46.757812, 41.771312 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.582031, 41.902277 ], [ 46.582031, 41.771312 ], [ 46.757812, 41.771312 ], [ 46.757812, 41.640078 ], [ 46.933594, 41.640078 ], [ 46.933594, 41.376809 ], [ 47.109375, 41.376809 ], [ 47.109375, 41.244772 ], [ 47.812500, 41.244772 ], [ 47.812500, 41.376809 ], [ 47.988281, 41.376809 ], [ 47.988281, 41.508577 ], [ 48.164062, 41.508577 ], [ 48.164062, 41.640078 ], [ 48.339844, 41.640078 ], [ 48.339844, 41.771312 ], [ 48.691406, 41.771312 ], [ 48.691406, 41.640078 ], [ 48.867188, 41.640078 ], [ 48.867188, 41.376809 ], [ 49.042969, 41.376809 ], [ 49.042969, 41.244772 ], [ 49.218750, 41.244772 ], [ 49.218750, 40.979898 ], [ 49.394531, 40.979898 ], [ 49.394531, 40.713956 ], [ 49.570312, 40.713956 ], [ 49.570312, 40.580585 ], [ 49.921875, 40.580585 ], [ 49.921875, 40.446947 ], [ 50.097656, 40.446947 ], [ 50.097656, 40.313043 ], [ 45.527344, 40.313043 ], [ 45.527344, 40.446947 ], [ 45.351562, 40.446947 ], [ 45.351562, 40.713956 ], [ 45.527344, 40.713956 ], [ 45.527344, 40.847060 ], [ 45.351562, 40.847060 ], [ 45.351562, 40.979898 ], [ 45.175781, 40.979898 ], [ 45.175781, 41.112469 ], [ 45.000000, 41.112469 ], [ 45.000000, 41.244772 ], [ 44.824219, 41.244772 ], [ 44.824219, 41.376809 ], [ 45.527344, 41.376809 ], [ 45.527344, 41.244772 ], [ 46.054688, 41.244772 ], [ 46.054688, 41.112469 ], [ 46.582031, 41.112469 ], [ 46.582031, 41.244772 ], [ 46.406250, 41.244772 ], [ 46.406250, 41.508577 ], [ 46.230469, 41.508577 ], [ 46.230469, 41.640078 ], [ 46.054688, 41.640078 ], [ 46.054688, 41.771312 ], [ 46.406250, 41.771312 ], [ 46.406250, 41.902277 ], [ 46.582031, 41.902277 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 59.062500, 42.682435 ], [ 59.062500, 42.553080 ], [ 59.238281, 42.553080 ], [ 59.238281, 42.423457 ], [ 59.414062, 42.423457 ], [ 59.414062, 42.293564 ], [ 59.765625, 42.293564 ], [ 59.765625, 42.163403 ], [ 59.941406, 42.163403 ], [ 59.941406, 41.771312 ], [ 60.117188, 41.771312 ], [ 60.117188, 41.244772 ], [ 61.523438, 41.244772 ], [ 61.523438, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 40.313043 ], [ 52.734375, 40.313043 ], [ 52.734375, 40.580585 ], [ 52.910156, 40.580585 ], [ 52.910156, 40.847060 ], [ 53.085938, 40.847060 ], [ 53.085938, 40.713956 ], [ 53.437500, 40.713956 ], [ 53.437500, 40.580585 ], [ 53.964844, 40.580585 ], [ 53.964844, 40.713956 ], [ 54.316406, 40.713956 ], [ 54.316406, 40.847060 ], [ 54.667969, 40.847060 ], [ 54.667969, 40.979898 ], [ 54.492188, 40.979898 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.244772 ], [ 54.140625, 41.244772 ], [ 54.140625, 41.376809 ], [ 53.964844, 41.376809 ], [ 53.964844, 41.771312 ], [ 53.789062, 41.771312 ], [ 53.789062, 42.163403 ], [ 53.613281, 42.163403 ], [ 53.613281, 42.293564 ], [ 54.140625, 42.293564 ], [ 54.140625, 42.163403 ], [ 54.492188, 42.163403 ], [ 54.492188, 42.032974 ], [ 54.667969, 42.032974 ], [ 54.667969, 41.902277 ], [ 54.843750, 41.902277 ], [ 54.843750, 41.640078 ], [ 55.019531, 41.640078 ], [ 55.019531, 41.508577 ], [ 55.195312, 41.508577 ], [ 55.195312, 41.244772 ], [ 56.601562, 41.244772 ], [ 56.601562, 41.376809 ], [ 57.128906, 41.376809 ], [ 57.128906, 41.508577 ], [ 56.953125, 41.508577 ], [ 56.953125, 41.771312 ], [ 57.128906, 41.771312 ], [ 57.128906, 41.902277 ], [ 57.480469, 41.902277 ], [ 57.480469, 42.032974 ], [ 57.832031, 42.032974 ], [ 57.832031, 42.163403 ], [ 58.007812, 42.163403 ], [ 58.007812, 42.293564 ], [ 58.183594, 42.293564 ], [ 58.183594, 42.423457 ], [ 58.359375, 42.423457 ], [ 58.359375, 42.553080 ], [ 58.535156, 42.553080 ], [ 58.535156, 42.682435 ], [ 59.062500, 42.682435 ] ] ], [ [ [ 53.613281, 42.163403 ], [ 53.613281, 42.032974 ], [ 53.261719, 42.032974 ], [ 53.261719, 41.902277 ], [ 52.910156, 41.902277 ], [ 52.910156, 41.508577 ], [ 52.734375, 41.508577 ], [ 52.734375, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.771312 ], [ 52.734375, 41.771312 ], [ 52.734375, 42.032974 ], [ 52.910156, 42.032974 ], [ 52.910156, 42.163403 ], [ 53.613281, 42.163403 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.886719, 42.682435 ], [ 58.886719, 42.553080 ], [ 59.238281, 42.553080 ], [ 59.238281, 42.423457 ], [ 59.589844, 42.423457 ], [ 59.589844, 42.293564 ], [ 59.941406, 42.293564 ], [ 59.941406, 41.376809 ], [ 60.117188, 41.376809 ], [ 60.117188, 41.244772 ], [ 60.996094, 41.244772 ], [ 60.996094, 41.376809 ], [ 61.523438, 41.376809 ], [ 61.523438, 41.244772 ], [ 61.699219, 41.244772 ], [ 61.699219, 41.112469 ], [ 61.875000, 41.112469 ], [ 61.875000, 40.847060 ], [ 62.050781, 40.847060 ], [ 62.050781, 40.446947 ], [ 62.226562, 40.446947 ], [ 62.226562, 40.313043 ], [ 52.734375, 40.313043 ], [ 52.734375, 40.580585 ], [ 52.910156, 40.580585 ], [ 52.910156, 40.979898 ], [ 53.085938, 40.979898 ], [ 53.085938, 40.847060 ], [ 53.437500, 40.847060 ], [ 53.437500, 40.713956 ], [ 54.140625, 40.713956 ], [ 54.140625, 40.847060 ], [ 54.492188, 40.847060 ], [ 54.492188, 41.112469 ], [ 54.316406, 41.112469 ], [ 54.316406, 41.376809 ], [ 54.140625, 41.376809 ], [ 54.140625, 41.508577 ], [ 53.964844, 41.508577 ], [ 53.964844, 41.771312 ], [ 53.789062, 41.771312 ], [ 53.789062, 42.032974 ], [ 53.261719, 42.032974 ], [ 53.261719, 41.902277 ], [ 52.910156, 41.902277 ], [ 52.910156, 41.508577 ], [ 52.734375, 41.508577 ], [ 52.734375, 41.376809 ], [ 52.558594, 41.376809 ], [ 52.558594, 41.640078 ], [ 52.382812, 41.640078 ], [ 52.382812, 41.902277 ], [ 52.558594, 41.902277 ], [ 52.558594, 42.032974 ], [ 52.910156, 42.032974 ], [ 52.910156, 42.163403 ], [ 53.261719, 42.163403 ], [ 53.261719, 42.293564 ], [ 53.789062, 42.293564 ], [ 53.789062, 42.423457 ], [ 53.964844, 42.423457 ], [ 53.964844, 42.293564 ], [ 54.316406, 42.293564 ], [ 54.316406, 42.163403 ], [ 54.667969, 42.163403 ], [ 54.667969, 42.032974 ], [ 54.843750, 42.032974 ], [ 54.843750, 41.771312 ], [ 55.019531, 41.771312 ], [ 55.019531, 41.640078 ], [ 55.195312, 41.640078 ], [ 55.195312, 41.376809 ], [ 56.953125, 41.376809 ], [ 56.953125, 41.640078 ], [ 56.777344, 41.640078 ], [ 56.777344, 41.902277 ], [ 56.953125, 41.902277 ], [ 56.953125, 42.032974 ], [ 57.304688, 42.032974 ], [ 57.304688, 42.163403 ], [ 57.656250, 42.163403 ], [ 57.656250, 42.293564 ], [ 57.832031, 42.293564 ], [ 57.832031, 42.423457 ], [ 58.007812, 42.423457 ], [ 58.007812, 42.553080 ], [ 58.359375, 42.553080 ], [ 58.359375, 42.682435 ], [ 58.886719, 42.682435 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.713956 ], [ 70.488281, 40.713956 ], [ 70.488281, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 40.446947 ], [ 69.257812, 40.446947 ], [ 69.257812, 40.713956 ], [ 69.785156, 40.713956 ], [ 69.785156, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.979898 ], [ 70.664062, 40.847060 ], [ 70.488281, 40.847060 ], [ 70.488281, 40.580585 ], [ 70.312500, 40.580585 ], [ 70.312500, 40.446947 ], [ 70.488281, 40.446947 ], [ 70.488281, 40.313043 ], [ 69.082031, 40.313043 ], [ 69.082031, 40.580585 ], [ 69.257812, 40.580585 ], [ 69.257812, 40.847060 ], [ 70.136719, 40.847060 ], [ 70.136719, 40.979898 ], [ 70.664062, 40.979898 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.437857 ], [ 90.878906, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.951150 ], [ 90.703125, 45.951150 ], [ 90.703125, 46.437857 ], [ 90.878906, 46.437857 ] ] ], [ [ [ 90.878906, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 88.945312, 47.989922 ], [ 88.945312, 48.107431 ], [ 88.593750, 48.107431 ], [ 88.593750, 48.224673 ], [ 88.417969, 48.224673 ], [ 88.417969, 48.341646 ], [ 88.242188, 48.341646 ], [ 88.242188, 48.458352 ], [ 88.066406, 48.458352 ], [ 88.066406, 48.690960 ], [ 87.890625, 48.690960 ], [ 87.890625, 49.037868 ], [ 87.714844, 49.037868 ], [ 87.714844, 49.267805 ], [ 88.066406, 49.267805 ], [ 88.066406, 49.382373 ], [ 88.593750, 49.382373 ], [ 88.593750, 49.496675 ], [ 88.945312, 49.496675 ], [ 88.945312, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.472656, 49.724479 ], [ 89.472656, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 47.040182 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.437857 ], [ 90.878906, 45.460131 ], [ 90.703125, 45.460131 ], [ 90.703125, 45.706179 ], [ 90.527344, 45.706179 ], [ 90.527344, 45.951150 ], [ 90.703125, 45.951150 ], [ 90.703125, 46.437857 ], [ 90.878906, 46.437857 ] ] ], [ [ [ 90.878906, 47.040182 ], [ 90.703125, 47.040182 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.398349 ], [ 90.351562, 47.398349 ], [ 90.351562, 47.635784 ], [ 90.175781, 47.635784 ], [ 90.175781, 47.754098 ], [ 89.824219, 47.754098 ], [ 89.824219, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 88.945312, 47.989922 ], [ 88.945312, 48.107431 ], [ 88.593750, 48.107431 ], [ 88.593750, 48.224673 ], [ 88.417969, 48.224673 ], [ 88.417969, 48.341646 ], [ 88.242188, 48.341646 ], [ 88.242188, 48.458352 ], [ 88.066406, 48.458352 ], [ 88.066406, 48.574790 ], [ 87.890625, 48.574790 ], [ 87.890625, 49.037868 ], [ 87.714844, 49.037868 ], [ 87.714844, 49.382373 ], [ 88.417969, 49.382373 ], [ 88.417969, 49.496675 ], [ 88.945312, 49.496675 ], [ 88.945312, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.472656, 49.724479 ], [ 89.472656, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.951220 ], [ 90.000000, 49.951220 ], [ 90.000000, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.401515 ], [ 90.878906, 50.401515 ], [ 90.878906, 47.040182 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.714844, 49.267805 ], [ 87.714844, 49.037868 ], [ 87.890625, 49.037868 ], [ 87.890625, 48.690960 ], [ 88.066406, 48.690960 ], [ 88.066406, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.341646 ], [ 88.417969, 48.341646 ], [ 88.417969, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 48.107431 ], [ 88.945312, 48.107431 ], [ 88.945312, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.040182 ], [ 90.878906, 47.040182 ], [ 90.878906, 46.437857 ], [ 90.703125, 46.437857 ], [ 90.703125, 45.951150 ], [ 90.527344, 45.951150 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 90.878906, 45.336702 ], [ 90.878906, 40.313043 ], [ 75.058594, 40.313043 ], [ 75.058594, 40.446947 ], [ 75.410156, 40.446947 ], [ 75.410156, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.640625, 40.446947 ], [ 76.640625, 40.713956 ], [ 76.816406, 40.713956 ], [ 76.816406, 40.979898 ], [ 76.992188, 40.979898 ], [ 76.992188, 41.112469 ], [ 77.695312, 41.112469 ], [ 77.695312, 41.244772 ], [ 78.398438, 41.244772 ], [ 78.398438, 41.508577 ], [ 78.574219, 41.508577 ], [ 78.574219, 41.640078 ], [ 78.925781, 41.640078 ], [ 78.925781, 41.771312 ], [ 79.277344, 41.771312 ], [ 79.277344, 41.902277 ], [ 79.628906, 41.902277 ], [ 79.628906, 42.032974 ], [ 79.980469, 42.032974 ], [ 79.980469, 42.163403 ], [ 80.332031, 42.163403 ], [ 80.332031, 42.553080 ], [ 80.156250, 42.553080 ], [ 80.156250, 42.940339 ], [ 80.507812, 42.940339 ], [ 80.507812, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.325178 ], [ 80.683594, 43.325178 ], [ 80.683594, 43.707594 ], [ 80.507812, 43.707594 ], [ 80.507812, 44.087585 ], [ 80.332031, 44.087585 ], [ 80.332031, 44.339565 ], [ 80.156250, 44.339565 ], [ 80.156250, 44.715514 ], [ 79.980469, 44.715514 ], [ 79.980469, 44.964798 ], [ 80.332031, 44.964798 ], [ 80.332031, 45.089036 ], [ 81.035156, 45.089036 ], [ 81.035156, 45.213004 ], [ 81.738281, 45.213004 ], [ 81.738281, 45.336702 ], [ 82.089844, 45.336702 ], [ 82.089844, 45.460131 ], [ 82.441406, 45.460131 ], [ 82.441406, 45.706179 ], [ 82.617188, 45.706179 ], [ 82.617188, 46.195042 ], [ 82.792969, 46.195042 ], [ 82.792969, 46.558860 ], [ 82.968750, 46.558860 ], [ 82.968750, 47.040182 ], [ 83.144531, 47.040182 ], [ 83.144531, 47.279229 ], [ 83.496094, 47.279229 ], [ 83.496094, 47.159840 ], [ 84.550781, 47.159840 ], [ 84.550781, 47.040182 ], [ 85.253906, 47.040182 ], [ 85.253906, 47.159840 ], [ 85.605469, 47.159840 ], [ 85.605469, 47.279229 ], [ 85.781250, 47.279229 ], [ 85.781250, 48.458352 ], [ 86.308594, 48.458352 ], [ 86.308594, 48.574790 ], [ 86.835938, 48.574790 ], [ 86.835938, 48.806863 ], [ 87.011719, 48.806863 ], [ 87.011719, 48.922499 ], [ 87.187500, 48.922499 ], [ 87.187500, 49.152970 ], [ 87.363281, 49.152970 ], [ 87.363281, 49.267805 ], [ 87.714844, 49.267805 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.714844, 49.382373 ], [ 87.714844, 49.037868 ], [ 87.890625, 49.037868 ], [ 87.890625, 48.574790 ], [ 88.066406, 48.574790 ], [ 88.066406, 48.458352 ], [ 88.242188, 48.458352 ], [ 88.242188, 48.341646 ], [ 88.417969, 48.341646 ], [ 88.417969, 48.224673 ], [ 88.593750, 48.224673 ], [ 88.593750, 48.107431 ], [ 88.945312, 48.107431 ], [ 88.945312, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.824219, 47.872144 ], [ 89.824219, 47.754098 ], [ 90.175781, 47.754098 ], [ 90.175781, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.398349 ], [ 90.527344, 47.398349 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.040182 ], [ 90.878906, 47.040182 ], [ 90.878906, 46.437857 ], [ 90.703125, 46.437857 ], [ 90.703125, 45.951150 ], [ 90.527344, 45.951150 ], [ 90.527344, 45.706179 ], [ 90.703125, 45.706179 ], [ 90.703125, 45.460131 ], [ 90.878906, 45.460131 ], [ 90.878906, 40.313043 ], [ 74.707031, 40.313043 ], [ 74.707031, 40.446947 ], [ 75.234375, 40.446947 ], [ 75.234375, 40.580585 ], [ 75.761719, 40.580585 ], [ 75.761719, 40.446947 ], [ 76.464844, 40.446947 ], [ 76.464844, 40.580585 ], [ 76.640625, 40.580585 ], [ 76.640625, 40.847060 ], [ 76.816406, 40.847060 ], [ 76.816406, 41.112469 ], [ 77.519531, 41.112469 ], [ 77.519531, 41.244772 ], [ 78.222656, 41.244772 ], [ 78.222656, 41.508577 ], [ 78.398438, 41.508577 ], [ 78.398438, 41.640078 ], [ 78.750000, 41.640078 ], [ 78.750000, 41.771312 ], [ 79.101562, 41.771312 ], [ 79.101562, 41.902277 ], [ 79.453125, 41.902277 ], [ 79.453125, 42.032974 ], [ 79.804688, 42.032974 ], [ 79.804688, 42.163403 ], [ 79.980469, 42.163403 ], [ 79.980469, 42.293564 ], [ 80.156250, 42.293564 ], [ 80.156250, 42.940339 ], [ 80.507812, 42.940339 ], [ 80.507812, 43.068888 ], [ 80.859375, 43.068888 ], [ 80.859375, 43.325178 ], [ 80.683594, 43.325178 ], [ 80.683594, 43.580391 ], [ 80.507812, 43.580391 ], [ 80.507812, 43.834527 ], [ 80.332031, 43.834527 ], [ 80.332031, 44.213710 ], [ 80.156250, 44.213710 ], [ 80.156250, 44.465151 ], [ 79.980469, 44.465151 ], [ 79.980469, 44.715514 ], [ 79.804688, 44.715514 ], [ 79.804688, 44.964798 ], [ 80.332031, 44.964798 ], [ 80.332031, 45.089036 ], [ 81.035156, 45.089036 ], [ 81.035156, 45.213004 ], [ 81.738281, 45.213004 ], [ 81.738281, 45.336702 ], [ 82.089844, 45.336702 ], [ 82.089844, 45.460131 ], [ 82.441406, 45.460131 ], [ 82.441406, 45.706179 ], [ 82.617188, 45.706179 ], [ 82.617188, 46.195042 ], [ 82.792969, 46.195042 ], [ 82.792969, 46.679594 ], [ 82.968750, 46.679594 ], [ 82.968750, 47.159840 ], [ 83.144531, 47.159840 ], [ 83.144531, 47.398349 ], [ 83.320312, 47.398349 ], [ 83.320312, 47.279229 ], [ 84.023438, 47.279229 ], [ 84.023438, 47.159840 ], [ 84.726562, 47.159840 ], [ 84.726562, 47.040182 ], [ 85.253906, 47.040182 ], [ 85.253906, 47.279229 ], [ 85.429688, 47.279229 ], [ 85.429688, 47.398349 ], [ 85.605469, 47.398349 ], [ 85.605469, 48.458352 ], [ 86.132812, 48.458352 ], [ 86.132812, 48.574790 ], [ 86.660156, 48.574790 ], [ 86.660156, 48.806863 ], [ 86.835938, 48.806863 ], [ 86.835938, 48.922499 ], [ 87.011719, 48.922499 ], [ 87.011719, 49.152970 ], [ 87.187500, 49.152970 ], [ 87.187500, 49.267805 ], [ 87.539062, 49.267805 ], [ 87.539062, 49.382373 ], [ 87.714844, 49.382373 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.136719, 73.022592 ], [ 70.136719, 72.971189 ], [ 70.664062, 72.971189 ], [ 70.664062, 72.919635 ], [ 71.191406, 72.919635 ], [ 71.191406, 72.867930 ], [ 71.718750, 72.867930 ], [ 71.718750, 72.816074 ], [ 72.246094, 72.816074 ], [ 72.246094, 72.764065 ], [ 72.597656, 72.764065 ], [ 72.597656, 72.501722 ], [ 72.773438, 72.501722 ], [ 72.773438, 72.127936 ], [ 72.597656, 72.127936 ], [ 72.597656, 71.965388 ], [ 72.421875, 71.965388 ], [ 72.421875, 71.801410 ], [ 72.246094, 71.801410 ], [ 72.246094, 71.635993 ], [ 72.070312, 71.635993 ], [ 72.070312, 71.469124 ], [ 71.894531, 71.469124 ], [ 71.894531, 71.357067 ], [ 72.070312, 71.357067 ], [ 72.070312, 71.244356 ], [ 72.246094, 71.244356 ], [ 72.246094, 71.130988 ], [ 72.421875, 71.130988 ], [ 72.421875, 70.902268 ], [ 72.597656, 70.902268 ], [ 72.597656, 70.554179 ], [ 72.773438, 70.554179 ], [ 72.773438, 69.718107 ], [ 72.597656, 69.718107 ], [ 72.597656, 68.974164 ], [ 72.773438, 68.974164 ], [ 72.773438, 68.847665 ], [ 72.949219, 68.847665 ], [ 72.949219, 68.720441 ], [ 73.125000, 68.720441 ], [ 73.125000, 68.656555 ], [ 73.300781, 68.656555 ], [ 73.300781, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.399180 ], [ 73.652344, 68.399180 ], [ 73.652344, 68.204212 ], [ 73.476562, 68.204212 ], [ 73.476562, 67.875541 ], [ 73.300781, 67.875541 ], [ 73.300781, 67.676085 ], [ 73.125000, 67.676085 ], [ 73.125000, 67.542167 ], [ 72.949219, 67.542167 ], [ 72.949219, 67.407487 ], [ 72.773438, 67.407487 ], [ 72.773438, 67.272043 ], [ 72.597656, 67.272043 ], [ 72.597656, 67.135829 ], [ 72.421875, 67.135829 ], [ 72.421875, 66.998844 ], [ 72.246094, 66.998844 ], [ 72.246094, 66.861082 ], [ 72.070312, 66.861082 ], [ 72.070312, 66.722541 ], [ 71.894531, 66.722541 ], [ 71.894531, 66.583217 ], [ 71.718750, 66.583217 ], [ 71.718750, 66.443107 ], [ 71.542969, 66.443107 ], [ 71.542969, 66.231457 ], [ 72.070312, 66.231457 ], [ 72.070312, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.583217 ], [ 44.472656, 66.583217 ], [ 44.472656, 66.791909 ], [ 44.296875, 66.791909 ], [ 44.296875, 66.930060 ], [ 44.121094, 66.930060 ], [ 44.121094, 68.463800 ], [ 44.296875, 68.463800 ], [ 44.296875, 68.399180 ], [ 45.000000, 68.399180 ], [ 45.000000, 68.334376 ], [ 45.703125, 68.334376 ], [ 45.703125, 68.269387 ], [ 46.230469, 68.269387 ], [ 46.230469, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 67.941650 ], [ 46.582031, 67.941650 ], [ 46.582031, 67.742759 ], [ 46.757812, 67.742759 ], [ 46.757812, 67.676085 ], [ 46.582031, 67.676085 ], [ 46.582031, 67.609221 ], [ 45.878906, 67.609221 ], [ 45.878906, 67.542167 ], [ 45.527344, 67.542167 ], [ 45.527344, 66.930060 ], [ 45.703125, 66.930060 ], [ 45.703125, 66.861082 ], [ 45.878906, 66.861082 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.230469, 66.722541 ], [ 46.230469, 66.652977 ], [ 46.757812, 66.652977 ], [ 46.757812, 66.722541 ], [ 47.285156, 66.722541 ], [ 47.285156, 66.791909 ], [ 47.636719, 66.791909 ], [ 47.636719, 66.861082 ], [ 47.812500, 66.861082 ], [ 47.812500, 66.998844 ], [ 47.988281, 66.998844 ], [ 47.988281, 67.339861 ], [ 48.164062, 67.339861 ], [ 48.164062, 67.542167 ], [ 48.339844, 67.542167 ], [ 48.339844, 67.609221 ], [ 48.691406, 67.609221 ], [ 48.691406, 67.676085 ], [ 49.042969, 67.676085 ], [ 49.042969, 67.742759 ], [ 49.394531, 67.742759 ], [ 49.394531, 67.809245 ], [ 49.570312, 67.809245 ], [ 49.570312, 67.875541 ], [ 49.921875, 67.875541 ], [ 49.921875, 67.941650 ], [ 50.273438, 67.941650 ], [ 50.273438, 68.007571 ], [ 50.449219, 68.007571 ], [ 50.449219, 68.073305 ], [ 50.800781, 68.073305 ], [ 50.800781, 68.138852 ], [ 50.976562, 68.138852 ], [ 50.976562, 68.204212 ], [ 51.328125, 68.204212 ], [ 51.328125, 68.269387 ], [ 51.503906, 68.269387 ], [ 51.503906, 68.334376 ], [ 51.855469, 68.334376 ], [ 51.855469, 68.399180 ], [ 52.207031, 68.399180 ], [ 52.207031, 68.463800 ], [ 52.382812, 68.463800 ], [ 52.382812, 68.528235 ], [ 52.734375, 68.528235 ], [ 52.734375, 68.592487 ], [ 52.910156, 68.592487 ], [ 52.910156, 68.656555 ], [ 53.261719, 68.656555 ], [ 53.261719, 68.720441 ], [ 53.437500, 68.720441 ], [ 53.437500, 68.784144 ], [ 53.789062, 68.784144 ], [ 53.789062, 68.847665 ], [ 53.964844, 68.847665 ], [ 53.964844, 68.784144 ], [ 54.492188, 68.784144 ], [ 54.492188, 68.720441 ], [ 54.316406, 68.720441 ], [ 54.316406, 68.592487 ], [ 54.140625, 68.592487 ], [ 54.140625, 68.528235 ], [ 53.964844, 68.528235 ], [ 53.964844, 68.399180 ], [ 53.789062, 68.399180 ], [ 53.789062, 68.334376 ], [ 53.613281, 68.334376 ], [ 53.613281, 68.138852 ], [ 54.316406, 68.138852 ], [ 54.316406, 68.073305 ], [ 54.843750, 68.073305 ], [ 54.843750, 68.204212 ], [ 55.019531, 68.204212 ], [ 55.019531, 68.269387 ], [ 55.195312, 68.269387 ], [ 55.195312, 68.399180 ], [ 55.371094, 68.399180 ], [ 55.371094, 68.463800 ], [ 57.480469, 68.463800 ], [ 57.480469, 68.528235 ], [ 57.656250, 68.528235 ], [ 57.656250, 68.592487 ], [ 58.007812, 68.592487 ], [ 58.007812, 68.656555 ], [ 58.183594, 68.656555 ], [ 58.183594, 68.720441 ], [ 58.359375, 68.720441 ], [ 58.359375, 68.784144 ], [ 58.710938, 68.784144 ], [ 58.710938, 68.847665 ], [ 59.062500, 68.847665 ], [ 59.062500, 68.720441 ], [ 59.238281, 68.720441 ], [ 59.238281, 68.592487 ], [ 59.414062, 68.592487 ], [ 59.414062, 68.528235 ], [ 59.589844, 68.528235 ], [ 59.589844, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.269387 ], [ 60.117188, 68.269387 ], [ 60.117188, 68.399180 ], [ 60.292969, 68.399180 ], [ 60.292969, 68.528235 ], [ 60.468750, 68.528235 ], [ 60.468750, 68.592487 ], [ 60.644531, 68.592487 ], [ 60.644531, 68.720441 ], [ 60.820312, 68.720441 ], [ 60.820312, 68.847665 ], [ 60.996094, 68.847665 ], [ 60.996094, 68.974164 ], [ 60.820312, 68.974164 ], [ 60.820312, 69.099940 ], [ 60.644531, 69.099940 ], [ 60.644531, 69.224997 ], [ 60.468750, 69.224997 ], [ 60.468750, 69.349339 ], [ 60.292969, 69.349339 ], [ 60.292969, 69.472969 ], [ 60.117188, 69.472969 ], [ 60.117188, 69.595890 ], [ 60.292969, 69.595890 ], [ 60.292969, 69.718107 ], [ 60.468750, 69.718107 ], [ 60.468750, 69.839622 ], [ 60.644531, 69.839622 ], [ 60.644531, 69.778952 ], [ 61.347656, 69.778952 ], [ 61.347656, 69.718107 ], [ 61.875000, 69.718107 ], [ 61.875000, 69.657086 ], [ 62.402344, 69.657086 ], [ 62.402344, 69.595890 ], [ 63.105469, 69.595890 ], [ 63.105469, 69.534518 ], [ 63.457031, 69.534518 ], [ 63.457031, 69.472969 ], [ 63.808594, 69.472969 ], [ 63.808594, 69.411242 ], [ 63.984375, 69.411242 ], [ 63.984375, 69.349339 ], [ 64.335938, 69.349339 ], [ 64.335938, 69.287257 ], [ 64.687500, 69.287257 ], [ 64.687500, 69.224997 ], [ 64.863281, 69.224997 ], [ 64.863281, 69.162558 ], [ 65.039062, 69.162558 ], [ 65.039062, 69.099940 ], [ 65.214844, 69.099940 ], [ 65.214844, 69.037142 ], [ 65.566406, 69.037142 ], [ 65.566406, 68.974164 ], [ 65.742188, 68.974164 ], [ 65.742188, 68.911005 ], [ 65.917969, 68.911005 ], [ 65.917969, 68.847665 ], [ 66.093750, 68.847665 ], [ 66.093750, 68.784144 ], [ 66.269531, 68.784144 ], [ 66.269531, 68.720441 ], [ 66.445312, 68.720441 ], [ 66.445312, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.592487 ], [ 66.972656, 68.592487 ], [ 66.972656, 68.528235 ], [ 67.148438, 68.528235 ], [ 67.148438, 68.463800 ], [ 67.324219, 68.463800 ], [ 67.324219, 68.399180 ], [ 67.500000, 68.399180 ], [ 67.500000, 68.334376 ], [ 67.675781, 68.334376 ], [ 67.675781, 68.269387 ], [ 68.027344, 68.269387 ], [ 68.027344, 68.204212 ], [ 68.203125, 68.204212 ], [ 68.203125, 68.138852 ], [ 68.378906, 68.138852 ], [ 68.378906, 68.073305 ], [ 68.554688, 68.073305 ], [ 68.554688, 68.138852 ], [ 68.730469, 68.138852 ], [ 68.730469, 68.269387 ], [ 68.906250, 68.269387 ], [ 68.906250, 68.399180 ], [ 69.082031, 68.399180 ], [ 69.082031, 68.528235 ], [ 69.257812, 68.528235 ], [ 69.257812, 68.592487 ], [ 69.082031, 68.592487 ], [ 69.082031, 68.720441 ], [ 68.906250, 68.720441 ], [ 68.906250, 68.784144 ], [ 68.730469, 68.784144 ], [ 68.730469, 68.911005 ], [ 68.554688, 68.911005 ], [ 68.554688, 68.974164 ], [ 68.378906, 68.974164 ], [ 68.378906, 69.099940 ], [ 68.203125, 69.099940 ], [ 68.203125, 69.349339 ], [ 67.851562, 69.349339 ], [ 67.851562, 69.411242 ], [ 67.148438, 69.411242 ], [ 67.148438, 69.472969 ], [ 66.972656, 69.472969 ], [ 66.972656, 69.534518 ], [ 67.148438, 69.534518 ], [ 67.148438, 69.778952 ], [ 67.324219, 69.778952 ], [ 67.324219, 70.020587 ], [ 67.148438, 70.020587 ], [ 67.148438, 70.318738 ], [ 66.972656, 70.318738 ], [ 66.972656, 70.554179 ], [ 66.796875, 70.554179 ], [ 66.796875, 70.844673 ], [ 66.621094, 70.844673 ], [ 66.621094, 71.016960 ], [ 66.796875, 71.016960 ], [ 66.796875, 71.130988 ], [ 66.972656, 71.130988 ], [ 66.972656, 71.187754 ], [ 67.148438, 71.187754 ], [ 67.148438, 71.300793 ], [ 67.324219, 71.300793 ], [ 67.324219, 71.357067 ], [ 67.500000, 71.357067 ], [ 67.500000, 71.469124 ], [ 67.675781, 71.469124 ], [ 67.675781, 71.524909 ], [ 67.851562, 71.524909 ], [ 67.851562, 71.580532 ], [ 68.027344, 71.580532 ], [ 68.027344, 71.691293 ], [ 68.203125, 71.691293 ], [ 68.203125, 71.746432 ], [ 68.378906, 71.746432 ], [ 68.378906, 71.856229 ], [ 68.554688, 71.856229 ], [ 68.554688, 72.019729 ], [ 68.730469, 72.019729 ], [ 68.730469, 72.235514 ], [ 68.906250, 72.235514 ], [ 68.906250, 72.501722 ], [ 69.082031, 72.501722 ], [ 69.082031, 72.711903 ], [ 69.257812, 72.711903 ], [ 69.257812, 72.867930 ], [ 69.433594, 72.867930 ], [ 69.433594, 72.919635 ], [ 69.785156, 72.919635 ], [ 69.785156, 72.971189 ], [ 69.960938, 72.971189 ], [ 69.960938, 73.022592 ], [ 70.136719, 73.022592 ] ] ], [ [ [ 81.386719, 71.801410 ], [ 81.386719, 71.965388 ], [ 81.210938, 71.965388 ], [ 81.210938, 72.181804 ], [ 81.035156, 72.181804 ], [ 81.035156, 72.342464 ], [ 80.859375, 72.342464 ], [ 80.859375, 72.501722 ], [ 80.683594, 72.501722 ], [ 80.683594, 73.124945 ], [ 80.507812, 73.124945 ], [ 80.507812, 73.627789 ], [ 80.859375, 73.627789 ], [ 80.859375, 73.677264 ], [ 81.210938, 73.677264 ], [ 81.210938, 73.726595 ], [ 81.562500, 73.726595 ], [ 81.562500, 73.775780 ], [ 81.914062, 73.775780 ], [ 81.914062, 73.824820 ], [ 82.265625, 73.824820 ], [ 82.265625, 73.873717 ], [ 83.320312, 73.873717 ], [ 83.320312, 73.824820 ], [ 85.429688, 73.824820 ], [ 85.429688, 73.873717 ], [ 86.484375, 73.873717 ], [ 86.484375, 73.922469 ], [ 86.835938, 73.922469 ], [ 86.835938, 73.971078 ], [ 86.660156, 73.971078 ], [ 86.660156, 74.067866 ], [ 86.484375, 74.067866 ], [ 86.484375, 74.164085 ], [ 86.308594, 74.164085 ], [ 86.308594, 74.259738 ], [ 86.132812, 74.259738 ], [ 86.132812, 74.354828 ], [ 85.957031, 74.354828 ], [ 85.957031, 74.496413 ], [ 86.132812, 74.496413 ], [ 86.132812, 74.590108 ], [ 86.308594, 74.590108 ], [ 86.308594, 74.683250 ], [ 86.484375, 74.683250 ], [ 86.484375, 74.775843 ], [ 86.660156, 74.775843 ], [ 86.660156, 74.867889 ], [ 86.835938, 74.867889 ], [ 86.835938, 74.959392 ], [ 87.011719, 74.959392 ], [ 87.011719, 75.050354 ], [ 87.187500, 75.050354 ], [ 87.187500, 75.095633 ], [ 87.890625, 75.095633 ], [ 87.890625, 75.140778 ], [ 88.417969, 75.140778 ], [ 88.417969, 75.185789 ], [ 88.593750, 75.185789 ], [ 88.593750, 75.230667 ], [ 88.769531, 75.230667 ], [ 88.769531, 75.275413 ], [ 88.945312, 75.275413 ], [ 88.945312, 75.320025 ], [ 89.121094, 75.320025 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.497157 ], [ 89.824219, 75.497157 ], [ 89.824219, 75.541113 ], [ 90.000000, 75.541113 ], [ 90.000000, 75.584937 ], [ 90.175781, 75.584937 ], [ 90.175781, 75.628632 ], [ 90.703125, 75.628632 ], [ 90.703125, 75.672197 ], [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 72.421875, 66.160511 ], [ 72.421875, 66.231457 ], [ 72.597656, 66.231457 ], [ 72.597656, 66.372755 ], [ 72.773438, 66.372755 ], [ 72.773438, 66.513260 ], [ 72.949219, 66.513260 ], [ 72.949219, 66.583217 ], [ 73.300781, 66.583217 ], [ 73.300781, 66.652977 ], [ 73.652344, 66.652977 ], [ 73.652344, 66.722541 ], [ 74.003906, 66.722541 ], [ 74.003906, 66.998844 ], [ 74.179688, 66.998844 ], [ 74.179688, 67.272043 ], [ 74.355469, 67.272043 ], [ 74.355469, 67.407487 ], [ 74.531250, 67.407487 ], [ 74.531250, 67.474922 ], [ 74.707031, 67.474922 ], [ 74.707031, 67.542167 ], [ 74.882812, 67.542167 ], [ 74.882812, 67.676085 ], [ 75.058594, 67.676085 ], [ 75.058594, 67.809245 ], [ 74.882812, 67.809245 ], [ 74.882812, 68.007571 ], [ 74.707031, 68.007571 ], [ 74.707031, 68.204212 ], [ 74.531250, 68.204212 ], [ 74.531250, 68.463800 ], [ 74.707031, 68.463800 ], [ 74.707031, 68.784144 ], [ 74.882812, 68.784144 ], [ 74.882812, 68.974164 ], [ 74.531250, 68.974164 ], [ 74.531250, 69.037142 ], [ 74.003906, 69.037142 ], [ 74.003906, 69.099940 ], [ 73.828125, 69.099940 ], [ 73.828125, 69.349339 ], [ 73.652344, 69.349339 ], [ 73.652344, 69.778952 ], [ 73.828125, 69.778952 ], [ 73.828125, 70.020587 ], [ 74.003906, 70.020587 ], [ 74.003906, 70.259452 ], [ 74.179688, 70.259452 ], [ 74.179688, 70.495574 ], [ 74.355469, 70.495574 ], [ 74.355469, 70.670881 ], [ 74.179688, 70.670881 ], [ 74.179688, 70.786910 ], [ 74.003906, 70.786910 ], [ 74.003906, 70.902268 ], [ 73.828125, 70.902268 ], [ 73.828125, 71.016960 ], [ 73.652344, 71.016960 ], [ 73.652344, 71.130988 ], [ 73.476562, 71.130988 ], [ 73.476562, 71.244356 ], [ 73.300781, 71.244356 ], [ 73.300781, 71.357067 ], [ 73.125000, 71.357067 ], [ 73.125000, 71.469124 ], [ 73.300781, 71.469124 ], [ 73.300781, 71.524909 ], [ 73.476562, 71.524909 ], [ 73.476562, 71.635993 ], [ 73.652344, 71.635993 ], [ 73.652344, 71.691293 ], [ 73.828125, 71.691293 ], [ 73.828125, 71.746432 ], [ 74.003906, 71.746432 ], [ 74.003906, 71.801410 ], [ 74.179688, 71.801410 ], [ 74.179688, 71.856229 ], [ 74.355469, 71.856229 ], [ 74.355469, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.019729 ], [ 74.707031, 72.019729 ], [ 74.707031, 72.073911 ], [ 74.882812, 72.073911 ], [ 74.882812, 72.448792 ], [ 74.707031, 72.448792 ], [ 74.707031, 72.816074 ], [ 75.058594, 72.816074 ], [ 75.058594, 72.867930 ], [ 75.234375, 72.867930 ], [ 75.234375, 72.764065 ], [ 75.410156, 72.764065 ], [ 75.410156, 72.554498 ], [ 75.585938, 72.554498 ], [ 75.585938, 72.342464 ], [ 75.761719, 72.342464 ], [ 75.761719, 72.127936 ], [ 75.585938, 72.127936 ], [ 75.585938, 71.801410 ], [ 75.410156, 71.801410 ], [ 75.410156, 71.469124 ], [ 75.234375, 71.469124 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.244356 ], [ 75.761719, 71.244356 ], [ 75.761719, 71.187754 ], [ 76.113281, 71.187754 ], [ 76.113281, 71.130988 ], [ 76.289062, 71.130988 ], [ 76.289062, 71.300793 ], [ 76.113281, 71.300793 ], [ 76.113281, 71.635993 ], [ 75.937500, 71.635993 ], [ 75.937500, 71.856229 ], [ 76.113281, 71.856229 ], [ 76.113281, 71.910888 ], [ 76.289062, 71.910888 ], [ 76.289062, 71.965388 ], [ 76.464844, 71.965388 ], [ 76.464844, 72.019729 ], [ 76.640625, 72.019729 ], [ 76.640625, 72.073911 ], [ 76.992188, 72.073911 ], [ 76.992188, 72.127936 ], [ 77.167969, 72.127936 ], [ 77.167969, 72.181804 ], [ 77.343750, 72.181804 ], [ 77.343750, 72.235514 ], [ 77.519531, 72.235514 ], [ 77.519531, 72.289067 ], [ 78.750000, 72.289067 ], [ 78.750000, 72.342464 ], [ 79.628906, 72.342464 ], [ 79.628906, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.235514 ], [ 79.980469, 72.235514 ], [ 79.980469, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.127936 ], [ 80.332031, 72.127936 ], [ 80.332031, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 72.019729 ], [ 80.683594, 72.019729 ], [ 80.683594, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.910888 ], [ 81.035156, 71.910888 ], [ 81.035156, 71.856229 ], [ 81.210938, 71.856229 ], [ 81.210938, 71.801410 ], [ 81.386719, 71.801410 ] ], [ [ 81.386719, 71.801410 ], [ 81.386719, 71.746432 ], [ 81.562500, 71.746432 ], [ 81.562500, 71.801410 ], [ 81.386719, 71.801410 ] ] ], [ [ [ 68.203125, 76.920614 ], [ 68.203125, 76.840816 ], [ 68.378906, 76.840816 ], [ 68.378906, 76.760541 ], [ 68.554688, 76.760541 ], [ 68.554688, 76.679785 ], [ 68.730469, 76.679785 ], [ 68.730469, 76.598545 ], [ 68.906250, 76.598545 ], [ 68.906250, 76.516819 ], [ 68.730469, 76.516819 ], [ 68.730469, 76.434604 ], [ 68.554688, 76.434604 ], [ 68.554688, 76.351896 ], [ 68.378906, 76.351896 ], [ 68.378906, 76.268695 ], [ 68.203125, 76.268695 ], [ 68.203125, 76.184995 ], [ 67.851562, 76.184995 ], [ 67.851562, 76.142958 ], [ 67.500000, 76.142958 ], [ 67.500000, 76.100796 ], [ 67.148438, 76.100796 ], [ 67.148438, 76.058508 ], [ 66.796875, 76.058508 ], [ 66.796875, 76.016094 ], [ 66.621094, 76.016094 ], [ 66.621094, 75.973553 ], [ 66.269531, 75.973553 ], [ 66.269531, 75.930885 ], [ 65.917969, 75.930885 ], [ 65.917969, 75.888091 ], [ 65.566406, 75.888091 ], [ 65.566406, 75.845169 ], [ 65.214844, 75.845169 ], [ 65.214844, 75.802118 ], [ 64.863281, 75.802118 ], [ 64.863281, 75.758940 ], [ 64.687500, 75.758940 ], [ 64.687500, 75.715633 ], [ 64.335938, 75.715633 ], [ 64.335938, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.628632 ], [ 63.808594, 75.628632 ], [ 63.808594, 75.584937 ], [ 63.457031, 75.584937 ], [ 63.457031, 75.541113 ], [ 63.281250, 75.541113 ], [ 63.281250, 75.497157 ], [ 62.929688, 75.497157 ], [ 62.929688, 75.453071 ], [ 62.578125, 75.453071 ], [ 62.578125, 75.408854 ], [ 62.402344, 75.408854 ], [ 62.402344, 75.364506 ], [ 62.050781, 75.364506 ], [ 62.050781, 75.320025 ], [ 61.699219, 75.320025 ], [ 61.699219, 75.275413 ], [ 61.523438, 75.275413 ], [ 61.523438, 75.230667 ], [ 61.347656, 75.230667 ], [ 61.347656, 75.185789 ], [ 61.171875, 75.185789 ], [ 61.171875, 75.095633 ], [ 60.996094, 75.095633 ], [ 60.996094, 75.050354 ], [ 60.820312, 75.050354 ], [ 60.820312, 75.004940 ], [ 60.644531, 75.004940 ], [ 60.644531, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.867889 ], [ 60.292969, 74.867889 ], [ 60.292969, 74.821934 ], [ 60.117188, 74.821934 ], [ 60.117188, 74.775843 ], [ 59.941406, 74.775843 ], [ 59.941406, 74.729615 ], [ 59.765625, 74.729615 ], [ 59.765625, 74.683250 ], [ 59.589844, 74.683250 ], [ 59.589844, 74.590108 ], [ 59.414062, 74.590108 ], [ 59.414062, 74.543330 ], [ 59.238281, 74.543330 ], [ 59.238281, 74.496413 ], [ 59.062500, 74.496413 ], [ 59.062500, 74.449358 ], [ 58.886719, 74.449358 ], [ 58.886719, 74.354828 ], [ 58.710938, 74.354828 ], [ 58.710938, 74.307353 ], [ 58.535156, 74.307353 ], [ 58.535156, 74.211983 ], [ 58.359375, 74.211983 ], [ 58.359375, 74.116047 ], [ 58.183594, 74.116047 ], [ 58.183594, 74.019543 ], [ 58.007812, 74.019543 ], [ 58.007812, 73.922469 ], [ 57.832031, 73.922469 ], [ 57.832031, 73.824820 ], [ 57.656250, 73.824820 ], [ 57.656250, 73.677264 ], [ 57.480469, 73.677264 ], [ 57.480469, 73.578167 ], [ 57.304688, 73.578167 ], [ 57.304688, 73.478485 ], [ 57.128906, 73.478485 ], [ 57.128906, 73.378215 ], [ 56.953125, 73.378215 ], [ 56.953125, 73.277353 ], [ 56.777344, 73.277353 ], [ 56.777344, 73.175897 ], [ 56.601562, 73.175897 ], [ 56.601562, 73.073844 ], [ 56.425781, 73.073844 ], [ 56.425781, 72.971189 ], [ 56.250000, 72.971189 ], [ 56.250000, 72.867930 ], [ 56.074219, 72.867930 ], [ 56.074219, 72.764065 ], [ 55.898438, 72.764065 ], [ 55.898438, 72.659588 ], [ 55.722656, 72.659588 ], [ 55.722656, 72.554498 ], [ 55.546875, 72.554498 ], [ 55.546875, 72.448792 ], [ 55.371094, 72.448792 ], [ 55.371094, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.469124 ], [ 55.722656, 71.469124 ], [ 55.722656, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.300793 ], [ 56.074219, 71.300793 ], [ 56.074219, 71.244356 ], [ 56.250000, 71.244356 ], [ 56.250000, 71.187754 ], [ 56.425781, 71.187754 ], [ 56.425781, 71.130988 ], [ 56.601562, 71.130988 ], [ 56.601562, 71.016960 ], [ 56.777344, 71.016960 ], [ 56.777344, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.902268 ], [ 57.128906, 70.902268 ], [ 57.128906, 70.786910 ], [ 57.304688, 70.786910 ], [ 57.304688, 70.728979 ], [ 57.480469, 70.728979 ], [ 57.480469, 70.670881 ], [ 57.128906, 70.670881 ], [ 57.128906, 70.612614 ], [ 56.250000, 70.612614 ], [ 56.250000, 70.670881 ], [ 55.195312, 70.670881 ], [ 55.195312, 70.728979 ], [ 54.140625, 70.728979 ], [ 54.140625, 70.786910 ], [ 53.613281, 70.786910 ], [ 53.613281, 70.959697 ], [ 53.437500, 70.959697 ], [ 53.437500, 71.187754 ], [ 53.085938, 71.187754 ], [ 53.085938, 71.244356 ], [ 52.734375, 71.244356 ], [ 52.734375, 71.300793 ], [ 52.382812, 71.300793 ], [ 52.382812, 71.357067 ], [ 52.031250, 71.357067 ], [ 52.031250, 71.413177 ], [ 51.679688, 71.413177 ], [ 51.679688, 71.746432 ], [ 51.503906, 71.746432 ], [ 51.503906, 72.019729 ], [ 51.679688, 72.019729 ], [ 51.679688, 72.073911 ], [ 52.031250, 72.073911 ], [ 52.031250, 72.127936 ], [ 52.207031, 72.127936 ], [ 52.207031, 72.181804 ], [ 52.558594, 72.181804 ], [ 52.558594, 72.501722 ], [ 52.382812, 72.501722 ], [ 52.382812, 72.764065 ], [ 52.558594, 72.764065 ], [ 52.558594, 72.867930 ], [ 52.734375, 72.867930 ], [ 52.734375, 72.919635 ], [ 52.910156, 72.919635 ], [ 52.910156, 72.971189 ], [ 53.085938, 72.971189 ], [ 53.085938, 73.073844 ], [ 53.261719, 73.073844 ], [ 53.261719, 73.124945 ], [ 53.437500, 73.124945 ], [ 53.437500, 73.226700 ], [ 53.613281, 73.226700 ], [ 53.613281, 73.277353 ], [ 53.789062, 73.277353 ], [ 53.789062, 73.378215 ], [ 53.964844, 73.378215 ], [ 53.964844, 73.428424 ], [ 54.140625, 73.428424 ], [ 54.140625, 73.478485 ], [ 54.316406, 73.478485 ], [ 54.316406, 73.578167 ], [ 54.492188, 73.578167 ], [ 54.492188, 73.627789 ], [ 54.140625, 73.627789 ], [ 54.140625, 73.677264 ], [ 53.613281, 73.677264 ], [ 53.613281, 73.824820 ], [ 53.789062, 73.824820 ], [ 53.789062, 73.873717 ], [ 53.964844, 73.873717 ], [ 53.964844, 73.922469 ], [ 54.140625, 73.922469 ], [ 54.140625, 74.019543 ], [ 54.316406, 74.019543 ], [ 54.316406, 74.067866 ], [ 54.492188, 74.067866 ], [ 54.492188, 74.116047 ], [ 54.667969, 74.116047 ], [ 54.667969, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.259738 ], [ 55.019531, 74.259738 ], [ 55.019531, 74.307353 ], [ 55.195312, 74.307353 ], [ 55.195312, 74.402163 ], [ 55.371094, 74.402163 ], [ 55.371094, 74.449358 ], [ 55.546875, 74.449358 ], [ 55.546875, 74.496413 ], [ 55.722656, 74.496413 ], [ 55.722656, 74.590108 ], [ 55.898438, 74.590108 ], [ 55.898438, 74.729615 ], [ 55.722656, 74.729615 ], [ 55.722656, 74.959392 ], [ 55.546875, 74.959392 ], [ 55.546875, 75.095633 ], [ 55.722656, 75.095633 ], [ 55.722656, 75.140778 ], [ 55.898438, 75.140778 ], [ 55.898438, 75.185789 ], [ 56.074219, 75.185789 ], [ 56.074219, 75.230667 ], [ 56.250000, 75.230667 ], [ 56.250000, 75.275413 ], [ 56.425781, 75.275413 ], [ 56.425781, 75.320025 ], [ 56.601562, 75.320025 ], [ 56.601562, 75.364506 ], [ 56.953125, 75.364506 ], [ 56.953125, 75.408854 ], [ 57.128906, 75.408854 ], [ 57.128906, 75.453071 ], [ 57.304688, 75.453071 ], [ 57.304688, 75.497157 ], [ 57.480469, 75.497157 ], [ 57.480469, 75.541113 ], [ 57.656250, 75.541113 ], [ 57.656250, 75.584937 ], [ 57.832031, 75.584937 ], [ 57.832031, 75.628632 ], [ 58.007812, 75.628632 ], [ 58.007812, 75.672197 ], [ 58.183594, 75.672197 ], [ 58.183594, 75.715633 ], [ 58.535156, 75.715633 ], [ 58.535156, 75.758940 ], [ 58.710938, 75.758940 ], [ 58.710938, 75.802118 ], [ 58.886719, 75.802118 ], [ 58.886719, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 75.888091 ], [ 59.414062, 75.888091 ], [ 59.414062, 75.930885 ], [ 59.589844, 75.930885 ], [ 59.589844, 75.973553 ], [ 59.765625, 75.973553 ], [ 59.765625, 76.016094 ], [ 60.117188, 76.016094 ], [ 60.117188, 76.058508 ], [ 60.292969, 76.058508 ], [ 60.292969, 76.100796 ], [ 60.468750, 76.100796 ], [ 60.468750, 76.142958 ], [ 60.644531, 76.142958 ], [ 60.644531, 76.184995 ], [ 60.996094, 76.184995 ], [ 60.996094, 76.226907 ], [ 61.171875, 76.226907 ], [ 61.171875, 76.268695 ], [ 61.699219, 76.268695 ], [ 61.699219, 76.310358 ], [ 62.578125, 76.310358 ], [ 62.578125, 76.351896 ], [ 63.281250, 76.351896 ], [ 63.281250, 76.393312 ], [ 64.160156, 76.393312 ], [ 64.160156, 76.434604 ], [ 64.687500, 76.434604 ], [ 64.687500, 76.475773 ], [ 64.863281, 76.475773 ], [ 64.863281, 76.516819 ], [ 65.039062, 76.516819 ], [ 65.039062, 76.557743 ], [ 65.214844, 76.557743 ], [ 65.214844, 76.598545 ], [ 65.566406, 76.598545 ], [ 65.566406, 76.639226 ], [ 65.742188, 76.639226 ], [ 65.742188, 76.679785 ], [ 65.917969, 76.679785 ], [ 65.917969, 76.720223 ], [ 66.093750, 76.720223 ], [ 66.093750, 76.760541 ], [ 66.269531, 76.760541 ], [ 66.269531, 76.800739 ], [ 66.621094, 76.800739 ], [ 66.621094, 76.840816 ], [ 67.324219, 76.840816 ], [ 67.324219, 76.880775 ], [ 68.027344, 76.880775 ], [ 68.027344, 76.920614 ], [ 68.203125, 76.920614 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 81.210938, 71.856229 ], [ 81.210938, 72.019729 ], [ 81.035156, 72.019729 ], [ 81.035156, 72.181804 ], [ 80.859375, 72.181804 ], [ 80.859375, 72.342464 ], [ 80.683594, 72.342464 ], [ 80.683594, 72.501722 ], [ 80.507812, 72.501722 ], [ 80.507812, 73.677264 ], [ 80.859375, 73.677264 ], [ 80.859375, 73.726595 ], [ 81.210938, 73.726595 ], [ 81.210938, 73.775780 ], [ 81.562500, 73.775780 ], [ 81.562500, 73.824820 ], [ 81.914062, 73.824820 ], [ 81.914062, 73.873717 ], [ 83.144531, 73.873717 ], [ 83.144531, 73.824820 ], [ 85.078125, 73.824820 ], [ 85.078125, 73.873717 ], [ 85.781250, 73.873717 ], [ 85.781250, 73.922469 ], [ 86.484375, 73.922469 ], [ 86.484375, 73.971078 ], [ 86.660156, 73.971078 ], [ 86.660156, 74.019543 ], [ 86.484375, 74.019543 ], [ 86.484375, 74.164085 ], [ 86.308594, 74.164085 ], [ 86.308594, 74.259738 ], [ 86.132812, 74.259738 ], [ 86.132812, 74.402163 ], [ 85.957031, 74.402163 ], [ 85.957031, 74.543330 ], [ 86.132812, 74.543330 ], [ 86.132812, 74.636748 ], [ 86.308594, 74.636748 ], [ 86.308594, 74.729615 ], [ 86.484375, 74.729615 ], [ 86.484375, 74.867889 ], [ 86.660156, 74.867889 ], [ 86.660156, 74.959392 ], [ 86.835938, 74.959392 ], [ 86.835938, 75.050354 ], [ 87.011719, 75.050354 ], [ 87.011719, 75.140778 ], [ 87.714844, 75.140778 ], [ 87.714844, 75.185789 ], [ 88.417969, 75.185789 ], [ 88.417969, 75.230667 ], [ 88.593750, 75.230667 ], [ 88.593750, 75.275413 ], [ 88.769531, 75.275413 ], [ 88.769531, 75.320025 ], [ 88.945312, 75.320025 ], [ 88.945312, 75.364506 ], [ 89.121094, 75.364506 ], [ 89.121094, 75.408854 ], [ 89.296875, 75.408854 ], [ 89.296875, 75.453071 ], [ 89.472656, 75.453071 ], [ 89.472656, 75.497157 ], [ 89.648438, 75.497157 ], [ 89.648438, 75.541113 ], [ 89.824219, 75.541113 ], [ 89.824219, 75.584937 ], [ 90.000000, 75.584937 ], [ 90.000000, 75.628632 ], [ 90.175781, 75.628632 ], [ 90.175781, 75.672197 ], [ 90.878906, 75.672197 ], [ 90.878906, 66.160511 ], [ 44.121094, 66.160511 ], [ 44.121094, 66.372755 ], [ 44.296875, 66.372755 ], [ 44.296875, 66.652977 ], [ 44.472656, 66.652977 ], [ 44.472656, 66.861082 ], [ 44.296875, 66.861082 ], [ 44.296875, 66.998844 ], [ 44.121094, 66.998844 ], [ 44.121094, 68.528235 ], [ 44.296875, 68.528235 ], [ 44.296875, 68.463800 ], [ 44.824219, 68.463800 ], [ 44.824219, 68.399180 ], [ 45.351562, 68.399180 ], [ 45.351562, 68.334376 ], [ 45.878906, 68.334376 ], [ 45.878906, 68.269387 ], [ 46.230469, 68.269387 ], [ 46.230469, 68.138852 ], [ 46.406250, 68.138852 ], [ 46.406250, 68.007571 ], [ 46.582031, 68.007571 ], [ 46.582031, 67.809245 ], [ 46.757812, 67.809245 ], [ 46.757812, 67.742759 ], [ 46.582031, 67.742759 ], [ 46.582031, 67.676085 ], [ 45.878906, 67.676085 ], [ 45.878906, 67.609221 ], [ 45.527344, 67.609221 ], [ 45.527344, 66.998844 ], [ 45.703125, 66.998844 ], [ 45.703125, 66.930060 ], [ 45.878906, 66.930060 ], [ 45.878906, 66.791909 ], [ 46.054688, 66.791909 ], [ 46.054688, 66.722541 ], [ 46.582031, 66.722541 ], [ 46.582031, 66.791909 ], [ 47.109375, 66.791909 ], [ 47.109375, 66.861082 ], [ 47.636719, 66.861082 ], [ 47.636719, 66.930060 ], [ 47.812500, 66.930060 ], [ 47.812500, 67.204032 ], [ 47.988281, 67.204032 ], [ 47.988281, 67.542167 ], [ 48.164062, 67.542167 ], [ 48.164062, 67.609221 ], [ 48.515625, 67.609221 ], [ 48.515625, 67.676085 ], [ 48.867188, 67.676085 ], [ 48.867188, 67.742759 ], [ 49.218750, 67.742759 ], [ 49.218750, 67.809245 ], [ 49.394531, 67.809245 ], [ 49.394531, 67.875541 ], [ 49.746094, 67.875541 ], [ 49.746094, 67.941650 ], [ 50.097656, 67.941650 ], [ 50.097656, 68.007571 ], [ 50.273438, 68.007571 ], [ 50.273438, 68.073305 ], [ 50.625000, 68.073305 ], [ 50.625000, 68.138852 ], [ 50.800781, 68.138852 ], [ 50.800781, 68.204212 ], [ 51.152344, 68.204212 ], [ 51.152344, 68.269387 ], [ 51.328125, 68.269387 ], [ 51.328125, 68.334376 ], [ 51.503906, 68.334376 ], [ 51.503906, 68.399180 ], [ 51.855469, 68.399180 ], [ 51.855469, 68.463800 ], [ 52.031250, 68.463800 ], [ 52.031250, 68.528235 ], [ 52.382812, 68.528235 ], [ 52.382812, 68.592487 ], [ 52.558594, 68.592487 ], [ 52.558594, 68.656555 ], [ 52.910156, 68.656555 ], [ 52.910156, 68.720441 ], [ 53.085938, 68.720441 ], [ 53.085938, 68.784144 ], [ 53.261719, 68.784144 ], [ 53.261719, 68.847665 ], [ 53.613281, 68.847665 ], [ 53.613281, 68.911005 ], [ 53.789062, 68.911005 ], [ 53.789062, 68.847665 ], [ 54.316406, 68.847665 ], [ 54.316406, 68.784144 ], [ 54.140625, 68.784144 ], [ 54.140625, 68.656555 ], [ 53.964844, 68.656555 ], [ 53.964844, 68.528235 ], [ 53.789062, 68.528235 ], [ 53.789062, 68.399180 ], [ 53.613281, 68.399180 ], [ 53.613281, 68.269387 ], [ 53.437500, 68.269387 ], [ 53.437500, 68.204212 ], [ 53.964844, 68.204212 ], [ 53.964844, 68.138852 ], [ 54.843750, 68.138852 ], [ 54.843750, 68.204212 ], [ 55.019531, 68.204212 ], [ 55.019531, 68.334376 ], [ 55.195312, 68.334376 ], [ 55.195312, 68.399180 ], [ 55.371094, 68.399180 ], [ 55.371094, 68.463800 ], [ 56.425781, 68.463800 ], [ 56.425781, 68.528235 ], [ 57.480469, 68.528235 ], [ 57.480469, 68.592487 ], [ 57.832031, 68.592487 ], [ 57.832031, 68.656555 ], [ 58.007812, 68.656555 ], [ 58.007812, 68.720441 ], [ 58.183594, 68.720441 ], [ 58.183594, 68.784144 ], [ 58.535156, 68.784144 ], [ 58.535156, 68.847665 ], [ 58.886719, 68.847665 ], [ 58.886719, 68.784144 ], [ 59.062500, 68.784144 ], [ 59.062500, 68.656555 ], [ 59.238281, 68.656555 ], [ 59.238281, 68.592487 ], [ 59.414062, 68.592487 ], [ 59.414062, 68.528235 ], [ 59.589844, 68.528235 ], [ 59.589844, 68.399180 ], [ 59.765625, 68.399180 ], [ 59.765625, 68.334376 ], [ 60.117188, 68.334376 ], [ 60.117188, 68.463800 ], [ 60.292969, 68.463800 ], [ 60.292969, 68.592487 ], [ 60.468750, 68.592487 ], [ 60.468750, 68.656555 ], [ 60.644531, 68.656555 ], [ 60.644531, 68.784144 ], [ 60.820312, 68.784144 ], [ 60.820312, 68.911005 ], [ 60.996094, 68.911005 ], [ 60.996094, 68.974164 ], [ 60.820312, 68.974164 ], [ 60.820312, 69.099940 ], [ 60.644531, 69.099940 ], [ 60.644531, 69.162558 ], [ 60.468750, 69.162558 ], [ 60.468750, 69.287257 ], [ 60.292969, 69.287257 ], [ 60.292969, 69.349339 ], [ 60.117188, 69.349339 ], [ 60.117188, 69.472969 ], [ 59.941406, 69.472969 ], [ 59.941406, 69.595890 ], [ 60.117188, 69.595890 ], [ 60.117188, 69.718107 ], [ 60.292969, 69.718107 ], [ 60.292969, 69.839622 ], [ 60.468750, 69.839622 ], [ 60.468750, 69.900118 ], [ 60.644531, 69.900118 ], [ 60.644531, 69.839622 ], [ 61.347656, 69.839622 ], [ 61.347656, 69.778952 ], [ 61.875000, 69.778952 ], [ 61.875000, 69.718107 ], [ 62.402344, 69.718107 ], [ 62.402344, 69.657086 ], [ 63.105469, 69.657086 ], [ 63.105469, 69.595890 ], [ 63.457031, 69.595890 ], [ 63.457031, 69.534518 ], [ 63.808594, 69.534518 ], [ 63.808594, 69.472969 ], [ 63.984375, 69.472969 ], [ 63.984375, 69.411242 ], [ 64.335938, 69.411242 ], [ 64.335938, 69.349339 ], [ 64.687500, 69.349339 ], [ 64.687500, 69.287257 ], [ 64.863281, 69.287257 ], [ 64.863281, 69.224997 ], [ 65.039062, 69.224997 ], [ 65.039062, 69.162558 ], [ 65.214844, 69.162558 ], [ 65.214844, 69.099940 ], [ 65.390625, 69.099940 ], [ 65.390625, 69.037142 ], [ 65.566406, 69.037142 ], [ 65.566406, 68.974164 ], [ 65.917969, 68.974164 ], [ 65.917969, 68.911005 ], [ 66.093750, 68.911005 ], [ 66.093750, 68.847665 ], [ 66.269531, 68.847665 ], [ 66.269531, 68.784144 ], [ 66.445312, 68.784144 ], [ 66.445312, 68.720441 ], [ 66.621094, 68.720441 ], [ 66.621094, 68.656555 ], [ 66.796875, 68.656555 ], [ 66.796875, 68.592487 ], [ 66.972656, 68.592487 ], [ 66.972656, 68.528235 ], [ 67.148438, 68.528235 ], [ 67.148438, 68.463800 ], [ 67.324219, 68.463800 ], [ 67.324219, 68.399180 ], [ 67.675781, 68.399180 ], [ 67.675781, 68.334376 ], [ 67.851562, 68.334376 ], [ 67.851562, 68.269387 ], [ 68.027344, 68.269387 ], [ 68.027344, 68.204212 ], [ 68.203125, 68.204212 ], [ 68.203125, 68.138852 ], [ 68.378906, 68.138852 ], [ 68.378906, 68.204212 ], [ 68.554688, 68.204212 ], [ 68.554688, 68.334376 ], [ 68.730469, 68.334376 ], [ 68.730469, 68.463800 ], [ 68.906250, 68.463800 ], [ 68.906250, 68.592487 ], [ 69.082031, 68.592487 ], [ 69.082031, 68.656555 ], [ 68.906250, 68.656555 ], [ 68.906250, 68.784144 ], [ 68.730469, 68.784144 ], [ 68.730469, 68.847665 ], [ 68.554688, 68.847665 ], [ 68.554688, 68.911005 ], [ 68.378906, 68.911005 ], [ 68.378906, 69.037142 ], [ 68.203125, 69.037142 ], [ 68.203125, 69.099940 ], [ 68.027344, 69.099940 ], [ 68.027344, 69.411242 ], [ 67.324219, 69.411242 ], [ 67.324219, 69.472969 ], [ 66.796875, 69.472969 ], [ 66.796875, 69.595890 ], [ 66.972656, 69.595890 ], [ 66.972656, 69.839622 ], [ 67.148438, 69.839622 ], [ 67.148438, 70.080562 ], [ 66.972656, 70.080562 ], [ 66.972656, 70.318738 ], [ 66.796875, 70.318738 ], [ 66.796875, 70.554179 ], [ 66.621094, 70.554179 ], [ 66.621094, 71.074056 ], [ 66.796875, 71.074056 ], [ 66.796875, 71.187754 ], [ 66.972656, 71.187754 ], [ 66.972656, 71.300793 ], [ 67.148438, 71.300793 ], [ 67.148438, 71.357067 ], [ 67.324219, 71.357067 ], [ 67.324219, 71.469124 ], [ 67.500000, 71.469124 ], [ 67.500000, 71.524909 ], [ 67.675781, 71.524909 ], [ 67.675781, 71.635993 ], [ 67.851562, 71.635993 ], [ 67.851562, 71.746432 ], [ 68.027344, 71.746432 ], [ 68.027344, 71.801410 ], [ 68.203125, 71.801410 ], [ 68.203125, 71.910888 ], [ 68.378906, 71.910888 ], [ 68.378906, 72.073911 ], [ 68.554688, 72.073911 ], [ 68.554688, 72.289067 ], [ 68.730469, 72.289067 ], [ 68.730469, 72.501722 ], [ 68.906250, 72.501722 ], [ 68.906250, 72.711903 ], [ 69.082031, 72.711903 ], [ 69.082031, 72.867930 ], [ 69.257812, 72.867930 ], [ 69.257812, 72.919635 ], [ 69.433594, 72.919635 ], [ 69.433594, 72.971189 ], [ 69.609375, 72.971189 ], [ 69.609375, 73.022592 ], [ 69.785156, 73.022592 ], [ 69.785156, 73.073844 ], [ 69.960938, 73.073844 ], [ 69.960938, 73.022592 ], [ 70.488281, 73.022592 ], [ 70.488281, 72.971189 ], [ 71.015625, 72.971189 ], [ 71.015625, 72.919635 ], [ 71.542969, 72.919635 ], [ 71.542969, 72.867930 ], [ 72.070312, 72.867930 ], [ 72.070312, 72.816074 ], [ 72.421875, 72.816074 ], [ 72.421875, 72.659588 ], [ 72.597656, 72.659588 ], [ 72.597656, 72.342464 ], [ 72.773438, 72.342464 ], [ 72.773438, 72.127936 ], [ 72.597656, 72.127936 ], [ 72.597656, 72.019729 ], [ 72.421875, 72.019729 ], [ 72.421875, 71.856229 ], [ 72.246094, 71.856229 ], [ 72.246094, 71.746432 ], [ 72.070312, 71.746432 ], [ 72.070312, 71.580532 ], [ 71.894531, 71.580532 ], [ 71.894531, 71.469124 ], [ 71.718750, 71.469124 ], [ 71.718750, 71.357067 ], [ 71.894531, 71.357067 ], [ 71.894531, 71.300793 ], [ 72.070312, 71.300793 ], [ 72.070312, 71.187754 ], [ 72.246094, 71.187754 ], [ 72.246094, 71.130988 ], [ 72.421875, 71.130988 ], [ 72.421875, 70.959697 ], [ 72.597656, 70.959697 ], [ 72.597656, 70.612614 ], [ 72.773438, 70.612614 ], [ 72.773438, 70.080562 ], [ 72.597656, 70.080562 ], [ 72.597656, 69.349339 ], [ 72.421875, 69.349339 ], [ 72.421875, 68.974164 ], [ 72.597656, 68.974164 ], [ 72.597656, 68.911005 ], [ 72.773438, 68.911005 ], [ 72.773438, 68.784144 ], [ 72.949219, 68.784144 ], [ 72.949219, 68.720441 ], [ 73.125000, 68.720441 ], [ 73.125000, 68.656555 ], [ 73.300781, 68.656555 ], [ 73.300781, 68.528235 ], [ 73.476562, 68.528235 ], [ 73.476562, 68.463800 ], [ 73.652344, 68.463800 ], [ 73.652344, 68.334376 ], [ 73.476562, 68.334376 ], [ 73.476562, 68.073305 ], [ 73.300781, 68.073305 ], [ 73.300781, 67.809245 ], [ 73.125000, 67.809245 ], [ 73.125000, 67.676085 ], [ 72.949219, 67.676085 ], [ 72.949219, 67.542167 ], [ 72.773438, 67.542167 ], [ 72.773438, 67.407487 ], [ 72.597656, 67.407487 ], [ 72.597656, 67.272043 ], [ 72.421875, 67.272043 ], [ 72.421875, 67.135829 ], [ 72.246094, 67.135829 ], [ 72.246094, 67.067433 ], [ 72.070312, 67.067433 ], [ 72.070312, 66.930060 ], [ 71.894531, 66.930060 ], [ 71.894531, 66.791909 ], [ 71.718750, 66.791909 ], [ 71.718750, 66.652977 ], [ 71.542969, 66.652977 ], [ 71.542969, 66.513260 ], [ 71.367188, 66.513260 ], [ 71.367188, 66.302205 ], [ 72.070312, 66.302205 ], [ 72.070312, 66.231457 ], [ 72.421875, 66.231457 ], [ 72.421875, 66.302205 ], [ 72.597656, 66.302205 ], [ 72.597656, 66.443107 ], [ 72.773438, 66.443107 ], [ 72.773438, 66.583217 ], [ 73.125000, 66.583217 ], [ 73.125000, 66.652977 ], [ 73.476562, 66.652977 ], [ 73.476562, 66.722541 ], [ 73.828125, 66.722541 ], [ 73.828125, 66.930060 ], [ 74.003906, 66.930060 ], [ 74.003906, 67.204032 ], [ 74.179688, 67.204032 ], [ 74.179688, 67.339861 ], [ 74.355469, 67.339861 ], [ 74.355469, 67.474922 ], [ 74.531250, 67.474922 ], [ 74.531250, 67.609221 ], [ 74.707031, 67.609221 ], [ 74.707031, 67.742759 ], [ 74.882812, 67.742759 ], [ 74.882812, 67.875541 ], [ 74.707031, 67.875541 ], [ 74.707031, 68.073305 ], [ 74.531250, 68.073305 ], [ 74.531250, 68.204212 ], [ 74.355469, 68.204212 ], [ 74.355469, 68.399180 ], [ 74.531250, 68.399180 ], [ 74.531250, 68.656555 ], [ 74.707031, 68.656555 ], [ 74.707031, 68.911005 ], [ 74.882812, 68.911005 ], [ 74.882812, 69.037142 ], [ 74.179688, 69.037142 ], [ 74.179688, 69.099940 ], [ 73.828125, 69.099940 ], [ 73.828125, 69.224997 ], [ 73.652344, 69.224997 ], [ 73.652344, 69.472969 ], [ 73.476562, 69.472969 ], [ 73.476562, 69.718107 ], [ 73.652344, 69.718107 ], [ 73.652344, 69.960439 ], [ 73.828125, 69.960439 ], [ 73.828125, 70.140364 ], [ 74.003906, 70.140364 ], [ 74.003906, 70.318738 ], [ 74.179688, 70.318738 ], [ 74.179688, 70.554179 ], [ 74.355469, 70.554179 ], [ 74.355469, 70.670881 ], [ 74.179688, 70.670881 ], [ 74.179688, 70.786910 ], [ 74.003906, 70.786910 ], [ 74.003906, 70.902268 ], [ 73.828125, 70.902268 ], [ 73.828125, 71.016960 ], [ 73.652344, 71.016960 ], [ 73.652344, 71.074056 ], [ 73.476562, 71.074056 ], [ 73.476562, 71.187754 ], [ 73.300781, 71.187754 ], [ 73.300781, 71.300793 ], [ 73.125000, 71.300793 ], [ 73.125000, 71.413177 ], [ 72.949219, 71.413177 ], [ 72.949219, 71.469124 ], [ 73.125000, 71.469124 ], [ 73.125000, 71.524909 ], [ 73.300781, 71.524909 ], [ 73.300781, 71.580532 ], [ 73.476562, 71.580532 ], [ 73.476562, 71.635993 ], [ 73.652344, 71.635993 ], [ 73.652344, 71.691293 ], [ 73.828125, 71.691293 ], [ 73.828125, 71.801410 ], [ 74.003906, 71.801410 ], [ 74.003906, 71.856229 ], [ 74.179688, 71.856229 ], [ 74.179688, 71.910888 ], [ 74.355469, 71.910888 ], [ 74.355469, 71.965388 ], [ 74.531250, 71.965388 ], [ 74.531250, 72.019729 ], [ 74.707031, 72.019729 ], [ 74.707031, 72.073911 ], [ 74.882812, 72.073911 ], [ 74.882812, 72.289067 ], [ 74.707031, 72.289067 ], [ 74.707031, 72.659588 ], [ 74.531250, 72.659588 ], [ 74.531250, 72.867930 ], [ 75.058594, 72.867930 ], [ 75.058594, 72.764065 ], [ 75.234375, 72.764065 ], [ 75.234375, 72.607120 ], [ 75.410156, 72.607120 ], [ 75.410156, 72.395706 ], [ 75.585938, 72.395706 ], [ 75.585938, 72.073911 ], [ 75.410156, 72.073911 ], [ 75.410156, 71.580532 ], [ 75.234375, 71.580532 ], [ 75.234375, 71.300793 ], [ 75.585938, 71.300793 ], [ 75.585938, 71.244356 ], [ 75.937500, 71.244356 ], [ 75.937500, 71.187754 ], [ 76.289062, 71.187754 ], [ 76.289062, 71.300793 ], [ 76.113281, 71.300793 ], [ 76.113281, 71.524909 ], [ 75.937500, 71.524909 ], [ 75.937500, 71.746432 ], [ 75.761719, 71.746432 ], [ 75.761719, 71.910888 ], [ 75.937500, 71.910888 ], [ 75.937500, 71.965388 ], [ 76.289062, 71.965388 ], [ 76.289062, 72.019729 ], [ 76.464844, 72.019729 ], [ 76.464844, 72.073911 ], [ 76.816406, 72.073911 ], [ 76.816406, 72.127936 ], [ 76.992188, 72.127936 ], [ 76.992188, 72.181804 ], [ 77.167969, 72.181804 ], [ 77.167969, 72.235514 ], [ 77.519531, 72.235514 ], [ 77.519531, 72.289067 ], [ 78.750000, 72.289067 ], [ 78.750000, 72.342464 ], [ 79.628906, 72.342464 ], [ 79.628906, 72.289067 ], [ 79.804688, 72.289067 ], [ 79.804688, 72.235514 ], [ 79.980469, 72.235514 ], [ 79.980469, 72.181804 ], [ 80.156250, 72.181804 ], [ 80.156250, 72.127936 ], [ 80.332031, 72.127936 ], [ 80.332031, 72.073911 ], [ 80.507812, 72.073911 ], [ 80.507812, 72.019729 ], [ 80.683594, 72.019729 ], [ 80.683594, 71.965388 ], [ 80.859375, 71.965388 ], [ 80.859375, 71.910888 ], [ 81.035156, 71.910888 ], [ 81.035156, 71.856229 ], [ 81.210938, 71.856229 ] ], [ [ 81.210938, 71.856229 ], [ 81.210938, 71.801410 ], [ 81.386719, 71.801410 ], [ 81.386719, 71.856229 ], [ 81.210938, 71.856229 ] ] ], [ [ [ 68.027344, 76.960334 ], [ 68.027344, 76.880775 ], [ 68.203125, 76.880775 ], [ 68.203125, 76.800739 ], [ 68.378906, 76.800739 ], [ 68.378906, 76.679785 ], [ 68.554688, 76.679785 ], [ 68.554688, 76.598545 ], [ 68.730469, 76.598545 ], [ 68.730469, 76.516819 ], [ 68.554688, 76.516819 ], [ 68.554688, 76.434604 ], [ 68.378906, 76.434604 ], [ 68.378906, 76.351896 ], [ 68.203125, 76.351896 ], [ 68.203125, 76.268695 ], [ 68.027344, 76.268695 ], [ 68.027344, 76.226907 ], [ 67.675781, 76.226907 ], [ 67.675781, 76.184995 ], [ 67.324219, 76.184995 ], [ 67.324219, 76.142958 ], [ 67.148438, 76.142958 ], [ 67.148438, 76.100796 ], [ 66.796875, 76.100796 ], [ 66.796875, 76.058508 ], [ 66.445312, 76.058508 ], [ 66.445312, 76.016094 ], [ 66.269531, 76.016094 ], [ 66.269531, 75.973553 ], [ 65.917969, 75.973553 ], [ 65.917969, 75.930885 ], [ 65.566406, 75.930885 ], [ 65.566406, 75.888091 ], [ 65.390625, 75.888091 ], [ 65.390625, 75.845169 ], [ 65.039062, 75.845169 ], [ 65.039062, 75.802118 ], [ 64.687500, 75.802118 ], [ 64.687500, 75.758940 ], [ 64.511719, 75.758940 ], [ 64.511719, 75.715633 ], [ 64.160156, 75.715633 ], [ 64.160156, 75.672197 ], [ 63.984375, 75.672197 ], [ 63.984375, 75.628632 ], [ 63.632812, 75.628632 ], [ 63.632812, 75.584937 ], [ 63.457031, 75.584937 ], [ 63.457031, 75.541113 ], [ 63.105469, 75.541113 ], [ 63.105469, 75.497157 ], [ 62.753906, 75.497157 ], [ 62.753906, 75.453071 ], [ 62.578125, 75.453071 ], [ 62.578125, 75.408854 ], [ 62.226562, 75.408854 ], [ 62.226562, 75.364506 ], [ 62.050781, 75.364506 ], [ 62.050781, 75.320025 ], [ 61.699219, 75.320025 ], [ 61.699219, 75.275413 ], [ 61.523438, 75.275413 ], [ 61.523438, 75.230667 ], [ 61.347656, 75.230667 ], [ 61.347656, 75.185789 ], [ 61.171875, 75.185789 ], [ 61.171875, 75.140778 ], [ 60.996094, 75.140778 ], [ 60.996094, 75.095633 ], [ 60.820312, 75.095633 ], [ 60.820312, 75.050354 ], [ 60.644531, 75.050354 ], [ 60.644531, 74.959392 ], [ 60.468750, 74.959392 ], [ 60.468750, 74.913708 ], [ 60.292969, 74.913708 ], [ 60.292969, 74.867889 ], [ 60.117188, 74.867889 ], [ 60.117188, 74.821934 ], [ 59.941406, 74.821934 ], [ 59.941406, 74.775843 ], [ 59.765625, 74.775843 ], [ 59.765625, 74.729615 ], [ 59.589844, 74.729615 ], [ 59.589844, 74.683250 ], [ 59.414062, 74.683250 ], [ 59.414062, 74.636748 ], [ 59.238281, 74.636748 ], [ 59.238281, 74.590108 ], [ 59.062500, 74.590108 ], [ 59.062500, 74.496413 ], [ 58.886719, 74.496413 ], [ 58.886719, 74.449358 ], [ 58.710938, 74.449358 ], [ 58.710938, 74.402163 ], [ 58.535156, 74.402163 ], [ 58.535156, 74.354828 ], [ 58.359375, 74.354828 ], [ 58.359375, 74.259738 ], [ 58.183594, 74.259738 ], [ 58.183594, 74.164085 ], [ 58.007812, 74.164085 ], [ 58.007812, 74.019543 ], [ 57.832031, 74.019543 ], [ 57.832031, 73.922469 ], [ 57.656250, 73.922469 ], [ 57.656250, 73.775780 ], [ 57.480469, 73.775780 ], [ 57.480469, 73.677264 ], [ 57.304688, 73.677264 ], [ 57.304688, 73.528399 ], [ 57.128906, 73.528399 ], [ 57.128906, 73.428424 ], [ 56.953125, 73.428424 ], [ 56.953125, 73.277353 ], [ 56.777344, 73.277353 ], [ 56.777344, 73.175897 ], [ 56.601562, 73.175897 ], [ 56.601562, 73.073844 ], [ 56.425781, 73.073844 ], [ 56.425781, 72.971189 ], [ 56.250000, 72.971189 ], [ 56.250000, 72.867930 ], [ 56.074219, 72.867930 ], [ 56.074219, 72.764065 ], [ 55.898438, 72.764065 ], [ 55.898438, 72.659588 ], [ 55.722656, 72.659588 ], [ 55.722656, 72.554498 ], [ 55.546875, 72.554498 ], [ 55.546875, 72.448792 ], [ 55.371094, 72.448792 ], [ 55.371094, 71.965388 ], [ 55.546875, 71.965388 ], [ 55.546875, 71.524909 ], [ 55.722656, 71.524909 ], [ 55.722656, 71.413177 ], [ 55.898438, 71.413177 ], [ 55.898438, 71.357067 ], [ 56.074219, 71.357067 ], [ 56.074219, 71.300793 ], [ 56.250000, 71.300793 ], [ 56.250000, 71.187754 ], [ 56.425781, 71.187754 ], [ 56.425781, 71.130988 ], [ 56.601562, 71.130988 ], [ 56.601562, 71.074056 ], [ 56.777344, 71.074056 ], [ 56.777344, 70.959697 ], [ 56.953125, 70.959697 ], [ 56.953125, 70.902268 ], [ 57.128906, 70.902268 ], [ 57.128906, 70.844673 ], [ 57.304688, 70.844673 ], [ 57.304688, 70.670881 ], [ 55.898438, 70.670881 ], [ 55.898438, 70.728979 ], [ 54.316406, 70.728979 ], [ 54.316406, 70.786910 ], [ 53.613281, 70.786910 ], [ 53.613281, 70.902268 ], [ 53.437500, 70.902268 ], [ 53.437500, 71.130988 ], [ 53.261719, 71.130988 ], [ 53.261719, 71.244356 ], [ 52.910156, 71.244356 ], [ 52.910156, 71.300793 ], [ 52.558594, 71.300793 ], [ 52.558594, 71.357067 ], [ 52.207031, 71.357067 ], [ 52.207031, 71.413177 ], [ 51.855469, 71.413177 ], [ 51.855469, 71.469124 ], [ 51.503906, 71.469124 ], [ 51.503906, 71.746432 ], [ 51.328125, 71.746432 ], [ 51.328125, 72.019729 ], [ 51.503906, 72.019729 ], [ 51.503906, 72.073911 ], [ 51.855469, 72.073911 ], [ 51.855469, 72.127936 ], [ 52.031250, 72.127936 ], [ 52.031250, 72.181804 ], [ 52.382812, 72.181804 ], [ 52.382812, 72.816074 ], [ 52.558594, 72.816074 ], [ 52.558594, 72.919635 ], [ 52.734375, 72.919635 ], [ 52.734375, 72.971189 ], [ 52.910156, 72.971189 ], [ 52.910156, 73.073844 ], [ 53.085938, 73.073844 ], [ 53.085938, 73.124945 ], [ 53.261719, 73.124945 ], [ 53.261719, 73.226700 ], [ 53.437500, 73.226700 ], [ 53.437500, 73.277353 ], [ 53.613281, 73.277353 ], [ 53.613281, 73.327858 ], [ 53.789062, 73.327858 ], [ 53.789062, 73.428424 ], [ 53.964844, 73.428424 ], [ 53.964844, 73.478485 ], [ 54.140625, 73.478485 ], [ 54.140625, 73.578167 ], [ 54.316406, 73.578167 ], [ 54.316406, 73.627789 ], [ 54.140625, 73.627789 ], [ 54.140625, 73.677264 ], [ 53.789062, 73.677264 ], [ 53.789062, 73.726595 ], [ 53.437500, 73.726595 ], [ 53.437500, 73.775780 ], [ 53.613281, 73.775780 ], [ 53.613281, 73.824820 ], [ 53.789062, 73.824820 ], [ 53.789062, 73.922469 ], [ 53.964844, 73.922469 ], [ 53.964844, 73.971078 ], [ 54.140625, 73.971078 ], [ 54.140625, 74.019543 ], [ 54.316406, 74.019543 ], [ 54.316406, 74.116047 ], [ 54.492188, 74.116047 ], [ 54.492188, 74.164085 ], [ 54.667969, 74.164085 ], [ 54.667969, 74.211983 ], [ 54.843750, 74.211983 ], [ 54.843750, 74.259738 ], [ 55.019531, 74.259738 ], [ 55.019531, 74.354828 ], [ 55.195312, 74.354828 ], [ 55.195312, 74.402163 ], [ 55.371094, 74.402163 ], [ 55.371094, 74.449358 ], [ 55.546875, 74.449358 ], [ 55.546875, 74.543330 ], [ 55.722656, 74.543330 ], [ 55.722656, 74.590108 ], [ 55.898438, 74.590108 ], [ 55.898438, 74.729615 ], [ 55.722656, 74.729615 ], [ 55.722656, 74.959392 ], [ 55.546875, 74.959392 ], [ 55.546875, 75.095633 ], [ 55.722656, 75.095633 ], [ 55.722656, 75.140778 ], [ 55.898438, 75.140778 ], [ 55.898438, 75.185789 ], [ 56.074219, 75.185789 ], [ 56.074219, 75.230667 ], [ 56.250000, 75.230667 ], [ 56.250000, 75.275413 ], [ 56.425781, 75.275413 ], [ 56.425781, 75.320025 ], [ 56.601562, 75.320025 ], [ 56.601562, 75.364506 ], [ 56.953125, 75.364506 ], [ 56.953125, 75.408854 ], [ 57.128906, 75.408854 ], [ 57.128906, 75.453071 ], [ 57.304688, 75.453071 ], [ 57.304688, 75.497157 ], [ 57.480469, 75.497157 ], [ 57.480469, 75.541113 ], [ 57.656250, 75.541113 ], [ 57.656250, 75.584937 ], [ 57.832031, 75.584937 ], [ 57.832031, 75.628632 ], [ 58.007812, 75.628632 ], [ 58.007812, 75.672197 ], [ 58.183594, 75.672197 ], [ 58.183594, 75.715633 ], [ 58.535156, 75.715633 ], [ 58.535156, 75.758940 ], [ 58.710938, 75.758940 ], [ 58.710938, 75.802118 ], [ 58.886719, 75.802118 ], [ 58.886719, 75.845169 ], [ 59.062500, 75.845169 ], [ 59.062500, 75.888091 ], [ 59.414062, 75.888091 ], [ 59.414062, 75.930885 ], [ 59.589844, 75.930885 ], [ 59.589844, 75.973553 ], [ 59.765625, 75.973553 ], [ 59.765625, 76.016094 ], [ 60.117188, 76.016094 ], [ 60.117188, 76.058508 ], [ 60.292969, 76.058508 ], [ 60.292969, 76.100796 ], [ 60.468750, 76.100796 ], [ 60.468750, 76.142958 ], [ 60.644531, 76.142958 ], [ 60.644531, 76.184995 ], [ 60.996094, 76.184995 ], [ 60.996094, 76.226907 ], [ 61.171875, 76.226907 ], [ 61.171875, 76.268695 ], [ 61.523438, 76.268695 ], [ 61.523438, 76.310358 ], [ 62.226562, 76.310358 ], [ 62.226562, 76.351896 ], [ 62.929688, 76.351896 ], [ 62.929688, 76.393312 ], [ 63.457031, 76.393312 ], [ 63.457031, 76.434604 ], [ 64.160156, 76.434604 ], [ 64.160156, 76.475773 ], [ 64.511719, 76.475773 ], [ 64.511719, 76.516819 ], [ 64.687500, 76.516819 ], [ 64.687500, 76.557743 ], [ 64.863281, 76.557743 ], [ 64.863281, 76.598545 ], [ 65.039062, 76.598545 ], [ 65.039062, 76.639226 ], [ 65.390625, 76.639226 ], [ 65.390625, 76.679785 ], [ 65.566406, 76.679785 ], [ 65.566406, 76.720223 ], [ 65.742188, 76.720223 ], [ 65.742188, 76.760541 ], [ 65.917969, 76.760541 ], [ 65.917969, 76.800739 ], [ 66.093750, 76.800739 ], [ 66.093750, 76.840816 ], [ 66.445312, 76.840816 ], [ 66.445312, 76.880775 ], [ 67.148438, 76.880775 ], [ 67.148438, 76.920614 ], [ 67.851562, 76.920614 ], [ 67.851562, 76.960334 ], [ 68.027344, 76.960334 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.273438, 80.900669 ], [ 50.273438, 80.872827 ], [ 50.449219, 80.872827 ], [ 50.449219, 80.844901 ], [ 50.625000, 80.844901 ], [ 50.625000, 80.816891 ], [ 50.800781, 80.816891 ], [ 50.800781, 80.788795 ], [ 50.976562, 80.788795 ], [ 50.976562, 80.760615 ], [ 51.152344, 80.760615 ], [ 51.152344, 80.732349 ], [ 51.328125, 80.732349 ], [ 51.328125, 80.703997 ], [ 51.503906, 80.703997 ], [ 51.503906, 80.647035 ], [ 51.328125, 80.647035 ], [ 51.328125, 80.589727 ], [ 51.152344, 80.589727 ], [ 51.152344, 80.532071 ], [ 50.800781, 80.532071 ], [ 50.800781, 80.503112 ], [ 50.625000, 80.503112 ], [ 50.625000, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.444931 ], [ 49.921875, 80.444931 ], [ 49.921875, 80.415707 ], [ 49.746094, 80.415707 ], [ 49.746094, 80.386396 ], [ 49.394531, 80.386396 ], [ 49.394531, 80.356995 ], [ 49.042969, 80.356995 ], [ 49.042969, 80.327506 ], [ 48.867188, 80.327506 ], [ 48.867188, 80.238501 ], [ 48.691406, 80.238501 ], [ 48.691406, 80.148684 ], [ 48.515625, 80.148684 ], [ 48.515625, 80.118564 ], [ 48.339844, 80.118564 ], [ 48.339844, 80.088352 ], [ 48.164062, 80.088352 ], [ 48.164062, 80.058050 ], [ 47.988281, 80.058050 ], [ 47.988281, 80.027655 ], [ 47.812500, 80.027655 ], [ 47.812500, 79.997168 ], [ 47.460938, 79.997168 ], [ 47.460938, 80.058050 ], [ 47.285156, 80.058050 ], [ 47.285156, 80.088352 ], [ 47.109375, 80.088352 ], [ 47.109375, 80.118564 ], [ 46.933594, 80.118564 ], [ 46.933594, 80.178713 ], [ 46.757812, 80.178713 ], [ 46.757812, 80.208652 ], [ 46.582031, 80.208652 ], [ 46.582031, 80.268259 ], [ 46.757812, 80.268259 ], [ 46.757812, 80.386396 ], [ 46.933594, 80.386396 ], [ 46.933594, 80.503112 ], [ 47.109375, 80.503112 ], [ 47.109375, 80.560943 ], [ 45.878906, 80.560943 ], [ 45.878906, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.618424 ], [ 45.351562, 80.618424 ], [ 45.351562, 80.647035 ], [ 45.703125, 80.647035 ], [ 45.703125, 80.675559 ], [ 46.054688, 80.675559 ], [ 46.054688, 80.703997 ], [ 46.406250, 80.703997 ], [ 46.406250, 80.732349 ], [ 46.757812, 80.732349 ], [ 46.757812, 80.760615 ], [ 47.636719, 80.760615 ], [ 47.636719, 80.788795 ], [ 48.339844, 80.788795 ], [ 48.339844, 80.647035 ], [ 48.515625, 80.647035 ], [ 48.515625, 80.532071 ], [ 48.691406, 80.532071 ], [ 48.691406, 80.618424 ], [ 48.867188, 80.618424 ], [ 48.867188, 80.703997 ], [ 49.042969, 80.703997 ], [ 49.042969, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.788795 ], [ 49.394531, 80.788795 ], [ 49.394531, 80.816891 ], [ 49.570312, 80.816891 ], [ 49.570312, 80.844901 ], [ 49.746094, 80.844901 ], [ 49.746094, 80.872827 ], [ 49.921875, 80.872827 ], [ 49.921875, 80.900669 ], [ 50.273438, 80.900669 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.097656, 80.900669 ], [ 50.097656, 80.872827 ], [ 50.273438, 80.872827 ], [ 50.273438, 80.844901 ], [ 50.449219, 80.844901 ], [ 50.449219, 80.816891 ], [ 50.800781, 80.816891 ], [ 50.800781, 80.788795 ], [ 50.976562, 80.788795 ], [ 50.976562, 80.760615 ], [ 51.152344, 80.760615 ], [ 51.152344, 80.732349 ], [ 51.328125, 80.732349 ], [ 51.328125, 80.703997 ], [ 51.503906, 80.703997 ], [ 51.503906, 80.675559 ], [ 51.328125, 80.675559 ], [ 51.328125, 80.618424 ], [ 51.152344, 80.618424 ], [ 51.152344, 80.560943 ], [ 50.976562, 80.560943 ], [ 50.976562, 80.532071 ], [ 50.625000, 80.532071 ], [ 50.625000, 80.503112 ], [ 50.449219, 80.503112 ], [ 50.449219, 80.474065 ], [ 50.273438, 80.474065 ], [ 50.273438, 80.444931 ], [ 49.921875, 80.444931 ], [ 49.921875, 80.415707 ], [ 49.570312, 80.415707 ], [ 49.570312, 80.386396 ], [ 49.218750, 80.386396 ], [ 49.218750, 80.356995 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.268259 ], [ 48.691406, 80.268259 ], [ 48.691406, 80.148684 ], [ 48.339844, 80.148684 ], [ 48.339844, 80.118564 ], [ 48.164062, 80.118564 ], [ 48.164062, 80.088352 ], [ 47.988281, 80.088352 ], [ 47.988281, 80.058050 ], [ 47.636719, 80.058050 ], [ 47.636719, 80.027655 ], [ 47.285156, 80.027655 ], [ 47.285156, 80.088352 ], [ 47.109375, 80.088352 ], [ 47.109375, 80.118564 ], [ 46.933594, 80.118564 ], [ 46.933594, 80.148684 ], [ 46.757812, 80.148684 ], [ 46.757812, 80.208652 ], [ 46.582031, 80.208652 ], [ 46.582031, 80.238501 ], [ 46.406250, 80.238501 ], [ 46.406250, 80.297927 ], [ 46.582031, 80.297927 ], [ 46.582031, 80.415707 ], [ 46.757812, 80.415707 ], [ 46.757812, 80.503112 ], [ 46.933594, 80.503112 ], [ 46.933594, 80.560943 ], [ 45.703125, 80.560943 ], [ 45.703125, 80.589727 ], [ 45.000000, 80.589727 ], [ 45.000000, 80.618424 ], [ 45.351562, 80.618424 ], [ 45.351562, 80.647035 ], [ 45.527344, 80.647035 ], [ 45.527344, 80.675559 ], [ 45.878906, 80.675559 ], [ 45.878906, 80.703997 ], [ 46.230469, 80.703997 ], [ 46.230469, 80.732349 ], [ 46.406250, 80.732349 ], [ 46.406250, 80.760615 ], [ 46.757812, 80.760615 ], [ 46.757812, 80.788795 ], [ 48.164062, 80.788795 ], [ 48.164062, 80.703997 ], [ 48.339844, 80.703997 ], [ 48.339844, 80.589727 ], [ 48.515625, 80.589727 ], [ 48.515625, 80.560943 ], [ 48.691406, 80.560943 ], [ 48.691406, 80.647035 ], [ 48.867188, 80.647035 ], [ 48.867188, 80.703997 ], [ 49.042969, 80.703997 ], [ 49.042969, 80.760615 ], [ 49.218750, 80.760615 ], [ 49.218750, 80.788795 ], [ 49.394531, 80.788795 ], [ 49.394531, 80.844901 ], [ 49.570312, 80.844901 ], [ 49.570312, 80.872827 ], [ 49.746094, 80.872827 ], [ 49.746094, 80.900669 ], [ 50.097656, 80.900669 ] ] ] } } ] } ] } , @@ -2042,233 +2032,231 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 91.230469, -67.204032 ], [ 91.230469, -67.135829 ], [ 91.933594, -67.135829 ], [ 91.933594, -67.204032 ], [ 94.042969, -67.204032 ], [ 94.042969, -67.135829 ], [ 94.570312, -67.135829 ], [ 94.570312, -67.204032 ], [ 95.097656, -67.204032 ], [ 95.097656, -67.272043 ], [ 95.273438, -67.272043 ], [ 95.273438, -67.339861 ], [ 95.625000, -67.339861 ], [ 95.625000, -67.407487 ], [ 96.152344, -67.407487 ], [ 96.152344, -67.339861 ], [ 96.503906, -67.339861 ], [ 96.503906, -67.272043 ], [ 98.085938, -67.272043 ], [ 98.085938, -67.204032 ], [ 98.437500, -67.204032 ], [ 98.437500, -67.135829 ], [ 98.789062, -67.135829 ], [ 98.789062, -67.204032 ], [ 99.316406, -67.204032 ], [ 99.316406, -67.272043 ], [ 99.843750, -67.272043 ], [ 99.843750, -67.204032 ], [ 100.019531, -67.204032 ], [ 100.019531, -67.067433 ], [ 100.195312, -67.067433 ], [ 100.195312, -66.998844 ], [ 100.371094, -66.998844 ], [ 100.371094, -66.930060 ], [ 100.546875, -66.930060 ], [ 100.546875, -66.791909 ], [ 100.722656, -66.791909 ], [ 100.722656, -66.652977 ], [ 100.898438, -66.652977 ], [ 100.898438, -66.583217 ], [ 101.074219, -66.583217 ], [ 101.074219, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.443107 ], [ 101.425781, -66.443107 ], [ 101.425781, -66.372755 ], [ 101.601562, -66.372755 ], [ 101.601562, -66.231457 ], [ 101.777344, -66.231457 ], [ 101.777344, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.302205 ], [ 104.941406, -66.302205 ], [ 104.941406, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.443107 ], [ 105.292969, -66.443107 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.652977 ], [ 105.644531, -66.652977 ], [ 105.644531, -66.722541 ], [ 105.820312, -66.722541 ], [ 105.820312, -66.861082 ], [ 105.996094, -66.861082 ], [ 105.996094, -66.930060 ], [ 108.808594, -66.930060 ], [ 108.808594, -66.861082 ], [ 109.511719, -66.861082 ], [ 109.511719, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.722541 ], [ 110.390625, -66.722541 ], [ 110.390625, -66.652977 ], [ 110.566406, -66.652977 ], [ 110.566406, -66.583217 ], [ 110.917969, -66.583217 ], [ 110.917969, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.443107 ], [ 111.269531, -66.443107 ], [ 111.269531, -66.302205 ], [ 111.445312, -66.302205 ], [ 111.445312, -66.231457 ], [ 111.621094, -66.231457 ], [ 111.621094, -66.160511 ], [ 114.609375, -66.160511 ], [ 114.609375, -66.231457 ], [ 114.785156, -66.231457 ], [ 114.785156, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.443107 ], [ 115.136719, -66.443107 ], [ 115.136719, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 115.488281, -66.652977 ], [ 115.488281, -66.722541 ], [ 116.367188, -66.722541 ], [ 116.367188, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.722541 ], [ 116.894531, -66.722541 ], [ 116.894531, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 117.246094, -66.861082 ], [ 117.246094, -66.930060 ], [ 117.421875, -66.930060 ], [ 117.421875, -66.998844 ], [ 117.773438, -66.998844 ], [ 117.773438, -67.067433 ], [ 118.125000, -67.067433 ], [ 118.125000, -67.135829 ], [ 118.476562, -67.135829 ], [ 118.476562, -67.204032 ], [ 119.179688, -67.204032 ], [ 119.179688, -67.272043 ], [ 120.585938, -67.272043 ], [ 120.585938, -67.204032 ], [ 121.113281, -67.204032 ], [ 121.113281, -67.135829 ], [ 121.289062, -67.135829 ], [ 121.289062, -66.998844 ], [ 121.464844, -66.998844 ], [ 121.464844, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.861082 ], [ 121.816406, -66.861082 ], [ 121.816406, -66.791909 ], [ 121.992188, -66.791909 ], [ 121.992188, -66.722541 ], [ 122.167969, -66.722541 ], [ 122.167969, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.583217 ], [ 122.871094, -66.583217 ], [ 122.871094, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.583217 ], [ 123.750000, -66.583217 ], [ 123.750000, -66.652977 ], [ 124.453125, -66.652977 ], [ 124.453125, -66.722541 ], [ 125.507812, -66.722541 ], [ 125.507812, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.583217 ], [ 127.265625, -66.583217 ], [ 127.265625, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 128.496094, -66.722541 ], [ 128.496094, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.722541 ], [ 129.375000, -66.722541 ], [ 129.375000, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.583217 ], [ 130.078125, -66.583217 ], [ 130.078125, -66.513260 ], [ 130.605469, -66.513260 ], [ 130.605469, -66.443107 ], [ 131.484375, -66.443107 ], [ 131.484375, -66.372755 ], [ 133.417969, -66.372755 ], [ 133.417969, -66.302205 ], [ 134.472656, -66.302205 ], [ 134.472656, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -79.335219 ], [ 89.121094, -79.335219 ], [ 89.121094, -67.067433 ], [ 89.472656, -67.067433 ], [ 89.472656, -67.135829 ], [ 90.000000, -67.135829 ], [ 90.000000, -67.204032 ], [ 90.878906, -67.204032 ], [ 90.878906, -67.135829 ], [ 91.406250, -67.135829 ], [ 91.406250, -67.067433 ], [ 91.933594, -67.067433 ], [ 91.933594, -67.135829 ], [ 92.812500, -67.135829 ], [ 92.812500, -67.204032 ], [ 93.691406, -67.204032 ], [ 93.691406, -67.135829 ], [ 94.042969, -67.135829 ], [ 94.042969, -67.067433 ], [ 94.394531, -67.067433 ], [ 94.394531, -67.135829 ], [ 94.921875, -67.135829 ], [ 94.921875, -67.204032 ], [ 95.097656, -67.204032 ], [ 95.097656, -67.272043 ], [ 95.449219, -67.272043 ], [ 95.449219, -67.339861 ], [ 95.976562, -67.339861 ], [ 95.976562, -67.272043 ], [ 96.503906, -67.272043 ], [ 96.503906, -67.204032 ], [ 98.085938, -67.204032 ], [ 98.085938, -67.135829 ], [ 98.437500, -67.135829 ], [ 98.437500, -67.067433 ], [ 98.789062, -67.067433 ], [ 98.789062, -67.135829 ], [ 99.316406, -67.135829 ], [ 99.316406, -67.204032 ], [ 99.843750, -67.204032 ], [ 99.843750, -67.135829 ], [ 100.019531, -67.135829 ], [ 100.019531, -66.998844 ], [ 100.195312, -66.998844 ], [ 100.195312, -66.930060 ], [ 100.371094, -66.930060 ], [ 100.371094, -66.791909 ], [ 100.546875, -66.791909 ], [ 100.546875, -66.652977 ], [ 100.722656, -66.652977 ], [ 100.722656, -66.583217 ], [ 100.898438, -66.583217 ], [ 100.898438, -66.513260 ], [ 101.074219, -66.513260 ], [ 101.074219, -66.443107 ], [ 101.250000, -66.443107 ], [ 101.250000, -66.372755 ], [ 101.425781, -66.372755 ], [ 101.425781, -66.302205 ], [ 101.601562, -66.302205 ], [ 101.601562, -66.231457 ], [ 101.777344, -66.231457 ], [ 101.777344, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.372755 ], [ 104.941406, -66.372755 ], [ 104.941406, -66.443107 ], [ 105.117188, -66.443107 ], [ 105.117188, -66.513260 ], [ 105.292969, -66.513260 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.722541 ], [ 105.644531, -66.722541 ], [ 105.644531, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.861082 ], [ 105.996094, -66.861082 ], [ 105.996094, -66.930060 ], [ 108.281250, -66.930060 ], [ 108.281250, -66.861082 ], [ 108.984375, -66.861082 ], [ 108.984375, -66.791909 ], [ 109.511719, -66.791909 ], [ 109.511719, -66.722541 ], [ 110.039062, -66.722541 ], [ 110.039062, -66.652977 ], [ 110.390625, -66.652977 ], [ 110.390625, -66.583217 ], [ 110.566406, -66.583217 ], [ 110.566406, -66.513260 ], [ 110.742188, -66.513260 ], [ 110.742188, -66.443107 ], [ 110.917969, -66.443107 ], [ 110.917969, -66.372755 ], [ 111.093750, -66.372755 ], [ 111.093750, -66.302205 ], [ 111.445312, -66.302205 ], [ 111.445312, -66.231457 ], [ 111.621094, -66.231457 ], [ 111.621094, -66.160511 ], [ 114.433594, -66.160511 ], [ 114.433594, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.785156, -66.372755 ], [ 114.785156, -66.443107 ], [ 114.960938, -66.443107 ], [ 114.960938, -66.513260 ], [ 115.136719, -66.513260 ], [ 115.136719, -66.583217 ], [ 115.312500, -66.583217 ], [ 115.312500, -66.652977 ], [ 116.542969, -66.652977 ], [ 116.542969, -66.722541 ], [ 116.718750, -66.722541 ], [ 116.718750, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 117.246094, -66.861082 ], [ 117.246094, -66.930060 ], [ 117.597656, -66.930060 ], [ 117.597656, -66.998844 ], [ 117.949219, -66.998844 ], [ 117.949219, -67.067433 ], [ 118.300781, -67.067433 ], [ 118.300781, -67.135829 ], [ 119.003906, -67.135829 ], [ 119.003906, -67.204032 ], [ 120.410156, -67.204032 ], [ 120.410156, -67.135829 ], [ 120.937500, -67.135829 ], [ 120.937500, -67.067433 ], [ 121.113281, -67.067433 ], [ 121.113281, -66.998844 ], [ 121.464844, -66.998844 ], [ 121.464844, -66.930060 ], [ 121.640625, -66.930060 ], [ 121.640625, -66.861082 ], [ 121.816406, -66.861082 ], [ 121.816406, -66.722541 ], [ 121.992188, -66.722541 ], [ 121.992188, -66.583217 ], [ 122.167969, -66.583217 ], [ 122.167969, -66.513260 ], [ 122.871094, -66.513260 ], [ 122.871094, -66.443107 ], [ 123.398438, -66.443107 ], [ 123.398438, -66.513260 ], [ 123.750000, -66.513260 ], [ 123.750000, -66.583217 ], [ 124.453125, -66.583217 ], [ 124.453125, -66.652977 ], [ 125.507812, -66.652977 ], [ 125.507812, -66.583217 ], [ 125.859375, -66.583217 ], [ 125.859375, -66.513260 ], [ 127.089844, -66.513260 ], [ 127.089844, -66.583217 ], [ 127.441406, -66.583217 ], [ 127.441406, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 129.023438, -66.722541 ], [ 129.023438, -66.652977 ], [ 129.375000, -66.652977 ], [ 129.375000, -66.583217 ], [ 129.902344, -66.583217 ], [ 129.902344, -66.513260 ], [ 130.253906, -66.513260 ], [ 130.253906, -66.443107 ], [ 130.605469, -66.443107 ], [ 130.605469, -66.372755 ], [ 133.242188, -66.372755 ], [ 133.242188, -66.302205 ], [ 133.593750, -66.302205 ], [ 133.593750, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.183594, -65.658275 ], [ 103.183594, -65.730626 ], [ 103.535156, -65.730626 ], [ 103.535156, -65.802776 ], [ 103.710938, -65.802776 ], [ 103.710938, -65.874725 ], [ 104.062500, -65.874725 ], [ 104.062500, -65.946472 ], [ 104.238281, -65.946472 ], [ 104.238281, -66.018018 ], [ 104.414062, -66.018018 ], [ 104.414062, -66.089364 ], [ 104.589844, -66.089364 ], [ 104.589844, -66.231457 ], [ 104.765625, -66.231457 ], [ 104.765625, -66.302205 ], [ 104.941406, -66.302205 ], [ 104.941406, -66.372755 ], [ 105.117188, -66.372755 ], [ 105.117188, -66.443107 ], [ 105.292969, -66.443107 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.652977 ], [ 105.644531, -66.652977 ], [ 105.644531, -66.722541 ], [ 105.820312, -66.722541 ], [ 105.820312, -66.861082 ], [ 100.546875, -66.861082 ], [ 100.546875, -66.791909 ], [ 100.722656, -66.791909 ], [ 100.722656, -66.652977 ], [ 100.898438, -66.652977 ], [ 100.898438, -66.583217 ], [ 101.074219, -66.583217 ], [ 101.074219, -66.513260 ], [ 101.250000, -66.513260 ], [ 101.250000, -66.443107 ], [ 101.425781, -66.443107 ], [ 101.425781, -66.372755 ], [ 101.601562, -66.372755 ], [ 101.601562, -66.302205 ], [ 101.777344, -66.302205 ], [ 101.777344, -66.160511 ], [ 101.953125, -66.160511 ], [ 101.953125, -66.089364 ], [ 102.128906, -66.089364 ], [ 102.128906, -65.946472 ], [ 102.304688, -65.946472 ], [ 102.304688, -65.874725 ], [ 102.480469, -65.874725 ], [ 102.480469, -65.802776 ], [ 102.656250, -65.802776 ], [ 102.656250, -65.658275 ], [ 103.183594, -65.658275 ] ] ], [ [ [ 109.511719, -66.861082 ], [ 109.511719, -66.791909 ], [ 110.039062, -66.791909 ], [ 110.039062, -66.722541 ], [ 110.390625, -66.722541 ], [ 110.390625, -66.652977 ], [ 110.566406, -66.652977 ], [ 110.566406, -66.583217 ], [ 110.917969, -66.583217 ], [ 110.917969, -66.513260 ], [ 111.093750, -66.513260 ], [ 111.093750, -66.443107 ], [ 111.269531, -66.443107 ], [ 111.269531, -66.372755 ], [ 111.445312, -66.372755 ], [ 111.445312, -66.302205 ], [ 111.621094, -66.302205 ], [ 111.621094, -66.231457 ], [ 111.796875, -66.231457 ], [ 111.796875, -66.160511 ], [ 112.500000, -66.160511 ], [ 112.500000, -66.089364 ], [ 113.027344, -66.089364 ], [ 113.027344, -66.018018 ], [ 113.378906, -66.018018 ], [ 113.378906, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.018018 ], [ 114.257812, -66.018018 ], [ 114.257812, -66.089364 ], [ 114.433594, -66.089364 ], [ 114.433594, -66.160511 ], [ 114.609375, -66.160511 ], [ 114.609375, -66.231457 ], [ 114.785156, -66.231457 ], [ 114.785156, -66.372755 ], [ 114.960938, -66.372755 ], [ 114.960938, -66.443107 ], [ 115.136719, -66.443107 ], [ 115.136719, -66.513260 ], [ 115.312500, -66.513260 ], [ 115.312500, -66.652977 ], [ 115.488281, -66.652977 ], [ 115.488281, -66.722541 ], [ 116.367188, -66.722541 ], [ 116.367188, -66.652977 ], [ 116.718750, -66.652977 ], [ 116.718750, -66.722541 ], [ 116.894531, -66.722541 ], [ 116.894531, -66.791909 ], [ 117.070312, -66.791909 ], [ 117.070312, -66.861082 ], [ 109.511719, -66.861082 ] ] ], [ [ [ 121.816406, -66.861082 ], [ 121.816406, -66.791909 ], [ 121.992188, -66.791909 ], [ 121.992188, -66.722541 ], [ 122.167969, -66.722541 ], [ 122.167969, -66.652977 ], [ 122.343750, -66.652977 ], [ 122.343750, -66.583217 ], [ 122.871094, -66.583217 ], [ 122.871094, -66.513260 ], [ 123.398438, -66.513260 ], [ 123.398438, -66.583217 ], [ 123.750000, -66.583217 ], [ 123.750000, -66.652977 ], [ 124.453125, -66.652977 ], [ 124.453125, -66.722541 ], [ 125.507812, -66.722541 ], [ 125.507812, -66.652977 ], [ 125.859375, -66.652977 ], [ 125.859375, -66.583217 ], [ 127.265625, -66.583217 ], [ 127.265625, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 128.496094, -66.722541 ], [ 128.496094, -66.791909 ], [ 129.023438, -66.791909 ], [ 129.023438, -66.722541 ], [ 129.375000, -66.722541 ], [ 129.375000, -66.652977 ], [ 129.726562, -66.652977 ], [ 129.726562, -66.583217 ], [ 130.078125, -66.583217 ], [ 130.078125, -66.513260 ], [ 130.605469, -66.513260 ], [ 130.605469, -66.443107 ], [ 131.484375, -66.443107 ], [ 131.484375, -66.372755 ], [ 133.417969, -66.372755 ], [ 133.417969, -66.302205 ], [ 134.472656, -66.302205 ], [ 134.472656, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.018018 ], [ 135.000000, -66.018018 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.585720 ], [ 135.703125, -65.585720 ], [ 135.703125, -65.802776 ], [ 135.878906, -65.802776 ], [ 135.878906, -66.861082 ], [ 121.816406, -66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.183594, -65.585720 ], [ 103.183594, -65.658275 ], [ 103.359375, -65.658275 ], [ 103.359375, -65.730626 ], [ 103.535156, -65.730626 ], [ 103.535156, -65.802776 ], [ 103.886719, -65.802776 ], [ 103.886719, -65.874725 ], [ 104.062500, -65.874725 ], [ 104.062500, -65.946472 ], [ 104.238281, -65.946472 ], [ 104.238281, -66.018018 ], [ 104.414062, -66.018018 ], [ 104.414062, -66.160511 ], [ 104.589844, -66.160511 ], [ 104.589844, -66.302205 ], [ 104.765625, -66.302205 ], [ 104.765625, -66.372755 ], [ 104.941406, -66.372755 ], [ 104.941406, -66.443107 ], [ 105.117188, -66.443107 ], [ 105.117188, -66.513260 ], [ 105.292969, -66.513260 ], [ 105.292969, -66.583217 ], [ 105.468750, -66.583217 ], [ 105.468750, -66.722541 ], [ 105.644531, -66.722541 ], [ 105.644531, -66.791909 ], [ 105.820312, -66.791909 ], [ 105.820312, -66.861082 ], [ 100.371094, -66.861082 ], [ 100.371094, -66.791909 ], [ 100.546875, -66.791909 ], [ 100.546875, -66.652977 ], [ 100.722656, -66.652977 ], [ 100.722656, -66.583217 ], [ 100.898438, -66.583217 ], [ 100.898438, -66.513260 ], [ 101.074219, -66.513260 ], [ 101.074219, -66.443107 ], [ 101.250000, -66.443107 ], [ 101.250000, -66.372755 ], [ 101.425781, -66.372755 ], [ 101.425781, -66.302205 ], [ 101.601562, -66.302205 ], [ 101.601562, -66.160511 ], [ 101.777344, -66.160511 ], [ 101.777344, -66.089364 ], [ 101.953125, -66.089364 ], [ 101.953125, -66.018018 ], [ 102.128906, -66.018018 ], [ 102.128906, -65.874725 ], [ 102.304688, -65.874725 ], [ 102.304688, -65.802776 ], [ 102.480469, -65.802776 ], [ 102.480469, -65.730626 ], [ 102.656250, -65.730626 ], [ 102.656250, -65.585720 ], [ 103.183594, -65.585720 ] ] ], [ [ [ 109.160156, -66.861082 ], [ 109.160156, -66.791909 ], [ 109.511719, -66.791909 ], [ 109.511719, -66.722541 ], [ 110.039062, -66.722541 ], [ 110.039062, -66.652977 ], [ 110.390625, -66.652977 ], [ 110.390625, -66.583217 ], [ 110.566406, -66.583217 ], [ 110.566406, -66.513260 ], [ 110.742188, -66.513260 ], [ 110.742188, -66.443107 ], [ 110.917969, -66.443107 ], [ 110.917969, -66.372755 ], [ 111.093750, -66.372755 ], [ 111.093750, -66.302205 ], [ 111.269531, -66.302205 ], [ 111.269531, -66.231457 ], [ 111.445312, -66.231457 ], [ 111.445312, -66.160511 ], [ 111.621094, -66.160511 ], [ 111.621094, -66.089364 ], [ 113.027344, -66.089364 ], [ 113.027344, -66.018018 ], [ 113.378906, -66.018018 ], [ 113.378906, -65.946472 ], [ 113.906250, -65.946472 ], [ 113.906250, -66.018018 ], [ 114.257812, -66.018018 ], [ 114.257812, -66.089364 ], [ 114.433594, -66.089364 ], [ 114.433594, -66.231457 ], [ 114.609375, -66.231457 ], [ 114.609375, -66.372755 ], [ 114.785156, -66.372755 ], [ 114.785156, -66.443107 ], [ 114.960938, -66.443107 ], [ 114.960938, -66.513260 ], [ 115.136719, -66.513260 ], [ 115.136719, -66.583217 ], [ 115.312500, -66.583217 ], [ 115.312500, -66.652977 ], [ 116.542969, -66.652977 ], [ 116.542969, -66.722541 ], [ 116.718750, -66.722541 ], [ 116.718750, -66.791909 ], [ 116.894531, -66.791909 ], [ 116.894531, -66.861082 ], [ 109.160156, -66.861082 ] ] ], [ [ [ 121.816406, -66.861082 ], [ 121.816406, -66.722541 ], [ 121.992188, -66.722541 ], [ 121.992188, -66.583217 ], [ 122.167969, -66.583217 ], [ 122.167969, -66.513260 ], [ 122.871094, -66.513260 ], [ 122.871094, -66.443107 ], [ 123.398438, -66.443107 ], [ 123.398438, -66.513260 ], [ 123.750000, -66.513260 ], [ 123.750000, -66.583217 ], [ 124.453125, -66.583217 ], [ 124.453125, -66.652977 ], [ 125.507812, -66.652977 ], [ 125.507812, -66.583217 ], [ 125.859375, -66.583217 ], [ 125.859375, -66.513260 ], [ 127.089844, -66.513260 ], [ 127.089844, -66.583217 ], [ 127.441406, -66.583217 ], [ 127.441406, -66.652977 ], [ 128.144531, -66.652977 ], [ 128.144531, -66.722541 ], [ 129.023438, -66.722541 ], [ 129.023438, -66.652977 ], [ 129.375000, -66.652977 ], [ 129.375000, -66.583217 ], [ 129.902344, -66.583217 ], [ 129.902344, -66.513260 ], [ 130.253906, -66.513260 ], [ 130.253906, -66.443107 ], [ 130.605469, -66.443107 ], [ 130.605469, -66.372755 ], [ 133.242188, -66.372755 ], [ 133.242188, -66.302205 ], [ 133.593750, -66.302205 ], [ 133.593750, -66.231457 ], [ 134.296875, -66.231457 ], [ 134.296875, -66.160511 ], [ 134.648438, -66.160511 ], [ 134.648438, -66.089364 ], [ 134.824219, -66.089364 ], [ 134.824219, -65.802776 ], [ 135.000000, -65.802776 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.802776 ], [ 135.703125, -65.802776 ], [ 135.703125, -66.018018 ], [ 135.878906, -66.018018 ], [ 135.878906, -66.861082 ], [ 121.816406, -66.861082 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.917969, 0.878872 ], [ 110.917969, 0.703107 ], [ 110.390625, 0.703107 ], [ 110.390625, 0.878872 ], [ 110.917969, 0.878872 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.882812, -9.275622 ], [ 119.882812, -9.449062 ], [ 120.234375, -9.449062 ], [ 120.234375, -9.622414 ], [ 120.410156, -9.622414 ], [ 120.410156, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -9.968851 ], [ 120.761719, -9.968851 ], [ 120.761719, -10.314919 ], [ 120.058594, -10.314919 ], [ 120.058594, -10.141932 ], [ 119.707031, -10.141932 ], [ 119.707031, -9.968851 ], [ 119.355469, -9.968851 ], [ 119.355469, -9.795678 ], [ 119.003906, -9.795678 ], [ 119.003906, -9.622414 ], [ 119.355469, -9.622414 ], [ 119.355469, -9.449062 ], [ 119.707031, -9.449062 ], [ 119.707031, -9.275622 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 124.980469, -8.928487 ], [ 124.980469, -9.102097 ], [ 125.156250, -9.102097 ], [ 125.156250, -9.622414 ], [ 124.980469, -9.622414 ], [ 124.980469, -9.795678 ], [ 124.804688, -9.795678 ], [ 124.804688, -9.968851 ], [ 124.628906, -9.968851 ], [ 124.628906, -10.141932 ], [ 124.101562, -10.141932 ], [ 124.101562, -10.314919 ], [ 123.398438, -10.314919 ], [ 123.398438, -10.141932 ], [ 123.574219, -10.141932 ], [ 123.574219, -9.795678 ], [ 123.750000, -9.795678 ], [ 123.750000, -9.449062 ], [ 123.925781, -9.449062 ], [ 123.925781, -9.275622 ], [ 124.277344, -9.275622 ], [ 124.277344, -9.102097 ], [ 124.804688, -9.102097 ], [ 124.804688, -8.928487 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 118.828125, -8.233237 ], [ 118.828125, -8.407168 ], [ 119.003906, -8.407168 ], [ 119.003906, -8.754795 ], [ 118.652344, -8.754795 ], [ 118.652344, -8.928487 ], [ 117.773438, -8.928487 ], [ 117.773438, -9.102097 ], [ 116.718750, -9.102097 ], [ 116.718750, -8.928487 ], [ 116.894531, -8.928487 ], [ 116.894531, -8.581021 ], [ 117.070312, -8.581021 ], [ 117.070312, -8.407168 ], [ 117.773438, -8.407168 ], [ 117.773438, -8.233237 ], [ 118.125000, -8.233237 ], [ 118.125000, -8.407168 ], [ 118.652344, -8.407168 ], [ 118.652344, -8.233237 ], [ 118.828125, -8.233237 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.871094, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.581021 ], [ 122.519531, -8.581021 ], [ 122.519531, -8.754795 ], [ 121.816406, -8.754795 ], [ 121.816406, -8.928487 ], [ 120.410156, -8.928487 ], [ 120.410156, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.410156, -8.407168 ], [ 120.410156, -8.233237 ], [ 120.761719, -8.233237 ], [ 120.761719, -8.407168 ], [ 121.113281, -8.407168 ], [ 121.113281, -8.581021 ], [ 121.816406, -8.581021 ], [ 121.816406, -8.407168 ], [ 122.343750, -8.407168 ], [ 122.343750, -8.233237 ], [ 122.695312, -8.233237 ], [ 122.695312, -8.059230 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.402344, -5.965754 ], [ 107.402344, -6.140555 ], [ 107.753906, -6.140555 ], [ 107.753906, -6.315299 ], [ 108.105469, -6.315299 ], [ 108.105469, -6.489983 ], [ 108.457031, -6.489983 ], [ 108.457031, -6.664608 ], [ 108.632812, -6.664608 ], [ 108.632812, -6.839170 ], [ 110.566406, -6.839170 ], [ 110.566406, -6.664608 ], [ 110.742188, -6.664608 ], [ 110.742188, -6.489983 ], [ 110.917969, -6.489983 ], [ 110.917969, -6.664608 ], [ 111.621094, -6.664608 ], [ 111.621094, -6.839170 ], [ 112.324219, -6.839170 ], [ 112.324219, -7.013668 ], [ 112.675781, -7.013668 ], [ 112.675781, -7.188101 ], [ 112.851562, -7.188101 ], [ 112.851562, -7.536764 ], [ 113.554688, -7.536764 ], [ 113.554688, -7.710992 ], [ 114.433594, -7.710992 ], [ 114.433594, -7.885147 ], [ 114.785156, -7.885147 ], [ 114.785156, -8.059230 ], [ 115.136719, -8.059230 ], [ 115.136719, -8.233237 ], [ 115.488281, -8.233237 ], [ 115.488281, -8.581021 ], [ 114.960938, -8.581021 ], [ 114.960938, -8.754795 ], [ 114.257812, -8.754795 ], [ 114.257812, -8.581021 ], [ 113.554688, -8.581021 ], [ 113.554688, -8.407168 ], [ 111.796875, -8.407168 ], [ 111.796875, -8.233237 ], [ 110.917969, -8.233237 ], [ 110.917969, -8.059230 ], [ 110.214844, -8.059230 ], [ 110.214844, -7.885147 ], [ 109.687500, -7.885147 ], [ 109.687500, -7.710992 ], [ 107.753906, -7.710992 ], [ 107.753906, -7.536764 ], [ 106.875000, -7.536764 ], [ 106.875000, -7.362467 ], [ 106.523438, -7.362467 ], [ 106.523438, -7.188101 ], [ 106.347656, -7.188101 ], [ 106.347656, -6.839170 ], [ 105.468750, -6.839170 ], [ 105.468750, -6.664608 ], [ 105.644531, -6.664608 ], [ 105.644531, -6.315299 ], [ 105.820312, -6.315299 ], [ 105.820312, -6.140555 ], [ 105.996094, -6.140555 ], [ 105.996094, -5.965754 ], [ 107.402344, -5.965754 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.664608 ], [ 134.296875, -6.664608 ], [ 134.296875, -6.489983 ], [ 134.121094, -6.489983 ], [ 134.121094, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 102.832031, 0.878872 ], [ 102.832031, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.886719, 0.175781 ], [ 103.886719, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.535156, -0.351560 ], [ 103.535156, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -0.878872 ], [ 103.710938, -0.878872 ], [ 103.710938, -1.054628 ], [ 104.414062, -1.054628 ], [ 104.414062, -1.406109 ], [ 104.589844, -1.406109 ], [ 104.589844, -1.933227 ], [ 104.765625, -1.933227 ], [ 104.765625, -2.284551 ], [ 105.117188, -2.284551 ], [ 105.117188, -2.460181 ], [ 105.644531, -2.460181 ], [ 105.644531, -2.635789 ], [ 105.820312, -2.635789 ], [ 105.820312, -2.811371 ], [ 105.996094, -2.811371 ], [ 105.996094, -2.986927 ], [ 106.171875, -2.986927 ], [ 106.171875, -3.337954 ], [ 105.996094, -3.337954 ], [ 105.996094, -4.039618 ], [ 105.820312, -4.039618 ], [ 105.820312, -5.790897 ], [ 104.589844, -5.790897 ], [ 104.589844, -5.615986 ], [ 104.414062, -5.615986 ], [ 104.414062, -5.441022 ], [ 104.062500, -5.441022 ], [ 104.062500, -5.266008 ], [ 103.886719, -5.266008 ], [ 103.886719, -5.090944 ], [ 103.710938, -5.090944 ], [ 103.710938, -4.915833 ], [ 103.359375, -4.915833 ], [ 103.359375, -4.740675 ], [ 103.183594, -4.740675 ], [ 103.183594, -4.565474 ], [ 103.007812, -4.565474 ], [ 103.007812, -4.390229 ], [ 102.656250, -4.390229 ], [ 102.656250, -4.214943 ], [ 102.480469, -4.214943 ], [ 102.480469, -4.039618 ], [ 102.304688, -4.039618 ], [ 102.304688, -3.864255 ], [ 102.128906, -3.864255 ], [ 102.128906, -3.688855 ], [ 101.953125, -3.688855 ], [ 101.953125, -3.513421 ], [ 101.777344, -3.513421 ], [ 101.777344, -3.162456 ], [ 101.601562, -3.162456 ], [ 101.601562, -2.986927 ], [ 101.425781, -2.986927 ], [ 101.425781, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.460181 ], [ 101.074219, -2.460181 ], [ 101.074219, -2.284551 ], [ 100.898438, -2.284551 ], [ 100.898438, -1.933227 ], [ 100.722656, -1.933227 ], [ 100.722656, -1.581830 ], [ 100.546875, -1.581830 ], [ 100.546875, -1.230374 ], [ 100.371094, -1.230374 ], [ 100.371094, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.351560 ], [ 99.140625, 0.351560 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 0.878872 ], [ 102.832031, 0.878872 ] ] ], [ [ [ 118.300781, 0.878872 ], [ 118.300781, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.527336 ], [ 117.597656, 0.527336 ], [ 117.597656, 0.175781 ], [ 117.421875, 0.175781 ], [ 117.421875, -0.351560 ], [ 117.597656, -0.351560 ], [ 117.597656, -1.054628 ], [ 117.246094, -1.054628 ], [ 117.246094, -1.230374 ], [ 116.894531, -1.230374 ], [ 116.894531, -1.406109 ], [ 116.542969, -1.406109 ], [ 116.542969, -2.986927 ], [ 116.367188, -2.986927 ], [ 116.367188, -3.688855 ], [ 116.191406, -3.688855 ], [ 116.191406, -3.864255 ], [ 116.015625, -3.864255 ], [ 116.015625, -3.688855 ], [ 115.839844, -3.688855 ], [ 115.839844, -3.864255 ], [ 115.136719, -3.864255 ], [ 115.136719, -4.039618 ], [ 114.609375, -4.039618 ], [ 114.609375, -3.688855 ], [ 114.433594, -3.688855 ], [ 114.433594, -3.513421 ], [ 113.554688, -3.513421 ], [ 113.554688, -3.337954 ], [ 113.203125, -3.337954 ], [ 113.203125, -3.162456 ], [ 113.027344, -3.162456 ], [ 113.027344, -3.337954 ], [ 112.500000, -3.337954 ], [ 112.500000, -3.513421 ], [ 111.972656, -3.513421 ], [ 111.972656, -3.337954 ], [ 111.796875, -3.337954 ], [ 111.796875, -3.162456 ], [ 111.621094, -3.162456 ], [ 111.621094, -2.986927 ], [ 110.214844, -2.986927 ], [ 110.214844, -2.284551 ], [ 110.039062, -2.284551 ], [ 110.039062, -1.581830 ], [ 109.863281, -1.581830 ], [ 109.863281, -1.406109 ], [ 109.511719, -1.406109 ], [ 109.511719, -1.054628 ], [ 109.335938, -1.054628 ], [ 109.335938, -0.703107 ], [ 109.160156, -0.703107 ], [ 109.160156, -0.175781 ], [ 108.984375, -0.175781 ], [ 108.984375, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.390625, 0.703107 ], [ 110.917969, 0.703107 ], [ 110.917969, 0.878872 ], [ 118.300781, 0.878872 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.804688, 0.703107 ], [ 124.628906, 0.703107 ], [ 124.628906, 0.351560 ], [ 124.277344, 0.351560 ], [ 124.277344, 0.175781 ], [ 123.046875, 0.175781 ], [ 123.046875, 0.351560 ], [ 120.761719, 0.351560 ], [ 120.761719, 0.175781 ], [ 120.234375, 0.175781 ], [ 120.234375, -0.175781 ], [ 120.058594, -0.175781 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ], [ 120.410156, -0.878872 ], [ 120.410156, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.230374 ], [ 120.761719, -1.230374 ], [ 120.761719, -1.406109 ], [ 121.113281, -1.406109 ], [ 121.113281, -1.230374 ], [ 121.289062, -1.230374 ], [ 121.289062, -1.054628 ], [ 121.464844, -1.054628 ], [ 121.464844, -0.878872 ], [ 122.519531, -0.878872 ], [ 122.519531, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -0.878872 ], [ 123.222656, -0.878872 ], [ 123.222656, -1.054628 ], [ 122.695312, -1.054628 ], [ 122.695312, -1.230374 ], [ 122.519531, -1.230374 ], [ 122.519531, -1.581830 ], [ 122.167969, -1.581830 ], [ 122.167969, -1.757537 ], [ 121.816406, -1.757537 ], [ 121.816406, -1.933227 ], [ 121.464844, -1.933227 ], [ 121.464844, -2.108899 ], [ 121.640625, -2.108899 ], [ 121.640625, -2.284551 ], [ 121.816406, -2.284551 ], [ 121.816406, -2.460181 ], [ 121.992188, -2.460181 ], [ 121.992188, -2.811371 ], [ 122.167969, -2.811371 ], [ 122.167969, -2.986927 ], [ 122.343750, -2.986927 ], [ 122.343750, -3.162456 ], [ 122.519531, -3.162456 ], [ 122.519531, -3.337954 ], [ 122.343750, -3.337954 ], [ 122.343750, -3.688855 ], [ 122.519531, -3.688855 ], [ 122.519531, -4.039618 ], [ 122.695312, -4.039618 ], [ 122.695312, -4.214943 ], [ 122.871094, -4.214943 ], [ 122.871094, -4.390229 ], [ 123.046875, -4.390229 ], [ 123.046875, -4.740675 ], [ 123.222656, -4.740675 ], [ 123.222656, -5.441022 ], [ 122.871094, -5.441022 ], [ 122.871094, -5.615986 ], [ 122.519531, -5.615986 ], [ 122.519531, -5.441022 ], [ 122.167969, -5.441022 ], [ 122.167969, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.343750, -4.915833 ], [ 122.519531, -4.915833 ], [ 122.519531, -4.565474 ], [ 122.343750, -4.565474 ], [ 122.343750, -4.740675 ], [ 121.992188, -4.740675 ], [ 121.992188, -4.915833 ], [ 121.640625, -4.915833 ], [ 121.640625, -4.740675 ], [ 121.464844, -4.740675 ], [ 121.464844, -4.390229 ], [ 121.640625, -4.390229 ], [ 121.640625, -4.214943 ], [ 121.464844, -4.214943 ], [ 121.464844, -4.039618 ], [ 121.113281, -4.039618 ], [ 121.113281, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -2.811371 ], [ 120.585938, -2.811371 ], [ 120.585938, -2.986927 ], [ 120.234375, -2.986927 ], [ 120.234375, -3.513421 ], [ 120.410156, -3.513421 ], [ 120.410156, -5.441022 ], [ 120.234375, -5.441022 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -5.441022 ], [ 119.355469, -5.441022 ], [ 119.355469, -5.266008 ], [ 119.531250, -5.266008 ], [ 119.531250, -4.740675 ], [ 119.707031, -4.740675 ], [ 119.707031, -4.039618 ], [ 119.531250, -4.039618 ], [ 119.531250, -3.513421 ], [ 119.003906, -3.513421 ], [ 119.003906, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.635789 ], [ 119.003906, -2.635789 ], [ 119.003906, -2.284551 ], [ 119.179688, -2.284551 ], [ 119.179688, -1.757537 ], [ 119.355469, -1.757537 ], [ 119.355469, -1.230374 ], [ 119.531250, -1.230374 ], [ 119.531250, -0.703107 ], [ 119.707031, -0.703107 ], [ 119.707031, -0.175781 ], [ 119.882812, -0.175781 ], [ 119.882812, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.527336 ], [ 120.234375, 0.527336 ], [ 120.234375, 0.703107 ], [ 120.410156, 0.703107 ], [ 120.410156, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -1.054628 ], [ 134.121094, -1.054628 ], [ 134.121094, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.460181 ], [ 134.472656, -2.460181 ], [ 134.472656, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.703125, -3.337954 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -4.565474 ], [ 135.351562, -4.565474 ], [ 135.351562, -4.390229 ], [ 135.000000, -4.390229 ], [ 135.000000, -4.214943 ], [ 134.648438, -4.214943 ], [ 134.648438, -4.039618 ], [ 134.296875, -4.039618 ], [ 134.296875, -3.864255 ], [ 133.945312, -3.864255 ], [ 133.945312, -3.688855 ], [ 133.593750, -3.688855 ], [ 133.593750, -3.864255 ], [ 133.417969, -3.864255 ], [ 133.417969, -4.039618 ], [ 132.890625, -4.039618 ], [ 132.890625, -3.864255 ], [ 132.714844, -3.864255 ], [ 132.714844, -3.337954 ], [ 132.539062, -3.337954 ], [ 132.539062, -3.162456 ], [ 132.187500, -3.162456 ], [ 132.187500, -2.986927 ], [ 132.011719, -2.986927 ], [ 132.011719, -2.811371 ], [ 132.363281, -2.811371 ], [ 132.363281, -2.635789 ], [ 132.890625, -2.635789 ], [ 132.890625, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.769531, -2.284551 ], [ 132.187500, -2.284551 ], [ 132.187500, -2.108899 ], [ 132.011719, -2.108899 ], [ 132.011719, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.581830 ], [ 131.308594, -1.581830 ], [ 131.308594, -1.406109 ], [ 130.781250, -1.406109 ], [ 130.781250, -1.054628 ], [ 130.605469, -1.054628 ], [ 130.605469, -0.878872 ], [ 131.308594, -0.878872 ], [ 131.308594, -0.703107 ], [ 132.011719, -0.703107 ], [ 132.011719, -0.527336 ], [ 132.363281, -0.527336 ], [ 132.363281, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 129.550781, -2.811371 ], [ 129.550781, -2.986927 ], [ 130.078125, -2.986927 ], [ 130.078125, -3.162456 ], [ 130.429688, -3.162456 ], [ 130.429688, -3.337954 ], [ 130.605469, -3.337954 ], [ 130.605469, -3.688855 ], [ 130.781250, -3.688855 ], [ 130.781250, -3.864255 ], [ 130.429688, -3.864255 ], [ 130.429688, -3.688855 ], [ 130.078125, -3.688855 ], [ 130.078125, -3.513421 ], [ 129.550781, -3.513421 ], [ 129.550781, -3.337954 ], [ 129.023438, -3.337954 ], [ 129.023438, -3.513421 ], [ 128.144531, -3.513421 ], [ 128.144531, -3.337954 ], [ 127.968750, -3.337954 ], [ 127.968750, -3.162456 ], [ 128.144531, -3.162456 ], [ 128.144531, -2.811371 ], [ 129.550781, -2.811371 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.671875, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.527336 ], [ 127.617188, -0.527336 ], [ 127.617188, 0.175781 ], [ 127.441406, 0.175781 ], [ 127.441406, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 126.914062, -3.162456 ], [ 126.914062, -3.337954 ], [ 127.089844, -3.337954 ], [ 127.089844, -3.513421 ], [ 127.265625, -3.513421 ], [ 127.265625, -3.688855 ], [ 127.089844, -3.688855 ], [ 127.089844, -3.864255 ], [ 126.386719, -3.864255 ], [ 126.386719, -3.688855 ], [ 126.210938, -3.688855 ], [ 126.210938, -3.513421 ], [ 126.035156, -3.513421 ], [ 126.035156, -3.162456 ], [ 126.914062, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.928487 ], [ 124.980469, -9.449062 ], [ 124.804688, -9.449062 ], [ 124.804688, -9.622414 ], [ 124.628906, -9.622414 ], [ 124.628906, -9.968851 ], [ 124.453125, -9.968851 ], [ 124.453125, -10.141932 ], [ 124.101562, -10.141932 ], [ 124.101562, -10.314919 ], [ 123.398438, -10.314919 ], [ 123.398438, -9.795678 ], [ 123.574219, -9.795678 ], [ 123.574219, -9.622414 ], [ 123.750000, -9.622414 ], [ 123.750000, -9.449062 ], [ 123.925781, -9.449062 ], [ 123.925781, -9.275622 ], [ 124.101562, -9.275622 ], [ 124.101562, -9.102097 ], [ 124.453125, -9.102097 ], [ 124.453125, -8.928487 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 119.882812, -9.275622 ], [ 119.882812, -9.449062 ], [ 120.234375, -9.449062 ], [ 120.234375, -9.622414 ], [ 120.410156, -9.622414 ], [ 120.410156, -9.795678 ], [ 120.585938, -9.795678 ], [ 120.585938, -9.968851 ], [ 120.761719, -9.968851 ], [ 120.761719, -10.141932 ], [ 119.882812, -10.141932 ], [ 119.882812, -9.968851 ], [ 119.531250, -9.968851 ], [ 119.531250, -9.795678 ], [ 119.179688, -9.795678 ], [ 119.179688, -9.622414 ], [ 118.828125, -9.622414 ], [ 118.828125, -9.449062 ], [ 119.531250, -9.449062 ], [ 119.531250, -9.275622 ], [ 119.882812, -9.275622 ] ] ], [ [ [ 118.828125, -8.233237 ], [ 118.828125, -8.407168 ], [ 119.003906, -8.407168 ], [ 119.003906, -8.581021 ], [ 118.652344, -8.581021 ], [ 118.652344, -8.754795 ], [ 117.773438, -8.754795 ], [ 117.773438, -8.928487 ], [ 116.894531, -8.928487 ], [ 116.894531, -8.581021 ], [ 117.070312, -8.581021 ], [ 117.070312, -8.407168 ], [ 117.597656, -8.407168 ], [ 117.597656, -8.233237 ], [ 118.828125, -8.233237 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.871094, -8.407168 ], [ 122.695312, -8.407168 ], [ 122.695312, -8.581021 ], [ 122.343750, -8.581021 ], [ 122.343750, -8.754795 ], [ 121.640625, -8.754795 ], [ 121.640625, -8.928487 ], [ 120.410156, -8.928487 ], [ 120.410156, -8.754795 ], [ 119.882812, -8.754795 ], [ 119.882812, -8.407168 ], [ 120.410156, -8.407168 ], [ 120.410156, -8.233237 ], [ 120.761719, -8.233237 ], [ 120.761719, -8.407168 ], [ 122.343750, -8.407168 ], [ 122.343750, -8.233237 ], [ 122.695312, -8.233237 ], [ 122.695312, -8.059230 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 107.226562, -5.790897 ], [ 107.226562, -5.965754 ], [ 107.402344, -5.965754 ], [ 107.402344, -6.140555 ], [ 107.753906, -6.140555 ], [ 107.753906, -6.315299 ], [ 108.457031, -6.315299 ], [ 108.457031, -6.664608 ], [ 109.335938, -6.664608 ], [ 109.335938, -6.839170 ], [ 110.566406, -6.839170 ], [ 110.566406, -6.489983 ], [ 110.742188, -6.489983 ], [ 110.742188, -6.315299 ], [ 110.917969, -6.315299 ], [ 110.917969, -6.489983 ], [ 111.445312, -6.489983 ], [ 111.445312, -6.664608 ], [ 112.148438, -6.664608 ], [ 112.148438, -6.839170 ], [ 112.500000, -6.839170 ], [ 112.500000, -7.013668 ], [ 112.675781, -7.013668 ], [ 112.675781, -7.362467 ], [ 112.851562, -7.362467 ], [ 112.851562, -7.536764 ], [ 113.554688, -7.536764 ], [ 113.554688, -7.710992 ], [ 114.609375, -7.710992 ], [ 114.609375, -7.885147 ], [ 114.960938, -7.885147 ], [ 114.960938, -8.059230 ], [ 115.312500, -8.059230 ], [ 115.312500, -8.233237 ], [ 115.488281, -8.233237 ], [ 115.488281, -8.407168 ], [ 114.785156, -8.407168 ], [ 114.785156, -8.581021 ], [ 114.082031, -8.581021 ], [ 114.082031, -8.407168 ], [ 113.554688, -8.407168 ], [ 113.554688, -8.233237 ], [ 110.917969, -8.233237 ], [ 110.917969, -8.059230 ], [ 110.214844, -8.059230 ], [ 110.214844, -7.885147 ], [ 109.511719, -7.885147 ], [ 109.511719, -7.710992 ], [ 108.808594, -7.710992 ], [ 108.808594, -7.536764 ], [ 108.457031, -7.536764 ], [ 108.457031, -7.710992 ], [ 107.753906, -7.710992 ], [ 107.753906, -7.536764 ], [ 107.050781, -7.536764 ], [ 107.050781, -7.362467 ], [ 106.523438, -7.362467 ], [ 106.523438, -7.188101 ], [ 106.347656, -7.188101 ], [ 106.347656, -7.013668 ], [ 106.171875, -7.013668 ], [ 106.171875, -6.839170 ], [ 105.468750, -6.839170 ], [ 105.468750, -6.489983 ], [ 105.644531, -6.489983 ], [ 105.644531, -6.315299 ], [ 105.820312, -6.315299 ], [ 105.820312, -5.965754 ], [ 105.996094, -5.965754 ], [ 105.996094, -5.790897 ], [ 107.226562, -5.790897 ] ] ], [ [ [ 117.773438, 0.878872 ], [ 117.773438, 0.703107 ], [ 117.597656, 0.703107 ], [ 117.597656, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -0.878872 ], [ 117.246094, -0.878872 ], [ 117.246094, -1.054628 ], [ 116.894531, -1.054628 ], [ 116.894531, -1.230374 ], [ 116.718750, -1.230374 ], [ 116.718750, -1.406109 ], [ 116.542969, -1.406109 ], [ 116.542969, -1.933227 ], [ 116.367188, -1.933227 ], [ 116.367188, -2.811371 ], [ 116.191406, -2.811371 ], [ 116.191406, -3.513421 ], [ 116.015625, -3.513421 ], [ 116.015625, -3.688855 ], [ 115.488281, -3.688855 ], [ 115.488281, -3.864255 ], [ 115.136719, -3.864255 ], [ 115.136719, -4.039618 ], [ 114.785156, -4.039618 ], [ 114.785156, -3.864255 ], [ 114.609375, -3.864255 ], [ 114.609375, -3.513421 ], [ 114.433594, -3.513421 ], [ 114.433594, -3.337954 ], [ 113.554688, -3.337954 ], [ 113.554688, -3.162456 ], [ 113.203125, -3.162456 ], [ 113.203125, -2.986927 ], [ 113.027344, -2.986927 ], [ 113.027344, -3.162456 ], [ 112.324219, -3.162456 ], [ 112.324219, -3.337954 ], [ 111.796875, -3.337954 ], [ 111.796875, -3.162456 ], [ 111.621094, -3.162456 ], [ 111.621094, -2.986927 ], [ 110.390625, -2.986927 ], [ 110.390625, -2.811371 ], [ 110.214844, -2.811371 ], [ 110.214844, -2.284551 ], [ 110.039062, -2.284551 ], [ 110.039062, -1.581830 ], [ 109.863281, -1.581830 ], [ 109.863281, -1.406109 ], [ 109.511719, -1.406109 ], [ 109.511719, -1.230374 ], [ 109.335938, -1.230374 ], [ 109.335938, -0.878872 ], [ 109.160156, -0.878872 ], [ 109.160156, -0.527336 ], [ 108.984375, -0.527336 ], [ 108.984375, 0.000000 ], [ 108.808594, 0.000000 ], [ 108.808594, 0.703107 ], [ 108.984375, 0.703107 ], [ 108.984375, 0.878872 ], [ 117.773438, 0.878872 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.489983 ], [ 134.296875, -6.489983 ], [ 134.296875, -6.839170 ], [ 134.121094, -6.839170 ], [ 134.121094, -6.489983 ], [ 133.945312, -6.489983 ], [ 133.945312, -5.965754 ], [ 134.121094, -5.965754 ], [ 134.121094, -5.615986 ], [ 134.648438, -5.615986 ] ] ], [ [ [ 102.832031, 0.878872 ], [ 102.832031, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.710938, 0.175781 ], [ 103.710938, -0.175781 ], [ 103.535156, -0.175781 ], [ 103.535156, -0.527336 ], [ 103.359375, -0.527336 ], [ 103.359375, -0.878872 ], [ 103.710938, -0.878872 ], [ 103.710938, -1.054628 ], [ 104.238281, -1.054628 ], [ 104.238281, -1.406109 ], [ 104.414062, -1.406109 ], [ 104.414062, -1.933227 ], [ 104.589844, -1.933227 ], [ 104.589844, -2.284551 ], [ 105.468750, -2.284551 ], [ 105.468750, -2.460181 ], [ 105.644531, -2.460181 ], [ 105.644531, -2.635789 ], [ 105.820312, -2.635789 ], [ 105.820312, -2.986927 ], [ 105.996094, -2.986927 ], [ 105.996094, -3.688855 ], [ 105.820312, -3.688855 ], [ 105.820312, -5.790897 ], [ 104.414062, -5.790897 ], [ 104.414062, -5.615986 ], [ 104.238281, -5.615986 ], [ 104.238281, -5.441022 ], [ 104.062500, -5.441022 ], [ 104.062500, -5.266008 ], [ 103.886719, -5.266008 ], [ 103.886719, -5.090944 ], [ 103.710938, -5.090944 ], [ 103.710938, -4.915833 ], [ 103.535156, -4.915833 ], [ 103.535156, -4.740675 ], [ 103.183594, -4.740675 ], [ 103.183594, -4.565474 ], [ 102.832031, -4.565474 ], [ 102.832031, -4.390229 ], [ 102.480469, -4.390229 ], [ 102.480469, -4.039618 ], [ 102.304688, -4.039618 ], [ 102.304688, -3.688855 ], [ 102.128906, -3.688855 ], [ 102.128906, -3.513421 ], [ 101.953125, -3.513421 ], [ 101.953125, -3.337954 ], [ 101.777344, -3.337954 ], [ 101.777344, -3.162456 ], [ 101.601562, -3.162456 ], [ 101.601562, -2.986927 ], [ 101.425781, -2.986927 ], [ 101.425781, -2.811371 ], [ 101.250000, -2.811371 ], [ 101.250000, -2.460181 ], [ 101.074219, -2.460181 ], [ 101.074219, -2.108899 ], [ 100.898438, -2.108899 ], [ 100.898438, -1.933227 ], [ 100.722656, -1.933227 ], [ 100.722656, -1.581830 ], [ 100.546875, -1.581830 ], [ 100.546875, -1.230374 ], [ 100.371094, -1.230374 ], [ 100.371094, -1.054628 ], [ 100.195312, -1.054628 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.175781 ], [ 99.140625, 0.175781 ], [ 99.140625, 0.527336 ], [ 98.964844, 0.527336 ], [ 98.964844, 0.878872 ], [ 102.832031, 0.878872 ] ] ], [ [ [ 122.695312, -4.390229 ], [ 122.519531, -4.390229 ], [ 122.519531, -4.565474 ], [ 121.992188, -4.565474 ], [ 121.992188, -4.740675 ], [ 121.464844, -4.740675 ], [ 121.464844, -4.039618 ], [ 121.289062, -4.039618 ], [ 121.289062, -3.864255 ], [ 120.937500, -3.864255 ], [ 120.937500, -3.688855 ], [ 120.761719, -3.688855 ], [ 120.761719, -2.986927 ], [ 120.937500, -2.986927 ], [ 120.937500, -2.635789 ], [ 120.585938, -2.635789 ], [ 120.585938, -2.811371 ], [ 120.234375, -2.811371 ], [ 120.234375, -4.740675 ], [ 120.410156, -4.740675 ], [ 120.410156, -5.441022 ], [ 120.234375, -5.441022 ], [ 120.234375, -5.615986 ], [ 119.531250, -5.615986 ], [ 119.531250, -5.441022 ], [ 119.355469, -5.441022 ], [ 119.355469, -4.915833 ], [ 119.531250, -4.915833 ], [ 119.531250, -3.864255 ], [ 119.355469, -3.864255 ], [ 119.355469, -3.337954 ], [ 119.003906, -3.337954 ], [ 119.003906, -3.162456 ], [ 118.828125, -3.162456 ], [ 118.828125, -2.811371 ], [ 118.652344, -2.811371 ], [ 118.652344, -2.635789 ], [ 118.828125, -2.635789 ], [ 118.828125, -2.460181 ], [ 119.003906, -2.460181 ], [ 119.003906, -2.284551 ], [ 119.179688, -2.284551 ], [ 119.179688, -1.054628 ], [ 119.355469, -1.054628 ], [ 119.355469, -0.527336 ], [ 119.531250, -0.527336 ], [ 119.531250, -0.175781 ], [ 119.707031, -0.175781 ], [ 119.707031, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, 0.703107 ], [ 120.234375, 0.703107 ], [ 120.234375, 0.878872 ], [ 124.628906, 0.878872 ], [ 124.628906, 0.703107 ], [ 124.453125, 0.703107 ], [ 124.453125, 0.527336 ], [ 124.101562, 0.527336 ], [ 124.101562, 0.351560 ], [ 123.046875, 0.351560 ], [ 123.046875, 0.527336 ], [ 120.585938, 0.527336 ], [ 120.585938, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, -0.527336 ], [ 120.058594, -0.527336 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ], [ 120.410156, -0.878872 ], [ 120.410156, -1.054628 ], [ 120.585938, -1.054628 ], [ 120.585938, -1.230374 ], [ 120.761719, -1.230374 ], [ 120.761719, -1.406109 ], [ 121.113281, -1.406109 ], [ 121.113281, -1.230374 ], [ 121.289062, -1.230374 ], [ 121.289062, -1.054628 ], [ 121.464844, -1.054628 ], [ 121.464844, -0.878872 ], [ 121.992188, -0.878872 ], [ 121.992188, -0.703107 ], [ 122.871094, -0.703107 ], [ 122.871094, -0.527336 ], [ 123.222656, -0.527336 ], [ 123.222656, -1.054628 ], [ 122.871094, -1.054628 ], [ 122.871094, -0.878872 ], [ 122.695312, -0.878872 ], [ 122.695312, -1.054628 ], [ 122.519531, -1.054628 ], [ 122.519531, -1.406109 ], [ 122.167969, -1.406109 ], [ 122.167969, -1.581830 ], [ 121.816406, -1.581830 ], [ 121.816406, -1.757537 ], [ 121.464844, -1.757537 ], [ 121.464844, -1.933227 ], [ 121.640625, -1.933227 ], [ 121.640625, -2.284551 ], [ 121.816406, -2.284551 ], [ 121.816406, -2.460181 ], [ 121.992188, -2.460181 ], [ 121.992188, -2.811371 ], [ 122.167969, -2.811371 ], [ 122.167969, -3.162456 ], [ 122.343750, -3.162456 ], [ 122.343750, -3.337954 ], [ 122.167969, -3.337954 ], [ 122.167969, -3.688855 ], [ 122.343750, -3.688855 ], [ 122.343750, -3.864255 ], [ 122.519531, -3.864255 ], [ 122.519531, -4.039618 ], [ 122.695312, -4.039618 ], [ 122.695312, -4.390229 ] ] ], [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -0.878872 ], [ 134.121094, -0.878872 ], [ 134.121094, -1.933227 ], [ 134.296875, -1.933227 ], [ 134.296875, -2.811371 ], [ 134.648438, -2.811371 ], [ 134.648438, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.527344, -3.337954 ], [ 135.527344, -3.162456 ], [ 135.703125, -3.162456 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -4.390229 ], [ 134.824219, -4.390229 ], [ 134.824219, -4.214943 ], [ 134.472656, -4.214943 ], [ 134.472656, -4.039618 ], [ 134.121094, -4.039618 ], [ 134.121094, -3.864255 ], [ 133.945312, -3.864255 ], [ 133.945312, -3.688855 ], [ 133.417969, -3.688855 ], [ 133.417969, -3.864255 ], [ 133.242188, -3.864255 ], [ 133.242188, -4.039618 ], [ 132.890625, -4.039618 ], [ 132.890625, -3.864255 ], [ 132.714844, -3.864255 ], [ 132.714844, -3.162456 ], [ 132.363281, -3.162456 ], [ 132.363281, -2.986927 ], [ 132.011719, -2.986927 ], [ 132.011719, -2.811371 ], [ 132.187500, -2.811371 ], [ 132.187500, -2.635789 ], [ 132.890625, -2.635789 ], [ 132.890625, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.769531, -2.284551 ], [ 133.593750, -2.284551 ], [ 133.593750, -2.108899 ], [ 132.011719, -2.108899 ], [ 132.011719, -1.757537 ], [ 131.835938, -1.757537 ], [ 131.835938, -1.581830 ], [ 131.132812, -1.581830 ], [ 131.132812, -1.406109 ], [ 130.605469, -1.406109 ], [ 130.605469, -1.054628 ], [ 130.429688, -1.054628 ], [ 130.429688, -0.878872 ], [ 130.957031, -0.878872 ], [ 130.957031, -0.703107 ], [ 131.660156, -0.703107 ], [ 131.660156, -0.527336 ], [ 132.187500, -0.527336 ], [ 132.187500, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 129.375000, -2.635789 ], [ 129.375000, -2.811371 ], [ 130.078125, -2.811371 ], [ 130.078125, -2.986927 ], [ 130.429688, -2.986927 ], [ 130.429688, -3.162456 ], [ 130.605469, -3.162456 ], [ 130.605469, -3.513421 ], [ 130.781250, -3.513421 ], [ 130.781250, -3.688855 ], [ 130.429688, -3.688855 ], [ 130.429688, -3.513421 ], [ 130.078125, -3.513421 ], [ 130.078125, -3.337954 ], [ 127.792969, -3.337954 ], [ 127.792969, -3.162456 ], [ 127.968750, -3.162456 ], [ 127.968750, -2.811371 ], [ 128.671875, -2.811371 ], [ 128.671875, -2.635789 ], [ 129.375000, -2.635789 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.671875, 0.527336 ], [ 128.496094, 0.527336 ], [ 128.496094, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.527336 ], [ 127.968750, 0.527336 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.351560 ], [ 127.617188, -0.351560 ], [ 127.617188, 0.000000 ], [ 127.441406, 0.000000 ], [ 127.441406, 0.527336 ], [ 127.265625, 0.527336 ], [ 127.265625, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 126.914062, -2.986927 ], [ 126.914062, -3.162456 ], [ 127.089844, -3.162456 ], [ 127.089844, -3.513421 ], [ 126.914062, -3.513421 ], [ 126.914062, -3.688855 ], [ 126.210938, -3.688855 ], [ 126.210938, -3.513421 ], [ 126.035156, -3.513421 ], [ 126.035156, -3.337954 ], [ 125.859375, -3.337954 ], [ 125.859375, -3.162456 ], [ 126.562500, -3.162456 ], [ 126.562500, -2.986927 ], [ 126.914062, -2.986927 ] ] ], [ [ [ 122.695312, -4.390229 ], [ 122.871094, -4.390229 ], [ 122.871094, -4.565474 ], [ 123.046875, -4.565474 ], [ 123.046875, -5.441022 ], [ 122.695312, -5.441022 ], [ 122.695312, -5.615986 ], [ 122.343750, -5.615986 ], [ 122.343750, -5.441022 ], [ 122.167969, -5.441022 ], [ 122.167969, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.343750, -4.915833 ], [ 122.519531, -4.915833 ], [ 122.519531, -4.565474 ], [ 122.695312, -4.565474 ], [ 122.695312, -4.390229 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.407168 ], [ 127.265625, -8.581021 ], [ 127.089844, -8.581021 ], [ 127.089844, -8.754795 ], [ 126.738281, -8.754795 ], [ 126.738281, -8.928487 ], [ 126.210938, -8.928487 ], [ 126.210938, -9.102097 ], [ 125.859375, -9.102097 ], [ 125.859375, -9.275622 ], [ 125.507812, -9.275622 ], [ 125.507812, -9.449062 ], [ 125.156250, -9.449062 ], [ 125.156250, -9.102097 ], [ 124.980469, -9.102097 ], [ 124.980469, -8.754795 ], [ 125.156250, -8.754795 ], [ 125.156250, -8.581021 ], [ 125.683594, -8.581021 ], [ 125.683594, -8.407168 ], [ 127.265625, -8.407168 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.265625, -8.233237 ], [ 127.265625, -8.407168 ], [ 127.089844, -8.407168 ], [ 127.089844, -8.581021 ], [ 126.914062, -8.581021 ], [ 126.914062, -8.754795 ], [ 126.562500, -8.754795 ], [ 126.562500, -8.928487 ], [ 126.210938, -8.928487 ], [ 126.210938, -9.102097 ], [ 125.507812, -9.102097 ], [ 125.507812, -9.275622 ], [ 124.980469, -9.275622 ], [ 124.980469, -8.928487 ], [ 124.804688, -8.928487 ], [ 124.804688, -8.754795 ], [ 124.980469, -8.754795 ], [ 124.980469, -8.581021 ], [ 125.507812, -8.581021 ], [ 125.507812, -8.407168 ], [ 126.386719, -8.407168 ], [ 126.386719, -8.233237 ], [ 127.265625, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.554688, -26.431228 ], [ 113.378906, -26.431228 ], [ 113.378906, -26.273714 ], [ 113.554688, -26.273714 ], [ 113.554688, -25.958045 ], [ 113.378906, -25.958045 ], [ 113.378906, -25.799891 ], [ 113.730469, -25.799891 ], [ 113.730469, -25.958045 ], [ 113.906250, -25.958045 ], [ 113.906250, -26.115986 ], [ 114.082031, -26.115986 ], [ 114.082031, -26.273714 ], [ 114.257812, -26.273714 ], [ 114.257812, -25.799891 ], [ 114.082031, -25.799891 ], [ 114.082031, -25.482951 ], [ 113.906250, -25.482951 ], [ 113.906250, -25.165173 ], [ 113.730469, -25.165173 ], [ 113.730469, -24.846565 ], [ 113.554688, -24.846565 ], [ 113.554688, -24.527135 ], [ 113.378906, -24.527135 ], [ 113.378906, -24.206890 ], [ 113.554688, -24.206890 ], [ 113.554688, -23.725012 ], [ 113.730469, -23.725012 ], [ 113.730469, -23.402765 ], [ 113.906250, -23.402765 ], [ 113.906250, -22.755921 ], [ 113.730469, -22.755921 ], [ 113.730469, -22.268764 ], [ 113.906250, -22.268764 ], [ 113.906250, -21.943046 ], [ 114.082031, -21.943046 ], [ 114.082031, -22.268764 ], [ 114.257812, -22.268764 ], [ 114.257812, -22.431340 ], [ 114.433594, -22.431340 ], [ 114.433594, -22.105999 ], [ 114.609375, -22.105999 ], [ 114.609375, -21.779905 ], [ 114.960938, -21.779905 ], [ 114.960938, -21.616579 ], [ 115.312500, -21.616579 ], [ 115.312500, -21.453069 ], [ 115.664062, -21.453069 ], [ 115.664062, -21.289374 ], [ 116.015625, -21.289374 ], [ 116.015625, -21.125498 ], [ 116.191406, -21.125498 ], [ 116.191406, -20.961440 ], [ 116.542969, -20.961440 ], [ 116.542969, -20.797201 ], [ 116.718750, -20.797201 ], [ 116.718750, -20.632784 ], [ 117.246094, -20.632784 ], [ 117.246094, -20.797201 ], [ 117.597656, -20.797201 ], [ 117.597656, -20.632784 ], [ 117.949219, -20.632784 ], [ 117.949219, -20.468189 ], [ 118.300781, -20.468189 ], [ 118.300781, -20.303418 ], [ 118.828125, -20.303418 ], [ 118.828125, -20.138470 ], [ 119.003906, -20.138470 ], [ 119.003906, -19.973349 ], [ 120.234375, -19.973349 ], [ 120.234375, -19.808054 ], [ 120.761719, -19.808054 ], [ 120.761719, -19.642588 ], [ 121.113281, -19.642588 ], [ 121.113281, -19.476950 ], [ 121.464844, -19.476950 ], [ 121.464844, -18.979026 ], [ 121.640625, -18.979026 ], [ 121.640625, -18.646245 ], [ 121.816406, -18.646245 ], [ 121.816406, -18.479609 ], [ 121.992188, -18.479609 ], [ 121.992188, -18.312811 ], [ 122.167969, -18.312811 ], [ 122.167969, -17.978733 ], [ 122.343750, -17.978733 ], [ 122.343750, -17.308688 ], [ 122.519531, -17.308688 ], [ 122.519531, -17.140790 ], [ 122.695312, -17.140790 ], [ 122.695312, -16.804541 ], [ 122.871094, -16.804541 ], [ 122.871094, -16.636192 ], [ 123.046875, -16.636192 ], [ 123.046875, -16.804541 ], [ 123.222656, -16.804541 ], [ 123.222656, -17.140790 ], [ 123.398438, -17.140790 ], [ 123.398438, -17.308688 ], [ 123.750000, -17.308688 ], [ 123.750000, -16.804541 ], [ 123.574219, -16.804541 ], [ 123.574219, -16.467695 ], [ 123.750000, -16.467695 ], [ 123.750000, -16.130262 ], [ 123.925781, -16.130262 ], [ 123.925781, -16.299051 ], [ 124.277344, -16.299051 ], [ 124.277344, -15.961329 ], [ 124.453125, -15.961329 ], [ 124.453125, -15.623037 ], [ 124.628906, -15.623037 ], [ 124.628906, -15.453680 ], [ 124.804688, -15.453680 ], [ 124.804688, -15.284185 ], [ 124.980469, -15.284185 ], [ 124.980469, -14.944785 ], [ 125.156250, -14.944785 ], [ 125.156250, -14.604847 ], [ 125.507812, -14.604847 ], [ 125.507812, -14.434680 ], [ 125.683594, -14.434680 ], [ 125.683594, -14.264383 ], [ 126.210938, -14.264383 ], [ 126.210938, -14.093957 ], [ 126.562500, -14.093957 ], [ 126.562500, -13.923404 ], [ 126.914062, -13.923404 ], [ 126.914062, -13.752725 ], [ 127.089844, -13.752725 ], [ 127.089844, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.093957 ], [ 127.617188, -14.093957 ], [ 127.617188, -14.264383 ], [ 127.792969, -14.264383 ], [ 127.792969, -14.434680 ], [ 127.968750, -14.434680 ], [ 127.968750, -14.604847 ], [ 128.144531, -14.604847 ], [ 128.144531, -14.944785 ], [ 129.550781, -14.944785 ], [ 129.550781, -14.774883 ], [ 129.375000, -14.774883 ], [ 129.375000, -14.434680 ], [ 129.550781, -14.434680 ], [ 129.550781, -14.093957 ], [ 129.726562, -14.093957 ], [ 129.726562, -13.752725 ], [ 129.902344, -13.752725 ], [ 129.902344, -13.581921 ], [ 130.253906, -13.581921 ], [ 130.253906, -13.068777 ], [ 130.429688, -13.068777 ], [ 130.429688, -12.726084 ], [ 130.605469, -12.726084 ], [ 130.605469, -12.554564 ], [ 130.957031, -12.554564 ], [ 130.957031, -12.382928 ], [ 132.011719, -12.382928 ], [ 132.011719, -12.211180 ], [ 132.363281, -12.211180 ], [ 132.363281, -12.039321 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 132.011719, -11.523088 ], [ 132.011719, -11.350797 ], [ 132.187500, -11.350797 ], [ 132.187500, -11.178402 ], [ 132.539062, -11.178402 ], [ 132.539062, -11.350797 ], [ 133.066406, -11.350797 ], [ 133.066406, -11.523088 ], [ 133.242188, -11.523088 ], [ 133.242188, -11.695273 ], [ 133.417969, -11.695273 ], [ 133.417969, -11.867351 ], [ 133.945312, -11.867351 ], [ 133.945312, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -12.039321 ], [ 135.878906, -12.039321 ], [ 135.878906, -14.264383 ], [ 135.703125, -14.264383 ], [ 135.703125, -14.434680 ], [ 135.527344, -14.434680 ], [ 135.527344, -14.774883 ], [ 135.351562, -14.774883 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 135.878906, -15.284185 ], [ 135.878906, -34.885931 ], [ 135.703125, -34.885931 ], [ 135.703125, -34.741612 ], [ 135.351562, -34.741612 ], [ 135.351562, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -32.694866 ], [ 134.296875, -32.694866 ], [ 134.296875, -32.546813 ], [ 134.121094, -32.546813 ], [ 134.121094, -32.398516 ], [ 133.769531, -32.398516 ], [ 133.769531, -32.249974 ], [ 133.417969, -32.249974 ], [ 133.417969, -32.101190 ], [ 133.066406, -32.101190 ], [ 133.066406, -31.952162 ], [ 132.011719, -31.952162 ], [ 132.011719, -31.802893 ], [ 131.660156, -31.802893 ], [ 131.660156, -31.653381 ], [ 131.308594, -31.653381 ], [ 131.308594, -31.503629 ], [ 130.605469, -31.503629 ], [ 130.605469, -31.653381 ], [ 129.375000, -31.653381 ], [ 129.375000, -31.802893 ], [ 128.671875, -31.802893 ], [ 128.671875, -31.952162 ], [ 128.144531, -31.952162 ], [ 128.144531, -32.101190 ], [ 127.441406, -32.101190 ], [ 127.441406, -32.249974 ], [ 126.210938, -32.249974 ], [ 126.210938, -32.398516 ], [ 125.859375, -32.398516 ], [ 125.859375, -32.546813 ], [ 125.507812, -32.546813 ], [ 125.507812, -32.694866 ], [ 124.980469, -32.694866 ], [ 124.980469, -32.842674 ], [ 124.628906, -32.842674 ], [ 124.628906, -32.990236 ], [ 124.277344, -32.990236 ], [ 124.277344, -33.284620 ], [ 124.101562, -33.284620 ], [ 124.101562, -33.578015 ], [ 123.925781, -33.578015 ], [ 123.925781, -33.724340 ], [ 123.750000, -33.724340 ], [ 123.750000, -33.870416 ], [ 122.695312, -33.870416 ], [ 122.695312, -34.016242 ], [ 121.640625, -34.016242 ], [ 121.640625, -33.870416 ], [ 120.410156, -33.870416 ], [ 120.410156, -34.016242 ], [ 119.882812, -34.016242 ], [ 119.882812, -34.161818 ], [ 119.707031, -34.161818 ], [ 119.707031, -34.307144 ], [ 119.531250, -34.307144 ], [ 119.531250, -34.452218 ], [ 119.003906, -34.452218 ], [ 119.003906, -34.597042 ], [ 118.652344, -34.597042 ], [ 118.652344, -34.741612 ], [ 118.476562, -34.741612 ], [ 118.476562, -34.885931 ], [ 118.125000, -34.885931 ], [ 118.125000, -35.029996 ], [ 116.367188, -35.029996 ], [ 116.367188, -34.885931 ], [ 116.015625, -34.885931 ], [ 116.015625, -34.741612 ], [ 115.839844, -34.741612 ], [ 115.839844, -34.597042 ], [ 115.488281, -34.597042 ], [ 115.488281, -34.452218 ], [ 115.312500, -34.452218 ], [ 115.312500, -34.307144 ], [ 114.960938, -34.307144 ], [ 114.960938, -33.578015 ], [ 115.312500, -33.578015 ], [ 115.312500, -33.431441 ], [ 115.664062, -33.431441 ], [ 115.664062, -32.546813 ], [ 115.839844, -32.546813 ], [ 115.839844, -31.952162 ], [ 115.664062, -31.952162 ], [ 115.664062, -31.503629 ], [ 115.488281, -31.503629 ], [ 115.488281, -31.203405 ], [ 115.312500, -31.203405 ], [ 115.312500, -30.902225 ], [ 115.136719, -30.902225 ], [ 115.136719, -30.297018 ], [ 114.960938, -30.297018 ], [ 114.960938, -29.382175 ], [ 114.785156, -29.382175 ], [ 114.785156, -29.075375 ], [ 114.609375, -29.075375 ], [ 114.609375, -28.459033 ], [ 114.433594, -28.459033 ], [ 114.433594, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -27.839076 ], [ 114.082031, -27.839076 ], [ 114.082031, -27.371767 ], [ 113.906250, -27.371767 ], [ 113.906250, -27.059126 ], [ 113.730469, -27.059126 ], [ 113.730469, -26.745610 ], [ 113.554688, -26.745610 ], [ 113.554688, -26.588527 ], [ 113.730469, -26.588527 ], [ 113.730469, -26.431228 ], [ 113.554688, -26.431228 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.554688, -26.273714 ], [ 113.554688, -25.799891 ], [ 113.378906, -25.799891 ], [ 113.378906, -25.641526 ], [ 113.730469, -25.641526 ], [ 113.730469, -25.799891 ], [ 113.906250, -25.799891 ], [ 113.906250, -26.115986 ], [ 114.082031, -26.115986 ], [ 114.082031, -25.641526 ], [ 113.906250, -25.641526 ], [ 113.906250, -25.324167 ], [ 113.730469, -25.324167 ], [ 113.730469, -25.005973 ], [ 113.554688, -25.005973 ], [ 113.554688, -24.527135 ], [ 113.378906, -24.527135 ], [ 113.378906, -23.563987 ], [ 113.554688, -23.563987 ], [ 113.554688, -23.241346 ], [ 113.730469, -23.241346 ], [ 113.730469, -22.268764 ], [ 113.906250, -22.268764 ], [ 113.906250, -21.943046 ], [ 114.082031, -21.943046 ], [ 114.082031, -22.431340 ], [ 114.257812, -22.431340 ], [ 114.257812, -22.105999 ], [ 114.433594, -22.105999 ], [ 114.433594, -21.943046 ], [ 114.609375, -21.943046 ], [ 114.609375, -21.779905 ], [ 114.960938, -21.779905 ], [ 114.960938, -21.616579 ], [ 115.312500, -21.616579 ], [ 115.312500, -21.453069 ], [ 115.488281, -21.453069 ], [ 115.488281, -21.289374 ], [ 115.664062, -21.289374 ], [ 115.664062, -21.125498 ], [ 115.839844, -21.125498 ], [ 115.839844, -20.961440 ], [ 116.191406, -20.961440 ], [ 116.191406, -20.797201 ], [ 116.542969, -20.797201 ], [ 116.542969, -20.632784 ], [ 116.894531, -20.632784 ], [ 116.894531, -20.468189 ], [ 117.070312, -20.468189 ], [ 117.070312, -20.632784 ], [ 117.773438, -20.632784 ], [ 117.773438, -20.468189 ], [ 118.125000, -20.468189 ], [ 118.125000, -20.303418 ], [ 118.652344, -20.303418 ], [ 118.652344, -20.138470 ], [ 118.828125, -20.138470 ], [ 118.828125, -19.973349 ], [ 119.179688, -19.973349 ], [ 119.179688, -19.808054 ], [ 119.355469, -19.808054 ], [ 119.355469, -19.973349 ], [ 120.058594, -19.973349 ], [ 120.058594, -19.808054 ], [ 120.585938, -19.808054 ], [ 120.585938, -19.642588 ], [ 120.937500, -19.642588 ], [ 120.937500, -19.476950 ], [ 121.113281, -19.476950 ], [ 121.113281, -19.311143 ], [ 121.289062, -19.311143 ], [ 121.289062, -19.145168 ], [ 121.464844, -19.145168 ], [ 121.464844, -18.812718 ], [ 121.640625, -18.812718 ], [ 121.640625, -18.646245 ], [ 121.816406, -18.646245 ], [ 121.816406, -18.479609 ], [ 121.992188, -18.479609 ], [ 121.992188, -18.312811 ], [ 122.167969, -18.312811 ], [ 122.167969, -17.140790 ], [ 122.343750, -17.140790 ], [ 122.343750, -16.972741 ], [ 122.519531, -16.972741 ], [ 122.519531, -16.636192 ], [ 122.695312, -16.636192 ], [ 122.695312, -16.467695 ], [ 123.046875, -16.467695 ], [ 123.046875, -16.804541 ], [ 123.222656, -16.804541 ], [ 123.222656, -17.140790 ], [ 123.750000, -17.140790 ], [ 123.750000, -16.972741 ], [ 123.574219, -16.972741 ], [ 123.574219, -16.636192 ], [ 123.398438, -16.636192 ], [ 123.398438, -16.467695 ], [ 123.574219, -16.467695 ], [ 123.574219, -16.130262 ], [ 123.925781, -16.130262 ], [ 123.925781, -16.299051 ], [ 124.101562, -16.299051 ], [ 124.101562, -15.961329 ], [ 124.277344, -15.961329 ], [ 124.277344, -15.453680 ], [ 124.453125, -15.453680 ], [ 124.453125, -15.284185 ], [ 124.628906, -15.284185 ], [ 124.628906, -15.114553 ], [ 124.804688, -15.114553 ], [ 124.804688, -14.944785 ], [ 124.980469, -14.944785 ], [ 124.980469, -14.774883 ], [ 125.156250, -14.774883 ], [ 125.156250, -14.604847 ], [ 125.507812, -14.604847 ], [ 125.507812, -14.264383 ], [ 126.035156, -14.264383 ], [ 126.035156, -14.093957 ], [ 126.386719, -14.093957 ], [ 126.386719, -13.923404 ], [ 127.265625, -13.923404 ], [ 127.265625, -14.093957 ], [ 127.617188, -14.093957 ], [ 127.617188, -14.264383 ], [ 127.792969, -14.264383 ], [ 127.792969, -14.434680 ], [ 127.968750, -14.434680 ], [ 127.968750, -14.604847 ], [ 128.144531, -14.604847 ], [ 128.144531, -14.774883 ], [ 129.023438, -14.774883 ], [ 129.023438, -14.944785 ], [ 129.550781, -14.944785 ], [ 129.550781, -14.604847 ], [ 129.375000, -14.604847 ], [ 129.375000, -14.093957 ], [ 129.550781, -14.093957 ], [ 129.550781, -13.752725 ], [ 129.726562, -13.752725 ], [ 129.726562, -13.581921 ], [ 129.902344, -13.581921 ], [ 129.902344, -13.410994 ], [ 130.253906, -13.410994 ], [ 130.253906, -13.239945 ], [ 130.078125, -13.239945 ], [ 130.078125, -13.068777 ], [ 130.253906, -13.068777 ], [ 130.253906, -12.726084 ], [ 130.429688, -12.726084 ], [ 130.429688, -12.554564 ], [ 130.605469, -12.554564 ], [ 130.605469, -12.382928 ], [ 130.781250, -12.382928 ], [ 130.781250, -12.211180 ], [ 131.132812, -12.211180 ], [ 131.132812, -12.039321 ], [ 131.308594, -12.039321 ], [ 131.308594, -12.211180 ], [ 132.187500, -12.211180 ], [ 132.187500, -12.039321 ], [ 132.539062, -12.039321 ], [ 132.539062, -11.523088 ], [ 132.187500, -11.523088 ], [ 132.187500, -11.350797 ], [ 131.835938, -11.350797 ], [ 131.835938, -11.178402 ], [ 132.011719, -11.178402 ], [ 132.011719, -11.005904 ], [ 132.187500, -11.005904 ], [ 132.187500, -11.178402 ], [ 132.539062, -11.178402 ], [ 132.539062, -11.350797 ], [ 132.890625, -11.350797 ], [ 132.890625, -11.523088 ], [ 133.242188, -11.523088 ], [ 133.242188, -11.695273 ], [ 133.593750, -11.695273 ], [ 133.593750, -11.867351 ], [ 133.945312, -11.867351 ], [ 133.945312, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.527344, -12.211180 ], [ 135.527344, -12.039321 ], [ 135.878906, -12.039321 ], [ 135.878906, -14.093957 ], [ 135.703125, -14.093957 ], [ 135.703125, -14.264383 ], [ 135.527344, -14.264383 ], [ 135.527344, -14.604847 ], [ 135.351562, -14.604847 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.878906, -15.114553 ], [ 135.878906, -34.741612 ], [ 135.527344, -34.741612 ], [ 135.527344, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -33.870416 ], [ 135.000000, -33.870416 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 133.945312, -32.990236 ], [ 133.945312, -32.694866 ], [ 134.121094, -32.694866 ], [ 134.121094, -32.546813 ], [ 133.945312, -32.546813 ], [ 133.945312, -32.398516 ], [ 133.593750, -32.398516 ], [ 133.593750, -32.249974 ], [ 133.242188, -32.249974 ], [ 133.242188, -32.101190 ], [ 132.890625, -32.101190 ], [ 132.890625, -31.952162 ], [ 132.011719, -31.952162 ], [ 132.011719, -31.802893 ], [ 131.835938, -31.802893 ], [ 131.835938, -31.653381 ], [ 131.484375, -31.653381 ], [ 131.484375, -31.503629 ], [ 131.308594, -31.503629 ], [ 131.308594, -31.353637 ], [ 130.429688, -31.353637 ], [ 130.429688, -31.503629 ], [ 129.199219, -31.503629 ], [ 129.199219, -31.653381 ], [ 128.496094, -31.653381 ], [ 128.496094, -31.802893 ], [ 128.144531, -31.802893 ], [ 128.144531, -31.952162 ], [ 127.792969, -31.952162 ], [ 127.792969, -32.101190 ], [ 127.441406, -32.101190 ], [ 127.441406, -32.249974 ], [ 126.386719, -32.249974 ], [ 126.386719, -32.101190 ], [ 126.035156, -32.101190 ], [ 126.035156, -32.249974 ], [ 125.683594, -32.249974 ], [ 125.683594, -32.398516 ], [ 125.507812, -32.398516 ], [ 125.507812, -32.546813 ], [ 125.156250, -32.546813 ], [ 125.156250, -32.694866 ], [ 124.628906, -32.694866 ], [ 124.628906, -32.842674 ], [ 124.101562, -32.842674 ], [ 124.101562, -33.137551 ], [ 123.925781, -33.137551 ], [ 123.925781, -33.578015 ], [ 123.750000, -33.578015 ], [ 123.750000, -33.870416 ], [ 121.640625, -33.870416 ], [ 121.640625, -33.724340 ], [ 120.937500, -33.724340 ], [ 120.937500, -33.870416 ], [ 119.882812, -33.870416 ], [ 119.882812, -34.016242 ], [ 119.707031, -34.016242 ], [ 119.707031, -34.161818 ], [ 119.531250, -34.161818 ], [ 119.531250, -34.307144 ], [ 119.355469, -34.307144 ], [ 119.355469, -34.452218 ], [ 119.003906, -34.452218 ], [ 119.003906, -34.597042 ], [ 118.652344, -34.597042 ], [ 118.652344, -34.741612 ], [ 118.476562, -34.741612 ], [ 118.476562, -34.885931 ], [ 118.125000, -34.885931 ], [ 118.125000, -35.029996 ], [ 117.421875, -35.029996 ], [ 117.421875, -34.885931 ], [ 116.367188, -34.885931 ], [ 116.367188, -34.741612 ], [ 116.015625, -34.741612 ], [ 116.015625, -34.597042 ], [ 115.839844, -34.597042 ], [ 115.839844, -34.452218 ], [ 115.488281, -34.452218 ], [ 115.488281, -34.307144 ], [ 115.136719, -34.307144 ], [ 115.136719, -34.161818 ], [ 114.960938, -34.161818 ], [ 114.960938, -33.578015 ], [ 115.312500, -33.578015 ], [ 115.312500, -33.431441 ], [ 115.488281, -33.431441 ], [ 115.488281, -33.284620 ], [ 115.664062, -33.284620 ], [ 115.664062, -31.353637 ], [ 115.488281, -31.353637 ], [ 115.488281, -31.052934 ], [ 115.312500, -31.052934 ], [ 115.312500, -30.751278 ], [ 115.136719, -30.751278 ], [ 115.136719, -30.297018 ], [ 114.960938, -30.297018 ], [ 114.960938, -29.228890 ], [ 114.785156, -29.228890 ], [ 114.785156, -28.921631 ], [ 114.609375, -28.921631 ], [ 114.609375, -28.459033 ], [ 114.433594, -28.459033 ], [ 114.433594, -28.304381 ], [ 114.257812, -28.304381 ], [ 114.257812, -28.149503 ], [ 114.082031, -28.149503 ], [ 114.082031, -27.683528 ], [ 113.906250, -27.683528 ], [ 113.906250, -27.215556 ], [ 113.730469, -27.215556 ], [ 113.730469, -26.902477 ], [ 113.554688, -26.902477 ], [ 113.554688, -26.588527 ], [ 113.378906, -26.588527 ], [ 113.378906, -26.273714 ], [ 113.554688, -26.273714 ] ], [ [ 113.554688, -26.273714 ], [ 113.554688, -26.431228 ], [ 113.730469, -26.431228 ], [ 113.730469, -26.273714 ], [ 113.554688, -26.273714 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.503906, 28.921631 ], [ 96.503906, 28.613459 ], [ 96.328125, 28.613459 ], [ 96.328125, 28.459033 ], [ 96.679688, 28.459033 ], [ 96.679688, 28.304381 ], [ 97.382812, 28.304381 ], [ 97.382812, 27.683528 ], [ 97.031250, 27.683528 ], [ 97.031250, 27.371767 ], [ 97.207031, 27.371767 ], [ 97.207031, 27.059126 ], [ 96.679688, 27.059126 ], [ 96.679688, 27.215556 ], [ 96.503906, 27.215556 ], [ 96.503906, 27.059126 ], [ 96.152344, 27.059126 ], [ 96.152344, 26.902477 ], [ 95.800781, 26.902477 ], [ 95.800781, 26.745610 ], [ 95.449219, 26.745610 ], [ 95.449219, 26.588527 ], [ 95.097656, 26.588527 ], [ 95.097656, 25.799891 ], [ 94.921875, 25.799891 ], [ 94.921875, 25.482951 ], [ 94.746094, 25.482951 ], [ 94.746094, 25.165173 ], [ 94.570312, 25.165173 ], [ 94.570312, 24.527135 ], [ 94.394531, 24.527135 ], [ 94.394531, 24.206890 ], [ 94.218750, 24.206890 ], [ 94.218750, 23.885838 ], [ 93.515625, 23.885838 ], [ 93.515625, 24.046464 ], [ 93.339844, 24.046464 ], [ 93.339844, 22.917923 ], [ 93.164062, 22.917923 ], [ 93.164062, 22.755921 ], [ 92.988281, 22.755921 ], [ 92.988281, 22.431340 ], [ 93.164062, 22.431340 ], [ 93.164062, 22.268764 ], [ 92.988281, 22.268764 ], [ 92.988281, 22.105999 ], [ 92.636719, 22.105999 ], [ 92.636719, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.755921 ], [ 92.285156, 22.755921 ], [ 92.285156, 23.241346 ], [ 92.109375, 23.241346 ], [ 92.109375, 23.563987 ], [ 91.933594, 23.563987 ], [ 91.933594, 23.241346 ], [ 91.757812, 23.241346 ], [ 91.757812, 22.917923 ], [ 91.582031, 22.917923 ], [ 91.582031, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.402765 ], [ 91.230469, 23.402765 ], [ 91.230469, 23.725012 ], [ 91.406250, 23.725012 ], [ 91.406250, 24.046464 ], [ 91.757812, 24.046464 ], [ 91.757812, 24.206890 ], [ 92.109375, 24.206890 ], [ 92.109375, 24.527135 ], [ 92.285156, 24.527135 ], [ 92.285156, 24.846565 ], [ 92.460938, 24.846565 ], [ 92.460938, 25.005973 ], [ 91.933594, 25.005973 ], [ 91.933594, 25.165173 ], [ 90.351562, 25.165173 ], [ 90.351562, 25.324167 ], [ 90.000000, 25.324167 ], [ 90.000000, 25.641526 ], [ 89.824219, 25.641526 ], [ 89.824219, 25.958045 ], [ 89.121094, 25.958045 ], [ 89.121094, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 90.703125, 26.902477 ], [ 90.703125, 26.745610 ], [ 91.757812, 26.745610 ], [ 91.757812, 26.902477 ], [ 92.109375, 26.902477 ], [ 92.109375, 27.527758 ], [ 91.933594, 27.527758 ], [ 91.933594, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.839076 ], [ 92.636719, 27.839076 ], [ 92.636719, 27.994401 ], [ 92.812500, 27.994401 ], [ 92.812500, 28.149503 ], [ 92.988281, 28.149503 ], [ 92.988281, 28.304381 ], [ 93.164062, 28.304381 ], [ 93.164062, 28.459033 ], [ 93.339844, 28.459033 ], [ 93.339844, 28.613459 ], [ 93.515625, 28.613459 ], [ 93.515625, 28.767659 ], [ 93.867188, 28.767659 ], [ 93.867188, 28.921631 ], [ 94.218750, 28.921631 ], [ 94.218750, 29.075375 ], [ 94.570312, 29.075375 ], [ 94.570312, 29.228890 ], [ 94.921875, 29.228890 ], [ 94.921875, 29.075375 ], [ 95.800781, 29.075375 ], [ 95.800781, 29.228890 ], [ 96.328125, 29.228890 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.152344, 29.382175 ], [ 96.152344, 29.228890 ], [ 96.328125, 29.228890 ], [ 96.328125, 28.921631 ], [ 96.503906, 28.921631 ], [ 96.503906, 28.767659 ], [ 96.328125, 28.767659 ], [ 96.328125, 28.459033 ], [ 96.503906, 28.459033 ], [ 96.503906, 28.304381 ], [ 97.207031, 28.304381 ], [ 97.207031, 28.149503 ], [ 97.382812, 28.149503 ], [ 97.382812, 27.839076 ], [ 97.031250, 27.839076 ], [ 97.031250, 27.215556 ], [ 96.503906, 27.215556 ], [ 96.503906, 27.371767 ], [ 96.328125, 27.371767 ], [ 96.328125, 27.215556 ], [ 95.976562, 27.215556 ], [ 95.976562, 27.059126 ], [ 95.800781, 27.059126 ], [ 95.800781, 26.902477 ], [ 95.625000, 26.902477 ], [ 95.625000, 26.745610 ], [ 95.273438, 26.745610 ], [ 95.273438, 26.588527 ], [ 95.097656, 26.588527 ], [ 95.097656, 25.958045 ], [ 94.921875, 25.958045 ], [ 94.921875, 25.641526 ], [ 94.746094, 25.641526 ], [ 94.746094, 25.324167 ], [ 94.570312, 25.324167 ], [ 94.570312, 24.846565 ], [ 94.394531, 24.846565 ], [ 94.394531, 24.367114 ], [ 94.218750, 24.367114 ], [ 94.218750, 24.046464 ], [ 94.042969, 24.046464 ], [ 94.042969, 23.885838 ], [ 93.691406, 23.885838 ], [ 93.691406, 24.046464 ], [ 93.339844, 24.046464 ], [ 93.339844, 24.206890 ], [ 93.164062, 24.206890 ], [ 93.164062, 22.917923 ], [ 92.988281, 22.917923 ], [ 92.988281, 22.593726 ], [ 93.164062, 22.593726 ], [ 93.164062, 22.268764 ], [ 92.812500, 22.268764 ], [ 92.812500, 22.105999 ], [ 92.636719, 22.105999 ], [ 92.636719, 22.268764 ], [ 92.460938, 22.268764 ], [ 92.460938, 22.917923 ], [ 92.285156, 22.917923 ], [ 92.285156, 23.402765 ], [ 92.109375, 23.402765 ], [ 92.109375, 23.725012 ], [ 91.757812, 23.725012 ], [ 91.757812, 23.402765 ], [ 91.582031, 23.402765 ], [ 91.582031, 23.079732 ], [ 91.406250, 23.079732 ], [ 91.406250, 23.241346 ], [ 91.230469, 23.241346 ], [ 91.230469, 23.402765 ], [ 91.054688, 23.402765 ], [ 91.054688, 23.725012 ], [ 91.230469, 23.725012 ], [ 91.230469, 24.046464 ], [ 91.406250, 24.046464 ], [ 91.406250, 24.206890 ], [ 91.933594, 24.206890 ], [ 91.933594, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.846565 ], [ 92.285156, 24.846565 ], [ 92.285156, 25.005973 ], [ 91.933594, 25.005973 ], [ 91.933594, 25.165173 ], [ 90.175781, 25.165173 ], [ 90.175781, 25.324167 ], [ 89.824219, 25.324167 ], [ 89.824219, 26.115986 ], [ 89.121094, 26.115986 ], [ 89.121094, 26.902477 ], [ 89.472656, 26.902477 ], [ 89.472656, 26.745610 ], [ 90.175781, 26.745610 ], [ 90.175781, 26.902477 ], [ 91.933594, 26.902477 ], [ 91.933594, 27.527758 ], [ 91.757812, 27.527758 ], [ 91.757812, 27.683528 ], [ 91.582031, 27.683528 ], [ 91.582031, 27.839076 ], [ 92.109375, 27.839076 ], [ 92.109375, 27.994401 ], [ 92.636719, 27.994401 ], [ 92.636719, 28.149503 ], [ 92.812500, 28.149503 ], [ 92.812500, 28.304381 ], [ 92.988281, 28.304381 ], [ 92.988281, 28.459033 ], [ 93.164062, 28.459033 ], [ 93.164062, 28.613459 ], [ 93.339844, 28.613459 ], [ 93.339844, 28.767659 ], [ 93.515625, 28.767659 ], [ 93.515625, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 29.075375 ], [ 94.042969, 29.075375 ], [ 94.042969, 29.228890 ], [ 94.394531, 29.228890 ], [ 94.394531, 29.382175 ], [ 94.570312, 29.382175 ], [ 94.570312, 29.228890 ], [ 94.921875, 29.228890 ], [ 94.921875, 29.075375 ], [ 95.449219, 29.075375 ], [ 95.449219, 29.228890 ], [ 95.800781, 29.228890 ], [ 95.800781, 29.382175 ], [ 96.152344, 29.382175 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.351562, 28.149503 ], [ 90.351562, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.839076 ], [ 91.757812, 27.839076 ], [ 91.757812, 27.683528 ], [ 91.933594, 27.683528 ], [ 91.933594, 27.527758 ], [ 92.109375, 27.527758 ], [ 92.109375, 26.902477 ], [ 91.757812, 26.902477 ], [ 91.757812, 26.745610 ], [ 90.703125, 26.745610 ], [ 90.703125, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 89.121094, 26.902477 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.839076 ], [ 89.472656, 27.839076 ], [ 89.472656, 27.994401 ], [ 89.648438, 27.994401 ], [ 89.648438, 28.149503 ], [ 90.351562, 28.149503 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.175781, 28.304381 ], [ 90.175781, 28.149503 ], [ 91.230469, 28.149503 ], [ 91.230469, 27.994401 ], [ 91.406250, 27.994401 ], [ 91.406250, 27.839076 ], [ 91.582031, 27.839076 ], [ 91.582031, 27.683528 ], [ 91.757812, 27.683528 ], [ 91.757812, 27.527758 ], [ 91.933594, 27.527758 ], [ 91.933594, 26.902477 ], [ 90.175781, 26.902477 ], [ 90.175781, 26.745610 ], [ 89.472656, 26.745610 ], [ 89.472656, 26.902477 ], [ 89.121094, 26.902477 ], [ 89.121094, 27.683528 ], [ 89.296875, 27.683528 ], [ 89.296875, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 28.149503 ], [ 89.824219, 28.149503 ], [ 89.824219, 28.304381 ], [ 90.175781, 28.304381 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.824219, 25.958045 ], [ 89.824219, 25.641526 ], [ 90.000000, 25.641526 ], [ 90.000000, 25.324167 ], [ 90.351562, 25.324167 ], [ 90.351562, 25.165173 ], [ 91.933594, 25.165173 ], [ 91.933594, 25.005973 ], [ 92.460938, 25.005973 ], [ 92.460938, 24.846565 ], [ 92.285156, 24.846565 ], [ 92.285156, 24.527135 ], [ 92.109375, 24.527135 ], [ 92.109375, 24.206890 ], [ 91.757812, 24.206890 ], [ 91.757812, 24.046464 ], [ 91.406250, 24.046464 ], [ 91.406250, 23.725012 ], [ 91.230469, 23.725012 ], [ 91.230469, 23.402765 ], [ 91.406250, 23.402765 ], [ 91.406250, 23.241346 ], [ 91.582031, 23.241346 ], [ 91.582031, 22.917923 ], [ 91.757812, 22.917923 ], [ 91.757812, 23.241346 ], [ 91.933594, 23.241346 ], [ 91.933594, 23.563987 ], [ 92.109375, 23.563987 ], [ 92.109375, 23.241346 ], [ 92.285156, 23.241346 ], [ 92.285156, 22.755921 ], [ 92.460938, 22.755921 ], [ 92.460938, 22.268764 ], [ 92.636719, 22.268764 ], [ 92.636719, 21.289374 ], [ 92.285156, 21.289374 ], [ 92.285156, 20.797201 ], [ 92.109375, 20.797201 ], [ 92.109375, 21.779905 ], [ 91.933594, 21.779905 ], [ 91.933594, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.268764 ], [ 91.582031, 22.268764 ], [ 91.582031, 22.593726 ], [ 91.406250, 22.593726 ], [ 91.406250, 22.755921 ], [ 90.527344, 22.755921 ], [ 90.527344, 22.105999 ], [ 90.351562, 22.105999 ], [ 90.351562, 21.779905 ], [ 90.175781, 21.779905 ], [ 90.175781, 21.943046 ], [ 89.648438, 21.943046 ], [ 89.648438, 21.779905 ], [ 89.472656, 21.779905 ], [ 89.472656, 21.943046 ], [ 89.121094, 21.943046 ], [ 89.121094, 25.958045 ], [ 89.824219, 25.958045 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.824219, 26.115986 ], [ 89.824219, 25.324167 ], [ 90.175781, 25.324167 ], [ 90.175781, 25.165173 ], [ 91.933594, 25.165173 ], [ 91.933594, 25.005973 ], [ 92.285156, 25.005973 ], [ 92.285156, 24.846565 ], [ 92.109375, 24.846565 ], [ 92.109375, 24.527135 ], [ 91.933594, 24.527135 ], [ 91.933594, 24.206890 ], [ 91.406250, 24.206890 ], [ 91.406250, 24.046464 ], [ 91.230469, 24.046464 ], [ 91.230469, 23.725012 ], [ 91.054688, 23.725012 ], [ 91.054688, 23.402765 ], [ 91.230469, 23.402765 ], [ 91.230469, 23.241346 ], [ 91.406250, 23.241346 ], [ 91.406250, 23.079732 ], [ 91.582031, 23.079732 ], [ 91.582031, 23.402765 ], [ 91.757812, 23.402765 ], [ 91.757812, 23.725012 ], [ 92.109375, 23.725012 ], [ 92.109375, 23.402765 ], [ 92.285156, 23.402765 ], [ 92.285156, 22.917923 ], [ 92.460938, 22.917923 ], [ 92.460938, 22.268764 ], [ 92.636719, 22.268764 ], [ 92.636719, 21.453069 ], [ 92.285156, 21.453069 ], [ 92.285156, 20.797201 ], [ 92.109375, 20.797201 ], [ 92.109375, 21.125498 ], [ 91.933594, 21.125498 ], [ 91.933594, 21.943046 ], [ 91.757812, 21.943046 ], [ 91.757812, 22.431340 ], [ 91.582031, 22.431340 ], [ 91.582031, 22.755921 ], [ 91.406250, 22.755921 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 22.593726 ], [ 90.527344, 22.593726 ], [ 90.527344, 22.268764 ], [ 90.351562, 22.268764 ], [ 90.351562, 21.943046 ], [ 89.296875, 21.943046 ], [ 89.296875, 22.105999 ], [ 89.121094, 22.105999 ], [ 89.121094, 26.115986 ], [ 89.824219, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 110.742188, 19.973349 ], [ 110.917969, 19.973349 ], [ 110.917969, 19.642588 ], [ 111.093750, 19.642588 ], [ 111.093750, 19.476950 ], [ 110.742188, 19.476950 ], [ 110.742188, 19.311143 ], [ 110.566406, 19.311143 ], [ 110.566406, 18.979026 ], [ 110.390625, 18.979026 ], [ 110.390625, 18.479609 ], [ 110.039062, 18.479609 ], [ 110.039062, 18.312811 ], [ 109.687500, 18.312811 ], [ 109.687500, 18.145852 ], [ 109.160156, 18.145852 ], [ 109.160156, 18.312811 ], [ 108.808594, 18.312811 ], [ 108.808594, 18.479609 ], [ 108.632812, 18.479609 ], [ 108.632812, 19.311143 ], [ 108.808594, 19.311143 ], [ 108.808594, 19.476950 ], [ 108.984375, 19.476950 ], [ 108.984375, 19.642588 ], [ 109.160156, 19.642588 ], [ 109.160156, 19.808054 ], [ 109.511719, 19.808054 ], [ 109.511719, 19.973349 ], [ 110.039062, 19.973349 ], [ 110.039062, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 126.738281, 41.640078 ], [ 126.738281, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.376809 ], [ 126.386719, 41.376809 ], [ 126.386719, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.713956 ], [ 125.332031, 40.713956 ], [ 125.332031, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.313043 ], [ 124.804688, 40.313043 ], [ 124.804688, 40.178873 ], [ 124.628906, 40.178873 ], [ 124.628906, 40.044438 ], [ 124.453125, 40.044438 ], [ 124.453125, 39.909736 ], [ 124.101562, 39.909736 ], [ 124.101562, 39.774769 ], [ 123.398438, 39.774769 ], [ 123.398438, 39.639538 ], [ 122.871094, 39.639538 ], [ 122.871094, 39.504041 ], [ 122.695312, 39.504041 ], [ 122.695312, 39.368279 ], [ 122.343750, 39.368279 ], [ 122.343750, 39.232253 ], [ 121.992188, 39.232253 ], [ 121.992188, 39.095963 ], [ 121.464844, 39.095963 ], [ 121.464844, 39.232253 ], [ 121.640625, 39.232253 ], [ 121.640625, 39.368279 ], [ 121.464844, 39.368279 ], [ 121.464844, 39.639538 ], [ 121.289062, 39.639538 ], [ 121.289062, 39.774769 ], [ 121.464844, 39.774769 ], [ 121.464844, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.044438 ], [ 121.816406, 40.044438 ], [ 121.816406, 40.178873 ], [ 121.992188, 40.178873 ], [ 121.992188, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.289062, 40.847060 ], [ 121.289062, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.580585 ], [ 120.761719, 40.580585 ], [ 120.761719, 40.446947 ], [ 120.585938, 40.446947 ], [ 120.585938, 40.313043 ], [ 120.410156, 40.313043 ], [ 120.410156, 40.178873 ], [ 120.058594, 40.178873 ], [ 120.058594, 40.044438 ], [ 119.882812, 40.044438 ], [ 119.882812, 39.909736 ], [ 119.707031, 39.909736 ], [ 119.707031, 39.774769 ], [ 119.531250, 39.774769 ], [ 119.531250, 39.639538 ], [ 119.355469, 39.639538 ], [ 119.355469, 39.368279 ], [ 119.179688, 39.368279 ], [ 119.179688, 39.232253 ], [ 118.125000, 39.232253 ], [ 118.125000, 39.095963 ], [ 117.949219, 39.095963 ], [ 117.949219, 38.959409 ], [ 117.773438, 38.959409 ], [ 117.773438, 38.685510 ], [ 117.597656, 38.685510 ], [ 117.597656, 38.548165 ], [ 117.773438, 38.548165 ], [ 117.773438, 38.272689 ], [ 117.949219, 38.272689 ], [ 117.949219, 37.996163 ], [ 118.300781, 37.996163 ], [ 118.300781, 37.857507 ], [ 118.828125, 37.857507 ], [ 118.828125, 37.439974 ], [ 119.003906, 37.439974 ], [ 119.003906, 37.300275 ], [ 119.355469, 37.300275 ], [ 119.355469, 37.160317 ], [ 119.882812, 37.160317 ], [ 119.882812, 37.300275 ], [ 120.058594, 37.300275 ], [ 120.058594, 37.439974 ], [ 120.410156, 37.439974 ], [ 120.410156, 37.579413 ], [ 120.585938, 37.579413 ], [ 120.585938, 37.718590 ], [ 121.113281, 37.718590 ], [ 121.113281, 37.579413 ], [ 121.464844, 37.579413 ], [ 121.464844, 37.439974 ], [ 122.343750, 37.439974 ], [ 122.343750, 37.160317 ], [ 122.519531, 37.160317 ], [ 122.519531, 36.879621 ], [ 122.343750, 36.879621 ], [ 122.343750, 36.738884 ], [ 121.640625, 36.738884 ], [ 121.640625, 36.597889 ], [ 121.113281, 36.597889 ], [ 121.113281, 36.456636 ], [ 120.937500, 36.456636 ], [ 120.937500, 36.315125 ], [ 120.761719, 36.315125 ], [ 120.761719, 36.173357 ], [ 120.585938, 36.173357 ], [ 120.585938, 36.031332 ], [ 120.410156, 36.031332 ], [ 120.410156, 35.889050 ], [ 120.058594, 35.889050 ], [ 120.058594, 35.746512 ], [ 119.882812, 35.746512 ], [ 119.882812, 35.603719 ], [ 119.707031, 35.603719 ], [ 119.707031, 35.460670 ], [ 119.531250, 35.460670 ], [ 119.531250, 35.173808 ], [ 119.355469, 35.173808 ], [ 119.355469, 34.885931 ], [ 119.179688, 34.885931 ], [ 119.179688, 34.741612 ], [ 119.531250, 34.741612 ], [ 119.531250, 34.597042 ], [ 119.707031, 34.597042 ], [ 119.707031, 34.452218 ], [ 120.058594, 34.452218 ], [ 120.058594, 34.307144 ], [ 120.234375, 34.307144 ], [ 120.234375, 34.016242 ], [ 120.410156, 34.016242 ], [ 120.410156, 33.578015 ], [ 120.585938, 33.578015 ], [ 120.585938, 33.284620 ], [ 120.761719, 33.284620 ], [ 120.761719, 32.990236 ], [ 120.937500, 32.990236 ], [ 120.937500, 32.694866 ], [ 121.113281, 32.694866 ], [ 121.113281, 32.398516 ], [ 121.289062, 32.398516 ], [ 121.289062, 32.249974 ], [ 121.464844, 32.249974 ], [ 121.464844, 32.101190 ], [ 121.640625, 32.101190 ], [ 121.640625, 31.802893 ], [ 121.816406, 31.802893 ], [ 121.816406, 31.653381 ], [ 121.992188, 31.653381 ], [ 121.992188, 31.203405 ], [ 121.816406, 31.203405 ], [ 121.816406, 30.902225 ], [ 121.640625, 30.902225 ], [ 121.640625, 30.751278 ], [ 121.289062, 30.751278 ], [ 121.289062, 30.448674 ], [ 121.464844, 30.448674 ], [ 121.464844, 29.993002 ], [ 121.816406, 29.993002 ], [ 121.816406, 29.840644 ], [ 122.167969, 29.840644 ], [ 122.167969, 29.382175 ], [ 121.992188, 29.382175 ], [ 121.992188, 28.767659 ], [ 121.816406, 28.767659 ], [ 121.816406, 28.304381 ], [ 121.640625, 28.304381 ], [ 121.640625, 28.149503 ], [ 121.113281, 28.149503 ], [ 121.113281, 27.994401 ], [ 120.937500, 27.994401 ], [ 120.937500, 27.683528 ], [ 120.761719, 27.683528 ], [ 120.761719, 27.371767 ], [ 120.585938, 27.371767 ], [ 120.585938, 27.059126 ], [ 120.410156, 27.059126 ], [ 120.410156, 26.902477 ], [ 120.234375, 26.902477 ], [ 120.234375, 26.588527 ], [ 120.058594, 26.588527 ], [ 120.058594, 26.431228 ], [ 119.882812, 26.431228 ], [ 119.882812, 26.115986 ], [ 119.707031, 26.115986 ], [ 119.707031, 25.799891 ], [ 119.531250, 25.799891 ], [ 119.531250, 25.641526 ], [ 119.355469, 25.641526 ], [ 119.355469, 25.324167 ], [ 119.179688, 25.324167 ], [ 119.179688, 25.165173 ], [ 119.003906, 25.165173 ], [ 119.003906, 24.846565 ], [ 118.828125, 24.846565 ], [ 118.828125, 24.527135 ], [ 118.652344, 24.527135 ], [ 118.652344, 24.367114 ], [ 118.476562, 24.367114 ], [ 118.476562, 24.206890 ], [ 118.125000, 24.206890 ], [ 118.125000, 24.046464 ], [ 117.949219, 24.046464 ], [ 117.949219, 23.885838 ], [ 117.773438, 23.885838 ], [ 117.773438, 23.725012 ], [ 117.421875, 23.725012 ], [ 117.421875, 23.563987 ], [ 117.246094, 23.563987 ], [ 117.246094, 23.402765 ], [ 116.894531, 23.402765 ], [ 116.894531, 23.241346 ], [ 116.718750, 23.241346 ], [ 116.718750, 23.079732 ], [ 116.367188, 23.079732 ], [ 116.367188, 22.917923 ], [ 116.015625, 22.917923 ], [ 116.015625, 22.755921 ], [ 115.488281, 22.755921 ], [ 115.488281, 22.593726 ], [ 114.785156, 22.593726 ], [ 114.785156, 22.431340 ], [ 114.433594, 22.431340 ], [ 114.433594, 22.268764 ], [ 113.906250, 22.268764 ], [ 113.906250, 22.431340 ], [ 113.554688, 22.431340 ], [ 113.554688, 22.268764 ], [ 113.378906, 22.268764 ], [ 113.378906, 22.105999 ], [ 113.027344, 22.105999 ], [ 113.027344, 21.943046 ], [ 112.675781, 21.943046 ], [ 112.675781, 21.779905 ], [ 112.148438, 21.779905 ], [ 112.148438, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.453069 ], [ 110.742188, 21.453069 ], [ 110.742188, 21.125498 ], [ 110.566406, 21.125498 ], [ 110.566406, 20.468189 ], [ 110.390625, 20.468189 ], [ 110.390625, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.863281, 20.632784 ], [ 109.687500, 20.632784 ], [ 109.687500, 21.125498 ], [ 109.863281, 21.125498 ], [ 109.863281, 21.453069 ], [ 109.335938, 21.453069 ], [ 109.335938, 21.616579 ], [ 108.632812, 21.616579 ], [ 108.632812, 21.779905 ], [ 108.457031, 21.779905 ], [ 108.457031, 21.616579 ], [ 107.402344, 21.616579 ], [ 107.402344, 21.779905 ], [ 106.875000, 21.779905 ], [ 106.875000, 21.943046 ], [ 106.699219, 21.943046 ], [ 106.699219, 22.105999 ], [ 106.523438, 22.105999 ], [ 106.523438, 22.431340 ], [ 106.699219, 22.431340 ], [ 106.699219, 22.755921 ], [ 106.171875, 22.755921 ], [ 106.171875, 22.917923 ], [ 105.644531, 22.917923 ], [ 105.644531, 23.079732 ], [ 105.468750, 23.079732 ], [ 105.468750, 23.241346 ], [ 105.117188, 23.241346 ], [ 105.117188, 23.079732 ], [ 104.765625, 23.079732 ], [ 104.765625, 22.917923 ], [ 104.589844, 22.917923 ], [ 104.589844, 22.755921 ], [ 102.656250, 22.755921 ], [ 102.656250, 22.593726 ], [ 102.304688, 22.593726 ], [ 102.304688, 22.431340 ], [ 101.953125, 22.431340 ], [ 101.953125, 22.268764 ], [ 101.601562, 22.268764 ], [ 101.601562, 21.616579 ], [ 101.777344, 21.616579 ], [ 101.777344, 21.125498 ], [ 101.250000, 21.125498 ], [ 101.250000, 21.616579 ], [ 101.074219, 21.616579 ], [ 101.074219, 21.779905 ], [ 100.898438, 21.779905 ], [ 100.898438, 21.616579 ], [ 100.019531, 21.616579 ], [ 100.019531, 21.779905 ], [ 99.667969, 21.779905 ], [ 99.667969, 21.943046 ], [ 99.316406, 21.943046 ], [ 99.316406, 22.431340 ], [ 99.492188, 22.431340 ], [ 99.492188, 22.917923 ], [ 99.140625, 22.917923 ], [ 99.140625, 23.079732 ], [ 98.964844, 23.079732 ], [ 98.964844, 23.241346 ], [ 98.789062, 23.241346 ], [ 98.789062, 23.725012 ], [ 98.613281, 23.725012 ], [ 98.613281, 24.046464 ], [ 98.261719, 24.046464 ], [ 98.261719, 23.885838 ], [ 97.558594, 23.885838 ], [ 97.558594, 24.367114 ], [ 97.734375, 24.367114 ], [ 97.734375, 25.005973 ], [ 97.910156, 25.005973 ], [ 97.910156, 25.165173 ], [ 98.085938, 25.165173 ], [ 98.085938, 25.482951 ], [ 98.261719, 25.482951 ], [ 98.261719, 25.641526 ], [ 98.437500, 25.641526 ], [ 98.437500, 25.799891 ], [ 98.613281, 25.799891 ], [ 98.613281, 26.273714 ], [ 98.789062, 26.273714 ], [ 98.789062, 27.059126 ], [ 98.613281, 27.059126 ], [ 98.613281, 27.527758 ], [ 98.261719, 27.527758 ], [ 98.261719, 27.839076 ], [ 98.085938, 27.839076 ], [ 98.085938, 28.149503 ], [ 97.910156, 28.149503 ], [ 97.910156, 28.304381 ], [ 96.679688, 28.304381 ], [ 96.679688, 28.459033 ], [ 96.328125, 28.459033 ], [ 96.328125, 28.613459 ], [ 96.503906, 28.613459 ], [ 96.503906, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 95.800781, 29.228890 ], [ 95.800781, 29.075375 ], [ 94.921875, 29.075375 ], [ 94.921875, 29.228890 ], [ 94.570312, 29.228890 ], [ 94.570312, 29.075375 ], [ 94.218750, 29.075375 ], [ 94.218750, 28.921631 ], [ 93.867188, 28.921631 ], [ 93.867188, 28.767659 ], [ 93.515625, 28.767659 ], [ 93.515625, 28.613459 ], [ 93.339844, 28.613459 ], [ 93.339844, 28.459033 ], [ 93.164062, 28.459033 ], [ 93.164062, 28.304381 ], [ 92.988281, 28.304381 ], [ 92.988281, 28.149503 ], [ 92.812500, 28.149503 ], [ 92.812500, 27.994401 ], [ 92.636719, 27.994401 ], [ 92.636719, 27.839076 ], [ 91.406250, 27.839076 ], [ 91.406250, 27.994401 ], [ 90.351562, 27.994401 ], [ 90.351562, 28.149503 ], [ 89.648438, 28.149503 ], [ 89.648438, 27.994401 ], [ 89.472656, 27.994401 ], [ 89.472656, 27.839076 ], [ 89.296875, 27.839076 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 41.640078 ], [ 126.738281, 41.640078 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 128.144531, 41.640078 ] ] ], [ [ [ 121.464844, 39.095963 ], [ 121.464844, 38.959409 ], [ 121.289062, 38.959409 ], [ 121.289062, 39.095963 ], [ 121.464844, 39.095963 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.742188, 20.138470 ], [ 110.742188, 19.973349 ], [ 110.917969, 19.973349 ], [ 110.917969, 19.642588 ], [ 110.742188, 19.642588 ], [ 110.742188, 19.311143 ], [ 110.566406, 19.311143 ], [ 110.566406, 19.145168 ], [ 110.390625, 19.145168 ], [ 110.390625, 18.812718 ], [ 110.214844, 18.812718 ], [ 110.214844, 18.646245 ], [ 109.863281, 18.646245 ], [ 109.863281, 18.479609 ], [ 109.511719, 18.479609 ], [ 109.511719, 18.312811 ], [ 108.984375, 18.312811 ], [ 108.984375, 18.479609 ], [ 108.632812, 18.479609 ], [ 108.632812, 18.979026 ], [ 108.457031, 18.979026 ], [ 108.457031, 19.476950 ], [ 108.632812, 19.476950 ], [ 108.632812, 19.642588 ], [ 108.808594, 19.642588 ], [ 108.808594, 19.808054 ], [ 108.984375, 19.808054 ], [ 108.984375, 19.973349 ], [ 109.687500, 19.973349 ], [ 109.687500, 20.138470 ], [ 110.742188, 20.138470 ] ] ], [ [ [ 126.562500, 41.640078 ], [ 126.562500, 41.508577 ], [ 126.386719, 41.508577 ], [ 126.386719, 41.376809 ], [ 126.210938, 41.376809 ], [ 126.210938, 41.112469 ], [ 126.035156, 41.112469 ], [ 126.035156, 40.979898 ], [ 125.683594, 40.979898 ], [ 125.683594, 40.847060 ], [ 125.507812, 40.847060 ], [ 125.507812, 40.713956 ], [ 125.156250, 40.713956 ], [ 125.156250, 40.580585 ], [ 124.980469, 40.580585 ], [ 124.980469, 40.446947 ], [ 124.804688, 40.446947 ], [ 124.804688, 40.313043 ], [ 124.453125, 40.313043 ], [ 124.453125, 40.178873 ], [ 124.277344, 40.178873 ], [ 124.277344, 40.044438 ], [ 123.925781, 40.044438 ], [ 123.925781, 39.909736 ], [ 123.574219, 39.909736 ], [ 123.574219, 39.774769 ], [ 123.046875, 39.774769 ], [ 123.046875, 39.639538 ], [ 122.695312, 39.639538 ], [ 122.695312, 39.504041 ], [ 122.519531, 39.504041 ], [ 122.519531, 39.368279 ], [ 122.167969, 39.368279 ], [ 122.167969, 39.232253 ], [ 121.816406, 39.232253 ], [ 121.816406, 39.095963 ], [ 121.289062, 39.095963 ], [ 121.289062, 39.232253 ], [ 121.464844, 39.232253 ], [ 121.464844, 39.504041 ], [ 121.289062, 39.504041 ], [ 121.289062, 39.774769 ], [ 121.464844, 39.774769 ], [ 121.464844, 39.909736 ], [ 121.640625, 39.909736 ], [ 121.640625, 40.044438 ], [ 121.816406, 40.044438 ], [ 121.816406, 40.178873 ], [ 121.992188, 40.178873 ], [ 121.992188, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.640625, 40.847060 ], [ 121.640625, 40.979898 ], [ 121.464844, 40.979898 ], [ 121.464844, 40.847060 ], [ 121.113281, 40.847060 ], [ 121.113281, 40.713956 ], [ 120.761719, 40.713956 ], [ 120.761719, 40.580585 ], [ 120.585938, 40.580585 ], [ 120.585938, 40.446947 ], [ 120.410156, 40.446947 ], [ 120.410156, 40.313043 ], [ 120.058594, 40.313043 ], [ 120.058594, 40.178873 ], [ 119.882812, 40.178873 ], [ 119.882812, 40.044438 ], [ 119.707031, 40.044438 ], [ 119.707031, 39.909736 ], [ 119.531250, 39.909736 ], [ 119.531250, 39.774769 ], [ 119.355469, 39.774769 ], [ 119.355469, 39.639538 ], [ 119.179688, 39.639538 ], [ 119.179688, 39.368279 ], [ 118.652344, 39.368279 ], [ 118.652344, 39.232253 ], [ 117.949219, 39.232253 ], [ 117.949219, 39.095963 ], [ 117.773438, 39.095963 ], [ 117.773438, 38.959409 ], [ 117.597656, 38.959409 ], [ 117.597656, 38.822591 ], [ 117.421875, 38.822591 ], [ 117.421875, 38.685510 ], [ 117.597656, 38.685510 ], [ 117.597656, 38.410558 ], [ 117.773438, 38.410558 ], [ 117.773438, 38.134557 ], [ 118.300781, 38.134557 ], [ 118.300781, 37.996163 ], [ 118.828125, 37.996163 ], [ 118.828125, 37.439974 ], [ 119.003906, 37.439974 ], [ 119.003906, 37.300275 ], [ 119.355469, 37.300275 ], [ 119.355469, 37.160317 ], [ 119.707031, 37.160317 ], [ 119.707031, 37.300275 ], [ 119.882812, 37.300275 ], [ 119.882812, 37.439974 ], [ 120.058594, 37.439974 ], [ 120.058594, 37.579413 ], [ 120.410156, 37.579413 ], [ 120.410156, 37.718590 ], [ 120.585938, 37.718590 ], [ 120.585938, 37.857507 ], [ 121.113281, 37.857507 ], [ 121.113281, 37.718590 ], [ 121.464844, 37.718590 ], [ 121.464844, 37.579413 ], [ 122.343750, 37.579413 ], [ 122.343750, 37.300275 ], [ 122.519531, 37.300275 ], [ 122.519531, 37.020098 ], [ 122.167969, 37.020098 ], [ 122.167969, 36.879621 ], [ 121.464844, 36.879621 ], [ 121.464844, 36.738884 ], [ 120.937500, 36.738884 ], [ 120.937500, 36.597889 ], [ 120.761719, 36.597889 ], [ 120.761719, 36.315125 ], [ 120.585938, 36.315125 ], [ 120.585938, 36.031332 ], [ 120.234375, 36.031332 ], [ 120.234375, 35.889050 ], [ 119.882812, 35.889050 ], [ 119.882812, 35.746512 ], [ 119.531250, 35.746512 ], [ 119.531250, 35.603719 ], [ 119.355469, 35.603719 ], [ 119.355469, 35.317366 ], [ 119.179688, 35.317366 ], [ 119.179688, 35.029996 ], [ 119.003906, 35.029996 ], [ 119.003906, 34.885931 ], [ 119.355469, 34.885931 ], [ 119.355469, 34.741612 ], [ 119.531250, 34.741612 ], [ 119.531250, 34.597042 ], [ 119.882812, 34.597042 ], [ 119.882812, 34.452218 ], [ 120.058594, 34.452218 ], [ 120.058594, 34.161818 ], [ 120.234375, 34.161818 ], [ 120.234375, 33.870416 ], [ 120.410156, 33.870416 ], [ 120.410156, 33.578015 ], [ 120.585938, 33.578015 ], [ 120.585938, 33.284620 ], [ 120.761719, 33.284620 ], [ 120.761719, 32.990236 ], [ 120.937500, 32.990236 ], [ 120.937500, 32.694866 ], [ 121.113281, 32.694866 ], [ 121.113281, 32.398516 ], [ 121.289062, 32.398516 ], [ 121.289062, 32.249974 ], [ 121.464844, 32.249974 ], [ 121.464844, 31.952162 ], [ 121.640625, 31.952162 ], [ 121.640625, 31.802893 ], [ 121.816406, 31.802893 ], [ 121.816406, 30.902225 ], [ 121.464844, 30.902225 ], [ 121.464844, 30.751278 ], [ 121.113281, 30.751278 ], [ 121.113281, 30.600094 ], [ 121.289062, 30.600094 ], [ 121.289062, 30.297018 ], [ 121.464844, 30.297018 ], [ 121.464844, 29.993002 ], [ 121.816406, 29.993002 ], [ 121.816406, 29.840644 ], [ 121.992188, 29.840644 ], [ 121.992188, 29.382175 ], [ 121.816406, 29.382175 ], [ 121.816406, 28.613459 ], [ 121.640625, 28.613459 ], [ 121.640625, 28.304381 ], [ 121.464844, 28.304381 ], [ 121.464844, 28.149503 ], [ 121.113281, 28.149503 ], [ 121.113281, 27.994401 ], [ 120.937500, 27.994401 ], [ 120.937500, 27.683528 ], [ 120.761719, 27.683528 ], [ 120.761719, 27.527758 ], [ 120.585938, 27.527758 ], [ 120.585938, 27.371767 ], [ 120.410156, 27.371767 ], [ 120.410156, 27.059126 ], [ 120.234375, 27.059126 ], [ 120.234375, 26.902477 ], [ 120.058594, 26.902477 ], [ 120.058594, 26.588527 ], [ 119.882812, 26.588527 ], [ 119.882812, 26.273714 ], [ 119.707031, 26.273714 ], [ 119.707031, 25.958045 ], [ 119.531250, 25.958045 ], [ 119.531250, 25.641526 ], [ 119.355469, 25.641526 ], [ 119.355469, 25.324167 ], [ 119.179688, 25.324167 ], [ 119.179688, 25.165173 ], [ 119.003906, 25.165173 ], [ 119.003906, 25.005973 ], [ 118.828125, 25.005973 ], [ 118.828125, 24.686952 ], [ 118.652344, 24.686952 ], [ 118.652344, 24.527135 ], [ 118.476562, 24.527135 ], [ 118.476562, 24.367114 ], [ 118.125000, 24.367114 ], [ 118.125000, 24.206890 ], [ 117.949219, 24.206890 ], [ 117.949219, 24.046464 ], [ 117.773438, 24.046464 ], [ 117.773438, 23.885838 ], [ 117.421875, 23.885838 ], [ 117.421875, 23.725012 ], [ 117.246094, 23.725012 ], [ 117.246094, 23.563987 ], [ 116.894531, 23.563987 ], [ 116.894531, 23.402765 ], [ 116.718750, 23.402765 ], [ 116.718750, 23.241346 ], [ 116.367188, 23.241346 ], [ 116.367188, 23.079732 ], [ 116.015625, 23.079732 ], [ 116.015625, 22.917923 ], [ 115.312500, 22.917923 ], [ 115.312500, 22.755921 ], [ 114.609375, 22.755921 ], [ 114.609375, 22.593726 ], [ 114.433594, 22.593726 ], [ 114.433594, 22.431340 ], [ 114.257812, 22.431340 ], [ 114.257812, 22.268764 ], [ 113.906250, 22.268764 ], [ 113.906250, 22.431340 ], [ 113.554688, 22.431340 ], [ 113.554688, 22.268764 ], [ 113.378906, 22.268764 ], [ 113.378906, 22.105999 ], [ 113.027344, 22.105999 ], [ 113.027344, 21.943046 ], [ 112.675781, 21.943046 ], [ 112.675781, 21.779905 ], [ 112.148438, 21.779905 ], [ 112.148438, 21.616579 ], [ 111.445312, 21.616579 ], [ 111.445312, 21.453069 ], [ 110.742188, 21.453069 ], [ 110.742188, 21.125498 ], [ 110.566406, 21.125498 ], [ 110.566406, 20.632784 ], [ 110.390625, 20.632784 ], [ 110.390625, 20.468189 ], [ 110.214844, 20.468189 ], [ 110.214844, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.863281, 20.468189 ], [ 109.687500, 20.468189 ], [ 109.687500, 20.797201 ], [ 109.511719, 20.797201 ], [ 109.511719, 21.125498 ], [ 109.687500, 21.125498 ], [ 109.687500, 21.289374 ], [ 109.863281, 21.289374 ], [ 109.863281, 21.453069 ], [ 109.335938, 21.453069 ], [ 109.335938, 21.616579 ], [ 108.632812, 21.616579 ], [ 108.632812, 21.779905 ], [ 108.281250, 21.779905 ], [ 108.281250, 21.616579 ], [ 107.578125, 21.616579 ], [ 107.578125, 21.779905 ], [ 107.050781, 21.779905 ], [ 107.050781, 21.943046 ], [ 106.699219, 21.943046 ], [ 106.699219, 22.105999 ], [ 106.523438, 22.105999 ], [ 106.523438, 22.593726 ], [ 106.699219, 22.593726 ], [ 106.699219, 22.917923 ], [ 105.996094, 22.917923 ], [ 105.996094, 23.079732 ], [ 105.468750, 23.079732 ], [ 105.468750, 23.241346 ], [ 104.941406, 23.241346 ], [ 104.941406, 23.079732 ], [ 104.589844, 23.079732 ], [ 104.589844, 22.917923 ], [ 104.062500, 22.917923 ], [ 104.062500, 22.755921 ], [ 102.480469, 22.755921 ], [ 102.480469, 22.593726 ], [ 101.953125, 22.593726 ], [ 101.953125, 22.431340 ], [ 101.601562, 22.431340 ], [ 101.601562, 21.779905 ], [ 101.777344, 21.779905 ], [ 101.777344, 21.289374 ], [ 101.074219, 21.289374 ], [ 101.074219, 21.779905 ], [ 100.722656, 21.779905 ], [ 100.722656, 21.616579 ], [ 100.019531, 21.616579 ], [ 100.019531, 21.779905 ], [ 99.667969, 21.779905 ], [ 99.667969, 21.943046 ], [ 99.316406, 21.943046 ], [ 99.316406, 22.105999 ], [ 99.140625, 22.105999 ], [ 99.140625, 22.431340 ], [ 99.316406, 22.431340 ], [ 99.316406, 22.755921 ], [ 99.492188, 22.755921 ], [ 99.492188, 23.079732 ], [ 98.964844, 23.079732 ], [ 98.964844, 23.241346 ], [ 98.789062, 23.241346 ], [ 98.789062, 23.725012 ], [ 98.613281, 23.725012 ], [ 98.613281, 24.206890 ], [ 98.261719, 24.206890 ], [ 98.261719, 24.046464 ], [ 97.558594, 24.046464 ], [ 97.558594, 25.165173 ], [ 97.734375, 25.165173 ], [ 97.734375, 25.324167 ], [ 97.910156, 25.324167 ], [ 97.910156, 25.482951 ], [ 98.261719, 25.482951 ], [ 98.261719, 25.641526 ], [ 98.437500, 25.641526 ], [ 98.437500, 25.799891 ], [ 98.613281, 25.799891 ], [ 98.613281, 27.527758 ], [ 98.437500, 27.527758 ], [ 98.437500, 27.683528 ], [ 98.085938, 27.683528 ], [ 98.085938, 28.149503 ], [ 97.910156, 28.149503 ], [ 97.910156, 28.459033 ], [ 97.734375, 28.459033 ], [ 97.734375, 28.304381 ], [ 96.503906, 28.304381 ], [ 96.503906, 28.459033 ], [ 96.328125, 28.459033 ], [ 96.328125, 28.767659 ], [ 96.503906, 28.767659 ], [ 96.503906, 28.921631 ], [ 96.328125, 28.921631 ], [ 96.328125, 29.228890 ], [ 96.152344, 29.228890 ], [ 96.152344, 29.382175 ], [ 95.800781, 29.382175 ], [ 95.800781, 29.228890 ], [ 95.449219, 29.228890 ], [ 95.449219, 29.075375 ], [ 94.921875, 29.075375 ], [ 94.921875, 29.228890 ], [ 94.570312, 29.228890 ], [ 94.570312, 29.382175 ], [ 94.394531, 29.382175 ], [ 94.394531, 29.228890 ], [ 94.042969, 29.228890 ], [ 94.042969, 29.075375 ], [ 93.867188, 29.075375 ], [ 93.867188, 28.921631 ], [ 93.515625, 28.921631 ], [ 93.515625, 28.767659 ], [ 93.339844, 28.767659 ], [ 93.339844, 28.613459 ], [ 93.164062, 28.613459 ], [ 93.164062, 28.459033 ], [ 92.988281, 28.459033 ], [ 92.988281, 28.304381 ], [ 92.812500, 28.304381 ], [ 92.812500, 28.149503 ], [ 92.636719, 28.149503 ], [ 92.636719, 27.994401 ], [ 92.109375, 27.994401 ], [ 92.109375, 27.839076 ], [ 91.406250, 27.839076 ], [ 91.406250, 27.994401 ], [ 91.230469, 27.994401 ], [ 91.230469, 28.149503 ], [ 90.175781, 28.149503 ], [ 90.175781, 28.304381 ], [ 89.824219, 28.304381 ], [ 89.824219, 28.149503 ], [ 89.472656, 28.149503 ], [ 89.472656, 27.994401 ], [ 89.296875, 27.994401 ], [ 89.296875, 27.683528 ], [ 89.121094, 27.683528 ], [ 89.121094, 41.640078 ], [ 126.562500, 41.640078 ] ] ], [ [ [ 128.144531, 41.640078 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 128.144531, 41.640078 ] ] ], [ [ [ 121.289062, 39.095963 ], [ 121.289062, 38.959409 ], [ 121.113281, 38.959409 ], [ 121.113281, 39.095963 ], [ 121.289062, 39.095963 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.304381 ], [ 97.910156, 28.149503 ], [ 98.085938, 28.149503 ], [ 98.085938, 27.839076 ], [ 98.261719, 27.839076 ], [ 98.261719, 27.527758 ], [ 98.613281, 27.527758 ], [ 98.613281, 27.059126 ], [ 98.789062, 27.059126 ], [ 98.789062, 26.273714 ], [ 98.613281, 26.273714 ], [ 98.613281, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 25.641526 ], [ 98.261719, 25.641526 ], [ 98.261719, 25.482951 ], [ 98.085938, 25.482951 ], [ 98.085938, 25.165173 ], [ 97.910156, 25.165173 ], [ 97.910156, 25.005973 ], [ 97.734375, 25.005973 ], [ 97.734375, 24.367114 ], [ 97.558594, 24.367114 ], [ 97.558594, 23.885838 ], [ 98.261719, 23.885838 ], [ 98.261719, 24.046464 ], [ 98.613281, 24.046464 ], [ 98.613281, 23.725012 ], [ 98.789062, 23.725012 ], [ 98.789062, 23.241346 ], [ 98.964844, 23.241346 ], [ 98.964844, 23.079732 ], [ 99.140625, 23.079732 ], [ 99.140625, 22.917923 ], [ 99.492188, 22.917923 ], [ 99.492188, 22.431340 ], [ 99.316406, 22.431340 ], [ 99.316406, 21.943046 ], [ 99.667969, 21.943046 ], [ 99.667969, 21.779905 ], [ 100.019531, 21.779905 ], [ 100.019531, 21.616579 ], [ 100.898438, 21.616579 ], [ 100.898438, 21.779905 ], [ 101.074219, 21.779905 ], [ 101.074219, 21.616579 ], [ 101.250000, 21.616579 ], [ 101.250000, 21.289374 ], [ 101.074219, 21.289374 ], [ 101.074219, 21.125498 ], [ 100.722656, 21.125498 ], [ 100.722656, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 20.797201 ], [ 100.371094, 20.797201 ], [ 100.371094, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.303418 ], [ 99.843750, 20.303418 ], [ 99.843750, 20.138470 ], [ 99.492188, 20.138470 ], [ 99.492188, 19.973349 ], [ 99.140625, 19.973349 ], [ 99.140625, 19.808054 ], [ 98.789062, 19.808054 ], [ 98.789062, 19.642588 ], [ 98.261719, 19.642588 ], [ 98.261719, 19.476950 ], [ 98.085938, 19.476950 ], [ 98.085938, 19.145168 ], [ 97.910156, 19.145168 ], [ 97.910156, 18.812718 ], [ 97.734375, 18.812718 ], [ 97.734375, 18.479609 ], [ 97.382812, 18.479609 ], [ 97.382812, 18.312811 ], [ 97.558594, 18.312811 ], [ 97.558594, 17.978733 ], [ 97.734375, 17.978733 ], [ 97.734375, 17.644022 ], [ 97.910156, 17.644022 ], [ 97.910156, 17.476432 ], [ 98.085938, 17.476432 ], [ 98.085938, 17.140790 ], [ 98.261719, 17.140790 ], [ 98.261719, 16.804541 ], [ 98.437500, 16.804541 ], [ 98.437500, 16.636192 ], [ 98.613281, 16.636192 ], [ 98.613281, 16.467695 ], [ 98.789062, 16.467695 ], [ 98.789062, 16.130262 ], [ 98.964844, 16.130262 ], [ 98.964844, 15.792254 ], [ 98.789062, 15.792254 ], [ 98.789062, 15.453680 ], [ 98.613281, 15.453680 ], [ 98.613281, 15.114553 ], [ 98.261719, 15.114553 ], [ 98.261719, 14.774883 ], [ 98.437500, 14.774883 ], [ 98.437500, 14.434680 ], [ 98.613281, 14.434680 ], [ 98.613281, 14.264383 ], [ 98.789062, 14.264383 ], [ 98.789062, 13.923404 ], [ 98.964844, 13.923404 ], [ 98.964844, 13.752725 ], [ 99.140625, 13.752725 ], [ 99.140625, 12.554564 ], [ 99.316406, 12.554564 ], [ 99.316406, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.867351 ], [ 99.667969, 11.867351 ], [ 99.667969, 11.695273 ], [ 99.492188, 11.695273 ], [ 99.492188, 11.523088 ], [ 99.316406, 11.523088 ], [ 99.316406, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 11.005904 ], [ 98.964844, 11.005904 ], [ 98.964844, 10.660608 ], [ 98.789062, 10.660608 ], [ 98.789062, 10.141932 ], [ 98.613281, 10.141932 ], [ 98.613281, 10.314919 ], [ 98.437500, 10.314919 ], [ 98.437500, 10.833306 ], [ 98.613281, 10.833306 ], [ 98.613281, 11.178402 ], [ 98.789062, 11.178402 ], [ 98.789062, 11.523088 ], [ 98.613281, 11.523088 ], [ 98.613281, 11.867351 ], [ 98.437500, 11.867351 ], [ 98.437500, 13.068777 ], [ 98.261719, 13.068777 ], [ 98.261719, 13.410994 ], [ 98.085938, 13.410994 ], [ 98.085938, 13.752725 ], [ 97.910156, 13.752725 ], [ 97.910156, 14.434680 ], [ 97.734375, 14.434680 ], [ 97.734375, 15.453680 ], [ 97.558594, 15.453680 ], [ 97.558594, 16.299051 ], [ 97.382812, 16.299051 ], [ 97.382812, 16.636192 ], [ 97.207031, 16.636192 ], [ 97.207031, 16.804541 ], [ 97.031250, 16.804541 ], [ 97.031250, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 16.467695 ], [ 96.503906, 16.467695 ], [ 96.503906, 16.299051 ], [ 96.152344, 16.299051 ], [ 96.152344, 16.130262 ], [ 95.976562, 16.130262 ], [ 95.976562, 15.961329 ], [ 95.625000, 15.961329 ], [ 95.625000, 15.792254 ], [ 94.394531, 15.792254 ], [ 94.394531, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.299051 ], [ 94.394531, 16.299051 ], [ 94.394531, 16.972741 ], [ 94.570312, 16.972741 ], [ 94.570312, 17.644022 ], [ 94.394531, 17.644022 ], [ 94.394531, 18.145852 ], [ 94.218750, 18.145852 ], [ 94.218750, 18.479609 ], [ 94.042969, 18.479609 ], [ 94.042969, 18.646245 ], [ 93.867188, 18.646245 ], [ 93.867188, 18.812718 ], [ 93.691406, 18.812718 ], [ 93.691406, 19.145168 ], [ 93.515625, 19.145168 ], [ 93.515625, 19.476950 ], [ 93.691406, 19.476950 ], [ 93.691406, 19.808054 ], [ 92.988281, 19.808054 ], [ 92.988281, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.138470 ], [ 92.636719, 20.138470 ], [ 92.636719, 20.303418 ], [ 92.460938, 20.303418 ], [ 92.460938, 20.468189 ], [ 92.285156, 20.468189 ], [ 92.285156, 21.289374 ], [ 92.636719, 21.289374 ], [ 92.636719, 22.105999 ], [ 92.988281, 22.105999 ], [ 92.988281, 22.268764 ], [ 93.164062, 22.268764 ], [ 93.164062, 22.431340 ], [ 92.988281, 22.431340 ], [ 92.988281, 22.755921 ], [ 93.164062, 22.755921 ], [ 93.164062, 22.917923 ], [ 93.339844, 22.917923 ], [ 93.339844, 24.046464 ], [ 93.515625, 24.046464 ], [ 93.515625, 23.885838 ], [ 94.218750, 23.885838 ], [ 94.218750, 24.206890 ], [ 94.394531, 24.206890 ], [ 94.394531, 24.527135 ], [ 94.570312, 24.527135 ], [ 94.570312, 25.165173 ], [ 94.746094, 25.165173 ], [ 94.746094, 25.482951 ], [ 94.921875, 25.482951 ], [ 94.921875, 25.799891 ], [ 95.097656, 25.799891 ], [ 95.097656, 26.588527 ], [ 95.449219, 26.588527 ], [ 95.449219, 26.745610 ], [ 95.800781, 26.745610 ], [ 95.800781, 26.902477 ], [ 96.152344, 26.902477 ], [ 96.152344, 27.059126 ], [ 96.503906, 27.059126 ], [ 96.503906, 27.215556 ], [ 96.679688, 27.215556 ], [ 96.679688, 27.059126 ], [ 97.207031, 27.059126 ], [ 97.207031, 27.371767 ], [ 97.031250, 27.371767 ], [ 97.031250, 27.683528 ], [ 97.382812, 27.683528 ], [ 97.382812, 28.304381 ], [ 97.910156, 28.304381 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.459033 ], [ 97.910156, 28.149503 ], [ 98.085938, 28.149503 ], [ 98.085938, 27.683528 ], [ 98.437500, 27.683528 ], [ 98.437500, 27.527758 ], [ 98.613281, 27.527758 ], [ 98.613281, 25.799891 ], [ 98.437500, 25.799891 ], [ 98.437500, 25.641526 ], [ 98.261719, 25.641526 ], [ 98.261719, 25.482951 ], [ 97.910156, 25.482951 ], [ 97.910156, 25.324167 ], [ 97.734375, 25.324167 ], [ 97.734375, 25.165173 ], [ 97.558594, 25.165173 ], [ 97.558594, 24.046464 ], [ 98.261719, 24.046464 ], [ 98.261719, 24.206890 ], [ 98.613281, 24.206890 ], [ 98.613281, 23.725012 ], [ 98.789062, 23.725012 ], [ 98.789062, 23.241346 ], [ 98.964844, 23.241346 ], [ 98.964844, 23.079732 ], [ 99.492188, 23.079732 ], [ 99.492188, 22.755921 ], [ 99.316406, 22.755921 ], [ 99.316406, 22.431340 ], [ 99.140625, 22.431340 ], [ 99.140625, 22.105999 ], [ 99.316406, 22.105999 ], [ 99.316406, 21.943046 ], [ 99.667969, 21.943046 ], [ 99.667969, 21.779905 ], [ 100.019531, 21.779905 ], [ 100.019531, 21.616579 ], [ 100.722656, 21.616579 ], [ 100.722656, 21.779905 ], [ 101.074219, 21.779905 ], [ 101.074219, 21.289374 ], [ 100.898438, 21.289374 ], [ 100.898438, 21.125498 ], [ 100.546875, 21.125498 ], [ 100.546875, 20.961440 ], [ 100.371094, 20.961440 ], [ 100.371094, 20.797201 ], [ 100.195312, 20.797201 ], [ 100.195312, 20.632784 ], [ 100.019531, 20.632784 ], [ 100.019531, 20.468189 ], [ 99.843750, 20.468189 ], [ 99.843750, 20.303418 ], [ 99.492188, 20.303418 ], [ 99.492188, 20.138470 ], [ 99.316406, 20.138470 ], [ 99.316406, 19.973349 ], [ 98.964844, 19.973349 ], [ 98.964844, 19.808054 ], [ 98.085938, 19.808054 ], [ 98.085938, 19.476950 ], [ 97.910156, 19.476950 ], [ 97.910156, 18.812718 ], [ 97.734375, 18.812718 ], [ 97.734375, 18.646245 ], [ 97.558594, 18.646245 ], [ 97.558594, 18.479609 ], [ 97.207031, 18.479609 ], [ 97.207031, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 17.978733 ], [ 97.558594, 17.978733 ], [ 97.558594, 17.644022 ], [ 97.734375, 17.644022 ], [ 97.734375, 17.476432 ], [ 97.910156, 17.476432 ], [ 97.910156, 17.308688 ], [ 98.085938, 17.308688 ], [ 98.085938, 17.140790 ], [ 98.261719, 17.140790 ], [ 98.261719, 16.972741 ], [ 98.437500, 16.972741 ], [ 98.437500, 16.804541 ], [ 98.613281, 16.804541 ], [ 98.613281, 16.467695 ], [ 98.789062, 16.467695 ], [ 98.789062, 15.961329 ], [ 98.613281, 15.961329 ], [ 98.613281, 15.623037 ], [ 98.437500, 15.623037 ], [ 98.437500, 15.284185 ], [ 98.085938, 15.284185 ], [ 98.085938, 14.944785 ], [ 98.261719, 14.944785 ], [ 98.261719, 14.604847 ], [ 98.437500, 14.604847 ], [ 98.437500, 14.434680 ], [ 98.613281, 14.434680 ], [ 98.613281, 14.093957 ], [ 98.789062, 14.093957 ], [ 98.789062, 13.923404 ], [ 98.964844, 13.923404 ], [ 98.964844, 13.581921 ], [ 99.140625, 13.581921 ], [ 99.140625, 12.554564 ], [ 99.316406, 12.554564 ], [ 99.316406, 12.211180 ], [ 99.492188, 12.211180 ], [ 99.492188, 11.867351 ], [ 99.316406, 11.867351 ], [ 99.316406, 11.523088 ], [ 99.140625, 11.523088 ], [ 99.140625, 11.178402 ], [ 98.964844, 11.178402 ], [ 98.964844, 10.833306 ], [ 98.789062, 10.833306 ], [ 98.789062, 10.487812 ], [ 98.613281, 10.487812 ], [ 98.613281, 10.141932 ], [ 98.437500, 10.141932 ], [ 98.437500, 11.178402 ], [ 98.613281, 11.178402 ], [ 98.613281, 11.523088 ], [ 98.437500, 11.523088 ], [ 98.437500, 11.867351 ], [ 98.261719, 11.867351 ], [ 98.261719, 12.554564 ], [ 98.437500, 12.554564 ], [ 98.437500, 13.239945 ], [ 98.261719, 13.239945 ], [ 98.261719, 13.581921 ], [ 98.085938, 13.581921 ], [ 98.085938, 13.923404 ], [ 97.910156, 13.923404 ], [ 97.910156, 14.604847 ], [ 97.734375, 14.604847 ], [ 97.734375, 15.453680 ], [ 97.558594, 15.453680 ], [ 97.558594, 16.130262 ], [ 97.382812, 16.130262 ], [ 97.382812, 16.467695 ], [ 97.207031, 16.467695 ], [ 97.207031, 16.804541 ], [ 96.855469, 16.804541 ], [ 96.855469, 16.636192 ], [ 96.679688, 16.636192 ], [ 96.679688, 16.467695 ], [ 96.503906, 16.467695 ], [ 96.503906, 16.299051 ], [ 96.152344, 16.299051 ], [ 96.152344, 16.130262 ], [ 95.800781, 16.130262 ], [ 95.800781, 15.961329 ], [ 95.449219, 15.961329 ], [ 95.449219, 15.792254 ], [ 94.921875, 15.792254 ], [ 94.921875, 15.961329 ], [ 94.218750, 15.961329 ], [ 94.218750, 16.130262 ], [ 94.042969, 16.130262 ], [ 94.042969, 16.299051 ], [ 94.218750, 16.299051 ], [ 94.218750, 16.972741 ], [ 94.394531, 16.972741 ], [ 94.394531, 17.811456 ], [ 94.218750, 17.811456 ], [ 94.218750, 18.312811 ], [ 94.042969, 18.312811 ], [ 94.042969, 18.646245 ], [ 93.867188, 18.646245 ], [ 93.867188, 18.979026 ], [ 93.691406, 18.979026 ], [ 93.691406, 19.311143 ], [ 93.515625, 19.311143 ], [ 93.515625, 19.808054 ], [ 93.164062, 19.808054 ], [ 93.164062, 19.973349 ], [ 92.812500, 19.973349 ], [ 92.812500, 20.138470 ], [ 92.636719, 20.138470 ], [ 92.636719, 20.468189 ], [ 92.460938, 20.468189 ], [ 92.460938, 20.632784 ], [ 92.285156, 20.632784 ], [ 92.285156, 21.453069 ], [ 92.636719, 21.453069 ], [ 92.636719, 22.105999 ], [ 92.812500, 22.105999 ], [ 92.812500, 22.268764 ], [ 93.164062, 22.268764 ], [ 93.164062, 22.593726 ], [ 92.988281, 22.593726 ], [ 92.988281, 22.917923 ], [ 93.164062, 22.917923 ], [ 93.164062, 24.206890 ], [ 93.339844, 24.206890 ], [ 93.339844, 24.046464 ], [ 93.691406, 24.046464 ], [ 93.691406, 23.885838 ], [ 94.042969, 23.885838 ], [ 94.042969, 24.046464 ], [ 94.218750, 24.046464 ], [ 94.218750, 24.367114 ], [ 94.394531, 24.367114 ], [ 94.394531, 24.846565 ], [ 94.570312, 24.846565 ], [ 94.570312, 25.324167 ], [ 94.746094, 25.324167 ], [ 94.746094, 25.641526 ], [ 94.921875, 25.641526 ], [ 94.921875, 25.958045 ], [ 95.097656, 25.958045 ], [ 95.097656, 26.588527 ], [ 95.273438, 26.588527 ], [ 95.273438, 26.745610 ], [ 95.625000, 26.745610 ], [ 95.625000, 26.902477 ], [ 95.800781, 26.902477 ], [ 95.800781, 27.059126 ], [ 95.976562, 27.059126 ], [ 95.976562, 27.215556 ], [ 96.328125, 27.215556 ], [ 96.328125, 27.371767 ], [ 96.503906, 27.371767 ], [ 96.503906, 27.215556 ], [ 97.031250, 27.215556 ], [ 97.031250, 27.839076 ], [ 97.382812, 27.839076 ], [ 97.382812, 28.149503 ], [ 97.207031, 28.149503 ], [ 97.207031, 28.304381 ], [ 97.734375, 28.304381 ], [ 97.734375, 28.459033 ], [ 97.910156, 28.459033 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.431340 ], [ 102.128906, 22.268764 ], [ 102.304688, 22.268764 ], [ 102.304688, 22.105999 ], [ 102.480469, 22.105999 ], [ 102.480469, 21.779905 ], [ 102.656250, 21.779905 ], [ 102.656250, 21.616579 ], [ 102.832031, 21.616579 ], [ 102.832031, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.961440 ], [ 103.183594, 20.961440 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.414062, 20.468189 ], [ 104.589844, 20.468189 ], [ 104.589844, 19.973349 ], [ 104.765625, 19.973349 ], [ 104.765625, 19.808054 ], [ 104.589844, 19.808054 ], [ 104.589844, 19.642588 ], [ 104.238281, 19.642588 ], [ 104.238281, 19.476950 ], [ 104.062500, 19.476950 ], [ 104.062500, 19.311143 ], [ 103.886719, 19.311143 ], [ 103.886719, 19.145168 ], [ 104.238281, 19.145168 ], [ 104.238281, 18.979026 ], [ 104.589844, 18.979026 ], [ 104.589844, 18.812718 ], [ 104.941406, 18.812718 ], [ 104.941406, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.479609 ], [ 105.292969, 18.479609 ], [ 105.292969, 18.145852 ], [ 105.468750, 18.145852 ], [ 105.468750, 17.978733 ], [ 105.644531, 17.978733 ], [ 105.644531, 17.811456 ], [ 105.820312, 17.811456 ], [ 105.820312, 17.476432 ], [ 105.996094, 17.476432 ], [ 105.996094, 17.308688 ], [ 106.171875, 17.308688 ], [ 106.171875, 16.972741 ], [ 106.347656, 16.972741 ], [ 106.347656, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.467695 ], [ 106.699219, 16.467695 ], [ 106.699219, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 16.130262 ], [ 107.050781, 16.130262 ], [ 107.050781, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.792254 ], [ 107.402344, 15.792254 ], [ 107.402344, 15.453680 ], [ 107.578125, 15.453680 ], [ 107.578125, 14.774883 ], [ 107.402344, 14.774883 ], [ 107.402344, 14.264383 ], [ 107.050781, 14.264383 ], [ 107.050781, 14.434680 ], [ 106.699219, 14.434680 ], [ 106.699219, 14.604847 ], [ 106.523438, 14.604847 ], [ 106.523438, 14.434680 ], [ 106.347656, 14.434680 ], [ 106.347656, 14.264383 ], [ 106.171875, 14.264383 ], [ 106.171875, 13.923404 ], [ 105.644531, 13.923404 ], [ 105.644531, 14.093957 ], [ 105.292969, 14.093957 ], [ 105.292969, 14.434680 ], [ 105.468750, 14.434680 ], [ 105.468750, 15.114553 ], [ 105.644531, 15.114553 ], [ 105.644531, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 15.792254 ], [ 105.292969, 15.792254 ], [ 105.292969, 15.961329 ], [ 105.117188, 15.961329 ], [ 105.117188, 16.130262 ], [ 104.941406, 16.130262 ], [ 104.941406, 16.299051 ], [ 104.765625, 16.299051 ], [ 104.765625, 17.476432 ], [ 104.589844, 17.476432 ], [ 104.589844, 17.644022 ], [ 104.414062, 17.644022 ], [ 104.414062, 17.811456 ], [ 104.238281, 17.811456 ], [ 104.238281, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.145852 ], [ 103.886719, 18.145852 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 103.183594, 18.145852 ], [ 103.007812, 18.145852 ], [ 103.007812, 17.978733 ], [ 101.777344, 17.978733 ], [ 101.777344, 17.811456 ], [ 101.601562, 17.811456 ], [ 101.601562, 17.644022 ], [ 101.250000, 17.644022 ], [ 101.250000, 17.476432 ], [ 101.074219, 17.476432 ], [ 101.074219, 18.979026 ], [ 101.250000, 18.979026 ], [ 101.250000, 19.476950 ], [ 100.546875, 19.476950 ], [ 100.546875, 20.138470 ], [ 100.371094, 20.138470 ], [ 100.371094, 20.303418 ], [ 100.195312, 20.303418 ], [ 100.195312, 20.632784 ], [ 100.371094, 20.632784 ], [ 100.371094, 20.797201 ], [ 100.546875, 20.797201 ], [ 100.546875, 20.961440 ], [ 100.722656, 20.961440 ], [ 100.722656, 21.125498 ], [ 101.074219, 21.125498 ], [ 101.074219, 21.289374 ], [ 101.250000, 21.289374 ], [ 101.250000, 21.125498 ], [ 101.777344, 21.125498 ], [ 101.777344, 21.616579 ], [ 101.601562, 21.616579 ], [ 101.601562, 22.268764 ], [ 101.953125, 22.268764 ], [ 101.953125, 22.431340 ], [ 102.128906, 22.431340 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.593726 ], [ 102.128906, 22.431340 ], [ 102.304688, 22.431340 ], [ 102.304688, 22.105999 ], [ 102.480469, 22.105999 ], [ 102.480469, 21.779905 ], [ 102.656250, 21.779905 ], [ 102.656250, 21.616579 ], [ 102.832031, 21.616579 ], [ 102.832031, 21.289374 ], [ 103.007812, 21.289374 ], [ 103.007812, 20.961440 ], [ 103.183594, 20.961440 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.414062, 20.468189 ], [ 104.589844, 20.468189 ], [ 104.589844, 20.138470 ], [ 104.765625, 20.138470 ], [ 104.765625, 19.808054 ], [ 104.414062, 19.808054 ], [ 104.414062, 19.642588 ], [ 104.062500, 19.642588 ], [ 104.062500, 19.476950 ], [ 103.886719, 19.476950 ], [ 103.886719, 19.145168 ], [ 104.238281, 19.145168 ], [ 104.238281, 18.979026 ], [ 104.589844, 18.979026 ], [ 104.589844, 18.812718 ], [ 104.941406, 18.812718 ], [ 104.941406, 18.646245 ], [ 105.117188, 18.646245 ], [ 105.117188, 18.312811 ], [ 105.292969, 18.312811 ], [ 105.292969, 18.145852 ], [ 105.468750, 18.145852 ], [ 105.468750, 17.978733 ], [ 105.644531, 17.978733 ], [ 105.644531, 17.644022 ], [ 105.820312, 17.644022 ], [ 105.820312, 17.476432 ], [ 105.996094, 17.476432 ], [ 105.996094, 17.140790 ], [ 106.171875, 17.140790 ], [ 106.171875, 16.972741 ], [ 106.347656, 16.972741 ], [ 106.347656, 16.636192 ], [ 106.523438, 16.636192 ], [ 106.523438, 16.467695 ], [ 106.699219, 16.467695 ], [ 106.699219, 16.299051 ], [ 106.875000, 16.299051 ], [ 106.875000, 16.130262 ], [ 107.050781, 16.130262 ], [ 107.050781, 15.961329 ], [ 107.226562, 15.961329 ], [ 107.226562, 15.623037 ], [ 107.402344, 15.623037 ], [ 107.402344, 14.774883 ], [ 107.226562, 14.774883 ], [ 107.226562, 14.264383 ], [ 106.875000, 14.264383 ], [ 106.875000, 14.434680 ], [ 106.523438, 14.434680 ], [ 106.523438, 14.604847 ], [ 106.347656, 14.604847 ], [ 106.347656, 14.434680 ], [ 106.171875, 14.434680 ], [ 106.171875, 14.093957 ], [ 105.996094, 14.093957 ], [ 105.996094, 13.923404 ], [ 105.820312, 13.923404 ], [ 105.820312, 14.093957 ], [ 105.468750, 14.093957 ], [ 105.468750, 14.264383 ], [ 105.117188, 14.264383 ], [ 105.117188, 14.434680 ], [ 105.292969, 14.434680 ], [ 105.292969, 14.604847 ], [ 105.468750, 14.604847 ], [ 105.468750, 15.623037 ], [ 105.292969, 15.623037 ], [ 105.292969, 15.792254 ], [ 105.117188, 15.792254 ], [ 105.117188, 16.130262 ], [ 104.941406, 16.130262 ], [ 104.941406, 16.299051 ], [ 104.765625, 16.299051 ], [ 104.765625, 16.972741 ], [ 104.589844, 16.972741 ], [ 104.589844, 17.476432 ], [ 104.414062, 17.476432 ], [ 104.414062, 17.644022 ], [ 104.238281, 17.644022 ], [ 104.238281, 17.978733 ], [ 104.062500, 17.978733 ], [ 104.062500, 18.145852 ], [ 103.886719, 18.145852 ], [ 103.886719, 18.312811 ], [ 103.183594, 18.312811 ], [ 103.183594, 18.145852 ], [ 103.007812, 18.145852 ], [ 103.007812, 17.978733 ], [ 101.601562, 17.978733 ], [ 101.601562, 17.811456 ], [ 101.250000, 17.811456 ], [ 101.250000, 17.644022 ], [ 100.898438, 17.644022 ], [ 100.898438, 18.646245 ], [ 101.074219, 18.646245 ], [ 101.074219, 19.145168 ], [ 101.250000, 19.145168 ], [ 101.250000, 19.476950 ], [ 100.722656, 19.476950 ], [ 100.722656, 19.642588 ], [ 100.546875, 19.642588 ], [ 100.546875, 20.138470 ], [ 100.371094, 20.138470 ], [ 100.371094, 20.303418 ], [ 100.019531, 20.303418 ], [ 100.019531, 20.632784 ], [ 100.195312, 20.632784 ], [ 100.195312, 20.797201 ], [ 100.371094, 20.797201 ], [ 100.371094, 20.961440 ], [ 100.546875, 20.961440 ], [ 100.546875, 21.125498 ], [ 100.898438, 21.125498 ], [ 100.898438, 21.289374 ], [ 101.777344, 21.289374 ], [ 101.777344, 21.779905 ], [ 101.601562, 21.779905 ], [ 101.601562, 22.431340 ], [ 101.953125, 22.431340 ], [ 101.953125, 22.593726 ], [ 102.128906, 22.593726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.371094, 20.303418 ], [ 100.371094, 20.138470 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.476950 ], [ 101.250000, 19.476950 ], [ 101.250000, 18.979026 ], [ 101.074219, 18.979026 ], [ 101.074219, 17.476432 ], [ 101.250000, 17.476432 ], [ 101.250000, 17.644022 ], [ 101.601562, 17.644022 ], [ 101.601562, 17.811456 ], [ 101.777344, 17.811456 ], [ 101.777344, 17.978733 ], [ 103.007812, 17.978733 ], [ 103.007812, 18.145852 ], [ 103.183594, 18.145852 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 103.886719, 18.145852 ], [ 104.062500, 18.145852 ], [ 104.062500, 17.978733 ], [ 104.238281, 17.978733 ], [ 104.238281, 17.811456 ], [ 104.414062, 17.811456 ], [ 104.414062, 17.644022 ], [ 104.589844, 17.644022 ], [ 104.589844, 17.476432 ], [ 104.765625, 17.476432 ], [ 104.765625, 16.299051 ], [ 104.941406, 16.299051 ], [ 104.941406, 16.130262 ], [ 105.117188, 16.130262 ], [ 105.117188, 15.961329 ], [ 105.292969, 15.961329 ], [ 105.292969, 15.792254 ], [ 105.468750, 15.792254 ], [ 105.468750, 15.623037 ], [ 105.644531, 15.623037 ], [ 105.644531, 15.114553 ], [ 105.468750, 15.114553 ], [ 105.468750, 14.434680 ], [ 105.292969, 14.434680 ], [ 105.292969, 14.264383 ], [ 104.589844, 14.264383 ], [ 104.589844, 14.434680 ], [ 103.710938, 14.434680 ], [ 103.710938, 14.264383 ], [ 103.007812, 14.264383 ], [ 103.007812, 14.093957 ], [ 102.832031, 14.093957 ], [ 102.832031, 13.923404 ], [ 102.656250, 13.923404 ], [ 102.656250, 13.581921 ], [ 102.480469, 13.581921 ], [ 102.480469, 13.410994 ], [ 102.304688, 13.410994 ], [ 102.304688, 13.068777 ], [ 102.480469, 13.068777 ], [ 102.480469, 12.382928 ], [ 102.656250, 12.382928 ], [ 102.656250, 12.211180 ], [ 102.304688, 12.211180 ], [ 102.304688, 12.382928 ], [ 101.953125, 12.382928 ], [ 101.953125, 12.554564 ], [ 101.601562, 12.554564 ], [ 101.601562, 12.726084 ], [ 101.425781, 12.726084 ], [ 101.425781, 12.554564 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.410994 ], [ 100.019531, 13.410994 ], [ 100.019531, 12.039321 ], [ 99.843750, 12.039321 ], [ 99.843750, 11.523088 ], [ 99.667969, 11.523088 ], [ 99.667969, 11.005904 ], [ 99.492188, 11.005904 ], [ 99.492188, 10.487812 ], [ 99.316406, 10.487812 ], [ 99.316406, 10.141932 ], [ 99.140625, 10.141932 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 99.843750, 8.928487 ], [ 100.019531, 8.928487 ], [ 100.019531, 8.407168 ], [ 100.195312, 8.407168 ], [ 100.195312, 7.885147 ], [ 100.371094, 7.885147 ], [ 100.371094, 7.536764 ], [ 100.546875, 7.536764 ], [ 100.546875, 7.188101 ], [ 100.722656, 7.188101 ], [ 100.722656, 7.013668 ], [ 100.898438, 7.013668 ], [ 100.898438, 6.839170 ], [ 101.250000, 6.839170 ], [ 101.250000, 6.664608 ], [ 101.601562, 6.664608 ], [ 101.601562, 6.489983 ], [ 101.777344, 6.489983 ], [ 101.777344, 6.315299 ], [ 101.953125, 6.315299 ], [ 101.953125, 6.140555 ], [ 102.128906, 6.140555 ], [ 102.128906, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 5.790897 ], [ 101.601562, 5.790897 ], [ 101.601562, 5.615986 ], [ 101.074219, 5.615986 ], [ 101.074219, 6.140555 ], [ 100.898438, 6.140555 ], [ 100.898438, 6.315299 ], [ 100.546875, 6.315299 ], [ 100.546875, 6.489983 ], [ 99.843750, 6.489983 ], [ 99.843750, 6.664608 ], [ 99.667969, 6.664608 ], [ 99.667969, 7.013668 ], [ 99.492188, 7.013668 ], [ 99.492188, 7.362467 ], [ 99.316406, 7.362467 ], [ 99.316406, 7.536764 ], [ 99.140625, 7.536764 ], [ 99.140625, 7.710992 ], [ 98.964844, 7.710992 ], [ 98.964844, 7.885147 ], [ 98.789062, 7.885147 ], [ 98.789062, 8.059230 ], [ 98.613281, 8.059230 ], [ 98.613281, 8.233237 ], [ 98.437500, 8.233237 ], [ 98.437500, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 8.581021 ], [ 98.261719, 8.581021 ], [ 98.261719, 9.102097 ], [ 98.437500, 9.102097 ], [ 98.437500, 9.622414 ], [ 98.613281, 9.622414 ], [ 98.613281, 10.141932 ], [ 98.789062, 10.141932 ], [ 98.789062, 10.660608 ], [ 98.964844, 10.660608 ], [ 98.964844, 11.005904 ], [ 99.140625, 11.005904 ], [ 99.140625, 11.178402 ], [ 99.316406, 11.178402 ], [ 99.316406, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 11.695273 ], [ 99.667969, 11.695273 ], [ 99.667969, 11.867351 ], [ 99.492188, 11.867351 ], [ 99.492188, 12.211180 ], [ 99.316406, 12.211180 ], [ 99.316406, 12.554564 ], [ 99.140625, 12.554564 ], [ 99.140625, 13.752725 ], [ 98.964844, 13.752725 ], [ 98.964844, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.264383 ], [ 98.613281, 14.264383 ], [ 98.613281, 14.434680 ], [ 98.437500, 14.434680 ], [ 98.437500, 14.774883 ], [ 98.261719, 14.774883 ], [ 98.261719, 15.114553 ], [ 98.613281, 15.114553 ], [ 98.613281, 15.453680 ], [ 98.789062, 15.453680 ], [ 98.789062, 15.792254 ], [ 98.964844, 15.792254 ], [ 98.964844, 16.130262 ], [ 98.789062, 16.130262 ], [ 98.789062, 16.467695 ], [ 98.613281, 16.467695 ], [ 98.613281, 16.636192 ], [ 98.437500, 16.636192 ], [ 98.437500, 16.804541 ], [ 98.261719, 16.804541 ], [ 98.261719, 17.140790 ], [ 98.085938, 17.140790 ], [ 98.085938, 17.476432 ], [ 97.910156, 17.476432 ], [ 97.910156, 17.644022 ], [ 97.734375, 17.644022 ], [ 97.734375, 17.978733 ], [ 97.558594, 17.978733 ], [ 97.558594, 18.312811 ], [ 97.382812, 18.312811 ], [ 97.382812, 18.479609 ], [ 97.734375, 18.479609 ], [ 97.734375, 18.812718 ], [ 97.910156, 18.812718 ], [ 97.910156, 19.145168 ], [ 98.085938, 19.145168 ], [ 98.085938, 19.476950 ], [ 98.261719, 19.476950 ], [ 98.261719, 19.642588 ], [ 98.789062, 19.642588 ], [ 98.789062, 19.808054 ], [ 99.140625, 19.808054 ], [ 99.140625, 19.973349 ], [ 99.492188, 19.973349 ], [ 99.492188, 20.138470 ], [ 99.843750, 20.138470 ], [ 99.843750, 20.303418 ], [ 100.371094, 20.303418 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.019531, 20.468189 ], [ 100.019531, 20.303418 ], [ 100.371094, 20.303418 ], [ 100.371094, 20.138470 ], [ 100.546875, 20.138470 ], [ 100.546875, 19.642588 ], [ 100.722656, 19.642588 ], [ 100.722656, 19.476950 ], [ 101.250000, 19.476950 ], [ 101.250000, 19.145168 ], [ 101.074219, 19.145168 ], [ 101.074219, 18.646245 ], [ 100.898438, 18.646245 ], [ 100.898438, 17.644022 ], [ 101.250000, 17.644022 ], [ 101.250000, 17.811456 ], [ 101.601562, 17.811456 ], [ 101.601562, 17.978733 ], [ 103.007812, 17.978733 ], [ 103.007812, 18.145852 ], [ 103.183594, 18.145852 ], [ 103.183594, 18.312811 ], [ 103.886719, 18.312811 ], [ 103.886719, 18.145852 ], [ 104.062500, 18.145852 ], [ 104.062500, 17.978733 ], [ 104.238281, 17.978733 ], [ 104.238281, 17.644022 ], [ 104.414062, 17.644022 ], [ 104.414062, 17.476432 ], [ 104.589844, 17.476432 ], [ 104.589844, 16.972741 ], [ 104.765625, 16.972741 ], [ 104.765625, 16.299051 ], [ 104.941406, 16.299051 ], [ 104.941406, 16.130262 ], [ 105.117188, 16.130262 ], [ 105.117188, 15.792254 ], [ 105.292969, 15.792254 ], [ 105.292969, 15.623037 ], [ 105.468750, 15.623037 ], [ 105.468750, 14.604847 ], [ 105.292969, 14.604847 ], [ 105.292969, 14.434680 ], [ 103.710938, 14.434680 ], [ 103.710938, 14.264383 ], [ 102.832031, 14.264383 ], [ 102.832031, 14.093957 ], [ 102.656250, 14.093957 ], [ 102.656250, 13.752725 ], [ 102.480469, 13.752725 ], [ 102.480469, 13.410994 ], [ 102.304688, 13.410994 ], [ 102.304688, 12.726084 ], [ 102.480469, 12.726084 ], [ 102.480469, 12.211180 ], [ 102.304688, 12.211180 ], [ 102.304688, 12.382928 ], [ 101.953125, 12.382928 ], [ 101.953125, 12.554564 ], [ 101.601562, 12.554564 ], [ 101.601562, 12.726084 ], [ 100.722656, 12.726084 ], [ 100.722656, 13.068777 ], [ 100.898438, 13.068777 ], [ 100.898438, 13.410994 ], [ 100.019531, 13.410994 ], [ 100.019531, 12.211180 ], [ 99.843750, 12.211180 ], [ 99.843750, 11.867351 ], [ 99.667969, 11.867351 ], [ 99.667969, 11.523088 ], [ 99.492188, 11.523088 ], [ 99.492188, 11.178402 ], [ 99.316406, 11.178402 ], [ 99.316406, 10.487812 ], [ 99.140625, 10.487812 ], [ 99.140625, 9.275622 ], [ 99.843750, 9.275622 ], [ 99.843750, 8.928487 ], [ 100.019531, 8.928487 ], [ 100.019531, 8.581021 ], [ 100.195312, 8.581021 ], [ 100.195312, 7.885147 ], [ 100.371094, 7.885147 ], [ 100.371094, 7.362467 ], [ 100.546875, 7.362467 ], [ 100.546875, 7.188101 ], [ 100.722656, 7.188101 ], [ 100.722656, 7.013668 ], [ 101.074219, 7.013668 ], [ 101.074219, 6.839170 ], [ 101.601562, 6.839170 ], [ 101.601562, 6.664608 ], [ 101.777344, 6.664608 ], [ 101.777344, 6.489983 ], [ 101.953125, 6.489983 ], [ 101.953125, 6.315299 ], [ 102.128906, 6.315299 ], [ 102.128906, 6.140555 ], [ 101.953125, 6.140555 ], [ 101.953125, 5.965754 ], [ 101.601562, 5.965754 ], [ 101.601562, 5.790897 ], [ 101.074219, 5.790897 ], [ 101.074219, 6.315299 ], [ 100.722656, 6.315299 ], [ 100.722656, 6.489983 ], [ 100.371094, 6.489983 ], [ 100.371094, 6.664608 ], [ 100.195312, 6.664608 ], [ 100.195312, 6.489983 ], [ 99.843750, 6.489983 ], [ 99.843750, 6.839170 ], [ 99.667969, 6.839170 ], [ 99.667969, 7.188101 ], [ 99.492188, 7.188101 ], [ 99.492188, 7.362467 ], [ 99.316406, 7.362467 ], [ 99.316406, 7.710992 ], [ 99.140625, 7.710992 ], [ 99.140625, 7.885147 ], [ 98.964844, 7.885147 ], [ 98.964844, 8.059230 ], [ 98.789062, 8.059230 ], [ 98.789062, 8.233237 ], [ 98.437500, 8.233237 ], [ 98.437500, 8.059230 ], [ 98.085938, 8.059230 ], [ 98.085938, 8.754795 ], [ 98.261719, 8.754795 ], [ 98.261719, 9.449062 ], [ 98.437500, 9.449062 ], [ 98.437500, 10.141932 ], [ 98.613281, 10.141932 ], [ 98.613281, 10.487812 ], [ 98.789062, 10.487812 ], [ 98.789062, 10.833306 ], [ 98.964844, 10.833306 ], [ 98.964844, 11.178402 ], [ 99.140625, 11.178402 ], [ 99.140625, 11.523088 ], [ 99.316406, 11.523088 ], [ 99.316406, 11.867351 ], [ 99.492188, 11.867351 ], [ 99.492188, 12.211180 ], [ 99.316406, 12.211180 ], [ 99.316406, 12.554564 ], [ 99.140625, 12.554564 ], [ 99.140625, 13.581921 ], [ 98.964844, 13.581921 ], [ 98.964844, 13.923404 ], [ 98.789062, 13.923404 ], [ 98.789062, 14.093957 ], [ 98.613281, 14.093957 ], [ 98.613281, 14.434680 ], [ 98.437500, 14.434680 ], [ 98.437500, 14.604847 ], [ 98.261719, 14.604847 ], [ 98.261719, 14.944785 ], [ 98.085938, 14.944785 ], [ 98.085938, 15.284185 ], [ 98.437500, 15.284185 ], [ 98.437500, 15.623037 ], [ 98.613281, 15.623037 ], [ 98.613281, 15.961329 ], [ 98.789062, 15.961329 ], [ 98.789062, 16.467695 ], [ 98.613281, 16.467695 ], [ 98.613281, 16.804541 ], [ 98.437500, 16.804541 ], [ 98.437500, 16.972741 ], [ 98.261719, 16.972741 ], [ 98.261719, 17.140790 ], [ 98.085938, 17.140790 ], [ 98.085938, 17.308688 ], [ 97.910156, 17.308688 ], [ 97.910156, 17.476432 ], [ 97.734375, 17.476432 ], [ 97.734375, 17.644022 ], [ 97.558594, 17.644022 ], [ 97.558594, 17.978733 ], [ 97.382812, 17.978733 ], [ 97.382812, 18.312811 ], [ 97.207031, 18.312811 ], [ 97.207031, 18.479609 ], [ 97.558594, 18.479609 ], [ 97.558594, 18.646245 ], [ 97.734375, 18.646245 ], [ 97.734375, 18.812718 ], [ 97.910156, 18.812718 ], [ 97.910156, 19.476950 ], [ 98.085938, 19.476950 ], [ 98.085938, 19.808054 ], [ 98.964844, 19.808054 ], [ 98.964844, 19.973349 ], [ 99.316406, 19.973349 ], [ 99.316406, 20.138470 ], [ 99.492188, 20.138470 ], [ 99.492188, 20.303418 ], [ 99.843750, 20.303418 ], [ 99.843750, 20.468189 ], [ 100.019531, 20.468189 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 23.241346 ], [ 105.468750, 23.079732 ], [ 105.644531, 23.079732 ], [ 105.644531, 22.917923 ], [ 106.171875, 22.917923 ], [ 106.171875, 22.755921 ], [ 106.699219, 22.755921 ], [ 106.699219, 22.431340 ], [ 106.523438, 22.431340 ], [ 106.523438, 22.105999 ], [ 106.699219, 22.105999 ], [ 106.699219, 21.943046 ], [ 106.875000, 21.943046 ], [ 106.875000, 21.779905 ], [ 107.402344, 21.779905 ], [ 107.402344, 21.616579 ], [ 108.105469, 21.616579 ], [ 108.105469, 21.453069 ], [ 107.929688, 21.453069 ], [ 107.929688, 21.289374 ], [ 107.578125, 21.289374 ], [ 107.578125, 21.125498 ], [ 107.402344, 21.125498 ], [ 107.402344, 20.961440 ], [ 107.226562, 20.961440 ], [ 107.226562, 20.797201 ], [ 106.875000, 20.797201 ], [ 106.875000, 20.632784 ], [ 106.699219, 20.632784 ], [ 106.699219, 20.468189 ], [ 106.523438, 20.468189 ], [ 106.523438, 20.303418 ], [ 106.347656, 20.303418 ], [ 106.347656, 20.138470 ], [ 106.171875, 20.138470 ], [ 106.171875, 19.973349 ], [ 105.996094, 19.973349 ], [ 105.996094, 19.808054 ], [ 105.820312, 19.808054 ], [ 105.820312, 19.311143 ], [ 105.644531, 19.311143 ], [ 105.644531, 18.812718 ], [ 105.820312, 18.812718 ], [ 105.820312, 18.479609 ], [ 105.996094, 18.479609 ], [ 105.996094, 18.312811 ], [ 106.171875, 18.312811 ], [ 106.171875, 17.978733 ], [ 106.347656, 17.978733 ], [ 106.347656, 17.811456 ], [ 106.523438, 17.811456 ], [ 106.523438, 17.644022 ], [ 106.699219, 17.644022 ], [ 106.699219, 17.308688 ], [ 106.875000, 17.308688 ], [ 106.875000, 17.140790 ], [ 107.050781, 17.140790 ], [ 107.050781, 16.972741 ], [ 107.226562, 16.972741 ], [ 107.226562, 16.636192 ], [ 107.402344, 16.636192 ], [ 107.402344, 16.467695 ], [ 107.753906, 16.467695 ], [ 107.753906, 16.299051 ], [ 108.105469, 16.299051 ], [ 108.105469, 16.130262 ], [ 108.281250, 16.130262 ], [ 108.281250, 15.961329 ], [ 108.457031, 15.961329 ], [ 108.457031, 15.623037 ], [ 108.632812, 15.623037 ], [ 108.632812, 15.284185 ], [ 108.808594, 15.284185 ], [ 108.808594, 14.944785 ], [ 108.984375, 14.944785 ], [ 108.984375, 14.264383 ], [ 109.160156, 14.264383 ], [ 109.160156, 13.581921 ], [ 109.335938, 13.581921 ], [ 109.335938, 12.554564 ], [ 109.160156, 12.554564 ], [ 109.160156, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.350797 ], [ 108.632812, 11.350797 ], [ 108.632812, 11.178402 ], [ 108.457031, 11.178402 ], [ 108.457031, 11.005904 ], [ 108.281250, 11.005904 ], [ 108.281250, 10.833306 ], [ 107.929688, 10.833306 ], [ 107.929688, 10.660608 ], [ 107.753906, 10.660608 ], [ 107.753906, 10.487812 ], [ 107.402344, 10.487812 ], [ 107.402344, 10.314919 ], [ 107.226562, 10.314919 ], [ 107.226562, 10.141932 ], [ 107.050781, 10.141932 ], [ 107.050781, 9.968851 ], [ 106.875000, 9.968851 ], [ 106.875000, 9.795678 ], [ 106.699219, 9.795678 ], [ 106.699219, 9.622414 ], [ 106.523438, 9.622414 ], [ 106.523438, 9.449062 ], [ 106.347656, 9.449062 ], [ 106.347656, 9.275622 ], [ 105.996094, 9.275622 ], [ 105.996094, 9.102097 ], [ 105.820312, 9.102097 ], [ 105.820312, 8.928487 ], [ 105.644531, 8.928487 ], [ 105.644531, 8.754795 ], [ 105.292969, 8.754795 ], [ 105.292969, 8.581021 ], [ 105.117188, 8.581021 ], [ 105.117188, 8.754795 ], [ 104.941406, 8.754795 ], [ 104.941406, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 9.449062 ], [ 104.941406, 9.449062 ], [ 104.941406, 9.795678 ], [ 105.117188, 9.795678 ], [ 105.117188, 9.968851 ], [ 104.941406, 9.968851 ], [ 104.941406, 10.141932 ], [ 104.589844, 10.141932 ], [ 104.589844, 10.314919 ], [ 104.414062, 10.314919 ], [ 104.414062, 10.487812 ], [ 104.765625, 10.487812 ], [ 104.765625, 10.660608 ], [ 105.117188, 10.660608 ], [ 105.117188, 10.833306 ], [ 105.820312, 10.833306 ], [ 105.820312, 11.005904 ], [ 105.996094, 11.005904 ], [ 105.996094, 11.350797 ], [ 105.820312, 11.350797 ], [ 105.820312, 11.523088 ], [ 106.171875, 11.523088 ], [ 106.171875, 11.695273 ], [ 106.523438, 11.695273 ], [ 106.523438, 11.867351 ], [ 106.875000, 11.867351 ], [ 106.875000, 12.039321 ], [ 107.226562, 12.039321 ], [ 107.226562, 12.211180 ], [ 107.578125, 12.211180 ], [ 107.578125, 13.923404 ], [ 107.402344, 13.923404 ], [ 107.402344, 14.774883 ], [ 107.578125, 14.774883 ], [ 107.578125, 15.453680 ], [ 107.402344, 15.453680 ], [ 107.402344, 15.792254 ], [ 107.226562, 15.792254 ], [ 107.226562, 15.961329 ], [ 107.050781, 15.961329 ], [ 107.050781, 16.130262 ], [ 106.875000, 16.130262 ], [ 106.875000, 16.299051 ], [ 106.699219, 16.299051 ], [ 106.699219, 16.467695 ], [ 106.523438, 16.467695 ], [ 106.523438, 16.636192 ], [ 106.347656, 16.636192 ], [ 106.347656, 16.972741 ], [ 106.171875, 16.972741 ], [ 106.171875, 17.308688 ], [ 105.996094, 17.308688 ], [ 105.996094, 17.476432 ], [ 105.820312, 17.476432 ], [ 105.820312, 17.811456 ], [ 105.644531, 17.811456 ], [ 105.644531, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 18.145852 ], [ 105.292969, 18.145852 ], [ 105.292969, 18.479609 ], [ 105.117188, 18.479609 ], [ 105.117188, 18.646245 ], [ 104.941406, 18.646245 ], [ 104.941406, 18.812718 ], [ 104.589844, 18.812718 ], [ 104.589844, 18.979026 ], [ 104.238281, 18.979026 ], [ 104.238281, 19.145168 ], [ 103.886719, 19.145168 ], [ 103.886719, 19.311143 ], [ 104.062500, 19.311143 ], [ 104.062500, 19.476950 ], [ 104.238281, 19.476950 ], [ 104.238281, 19.642588 ], [ 104.589844, 19.642588 ], [ 104.589844, 19.808054 ], [ 104.765625, 19.808054 ], [ 104.765625, 19.973349 ], [ 104.589844, 19.973349 ], [ 104.589844, 20.468189 ], [ 104.414062, 20.468189 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 103.183594, 20.961440 ], [ 103.007812, 20.961440 ], [ 103.007812, 21.289374 ], [ 102.832031, 21.289374 ], [ 102.832031, 21.616579 ], [ 102.656250, 21.616579 ], [ 102.656250, 21.779905 ], [ 102.480469, 21.779905 ], [ 102.480469, 22.105999 ], [ 102.304688, 22.105999 ], [ 102.304688, 22.268764 ], [ 102.128906, 22.268764 ], [ 102.128906, 22.431340 ], [ 102.304688, 22.431340 ], [ 102.304688, 22.593726 ], [ 102.656250, 22.593726 ], [ 102.656250, 22.755921 ], [ 104.589844, 22.755921 ], [ 104.589844, 22.917923 ], [ 104.765625, 22.917923 ], [ 104.765625, 23.079732 ], [ 105.117188, 23.079732 ], [ 105.117188, 23.241346 ], [ 105.468750, 23.241346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.468750, 23.241346 ], [ 105.468750, 23.079732 ], [ 105.996094, 23.079732 ], [ 105.996094, 22.917923 ], [ 106.699219, 22.917923 ], [ 106.699219, 22.593726 ], [ 106.523438, 22.593726 ], [ 106.523438, 22.105999 ], [ 106.699219, 22.105999 ], [ 106.699219, 21.943046 ], [ 107.050781, 21.943046 ], [ 107.050781, 21.779905 ], [ 107.578125, 21.779905 ], [ 107.578125, 21.616579 ], [ 107.929688, 21.616579 ], [ 107.929688, 21.453069 ], [ 107.578125, 21.453069 ], [ 107.578125, 21.289374 ], [ 107.402344, 21.289374 ], [ 107.402344, 21.125498 ], [ 107.226562, 21.125498 ], [ 107.226562, 20.961440 ], [ 106.875000, 20.961440 ], [ 106.875000, 20.797201 ], [ 106.699219, 20.797201 ], [ 106.699219, 20.632784 ], [ 106.523438, 20.632784 ], [ 106.523438, 20.468189 ], [ 106.347656, 20.468189 ], [ 106.347656, 20.303418 ], [ 106.171875, 20.303418 ], [ 106.171875, 19.973349 ], [ 105.996094, 19.973349 ], [ 105.996094, 19.808054 ], [ 105.820312, 19.808054 ], [ 105.820312, 19.476950 ], [ 105.644531, 19.476950 ], [ 105.644531, 18.979026 ], [ 105.820312, 18.979026 ], [ 105.820312, 18.646245 ], [ 105.996094, 18.646245 ], [ 105.996094, 18.479609 ], [ 106.171875, 18.479609 ], [ 106.171875, 18.145852 ], [ 106.347656, 18.145852 ], [ 106.347656, 17.978733 ], [ 106.523438, 17.978733 ], [ 106.523438, 17.644022 ], [ 106.699219, 17.644022 ], [ 106.699219, 17.476432 ], [ 106.875000, 17.476432 ], [ 106.875000, 17.140790 ], [ 107.050781, 17.140790 ], [ 107.050781, 16.804541 ], [ 107.226562, 16.804541 ], [ 107.226562, 16.636192 ], [ 107.402344, 16.636192 ], [ 107.402344, 16.467695 ], [ 107.753906, 16.467695 ], [ 107.753906, 16.299051 ], [ 107.929688, 16.299051 ], [ 107.929688, 16.130262 ], [ 108.105469, 16.130262 ], [ 108.105469, 15.961329 ], [ 108.281250, 15.961329 ], [ 108.281250, 15.792254 ], [ 108.457031, 15.792254 ], [ 108.457031, 15.453680 ], [ 108.632812, 15.453680 ], [ 108.632812, 15.284185 ], [ 108.808594, 15.284185 ], [ 108.808594, 14.944785 ], [ 108.984375, 14.944785 ], [ 108.984375, 14.434680 ], [ 109.160156, 14.434680 ], [ 109.160156, 13.752725 ], [ 109.335938, 13.752725 ], [ 109.335938, 12.554564 ], [ 109.160156, 12.554564 ], [ 109.160156, 11.523088 ], [ 108.984375, 11.523088 ], [ 108.984375, 11.350797 ], [ 108.632812, 11.350797 ], [ 108.632812, 11.178402 ], [ 108.457031, 11.178402 ], [ 108.457031, 11.005904 ], [ 108.105469, 11.005904 ], [ 108.105469, 10.833306 ], [ 107.753906, 10.833306 ], [ 107.753906, 10.660608 ], [ 107.402344, 10.660608 ], [ 107.402344, 10.487812 ], [ 107.050781, 10.487812 ], [ 107.050781, 10.314919 ], [ 106.875000, 10.314919 ], [ 106.875000, 10.141932 ], [ 106.699219, 10.141932 ], [ 106.699219, 9.795678 ], [ 106.523438, 9.795678 ], [ 106.523438, 9.622414 ], [ 106.347656, 9.622414 ], [ 106.347656, 9.449062 ], [ 105.996094, 9.449062 ], [ 105.996094, 9.275622 ], [ 105.820312, 9.275622 ], [ 105.820312, 9.102097 ], [ 105.644531, 9.102097 ], [ 105.644531, 8.928487 ], [ 105.292969, 8.928487 ], [ 105.292969, 8.754795 ], [ 104.941406, 8.754795 ], [ 104.941406, 9.102097 ], [ 104.765625, 9.102097 ], [ 104.765625, 9.622414 ], [ 104.941406, 9.622414 ], [ 104.941406, 9.968851 ], [ 104.765625, 9.968851 ], [ 104.765625, 10.141932 ], [ 104.414062, 10.141932 ], [ 104.414062, 10.314919 ], [ 104.238281, 10.314919 ], [ 104.238281, 10.487812 ], [ 104.414062, 10.487812 ], [ 104.414062, 10.660608 ], [ 104.765625, 10.660608 ], [ 104.765625, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 11.005904 ], [ 105.996094, 11.005904 ], [ 105.996094, 11.350797 ], [ 105.820312, 11.350797 ], [ 105.820312, 11.523088 ], [ 105.644531, 11.523088 ], [ 105.644531, 11.695273 ], [ 105.996094, 11.695273 ], [ 105.996094, 11.867351 ], [ 106.347656, 11.867351 ], [ 106.347656, 12.039321 ], [ 106.875000, 12.039321 ], [ 106.875000, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 12.382928 ], [ 107.402344, 12.382928 ], [ 107.402344, 12.897489 ], [ 107.578125, 12.897489 ], [ 107.578125, 13.752725 ], [ 107.402344, 13.752725 ], [ 107.402344, 14.093957 ], [ 107.226562, 14.093957 ], [ 107.226562, 14.774883 ], [ 107.402344, 14.774883 ], [ 107.402344, 15.623037 ], [ 107.226562, 15.623037 ], [ 107.226562, 15.961329 ], [ 107.050781, 15.961329 ], [ 107.050781, 16.130262 ], [ 106.875000, 16.130262 ], [ 106.875000, 16.299051 ], [ 106.699219, 16.299051 ], [ 106.699219, 16.467695 ], [ 106.523438, 16.467695 ], [ 106.523438, 16.636192 ], [ 106.347656, 16.636192 ], [ 106.347656, 16.972741 ], [ 106.171875, 16.972741 ], [ 106.171875, 17.140790 ], [ 105.996094, 17.140790 ], [ 105.996094, 17.476432 ], [ 105.820312, 17.476432 ], [ 105.820312, 17.644022 ], [ 105.644531, 17.644022 ], [ 105.644531, 17.978733 ], [ 105.468750, 17.978733 ], [ 105.468750, 18.145852 ], [ 105.292969, 18.145852 ], [ 105.292969, 18.312811 ], [ 105.117188, 18.312811 ], [ 105.117188, 18.646245 ], [ 104.941406, 18.646245 ], [ 104.941406, 18.812718 ], [ 104.589844, 18.812718 ], [ 104.589844, 18.979026 ], [ 104.238281, 18.979026 ], [ 104.238281, 19.145168 ], [ 103.886719, 19.145168 ], [ 103.886719, 19.476950 ], [ 104.062500, 19.476950 ], [ 104.062500, 19.642588 ], [ 104.414062, 19.642588 ], [ 104.414062, 19.808054 ], [ 104.765625, 19.808054 ], [ 104.765625, 20.138470 ], [ 104.589844, 20.138470 ], [ 104.589844, 20.468189 ], [ 104.414062, 20.468189 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 103.183594, 20.961440 ], [ 103.007812, 20.961440 ], [ 103.007812, 21.289374 ], [ 102.832031, 21.289374 ], [ 102.832031, 21.616579 ], [ 102.656250, 21.616579 ], [ 102.656250, 21.779905 ], [ 102.480469, 21.779905 ], [ 102.480469, 22.105999 ], [ 102.304688, 22.105999 ], [ 102.304688, 22.431340 ], [ 102.128906, 22.431340 ], [ 102.128906, 22.593726 ], [ 102.480469, 22.593726 ], [ 102.480469, 22.755921 ], [ 104.062500, 22.755921 ], [ 104.062500, 22.917923 ], [ 104.589844, 22.917923 ], [ 104.589844, 23.079732 ], [ 104.941406, 23.079732 ], [ 104.941406, 23.241346 ], [ 105.468750, 23.241346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.699219, 14.604847 ], [ 106.699219, 14.434680 ], [ 107.050781, 14.434680 ], [ 107.050781, 14.264383 ], [ 107.402344, 14.264383 ], [ 107.402344, 13.923404 ], [ 107.578125, 13.923404 ], [ 107.578125, 12.211180 ], [ 107.226562, 12.211180 ], [ 107.226562, 12.039321 ], [ 106.875000, 12.039321 ], [ 106.875000, 11.867351 ], [ 106.523438, 11.867351 ], [ 106.523438, 11.695273 ], [ 106.171875, 11.695273 ], [ 106.171875, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.350797 ], [ 105.996094, 11.350797 ], [ 105.996094, 11.005904 ], [ 105.820312, 11.005904 ], [ 105.820312, 10.833306 ], [ 105.117188, 10.833306 ], [ 105.117188, 10.660608 ], [ 104.765625, 10.660608 ], [ 104.765625, 10.487812 ], [ 103.886719, 10.487812 ], [ 103.886719, 10.660608 ], [ 103.359375, 10.660608 ], [ 103.359375, 10.833306 ], [ 103.183594, 10.833306 ], [ 103.183594, 11.005904 ], [ 103.007812, 11.005904 ], [ 103.007812, 11.350797 ], [ 102.832031, 11.350797 ], [ 102.832031, 11.867351 ], [ 102.656250, 11.867351 ], [ 102.656250, 12.382928 ], [ 102.480469, 12.382928 ], [ 102.480469, 13.068777 ], [ 102.304688, 13.068777 ], [ 102.304688, 13.410994 ], [ 102.480469, 13.410994 ], [ 102.480469, 13.581921 ], [ 102.656250, 13.581921 ], [ 102.656250, 13.923404 ], [ 102.832031, 13.923404 ], [ 102.832031, 14.093957 ], [ 103.007812, 14.093957 ], [ 103.007812, 14.264383 ], [ 103.710938, 14.264383 ], [ 103.710938, 14.434680 ], [ 104.589844, 14.434680 ], [ 104.589844, 14.264383 ], [ 105.292969, 14.264383 ], [ 105.292969, 14.093957 ], [ 105.644531, 14.093957 ], [ 105.644531, 13.923404 ], [ 106.171875, 13.923404 ], [ 106.171875, 14.264383 ], [ 106.347656, 14.264383 ], [ 106.347656, 14.434680 ], [ 106.523438, 14.434680 ], [ 106.523438, 14.604847 ], [ 106.699219, 14.604847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.523438, 14.604847 ], [ 106.523438, 14.434680 ], [ 106.875000, 14.434680 ], [ 106.875000, 14.264383 ], [ 107.226562, 14.264383 ], [ 107.226562, 14.093957 ], [ 107.402344, 14.093957 ], [ 107.402344, 13.752725 ], [ 107.578125, 13.752725 ], [ 107.578125, 12.897489 ], [ 107.402344, 12.897489 ], [ 107.402344, 12.382928 ], [ 107.226562, 12.382928 ], [ 107.226562, 12.211180 ], [ 106.875000, 12.211180 ], [ 106.875000, 12.039321 ], [ 106.347656, 12.039321 ], [ 106.347656, 11.867351 ], [ 105.996094, 11.867351 ], [ 105.996094, 11.695273 ], [ 105.644531, 11.695273 ], [ 105.644531, 11.523088 ], [ 105.820312, 11.523088 ], [ 105.820312, 11.350797 ], [ 105.996094, 11.350797 ], [ 105.996094, 11.005904 ], [ 105.117188, 11.005904 ], [ 105.117188, 10.833306 ], [ 104.765625, 10.833306 ], [ 104.765625, 10.660608 ], [ 104.414062, 10.660608 ], [ 104.414062, 10.487812 ], [ 103.710938, 10.487812 ], [ 103.710938, 10.660608 ], [ 103.183594, 10.660608 ], [ 103.183594, 11.005904 ], [ 103.007812, 11.005904 ], [ 103.007812, 11.350797 ], [ 102.832031, 11.350797 ], [ 102.832031, 11.695273 ], [ 102.656250, 11.695273 ], [ 102.656250, 12.039321 ], [ 102.480469, 12.039321 ], [ 102.480469, 12.726084 ], [ 102.304688, 12.726084 ], [ 102.304688, 13.410994 ], [ 102.480469, 13.410994 ], [ 102.480469, 13.752725 ], [ 102.656250, 13.752725 ], [ 102.656250, 14.093957 ], [ 102.832031, 14.093957 ], [ 102.832031, 14.264383 ], [ 103.710938, 14.264383 ], [ 103.710938, 14.434680 ], [ 105.117188, 14.434680 ], [ 105.117188, 14.264383 ], [ 105.468750, 14.264383 ], [ 105.468750, 14.093957 ], [ 105.820312, 14.093957 ], [ 105.820312, 13.923404 ], [ 105.996094, 13.923404 ], [ 105.996094, 14.093957 ], [ 106.171875, 14.093957 ], [ 106.171875, 14.434680 ], [ 106.347656, 14.434680 ], [ 106.347656, 14.604847 ], [ 106.523438, 14.604847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.246094, 6.839170 ], [ 117.246094, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.489983 ], [ 117.597656, 6.489983 ], [ 117.597656, 6.140555 ], [ 117.773438, 6.140555 ], [ 117.773438, 5.965754 ], [ 117.949219, 5.965754 ], [ 117.949219, 5.790897 ], [ 118.476562, 5.790897 ], [ 118.476562, 5.615986 ], [ 118.828125, 5.615986 ], [ 118.828125, 5.441022 ], [ 119.179688, 5.441022 ], [ 119.179688, 5.090944 ], [ 119.003906, 5.090944 ], [ 119.003906, 4.915833 ], [ 118.476562, 4.915833 ], [ 118.476562, 4.740675 ], [ 118.652344, 4.740675 ], [ 118.652344, 4.390229 ], [ 118.300781, 4.390229 ], [ 118.300781, 4.214943 ], [ 117.421875, 4.214943 ], [ 117.421875, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.839844, 4.039618 ], [ 115.664062, 4.039618 ], [ 115.664062, 3.337954 ], [ 115.488281, 3.337954 ], [ 115.488281, 2.986927 ], [ 115.312500, 2.986927 ], [ 115.312500, 2.811371 ], [ 115.136719, 2.811371 ], [ 115.136719, 2.460181 ], [ 114.960938, 2.460181 ], [ 114.960938, 2.108899 ], [ 114.785156, 2.108899 ], [ 114.785156, 1.581830 ], [ 114.609375, 1.581830 ], [ 114.609375, 1.406109 ], [ 114.257812, 1.406109 ], [ 114.257812, 1.230374 ], [ 113.378906, 1.230374 ], [ 113.378906, 1.406109 ], [ 113.027344, 1.406109 ], [ 113.027344, 1.581830 ], [ 112.675781, 1.581830 ], [ 112.675781, 1.406109 ], [ 112.324219, 1.406109 ], [ 112.324219, 1.230374 ], [ 112.148438, 1.230374 ], [ 112.148438, 1.054628 ], [ 111.972656, 1.054628 ], [ 111.972656, 0.878872 ], [ 111.269531, 0.878872 ], [ 111.269531, 1.054628 ], [ 111.093750, 1.054628 ], [ 111.093750, 0.878872 ], [ 110.742188, 0.878872 ], [ 110.742188, 0.703107 ], [ 110.390625, 0.703107 ], [ 110.390625, 0.878872 ], [ 110.214844, 0.878872 ], [ 110.214844, 1.054628 ], [ 110.039062, 1.054628 ], [ 110.039062, 1.230374 ], [ 109.863281, 1.230374 ], [ 109.863281, 1.581830 ], [ 109.687500, 1.581830 ], [ 109.687500, 1.757537 ], [ 110.039062, 1.757537 ], [ 110.039062, 1.581830 ], [ 110.742188, 1.581830 ], [ 110.742188, 1.757537 ], [ 111.093750, 1.757537 ], [ 111.093750, 2.108899 ], [ 111.269531, 2.108899 ], [ 111.269531, 2.460181 ], [ 111.445312, 2.460181 ], [ 111.445312, 2.635789 ], [ 111.796875, 2.635789 ], [ 111.796875, 2.811371 ], [ 112.148438, 2.811371 ], [ 112.148438, 2.986927 ], [ 112.851562, 2.986927 ], [ 112.851562, 3.162456 ], [ 113.203125, 3.162456 ], [ 113.203125, 3.337954 ], [ 113.378906, 3.337954 ], [ 113.378906, 3.513421 ], [ 113.554688, 3.513421 ], [ 113.554688, 3.688855 ], [ 113.730469, 3.688855 ], [ 113.730469, 3.864255 ], [ 113.906250, 3.864255 ], [ 113.906250, 4.214943 ], [ 114.082031, 4.214943 ], [ 114.082031, 4.390229 ], [ 114.433594, 4.390229 ], [ 114.433594, 4.039618 ], [ 114.609375, 4.039618 ], [ 114.609375, 4.214943 ], [ 114.785156, 4.214943 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.312500, 4.565474 ], [ 115.488281, 4.565474 ], [ 115.488281, 5.441022 ], [ 115.664062, 5.441022 ], [ 115.664062, 5.615986 ], [ 115.839844, 5.615986 ], [ 115.839844, 5.790897 ], [ 116.015625, 5.790897 ], [ 116.015625, 5.965754 ], [ 116.191406, 5.965754 ], [ 116.191406, 6.140555 ], [ 116.367188, 6.140555 ], [ 116.367188, 6.489983 ], [ 116.542969, 6.489983 ], [ 116.542969, 6.664608 ], [ 116.718750, 6.664608 ], [ 116.718750, 6.839170 ], [ 117.246094, 6.839170 ] ] ], [ [ [ 100.546875, 6.489983 ], [ 100.546875, 6.315299 ], [ 100.898438, 6.315299 ], [ 100.898438, 6.140555 ], [ 101.074219, 6.140555 ], [ 101.074219, 5.615986 ], [ 101.601562, 5.615986 ], [ 101.601562, 5.790897 ], [ 101.953125, 5.790897 ], [ 101.953125, 5.965754 ], [ 102.128906, 5.965754 ], [ 102.128906, 6.140555 ], [ 102.304688, 6.140555 ], [ 102.304688, 5.965754 ], [ 102.480469, 5.965754 ], [ 102.480469, 5.790897 ], [ 102.656250, 5.790897 ], [ 102.656250, 5.615986 ], [ 102.832031, 5.615986 ], [ 102.832031, 5.441022 ], [ 103.007812, 5.441022 ], [ 103.007812, 5.266008 ], [ 103.183594, 5.266008 ], [ 103.183594, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 2.986927 ], [ 103.535156, 2.986927 ], [ 103.535156, 2.635789 ], [ 103.710938, 2.635789 ], [ 103.710938, 2.460181 ], [ 103.886719, 2.460181 ], [ 103.886719, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.238281, 1.757537 ], [ 104.238281, 1.230374 ], [ 103.359375, 1.230374 ], [ 103.359375, 1.406109 ], [ 103.183594, 1.406109 ], [ 103.183594, 1.581830 ], [ 102.832031, 1.581830 ], [ 102.832031, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 1.933227 ], [ 102.480469, 1.933227 ], [ 102.480469, 2.108899 ], [ 102.128906, 2.108899 ], [ 102.128906, 2.284551 ], [ 101.953125, 2.284551 ], [ 101.953125, 2.460181 ], [ 101.777344, 2.460181 ], [ 101.777344, 2.635789 ], [ 101.425781, 2.635789 ], [ 101.425781, 2.986927 ], [ 101.250000, 2.986927 ], [ 101.250000, 3.337954 ], [ 101.074219, 3.337954 ], [ 101.074219, 3.513421 ], [ 100.898438, 3.513421 ], [ 100.898438, 3.688855 ], [ 100.722656, 3.688855 ], [ 100.722656, 4.214943 ], [ 100.546875, 4.214943 ], [ 100.546875, 4.740675 ], [ 100.371094, 4.740675 ], [ 100.371094, 5.090944 ], [ 100.195312, 5.090944 ], [ 100.195312, 5.615986 ], [ 100.371094, 5.615986 ], [ 100.371094, 5.965754 ], [ 100.195312, 5.965754 ], [ 100.195312, 6.315299 ], [ 100.019531, 6.315299 ], [ 100.019531, 6.489983 ], [ 100.546875, 6.489983 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.070312, 7.013668 ], [ 117.070312, 6.839170 ], [ 117.246094, 6.839170 ], [ 117.246094, 6.664608 ], [ 117.421875, 6.664608 ], [ 117.421875, 6.489983 ], [ 117.597656, 6.489983 ], [ 117.597656, 5.965754 ], [ 117.949219, 5.965754 ], [ 117.949219, 5.790897 ], [ 118.476562, 5.790897 ], [ 118.476562, 5.615986 ], [ 118.828125, 5.615986 ], [ 118.828125, 5.441022 ], [ 119.179688, 5.441022 ], [ 119.179688, 5.266008 ], [ 119.003906, 5.266008 ], [ 119.003906, 5.090944 ], [ 118.300781, 5.090944 ], [ 118.300781, 4.740675 ], [ 118.476562, 4.740675 ], [ 118.476562, 4.390229 ], [ 118.125000, 4.390229 ], [ 118.125000, 4.214943 ], [ 117.246094, 4.214943 ], [ 117.246094, 4.390229 ], [ 115.839844, 4.390229 ], [ 115.839844, 4.039618 ], [ 115.664062, 4.039618 ], [ 115.664062, 3.513421 ], [ 115.488281, 3.513421 ], [ 115.488281, 3.162456 ], [ 115.312500, 3.162456 ], [ 115.312500, 2.986927 ], [ 115.136719, 2.986927 ], [ 115.136719, 2.635789 ], [ 114.960938, 2.635789 ], [ 114.960938, 2.284551 ], [ 114.785156, 2.284551 ], [ 114.785156, 1.757537 ], [ 114.609375, 1.757537 ], [ 114.609375, 1.581830 ], [ 114.433594, 1.581830 ], [ 114.433594, 1.406109 ], [ 114.082031, 1.406109 ], [ 114.082031, 1.230374 ], [ 113.378906, 1.230374 ], [ 113.378906, 1.406109 ], [ 113.027344, 1.406109 ], [ 113.027344, 1.581830 ], [ 112.324219, 1.581830 ], [ 112.324219, 1.406109 ], [ 112.148438, 1.406109 ], [ 112.148438, 1.230374 ], [ 111.972656, 1.230374 ], [ 111.972656, 1.054628 ], [ 110.917969, 1.054628 ], [ 110.917969, 0.878872 ], [ 110.214844, 0.878872 ], [ 110.214844, 1.054628 ], [ 109.863281, 1.054628 ], [ 109.863281, 1.230374 ], [ 109.687500, 1.230374 ], [ 109.687500, 1.757537 ], [ 109.511719, 1.757537 ], [ 109.511719, 2.108899 ], [ 109.687500, 2.108899 ], [ 109.687500, 1.933227 ], [ 110.039062, 1.933227 ], [ 110.039062, 1.757537 ], [ 110.917969, 1.757537 ], [ 110.917969, 1.933227 ], [ 111.093750, 1.933227 ], [ 111.093750, 2.284551 ], [ 111.269531, 2.284551 ], [ 111.269531, 2.811371 ], [ 111.621094, 2.811371 ], [ 111.621094, 2.986927 ], [ 112.500000, 2.986927 ], [ 112.500000, 3.162456 ], [ 113.027344, 3.162456 ], [ 113.027344, 3.337954 ], [ 113.203125, 3.337954 ], [ 113.203125, 3.688855 ], [ 113.378906, 3.688855 ], [ 113.378906, 3.864255 ], [ 113.554688, 3.864255 ], [ 113.554688, 4.039618 ], [ 113.730469, 4.039618 ], [ 113.730469, 4.214943 ], [ 113.906250, 4.214943 ], [ 113.906250, 4.390229 ], [ 114.257812, 4.390229 ], [ 114.257812, 4.214943 ], [ 114.433594, 4.214943 ], [ 114.433594, 4.039618 ], [ 114.609375, 4.039618 ], [ 114.609375, 4.214943 ], [ 114.785156, 4.214943 ], [ 114.785156, 4.390229 ], [ 115.312500, 4.390229 ], [ 115.312500, 5.615986 ], [ 115.488281, 5.615986 ], [ 115.488281, 5.790897 ], [ 115.839844, 5.790897 ], [ 115.839844, 5.965754 ], [ 116.191406, 5.965754 ], [ 116.191406, 6.140555 ], [ 116.367188, 6.140555 ], [ 116.367188, 6.489983 ], [ 116.542969, 6.489983 ], [ 116.542969, 6.839170 ], [ 116.718750, 6.839170 ], [ 116.718750, 7.013668 ], [ 117.070312, 7.013668 ] ] ], [ [ [ 100.371094, 6.664608 ], [ 100.371094, 6.489983 ], [ 100.722656, 6.489983 ], [ 100.722656, 6.315299 ], [ 101.074219, 6.315299 ], [ 101.074219, 5.790897 ], [ 101.601562, 5.790897 ], [ 101.601562, 5.965754 ], [ 101.953125, 5.965754 ], [ 101.953125, 6.140555 ], [ 102.304688, 6.140555 ], [ 102.304688, 5.965754 ], [ 102.480469, 5.965754 ], [ 102.480469, 5.790897 ], [ 102.656250, 5.790897 ], [ 102.656250, 5.615986 ], [ 102.832031, 5.615986 ], [ 102.832031, 5.441022 ], [ 103.007812, 5.441022 ], [ 103.007812, 5.266008 ], [ 103.183594, 5.266008 ], [ 103.183594, 4.915833 ], [ 103.359375, 4.915833 ], [ 103.359375, 4.039618 ], [ 103.183594, 4.039618 ], [ 103.183594, 3.688855 ], [ 103.359375, 3.688855 ], [ 103.359375, 2.635789 ], [ 103.710938, 2.635789 ], [ 103.710938, 2.460181 ], [ 103.886719, 2.460181 ], [ 103.886719, 2.108899 ], [ 104.062500, 2.108899 ], [ 104.062500, 1.757537 ], [ 104.238281, 1.757537 ], [ 104.238281, 1.581830 ], [ 104.062500, 1.581830 ], [ 104.062500, 1.406109 ], [ 103.886719, 1.406109 ], [ 103.886719, 1.230374 ], [ 103.183594, 1.230374 ], [ 103.183594, 1.406109 ], [ 103.007812, 1.406109 ], [ 103.007812, 1.581830 ], [ 102.832031, 1.581830 ], [ 102.832031, 1.757537 ], [ 102.656250, 1.757537 ], [ 102.656250, 1.933227 ], [ 102.480469, 1.933227 ], [ 102.480469, 2.108899 ], [ 102.304688, 2.108899 ], [ 102.304688, 2.284551 ], [ 101.953125, 2.284551 ], [ 101.953125, 2.460181 ], [ 101.601562, 2.460181 ], [ 101.601562, 2.635789 ], [ 101.250000, 2.635789 ], [ 101.250000, 3.337954 ], [ 101.074219, 3.337954 ], [ 101.074219, 3.513421 ], [ 100.898438, 3.513421 ], [ 100.898438, 3.688855 ], [ 100.722656, 3.688855 ], [ 100.722656, 3.864255 ], [ 100.546875, 3.864255 ], [ 100.546875, 4.915833 ], [ 100.371094, 4.915833 ], [ 100.371094, 5.266008 ], [ 100.195312, 5.266008 ], [ 100.195312, 6.315299 ], [ 100.019531, 6.315299 ], [ 100.019531, 6.489983 ], [ 100.195312, 6.489983 ], [ 100.195312, 6.664608 ], [ 100.371094, 6.664608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.816406, 25.165173 ], [ 121.816406, 25.005973 ], [ 121.992188, 25.005973 ], [ 121.992188, 24.686952 ], [ 121.816406, 24.686952 ], [ 121.816406, 24.046464 ], [ 121.640625, 24.046464 ], [ 121.640625, 23.725012 ], [ 121.464844, 23.725012 ], [ 121.464844, 23.241346 ], [ 121.289062, 23.241346 ], [ 121.289062, 22.917923 ], [ 121.113281, 22.917923 ], [ 121.113281, 22.431340 ], [ 120.937500, 22.431340 ], [ 120.937500, 22.105999 ], [ 120.761719, 22.105999 ], [ 120.761719, 21.943046 ], [ 120.585938, 21.943046 ], [ 120.585938, 22.268764 ], [ 120.410156, 22.268764 ], [ 120.410156, 22.593726 ], [ 120.234375, 22.593726 ], [ 120.234375, 23.079732 ], [ 120.058594, 23.079732 ], [ 120.058594, 23.563987 ], [ 120.234375, 23.563987 ], [ 120.234375, 23.885838 ], [ 120.410156, 23.885838 ], [ 120.410156, 24.046464 ], [ 120.585938, 24.046464 ], [ 120.585938, 24.367114 ], [ 120.761719, 24.367114 ], [ 120.761719, 24.527135 ], [ 120.937500, 24.527135 ], [ 120.937500, 24.686952 ], [ 121.113281, 24.686952 ], [ 121.113281, 25.005973 ], [ 121.289062, 25.005973 ], [ 121.289062, 25.165173 ], [ 121.816406, 25.165173 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.640625, 25.165173 ], [ 121.640625, 25.005973 ], [ 121.816406, 25.005973 ], [ 121.816406, 24.686952 ], [ 121.640625, 24.686952 ], [ 121.640625, 24.206890 ], [ 121.464844, 24.206890 ], [ 121.464844, 23.725012 ], [ 121.289062, 23.725012 ], [ 121.289062, 23.079732 ], [ 121.113281, 23.079732 ], [ 121.113281, 22.755921 ], [ 120.937500, 22.755921 ], [ 120.937500, 22.431340 ], [ 120.761719, 22.431340 ], [ 120.761719, 22.105999 ], [ 120.410156, 22.105999 ], [ 120.410156, 22.431340 ], [ 120.234375, 22.431340 ], [ 120.234375, 22.755921 ], [ 120.058594, 22.755921 ], [ 120.058594, 23.725012 ], [ 120.234375, 23.725012 ], [ 120.234375, 24.046464 ], [ 120.410156, 24.046464 ], [ 120.410156, 24.367114 ], [ 120.585938, 24.367114 ], [ 120.585938, 24.686952 ], [ 120.761719, 24.686952 ], [ 120.761719, 24.846565 ], [ 120.937500, 24.846565 ], [ 120.937500, 25.005973 ], [ 121.289062, 25.005973 ], [ 121.289062, 25.165173 ], [ 121.640625, 25.165173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.726562, 41.640078 ], [ 129.726562, 40.847060 ], [ 129.550781, 40.847060 ], [ 129.550781, 40.713956 ], [ 129.199219, 40.713956 ], [ 129.199219, 40.580585 ], [ 129.023438, 40.580585 ], [ 129.023438, 40.313043 ], [ 128.847656, 40.313043 ], [ 128.847656, 40.178873 ], [ 128.496094, 40.178873 ], [ 128.496094, 40.044438 ], [ 127.968750, 40.044438 ], [ 127.968750, 39.909736 ], [ 127.792969, 39.909736 ], [ 127.792969, 39.774769 ], [ 127.617188, 39.774769 ], [ 127.617188, 39.504041 ], [ 127.441406, 39.504041 ], [ 127.441406, 39.095963 ], [ 127.792969, 39.095963 ], [ 127.792969, 38.959409 ], [ 127.968750, 38.959409 ], [ 127.968750, 38.822591 ], [ 128.144531, 38.822591 ], [ 128.144531, 38.548165 ], [ 128.320312, 38.548165 ], [ 128.320312, 38.410558 ], [ 128.144531, 38.410558 ], [ 128.144531, 38.272689 ], [ 127.089844, 38.272689 ], [ 127.089844, 38.134557 ], [ 126.914062, 38.134557 ], [ 126.914062, 37.857507 ], [ 126.210938, 37.857507 ], [ 126.210938, 37.718590 ], [ 126.035156, 37.718590 ], [ 126.035156, 37.857507 ], [ 125.507812, 37.857507 ], [ 125.507812, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.980469, 37.857507 ], [ 124.980469, 37.996163 ], [ 124.628906, 37.996163 ], [ 124.628906, 38.134557 ], [ 124.804688, 38.134557 ], [ 124.804688, 38.410558 ], [ 124.980469, 38.410558 ], [ 124.980469, 38.548165 ], [ 125.156250, 38.548165 ], [ 125.156250, 39.095963 ], [ 125.332031, 39.095963 ], [ 125.332031, 39.504041 ], [ 124.980469, 39.504041 ], [ 124.980469, 39.639538 ], [ 124.628906, 39.639538 ], [ 124.628906, 39.774769 ], [ 124.277344, 39.774769 ], [ 124.277344, 39.909736 ], [ 124.453125, 39.909736 ], [ 124.453125, 40.044438 ], [ 124.628906, 40.044438 ], [ 124.628906, 40.178873 ], [ 124.804688, 40.178873 ], [ 124.804688, 40.313043 ], [ 124.980469, 40.313043 ], [ 124.980469, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.580585 ], [ 125.332031, 40.580585 ], [ 125.332031, 40.713956 ], [ 125.683594, 40.713956 ], [ 125.683594, 40.847060 ], [ 125.859375, 40.847060 ], [ 125.859375, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 41.112469 ], [ 126.386719, 41.112469 ], [ 126.386719, 41.376809 ], [ 126.562500, 41.376809 ], [ 126.562500, 41.508577 ], [ 126.738281, 41.508577 ], [ 126.738281, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.640078 ], [ 129.726562, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.550781, 41.640078 ], [ 129.550781, 40.847060 ], [ 129.199219, 40.847060 ], [ 129.199219, 40.713956 ], [ 129.023438, 40.713956 ], [ 129.023438, 40.580585 ], [ 128.847656, 40.580585 ], [ 128.847656, 40.446947 ], [ 128.671875, 40.446947 ], [ 128.671875, 40.313043 ], [ 128.496094, 40.313043 ], [ 128.496094, 40.178873 ], [ 128.144531, 40.178873 ], [ 128.144531, 40.044438 ], [ 127.968750, 40.044438 ], [ 127.968750, 39.909736 ], [ 127.617188, 39.909736 ], [ 127.617188, 39.774769 ], [ 127.441406, 39.774769 ], [ 127.441406, 39.232253 ], [ 127.265625, 39.232253 ], [ 127.265625, 39.095963 ], [ 127.617188, 39.095963 ], [ 127.617188, 38.959409 ], [ 127.792969, 38.959409 ], [ 127.792969, 38.822591 ], [ 128.144531, 38.822591 ], [ 128.144531, 38.685510 ], [ 128.320312, 38.685510 ], [ 128.320312, 38.548165 ], [ 128.144531, 38.548165 ], [ 128.144531, 38.410558 ], [ 127.441406, 38.410558 ], [ 127.441406, 38.272689 ], [ 126.914062, 38.272689 ], [ 126.914062, 38.134557 ], [ 126.738281, 38.134557 ], [ 126.738281, 37.857507 ], [ 125.507812, 37.857507 ], [ 125.507812, 37.718590 ], [ 125.156250, 37.718590 ], [ 125.156250, 37.857507 ], [ 124.980469, 37.857507 ], [ 124.980469, 37.996163 ], [ 124.628906, 37.996163 ], [ 124.628906, 38.134557 ], [ 124.804688, 38.134557 ], [ 124.804688, 38.410558 ], [ 124.980469, 38.410558 ], [ 124.980469, 38.548165 ], [ 125.156250, 38.548165 ], [ 125.156250, 38.822591 ], [ 124.980469, 38.822591 ], [ 124.980469, 39.095963 ], [ 125.156250, 39.095963 ], [ 125.156250, 39.368279 ], [ 125.332031, 39.368279 ], [ 125.332031, 39.504041 ], [ 125.156250, 39.504041 ], [ 125.156250, 39.639538 ], [ 124.804688, 39.639538 ], [ 124.804688, 39.774769 ], [ 124.453125, 39.774769 ], [ 124.453125, 39.909736 ], [ 124.101562, 39.909736 ], [ 124.101562, 40.044438 ], [ 124.277344, 40.044438 ], [ 124.277344, 40.178873 ], [ 124.453125, 40.178873 ], [ 124.453125, 40.313043 ], [ 124.804688, 40.313043 ], [ 124.804688, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.713956 ], [ 125.507812, 40.713956 ], [ 125.507812, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.979898 ], [ 126.035156, 40.979898 ], [ 126.035156, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 41.376809 ], [ 126.386719, 41.376809 ], [ 126.386719, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.640078 ], [ 129.550781, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.496094, 38.410558 ], [ 128.496094, 38.134557 ], [ 128.671875, 38.134557 ], [ 128.671875, 37.996163 ], [ 128.847656, 37.996163 ], [ 128.847656, 37.718590 ], [ 129.023438, 37.718590 ], [ 129.023438, 37.439974 ], [ 129.199219, 37.439974 ], [ 129.199219, 37.020098 ], [ 129.375000, 37.020098 ], [ 129.375000, 36.173357 ], [ 129.550781, 36.173357 ], [ 129.550781, 35.460670 ], [ 129.375000, 35.460670 ], [ 129.375000, 35.317366 ], [ 129.199219, 35.317366 ], [ 129.199219, 35.029996 ], [ 128.671875, 35.029996 ], [ 128.671875, 34.885931 ], [ 128.144531, 34.885931 ], [ 128.144531, 34.741612 ], [ 127.968750, 34.741612 ], [ 127.968750, 34.597042 ], [ 127.617188, 34.597042 ], [ 127.617188, 34.452218 ], [ 126.562500, 34.452218 ], [ 126.562500, 34.597042 ], [ 126.386719, 34.597042 ], [ 126.386719, 35.317366 ], [ 126.562500, 35.317366 ], [ 126.562500, 35.889050 ], [ 126.386719, 35.889050 ], [ 126.386719, 36.173357 ], [ 126.210938, 36.173357 ], [ 126.210938, 36.456636 ], [ 126.035156, 36.456636 ], [ 126.035156, 36.738884 ], [ 126.562500, 36.738884 ], [ 126.562500, 36.879621 ], [ 126.738281, 36.879621 ], [ 126.738281, 37.160317 ], [ 126.562500, 37.160317 ], [ 126.562500, 37.300275 ], [ 126.386719, 37.300275 ], [ 126.386719, 37.579413 ], [ 126.210938, 37.579413 ], [ 126.210938, 37.857507 ], [ 126.914062, 37.857507 ], [ 126.914062, 38.134557 ], [ 127.089844, 38.134557 ], [ 127.089844, 38.272689 ], [ 128.144531, 38.272689 ], [ 128.144531, 38.410558 ], [ 128.496094, 38.410558 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.496094, 38.548165 ], [ 128.496094, 38.272689 ], [ 128.671875, 38.272689 ], [ 128.671875, 37.996163 ], [ 128.847656, 37.996163 ], [ 128.847656, 37.718590 ], [ 129.023438, 37.718590 ], [ 129.023438, 37.439974 ], [ 129.199219, 37.439974 ], [ 129.199219, 37.160317 ], [ 129.375000, 37.160317 ], [ 129.375000, 35.603719 ], [ 129.199219, 35.603719 ], [ 129.199219, 35.317366 ], [ 129.023438, 35.317366 ], [ 129.023438, 35.173808 ], [ 128.671875, 35.173808 ], [ 128.671875, 35.029996 ], [ 128.144531, 35.029996 ], [ 128.144531, 34.885931 ], [ 127.792969, 34.885931 ], [ 127.792969, 34.741612 ], [ 127.441406, 34.741612 ], [ 127.441406, 34.597042 ], [ 126.914062, 34.597042 ], [ 126.914062, 34.452218 ], [ 126.386719, 34.452218 ], [ 126.386719, 34.741612 ], [ 126.210938, 34.741612 ], [ 126.210938, 35.317366 ], [ 126.386719, 35.317366 ], [ 126.386719, 35.889050 ], [ 126.210938, 35.889050 ], [ 126.210938, 36.456636 ], [ 126.035156, 36.456636 ], [ 126.035156, 36.738884 ], [ 126.386719, 36.738884 ], [ 126.386719, 36.879621 ], [ 126.738281, 36.879621 ], [ 126.738281, 37.020098 ], [ 126.562500, 37.020098 ], [ 126.562500, 37.300275 ], [ 126.386719, 37.300275 ], [ 126.386719, 37.439974 ], [ 126.210938, 37.439974 ], [ 126.210938, 37.718590 ], [ 126.035156, 37.718590 ], [ 126.035156, 37.857507 ], [ 126.738281, 37.857507 ], [ 126.738281, 38.134557 ], [ 126.914062, 38.134557 ], [ 126.914062, 38.272689 ], [ 127.441406, 38.272689 ], [ 127.441406, 38.410558 ], [ 128.144531, 38.410558 ], [ 128.144531, 38.548165 ], [ 128.496094, 38.548165 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.683594, 9.622414 ], [ 125.683594, 9.449062 ], [ 126.035156, 9.449062 ], [ 126.035156, 9.275622 ], [ 126.210938, 9.275622 ], [ 126.210938, 8.928487 ], [ 126.386719, 8.928487 ], [ 126.386719, 8.059230 ], [ 126.562500, 8.059230 ], [ 126.562500, 6.839170 ], [ 126.386719, 6.839170 ], [ 126.386719, 6.489983 ], [ 126.035156, 6.489983 ], [ 126.035156, 7.013668 ], [ 125.859375, 7.013668 ], [ 125.859375, 7.188101 ], [ 125.683594, 7.188101 ], [ 125.683594, 7.013668 ], [ 125.507812, 7.013668 ], [ 125.507812, 6.839170 ], [ 125.332031, 6.839170 ], [ 125.332031, 6.489983 ], [ 125.507812, 6.489983 ], [ 125.507812, 6.140555 ], [ 125.683594, 6.140555 ], [ 125.683594, 5.790897 ], [ 125.507812, 5.790897 ], [ 125.507812, 5.615986 ], [ 124.980469, 5.615986 ], [ 124.980469, 5.790897 ], [ 124.628906, 5.790897 ], [ 124.628906, 5.965754 ], [ 124.277344, 5.965754 ], [ 124.277344, 6.315299 ], [ 124.101562, 6.315299 ], [ 124.101562, 6.664608 ], [ 123.925781, 6.664608 ], [ 123.925781, 6.839170 ], [ 124.101562, 6.839170 ], [ 124.101562, 7.188101 ], [ 124.277344, 7.188101 ], [ 124.277344, 7.362467 ], [ 124.101562, 7.362467 ], [ 124.101562, 7.536764 ], [ 123.750000, 7.536764 ], [ 123.750000, 7.710992 ], [ 123.398438, 7.710992 ], [ 123.398438, 7.362467 ], [ 122.695312, 7.362467 ], [ 122.695312, 7.188101 ], [ 122.519531, 7.188101 ], [ 122.519531, 7.013668 ], [ 122.343750, 7.013668 ], [ 122.343750, 6.839170 ], [ 122.167969, 6.839170 ], [ 122.167969, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.362467 ], [ 122.167969, 7.362467 ], [ 122.167969, 7.710992 ], [ 122.343750, 7.710992 ], [ 122.343750, 8.059230 ], [ 122.695312, 8.059230 ], [ 122.695312, 8.233237 ], [ 123.046875, 8.233237 ], [ 123.046875, 8.407168 ], [ 123.398438, 8.407168 ], [ 123.398438, 8.581021 ], [ 123.750000, 8.581021 ], [ 123.750000, 8.233237 ], [ 124.277344, 8.233237 ], [ 124.277344, 8.407168 ], [ 124.628906, 8.407168 ], [ 124.628906, 8.754795 ], [ 124.804688, 8.754795 ], [ 124.804688, 8.928487 ], [ 125.507812, 8.928487 ], [ 125.507812, 9.275622 ], [ 125.332031, 9.275622 ], [ 125.332031, 9.622414 ], [ 125.683594, 9.622414 ] ] ], [ [ [ 121.289062, 18.479609 ], [ 121.289062, 18.312811 ], [ 121.640625, 18.312811 ], [ 121.640625, 18.145852 ], [ 121.992188, 18.145852 ], [ 121.992188, 18.312811 ], [ 122.343750, 18.312811 ], [ 122.343750, 17.978733 ], [ 122.167969, 17.978733 ], [ 122.167969, 17.644022 ], [ 122.343750, 17.644022 ], [ 122.343750, 17.308688 ], [ 122.519531, 17.308688 ], [ 122.519531, 16.804541 ], [ 122.343750, 16.804541 ], [ 122.343750, 16.467695 ], [ 122.167969, 16.467695 ], [ 122.167969, 16.130262 ], [ 121.816406, 16.130262 ], [ 121.816406, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 15.453680 ], [ 121.464844, 15.453680 ], [ 121.464844, 14.774883 ], [ 121.640625, 14.774883 ], [ 121.640625, 14.434680 ], [ 121.816406, 14.434680 ], [ 121.816406, 14.264383 ], [ 122.871094, 14.264383 ], [ 122.871094, 14.093957 ], [ 123.222656, 14.093957 ], [ 123.222656, 13.923404 ], [ 123.574219, 13.923404 ], [ 123.574219, 13.752725 ], [ 123.925781, 13.752725 ], [ 123.925781, 13.068777 ], [ 124.101562, 13.068777 ], [ 124.101562, 12.554564 ], [ 123.925781, 12.554564 ], [ 123.925781, 12.726084 ], [ 123.574219, 12.726084 ], [ 123.574219, 12.897489 ], [ 123.222656, 12.897489 ], [ 123.222656, 13.068777 ], [ 123.046875, 13.068777 ], [ 123.046875, 13.410994 ], [ 122.695312, 13.410994 ], [ 122.695312, 13.239945 ], [ 122.519531, 13.239945 ], [ 122.519531, 13.410994 ], [ 122.167969, 13.410994 ], [ 122.167969, 13.581921 ], [ 121.992188, 13.581921 ], [ 121.992188, 13.752725 ], [ 121.640625, 13.752725 ], [ 121.640625, 13.581921 ], [ 120.937500, 13.581921 ], [ 120.937500, 13.752725 ], [ 120.585938, 13.752725 ], [ 120.585938, 14.093957 ], [ 120.761719, 14.093957 ], [ 120.761719, 14.434680 ], [ 120.937500, 14.434680 ], [ 120.937500, 14.604847 ], [ 120.585938, 14.604847 ], [ 120.585938, 14.434680 ], [ 120.410156, 14.434680 ], [ 120.410156, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.774883 ], [ 120.058594, 14.774883 ], [ 120.058594, 15.114553 ], [ 119.882812, 15.114553 ], [ 119.882812, 16.130262 ], [ 120.058594, 16.130262 ], [ 120.058594, 15.961329 ], [ 120.234375, 15.961329 ], [ 120.234375, 16.804541 ], [ 120.410156, 16.804541 ], [ 120.410156, 17.811456 ], [ 120.585938, 17.811456 ], [ 120.585938, 18.145852 ], [ 120.761719, 18.145852 ], [ 120.761719, 18.479609 ], [ 121.289062, 18.479609 ] ] ], [ [ [ 122.167969, 11.695273 ], [ 122.167969, 11.523088 ], [ 123.046875, 11.523088 ], [ 123.046875, 11.005904 ], [ 122.871094, 11.005904 ], [ 122.871094, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 11.005904 ], [ 123.574219, 11.005904 ], [ 123.574219, 10.660608 ], [ 123.398438, 10.660608 ], [ 123.398438, 10.314919 ], [ 123.574219, 10.314919 ], [ 123.574219, 10.487812 ], [ 123.750000, 10.487812 ], [ 123.750000, 10.833306 ], [ 123.925781, 10.833306 ], [ 123.925781, 11.005904 ], [ 124.101562, 11.005904 ], [ 124.101562, 10.660608 ], [ 123.925781, 10.660608 ], [ 123.925781, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 9.968851 ], [ 123.574219, 9.968851 ], [ 123.574219, 9.795678 ], [ 123.398438, 9.795678 ], [ 123.398438, 9.449062 ], [ 123.222656, 9.449062 ], [ 123.222656, 9.102097 ], [ 122.871094, 9.102097 ], [ 122.871094, 9.275622 ], [ 122.695312, 9.275622 ], [ 122.695312, 9.449062 ], [ 122.519531, 9.449062 ], [ 122.519531, 9.622414 ], [ 122.343750, 9.622414 ], [ 122.343750, 9.795678 ], [ 122.519531, 9.795678 ], [ 122.519531, 9.968851 ], [ 122.695312, 9.968851 ], [ 122.695312, 10.141932 ], [ 122.871094, 10.141932 ], [ 122.871094, 10.660608 ], [ 122.519531, 10.660608 ], [ 122.519531, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.523088 ], [ 121.816406, 11.523088 ], [ 121.816406, 11.695273 ], [ 122.167969, 11.695273 ] ] ], [ [ [ 117.421875, 8.581021 ], [ 117.421875, 8.407168 ], [ 117.246094, 8.407168 ], [ 117.246094, 8.581021 ], [ 117.421875, 8.581021 ] ] ], [ [ [ 119.531250, 10.833306 ], [ 119.707031, 10.833306 ], [ 119.707031, 10.314919 ], [ 119.531250, 10.314919 ], [ 119.531250, 10.141932 ], [ 119.179688, 10.141932 ], [ 119.179688, 9.968851 ], [ 119.003906, 9.968851 ], [ 119.003906, 9.795678 ], [ 118.828125, 9.795678 ], [ 118.828125, 9.622414 ], [ 118.652344, 9.622414 ], [ 118.652344, 9.275622 ], [ 118.476562, 9.275622 ], [ 118.476562, 9.102097 ], [ 118.125000, 9.102097 ], [ 118.125000, 8.928487 ], [ 117.949219, 8.928487 ], [ 117.949219, 8.754795 ], [ 117.773438, 8.754795 ], [ 117.773438, 8.581021 ], [ 117.421875, 8.581021 ], [ 117.421875, 8.928487 ], [ 117.597656, 8.928487 ], [ 117.597656, 9.102097 ], [ 117.773438, 9.102097 ], [ 117.773438, 9.275622 ], [ 118.125000, 9.275622 ], [ 118.125000, 9.449062 ], [ 118.300781, 9.449062 ], [ 118.300781, 9.622414 ], [ 118.476562, 9.622414 ], [ 118.476562, 9.795678 ], [ 118.652344, 9.795678 ], [ 118.652344, 9.968851 ], [ 118.828125, 9.968851 ], [ 118.828125, 10.141932 ], [ 119.003906, 10.141932 ], [ 119.003906, 10.487812 ], [ 119.179688, 10.487812 ], [ 119.179688, 10.833306 ], [ 119.355469, 10.833306 ], [ 119.355469, 11.178402 ], [ 119.531250, 11.178402 ], [ 119.531250, 10.833306 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.156250, 12.382928 ], [ 125.332031, 12.382928 ], [ 125.332031, 12.211180 ], [ 125.507812, 12.211180 ], [ 125.507812, 11.867351 ], [ 125.683594, 11.867351 ], [ 125.683594, 11.178402 ], [ 125.859375, 11.178402 ], [ 125.859375, 11.005904 ], [ 125.507812, 11.005904 ], [ 125.507812, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 11.350797 ], [ 124.980469, 11.350797 ], [ 124.980469, 10.833306 ], [ 125.156250, 10.833306 ], [ 125.156250, 10.487812 ], [ 125.332031, 10.487812 ], [ 125.332031, 10.314919 ], [ 125.156250, 10.314919 ], [ 125.156250, 10.141932 ], [ 124.804688, 10.141932 ], [ 124.804688, 10.833306 ], [ 124.453125, 10.833306 ], [ 124.453125, 11.178402 ], [ 124.277344, 11.178402 ], [ 124.277344, 11.523088 ], [ 124.453125, 11.523088 ], [ 124.453125, 11.350797 ], [ 124.804688, 11.350797 ], [ 124.804688, 11.867351 ], [ 124.628906, 11.867351 ], [ 124.628906, 12.211180 ], [ 124.453125, 12.211180 ], [ 124.453125, 12.382928 ], [ 124.277344, 12.382928 ], [ 124.277344, 12.554564 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 121.113281, 13.410994 ], [ 121.113281, 13.239945 ], [ 121.289062, 13.239945 ], [ 121.289062, 13.068777 ], [ 121.464844, 13.068777 ], [ 121.464844, 12.554564 ], [ 121.289062, 12.554564 ], [ 121.289062, 12.211180 ], [ 121.113281, 12.211180 ], [ 121.113281, 12.382928 ], [ 120.937500, 12.382928 ], [ 120.937500, 12.554564 ], [ 120.761719, 12.554564 ], [ 120.761719, 12.897489 ], [ 120.585938, 12.897489 ], [ 120.585938, 13.239945 ], [ 120.410156, 13.239945 ], [ 120.410156, 13.410994 ], [ 121.113281, 13.410994 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.507812, 9.795678 ], [ 125.507812, 9.622414 ], [ 125.859375, 9.622414 ], [ 125.859375, 9.449062 ], [ 126.210938, 9.449062 ], [ 126.210938, 8.233237 ], [ 126.386719, 8.233237 ], [ 126.386719, 6.839170 ], [ 126.210938, 6.839170 ], [ 126.210938, 6.489983 ], [ 125.859375, 6.489983 ], [ 125.859375, 7.013668 ], [ 125.683594, 7.013668 ], [ 125.683594, 7.188101 ], [ 125.507812, 7.188101 ], [ 125.507812, 6.839170 ], [ 125.332031, 6.839170 ], [ 125.332031, 6.664608 ], [ 125.507812, 6.664608 ], [ 125.507812, 6.315299 ], [ 125.683594, 6.315299 ], [ 125.683594, 5.965754 ], [ 125.507812, 5.965754 ], [ 125.507812, 5.615986 ], [ 125.156250, 5.615986 ], [ 125.156250, 5.790897 ], [ 124.804688, 5.790897 ], [ 124.804688, 5.965754 ], [ 124.453125, 5.965754 ], [ 124.453125, 6.140555 ], [ 124.101562, 6.140555 ], [ 124.101562, 6.664608 ], [ 123.925781, 6.664608 ], [ 123.925781, 7.188101 ], [ 124.101562, 7.188101 ], [ 124.101562, 7.362467 ], [ 123.925781, 7.362467 ], [ 123.925781, 7.536764 ], [ 123.750000, 7.536764 ], [ 123.750000, 7.710992 ], [ 123.398438, 7.710992 ], [ 123.398438, 7.536764 ], [ 122.695312, 7.536764 ], [ 122.695312, 7.362467 ], [ 122.519531, 7.362467 ], [ 122.519531, 7.188101 ], [ 122.167969, 7.188101 ], [ 122.167969, 7.013668 ], [ 121.992188, 7.013668 ], [ 121.992188, 7.188101 ], [ 121.816406, 7.188101 ], [ 121.816406, 7.536764 ], [ 121.992188, 7.536764 ], [ 121.992188, 7.885147 ], [ 122.167969, 7.885147 ], [ 122.167969, 8.059230 ], [ 122.519531, 8.059230 ], [ 122.519531, 8.233237 ], [ 122.871094, 8.233237 ], [ 122.871094, 8.407168 ], [ 123.046875, 8.407168 ], [ 123.046875, 8.581021 ], [ 123.574219, 8.581021 ], [ 123.574219, 8.407168 ], [ 124.277344, 8.407168 ], [ 124.277344, 8.581021 ], [ 124.453125, 8.581021 ], [ 124.453125, 8.754795 ], [ 124.628906, 8.754795 ], [ 124.628906, 9.102097 ], [ 125.332031, 9.102097 ], [ 125.332031, 9.795678 ], [ 125.507812, 9.795678 ] ] ], [ [ [ 124.101562, 12.726084 ], [ 123.925781, 12.726084 ], [ 123.925781, 12.554564 ], [ 123.750000, 12.554564 ], [ 123.750000, 12.726084 ], [ 123.398438, 12.726084 ], [ 123.398438, 12.897489 ], [ 123.222656, 12.897489 ], [ 123.222656, 13.068777 ], [ 123.046875, 13.068777 ], [ 123.046875, 13.410994 ], [ 122.695312, 13.410994 ], [ 122.695312, 13.239945 ], [ 122.343750, 13.239945 ], [ 122.343750, 13.581921 ], [ 122.167969, 13.581921 ], [ 122.167969, 13.752725 ], [ 121.992188, 13.752725 ], [ 121.992188, 13.923404 ], [ 121.640625, 13.923404 ], [ 121.640625, 13.752725 ], [ 120.761719, 13.752725 ], [ 120.761719, 13.923404 ], [ 120.585938, 13.923404 ], [ 120.585938, 14.434680 ], [ 120.937500, 14.434680 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.604847 ], [ 120.234375, 14.944785 ], [ 120.058594, 14.944785 ], [ 120.058594, 15.284185 ], [ 119.882812, 15.284185 ], [ 119.882812, 16.299051 ], [ 120.058594, 16.299051 ], [ 120.058594, 16.130262 ], [ 120.234375, 16.130262 ], [ 120.234375, 17.811456 ], [ 120.410156, 17.811456 ], [ 120.410156, 18.312811 ], [ 120.585938, 18.312811 ], [ 120.585938, 18.646245 ], [ 121.289062, 18.646245 ], [ 121.289062, 18.479609 ], [ 121.640625, 18.479609 ], [ 121.640625, 18.312811 ], [ 122.167969, 18.312811 ], [ 122.167969, 17.476432 ], [ 122.343750, 17.476432 ], [ 122.343750, 16.636192 ], [ 122.167969, 16.636192 ], [ 122.167969, 16.130262 ], [ 121.816406, 16.130262 ], [ 121.816406, 15.961329 ], [ 121.640625, 15.961329 ], [ 121.640625, 15.623037 ], [ 121.464844, 15.623037 ], [ 121.464844, 14.774883 ], [ 121.640625, 14.774883 ], [ 121.640625, 14.434680 ], [ 121.816406, 14.434680 ], [ 121.816406, 14.264383 ], [ 122.519531, 14.264383 ], [ 122.519531, 14.434680 ], [ 122.871094, 14.434680 ], [ 122.871094, 14.264383 ], [ 123.222656, 14.264383 ], [ 123.222656, 14.093957 ], [ 123.574219, 14.093957 ], [ 123.574219, 13.923404 ], [ 123.925781, 13.923404 ], [ 123.925781, 13.581921 ], [ 123.750000, 13.581921 ], [ 123.750000, 13.068777 ], [ 124.101562, 13.068777 ], [ 124.101562, 12.726084 ] ] ], [ [ [ 122.167969, 11.867351 ], [ 122.167969, 11.695273 ], [ 123.046875, 11.695273 ], [ 123.046875, 11.005904 ], [ 123.398438, 11.005904 ], [ 123.398438, 10.660608 ], [ 123.574219, 10.660608 ], [ 123.574219, 10.833306 ], [ 123.750000, 10.833306 ], [ 123.750000, 11.178402 ], [ 123.925781, 11.178402 ], [ 123.925781, 10.141932 ], [ 123.750000, 10.141932 ], [ 123.750000, 9.968851 ], [ 123.574219, 9.968851 ], [ 123.574219, 9.795678 ], [ 123.398438, 9.795678 ], [ 123.398438, 9.449062 ], [ 123.222656, 9.449062 ], [ 123.222656, 9.275622 ], [ 123.046875, 9.275622 ], [ 123.046875, 9.102097 ], [ 122.695312, 9.102097 ], [ 122.695312, 9.449062 ], [ 122.519531, 9.449062 ], [ 122.519531, 9.622414 ], [ 122.343750, 9.622414 ], [ 122.343750, 9.968851 ], [ 122.519531, 9.968851 ], [ 122.519531, 10.141932 ], [ 122.695312, 10.141932 ], [ 122.695312, 10.660608 ], [ 122.871094, 10.660608 ], [ 122.871094, 11.005904 ], [ 122.695312, 11.005904 ], [ 122.695312, 10.833306 ], [ 122.519531, 10.833306 ], [ 122.519531, 10.660608 ], [ 122.167969, 10.660608 ], [ 122.167969, 10.487812 ], [ 121.992188, 10.487812 ], [ 121.992188, 10.660608 ], [ 121.816406, 10.660608 ], [ 121.816406, 11.178402 ], [ 121.992188, 11.178402 ], [ 121.992188, 11.695273 ], [ 121.816406, 11.695273 ], [ 121.816406, 11.867351 ], [ 122.167969, 11.867351 ] ], [ [ 123.398438, 10.660608 ], [ 123.222656, 10.660608 ], [ 123.222656, 10.314919 ], [ 123.398438, 10.314919 ], [ 123.398438, 10.660608 ] ] ], [ [ [ 119.355469, 11.350797 ], [ 119.355469, 11.005904 ], [ 119.531250, 11.005904 ], [ 119.531250, 10.487812 ], [ 119.355469, 10.487812 ], [ 119.355469, 10.314919 ], [ 119.179688, 10.314919 ], [ 119.179688, 10.141932 ], [ 119.003906, 10.141932 ], [ 119.003906, 9.968851 ], [ 118.828125, 9.968851 ], [ 118.828125, 9.795678 ], [ 118.652344, 9.795678 ], [ 118.652344, 9.449062 ], [ 118.476562, 9.449062 ], [ 118.476562, 9.275622 ], [ 118.300781, 9.275622 ], [ 118.300781, 9.102097 ], [ 117.949219, 9.102097 ], [ 117.949219, 8.928487 ], [ 117.773438, 8.928487 ], [ 117.773438, 8.754795 ], [ 117.597656, 8.754795 ], [ 117.597656, 8.581021 ], [ 117.246094, 8.581021 ], [ 117.246094, 8.754795 ], [ 117.421875, 8.754795 ], [ 117.421875, 8.928487 ], [ 117.597656, 8.928487 ], [ 117.597656, 9.102097 ], [ 117.773438, 9.102097 ], [ 117.773438, 9.275622 ], [ 117.949219, 9.275622 ], [ 117.949219, 9.449062 ], [ 118.125000, 9.449062 ], [ 118.125000, 9.622414 ], [ 118.300781, 9.622414 ], [ 118.300781, 9.795678 ], [ 118.476562, 9.795678 ], [ 118.476562, 10.141932 ], [ 118.652344, 10.141932 ], [ 118.652344, 10.314919 ], [ 118.828125, 10.314919 ], [ 118.828125, 10.660608 ], [ 119.003906, 10.660608 ], [ 119.003906, 11.005904 ], [ 119.179688, 11.005904 ], [ 119.179688, 11.350797 ], [ 119.355469, 11.350797 ] ] ], [ [ [ 124.101562, 12.726084 ], [ 124.453125, 12.726084 ], [ 124.453125, 12.554564 ], [ 125.156250, 12.554564 ], [ 125.156250, 12.382928 ], [ 125.332031, 12.382928 ], [ 125.332031, 11.867351 ], [ 125.507812, 11.867351 ], [ 125.507812, 11.350797 ], [ 125.683594, 11.350797 ], [ 125.683594, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 11.350797 ], [ 124.980469, 11.350797 ], [ 124.980469, 10.660608 ], [ 125.156250, 10.660608 ], [ 125.156250, 10.314919 ], [ 124.804688, 10.314919 ], [ 124.804688, 10.141932 ], [ 124.628906, 10.141932 ], [ 124.628906, 11.005904 ], [ 124.453125, 11.005904 ], [ 124.453125, 11.178402 ], [ 124.277344, 11.178402 ], [ 124.277344, 11.523088 ], [ 124.804688, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.628906, 11.867351 ], [ 124.628906, 12.039321 ], [ 124.453125, 12.039321 ], [ 124.453125, 12.382928 ], [ 124.277344, 12.382928 ], [ 124.277344, 12.554564 ], [ 124.101562, 12.554564 ], [ 124.101562, 12.726084 ] ] ], [ [ [ 121.113281, 13.581921 ], [ 121.113281, 13.410994 ], [ 121.289062, 13.410994 ], [ 121.289062, 13.068777 ], [ 121.464844, 13.068777 ], [ 121.464844, 12.726084 ], [ 121.289062, 12.726084 ], [ 121.289062, 12.382928 ], [ 121.113281, 12.382928 ], [ 121.113281, 12.211180 ], [ 120.937500, 12.211180 ], [ 120.937500, 12.554564 ], [ 120.761719, 12.554564 ], [ 120.761719, 12.726084 ], [ 120.585938, 12.726084 ], [ 120.585938, 13.068777 ], [ 120.410156, 13.068777 ], [ 120.410156, 13.410994 ], [ 120.234375, 13.410994 ], [ 120.234375, 13.581921 ], [ 121.113281, 13.581921 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.488281, 5.266008 ], [ 115.488281, 4.565474 ], [ 115.312500, 4.565474 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.785156, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.039618 ], [ 114.433594, 4.039618 ], [ 114.433594, 4.390229 ], [ 114.257812, 4.390229 ], [ 114.257812, 4.565474 ], [ 114.433594, 4.565474 ], [ 114.433594, 4.740675 ], [ 114.609375, 4.740675 ], [ 114.609375, 4.915833 ], [ 114.785156, 4.915833 ], [ 114.785156, 5.090944 ], [ 115.136719, 5.090944 ], [ 115.136719, 5.266008 ], [ 115.488281, 5.266008 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.312500, 5.441022 ], [ 115.312500, 4.390229 ], [ 114.785156, 4.390229 ], [ 114.785156, 4.214943 ], [ 114.609375, 4.214943 ], [ 114.609375, 4.039618 ], [ 114.433594, 4.039618 ], [ 114.433594, 4.214943 ], [ 114.257812, 4.214943 ], [ 114.257812, 4.390229 ], [ 114.082031, 4.390229 ], [ 114.082031, 4.565474 ], [ 114.257812, 4.565474 ], [ 114.257812, 4.740675 ], [ 114.433594, 4.740675 ], [ 114.433594, 4.915833 ], [ 114.609375, 4.915833 ], [ 114.609375, 5.090944 ], [ 114.785156, 5.090944 ], [ 114.785156, 5.266008 ], [ 115.136719, 5.266008 ], [ 115.136719, 5.441022 ], [ 115.312500, 5.441022 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.945312, 34.307144 ], [ 133.242188, 34.307144 ], [ 133.242188, 34.161818 ], [ 132.890625, 34.161818 ], [ 132.890625, 34.016242 ], [ 132.539062, 34.016242 ], [ 132.539062, 33.870416 ], [ 130.957031, 33.870416 ], [ 130.957031, 33.724340 ], [ 131.132812, 33.724340 ], [ 131.132812, 33.578015 ], [ 131.308594, 33.578015 ], [ 131.308594, 33.431441 ], [ 131.660156, 33.431441 ], [ 131.660156, 33.284620 ], [ 131.835938, 33.284620 ], [ 131.835938, 33.137551 ], [ 132.011719, 33.137551 ], [ 132.011719, 32.842674 ], [ 131.835938, 32.842674 ], [ 131.835938, 32.398516 ], [ 131.660156, 32.398516 ], [ 131.660156, 32.101190 ], [ 131.484375, 32.101190 ], [ 131.484375, 31.653381 ], [ 131.308594, 31.653381 ], [ 131.308594, 31.353637 ], [ 131.132812, 31.353637 ], [ 131.132812, 31.203405 ], [ 130.781250, 31.203405 ], [ 130.781250, 31.052934 ], [ 130.429688, 31.052934 ], [ 130.429688, 31.203405 ], [ 130.253906, 31.203405 ], [ 130.253906, 31.802893 ], [ 130.429688, 31.802893 ], [ 130.429688, 32.249974 ], [ 130.253906, 32.249974 ], [ 130.253906, 32.398516 ], [ 129.902344, 32.398516 ], [ 129.902344, 32.546813 ], [ 129.726562, 32.546813 ], [ 129.726562, 32.842674 ], [ 129.550781, 32.842674 ], [ 129.550781, 33.137551 ], [ 129.375000, 33.137551 ], [ 129.375000, 33.284620 ], [ 129.726562, 33.284620 ], [ 129.726562, 33.431441 ], [ 130.253906, 33.431441 ], [ 130.253906, 33.578015 ], [ 130.605469, 33.578015 ], [ 130.605469, 33.870416 ], [ 130.781250, 33.870416 ], [ 130.781250, 34.016242 ], [ 130.957031, 34.016242 ], [ 130.957031, 34.161818 ], [ 131.132812, 34.161818 ], [ 131.132812, 34.307144 ], [ 131.308594, 34.307144 ], [ 131.308594, 34.452218 ], [ 131.660156, 34.452218 ], [ 131.660156, 34.597042 ], [ 131.835938, 34.597042 ], [ 131.835938, 34.741612 ], [ 132.011719, 34.741612 ], [ 132.011719, 34.885931 ], [ 132.187500, 34.885931 ], [ 132.187500, 35.173808 ], [ 132.363281, 35.173808 ], [ 132.363281, 35.317366 ], [ 132.539062, 35.317366 ], [ 132.539062, 35.460670 ], [ 133.242188, 35.460670 ], [ 133.242188, 35.603719 ], [ 134.296875, 35.603719 ], [ 134.296875, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.351562, 35.603719 ], [ 135.351562, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.603719 ], [ 135.878906, 35.603719 ], [ 135.878906, 33.431441 ], [ 135.703125, 33.431441 ], [ 135.703125, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.175781, 33.724340 ], [ 135.175781, 34.161818 ], [ 135.000000, 34.161818 ], [ 135.000000, 34.597042 ], [ 134.648438, 34.597042 ], [ 134.648438, 34.452218 ], [ 133.945312, 34.452218 ], [ 133.945312, 34.307144 ] ] ], [ [ [ 133.945312, 34.307144 ], [ 134.121094, 34.307144 ], [ 134.121094, 34.161818 ], [ 134.648438, 34.161818 ], [ 134.648438, 34.016242 ], [ 134.824219, 34.016242 ], [ 134.824219, 33.724340 ], [ 134.648438, 33.724340 ], [ 134.648438, 33.578015 ], [ 134.472656, 33.578015 ], [ 134.472656, 33.284620 ], [ 134.296875, 33.284620 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.137551 ], [ 133.945312, 33.431441 ], [ 133.417969, 33.431441 ], [ 133.417969, 33.284620 ], [ 133.242188, 33.284620 ], [ 133.242188, 32.990236 ], [ 133.066406, 32.990236 ], [ 133.066406, 32.694866 ], [ 132.714844, 32.694866 ], [ 132.714844, 32.842674 ], [ 132.363281, 32.842674 ], [ 132.363281, 33.431441 ], [ 132.539062, 33.431441 ], [ 132.539062, 33.724340 ], [ 132.714844, 33.724340 ], [ 132.714844, 33.870416 ], [ 132.890625, 33.870416 ], [ 132.890625, 34.016242 ], [ 133.593750, 34.016242 ], [ 133.593750, 34.161818 ], [ 133.945312, 34.161818 ], [ 133.945312, 34.307144 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.746512 ], [ 135.878906, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.597042 ], [ 134.296875, 34.597042 ], [ 134.296875, 34.452218 ], [ 133.066406, 34.452218 ], [ 133.066406, 34.307144 ], [ 132.714844, 34.307144 ], [ 132.714844, 34.161818 ], [ 132.363281, 34.161818 ], [ 132.363281, 34.016242 ], [ 130.957031, 34.016242 ], [ 130.957031, 33.870416 ], [ 131.132812, 33.870416 ], [ 131.132812, 33.724340 ], [ 131.308594, 33.724340 ], [ 131.308594, 33.578015 ], [ 131.484375, 33.578015 ], [ 131.484375, 33.431441 ], [ 131.660156, 33.431441 ], [ 131.660156, 33.284620 ], [ 131.835938, 33.284620 ], [ 131.835938, 32.990236 ], [ 131.660156, 32.990236 ], [ 131.660156, 32.398516 ], [ 131.484375, 32.398516 ], [ 131.484375, 31.802893 ], [ 131.308594, 31.802893 ], [ 131.308594, 31.353637 ], [ 131.132812, 31.353637 ], [ 131.132812, 31.203405 ], [ 130.781250, 31.203405 ], [ 130.781250, 31.052934 ], [ 130.429688, 31.052934 ], [ 130.429688, 31.203405 ], [ 130.253906, 31.203405 ], [ 130.253906, 31.353637 ], [ 130.078125, 31.353637 ], [ 130.078125, 31.653381 ], [ 130.253906, 31.653381 ], [ 130.253906, 32.101190 ], [ 130.429688, 32.101190 ], [ 130.429688, 32.398516 ], [ 130.078125, 32.398516 ], [ 130.078125, 32.546813 ], [ 129.726562, 32.546813 ], [ 129.726562, 32.842674 ], [ 129.550781, 32.842674 ], [ 129.550781, 33.137551 ], [ 129.375000, 33.137551 ], [ 129.375000, 33.431441 ], [ 129.726562, 33.431441 ], [ 129.726562, 33.578015 ], [ 130.078125, 33.578015 ], [ 130.078125, 33.724340 ], [ 130.429688, 33.724340 ], [ 130.429688, 34.016242 ], [ 130.605469, 34.016242 ], [ 130.605469, 34.161818 ], [ 130.781250, 34.161818 ], [ 130.781250, 34.307144 ], [ 130.957031, 34.307144 ], [ 130.957031, 34.452218 ], [ 131.308594, 34.452218 ], [ 131.308594, 34.597042 ], [ 131.484375, 34.597042 ], [ 131.484375, 34.741612 ], [ 131.835938, 34.741612 ], [ 131.835938, 34.885931 ], [ 132.011719, 34.885931 ], [ 132.011719, 35.029996 ], [ 132.187500, 35.029996 ], [ 132.187500, 35.173808 ], [ 132.363281, 35.173808 ], [ 132.363281, 35.317366 ], [ 132.539062, 35.317366 ], [ 132.539062, 35.460670 ], [ 133.066406, 35.460670 ], [ 133.066406, 35.603719 ], [ 134.121094, 35.603719 ], [ 134.121094, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.703125, 35.603719 ], [ 135.703125, 35.746512 ], [ 135.878906, 35.746512 ] ] ], [ [ [ 134.121094, 34.307144 ], [ 134.121094, 34.161818 ], [ 134.472656, 34.161818 ], [ 134.472656, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.724340 ], [ 134.472656, 33.724340 ], [ 134.472656, 33.578015 ], [ 134.296875, 33.578015 ], [ 134.296875, 33.284620 ], [ 133.945312, 33.284620 ], [ 133.945312, 33.431441 ], [ 133.769531, 33.431441 ], [ 133.769531, 33.578015 ], [ 133.593750, 33.578015 ], [ 133.593750, 33.431441 ], [ 133.242188, 33.431441 ], [ 133.242188, 33.284620 ], [ 133.066406, 33.284620 ], [ 133.066406, 32.990236 ], [ 132.890625, 32.990236 ], [ 132.890625, 32.842674 ], [ 132.539062, 32.842674 ], [ 132.539062, 32.990236 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.578015 ], [ 132.539062, 33.578015 ], [ 132.539062, 33.870416 ], [ 132.714844, 33.870416 ], [ 132.714844, 34.016242 ], [ 132.890625, 34.016242 ], [ 132.890625, 34.161818 ], [ 133.066406, 34.161818 ], [ 133.066406, 34.016242 ], [ 133.593750, 34.016242 ], [ 133.593750, 34.307144 ], [ 134.121094, 34.307144 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -0.878872 ], [ 131.484375, -0.878872 ], [ 131.484375, -0.703107 ], [ 132.011719, -0.703107 ], [ 132.011719, -0.527336 ], [ 132.363281, -0.527336 ], [ 132.363281, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 125.156250, 1.406109 ], [ 125.156250, 1.230374 ], [ 124.980469, 1.230374 ], [ 124.980469, 0.878872 ], [ 124.804688, 0.878872 ], [ 124.804688, 0.703107 ], [ 124.628906, 0.703107 ], [ 124.628906, 0.351560 ], [ 124.277344, 0.351560 ], [ 124.277344, 0.175781 ], [ 123.046875, 0.175781 ], [ 123.046875, 0.351560 ], [ 120.761719, 0.351560 ], [ 120.761719, 0.175781 ], [ 120.234375, 0.175781 ], [ 120.234375, -0.175781 ], [ 120.058594, -0.175781 ], [ 120.058594, -0.703107 ], [ 120.234375, -0.703107 ], [ 120.234375, -0.878872 ], [ 119.531250, -0.878872 ], [ 119.531250, -0.703107 ], [ 119.707031, -0.703107 ], [ 119.707031, -0.175781 ], [ 119.882812, -0.175781 ], [ 119.882812, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.527336 ], [ 120.234375, 0.527336 ], [ 120.234375, 0.703107 ], [ 120.410156, 0.703107 ], [ 120.410156, 0.878872 ], [ 120.761719, 0.878872 ], [ 120.761719, 1.054628 ], [ 120.937500, 1.054628 ], [ 120.937500, 1.230374 ], [ 121.113281, 1.230374 ], [ 121.113281, 1.054628 ], [ 122.167969, 1.054628 ], [ 122.167969, 0.878872 ], [ 124.277344, 0.878872 ], [ 124.277344, 1.054628 ], [ 124.453125, 1.054628 ], [ 124.453125, 1.230374 ], [ 124.804688, 1.230374 ], [ 124.804688, 1.406109 ], [ 125.156250, 1.406109 ] ] ], [ [ [ 127.968750, 1.933227 ], [ 127.968750, 1.581830 ], [ 128.671875, 1.581830 ], [ 128.671875, 0.175781 ], [ 128.320312, 0.175781 ], [ 128.320312, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.000000 ], [ 127.968750, 0.000000 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.527336 ], [ 127.617188, -0.527336 ], [ 127.617188, 0.351560 ], [ 127.441406, 0.351560 ], [ 127.441406, 1.406109 ], [ 127.617188, 1.406109 ], [ 127.617188, 1.757537 ], [ 127.792969, 1.757537 ], [ 127.792969, 1.933227 ], [ 127.968750, 1.933227 ] ] ], [ [ [ 117.421875, 4.390229 ], [ 117.421875, 4.214943 ], [ 117.949219, 4.214943 ], [ 117.949219, 4.039618 ], [ 117.773438, 4.039618 ], [ 117.773438, 3.688855 ], [ 117.597656, 3.688855 ], [ 117.597656, 3.513421 ], [ 117.421875, 3.513421 ], [ 117.421875, 3.162456 ], [ 117.246094, 3.162456 ], [ 117.246094, 2.986927 ], [ 117.421875, 2.986927 ], [ 117.421875, 2.811371 ], [ 117.597656, 2.811371 ], [ 117.597656, 2.635789 ], [ 117.773438, 2.635789 ], [ 117.773438, 2.460181 ], [ 117.949219, 2.460181 ], [ 117.949219, 2.284551 ], [ 118.125000, 2.284551 ], [ 118.125000, 1.933227 ], [ 117.949219, 1.933227 ], [ 117.949219, 1.581830 ], [ 118.125000, 1.581830 ], [ 118.125000, 1.406109 ], [ 118.300781, 1.406109 ], [ 118.300781, 1.230374 ], [ 118.652344, 1.230374 ], [ 118.652344, 1.054628 ], [ 118.828125, 1.054628 ], [ 118.828125, 0.878872 ], [ 118.476562, 0.878872 ], [ 118.476562, 0.703107 ], [ 117.773438, 0.703107 ], [ 117.773438, 0.527336 ], [ 117.597656, 0.527336 ], [ 117.597656, 0.175781 ], [ 117.421875, 0.175781 ], [ 117.421875, -0.351560 ], [ 117.597656, -0.351560 ], [ 117.597656, -0.878872 ], [ 109.335938, -0.878872 ], [ 109.335938, -0.703107 ], [ 109.160156, -0.703107 ], [ 109.160156, -0.175781 ], [ 108.984375, -0.175781 ], [ 108.984375, 1.406109 ], [ 109.160156, 1.406109 ], [ 109.160156, 1.581830 ], [ 109.511719, 1.581830 ], [ 109.511719, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.581830 ], [ 109.863281, 1.581830 ], [ 109.863281, 1.230374 ], [ 110.039062, 1.230374 ], [ 110.039062, 1.054628 ], [ 110.214844, 1.054628 ], [ 110.214844, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.390625, 0.703107 ], [ 110.742188, 0.703107 ], [ 110.742188, 0.878872 ], [ 111.093750, 0.878872 ], [ 111.093750, 1.054628 ], [ 111.269531, 1.054628 ], [ 111.269531, 0.878872 ], [ 111.972656, 0.878872 ], [ 111.972656, 1.054628 ], [ 112.148438, 1.054628 ], [ 112.148438, 1.230374 ], [ 112.324219, 1.230374 ], [ 112.324219, 1.406109 ], [ 112.675781, 1.406109 ], [ 112.675781, 1.581830 ], [ 113.027344, 1.581830 ], [ 113.027344, 1.406109 ], [ 113.378906, 1.406109 ], [ 113.378906, 1.230374 ], [ 114.257812, 1.230374 ], [ 114.257812, 1.406109 ], [ 114.609375, 1.406109 ], [ 114.609375, 1.581830 ], [ 114.785156, 1.581830 ], [ 114.785156, 2.108899 ], [ 114.960938, 2.108899 ], [ 114.960938, 2.460181 ], [ 115.136719, 2.460181 ], [ 115.136719, 2.811371 ], [ 115.312500, 2.811371 ], [ 115.312500, 2.986927 ], [ 115.488281, 2.986927 ], [ 115.488281, 3.337954 ], [ 115.664062, 3.337954 ], [ 115.664062, 4.039618 ], [ 115.839844, 4.039618 ], [ 115.839844, 4.390229 ], [ 117.421875, 4.390229 ] ] ], [ [ [ 96.679688, 5.441022 ], [ 96.679688, 5.266008 ], [ 97.558594, 5.266008 ], [ 97.558594, 5.090944 ], [ 97.734375, 5.090944 ], [ 97.734375, 4.915833 ], [ 97.910156, 4.915833 ], [ 97.910156, 4.740675 ], [ 98.085938, 4.740675 ], [ 98.085938, 4.390229 ], [ 98.261719, 4.390229 ], [ 98.261719, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 4.039618 ], [ 98.613281, 4.039618 ], [ 98.613281, 3.864255 ], [ 98.789062, 3.864255 ], [ 98.789062, 3.688855 ], [ 98.964844, 3.688855 ], [ 98.964844, 3.513421 ], [ 99.140625, 3.513421 ], [ 99.140625, 3.337954 ], [ 99.492188, 3.337954 ], [ 99.492188, 3.162456 ], [ 99.667969, 3.162456 ], [ 99.667969, 2.986927 ], [ 99.843750, 2.986927 ], [ 99.843750, 2.811371 ], [ 100.019531, 2.811371 ], [ 100.019531, 2.635789 ], [ 100.195312, 2.635789 ], [ 100.195312, 2.460181 ], [ 100.371094, 2.460181 ], [ 100.371094, 2.284551 ], [ 100.546875, 2.284551 ], [ 100.546875, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.933227 ], [ 101.777344, 1.933227 ], [ 101.777344, 1.757537 ], [ 102.128906, 1.757537 ], [ 102.128906, 1.581830 ], [ 102.304688, 1.581830 ], [ 102.304688, 1.406109 ], [ 102.480469, 1.406109 ], [ 102.480469, 1.230374 ], [ 102.656250, 1.230374 ], [ 102.656250, 0.878872 ], [ 102.832031, 0.878872 ], [ 102.832031, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.886719, 0.175781 ], [ 103.886719, 0.000000 ], [ 103.710938, 0.000000 ], [ 103.710938, -0.351560 ], [ 103.535156, -0.351560 ], [ 103.535156, -0.703107 ], [ 103.359375, -0.703107 ], [ 103.359375, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.351560 ], [ 99.140625, 0.351560 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 1.230374 ], [ 98.789062, 1.230374 ], [ 98.789062, 1.581830 ], [ 98.613281, 1.581830 ], [ 98.613281, 1.757537 ], [ 98.437500, 1.757537 ], [ 98.437500, 1.933227 ], [ 98.261719, 1.933227 ], [ 98.261719, 2.108899 ], [ 97.910156, 2.108899 ], [ 97.910156, 2.284551 ], [ 97.734375, 2.284551 ], [ 97.734375, 2.460181 ], [ 97.558594, 2.460181 ], [ 97.558594, 2.811371 ], [ 97.382812, 2.811371 ], [ 97.382812, 3.162456 ], [ 97.207031, 3.162456 ], [ 97.207031, 3.337954 ], [ 97.031250, 3.337954 ], [ 97.031250, 3.513421 ], [ 96.679688, 3.513421 ], [ 96.679688, 3.688855 ], [ 96.503906, 3.688855 ], [ 96.503906, 3.864255 ], [ 96.328125, 3.864255 ], [ 96.328125, 4.039618 ], [ 96.152344, 4.039618 ], [ 96.152344, 4.214943 ], [ 95.976562, 4.214943 ], [ 95.976562, 4.390229 ], [ 95.800781, 4.390229 ], [ 95.800781, 4.565474 ], [ 95.625000, 4.565474 ], [ 95.625000, 4.740675 ], [ 95.449219, 4.740675 ], [ 95.449219, 5.090944 ], [ 95.273438, 5.090944 ], [ 95.273438, 5.441022 ], [ 96.679688, 5.441022 ] ] ], [ [ [ 122.695312, -0.878872 ], [ 122.695312, -0.703107 ], [ 123.398438, -0.703107 ], [ 123.398438, -0.878872 ], [ 122.695312, -0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.714844, -0.351560 ], [ 132.714844, -0.527336 ], [ 133.417969, -0.527336 ], [ 133.417969, -0.703107 ], [ 133.945312, -0.703107 ], [ 133.945312, -0.878872 ], [ 131.132812, -0.878872 ], [ 131.132812, -0.703107 ], [ 131.660156, -0.703107 ], [ 131.660156, -0.527336 ], [ 132.187500, -0.527336 ], [ 132.187500, -0.351560 ], [ 132.714844, -0.351560 ] ] ], [ [ [ 125.156250, 1.581830 ], [ 125.156250, 1.406109 ], [ 124.980469, 1.406109 ], [ 124.980469, 1.230374 ], [ 124.804688, 1.230374 ], [ 124.804688, 1.054628 ], [ 124.628906, 1.054628 ], [ 124.628906, 0.703107 ], [ 124.453125, 0.703107 ], [ 124.453125, 0.527336 ], [ 124.101562, 0.527336 ], [ 124.101562, 0.351560 ], [ 123.046875, 0.351560 ], [ 123.046875, 0.527336 ], [ 120.585938, 0.527336 ], [ 120.585938, 0.351560 ], [ 120.058594, 0.351560 ], [ 120.058594, 0.000000 ], [ 119.882812, 0.000000 ], [ 119.882812, -0.527336 ], [ 120.058594, -0.527336 ], [ 120.058594, -0.878872 ], [ 119.355469, -0.878872 ], [ 119.355469, -0.703107 ], [ 119.531250, -0.703107 ], [ 119.531250, -0.175781 ], [ 119.707031, -0.175781 ], [ 119.707031, 0.351560 ], [ 119.882812, 0.351560 ], [ 119.882812, 0.703107 ], [ 120.058594, 0.703107 ], [ 120.058594, 0.878872 ], [ 120.234375, 0.878872 ], [ 120.234375, 1.054628 ], [ 120.585938, 1.054628 ], [ 120.585938, 1.230374 ], [ 120.761719, 1.230374 ], [ 120.761719, 1.406109 ], [ 120.937500, 1.406109 ], [ 120.937500, 1.230374 ], [ 121.289062, 1.230374 ], [ 121.289062, 1.054628 ], [ 122.167969, 1.054628 ], [ 122.167969, 0.878872 ], [ 123.574219, 0.878872 ], [ 123.574219, 1.054628 ], [ 124.101562, 1.054628 ], [ 124.101562, 1.230374 ], [ 124.453125, 1.230374 ], [ 124.453125, 1.406109 ], [ 124.628906, 1.406109 ], [ 124.628906, 1.581830 ], [ 125.156250, 1.581830 ] ] ], [ [ [ 127.792969, 2.108899 ], [ 127.792969, 1.933227 ], [ 127.968750, 1.933227 ], [ 127.968750, 1.757537 ], [ 128.144531, 1.757537 ], [ 128.144531, 1.581830 ], [ 128.496094, 1.581830 ], [ 128.496094, 1.406109 ], [ 128.671875, 1.406109 ], [ 128.671875, 0.703107 ], [ 128.496094, 0.703107 ], [ 128.496094, 0.351560 ], [ 128.144531, 0.351560 ], [ 128.144531, 0.527336 ], [ 127.968750, 0.527336 ], [ 127.968750, -0.351560 ], [ 128.144531, -0.351560 ], [ 128.144531, -0.703107 ], [ 128.320312, -0.703107 ], [ 128.320312, -0.878872 ], [ 127.968750, -0.878872 ], [ 127.968750, -0.703107 ], [ 127.792969, -0.703107 ], [ 127.792969, -0.351560 ], [ 127.617188, -0.351560 ], [ 127.617188, 0.000000 ], [ 127.441406, 0.000000 ], [ 127.441406, 0.703107 ], [ 127.265625, 0.703107 ], [ 127.265625, 1.406109 ], [ 127.441406, 1.406109 ], [ 127.441406, 1.933227 ], [ 127.617188, 1.933227 ], [ 127.617188, 2.108899 ], [ 127.792969, 2.108899 ] ] ], [ [ [ 117.246094, 4.390229 ], [ 117.246094, 4.214943 ], [ 117.773438, 4.214943 ], [ 117.773438, 4.039618 ], [ 117.597656, 4.039618 ], [ 117.597656, 3.688855 ], [ 117.421875, 3.688855 ], [ 117.421875, 3.337954 ], [ 117.246094, 3.337954 ], [ 117.246094, 3.162456 ], [ 117.421875, 3.162456 ], [ 117.421875, 2.986927 ], [ 117.597656, 2.986927 ], [ 117.597656, 2.635789 ], [ 117.773438, 2.635789 ], [ 117.773438, 2.460181 ], [ 117.949219, 2.460181 ], [ 117.949219, 2.108899 ], [ 117.773438, 2.108899 ], [ 117.773438, 1.757537 ], [ 117.949219, 1.757537 ], [ 117.949219, 1.581830 ], [ 118.125000, 1.581830 ], [ 118.125000, 1.406109 ], [ 118.476562, 1.406109 ], [ 118.476562, 1.230374 ], [ 118.652344, 1.230374 ], [ 118.652344, 1.054628 ], [ 118.476562, 1.054628 ], [ 118.476562, 0.878872 ], [ 117.773438, 0.878872 ], [ 117.773438, 0.703107 ], [ 117.597656, 0.703107 ], [ 117.597656, 0.351560 ], [ 117.421875, 0.351560 ], [ 117.421875, -0.878872 ], [ 109.160156, -0.878872 ], [ 109.160156, -0.703107 ], [ 108.984375, -0.703107 ], [ 108.984375, 0.000000 ], [ 108.808594, 0.000000 ], [ 108.808594, 0.878872 ], [ 108.984375, 0.878872 ], [ 108.984375, 1.406109 ], [ 109.160156, 1.406109 ], [ 109.160156, 1.757537 ], [ 109.335938, 1.757537 ], [ 109.335938, 1.933227 ], [ 109.511719, 1.933227 ], [ 109.511719, 1.757537 ], [ 109.687500, 1.757537 ], [ 109.687500, 1.230374 ], [ 109.863281, 1.230374 ], [ 109.863281, 1.054628 ], [ 110.214844, 1.054628 ], [ 110.214844, 0.878872 ], [ 110.917969, 0.878872 ], [ 110.917969, 1.054628 ], [ 111.972656, 1.054628 ], [ 111.972656, 1.230374 ], [ 112.148438, 1.230374 ], [ 112.148438, 1.406109 ], [ 112.324219, 1.406109 ], [ 112.324219, 1.581830 ], [ 113.027344, 1.581830 ], [ 113.027344, 1.406109 ], [ 113.378906, 1.406109 ], [ 113.378906, 1.230374 ], [ 114.082031, 1.230374 ], [ 114.082031, 1.406109 ], [ 114.433594, 1.406109 ], [ 114.433594, 1.581830 ], [ 114.609375, 1.581830 ], [ 114.609375, 1.757537 ], [ 114.785156, 1.757537 ], [ 114.785156, 2.284551 ], [ 114.960938, 2.284551 ], [ 114.960938, 2.635789 ], [ 115.136719, 2.635789 ], [ 115.136719, 2.986927 ], [ 115.312500, 2.986927 ], [ 115.312500, 3.162456 ], [ 115.488281, 3.162456 ], [ 115.488281, 3.513421 ], [ 115.664062, 3.513421 ], [ 115.664062, 4.039618 ], [ 115.839844, 4.039618 ], [ 115.839844, 4.390229 ], [ 117.246094, 4.390229 ] ] ], [ [ [ 95.449219, 5.615986 ], [ 95.449219, 5.441022 ], [ 96.503906, 5.441022 ], [ 96.503906, 5.266008 ], [ 97.382812, 5.266008 ], [ 97.382812, 5.090944 ], [ 97.558594, 5.090944 ], [ 97.558594, 4.915833 ], [ 97.734375, 4.915833 ], [ 97.734375, 4.740675 ], [ 97.910156, 4.740675 ], [ 97.910156, 4.565474 ], [ 98.085938, 4.565474 ], [ 98.085938, 4.390229 ], [ 98.261719, 4.390229 ], [ 98.261719, 4.214943 ], [ 98.437500, 4.214943 ], [ 98.437500, 4.039618 ], [ 98.789062, 4.039618 ], [ 98.789062, 3.864255 ], [ 98.964844, 3.864255 ], [ 98.964844, 3.688855 ], [ 99.140625, 3.688855 ], [ 99.140625, 3.513421 ], [ 99.492188, 3.513421 ], [ 99.492188, 3.337954 ], [ 99.667969, 3.337954 ], [ 99.667969, 3.162456 ], [ 99.843750, 3.162456 ], [ 99.843750, 2.811371 ], [ 100.019531, 2.811371 ], [ 100.019531, 2.635789 ], [ 100.195312, 2.635789 ], [ 100.195312, 2.460181 ], [ 100.371094, 2.460181 ], [ 100.371094, 2.108899 ], [ 101.601562, 2.108899 ], [ 101.601562, 1.933227 ], [ 101.777344, 1.933227 ], [ 101.777344, 1.757537 ], [ 102.128906, 1.757537 ], [ 102.128906, 1.581830 ], [ 102.304688, 1.581830 ], [ 102.304688, 1.406109 ], [ 102.480469, 1.406109 ], [ 102.480469, 1.230374 ], [ 102.656250, 1.230374 ], [ 102.656250, 1.054628 ], [ 102.832031, 1.054628 ], [ 102.832031, 0.703107 ], [ 103.007812, 0.703107 ], [ 103.007812, 0.527336 ], [ 103.183594, 0.527336 ], [ 103.183594, 0.351560 ], [ 103.535156, 0.351560 ], [ 103.535156, 0.175781 ], [ 103.710938, 0.175781 ], [ 103.710938, -0.175781 ], [ 103.535156, -0.175781 ], [ 103.535156, -0.527336 ], [ 103.359375, -0.527336 ], [ 103.359375, -0.878872 ], [ 100.195312, -0.878872 ], [ 100.195312, -0.703107 ], [ 100.019531, -0.703107 ], [ 100.019531, -0.527336 ], [ 99.843750, -0.527336 ], [ 99.843750, -0.351560 ], [ 99.667969, -0.351560 ], [ 99.667969, -0.175781 ], [ 99.492188, -0.175781 ], [ 99.492188, 0.000000 ], [ 99.316406, 0.000000 ], [ 99.316406, 0.175781 ], [ 99.140625, 0.175781 ], [ 99.140625, 0.703107 ], [ 98.964844, 0.703107 ], [ 98.964844, 1.054628 ], [ 98.789062, 1.054628 ], [ 98.789062, 1.406109 ], [ 98.613281, 1.406109 ], [ 98.613281, 1.757537 ], [ 98.437500, 1.757537 ], [ 98.437500, 1.933227 ], [ 98.261719, 1.933227 ], [ 98.261719, 2.108899 ], [ 97.910156, 2.108899 ], [ 97.910156, 2.284551 ], [ 97.558594, 2.284551 ], [ 97.558594, 2.460181 ], [ 97.382812, 2.460181 ], [ 97.382812, 2.811371 ], [ 97.207031, 2.811371 ], [ 97.207031, 3.162456 ], [ 97.031250, 3.162456 ], [ 97.031250, 3.337954 ], [ 96.855469, 3.337954 ], [ 96.855469, 3.513421 ], [ 96.679688, 3.513421 ], [ 96.679688, 3.688855 ], [ 96.503906, 3.688855 ], [ 96.503906, 3.864255 ], [ 96.328125, 3.864255 ], [ 96.328125, 4.039618 ], [ 96.152344, 4.039618 ], [ 96.152344, 4.214943 ], [ 95.976562, 4.214943 ], [ 95.976562, 4.390229 ], [ 95.800781, 4.390229 ], [ 95.800781, 4.565474 ], [ 95.625000, 4.565474 ], [ 95.625000, 4.740675 ], [ 95.449219, 4.740675 ], [ 95.449219, 4.915833 ], [ 95.273438, 4.915833 ], [ 95.273438, 5.615986 ], [ 95.449219, 5.615986 ] ] ], [ [ [ 122.343750, -0.878872 ], [ 122.343750, -0.703107 ], [ 123.046875, -0.703107 ], [ 123.046875, -0.527336 ], [ 123.222656, -0.527336 ], [ 123.222656, -0.878872 ], [ 122.343750, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.078367 ], [ 135.703125, 55.078367 ], [ 135.703125, 54.977614 ], [ 135.527344, 54.977614 ], [ 135.527344, 54.876607 ], [ 135.351562, 54.876607 ], [ 135.351562, 54.673831 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.213710 ], [ 135.703125, 44.213710 ], [ 135.703125, 43.961191 ], [ 135.527344, 43.961191 ], [ 135.527344, 43.834527 ], [ 135.351562, 43.834527 ], [ 135.351562, 43.707594 ], [ 135.175781, 43.707594 ], [ 135.175781, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.472656, 43.325178 ], [ 134.472656, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 42.940339 ], [ 133.769531, 42.940339 ], [ 133.769531, 42.811522 ], [ 132.714844, 42.811522 ], [ 132.714844, 43.068888 ], [ 132.539062, 43.068888 ], [ 132.539062, 43.197167 ], [ 132.187500, 43.197167 ], [ 132.187500, 43.068888 ], [ 131.835938, 43.068888 ], [ 131.835938, 42.940339 ], [ 131.660156, 42.940339 ], [ 131.660156, 42.811522 ], [ 131.484375, 42.811522 ], [ 131.484375, 42.682435 ], [ 131.132812, 42.682435 ], [ 131.132812, 42.553080 ], [ 130.957031, 42.553080 ], [ 130.957031, 42.293564 ], [ 130.605469, 42.293564 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.132812, 43.452919 ], [ 131.308594, 43.452919 ], [ 131.308594, 44.213710 ], [ 131.132812, 44.213710 ], [ 131.132812, 44.715514 ], [ 130.957031, 44.715514 ], [ 130.957031, 44.964798 ], [ 131.132812, 44.964798 ], [ 131.132812, 45.089036 ], [ 131.484375, 45.089036 ], [ 131.484375, 45.213004 ], [ 131.835938, 45.213004 ], [ 131.835938, 45.336702 ], [ 132.011719, 45.336702 ], [ 132.011719, 45.213004 ], [ 132.714844, 45.213004 ], [ 132.714844, 45.089036 ], [ 133.066406, 45.089036 ], [ 133.066406, 45.213004 ], [ 133.242188, 45.213004 ], [ 133.242188, 45.460131 ], [ 133.417969, 45.460131 ], [ 133.417969, 45.706179 ], [ 133.593750, 45.706179 ], [ 133.593750, 45.951150 ], [ 133.769531, 45.951150 ], [ 133.769531, 46.316584 ], [ 133.945312, 46.316584 ], [ 133.945312, 46.800059 ], [ 134.121094, 46.800059 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 47.989922 ], [ 134.824219, 47.989922 ], [ 134.824219, 48.224673 ], [ 135.000000, 48.224673 ], [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.341646 ], [ 133.945312, 48.341646 ], [ 133.945312, 48.224673 ], [ 133.417969, 48.224673 ], [ 133.417969, 48.107431 ], [ 133.242188, 48.107431 ], [ 133.242188, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 47.872144 ], [ 132.714844, 47.872144 ], [ 132.714844, 47.754098 ], [ 130.957031, 47.754098 ], [ 130.957031, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.458352 ], [ 130.605469, 48.458352 ], [ 130.605469, 48.690960 ], [ 130.429688, 48.690960 ], [ 130.429688, 48.806863 ], [ 130.253906, 48.806863 ], [ 130.253906, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 49.037868 ], [ 129.902344, 49.037868 ], [ 129.902344, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 49.267805 ], [ 129.550781, 49.267805 ], [ 129.550781, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.496675 ], [ 128.847656, 49.496675 ], [ 128.847656, 49.610710 ], [ 127.968750, 49.610710 ], [ 127.968750, 49.724479 ], [ 127.617188, 49.724479 ], [ 127.617188, 49.951220 ], [ 127.441406, 49.951220 ], [ 127.441406, 50.401515 ], [ 127.265625, 50.401515 ], [ 127.265625, 50.847573 ], [ 127.089844, 50.847573 ], [ 127.089844, 51.179343 ], [ 126.914062, 51.179343 ], [ 126.914062, 51.508742 ], [ 126.738281, 51.508742 ], [ 126.738281, 51.727028 ], [ 126.562500, 51.727028 ], [ 126.562500, 51.944265 ], [ 126.386719, 51.944265 ], [ 126.386719, 52.160455 ], [ 126.210938, 52.160455 ], [ 126.210938, 52.375599 ], [ 126.035156, 52.375599 ], [ 126.035156, 52.589701 ], [ 125.859375, 52.589701 ], [ 125.859375, 52.802761 ], [ 125.683594, 52.802761 ], [ 125.683594, 52.908902 ], [ 125.332031, 52.908902 ], [ 125.332031, 53.014783 ], [ 124.980469, 53.014783 ], [ 124.980469, 53.120405 ], [ 124.628906, 53.120405 ], [ 124.628906, 53.225768 ], [ 124.101562, 53.225768 ], [ 124.101562, 53.330873 ], [ 123.750000, 53.330873 ], [ 123.750000, 53.435719 ], [ 121.992188, 53.435719 ], [ 121.992188, 53.330873 ], [ 121.289062, 53.330873 ], [ 121.289062, 53.225768 ], [ 120.937500, 53.225768 ], [ 120.937500, 53.120405 ], [ 120.761719, 53.120405 ], [ 120.761719, 53.014783 ], [ 120.585938, 53.014783 ], [ 120.585938, 52.908902 ], [ 120.410156, 52.908902 ], [ 120.410156, 52.802761 ], [ 120.234375, 52.802761 ], [ 120.234375, 52.696361 ], [ 120.410156, 52.696361 ], [ 120.410156, 52.589701 ], [ 120.585938, 52.589701 ], [ 120.585938, 52.482780 ], [ 120.761719, 52.482780 ], [ 120.761719, 51.835778 ], [ 120.585938, 51.835778 ], [ 120.585938, 51.727028 ], [ 120.410156, 51.727028 ], [ 120.410156, 51.618017 ], [ 120.234375, 51.618017 ], [ 120.234375, 51.508742 ], [ 120.058594, 51.508742 ], [ 120.058594, 51.289406 ], [ 119.882812, 51.289406 ], [ 119.882812, 51.069017 ], [ 119.707031, 51.069017 ], [ 119.707031, 50.847573 ], [ 119.531250, 50.847573 ], [ 119.531250, 50.625073 ], [ 119.355469, 50.625073 ], [ 119.355469, 50.064192 ], [ 119.179688, 50.064192 ], [ 119.179688, 49.951220 ], [ 118.828125, 49.951220 ], [ 118.828125, 49.837982 ], [ 118.652344, 49.837982 ], [ 118.652344, 49.724479 ], [ 118.476562, 49.724479 ], [ 118.476562, 49.610710 ], [ 118.125000, 49.610710 ], [ 118.125000, 49.496675 ], [ 117.597656, 49.496675 ], [ 117.597656, 49.610710 ], [ 117.246094, 49.610710 ], [ 117.246094, 49.724479 ], [ 116.894531, 49.724479 ], [ 116.894531, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 49.951220 ], [ 115.136719, 49.951220 ], [ 115.136719, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 50.176898 ], [ 114.609375, 50.176898 ], [ 114.609375, 50.289339 ], [ 114.433594, 50.289339 ], [ 114.433594, 50.176898 ], [ 114.257812, 50.176898 ], [ 114.257812, 50.064192 ], [ 113.906250, 50.064192 ], [ 113.906250, 49.951220 ], [ 113.730469, 49.951220 ], [ 113.730469, 49.837982 ], [ 113.554688, 49.837982 ], [ 113.554688, 49.724479 ], [ 113.203125, 49.724479 ], [ 113.203125, 49.610710 ], [ 113.027344, 49.610710 ], [ 113.027344, 49.496675 ], [ 112.324219, 49.496675 ], [ 112.324219, 49.382373 ], [ 111.445312, 49.382373 ], [ 111.445312, 49.267805 ], [ 111.093750, 49.267805 ], [ 111.093750, 49.152970 ], [ 109.863281, 49.152970 ], [ 109.863281, 49.267805 ], [ 108.281250, 49.267805 ], [ 108.281250, 49.496675 ], [ 108.105469, 49.496675 ], [ 108.105469, 49.724479 ], [ 107.929688, 49.724479 ], [ 107.929688, 49.837982 ], [ 107.753906, 49.837982 ], [ 107.753906, 49.951220 ], [ 107.402344, 49.951220 ], [ 107.402344, 50.064192 ], [ 107.226562, 50.064192 ], [ 107.226562, 50.176898 ], [ 106.875000, 50.176898 ], [ 106.875000, 50.289339 ], [ 106.171875, 50.289339 ], [ 106.171875, 50.401515 ], [ 105.292969, 50.401515 ], [ 105.292969, 50.289339 ], [ 104.414062, 50.289339 ], [ 104.414062, 50.176898 ], [ 104.062500, 50.176898 ], [ 104.062500, 50.064192 ], [ 103.359375, 50.064192 ], [ 103.359375, 50.176898 ], [ 103.007812, 50.176898 ], [ 103.007812, 50.289339 ], [ 102.656250, 50.289339 ], [ 102.656250, 50.401515 ], [ 102.304688, 50.401515 ], [ 102.304688, 50.847573 ], [ 102.128906, 50.847573 ], [ 102.128906, 51.289406 ], [ 101.777344, 51.289406 ], [ 101.777344, 51.399206 ], [ 101.074219, 51.399206 ], [ 101.074219, 51.508742 ], [ 100.371094, 51.508742 ], [ 100.371094, 51.618017 ], [ 99.843750, 51.618017 ], [ 99.843750, 51.727028 ], [ 99.492188, 51.727028 ], [ 99.492188, 51.835778 ], [ 99.140625, 51.835778 ], [ 99.140625, 51.944265 ], [ 98.613281, 51.944265 ], [ 98.613281, 51.727028 ], [ 98.437500, 51.727028 ], [ 98.437500, 51.508742 ], [ 98.261719, 51.508742 ], [ 98.261719, 51.289406 ], [ 98.085938, 51.289406 ], [ 98.085938, 51.069017 ], [ 97.910156, 51.069017 ], [ 97.910156, 50.736455 ], [ 98.085938, 50.736455 ], [ 98.085938, 50.513427 ], [ 98.261719, 50.513427 ], [ 98.261719, 50.289339 ], [ 98.085938, 50.289339 ], [ 98.085938, 50.176898 ], [ 97.910156, 50.176898 ], [ 97.910156, 50.064192 ], [ 97.734375, 50.064192 ], [ 97.734375, 49.951220 ], [ 97.558594, 49.951220 ], [ 97.558594, 49.837982 ], [ 97.382812, 49.837982 ], [ 97.382812, 49.724479 ], [ 96.679688, 49.724479 ], [ 96.679688, 49.837982 ], [ 95.976562, 49.837982 ], [ 95.976562, 49.951220 ], [ 95.097656, 49.951220 ], [ 95.097656, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.289339 ], [ 94.394531, 50.289339 ], [ 94.394531, 50.401515 ], [ 94.218750, 50.401515 ], [ 94.218750, 50.513427 ], [ 92.988281, 50.513427 ], [ 92.988281, 50.625073 ], [ 92.636719, 50.625073 ], [ 92.636719, 50.736455 ], [ 91.933594, 50.736455 ], [ 91.933594, 50.625073 ], [ 91.582031, 50.625073 ], [ 91.582031, 50.513427 ], [ 91.230469, 50.513427 ], [ 91.230469, 50.401515 ], [ 90.878906, 50.401515 ], [ 90.878906, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.610710 ], [ 89.121094, 49.610710 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 55.078367 ], [ 135.527344, 55.078367 ], [ 135.527344, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.876607 ], [ 135.175781, 54.876607 ], [ 135.175781, 54.775346 ], [ 135.351562, 54.775346 ], [ 135.351562, 54.673831 ], [ 135.878906, 54.673831 ], [ 135.878906, 44.213710 ], [ 135.527344, 44.213710 ], [ 135.527344, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.961191 ], [ 135.175781, 43.961191 ], [ 135.175781, 43.707594 ], [ 135.000000, 43.707594 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.472656, 43.325178 ], [ 134.472656, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 133.945312, 43.068888 ], [ 133.945312, 42.940339 ], [ 133.593750, 42.940339 ], [ 133.593750, 42.811522 ], [ 132.714844, 42.811522 ], [ 132.714844, 42.940339 ], [ 132.539062, 42.940339 ], [ 132.539062, 43.068888 ], [ 132.363281, 43.068888 ], [ 132.363281, 43.197167 ], [ 132.011719, 43.197167 ], [ 132.011719, 43.068888 ], [ 131.660156, 43.068888 ], [ 131.660156, 42.940339 ], [ 131.484375, 42.940339 ], [ 131.484375, 42.811522 ], [ 131.308594, 42.811522 ], [ 131.308594, 42.682435 ], [ 130.957031, 42.682435 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.553080 ], [ 130.781250, 42.293564 ], [ 130.605469, 42.293564 ], [ 130.605469, 42.940339 ], [ 131.132812, 42.940339 ], [ 131.132812, 44.590467 ], [ 130.957031, 44.590467 ], [ 130.957031, 45.089036 ], [ 131.308594, 45.089036 ], [ 131.308594, 45.213004 ], [ 131.660156, 45.213004 ], [ 131.660156, 45.336702 ], [ 132.363281, 45.336702 ], [ 132.363281, 45.213004 ], [ 133.066406, 45.213004 ], [ 133.066406, 45.336702 ], [ 133.242188, 45.336702 ], [ 133.242188, 45.583290 ], [ 133.417969, 45.583290 ], [ 133.417969, 45.828799 ], [ 133.593750, 45.828799 ], [ 133.593750, 46.073231 ], [ 133.769531, 46.073231 ], [ 133.769531, 46.679594 ], [ 133.945312, 46.679594 ], [ 133.945312, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 47.398349 ], [ 134.296875, 47.398349 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 48.107431 ], [ 134.824219, 48.107431 ], [ 134.824219, 48.341646 ], [ 135.000000, 48.341646 ], [ 135.000000, 48.574790 ], [ 134.824219, 48.574790 ], [ 134.824219, 48.458352 ], [ 134.296875, 48.458352 ], [ 134.296875, 48.341646 ], [ 133.593750, 48.341646 ], [ 133.593750, 48.224673 ], [ 133.242188, 48.224673 ], [ 133.242188, 48.107431 ], [ 132.890625, 48.107431 ], [ 132.890625, 47.989922 ], [ 132.539062, 47.989922 ], [ 132.539062, 47.872144 ], [ 130.957031, 47.872144 ], [ 130.957031, 47.989922 ], [ 130.781250, 47.989922 ], [ 130.781250, 48.341646 ], [ 130.605469, 48.341646 ], [ 130.605469, 48.574790 ], [ 130.429688, 48.574790 ], [ 130.429688, 48.806863 ], [ 130.253906, 48.806863 ], [ 130.253906, 48.922499 ], [ 130.078125, 48.922499 ], [ 130.078125, 49.037868 ], [ 129.902344, 49.037868 ], [ 129.902344, 49.152970 ], [ 129.726562, 49.152970 ], [ 129.726562, 49.267805 ], [ 129.550781, 49.267805 ], [ 129.550781, 49.382373 ], [ 129.375000, 49.382373 ], [ 129.375000, 49.496675 ], [ 129.023438, 49.496675 ], [ 129.023438, 49.610710 ], [ 128.320312, 49.610710 ], [ 128.320312, 49.724479 ], [ 127.792969, 49.724479 ], [ 127.792969, 49.837982 ], [ 127.617188, 49.837982 ], [ 127.617188, 50.064192 ], [ 127.441406, 50.064192 ], [ 127.441406, 50.513427 ], [ 127.265625, 50.513427 ], [ 127.265625, 50.958427 ], [ 127.089844, 50.958427 ], [ 127.089844, 51.179343 ], [ 126.914062, 51.179343 ], [ 126.914062, 51.508742 ], [ 126.738281, 51.508742 ], [ 126.738281, 51.727028 ], [ 126.562500, 51.727028 ], [ 126.562500, 51.944265 ], [ 126.386719, 51.944265 ], [ 126.386719, 52.160455 ], [ 126.210938, 52.160455 ], [ 126.210938, 52.375599 ], [ 126.035156, 52.375599 ], [ 126.035156, 52.589701 ], [ 125.859375, 52.589701 ], [ 125.859375, 52.802761 ], [ 125.683594, 52.802761 ], [ 125.683594, 52.908902 ], [ 125.507812, 52.908902 ], [ 125.507812, 53.014783 ], [ 125.156250, 53.014783 ], [ 125.156250, 53.120405 ], [ 124.980469, 53.120405 ], [ 124.980469, 53.225768 ], [ 124.628906, 53.225768 ], [ 124.628906, 53.330873 ], [ 124.101562, 53.330873 ], [ 124.101562, 53.435719 ], [ 123.574219, 53.435719 ], [ 123.574219, 53.540307 ], [ 122.871094, 53.540307 ], [ 122.871094, 53.435719 ], [ 121.640625, 53.435719 ], [ 121.640625, 53.330873 ], [ 120.937500, 53.330873 ], [ 120.937500, 53.225768 ], [ 120.761719, 53.225768 ], [ 120.761719, 53.120405 ], [ 120.585938, 53.120405 ], [ 120.585938, 53.014783 ], [ 120.410156, 53.014783 ], [ 120.410156, 52.908902 ], [ 120.234375, 52.908902 ], [ 120.234375, 52.802761 ], [ 120.058594, 52.802761 ], [ 120.058594, 52.696361 ], [ 120.410156, 52.696361 ], [ 120.410156, 52.589701 ], [ 120.585938, 52.589701 ], [ 120.585938, 51.944265 ], [ 120.410156, 51.944265 ], [ 120.410156, 51.835778 ], [ 120.234375, 51.835778 ], [ 120.234375, 51.727028 ], [ 120.058594, 51.727028 ], [ 120.058594, 51.618017 ], [ 119.882812, 51.618017 ], [ 119.882812, 51.399206 ], [ 119.707031, 51.399206 ], [ 119.707031, 51.179343 ], [ 119.531250, 51.179343 ], [ 119.531250, 50.958427 ], [ 119.355469, 50.958427 ], [ 119.355469, 50.736455 ], [ 119.179688, 50.736455 ], [ 119.179688, 50.064192 ], [ 118.828125, 50.064192 ], [ 118.828125, 49.951220 ], [ 118.652344, 49.951220 ], [ 118.652344, 49.837982 ], [ 118.300781, 49.837982 ], [ 118.300781, 49.724479 ], [ 117.949219, 49.724479 ], [ 117.949219, 49.610710 ], [ 117.421875, 49.610710 ], [ 117.421875, 49.724479 ], [ 117.070312, 49.724479 ], [ 117.070312, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.951220 ], [ 116.191406, 49.951220 ], [ 116.191406, 49.837982 ], [ 115.312500, 49.837982 ], [ 115.312500, 49.951220 ], [ 115.136719, 49.951220 ], [ 115.136719, 50.064192 ], [ 114.960938, 50.064192 ], [ 114.960938, 50.176898 ], [ 114.433594, 50.176898 ], [ 114.433594, 50.289339 ], [ 114.257812, 50.289339 ], [ 114.257812, 50.176898 ], [ 114.082031, 50.176898 ], [ 114.082031, 50.064192 ], [ 113.730469, 50.064192 ], [ 113.730469, 49.951220 ], [ 113.554688, 49.951220 ], [ 113.554688, 49.837982 ], [ 113.378906, 49.837982 ], [ 113.378906, 49.724479 ], [ 113.027344, 49.724479 ], [ 113.027344, 49.610710 ], [ 112.675781, 49.610710 ], [ 112.675781, 49.496675 ], [ 111.972656, 49.496675 ], [ 111.972656, 49.382373 ], [ 111.269531, 49.382373 ], [ 111.269531, 49.267805 ], [ 110.917969, 49.267805 ], [ 110.917969, 49.152970 ], [ 110.214844, 49.152970 ], [ 110.214844, 49.267805 ], [ 109.511719, 49.267805 ], [ 109.511719, 49.382373 ], [ 108.281250, 49.382373 ], [ 108.281250, 49.496675 ], [ 108.105469, 49.496675 ], [ 108.105469, 49.610710 ], [ 107.929688, 49.610710 ], [ 107.929688, 49.724479 ], [ 107.753906, 49.724479 ], [ 107.753906, 49.837982 ], [ 107.578125, 49.837982 ], [ 107.578125, 49.951220 ], [ 107.402344, 49.951220 ], [ 107.402344, 50.064192 ], [ 107.050781, 50.064192 ], [ 107.050781, 50.176898 ], [ 106.875000, 50.176898 ], [ 106.875000, 50.289339 ], [ 106.523438, 50.289339 ], [ 106.523438, 50.401515 ], [ 105.996094, 50.401515 ], [ 105.996094, 50.513427 ], [ 105.644531, 50.513427 ], [ 105.644531, 50.401515 ], [ 104.941406, 50.401515 ], [ 104.941406, 50.289339 ], [ 104.238281, 50.289339 ], [ 104.238281, 50.176898 ], [ 103.183594, 50.176898 ], [ 103.183594, 50.289339 ], [ 102.656250, 50.289339 ], [ 102.656250, 50.401515 ], [ 102.304688, 50.401515 ], [ 102.304688, 50.513427 ], [ 102.128906, 50.513427 ], [ 102.128906, 50.847573 ], [ 101.953125, 50.847573 ], [ 101.953125, 51.289406 ], [ 101.601562, 51.289406 ], [ 101.601562, 51.399206 ], [ 101.250000, 51.399206 ], [ 101.250000, 51.508742 ], [ 100.898438, 51.508742 ], [ 100.898438, 51.618017 ], [ 100.195312, 51.618017 ], [ 100.195312, 51.727028 ], [ 99.492188, 51.727028 ], [ 99.492188, 51.835778 ], [ 99.140625, 51.835778 ], [ 99.140625, 51.944265 ], [ 98.613281, 51.944265 ], [ 98.613281, 51.727028 ], [ 98.437500, 51.727028 ], [ 98.437500, 51.618017 ], [ 98.261719, 51.618017 ], [ 98.261719, 51.399206 ], [ 98.085938, 51.399206 ], [ 98.085938, 51.289406 ], [ 97.910156, 51.289406 ], [ 97.910156, 51.069017 ], [ 97.734375, 51.069017 ], [ 97.734375, 50.847573 ], [ 97.910156, 50.847573 ], [ 97.910156, 50.625073 ], [ 98.085938, 50.625073 ], [ 98.085938, 50.401515 ], [ 97.910156, 50.401515 ], [ 97.910156, 50.176898 ], [ 97.734375, 50.176898 ], [ 97.734375, 50.064192 ], [ 97.558594, 50.064192 ], [ 97.558594, 49.951220 ], [ 97.382812, 49.951220 ], [ 97.382812, 49.724479 ], [ 96.855469, 49.724479 ], [ 96.855469, 49.837982 ], [ 96.328125, 49.837982 ], [ 96.328125, 49.951220 ], [ 95.976562, 49.951220 ], [ 95.976562, 50.064192 ], [ 94.570312, 50.064192 ], [ 94.570312, 50.176898 ], [ 94.394531, 50.176898 ], [ 94.394531, 50.289339 ], [ 94.218750, 50.289339 ], [ 94.218750, 50.401515 ], [ 94.042969, 50.401515 ], [ 94.042969, 50.513427 ], [ 92.812500, 50.513427 ], [ 92.812500, 50.625073 ], [ 92.460938, 50.625073 ], [ 92.460938, 50.736455 ], [ 91.757812, 50.736455 ], [ 91.757812, 50.625073 ], [ 91.406250, 50.625073 ], [ 91.406250, 50.513427 ], [ 91.054688, 50.513427 ], [ 91.054688, 50.401515 ], [ 90.703125, 50.401515 ], [ 90.703125, 50.289339 ], [ 90.351562, 50.289339 ], [ 90.351562, 50.176898 ], [ 90.175781, 50.176898 ], [ 90.175781, 50.064192 ], [ 89.824219, 50.064192 ], [ 89.824219, 49.951220 ], [ 89.648438, 49.951220 ], [ 89.648438, 49.837982 ], [ 89.296875, 49.837982 ], [ 89.296875, 49.724479 ], [ 89.121094, 49.724479 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.140625, 51.944265 ], [ 99.140625, 51.835778 ], [ 99.492188, 51.835778 ], [ 99.492188, 51.727028 ], [ 99.843750, 51.727028 ], [ 99.843750, 51.618017 ], [ 100.371094, 51.618017 ], [ 100.371094, 51.508742 ], [ 101.074219, 51.508742 ], [ 101.074219, 51.399206 ], [ 101.777344, 51.399206 ], [ 101.777344, 51.289406 ], [ 102.128906, 51.289406 ], [ 102.128906, 50.847573 ], [ 102.304688, 50.847573 ], [ 102.304688, 50.401515 ], [ 102.656250, 50.401515 ], [ 102.656250, 50.289339 ], [ 103.007812, 50.289339 ], [ 103.007812, 50.176898 ], [ 103.359375, 50.176898 ], [ 103.359375, 50.064192 ], [ 104.062500, 50.064192 ], [ 104.062500, 50.176898 ], [ 104.414062, 50.176898 ], [ 104.414062, 50.289339 ], [ 105.292969, 50.289339 ], [ 105.292969, 50.401515 ], [ 106.171875, 50.401515 ], [ 106.171875, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.176898 ], [ 107.226562, 50.176898 ], [ 107.226562, 50.064192 ], [ 107.402344, 50.064192 ], [ 107.402344, 49.951220 ], [ 107.753906, 49.951220 ], [ 107.753906, 49.837982 ], [ 107.929688, 49.837982 ], [ 107.929688, 49.724479 ], [ 108.105469, 49.724479 ], [ 108.105469, 49.496675 ], [ 108.281250, 49.496675 ], [ 108.281250, 49.267805 ], [ 109.863281, 49.267805 ], [ 109.863281, 49.152970 ], [ 111.093750, 49.152970 ], [ 111.093750, 49.267805 ], [ 111.445312, 49.267805 ], [ 111.445312, 49.382373 ], [ 112.324219, 49.382373 ], [ 112.324219, 49.496675 ], [ 113.027344, 49.496675 ], [ 113.027344, 49.610710 ], [ 113.203125, 49.610710 ], [ 113.203125, 49.724479 ], [ 113.554688, 49.724479 ], [ 113.554688, 49.837982 ], [ 113.730469, 49.837982 ], [ 113.730469, 49.951220 ], [ 113.906250, 49.951220 ], [ 113.906250, 50.064192 ], [ 114.257812, 50.064192 ], [ 114.257812, 50.176898 ], [ 114.433594, 50.176898 ], [ 114.433594, 50.289339 ], [ 114.609375, 50.289339 ], [ 114.609375, 50.176898 ], [ 114.960938, 50.176898 ], [ 114.960938, 50.064192 ], [ 115.136719, 50.064192 ], [ 115.136719, 49.951220 ], [ 115.312500, 49.951220 ], [ 115.312500, 49.837982 ], [ 116.718750, 49.837982 ], [ 116.718750, 49.724479 ], [ 116.542969, 49.724479 ], [ 116.542969, 49.496675 ], [ 116.367188, 49.496675 ], [ 116.367188, 49.267805 ], [ 116.191406, 49.267805 ], [ 116.191406, 48.922499 ], [ 116.015625, 48.922499 ], [ 116.015625, 48.690960 ], [ 115.839844, 48.690960 ], [ 115.839844, 48.458352 ], [ 115.664062, 48.458352 ], [ 115.664062, 48.224673 ], [ 115.488281, 48.224673 ], [ 115.488281, 47.872144 ], [ 115.664062, 47.872144 ], [ 115.664062, 47.754098 ], [ 116.191406, 47.754098 ], [ 116.191406, 47.872144 ], [ 116.718750, 47.872144 ], [ 116.718750, 47.754098 ], [ 117.421875, 47.754098 ], [ 117.421875, 47.872144 ], [ 117.773438, 47.872144 ], [ 117.773438, 47.989922 ], [ 118.300781, 47.989922 ], [ 118.300781, 47.872144 ], [ 118.652344, 47.872144 ], [ 118.652344, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.635784 ], [ 119.003906, 47.635784 ], [ 119.003906, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.398349 ], [ 119.355469, 47.398349 ], [ 119.355469, 47.159840 ], [ 119.531250, 47.159840 ], [ 119.531250, 47.040182 ], [ 119.707031, 47.040182 ], [ 119.707031, 46.679594 ], [ 119.179688, 46.679594 ], [ 119.179688, 46.800059 ], [ 118.300781, 46.800059 ], [ 118.300781, 46.679594 ], [ 117.421875, 46.679594 ], [ 117.421875, 46.558860 ], [ 117.070312, 46.558860 ], [ 117.070312, 46.437857 ], [ 116.718750, 46.437857 ], [ 116.718750, 46.316584 ], [ 116.542969, 46.316584 ], [ 116.542969, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 45.951150 ], [ 116.191406, 45.951150 ], [ 116.191406, 45.706179 ], [ 115.839844, 45.706179 ], [ 115.839844, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.460131 ], [ 114.785156, 45.460131 ], [ 114.785156, 45.336702 ], [ 114.433594, 45.336702 ], [ 114.433594, 45.213004 ], [ 114.082031, 45.213004 ], [ 114.082031, 45.089036 ], [ 113.906250, 45.089036 ], [ 113.906250, 44.964798 ], [ 113.554688, 44.964798 ], [ 113.554688, 44.840291 ], [ 112.851562, 44.840291 ], [ 112.851562, 44.964798 ], [ 111.972656, 44.964798 ], [ 111.972656, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 44.964798 ], [ 111.621094, 44.964798 ], [ 111.621094, 44.715514 ], [ 111.445312, 44.715514 ], [ 111.445312, 44.465151 ], [ 111.269531, 44.465151 ], [ 111.269531, 44.339565 ], [ 111.445312, 44.339565 ], [ 111.445312, 44.087585 ], [ 111.621094, 44.087585 ], [ 111.621094, 43.834527 ], [ 111.796875, 43.834527 ], [ 111.796875, 43.580391 ], [ 111.445312, 43.580391 ], [ 111.445312, 43.452919 ], [ 111.093750, 43.452919 ], [ 111.093750, 43.325178 ], [ 110.917969, 43.325178 ], [ 110.917969, 43.197167 ], [ 110.742188, 43.197167 ], [ 110.742188, 42.940339 ], [ 110.566406, 42.940339 ], [ 110.566406, 42.811522 ], [ 110.214844, 42.811522 ], [ 110.214844, 42.682435 ], [ 109.511719, 42.682435 ], [ 109.511719, 42.553080 ], [ 108.632812, 42.553080 ], [ 108.632812, 42.423457 ], [ 107.402344, 42.423457 ], [ 107.402344, 42.293564 ], [ 106.699219, 42.293564 ], [ 106.699219, 42.163403 ], [ 106.171875, 42.163403 ], [ 106.171875, 42.032974 ], [ 105.820312, 42.032974 ], [ 105.820312, 41.902277 ], [ 105.468750, 41.902277 ], [ 105.468750, 41.771312 ], [ 105.117188, 41.771312 ], [ 105.117188, 41.640078 ], [ 104.765625, 41.640078 ], [ 104.765625, 41.771312 ], [ 104.589844, 41.771312 ], [ 104.589844, 41.902277 ], [ 103.183594, 41.902277 ], [ 103.183594, 42.032974 ], [ 102.832031, 42.032974 ], [ 102.832031, 42.163403 ], [ 102.480469, 42.163403 ], [ 102.480469, 42.293564 ], [ 102.128906, 42.293564 ], [ 102.128906, 42.423457 ], [ 101.777344, 42.423457 ], [ 101.777344, 42.553080 ], [ 101.250000, 42.553080 ], [ 101.250000, 42.682435 ], [ 100.371094, 42.682435 ], [ 100.371094, 42.553080 ], [ 98.789062, 42.553080 ], [ 98.789062, 42.682435 ], [ 97.734375, 42.682435 ], [ 97.734375, 42.811522 ], [ 97.031250, 42.811522 ], [ 97.031250, 42.682435 ], [ 96.152344, 42.682435 ], [ 96.152344, 42.940339 ], [ 95.976562, 42.940339 ], [ 95.976562, 43.197167 ], [ 95.800781, 43.197167 ], [ 95.800781, 43.452919 ], [ 95.625000, 43.452919 ], [ 95.625000, 43.707594 ], [ 95.449219, 43.707594 ], [ 95.449219, 43.961191 ], [ 95.273438, 43.961191 ], [ 95.273438, 44.213710 ], [ 94.921875, 44.213710 ], [ 94.921875, 44.339565 ], [ 94.570312, 44.339565 ], [ 94.570312, 44.465151 ], [ 94.218750, 44.465151 ], [ 94.218750, 44.590467 ], [ 94.042969, 44.590467 ], [ 94.042969, 44.715514 ], [ 93.867188, 44.715514 ], [ 93.867188, 44.840291 ], [ 93.515625, 44.840291 ], [ 93.515625, 44.964798 ], [ 92.636719, 44.964798 ], [ 92.636719, 45.089036 ], [ 91.757812, 45.089036 ], [ 91.757812, 45.213004 ], [ 91.054688, 45.213004 ], [ 91.054688, 45.336702 ], [ 90.703125, 45.336702 ], [ 90.703125, 45.583290 ], [ 90.527344, 45.583290 ], [ 90.527344, 45.828799 ], [ 90.703125, 45.828799 ], [ 90.703125, 46.316584 ], [ 90.878906, 46.316584 ], [ 90.878906, 46.679594 ], [ 91.054688, 46.679594 ], [ 91.054688, 46.920255 ], [ 90.878906, 46.920255 ], [ 90.878906, 47.159840 ], [ 90.703125, 47.159840 ], [ 90.703125, 47.279229 ], [ 90.527344, 47.279229 ], [ 90.527344, 47.517201 ], [ 90.351562, 47.517201 ], [ 90.351562, 47.635784 ], [ 90.000000, 47.635784 ], [ 90.000000, 47.754098 ], [ 89.648438, 47.754098 ], [ 89.648438, 47.872144 ], [ 89.296875, 47.872144 ], [ 89.296875, 47.989922 ], [ 89.121094, 47.989922 ], [ 89.121094, 49.610710 ], [ 89.296875, 49.610710 ], [ 89.296875, 49.724479 ], [ 89.648438, 49.724479 ], [ 89.648438, 49.837982 ], [ 89.824219, 49.837982 ], [ 89.824219, 49.951220 ], [ 90.175781, 49.951220 ], [ 90.175781, 50.064192 ], [ 90.351562, 50.064192 ], [ 90.351562, 50.176898 ], [ 90.703125, 50.176898 ], [ 90.703125, 50.289339 ], [ 90.878906, 50.289339 ], [ 90.878906, 50.401515 ], [ 91.230469, 50.401515 ], [ 91.230469, 50.513427 ], [ 91.582031, 50.513427 ], [ 91.582031, 50.625073 ], [ 91.933594, 50.625073 ], [ 91.933594, 50.736455 ], [ 92.636719, 50.736455 ], [ 92.636719, 50.625073 ], [ 92.988281, 50.625073 ], [ 92.988281, 50.513427 ], [ 94.218750, 50.513427 ], [ 94.218750, 50.401515 ], [ 94.394531, 50.401515 ], [ 94.394531, 50.289339 ], [ 94.570312, 50.289339 ], [ 94.570312, 50.064192 ], [ 95.097656, 50.064192 ], [ 95.097656, 49.951220 ], [ 95.976562, 49.951220 ], [ 95.976562, 49.837982 ], [ 96.679688, 49.837982 ], [ 96.679688, 49.724479 ], [ 97.382812, 49.724479 ], [ 97.382812, 49.837982 ], [ 97.558594, 49.837982 ], [ 97.558594, 49.951220 ], [ 97.734375, 49.951220 ], [ 97.734375, 50.064192 ], [ 97.910156, 50.064192 ], [ 97.910156, 50.176898 ], [ 98.085938, 50.176898 ], [ 98.085938, 50.289339 ], [ 98.261719, 50.289339 ], [ 98.261719, 50.513427 ], [ 98.085938, 50.513427 ], [ 98.085938, 50.736455 ], [ 97.910156, 50.736455 ], [ 97.910156, 51.069017 ], [ 98.085938, 51.069017 ], [ 98.085938, 51.289406 ], [ 98.261719, 51.289406 ], [ 98.261719, 51.508742 ], [ 98.437500, 51.508742 ], [ 98.437500, 51.727028 ], [ 98.613281, 51.727028 ], [ 98.613281, 51.944265 ], [ 99.140625, 51.944265 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.140625, 51.944265 ], [ 99.140625, 51.835778 ], [ 99.492188, 51.835778 ], [ 99.492188, 51.727028 ], [ 100.195312, 51.727028 ], [ 100.195312, 51.618017 ], [ 100.898438, 51.618017 ], [ 100.898438, 51.508742 ], [ 101.250000, 51.508742 ], [ 101.250000, 51.399206 ], [ 101.601562, 51.399206 ], [ 101.601562, 51.289406 ], [ 101.953125, 51.289406 ], [ 101.953125, 50.847573 ], [ 102.128906, 50.847573 ], [ 102.128906, 50.513427 ], [ 102.304688, 50.513427 ], [ 102.304688, 50.401515 ], [ 102.656250, 50.401515 ], [ 102.656250, 50.289339 ], [ 103.183594, 50.289339 ], [ 103.183594, 50.176898 ], [ 104.238281, 50.176898 ], [ 104.238281, 50.289339 ], [ 104.941406, 50.289339 ], [ 104.941406, 50.401515 ], [ 105.644531, 50.401515 ], [ 105.644531, 50.513427 ], [ 105.996094, 50.513427 ], [ 105.996094, 50.401515 ], [ 106.523438, 50.401515 ], [ 106.523438, 50.289339 ], [ 106.875000, 50.289339 ], [ 106.875000, 50.176898 ], [ 107.050781, 50.176898 ], [ 107.050781, 50.064192 ], [ 107.402344, 50.064192 ], [ 107.402344, 49.951220 ], [ 107.578125, 49.951220 ], [ 107.578125, 49.837982 ], [ 107.753906, 49.837982 ], [ 107.753906, 49.724479 ], [ 107.929688, 49.724479 ], [ 107.929688, 49.610710 ], [ 108.105469, 49.610710 ], [ 108.105469, 49.496675 ], [ 108.281250, 49.496675 ], [ 108.281250, 49.382373 ], [ 109.511719, 49.382373 ], [ 109.511719, 49.267805 ], [ 110.214844, 49.267805 ], [ 110.214844, 49.152970 ], [ 110.917969, 49.152970 ], [ 110.917969, 49.267805 ], [ 111.269531, 49.267805 ], [ 111.269531, 49.382373 ], [ 111.972656, 49.382373 ], [ 111.972656, 49.496675 ], [ 112.675781, 49.496675 ], [ 112.675781, 49.610710 ], [ 113.027344, 49.610710 ], [ 113.027344, 49.724479 ], [ 113.378906, 49.724479 ], [ 113.378906, 49.837982 ], [ 113.554688, 49.837982 ], [ 113.554688, 49.951220 ], [ 113.730469, 49.951220 ], [ 113.730469, 50.064192 ], [ 114.082031, 50.064192 ], [ 114.082031, 50.176898 ], [ 114.257812, 50.176898 ], [ 114.257812, 50.289339 ], [ 114.433594, 50.289339 ], [ 114.433594, 50.176898 ], [ 114.960938, 50.176898 ], [ 114.960938, 50.064192 ], [ 115.136719, 50.064192 ], [ 115.136719, 49.951220 ], [ 115.312500, 49.951220 ], [ 115.312500, 49.837982 ], [ 116.191406, 49.837982 ], [ 116.191406, 49.951220 ], [ 116.542969, 49.951220 ], [ 116.542969, 49.724479 ], [ 116.367188, 49.724479 ], [ 116.367188, 49.267805 ], [ 116.191406, 49.267805 ], [ 116.191406, 49.037868 ], [ 116.015625, 49.037868 ], [ 116.015625, 48.806863 ], [ 115.839844, 48.806863 ], [ 115.839844, 48.690960 ], [ 115.664062, 48.690960 ], [ 115.664062, 48.458352 ], [ 115.488281, 48.458352 ], [ 115.488281, 48.224673 ], [ 115.312500, 48.224673 ], [ 115.312500, 48.107431 ], [ 115.488281, 48.107431 ], [ 115.488281, 47.872144 ], [ 115.664062, 47.872144 ], [ 115.664062, 47.754098 ], [ 116.015625, 47.754098 ], [ 116.015625, 47.872144 ], [ 116.542969, 47.872144 ], [ 116.542969, 47.754098 ], [ 117.421875, 47.754098 ], [ 117.421875, 47.872144 ], [ 117.773438, 47.872144 ], [ 117.773438, 47.989922 ], [ 118.300781, 47.989922 ], [ 118.300781, 47.872144 ], [ 118.652344, 47.872144 ], [ 118.652344, 47.754098 ], [ 118.828125, 47.754098 ], [ 118.828125, 47.635784 ], [ 119.003906, 47.635784 ], [ 119.003906, 47.517201 ], [ 119.179688, 47.517201 ], [ 119.179688, 47.398349 ], [ 119.355469, 47.398349 ], [ 119.355469, 47.279229 ], [ 119.531250, 47.279229 ], [ 119.531250, 47.159840 ], [ 119.707031, 47.159840 ], [ 119.707031, 46.920255 ], [ 119.531250, 46.920255 ], [ 119.531250, 46.800059 ], [ 119.003906, 46.800059 ], [ 119.003906, 46.920255 ], [ 118.652344, 46.920255 ], [ 118.652344, 46.800059 ], [ 117.949219, 46.800059 ], [ 117.949219, 46.679594 ], [ 117.421875, 46.679594 ], [ 117.421875, 46.558860 ], [ 117.070312, 46.558860 ], [ 117.070312, 46.437857 ], [ 116.718750, 46.437857 ], [ 116.718750, 46.316584 ], [ 116.542969, 46.316584 ], [ 116.542969, 46.195042 ], [ 116.367188, 46.195042 ], [ 116.367188, 46.073231 ], [ 116.191406, 46.073231 ], [ 116.191406, 45.951150 ], [ 116.015625, 45.951150 ], [ 116.015625, 45.828799 ], [ 115.664062, 45.828799 ], [ 115.664062, 45.706179 ], [ 115.312500, 45.706179 ], [ 115.312500, 45.583290 ], [ 114.785156, 45.583290 ], [ 114.785156, 45.460131 ], [ 114.433594, 45.460131 ], [ 114.433594, 45.336702 ], [ 114.257812, 45.336702 ], [ 114.257812, 45.213004 ], [ 114.082031, 45.213004 ], [ 114.082031, 45.089036 ], [ 113.730469, 45.089036 ], [ 113.730469, 44.964798 ], [ 113.554688, 44.964798 ], [ 113.554688, 44.840291 ], [ 113.027344, 44.840291 ], [ 113.027344, 44.964798 ], [ 112.500000, 44.964798 ], [ 112.500000, 45.089036 ], [ 111.972656, 45.089036 ], [ 111.972656, 45.213004 ], [ 111.796875, 45.213004 ], [ 111.796875, 45.089036 ], [ 111.621094, 45.089036 ], [ 111.621094, 44.840291 ], [ 111.445312, 44.840291 ], [ 111.445312, 44.590467 ], [ 111.269531, 44.590467 ], [ 111.269531, 44.339565 ], [ 111.445312, 44.339565 ], [ 111.445312, 44.087585 ], [ 111.621094, 44.087585 ], [ 111.621094, 43.961191 ], [ 111.796875, 43.961191 ], [ 111.796875, 43.707594 ], [ 111.621094, 43.707594 ], [ 111.621094, 43.580391 ], [ 111.269531, 43.580391 ], [ 111.269531, 43.452919 ], [ 111.093750, 43.452919 ], [ 111.093750, 43.325178 ], [ 110.917969, 43.325178 ], [ 110.917969, 43.197167 ], [ 110.742188, 43.197167 ], [ 110.742188, 43.068888 ], [ 110.566406, 43.068888 ], [ 110.566406, 42.940339 ], [ 110.214844, 42.940339 ], [ 110.214844, 42.811522 ], [ 109.863281, 42.811522 ], [ 109.863281, 42.682435 ], [ 109.511719, 42.682435 ], [ 109.511719, 42.553080 ], [ 107.402344, 42.553080 ], [ 107.402344, 42.423457 ], [ 106.875000, 42.423457 ], [ 106.875000, 42.293564 ], [ 106.347656, 42.293564 ], [ 106.347656, 42.163403 ], [ 105.996094, 42.163403 ], [ 105.996094, 42.032974 ], [ 105.644531, 42.032974 ], [ 105.644531, 41.902277 ], [ 105.468750, 41.902277 ], [ 105.468750, 41.771312 ], [ 105.117188, 41.771312 ], [ 105.117188, 41.640078 ], [ 104.765625, 41.640078 ], [ 104.765625, 41.771312 ], [ 104.589844, 41.771312 ], [ 104.589844, 41.902277 ], [ 104.414062, 41.902277 ], [ 104.414062, 42.032974 ], [ 102.832031, 42.032974 ], [ 102.832031, 42.163403 ], [ 102.480469, 42.163403 ], [ 102.480469, 42.293564 ], [ 102.128906, 42.293564 ], [ 102.128906, 42.423457 ], [ 101.777344, 42.423457 ], [ 101.777344, 42.553080 ], [ 101.074219, 42.553080 ], [ 101.074219, 42.682435 ], [ 100.195312, 42.682435 ], [ 100.195312, 42.553080 ], [ 98.789062, 42.553080 ], [ 98.789062, 42.682435 ], [ 97.734375, 42.682435 ], [ 97.734375, 42.811522 ], [ 96.152344, 42.811522 ], [ 96.152344, 42.940339 ], [ 95.976562, 42.940339 ], [ 95.976562, 43.068888 ], [ 95.800781, 43.068888 ], [ 95.800781, 43.197167 ], [ 95.625000, 43.197167 ], [ 95.625000, 43.580391 ], [ 95.449219, 43.580391 ], [ 95.449219, 44.087585 ], [ 95.273438, 44.087585 ], [ 95.273438, 44.339565 ], [ 94.746094, 44.339565 ], [ 94.746094, 44.465151 ], [ 94.394531, 44.465151 ], [ 94.394531, 44.590467 ], [ 94.042969, 44.590467 ], [ 94.042969, 44.715514 ], [ 93.867188, 44.715514 ], [ 93.867188, 44.840291 ], [ 93.691406, 44.840291 ], [ 93.691406, 44.964798 ], [ 93.339844, 44.964798 ], [ 93.339844, 45.089036 ], [ 92.636719, 45.089036 ], [ 92.636719, 45.213004 ], [ 91.406250, 45.213004 ], [ 91.406250, 45.336702 ], [ 90.878906, 45.336702 ], [ 90.878906, 45.460131 ], [ 90.703125, 45.460131 ], [ 90.703125, 45.706179 ], [ 90.527344, 45.706179 ], [ 90.527344, 46.073231 ], [ 90.703125, 46.073231 ], [ 90.703125, 46.558860 ], [ 90.878906, 46.558860 ], [ 90.878906, 46.920255 ], [ 90.703125, 46.920255 ], [ 90.703125, 47.159840 ], [ 90.527344, 47.159840 ], [ 90.527344, 47.398349 ], [ 90.351562, 47.398349 ], [ 90.351562, 47.635784 ], [ 90.175781, 47.635784 ], [ 90.175781, 47.754098 ], [ 89.824219, 47.754098 ], [ 89.824219, 47.872144 ], [ 89.472656, 47.872144 ], [ 89.472656, 47.989922 ], [ 89.121094, 47.989922 ], [ 89.121094, 49.724479 ], [ 89.296875, 49.724479 ], [ 89.296875, 49.837982 ], [ 89.648438, 49.837982 ], [ 89.648438, 49.951220 ], [ 89.824219, 49.951220 ], [ 89.824219, 50.064192 ], [ 90.175781, 50.064192 ], [ 90.175781, 50.176898 ], [ 90.351562, 50.176898 ], [ 90.351562, 50.289339 ], [ 90.703125, 50.289339 ], [ 90.703125, 50.401515 ], [ 91.054688, 50.401515 ], [ 91.054688, 50.513427 ], [ 91.406250, 50.513427 ], [ 91.406250, 50.625073 ], [ 91.757812, 50.625073 ], [ 91.757812, 50.736455 ], [ 92.460938, 50.736455 ], [ 92.460938, 50.625073 ], [ 92.812500, 50.625073 ], [ 92.812500, 50.513427 ], [ 94.042969, 50.513427 ], [ 94.042969, 50.401515 ], [ 94.218750, 50.401515 ], [ 94.218750, 50.289339 ], [ 94.394531, 50.289339 ], [ 94.394531, 50.176898 ], [ 94.570312, 50.176898 ], [ 94.570312, 50.064192 ], [ 95.976562, 50.064192 ], [ 95.976562, 49.951220 ], [ 96.328125, 49.951220 ], [ 96.328125, 49.837982 ], [ 96.855469, 49.837982 ], [ 96.855469, 49.724479 ], [ 97.382812, 49.724479 ], [ 97.382812, 49.951220 ], [ 97.558594, 49.951220 ], [ 97.558594, 50.064192 ], [ 97.734375, 50.064192 ], [ 97.734375, 50.176898 ], [ 97.910156, 50.176898 ], [ 97.910156, 50.401515 ], [ 98.085938, 50.401515 ], [ 98.085938, 50.625073 ], [ 97.910156, 50.625073 ], [ 97.910156, 50.847573 ], [ 97.734375, 50.847573 ], [ 97.734375, 51.069017 ], [ 97.910156, 51.069017 ], [ 97.910156, 51.289406 ], [ 98.085938, 51.289406 ], [ 98.085938, 51.399206 ], [ 98.261719, 51.399206 ], [ 98.261719, 51.618017 ], [ 98.437500, 51.618017 ], [ 98.437500, 51.727028 ], [ 98.613281, 51.727028 ], [ 98.613281, 51.944265 ], [ 99.140625, 51.944265 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.750000, 53.435719 ], [ 123.750000, 53.330873 ], [ 124.101562, 53.330873 ], [ 124.101562, 53.225768 ], [ 124.628906, 53.225768 ], [ 124.628906, 53.120405 ], [ 124.980469, 53.120405 ], [ 124.980469, 53.014783 ], [ 125.332031, 53.014783 ], [ 125.332031, 52.908902 ], [ 125.683594, 52.908902 ], [ 125.683594, 52.802761 ], [ 125.859375, 52.802761 ], [ 125.859375, 52.589701 ], [ 126.035156, 52.589701 ], [ 126.035156, 52.375599 ], [ 126.210938, 52.375599 ], [ 126.210938, 52.160455 ], [ 126.386719, 52.160455 ], [ 126.386719, 51.944265 ], [ 126.562500, 51.944265 ], [ 126.562500, 51.727028 ], [ 126.738281, 51.727028 ], [ 126.738281, 51.508742 ], [ 126.914062, 51.508742 ], [ 126.914062, 51.179343 ], [ 127.089844, 51.179343 ], [ 127.089844, 50.847573 ], [ 127.265625, 50.847573 ], [ 127.265625, 50.401515 ], [ 127.441406, 50.401515 ], [ 127.441406, 49.951220 ], [ 127.617188, 49.951220 ], [ 127.617188, 49.724479 ], [ 127.968750, 49.724479 ], [ 127.968750, 49.610710 ], [ 128.847656, 49.610710 ], [ 128.847656, 49.496675 ], [ 129.375000, 49.496675 ], [ 129.375000, 49.382373 ], [ 129.550781, 49.382373 ], [ 129.550781, 49.267805 ], [ 129.726562, 49.267805 ], [ 129.726562, 49.152970 ], [ 129.902344, 49.152970 ], [ 129.902344, 49.037868 ], [ 130.078125, 49.037868 ], [ 130.078125, 48.922499 ], [ 130.253906, 48.922499 ], [ 130.253906, 48.806863 ], [ 130.429688, 48.806863 ], [ 130.429688, 48.690960 ], [ 130.605469, 48.690960 ], [ 130.605469, 48.458352 ], [ 130.781250, 48.458352 ], [ 130.781250, 47.989922 ], [ 130.957031, 47.989922 ], [ 130.957031, 47.754098 ], [ 132.714844, 47.754098 ], [ 132.714844, 47.872144 ], [ 132.890625, 47.872144 ], [ 132.890625, 47.989922 ], [ 133.242188, 47.989922 ], [ 133.242188, 48.107431 ], [ 133.417969, 48.107431 ], [ 133.417969, 48.224673 ], [ 133.945312, 48.224673 ], [ 133.945312, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 46.800059 ], [ 133.945312, 46.800059 ], [ 133.945312, 46.316584 ], [ 133.769531, 46.316584 ], [ 133.769531, 45.951150 ], [ 133.593750, 45.951150 ], [ 133.593750, 45.706179 ], [ 133.417969, 45.706179 ], [ 133.417969, 45.460131 ], [ 133.242188, 45.460131 ], [ 133.242188, 45.213004 ], [ 133.066406, 45.213004 ], [ 133.066406, 45.089036 ], [ 132.714844, 45.089036 ], [ 132.714844, 45.213004 ], [ 132.011719, 45.213004 ], [ 132.011719, 45.336702 ], [ 131.835938, 45.336702 ], [ 131.835938, 45.213004 ], [ 131.484375, 45.213004 ], [ 131.484375, 45.089036 ], [ 131.132812, 45.089036 ], [ 131.132812, 44.964798 ], [ 130.957031, 44.964798 ], [ 130.957031, 44.715514 ], [ 131.132812, 44.715514 ], [ 131.132812, 44.213710 ], [ 131.308594, 44.213710 ], [ 131.308594, 43.452919 ], [ 131.132812, 43.452919 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 130.429688, 42.423457 ], [ 130.429688, 42.682435 ], [ 130.253906, 42.682435 ], [ 130.253906, 42.811522 ], [ 129.902344, 42.811522 ], [ 129.902344, 42.682435 ], [ 129.726562, 42.682435 ], [ 129.726562, 42.423457 ], [ 129.375000, 42.423457 ], [ 129.375000, 42.293564 ], [ 128.847656, 42.293564 ], [ 128.847656, 42.163403 ], [ 128.320312, 42.163403 ], [ 128.320312, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.144531, 41.771312 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 126.738281, 41.640078 ], [ 126.738281, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.244772 ], [ 126.386719, 41.244772 ], [ 126.386719, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 40.979898 ], [ 125.859375, 40.979898 ], [ 125.859375, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.713956 ], [ 125.332031, 40.713956 ], [ 125.332031, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.289062, 40.847060 ], [ 121.289062, 40.713956 ], [ 120.937500, 40.713956 ], [ 120.937500, 40.580585 ], [ 120.761719, 40.580585 ], [ 120.761719, 40.446947 ], [ 120.410156, 40.446947 ], [ 120.410156, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.989922 ], [ 89.296875, 47.989922 ], [ 89.296875, 47.872144 ], [ 89.648438, 47.872144 ], [ 89.648438, 47.754098 ], [ 90.000000, 47.754098 ], [ 90.000000, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.517201 ], [ 90.527344, 47.517201 ], [ 90.527344, 47.279229 ], [ 90.703125, 47.279229 ], [ 90.703125, 47.159840 ], [ 90.878906, 47.159840 ], [ 90.878906, 46.920255 ], [ 91.054688, 46.920255 ], [ 91.054688, 46.679594 ], [ 90.878906, 46.679594 ], [ 90.878906, 46.316584 ], [ 90.703125, 46.316584 ], [ 90.703125, 45.828799 ], [ 90.527344, 45.828799 ], [ 90.527344, 45.583290 ], [ 90.703125, 45.583290 ], [ 90.703125, 45.336702 ], [ 91.054688, 45.336702 ], [ 91.054688, 45.213004 ], [ 91.757812, 45.213004 ], [ 91.757812, 45.089036 ], [ 92.636719, 45.089036 ], [ 92.636719, 44.964798 ], [ 93.515625, 44.964798 ], [ 93.515625, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.715514 ], [ 94.042969, 44.715514 ], [ 94.042969, 44.590467 ], [ 94.218750, 44.590467 ], [ 94.218750, 44.465151 ], [ 94.570312, 44.465151 ], [ 94.570312, 44.339565 ], [ 94.921875, 44.339565 ], [ 94.921875, 44.213710 ], [ 95.273438, 44.213710 ], [ 95.273438, 43.961191 ], [ 95.449219, 43.961191 ], [ 95.449219, 43.707594 ], [ 95.625000, 43.707594 ], [ 95.625000, 43.452919 ], [ 95.800781, 43.452919 ], [ 95.800781, 43.197167 ], [ 95.976562, 43.197167 ], [ 95.976562, 42.940339 ], [ 96.152344, 42.940339 ], [ 96.152344, 42.682435 ], [ 97.031250, 42.682435 ], [ 97.031250, 42.811522 ], [ 97.734375, 42.811522 ], [ 97.734375, 42.682435 ], [ 98.789062, 42.682435 ], [ 98.789062, 42.553080 ], [ 100.371094, 42.553080 ], [ 100.371094, 42.682435 ], [ 101.250000, 42.682435 ], [ 101.250000, 42.553080 ], [ 101.777344, 42.553080 ], [ 101.777344, 42.423457 ], [ 102.128906, 42.423457 ], [ 102.128906, 42.293564 ], [ 102.480469, 42.293564 ], [ 102.480469, 42.163403 ], [ 102.832031, 42.163403 ], [ 102.832031, 42.032974 ], [ 103.183594, 42.032974 ], [ 103.183594, 41.902277 ], [ 104.589844, 41.902277 ], [ 104.589844, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.640078 ], [ 105.117188, 41.640078 ], [ 105.117188, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.902277 ], [ 105.820312, 41.902277 ], [ 105.820312, 42.032974 ], [ 106.171875, 42.032974 ], [ 106.171875, 42.163403 ], [ 106.699219, 42.163403 ], [ 106.699219, 42.293564 ], [ 107.402344, 42.293564 ], [ 107.402344, 42.423457 ], [ 108.632812, 42.423457 ], [ 108.632812, 42.553080 ], [ 109.511719, 42.553080 ], [ 109.511719, 42.682435 ], [ 110.214844, 42.682435 ], [ 110.214844, 42.811522 ], [ 110.566406, 42.811522 ], [ 110.566406, 42.940339 ], [ 110.742188, 42.940339 ], [ 110.742188, 43.197167 ], [ 110.917969, 43.197167 ], [ 110.917969, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.452919 ], [ 111.445312, 43.452919 ], [ 111.445312, 43.580391 ], [ 111.796875, 43.580391 ], [ 111.796875, 43.834527 ], [ 111.621094, 43.834527 ], [ 111.621094, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.339565 ], [ 111.269531, 44.339565 ], [ 111.269531, 44.465151 ], [ 111.445312, 44.465151 ], [ 111.445312, 44.715514 ], [ 111.621094, 44.715514 ], [ 111.621094, 44.964798 ], [ 111.796875, 44.964798 ], [ 111.796875, 45.089036 ], [ 111.972656, 45.089036 ], [ 111.972656, 44.964798 ], [ 112.851562, 44.964798 ], [ 112.851562, 44.840291 ], [ 113.554688, 44.840291 ], [ 113.554688, 44.964798 ], [ 113.906250, 44.964798 ], [ 113.906250, 45.089036 ], [ 114.082031, 45.089036 ], [ 114.082031, 45.213004 ], [ 114.433594, 45.213004 ], [ 114.433594, 45.336702 ], [ 114.785156, 45.336702 ], [ 114.785156, 45.460131 ], [ 115.312500, 45.460131 ], [ 115.312500, 45.583290 ], [ 115.839844, 45.583290 ], [ 115.839844, 45.706179 ], [ 116.191406, 45.706179 ], [ 116.191406, 45.951150 ], [ 116.367188, 45.951150 ], [ 116.367188, 46.073231 ], [ 116.542969, 46.073231 ], [ 116.542969, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.437857 ], [ 117.070312, 46.437857 ], [ 117.070312, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.679594 ], [ 118.300781, 46.679594 ], [ 118.300781, 46.800059 ], [ 119.179688, 46.800059 ], [ 119.179688, 46.679594 ], [ 119.707031, 46.679594 ], [ 119.707031, 47.040182 ], [ 119.531250, 47.040182 ], [ 119.531250, 47.159840 ], [ 119.355469, 47.159840 ], [ 119.355469, 47.398349 ], [ 119.179688, 47.398349 ], [ 119.179688, 47.517201 ], [ 119.003906, 47.517201 ], [ 119.003906, 47.635784 ], [ 118.828125, 47.635784 ], [ 118.828125, 47.754098 ], [ 118.652344, 47.754098 ], [ 118.652344, 47.872144 ], [ 118.300781, 47.872144 ], [ 118.300781, 47.989922 ], [ 117.773438, 47.989922 ], [ 117.773438, 47.872144 ], [ 117.421875, 47.872144 ], [ 117.421875, 47.754098 ], [ 116.718750, 47.754098 ], [ 116.718750, 47.872144 ], [ 116.191406, 47.872144 ], [ 116.191406, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.872144 ], [ 115.488281, 47.872144 ], [ 115.488281, 48.224673 ], [ 115.664062, 48.224673 ], [ 115.664062, 48.458352 ], [ 115.839844, 48.458352 ], [ 115.839844, 48.690960 ], [ 116.015625, 48.690960 ], [ 116.015625, 48.922499 ], [ 116.191406, 48.922499 ], [ 116.191406, 49.267805 ], [ 116.367188, 49.267805 ], [ 116.367188, 49.496675 ], [ 116.542969, 49.496675 ], [ 116.542969, 49.724479 ], [ 116.718750, 49.724479 ], [ 116.718750, 49.837982 ], [ 116.894531, 49.837982 ], [ 116.894531, 49.724479 ], [ 117.246094, 49.724479 ], [ 117.246094, 49.610710 ], [ 117.597656, 49.610710 ], [ 117.597656, 49.496675 ], [ 118.125000, 49.496675 ], [ 118.125000, 49.610710 ], [ 118.476562, 49.610710 ], [ 118.476562, 49.724479 ], [ 118.652344, 49.724479 ], [ 118.652344, 49.837982 ], [ 118.828125, 49.837982 ], [ 118.828125, 49.951220 ], [ 119.179688, 49.951220 ], [ 119.179688, 50.064192 ], [ 119.355469, 50.064192 ], [ 119.355469, 50.625073 ], [ 119.531250, 50.625073 ], [ 119.531250, 50.847573 ], [ 119.707031, 50.847573 ], [ 119.707031, 51.069017 ], [ 119.882812, 51.069017 ], [ 119.882812, 51.289406 ], [ 120.058594, 51.289406 ], [ 120.058594, 51.508742 ], [ 120.234375, 51.508742 ], [ 120.234375, 51.618017 ], [ 120.410156, 51.618017 ], [ 120.410156, 51.727028 ], [ 120.585938, 51.727028 ], [ 120.585938, 51.835778 ], [ 120.761719, 51.835778 ], [ 120.761719, 52.482780 ], [ 120.585938, 52.482780 ], [ 120.585938, 52.589701 ], [ 120.410156, 52.589701 ], [ 120.410156, 52.696361 ], [ 120.234375, 52.696361 ], [ 120.234375, 52.802761 ], [ 120.410156, 52.802761 ], [ 120.410156, 52.908902 ], [ 120.585938, 52.908902 ], [ 120.585938, 53.014783 ], [ 120.761719, 53.014783 ], [ 120.761719, 53.120405 ], [ 120.937500, 53.120405 ], [ 120.937500, 53.225768 ], [ 121.289062, 53.225768 ], [ 121.289062, 53.330873 ], [ 121.992188, 53.330873 ], [ 121.992188, 53.435719 ], [ 123.750000, 53.435719 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.750000, 53.540307 ], [ 123.750000, 53.435719 ], [ 124.101562, 53.435719 ], [ 124.101562, 53.330873 ], [ 124.628906, 53.330873 ], [ 124.628906, 53.225768 ], [ 124.980469, 53.225768 ], [ 124.980469, 53.120405 ], [ 125.156250, 53.120405 ], [ 125.156250, 53.014783 ], [ 125.507812, 53.014783 ], [ 125.507812, 52.908902 ], [ 125.683594, 52.908902 ], [ 125.683594, 52.802761 ], [ 125.859375, 52.802761 ], [ 125.859375, 52.589701 ], [ 126.035156, 52.589701 ], [ 126.035156, 52.375599 ], [ 126.210938, 52.375599 ], [ 126.210938, 52.160455 ], [ 126.386719, 52.160455 ], [ 126.386719, 51.944265 ], [ 126.562500, 51.944265 ], [ 126.562500, 51.727028 ], [ 126.738281, 51.727028 ], [ 126.738281, 51.508742 ], [ 126.914062, 51.508742 ], [ 126.914062, 51.179343 ], [ 127.089844, 51.179343 ], [ 127.089844, 50.958427 ], [ 127.265625, 50.958427 ], [ 127.265625, 50.513427 ], [ 127.441406, 50.513427 ], [ 127.441406, 50.064192 ], [ 127.617188, 50.064192 ], [ 127.617188, 49.837982 ], [ 127.792969, 49.837982 ], [ 127.792969, 49.724479 ], [ 128.320312, 49.724479 ], [ 128.320312, 49.610710 ], [ 129.023438, 49.610710 ], [ 129.023438, 49.496675 ], [ 129.375000, 49.496675 ], [ 129.375000, 49.382373 ], [ 129.550781, 49.382373 ], [ 129.550781, 49.267805 ], [ 129.726562, 49.267805 ], [ 129.726562, 49.152970 ], [ 129.902344, 49.152970 ], [ 129.902344, 49.037868 ], [ 130.078125, 49.037868 ], [ 130.078125, 48.922499 ], [ 130.253906, 48.922499 ], [ 130.253906, 48.806863 ], [ 130.429688, 48.806863 ], [ 130.429688, 48.574790 ], [ 130.605469, 48.574790 ], [ 130.605469, 48.341646 ], [ 130.781250, 48.341646 ], [ 130.781250, 47.989922 ], [ 130.957031, 47.989922 ], [ 130.957031, 47.872144 ], [ 132.539062, 47.872144 ], [ 132.539062, 47.989922 ], [ 132.890625, 47.989922 ], [ 132.890625, 48.107431 ], [ 133.242188, 48.107431 ], [ 133.242188, 48.224673 ], [ 133.593750, 48.224673 ], [ 133.593750, 48.341646 ], [ 134.296875, 48.341646 ], [ 134.296875, 48.458352 ], [ 134.824219, 48.458352 ], [ 134.824219, 48.574790 ], [ 135.000000, 48.574790 ], [ 135.000000, 48.341646 ], [ 134.824219, 48.341646 ], [ 134.824219, 48.107431 ], [ 134.648438, 48.107431 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.398349 ], [ 134.121094, 47.398349 ], [ 134.121094, 47.279229 ], [ 133.945312, 47.279229 ], [ 133.945312, 46.679594 ], [ 133.769531, 46.679594 ], [ 133.769531, 46.073231 ], [ 133.593750, 46.073231 ], [ 133.593750, 45.828799 ], [ 133.417969, 45.828799 ], [ 133.417969, 45.583290 ], [ 133.242188, 45.583290 ], [ 133.242188, 45.336702 ], [ 133.066406, 45.336702 ], [ 133.066406, 45.213004 ], [ 132.363281, 45.213004 ], [ 132.363281, 45.336702 ], [ 131.660156, 45.336702 ], [ 131.660156, 45.213004 ], [ 131.308594, 45.213004 ], [ 131.308594, 45.089036 ], [ 130.957031, 45.089036 ], [ 130.957031, 44.590467 ], [ 131.132812, 44.590467 ], [ 131.132812, 42.940339 ], [ 130.605469, 42.940339 ], [ 130.605469, 42.423457 ], [ 130.429688, 42.423457 ], [ 130.429688, 42.553080 ], [ 130.253906, 42.553080 ], [ 130.253906, 42.811522 ], [ 130.078125, 42.811522 ], [ 130.078125, 42.940339 ], [ 129.902344, 42.940339 ], [ 129.902344, 42.811522 ], [ 129.726562, 42.811522 ], [ 129.726562, 42.553080 ], [ 129.550781, 42.553080 ], [ 129.550781, 42.423457 ], [ 129.375000, 42.423457 ], [ 129.375000, 42.293564 ], [ 128.847656, 42.293564 ], [ 128.847656, 42.163403 ], [ 128.320312, 42.163403 ], [ 128.320312, 42.032974 ], [ 127.968750, 42.032974 ], [ 127.968750, 41.771312 ], [ 128.144531, 41.771312 ], [ 128.144531, 41.508577 ], [ 127.089844, 41.508577 ], [ 127.089844, 41.640078 ], [ 126.914062, 41.640078 ], [ 126.914062, 41.771312 ], [ 126.562500, 41.771312 ], [ 126.562500, 41.508577 ], [ 126.386719, 41.508577 ], [ 126.386719, 41.376809 ], [ 126.210938, 41.376809 ], [ 126.210938, 41.112469 ], [ 126.035156, 41.112469 ], [ 126.035156, 40.979898 ], [ 125.683594, 40.979898 ], [ 125.683594, 40.847060 ], [ 125.507812, 40.847060 ], [ 125.507812, 40.713956 ], [ 125.156250, 40.713956 ], [ 125.156250, 40.580585 ], [ 124.980469, 40.580585 ], [ 124.980469, 40.446947 ], [ 124.804688, 40.446947 ], [ 124.804688, 40.313043 ], [ 122.167969, 40.313043 ], [ 122.167969, 40.446947 ], [ 121.992188, 40.446947 ], [ 121.992188, 40.713956 ], [ 121.816406, 40.713956 ], [ 121.816406, 40.847060 ], [ 121.640625, 40.847060 ], [ 121.640625, 40.979898 ], [ 121.464844, 40.979898 ], [ 121.464844, 40.847060 ], [ 121.113281, 40.847060 ], [ 121.113281, 40.713956 ], [ 120.761719, 40.713956 ], [ 120.761719, 40.580585 ], [ 120.585938, 40.580585 ], [ 120.585938, 40.446947 ], [ 120.410156, 40.446947 ], [ 120.410156, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.989922 ], [ 89.472656, 47.989922 ], [ 89.472656, 47.872144 ], [ 89.824219, 47.872144 ], [ 89.824219, 47.754098 ], [ 90.175781, 47.754098 ], [ 90.175781, 47.635784 ], [ 90.351562, 47.635784 ], [ 90.351562, 47.398349 ], [ 90.527344, 47.398349 ], [ 90.527344, 47.159840 ], [ 90.703125, 47.159840 ], [ 90.703125, 46.920255 ], [ 90.878906, 46.920255 ], [ 90.878906, 46.558860 ], [ 90.703125, 46.558860 ], [ 90.703125, 46.073231 ], [ 90.527344, 46.073231 ], [ 90.527344, 45.706179 ], [ 90.703125, 45.706179 ], [ 90.703125, 45.460131 ], [ 90.878906, 45.460131 ], [ 90.878906, 45.336702 ], [ 91.406250, 45.336702 ], [ 91.406250, 45.213004 ], [ 92.636719, 45.213004 ], [ 92.636719, 45.089036 ], [ 93.339844, 45.089036 ], [ 93.339844, 44.964798 ], [ 93.691406, 44.964798 ], [ 93.691406, 44.840291 ], [ 93.867188, 44.840291 ], [ 93.867188, 44.715514 ], [ 94.042969, 44.715514 ], [ 94.042969, 44.590467 ], [ 94.394531, 44.590467 ], [ 94.394531, 44.465151 ], [ 94.746094, 44.465151 ], [ 94.746094, 44.339565 ], [ 95.273438, 44.339565 ], [ 95.273438, 44.087585 ], [ 95.449219, 44.087585 ], [ 95.449219, 43.580391 ], [ 95.625000, 43.580391 ], [ 95.625000, 43.197167 ], [ 95.800781, 43.197167 ], [ 95.800781, 43.068888 ], [ 95.976562, 43.068888 ], [ 95.976562, 42.940339 ], [ 96.152344, 42.940339 ], [ 96.152344, 42.811522 ], [ 97.734375, 42.811522 ], [ 97.734375, 42.682435 ], [ 98.789062, 42.682435 ], [ 98.789062, 42.553080 ], [ 100.195312, 42.553080 ], [ 100.195312, 42.682435 ], [ 101.074219, 42.682435 ], [ 101.074219, 42.553080 ], [ 101.777344, 42.553080 ], [ 101.777344, 42.423457 ], [ 102.128906, 42.423457 ], [ 102.128906, 42.293564 ], [ 102.480469, 42.293564 ], [ 102.480469, 42.163403 ], [ 102.832031, 42.163403 ], [ 102.832031, 42.032974 ], [ 104.414062, 42.032974 ], [ 104.414062, 41.902277 ], [ 104.589844, 41.902277 ], [ 104.589844, 41.771312 ], [ 104.765625, 41.771312 ], [ 104.765625, 41.640078 ], [ 105.117188, 41.640078 ], [ 105.117188, 41.771312 ], [ 105.468750, 41.771312 ], [ 105.468750, 41.902277 ], [ 105.644531, 41.902277 ], [ 105.644531, 42.032974 ], [ 105.996094, 42.032974 ], [ 105.996094, 42.163403 ], [ 106.347656, 42.163403 ], [ 106.347656, 42.293564 ], [ 106.875000, 42.293564 ], [ 106.875000, 42.423457 ], [ 107.402344, 42.423457 ], [ 107.402344, 42.553080 ], [ 109.511719, 42.553080 ], [ 109.511719, 42.682435 ], [ 109.863281, 42.682435 ], [ 109.863281, 42.811522 ], [ 110.214844, 42.811522 ], [ 110.214844, 42.940339 ], [ 110.566406, 42.940339 ], [ 110.566406, 43.068888 ], [ 110.742188, 43.068888 ], [ 110.742188, 43.197167 ], [ 110.917969, 43.197167 ], [ 110.917969, 43.325178 ], [ 111.093750, 43.325178 ], [ 111.093750, 43.452919 ], [ 111.269531, 43.452919 ], [ 111.269531, 43.580391 ], [ 111.621094, 43.580391 ], [ 111.621094, 43.707594 ], [ 111.796875, 43.707594 ], [ 111.796875, 43.961191 ], [ 111.621094, 43.961191 ], [ 111.621094, 44.087585 ], [ 111.445312, 44.087585 ], [ 111.445312, 44.339565 ], [ 111.269531, 44.339565 ], [ 111.269531, 44.590467 ], [ 111.445312, 44.590467 ], [ 111.445312, 44.840291 ], [ 111.621094, 44.840291 ], [ 111.621094, 45.089036 ], [ 111.796875, 45.089036 ], [ 111.796875, 45.213004 ], [ 111.972656, 45.213004 ], [ 111.972656, 45.089036 ], [ 112.500000, 45.089036 ], [ 112.500000, 44.964798 ], [ 113.027344, 44.964798 ], [ 113.027344, 44.840291 ], [ 113.554688, 44.840291 ], [ 113.554688, 44.964798 ], [ 113.730469, 44.964798 ], [ 113.730469, 45.089036 ], [ 114.082031, 45.089036 ], [ 114.082031, 45.213004 ], [ 114.257812, 45.213004 ], [ 114.257812, 45.336702 ], [ 114.433594, 45.336702 ], [ 114.433594, 45.460131 ], [ 114.785156, 45.460131 ], [ 114.785156, 45.583290 ], [ 115.312500, 45.583290 ], [ 115.312500, 45.706179 ], [ 115.664062, 45.706179 ], [ 115.664062, 45.828799 ], [ 116.015625, 45.828799 ], [ 116.015625, 45.951150 ], [ 116.191406, 45.951150 ], [ 116.191406, 46.073231 ], [ 116.367188, 46.073231 ], [ 116.367188, 46.195042 ], [ 116.542969, 46.195042 ], [ 116.542969, 46.316584 ], [ 116.718750, 46.316584 ], [ 116.718750, 46.437857 ], [ 117.070312, 46.437857 ], [ 117.070312, 46.558860 ], [ 117.421875, 46.558860 ], [ 117.421875, 46.679594 ], [ 117.949219, 46.679594 ], [ 117.949219, 46.800059 ], [ 118.652344, 46.800059 ], [ 118.652344, 46.920255 ], [ 119.003906, 46.920255 ], [ 119.003906, 46.800059 ], [ 119.531250, 46.800059 ], [ 119.531250, 46.920255 ], [ 119.707031, 46.920255 ], [ 119.707031, 47.159840 ], [ 119.531250, 47.159840 ], [ 119.531250, 47.279229 ], [ 119.355469, 47.279229 ], [ 119.355469, 47.398349 ], [ 119.179688, 47.398349 ], [ 119.179688, 47.517201 ], [ 119.003906, 47.517201 ], [ 119.003906, 47.635784 ], [ 118.828125, 47.635784 ], [ 118.828125, 47.754098 ], [ 118.652344, 47.754098 ], [ 118.652344, 47.872144 ], [ 118.300781, 47.872144 ], [ 118.300781, 47.989922 ], [ 117.773438, 47.989922 ], [ 117.773438, 47.872144 ], [ 117.421875, 47.872144 ], [ 117.421875, 47.754098 ], [ 116.542969, 47.754098 ], [ 116.542969, 47.872144 ], [ 116.015625, 47.872144 ], [ 116.015625, 47.754098 ], [ 115.664062, 47.754098 ], [ 115.664062, 47.872144 ], [ 115.488281, 47.872144 ], [ 115.488281, 48.107431 ], [ 115.312500, 48.107431 ], [ 115.312500, 48.224673 ], [ 115.488281, 48.224673 ], [ 115.488281, 48.458352 ], [ 115.664062, 48.458352 ], [ 115.664062, 48.690960 ], [ 115.839844, 48.690960 ], [ 115.839844, 48.806863 ], [ 116.015625, 48.806863 ], [ 116.015625, 49.037868 ], [ 116.191406, 49.037868 ], [ 116.191406, 49.267805 ], [ 116.367188, 49.267805 ], [ 116.367188, 49.724479 ], [ 116.542969, 49.724479 ], [ 116.542969, 49.951220 ], [ 116.718750, 49.951220 ], [ 116.718750, 49.837982 ], [ 117.070312, 49.837982 ], [ 117.070312, 49.724479 ], [ 117.421875, 49.724479 ], [ 117.421875, 49.610710 ], [ 117.949219, 49.610710 ], [ 117.949219, 49.724479 ], [ 118.300781, 49.724479 ], [ 118.300781, 49.837982 ], [ 118.652344, 49.837982 ], [ 118.652344, 49.951220 ], [ 118.828125, 49.951220 ], [ 118.828125, 50.064192 ], [ 119.179688, 50.064192 ], [ 119.179688, 50.736455 ], [ 119.355469, 50.736455 ], [ 119.355469, 50.958427 ], [ 119.531250, 50.958427 ], [ 119.531250, 51.179343 ], [ 119.707031, 51.179343 ], [ 119.707031, 51.399206 ], [ 119.882812, 51.399206 ], [ 119.882812, 51.618017 ], [ 120.058594, 51.618017 ], [ 120.058594, 51.727028 ], [ 120.234375, 51.727028 ], [ 120.234375, 51.835778 ], [ 120.410156, 51.835778 ], [ 120.410156, 51.944265 ], [ 120.585938, 51.944265 ], [ 120.585938, 52.589701 ], [ 120.410156, 52.589701 ], [ 120.410156, 52.696361 ], [ 120.058594, 52.696361 ], [ 120.058594, 52.802761 ], [ 120.234375, 52.802761 ], [ 120.234375, 52.908902 ], [ 120.410156, 52.908902 ], [ 120.410156, 53.014783 ], [ 120.585938, 53.014783 ], [ 120.585938, 53.120405 ], [ 120.761719, 53.120405 ], [ 120.761719, 53.225768 ], [ 120.937500, 53.225768 ], [ 120.937500, 53.330873 ], [ 121.640625, 53.330873 ], [ 121.640625, 53.435719 ], [ 123.046875, 53.435719 ], [ 123.046875, 53.540307 ], [ 123.750000, 53.540307 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.253906, 42.811522 ], [ 130.253906, 42.682435 ], [ 130.429688, 42.682435 ], [ 130.429688, 42.423457 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.293564 ], [ 130.781250, 42.293564 ], [ 130.781250, 42.163403 ], [ 130.253906, 42.163403 ], [ 130.253906, 42.032974 ], [ 130.078125, 42.032974 ], [ 130.078125, 41.902277 ], [ 129.902344, 41.902277 ], [ 129.902344, 41.771312 ], [ 129.726562, 41.771312 ], [ 129.726562, 40.847060 ], [ 129.550781, 40.847060 ], [ 129.550781, 40.713956 ], [ 129.199219, 40.713956 ], [ 129.199219, 40.580585 ], [ 129.023438, 40.580585 ], [ 129.023438, 40.313043 ], [ 124.980469, 40.313043 ], [ 124.980469, 40.446947 ], [ 125.156250, 40.446947 ], [ 125.156250, 40.580585 ], [ 125.332031, 40.580585 ], [ 125.332031, 40.713956 ], [ 125.683594, 40.713956 ], [ 125.683594, 40.847060 ], [ 125.859375, 40.847060 ], [ 125.859375, 40.979898 ], [ 126.210938, 40.979898 ], [ 126.210938, 41.112469 ], [ 126.386719, 41.112469 ], [ 126.386719, 41.244772 ], [ 126.562500, 41.244772 ], [ 126.562500, 41.508577 ], [ 126.738281, 41.508577 ], [ 126.738281, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.320312, 42.032974 ], [ 128.320312, 42.163403 ], [ 128.847656, 42.163403 ], [ 128.847656, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.423457 ], [ 129.726562, 42.423457 ], [ 129.726562, 42.682435 ], [ 129.902344, 42.682435 ], [ 129.902344, 42.811522 ], [ 130.253906, 42.811522 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.078125, 42.940339 ], [ 130.078125, 42.811522 ], [ 130.253906, 42.811522 ], [ 130.253906, 42.553080 ], [ 130.429688, 42.553080 ], [ 130.429688, 42.423457 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.293564 ], [ 130.253906, 42.293564 ], [ 130.253906, 42.163403 ], [ 130.078125, 42.163403 ], [ 130.078125, 42.032974 ], [ 129.902344, 42.032974 ], [ 129.902344, 41.902277 ], [ 129.726562, 41.902277 ], [ 129.726562, 41.640078 ], [ 129.550781, 41.640078 ], [ 129.550781, 40.847060 ], [ 129.199219, 40.847060 ], [ 129.199219, 40.713956 ], [ 129.023438, 40.713956 ], [ 129.023438, 40.580585 ], [ 128.847656, 40.580585 ], [ 128.847656, 40.446947 ], [ 128.671875, 40.446947 ], [ 128.671875, 40.313043 ], [ 124.804688, 40.313043 ], [ 124.804688, 40.446947 ], [ 124.980469, 40.446947 ], [ 124.980469, 40.580585 ], [ 125.156250, 40.580585 ], [ 125.156250, 40.713956 ], [ 125.507812, 40.713956 ], [ 125.507812, 40.847060 ], [ 125.683594, 40.847060 ], [ 125.683594, 40.979898 ], [ 126.035156, 40.979898 ], [ 126.035156, 41.112469 ], [ 126.210938, 41.112469 ], [ 126.210938, 41.376809 ], [ 126.386719, 41.376809 ], [ 126.386719, 41.508577 ], [ 126.562500, 41.508577 ], [ 126.562500, 41.771312 ], [ 126.914062, 41.771312 ], [ 126.914062, 41.640078 ], [ 127.089844, 41.640078 ], [ 127.089844, 41.508577 ], [ 128.144531, 41.508577 ], [ 128.144531, 41.771312 ], [ 127.968750, 41.771312 ], [ 127.968750, 42.032974 ], [ 128.320312, 42.032974 ], [ 128.320312, 42.163403 ], [ 128.847656, 42.163403 ], [ 128.847656, 42.293564 ], [ 129.375000, 42.293564 ], [ 129.375000, 42.423457 ], [ 129.550781, 42.423457 ], [ 129.550781, 42.553080 ], [ 129.726562, 42.553080 ], [ 129.726562, 42.811522 ], [ 129.902344, 42.811522 ], [ 129.902344, 42.940339 ], [ 130.078125, 42.940339 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.589844, 77.655346 ], [ 104.589844, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.579959 ], [ 104.941406, 77.579959 ], [ 104.941406, 77.542096 ], [ 105.292969, 77.542096 ], [ 105.292969, 77.504119 ], [ 105.468750, 77.504119 ], [ 105.468750, 77.466028 ], [ 105.644531, 77.466028 ], [ 105.644531, 77.427824 ], [ 105.820312, 77.427824 ], [ 105.820312, 77.389504 ], [ 105.996094, 77.389504 ], [ 105.996094, 77.351070 ], [ 105.820312, 77.351070 ], [ 105.820312, 77.312520 ], [ 105.644531, 77.312520 ], [ 105.644531, 77.273855 ], [ 105.468750, 77.273855 ], [ 105.468750, 77.235074 ], [ 105.292969, 77.235074 ], [ 105.292969, 77.196176 ], [ 105.117188, 77.196176 ], [ 105.117188, 77.157163 ], [ 104.941406, 77.157163 ], [ 104.941406, 77.078784 ], [ 105.468750, 77.078784 ], [ 105.468750, 77.039418 ], [ 106.171875, 77.039418 ], [ 106.171875, 76.999935 ], [ 106.699219, 76.999935 ], [ 106.699219, 76.960334 ], [ 107.050781, 76.960334 ], [ 107.050781, 76.720223 ], [ 107.226562, 76.720223 ], [ 107.226562, 76.475773 ], [ 107.402344, 76.475773 ], [ 107.402344, 76.516819 ], [ 107.578125, 76.516819 ], [ 107.578125, 76.598545 ], [ 107.753906, 76.598545 ], [ 107.753906, 76.639226 ], [ 107.929688, 76.639226 ], [ 107.929688, 76.679785 ], [ 108.105469, 76.679785 ], [ 108.105469, 76.720223 ], [ 111.093750, 76.720223 ], [ 111.093750, 76.679785 ], [ 111.269531, 76.679785 ], [ 111.269531, 76.639226 ], [ 111.445312, 76.639226 ], [ 111.445312, 76.598545 ], [ 111.621094, 76.598545 ], [ 111.621094, 76.557743 ], [ 111.796875, 76.557743 ], [ 111.796875, 76.516819 ], [ 111.972656, 76.516819 ], [ 111.972656, 76.475773 ], [ 112.324219, 76.475773 ], [ 112.324219, 76.434604 ], [ 112.500000, 76.434604 ], [ 112.500000, 76.393312 ], [ 112.675781, 76.393312 ], [ 112.675781, 76.351896 ], [ 112.851562, 76.351896 ], [ 112.851562, 76.310358 ], [ 113.027344, 76.310358 ], [ 113.027344, 76.268695 ], [ 113.203125, 76.268695 ], [ 113.203125, 76.226907 ], [ 113.378906, 76.226907 ], [ 113.378906, 76.142958 ], [ 113.554688, 76.142958 ], [ 113.554688, 76.058508 ], [ 113.730469, 76.058508 ], [ 113.730469, 75.973553 ], [ 113.906250, 75.973553 ], [ 113.906250, 75.888091 ], [ 114.082031, 75.888091 ], [ 114.082031, 75.584937 ], [ 113.906250, 75.584937 ], [ 113.906250, 75.275413 ], [ 113.730469, 75.275413 ], [ 113.730469, 75.230667 ], [ 113.554688, 75.230667 ], [ 113.554688, 75.185789 ], [ 113.378906, 75.185789 ], [ 113.378906, 75.140778 ], [ 113.203125, 75.140778 ], [ 113.203125, 75.095633 ], [ 113.027344, 75.095633 ], [ 113.027344, 75.050354 ], [ 112.851562, 75.050354 ], [ 112.851562, 75.004940 ], [ 112.675781, 75.004940 ], [ 112.675781, 74.959392 ], [ 112.324219, 74.959392 ], [ 112.324219, 74.913708 ], [ 112.148438, 74.913708 ], [ 112.148438, 74.867889 ], [ 111.972656, 74.867889 ], [ 111.972656, 74.821934 ], [ 111.796875, 74.821934 ], [ 111.796875, 74.775843 ], [ 111.445312, 74.775843 ], [ 111.445312, 74.729615 ], [ 111.269531, 74.729615 ], [ 111.269531, 74.683250 ], [ 111.093750, 74.683250 ], [ 111.093750, 74.636748 ], [ 110.917969, 74.636748 ], [ 110.917969, 74.590108 ], [ 110.566406, 74.590108 ], [ 110.566406, 74.543330 ], [ 110.390625, 74.543330 ], [ 110.390625, 74.496413 ], [ 110.214844, 74.496413 ], [ 110.214844, 74.449358 ], [ 110.039062, 74.449358 ], [ 110.039062, 74.354828 ], [ 109.863281, 74.354828 ], [ 109.863281, 74.307353 ], [ 109.687500, 74.307353 ], [ 109.687500, 74.259738 ], [ 109.511719, 74.259738 ], [ 109.511719, 74.116047 ], [ 109.863281, 74.116047 ], [ 109.863281, 74.067866 ], [ 110.214844, 74.067866 ], [ 110.214844, 74.019543 ], [ 110.566406, 74.019543 ], [ 110.566406, 73.971078 ], [ 110.917969, 73.971078 ], [ 110.917969, 73.922469 ], [ 111.269531, 73.922469 ], [ 111.269531, 73.873717 ], [ 111.621094, 73.873717 ], [ 111.621094, 73.824820 ], [ 111.972656, 73.824820 ], [ 111.972656, 73.775780 ], [ 112.324219, 73.775780 ], [ 112.324219, 73.824820 ], [ 112.500000, 73.824820 ], [ 112.500000, 73.873717 ], [ 112.851562, 73.873717 ], [ 112.851562, 73.922469 ], [ 113.027344, 73.922469 ], [ 113.027344, 73.824820 ], [ 113.203125, 73.824820 ], [ 113.203125, 73.627789 ], [ 113.378906, 73.627789 ], [ 113.378906, 73.428424 ], [ 113.554688, 73.428424 ], [ 113.554688, 73.378215 ], [ 113.730469, 73.378215 ], [ 113.730469, 73.478485 ], [ 113.906250, 73.478485 ], [ 113.906250, 73.578167 ], [ 114.257812, 73.578167 ], [ 114.257812, 73.627789 ], [ 114.609375, 73.627789 ], [ 114.609375, 73.677264 ], [ 114.960938, 73.677264 ], [ 114.960938, 73.726595 ], [ 115.312500, 73.726595 ], [ 115.312500, 73.775780 ], [ 115.839844, 73.775780 ], [ 115.839844, 73.726595 ], [ 116.718750, 73.726595 ], [ 116.718750, 73.677264 ], [ 117.421875, 73.677264 ], [ 117.421875, 73.627789 ], [ 118.300781, 73.627789 ], [ 118.300781, 73.578167 ], [ 118.828125, 73.578167 ], [ 118.828125, 73.327858 ], [ 119.003906, 73.327858 ], [ 119.003906, 73.124945 ], [ 119.531250, 73.124945 ], [ 119.531250, 73.073844 ], [ 120.937500, 73.073844 ], [ 120.937500, 73.022592 ], [ 122.343750, 73.022592 ], [ 122.343750, 72.971189 ], [ 123.222656, 72.971189 ], [ 123.222656, 73.726595 ], [ 123.398438, 73.726595 ], [ 123.398438, 73.677264 ], [ 124.101562, 73.677264 ], [ 124.101562, 73.627789 ], [ 124.804688, 73.627789 ], [ 124.804688, 73.578167 ], [ 126.914062, 73.578167 ], [ 126.914062, 73.528399 ], [ 127.089844, 73.528399 ], [ 127.089844, 73.478485 ], [ 127.265625, 73.478485 ], [ 127.265625, 73.428424 ], [ 127.441406, 73.428424 ], [ 127.441406, 73.378215 ], [ 127.617188, 73.378215 ], [ 127.617188, 73.327858 ], [ 127.792969, 73.327858 ], [ 127.792969, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.175897 ], [ 128.144531, 73.175897 ], [ 128.144531, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.073844 ], [ 128.496094, 73.073844 ], [ 128.496094, 73.022592 ], [ 128.671875, 73.022592 ], [ 128.671875, 72.867930 ], [ 128.847656, 72.867930 ], [ 128.847656, 72.554498 ], [ 129.023438, 72.554498 ], [ 129.023438, 72.289067 ], [ 128.847656, 72.289067 ], [ 128.847656, 72.181804 ], [ 128.671875, 72.181804 ], [ 128.671875, 72.019729 ], [ 128.496094, 72.019729 ], [ 128.496094, 71.910888 ], [ 128.671875, 71.910888 ], [ 128.671875, 71.801410 ], [ 128.847656, 71.801410 ], [ 128.847656, 71.691293 ], [ 129.023438, 71.691293 ], [ 129.023438, 71.580532 ], [ 129.199219, 71.580532 ], [ 129.199219, 71.469124 ], [ 129.375000, 71.469124 ], [ 129.375000, 71.357067 ], [ 129.550781, 71.357067 ], [ 129.550781, 71.244356 ], [ 129.726562, 71.244356 ], [ 129.726562, 71.130988 ], [ 129.902344, 71.130988 ], [ 129.902344, 71.074056 ], [ 130.253906, 71.074056 ], [ 130.253906, 71.016960 ], [ 130.429688, 71.016960 ], [ 130.429688, 70.959697 ], [ 130.605469, 70.959697 ], [ 130.605469, 70.902268 ], [ 130.957031, 70.902268 ], [ 130.957031, 70.844673 ], [ 131.132812, 70.844673 ], [ 131.132812, 70.786910 ], [ 131.308594, 70.786910 ], [ 131.308594, 70.844673 ], [ 131.484375, 70.844673 ], [ 131.484375, 71.074056 ], [ 131.660156, 71.074056 ], [ 131.660156, 71.300793 ], [ 131.835938, 71.300793 ], [ 131.835938, 71.524909 ], [ 132.011719, 71.524909 ], [ 132.011719, 71.746432 ], [ 132.187500, 71.746432 ], [ 132.187500, 71.801410 ], [ 132.363281, 71.801410 ], [ 132.363281, 71.746432 ], [ 132.714844, 71.746432 ], [ 132.714844, 71.691293 ], [ 132.890625, 71.691293 ], [ 132.890625, 71.635993 ], [ 133.066406, 71.635993 ], [ 133.066406, 71.580532 ], [ 133.242188, 71.580532 ], [ 133.242188, 71.524909 ], [ 133.593750, 71.524909 ], [ 133.593750, 71.469124 ], [ 133.769531, 71.469124 ], [ 133.769531, 71.413177 ], [ 134.296875, 71.413177 ], [ 134.296875, 71.469124 ], [ 134.648438, 71.469124 ], [ 134.648438, 71.524909 ], [ 135.000000, 71.524909 ], [ 135.000000, 71.580532 ], [ 135.351562, 71.580532 ], [ 135.351562, 71.635993 ], [ 135.527344, 71.635993 ], [ 135.527344, 71.580532 ], [ 135.878906, 71.580532 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.497157 ], [ 89.824219, 75.497157 ], [ 89.824219, 75.541113 ], [ 90.000000, 75.541113 ], [ 90.000000, 75.584937 ], [ 90.175781, 75.584937 ], [ 90.175781, 75.628632 ], [ 90.703125, 75.628632 ], [ 90.703125, 75.672197 ], [ 91.757812, 75.672197 ], [ 91.757812, 75.715633 ], [ 92.636719, 75.715633 ], [ 92.636719, 75.758940 ], [ 92.988281, 75.758940 ], [ 92.988281, 75.888091 ], [ 93.164062, 75.888091 ], [ 93.164062, 76.058508 ], [ 93.867188, 76.058508 ], [ 93.867188, 76.100796 ], [ 95.273438, 76.100796 ], [ 95.273438, 76.142958 ], [ 95.800781, 76.142958 ], [ 95.800781, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.058508 ], [ 96.152344, 76.058508 ], [ 96.152344, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.973553 ], [ 96.503906, 75.973553 ], [ 96.503906, 75.930885 ], [ 96.855469, 75.930885 ], [ 96.855469, 75.973553 ], [ 97.031250, 75.973553 ], [ 97.031250, 76.016094 ], [ 97.207031, 76.016094 ], [ 97.207031, 76.058508 ], [ 97.382812, 76.058508 ], [ 97.382812, 76.100796 ], [ 97.558594, 76.100796 ], [ 97.558594, 76.142958 ], [ 97.734375, 76.142958 ], [ 97.734375, 76.184995 ], [ 98.085938, 76.184995 ], [ 98.085938, 76.226907 ], [ 98.261719, 76.226907 ], [ 98.261719, 76.268695 ], [ 98.437500, 76.268695 ], [ 98.437500, 76.310358 ], [ 98.613281, 76.310358 ], [ 98.613281, 76.351896 ], [ 98.789062, 76.351896 ], [ 98.789062, 76.393312 ], [ 98.964844, 76.393312 ], [ 98.964844, 76.434604 ], [ 100.722656, 76.434604 ], [ 100.722656, 76.516819 ], [ 100.898438, 76.516819 ], [ 100.898438, 76.760541 ], [ 101.074219, 76.760541 ], [ 101.074219, 76.920614 ], [ 101.250000, 76.920614 ], [ 101.250000, 76.999935 ], [ 101.425781, 76.999935 ], [ 101.425781, 77.078784 ], [ 101.601562, 77.078784 ], [ 101.601562, 77.157163 ], [ 101.777344, 77.157163 ], [ 101.777344, 77.235074 ], [ 101.953125, 77.235074 ], [ 101.953125, 77.273855 ], [ 102.128906, 77.273855 ], [ 102.128906, 77.312520 ], [ 102.304688, 77.312520 ], [ 102.304688, 77.351070 ], [ 102.656250, 77.351070 ], [ 102.656250, 77.389504 ], [ 102.832031, 77.389504 ], [ 102.832031, 77.427824 ], [ 103.007812, 77.427824 ], [ 103.007812, 77.466028 ], [ 103.359375, 77.466028 ], [ 103.359375, 77.504119 ], [ 103.535156, 77.504119 ], [ 103.535156, 77.542096 ], [ 103.710938, 77.542096 ], [ 103.710938, 77.579959 ], [ 103.886719, 77.579959 ], [ 103.886719, 77.617709 ], [ 104.238281, 77.617709 ], [ 104.238281, 77.655346 ], [ 104.589844, 77.655346 ] ] ], [ [ [ 102.304688, 79.335219 ], [ 102.304688, 79.302640 ], [ 102.656250, 79.302640 ], [ 102.656250, 79.269962 ], [ 102.832031, 79.269962 ], [ 102.832031, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.204309 ], [ 103.183594, 79.204309 ], [ 103.183594, 79.138260 ], [ 103.359375, 79.138260 ], [ 103.359375, 79.105086 ], [ 103.535156, 79.105086 ], [ 103.535156, 79.071812 ], [ 103.710938, 79.071812 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 104.062500, 79.004962 ], [ 104.062500, 78.937708 ], [ 104.238281, 78.937708 ], [ 104.238281, 78.903929 ], [ 104.414062, 78.903929 ], [ 104.414062, 78.870048 ], [ 104.589844, 78.870048 ], [ 104.589844, 78.836065 ], [ 104.765625, 78.836065 ], [ 104.765625, 78.801980 ], [ 104.941406, 78.801980 ], [ 104.941406, 78.733501 ], [ 105.117188, 78.733501 ], [ 105.117188, 78.699106 ], [ 105.292969, 78.699106 ], [ 105.292969, 78.490552 ], [ 105.117188, 78.490552 ], [ 105.117188, 78.313860 ], [ 104.941406, 78.313860 ], [ 104.941406, 78.278201 ], [ 104.414062, 78.278201 ], [ 104.414062, 78.242436 ], [ 103.886719, 78.242436 ], [ 103.886719, 78.206563 ], [ 103.359375, 78.206563 ], [ 103.359375, 78.170582 ], [ 102.832031, 78.170582 ], [ 102.832031, 78.134493 ], [ 102.480469, 78.134493 ], [ 102.480469, 78.098296 ], [ 101.953125, 78.098296 ], [ 101.953125, 78.061989 ], [ 101.425781, 78.061989 ], [ 101.425781, 78.025574 ], [ 100.898438, 78.025574 ], [ 100.898438, 77.989049 ], [ 100.371094, 77.989049 ], [ 100.371094, 77.952414 ], [ 99.843750, 77.952414 ], [ 99.843750, 77.915669 ], [ 99.492188, 77.915669 ], [ 99.492188, 77.952414 ], [ 99.667969, 77.952414 ], [ 99.667969, 78.098296 ], [ 99.843750, 78.098296 ], [ 99.843750, 78.242436 ], [ 100.019531, 78.242436 ], [ 100.019531, 78.384855 ], [ 100.195312, 78.384855 ], [ 100.195312, 78.525573 ], [ 100.371094, 78.525573 ], [ 100.371094, 78.630006 ], [ 100.546875, 78.630006 ], [ 100.546875, 78.767792 ], [ 100.722656, 78.767792 ], [ 100.722656, 78.903929 ], [ 100.898438, 78.903929 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.335219 ], [ 102.304688, 79.335219 ] ] ], [ [ [ 100.019531, 79.335219 ], [ 100.019531, 78.870048 ], [ 99.667969, 78.870048 ], [ 99.667969, 78.836065 ], [ 98.964844, 78.836065 ], [ 98.964844, 78.801980 ], [ 98.261719, 78.801980 ], [ 98.261719, 78.767792 ], [ 97.382812, 78.767792 ], [ 97.382812, 78.801980 ], [ 97.031250, 78.801980 ], [ 97.031250, 78.836065 ], [ 96.679688, 78.836065 ], [ 96.679688, 78.870048 ], [ 96.328125, 78.870048 ], [ 96.328125, 78.903929 ], [ 95.976562, 78.903929 ], [ 95.976562, 78.937708 ], [ 95.625000, 78.937708 ], [ 95.625000, 78.971386 ], [ 95.273438, 78.971386 ], [ 95.273438, 79.004962 ], [ 94.921875, 79.004962 ], [ 94.921875, 79.038437 ], [ 94.746094, 79.038437 ], [ 94.746094, 79.071812 ], [ 94.570312, 79.071812 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.204309 ], [ 94.042969, 79.204309 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.335219 ], [ 100.019531, 79.335219 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.414062, 77.692870 ], [ 104.414062, 77.655346 ], [ 104.589844, 77.655346 ], [ 104.589844, 77.617709 ], [ 104.765625, 77.617709 ], [ 104.765625, 77.579959 ], [ 104.941406, 77.579959 ], [ 104.941406, 77.542096 ], [ 105.292969, 77.542096 ], [ 105.292969, 77.504119 ], [ 105.468750, 77.504119 ], [ 105.468750, 77.466028 ], [ 105.644531, 77.466028 ], [ 105.644531, 77.427824 ], [ 105.820312, 77.427824 ], [ 105.820312, 77.389504 ], [ 105.996094, 77.389504 ], [ 105.996094, 77.351070 ], [ 105.820312, 77.351070 ], [ 105.820312, 77.312520 ], [ 105.468750, 77.312520 ], [ 105.468750, 77.273855 ], [ 105.292969, 77.273855 ], [ 105.292969, 77.235074 ], [ 105.117188, 77.235074 ], [ 105.117188, 77.196176 ], [ 104.765625, 77.196176 ], [ 104.765625, 77.118032 ], [ 105.292969, 77.118032 ], [ 105.292969, 77.078784 ], [ 105.996094, 77.078784 ], [ 105.996094, 77.039418 ], [ 106.523438, 77.039418 ], [ 106.523438, 76.999935 ], [ 106.875000, 76.999935 ], [ 106.875000, 76.880775 ], [ 107.050781, 76.880775 ], [ 107.050781, 76.639226 ], [ 107.226562, 76.639226 ], [ 107.226562, 76.516819 ], [ 107.402344, 76.516819 ], [ 107.402344, 76.557743 ], [ 107.578125, 76.557743 ], [ 107.578125, 76.639226 ], [ 107.753906, 76.639226 ], [ 107.753906, 76.679785 ], [ 107.929688, 76.679785 ], [ 107.929688, 76.720223 ], [ 108.105469, 76.720223 ], [ 108.105469, 76.760541 ], [ 109.335938, 76.760541 ], [ 109.335938, 76.720223 ], [ 110.917969, 76.720223 ], [ 110.917969, 76.679785 ], [ 111.093750, 76.679785 ], [ 111.093750, 76.639226 ], [ 111.269531, 76.639226 ], [ 111.269531, 76.598545 ], [ 111.445312, 76.598545 ], [ 111.445312, 76.557743 ], [ 111.621094, 76.557743 ], [ 111.621094, 76.516819 ], [ 111.796875, 76.516819 ], [ 111.796875, 76.475773 ], [ 112.148438, 76.475773 ], [ 112.148438, 76.434604 ], [ 112.324219, 76.434604 ], [ 112.324219, 76.393312 ], [ 112.500000, 76.393312 ], [ 112.500000, 76.351896 ], [ 112.675781, 76.351896 ], [ 112.675781, 76.310358 ], [ 112.851562, 76.310358 ], [ 112.851562, 76.268695 ], [ 113.027344, 76.268695 ], [ 113.027344, 76.226907 ], [ 113.203125, 76.226907 ], [ 113.203125, 76.184995 ], [ 113.378906, 76.184995 ], [ 113.378906, 76.100796 ], [ 113.554688, 76.100796 ], [ 113.554688, 76.058508 ], [ 113.730469, 76.058508 ], [ 113.730469, 75.973553 ], [ 113.906250, 75.973553 ], [ 113.906250, 75.888091 ], [ 114.082031, 75.888091 ], [ 114.082031, 75.758940 ], [ 113.906250, 75.758940 ], [ 113.906250, 75.497157 ], [ 113.730469, 75.497157 ], [ 113.730469, 75.320025 ], [ 113.554688, 75.320025 ], [ 113.554688, 75.275413 ], [ 113.378906, 75.275413 ], [ 113.378906, 75.230667 ], [ 113.203125, 75.230667 ], [ 113.203125, 75.140778 ], [ 113.027344, 75.140778 ], [ 113.027344, 75.095633 ], [ 112.851562, 75.095633 ], [ 112.851562, 75.050354 ], [ 112.675781, 75.050354 ], [ 112.675781, 75.004940 ], [ 112.500000, 75.004940 ], [ 112.500000, 74.959392 ], [ 112.148438, 74.959392 ], [ 112.148438, 74.913708 ], [ 111.972656, 74.913708 ], [ 111.972656, 74.867889 ], [ 111.796875, 74.867889 ], [ 111.796875, 74.821934 ], [ 111.621094, 74.821934 ], [ 111.621094, 74.775843 ], [ 111.269531, 74.775843 ], [ 111.269531, 74.729615 ], [ 111.093750, 74.729615 ], [ 111.093750, 74.683250 ], [ 110.917969, 74.683250 ], [ 110.917969, 74.636748 ], [ 110.742188, 74.636748 ], [ 110.742188, 74.590108 ], [ 110.390625, 74.590108 ], [ 110.390625, 74.543330 ], [ 110.214844, 74.543330 ], [ 110.214844, 74.496413 ], [ 110.039062, 74.496413 ], [ 110.039062, 74.449358 ], [ 109.863281, 74.449358 ], [ 109.863281, 74.354828 ], [ 109.687500, 74.354828 ], [ 109.687500, 74.307353 ], [ 109.511719, 74.307353 ], [ 109.511719, 74.164085 ], [ 109.863281, 74.164085 ], [ 109.863281, 74.116047 ], [ 110.214844, 74.116047 ], [ 110.214844, 74.067866 ], [ 110.566406, 74.067866 ], [ 110.566406, 74.019543 ], [ 110.917969, 74.019543 ], [ 110.917969, 73.971078 ], [ 111.093750, 73.971078 ], [ 111.093750, 73.922469 ], [ 111.445312, 73.922469 ], [ 111.445312, 73.873717 ], [ 111.796875, 73.873717 ], [ 111.796875, 73.824820 ], [ 112.148438, 73.824820 ], [ 112.148438, 73.873717 ], [ 112.324219, 73.873717 ], [ 112.324219, 73.922469 ], [ 112.675781, 73.922469 ], [ 112.675781, 73.971078 ], [ 112.851562, 73.971078 ], [ 112.851562, 73.873717 ], [ 113.027344, 73.873717 ], [ 113.027344, 73.677264 ], [ 113.203125, 73.677264 ], [ 113.203125, 73.478485 ], [ 113.378906, 73.478485 ], [ 113.378906, 73.378215 ], [ 113.554688, 73.378215 ], [ 113.554688, 73.478485 ], [ 113.730469, 73.478485 ], [ 113.730469, 73.578167 ], [ 113.906250, 73.578167 ], [ 113.906250, 73.627789 ], [ 114.257812, 73.627789 ], [ 114.257812, 73.677264 ], [ 114.785156, 73.677264 ], [ 114.785156, 73.726595 ], [ 115.312500, 73.726595 ], [ 115.312500, 73.775780 ], [ 115.839844, 73.775780 ], [ 115.839844, 73.726595 ], [ 116.894531, 73.726595 ], [ 116.894531, 73.677264 ], [ 117.949219, 73.677264 ], [ 117.949219, 73.627789 ], [ 118.652344, 73.627789 ], [ 118.652344, 73.478485 ], [ 118.828125, 73.478485 ], [ 118.828125, 73.226700 ], [ 119.003906, 73.226700 ], [ 119.003906, 73.124945 ], [ 119.531250, 73.124945 ], [ 119.531250, 73.073844 ], [ 120.937500, 73.073844 ], [ 120.937500, 73.022592 ], [ 122.343750, 73.022592 ], [ 122.343750, 72.971189 ], [ 123.046875, 72.971189 ], [ 123.046875, 73.378215 ], [ 123.222656, 73.378215 ], [ 123.222656, 73.775780 ], [ 123.398438, 73.775780 ], [ 123.398438, 73.726595 ], [ 123.925781, 73.726595 ], [ 123.925781, 73.677264 ], [ 124.453125, 73.677264 ], [ 124.453125, 73.627789 ], [ 124.980469, 73.627789 ], [ 124.980469, 73.578167 ], [ 126.914062, 73.578167 ], [ 126.914062, 73.528399 ], [ 127.089844, 73.528399 ], [ 127.089844, 73.478485 ], [ 127.265625, 73.478485 ], [ 127.265625, 73.428424 ], [ 127.441406, 73.428424 ], [ 127.441406, 73.378215 ], [ 127.617188, 73.378215 ], [ 127.617188, 73.327858 ], [ 127.792969, 73.327858 ], [ 127.792969, 73.226700 ], [ 127.968750, 73.226700 ], [ 127.968750, 73.175897 ], [ 128.144531, 73.175897 ], [ 128.144531, 73.124945 ], [ 128.320312, 73.124945 ], [ 128.320312, 73.073844 ], [ 128.496094, 73.073844 ], [ 128.496094, 72.971189 ], [ 128.671875, 72.971189 ], [ 128.671875, 72.764065 ], [ 128.847656, 72.764065 ], [ 128.847656, 72.554498 ], [ 129.023438, 72.554498 ], [ 129.023438, 72.395706 ], [ 128.847656, 72.395706 ], [ 128.847656, 72.289067 ], [ 128.671875, 72.289067 ], [ 128.671875, 72.181804 ], [ 128.496094, 72.181804 ], [ 128.496094, 72.073911 ], [ 128.320312, 72.073911 ], [ 128.320312, 71.965388 ], [ 128.496094, 71.965388 ], [ 128.496094, 71.856229 ], [ 128.671875, 71.856229 ], [ 128.671875, 71.746432 ], [ 128.847656, 71.746432 ], [ 128.847656, 71.635993 ], [ 129.023438, 71.635993 ], [ 129.023438, 71.524909 ], [ 129.199219, 71.524909 ], [ 129.199219, 71.413177 ], [ 129.375000, 71.413177 ], [ 129.375000, 71.300793 ], [ 129.550781, 71.300793 ], [ 129.550781, 71.187754 ], [ 129.726562, 71.187754 ], [ 129.726562, 71.130988 ], [ 129.902344, 71.130988 ], [ 129.902344, 71.074056 ], [ 130.078125, 71.074056 ], [ 130.078125, 71.016960 ], [ 130.429688, 71.016960 ], [ 130.429688, 70.959697 ], [ 130.605469, 70.959697 ], [ 130.605469, 70.902268 ], [ 130.781250, 70.902268 ], [ 130.781250, 70.844673 ], [ 130.957031, 70.844673 ], [ 130.957031, 70.786910 ], [ 131.132812, 70.786910 ], [ 131.132812, 70.844673 ], [ 131.308594, 70.844673 ], [ 131.308594, 71.016960 ], [ 131.484375, 71.016960 ], [ 131.484375, 71.187754 ], [ 131.660156, 71.187754 ], [ 131.660156, 71.413177 ], [ 131.835938, 71.413177 ], [ 131.835938, 71.580532 ], [ 132.011719, 71.580532 ], [ 132.011719, 71.746432 ], [ 132.187500, 71.746432 ], [ 132.187500, 71.801410 ], [ 132.363281, 71.801410 ], [ 132.363281, 71.746432 ], [ 132.539062, 71.746432 ], [ 132.539062, 71.691293 ], [ 132.714844, 71.691293 ], [ 132.714844, 71.635993 ], [ 133.066406, 71.635993 ], [ 133.066406, 71.580532 ], [ 133.242188, 71.580532 ], [ 133.242188, 71.524909 ], [ 133.417969, 71.524909 ], [ 133.417969, 71.469124 ], [ 133.593750, 71.469124 ], [ 133.593750, 71.413177 ], [ 134.121094, 71.413177 ], [ 134.121094, 71.469124 ], [ 134.472656, 71.469124 ], [ 134.472656, 71.524909 ], [ 134.824219, 71.524909 ], [ 134.824219, 71.580532 ], [ 135.175781, 71.580532 ], [ 135.175781, 71.635993 ], [ 135.878906, 71.635993 ], [ 135.878906, 66.160511 ], [ 89.121094, 66.160511 ], [ 89.121094, 75.364506 ], [ 89.296875, 75.364506 ], [ 89.296875, 75.408854 ], [ 89.472656, 75.408854 ], [ 89.472656, 75.453071 ], [ 89.648438, 75.453071 ], [ 89.648438, 75.541113 ], [ 89.824219, 75.541113 ], [ 89.824219, 75.584937 ], [ 90.000000, 75.584937 ], [ 90.000000, 75.628632 ], [ 90.175781, 75.628632 ], [ 90.175781, 75.672197 ], [ 90.703125, 75.672197 ], [ 90.703125, 75.715633 ], [ 91.582031, 75.715633 ], [ 91.582031, 75.758940 ], [ 92.460938, 75.758940 ], [ 92.460938, 75.802118 ], [ 92.812500, 75.802118 ], [ 92.812500, 75.845169 ], [ 92.988281, 75.845169 ], [ 92.988281, 75.973553 ], [ 93.164062, 75.973553 ], [ 93.164062, 76.058508 ], [ 93.867188, 76.058508 ], [ 93.867188, 76.100796 ], [ 95.273438, 76.100796 ], [ 95.273438, 76.142958 ], [ 95.800781, 76.142958 ], [ 95.800781, 76.100796 ], [ 95.976562, 76.100796 ], [ 95.976562, 76.058508 ], [ 96.152344, 76.058508 ], [ 96.152344, 76.016094 ], [ 96.328125, 76.016094 ], [ 96.328125, 75.973553 ], [ 96.503906, 75.973553 ], [ 96.503906, 75.930885 ], [ 96.855469, 75.930885 ], [ 96.855469, 75.973553 ], [ 97.031250, 75.973553 ], [ 97.031250, 76.016094 ], [ 97.207031, 76.016094 ], [ 97.207031, 76.058508 ], [ 97.382812, 76.058508 ], [ 97.382812, 76.100796 ], [ 97.558594, 76.100796 ], [ 97.558594, 76.142958 ], [ 97.734375, 76.142958 ], [ 97.734375, 76.226907 ], [ 97.910156, 76.226907 ], [ 97.910156, 76.268695 ], [ 98.085938, 76.268695 ], [ 98.085938, 76.310358 ], [ 98.261719, 76.310358 ], [ 98.261719, 76.351896 ], [ 98.437500, 76.351896 ], [ 98.437500, 76.393312 ], [ 98.613281, 76.393312 ], [ 98.613281, 76.434604 ], [ 98.789062, 76.434604 ], [ 98.789062, 76.475773 ], [ 99.667969, 76.475773 ], [ 99.667969, 76.434604 ], [ 100.722656, 76.434604 ], [ 100.722656, 76.639226 ], [ 100.898438, 76.639226 ], [ 100.898438, 76.880775 ], [ 101.074219, 76.880775 ], [ 101.074219, 76.960334 ], [ 101.250000, 76.960334 ], [ 101.250000, 77.039418 ], [ 101.425781, 77.039418 ], [ 101.425781, 77.118032 ], [ 101.601562, 77.118032 ], [ 101.601562, 77.196176 ], [ 101.777344, 77.196176 ], [ 101.777344, 77.273855 ], [ 101.953125, 77.273855 ], [ 101.953125, 77.312520 ], [ 102.128906, 77.312520 ], [ 102.128906, 77.351070 ], [ 102.304688, 77.351070 ], [ 102.304688, 77.389504 ], [ 102.480469, 77.389504 ], [ 102.480469, 77.427824 ], [ 102.832031, 77.427824 ], [ 102.832031, 77.466028 ], [ 103.007812, 77.466028 ], [ 103.007812, 77.504119 ], [ 103.183594, 77.504119 ], [ 103.183594, 77.542096 ], [ 103.359375, 77.542096 ], [ 103.359375, 77.579959 ], [ 103.535156, 77.579959 ], [ 103.535156, 77.617709 ], [ 103.886719, 77.617709 ], [ 103.886719, 77.655346 ], [ 104.062500, 77.655346 ], [ 104.062500, 77.692870 ], [ 104.414062, 77.692870 ] ] ], [ [ [ 102.304688, 79.335219 ], [ 102.304688, 79.302640 ], [ 102.832031, 79.302640 ], [ 102.832031, 79.269962 ], [ 103.007812, 79.269962 ], [ 103.007812, 79.237185 ], [ 103.183594, 79.237185 ], [ 103.183594, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.138260 ], [ 103.535156, 79.138260 ], [ 103.535156, 79.105086 ], [ 103.710938, 79.105086 ], [ 103.710938, 79.071812 ], [ 103.886719, 79.071812 ], [ 103.886719, 79.038437 ], [ 104.062500, 79.038437 ], [ 104.062500, 78.971386 ], [ 104.238281, 78.971386 ], [ 104.238281, 78.937708 ], [ 104.414062, 78.937708 ], [ 104.414062, 78.903929 ], [ 104.589844, 78.903929 ], [ 104.589844, 78.870048 ], [ 104.765625, 78.870048 ], [ 104.765625, 78.836065 ], [ 104.941406, 78.836065 ], [ 104.941406, 78.767792 ], [ 105.117188, 78.767792 ], [ 105.117188, 78.733501 ], [ 105.292969, 78.733501 ], [ 105.292969, 78.630006 ], [ 105.117188, 78.630006 ], [ 105.117188, 78.420193 ], [ 104.941406, 78.420193 ], [ 104.941406, 78.313860 ], [ 104.765625, 78.313860 ], [ 104.765625, 78.278201 ], [ 104.238281, 78.278201 ], [ 104.238281, 78.242436 ], [ 103.710938, 78.242436 ], [ 103.710938, 78.206563 ], [ 103.007812, 78.206563 ], [ 103.007812, 78.170582 ], [ 102.480469, 78.170582 ], [ 102.480469, 78.134493 ], [ 101.953125, 78.134493 ], [ 101.953125, 78.098296 ], [ 101.425781, 78.098296 ], [ 101.425781, 78.061989 ], [ 100.898438, 78.061989 ], [ 100.898438, 78.025574 ], [ 100.195312, 78.025574 ], [ 100.195312, 77.989049 ], [ 99.667969, 77.989049 ], [ 99.667969, 77.952414 ], [ 99.316406, 77.952414 ], [ 99.316406, 77.989049 ], [ 99.492188, 77.989049 ], [ 99.492188, 78.134493 ], [ 99.667969, 78.134493 ], [ 99.667969, 78.242436 ], [ 99.843750, 78.242436 ], [ 99.843750, 78.349411 ], [ 100.019531, 78.349411 ], [ 100.019531, 78.490552 ], [ 100.195312, 78.490552 ], [ 100.195312, 78.595299 ], [ 100.371094, 78.595299 ], [ 100.371094, 78.699106 ], [ 100.546875, 78.699106 ], [ 100.546875, 78.836065 ], [ 100.722656, 78.836065 ], [ 100.722656, 78.937708 ], [ 100.898438, 78.937708 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 101.953125, 79.302640 ], [ 101.953125, 79.335219 ], [ 102.304688, 79.335219 ] ] ], [ [ [ 100.019531, 79.335219 ], [ 100.019531, 79.105086 ], [ 99.843750, 79.105086 ], [ 99.843750, 78.903929 ], [ 99.667969, 78.903929 ], [ 99.667969, 78.870048 ], [ 99.140625, 78.870048 ], [ 99.140625, 78.836065 ], [ 98.613281, 78.836065 ], [ 98.613281, 78.801980 ], [ 98.085938, 78.801980 ], [ 98.085938, 78.767792 ], [ 97.558594, 78.767792 ], [ 97.558594, 78.801980 ], [ 97.207031, 78.801980 ], [ 97.207031, 78.836065 ], [ 96.855469, 78.836065 ], [ 96.855469, 78.870048 ], [ 96.503906, 78.870048 ], [ 96.503906, 78.903929 ], [ 96.152344, 78.903929 ], [ 96.152344, 78.937708 ], [ 95.976562, 78.937708 ], [ 95.976562, 78.971386 ], [ 95.625000, 78.971386 ], [ 95.625000, 79.004962 ], [ 95.273438, 79.004962 ], [ 95.273438, 79.038437 ], [ 94.921875, 79.038437 ], [ 94.921875, 79.071812 ], [ 94.746094, 79.071812 ], [ 94.746094, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.204309 ], [ 94.218750, 79.204309 ], [ 94.218750, 79.237185 ], [ 94.042969, 79.237185 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.335219 ], [ 100.019531, 79.335219 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.480469, 79.302640 ], [ 102.480469, 79.269962 ], [ 102.832031, 79.269962 ], [ 102.832031, 79.237185 ], [ 103.007812, 79.237185 ], [ 103.007812, 79.204309 ], [ 103.183594, 79.204309 ], [ 103.183594, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.138260 ], [ 103.535156, 79.138260 ], [ 103.535156, 79.071812 ], [ 103.710938, 79.071812 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 100.898438, 79.004962 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.777344, 79.269962 ], [ 101.777344, 79.302640 ], [ 102.480469, 79.302640 ] ] ], [ [ [ 96.152344, 81.228267 ], [ 96.152344, 81.174491 ], [ 96.328125, 81.174491 ], [ 96.328125, 81.120388 ], [ 96.503906, 81.120388 ], [ 96.503906, 81.093214 ], [ 96.679688, 81.093214 ], [ 96.679688, 81.038617 ], [ 96.855469, 81.038617 ], [ 96.855469, 81.011194 ], [ 97.031250, 81.011194 ], [ 97.031250, 80.956099 ], [ 97.207031, 80.956099 ], [ 97.207031, 80.900669 ], [ 97.382812, 80.900669 ], [ 97.382812, 80.872827 ], [ 97.558594, 80.872827 ], [ 97.558594, 80.816891 ], [ 97.734375, 80.816891 ], [ 97.734375, 80.760615 ], [ 97.910156, 80.760615 ], [ 97.910156, 80.703997 ], [ 98.085938, 80.703997 ], [ 98.085938, 80.647035 ], [ 98.261719, 80.647035 ], [ 98.261719, 80.560943 ], [ 98.437500, 80.560943 ], [ 98.437500, 80.503112 ], [ 98.613281, 80.503112 ], [ 98.613281, 80.415707 ], [ 98.789062, 80.415707 ], [ 98.789062, 80.356995 ], [ 98.964844, 80.356995 ], [ 98.964844, 80.268259 ], [ 99.140625, 80.268259 ], [ 99.140625, 80.178713 ], [ 99.316406, 80.178713 ], [ 99.316406, 80.118564 ], [ 99.492188, 80.118564 ], [ 99.492188, 80.027655 ], [ 99.667969, 80.027655 ], [ 99.667969, 79.966590 ], [ 99.843750, 79.966590 ], [ 99.843750, 79.874297 ], [ 100.019531, 79.874297 ], [ 100.019531, 79.812302 ], [ 100.195312, 79.812302 ], [ 100.195312, 79.400085 ], [ 100.019531, 79.400085 ], [ 100.019531, 79.004962 ], [ 95.097656, 79.004962 ], [ 95.097656, 79.038437 ], [ 94.746094, 79.038437 ], [ 94.746094, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.237185 ], [ 94.042969, 79.237185 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.367701 ], [ 93.515625, 79.367701 ], [ 93.515625, 79.400085 ], [ 93.339844, 79.400085 ], [ 93.339844, 79.496652 ], [ 93.164062, 79.496652 ], [ 93.164062, 79.624056 ], [ 92.988281, 79.624056 ], [ 92.988281, 79.781164 ], [ 92.812500, 79.781164 ], [ 92.812500, 79.935918 ], [ 92.636719, 79.935918 ], [ 92.636719, 80.058050 ], [ 92.460938, 80.058050 ], [ 92.460938, 80.148684 ], [ 92.285156, 80.148684 ], [ 92.285156, 80.178713 ], [ 92.109375, 80.178713 ], [ 92.109375, 80.208652 ], [ 91.933594, 80.208652 ], [ 91.933594, 80.238501 ], [ 91.582031, 80.238501 ], [ 91.582031, 80.268259 ], [ 91.406250, 80.268259 ], [ 91.406250, 80.297927 ], [ 91.230469, 80.297927 ], [ 91.230469, 80.327506 ], [ 91.406250, 80.327506 ], [ 91.406250, 80.386396 ], [ 91.582031, 80.386396 ], [ 91.582031, 80.444931 ], [ 91.757812, 80.444931 ], [ 91.757812, 80.503112 ], [ 91.933594, 80.503112 ], [ 91.933594, 80.532071 ], [ 92.109375, 80.532071 ], [ 92.109375, 80.589727 ], [ 92.285156, 80.589727 ], [ 92.285156, 80.647035 ], [ 92.460938, 80.647035 ], [ 92.460938, 80.675559 ], [ 92.636719, 80.675559 ], [ 92.636719, 80.732349 ], [ 92.812500, 80.732349 ], [ 92.812500, 80.788795 ], [ 92.988281, 80.788795 ], [ 92.988281, 80.844901 ], [ 93.164062, 80.844901 ], [ 93.164062, 80.872827 ], [ 93.339844, 80.872827 ], [ 93.339844, 80.928426 ], [ 93.515625, 80.928426 ], [ 93.515625, 80.983688 ], [ 93.691406, 80.983688 ], [ 93.691406, 81.011194 ], [ 93.867188, 81.011194 ], [ 93.867188, 81.038617 ], [ 94.218750, 81.038617 ], [ 94.218750, 81.065957 ], [ 94.394531, 81.065957 ], [ 94.394531, 81.093214 ], [ 94.746094, 81.093214 ], [ 94.746094, 81.120388 ], [ 94.921875, 81.120388 ], [ 94.921875, 81.147481 ], [ 95.097656, 81.147481 ], [ 95.097656, 81.174491 ], [ 95.449219, 81.174491 ], [ 95.449219, 81.201420 ], [ 95.625000, 81.201420 ], [ 95.625000, 81.228267 ], [ 96.152344, 81.228267 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.128906, 79.367701 ], [ 102.128906, 79.335219 ], [ 102.480469, 79.335219 ], [ 102.480469, 79.302640 ], [ 102.832031, 79.302640 ], [ 102.832031, 79.269962 ], [ 103.007812, 79.269962 ], [ 103.007812, 79.237185 ], [ 103.183594, 79.237185 ], [ 103.183594, 79.171335 ], [ 103.359375, 79.171335 ], [ 103.359375, 79.138260 ], [ 103.535156, 79.138260 ], [ 103.535156, 79.105086 ], [ 103.710938, 79.105086 ], [ 103.710938, 79.038437 ], [ 103.886719, 79.038437 ], [ 103.886719, 79.004962 ], [ 100.898438, 79.004962 ], [ 100.898438, 79.038437 ], [ 101.074219, 79.038437 ], [ 101.074219, 79.171335 ], [ 101.250000, 79.171335 ], [ 101.250000, 79.237185 ], [ 101.425781, 79.237185 ], [ 101.425781, 79.269962 ], [ 101.601562, 79.269962 ], [ 101.601562, 79.302640 ], [ 101.777344, 79.302640 ], [ 101.777344, 79.335219 ], [ 101.953125, 79.335219 ], [ 101.953125, 79.367701 ], [ 102.128906, 79.367701 ] ] ], [ [ [ 95.976562, 81.228267 ], [ 95.976562, 81.174491 ], [ 96.152344, 81.174491 ], [ 96.152344, 81.120388 ], [ 96.328125, 81.120388 ], [ 96.328125, 81.093214 ], [ 96.503906, 81.093214 ], [ 96.503906, 81.038617 ], [ 96.679688, 81.038617 ], [ 96.679688, 81.011194 ], [ 96.855469, 81.011194 ], [ 96.855469, 80.956099 ], [ 97.031250, 80.956099 ], [ 97.031250, 80.900669 ], [ 97.207031, 80.900669 ], [ 97.207031, 80.872827 ], [ 97.382812, 80.872827 ], [ 97.382812, 80.816891 ], [ 97.558594, 80.816891 ], [ 97.558594, 80.760615 ], [ 97.734375, 80.760615 ], [ 97.734375, 80.703997 ], [ 97.910156, 80.703997 ], [ 97.910156, 80.647035 ], [ 98.085938, 80.647035 ], [ 98.085938, 80.560943 ], [ 98.261719, 80.560943 ], [ 98.261719, 80.503112 ], [ 98.437500, 80.503112 ], [ 98.437500, 80.415707 ], [ 98.613281, 80.415707 ], [ 98.613281, 80.356995 ], [ 98.789062, 80.356995 ], [ 98.789062, 80.268259 ], [ 98.964844, 80.268259 ], [ 98.964844, 80.178713 ], [ 99.140625, 80.178713 ], [ 99.140625, 80.118564 ], [ 99.316406, 80.118564 ], [ 99.316406, 80.027655 ], [ 99.492188, 80.027655 ], [ 99.492188, 79.966590 ], [ 99.667969, 79.966590 ], [ 99.667969, 79.874297 ], [ 99.843750, 79.874297 ], [ 99.843750, 79.812302 ], [ 100.019531, 79.812302 ], [ 100.019531, 79.400085 ], [ 99.843750, 79.400085 ], [ 99.843750, 79.004962 ], [ 95.097656, 79.004962 ], [ 95.097656, 79.038437 ], [ 94.921875, 79.038437 ], [ 94.921875, 79.071812 ], [ 94.746094, 79.071812 ], [ 94.746094, 79.105086 ], [ 94.570312, 79.105086 ], [ 94.570312, 79.138260 ], [ 94.394531, 79.138260 ], [ 94.394531, 79.171335 ], [ 94.218750, 79.171335 ], [ 94.218750, 79.204309 ], [ 94.042969, 79.204309 ], [ 94.042969, 79.269962 ], [ 93.867188, 79.269962 ], [ 93.867188, 79.302640 ], [ 93.691406, 79.302640 ], [ 93.691406, 79.335219 ], [ 93.515625, 79.335219 ], [ 93.515625, 79.367701 ], [ 93.339844, 79.367701 ], [ 93.339844, 79.400085 ], [ 93.164062, 79.400085 ], [ 93.164062, 79.496652 ], [ 92.988281, 79.496652 ], [ 92.988281, 79.687184 ], [ 92.812500, 79.687184 ], [ 92.812500, 79.874297 ], [ 92.636719, 79.874297 ], [ 92.636719, 80.058050 ], [ 92.460938, 80.058050 ], [ 92.460938, 80.148684 ], [ 92.285156, 80.148684 ], [ 92.285156, 80.178713 ], [ 92.109375, 80.178713 ], [ 92.109375, 80.208652 ], [ 91.933594, 80.208652 ], [ 91.933594, 80.238501 ], [ 91.582031, 80.238501 ], [ 91.582031, 80.268259 ], [ 91.406250, 80.268259 ], [ 91.406250, 80.297927 ], [ 91.230469, 80.297927 ], [ 91.230469, 80.327506 ], [ 91.054688, 80.327506 ], [ 91.054688, 80.356995 ], [ 91.230469, 80.356995 ], [ 91.230469, 80.415707 ], [ 91.406250, 80.415707 ], [ 91.406250, 80.474065 ], [ 91.582031, 80.474065 ], [ 91.582031, 80.503112 ], [ 91.757812, 80.503112 ], [ 91.757812, 80.560943 ], [ 91.933594, 80.560943 ], [ 91.933594, 80.589727 ], [ 92.109375, 80.589727 ], [ 92.109375, 80.647035 ], [ 92.285156, 80.647035 ], [ 92.285156, 80.703997 ], [ 92.460938, 80.703997 ], [ 92.460938, 80.732349 ], [ 92.636719, 80.732349 ], [ 92.636719, 80.788795 ], [ 92.812500, 80.788795 ], [ 92.812500, 80.816891 ], [ 92.988281, 80.816891 ], [ 92.988281, 80.872827 ], [ 93.164062, 80.872827 ], [ 93.164062, 80.928426 ], [ 93.339844, 80.928426 ], [ 93.339844, 80.956099 ], [ 93.515625, 80.956099 ], [ 93.515625, 81.011194 ], [ 93.691406, 81.011194 ], [ 93.691406, 81.038617 ], [ 93.867188, 81.038617 ], [ 93.867188, 81.065957 ], [ 94.218750, 81.065957 ], [ 94.218750, 81.093214 ], [ 94.394531, 81.093214 ], [ 94.394531, 81.120388 ], [ 94.746094, 81.120388 ], [ 94.746094, 81.147481 ], [ 94.921875, 81.147481 ], [ 94.921875, 81.174491 ], [ 95.273438, 81.174491 ], [ 95.273438, 81.201420 ], [ 95.449219, 81.201420 ], [ 95.449219, 81.228267 ], [ 95.976562, 81.228267 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -79.004962 ], [ 164.531250, -79.038437 ], [ 164.355469, -79.038437 ], [ 164.355469, -79.071812 ], [ 164.003906, -79.071812 ], [ 164.003906, -79.105086 ], [ 163.828125, -79.105086 ], [ 163.828125, -79.138260 ], [ 162.773438, -79.138260 ], [ 162.773438, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.237185 ], [ 161.542969, -79.237185 ], [ 161.542969, -79.367701 ], [ 161.367188, -79.367701 ], [ 161.367188, -79.464560 ], [ 161.191406, -79.464560 ], [ 161.191406, -79.560546 ], [ 161.015625, -79.560546 ], [ 161.015625, -79.687184 ], [ 160.839844, -79.687184 ], [ 160.839844, -79.966590 ], [ 160.664062, -79.966590 ], [ 160.664062, -80.297927 ], [ 160.488281, -80.297927 ], [ 160.488281, -80.474065 ], [ 160.312500, -80.474065 ], [ 160.312500, -80.647035 ], [ 160.136719, -80.647035 ], [ 160.136719, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.900669 ], [ 159.785156, -80.900669 ], [ 159.785156, -80.983688 ], [ 159.960938, -80.983688 ], [ 159.960938, -81.038617 ], [ 160.136719, -81.038617 ], [ 160.136719, -81.065957 ], [ 160.312500, -81.065957 ], [ 160.312500, -81.120388 ], [ 160.488281, -81.120388 ], [ 160.488281, -81.147481 ], [ 160.664062, -81.147481 ], [ 160.664062, -81.201420 ], [ 160.839844, -81.201420 ], [ 160.839844, -81.228267 ], [ 161.015625, -81.228267 ], [ 161.015625, -81.281717 ], [ 161.191406, -81.281717 ], [ 161.191406, -81.387650 ], [ 161.367188, -81.387650 ], [ 161.367188, -81.595699 ], [ 161.542969, -81.595699 ], [ 161.542969, -81.748454 ], [ 161.718750, -81.748454 ], [ 161.718750, -81.823794 ], [ 161.894531, -81.823794 ], [ 161.894531, -81.898451 ], [ 162.070312, -81.898451 ], [ 162.070312, -81.972431 ], [ 162.246094, -81.972431 ], [ 162.246094, -82.045740 ], [ 162.421875, -82.045740 ], [ 162.421875, -82.094243 ], [ 162.597656, -82.094243 ], [ 162.597656, -82.142451 ], [ 162.773438, -82.142451 ], [ 162.773438, -82.190368 ], [ 162.949219, -82.190368 ], [ 162.949219, -82.237994 ], [ 163.125000, -82.237994 ], [ 163.125000, -82.285331 ], [ 163.300781, -82.285331 ], [ 163.300781, -82.332382 ], [ 163.476562, -82.332382 ], [ 163.476562, -82.379147 ], [ 163.652344, -82.379147 ], [ 163.652344, -82.425629 ], [ 163.828125, -82.425629 ], [ 163.828125, -82.471829 ], [ 164.003906, -82.471829 ], [ 164.003906, -82.517749 ], [ 164.179688, -82.517749 ], [ 164.179688, -82.540604 ], [ 164.355469, -82.540604 ], [ 164.355469, -82.586106 ], [ 164.531250, -82.586106 ], [ 164.531250, -82.608754 ], [ 164.707031, -82.608754 ], [ 164.707031, -82.653843 ], [ 164.882812, -82.653843 ], [ 164.882812, -82.698659 ], [ 165.058594, -82.698659 ], [ 165.058594, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.410156, -82.765373 ], [ 165.410156, -82.809511 ], [ 165.585938, -82.809511 ], [ 165.585938, -82.831480 ], [ 165.761719, -82.831480 ], [ 165.761719, -82.875218 ], [ 165.937500, -82.875218 ], [ 165.937500, -82.918690 ], [ 166.113281, -82.918690 ], [ 166.113281, -82.940327 ], [ 166.289062, -82.940327 ], [ 166.289062, -82.983404 ], [ 166.464844, -82.983404 ], [ 166.464844, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.047529 ], [ 166.816406, -83.047529 ], [ 166.816406, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.089955 ], [ 167.167969, -83.089955 ], [ 167.167969, -83.132123 ], [ 167.343750, -83.132123 ], [ 167.343750, -83.153111 ], [ 167.519531, -83.153111 ], [ 167.519531, -83.174035 ], [ 167.695312, -83.174035 ], [ 167.695312, -83.194896 ], [ 167.871094, -83.194896 ], [ 167.871094, -83.215693 ], [ 168.046875, -83.215693 ], [ 168.046875, -83.236426 ], [ 168.222656, -83.236426 ], [ 168.222656, -83.257097 ], [ 168.398438, -83.257097 ], [ 168.398438, -83.298250 ], [ 168.574219, -83.298250 ], [ 168.574219, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.339153 ], [ 168.925781, -83.339153 ], [ 168.925781, -83.440326 ], [ 169.101562, -83.440326 ], [ 169.101562, -83.599031 ], [ 169.277344, -83.599031 ], [ 169.277344, -83.753911 ], [ 169.453125, -83.753911 ], [ 169.453125, -83.848810 ], [ 169.804688, -83.848810 ], [ 169.804688, -83.867616 ], [ 169.980469, -83.867616 ], [ 169.980469, -83.886366 ], [ 170.332031, -83.886366 ], [ 170.332031, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.923693 ], [ 170.683594, -83.923693 ], [ 170.683594, -83.942272 ], [ 171.035156, -83.942272 ], [ 171.035156, -83.960794 ], [ 171.210938, -83.960794 ], [ 171.210938, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -83.997669 ], [ 171.738281, -83.997669 ], [ 171.738281, -84.016022 ], [ 172.089844, -84.016022 ], [ 172.089844, -84.034319 ], [ 172.265625, -84.034319 ], [ 172.265625, -84.088878 ], [ 172.441406, -84.088878 ], [ 172.441406, -84.160849 ], [ 172.617188, -84.160849 ], [ 172.617188, -84.231947 ], [ 172.792969, -84.231947 ], [ 172.792969, -84.302183 ], [ 172.968750, -84.302183 ], [ 172.968750, -84.371566 ], [ 173.144531, -84.371566 ], [ 173.144531, -84.405941 ], [ 173.320312, -84.405941 ], [ 173.320312, -84.388780 ], [ 173.496094, -84.388780 ], [ 173.496094, -84.371566 ], [ 173.671875, -84.371566 ], [ 173.671875, -84.354300 ], [ 174.023438, -84.354300 ], [ 174.023438, -84.336980 ], [ 174.199219, -84.336980 ], [ 174.199219, -84.319608 ], [ 174.375000, -84.319608 ], [ 174.375000, -84.302183 ], [ 174.550781, -84.302183 ], [ 174.550781, -84.284704 ], [ 174.726562, -84.284704 ], [ 174.726562, -84.267172 ], [ 174.902344, -84.267172 ], [ 174.902344, -84.249587 ], [ 175.078125, -84.249587 ], [ 175.078125, -84.231947 ], [ 175.429688, -84.231947 ], [ 175.429688, -84.214254 ], [ 175.605469, -84.214254 ], [ 175.605469, -84.196507 ], [ 175.781250, -84.196507 ], [ 175.781250, -84.178705 ], [ 176.132812, -84.178705 ], [ 176.132812, -84.214254 ], [ 176.308594, -84.214254 ], [ 176.308594, -84.231947 ], [ 176.484375, -84.231947 ], [ 176.484375, -84.249587 ], [ 176.660156, -84.249587 ], [ 176.660156, -84.284704 ], [ 176.835938, -84.284704 ], [ 176.835938, -84.302183 ], [ 177.011719, -84.302183 ], [ 177.011719, -84.319608 ], [ 177.187500, -84.319608 ], [ 177.187500, -84.354300 ], [ 177.363281, -84.354300 ], [ 177.363281, -84.371566 ], [ 177.539062, -84.371566 ], [ 177.539062, -84.405941 ], [ 177.714844, -84.405941 ], [ 177.714844, -84.423050 ], [ 177.890625, -84.423050 ], [ 177.890625, -84.440107 ], [ 178.066406, -84.440107 ], [ 178.066406, -84.474065 ], [ 178.242188, -84.474065 ], [ 178.242188, -84.490966 ], [ 178.417969, -84.490966 ], [ 178.417969, -84.524614 ], [ 178.593750, -84.524614 ], [ 178.593750, -84.541361 ], [ 178.769531, -84.541361 ], [ 178.769531, -84.558057 ], [ 178.945312, -84.558057 ], [ 178.945312, -84.591297 ], [ 179.121094, -84.591297 ], [ 179.121094, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.640777 ], [ 179.472656, -84.640777 ], [ 179.472656, -84.657170 ], [ 179.648438, -84.657170 ], [ 179.648438, -84.673513 ], [ 179.824219, -84.673513 ], [ 179.824219, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -84.673513 ], [ 180.175781, -84.673513 ], [ 180.175781, -84.574702 ], [ 180.351562, -84.574702 ], [ 180.351562, -84.457112 ], [ 180.527344, -84.457112 ], [ 180.527344, -84.354300 ], [ 180.703125, -84.354300 ], [ 180.703125, -84.249587 ], [ 180.878906, -84.249587 ], [ 180.878906, -85.126373 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.531250, -79.004962 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.355469, -79.004962 ], [ 164.355469, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.071812 ], [ 163.828125, -79.071812 ], [ 163.828125, -79.105086 ], [ 162.773438, -79.105086 ], [ 162.773438, -79.138260 ], [ 161.718750, -79.138260 ], [ 161.718750, -79.204309 ], [ 161.542969, -79.204309 ], [ 161.542969, -79.335219 ], [ 161.367188, -79.335219 ], [ 161.367188, -79.432371 ], [ 161.191406, -79.432371 ], [ 161.191406, -79.560546 ], [ 161.015625, -79.560546 ], [ 161.015625, -79.687184 ], [ 160.839844, -79.687184 ], [ 160.839844, -79.966590 ], [ 160.664062, -79.966590 ], [ 160.664062, -80.297927 ], [ 160.488281, -80.297927 ], [ 160.488281, -80.474065 ], [ 160.312500, -80.474065 ], [ 160.312500, -80.647035 ], [ 160.136719, -80.647035 ], [ 160.136719, -80.760615 ], [ 159.960938, -80.760615 ], [ 159.960938, -80.872827 ], [ 159.785156, -80.872827 ], [ 159.785156, -80.956099 ], [ 159.960938, -80.956099 ], [ 159.960938, -81.011194 ], [ 160.136719, -81.011194 ], [ 160.136719, -81.065957 ], [ 160.312500, -81.065957 ], [ 160.312500, -81.093214 ], [ 160.488281, -81.093214 ], [ 160.488281, -81.147481 ], [ 160.664062, -81.147481 ], [ 160.664062, -81.201420 ], [ 160.839844, -81.201420 ], [ 160.839844, -81.255032 ], [ 161.015625, -81.255032 ], [ 161.015625, -81.334844 ], [ 161.191406, -81.334844 ], [ 161.191406, -81.466261 ], [ 161.367188, -81.466261 ], [ 161.367188, -81.621352 ], [ 161.542969, -81.621352 ], [ 161.542969, -81.723188 ], [ 161.718750, -81.723188 ], [ 161.718750, -81.798757 ], [ 161.894531, -81.798757 ], [ 161.894531, -81.873641 ], [ 162.070312, -81.873641 ], [ 162.070312, -81.947846 ], [ 162.246094, -81.947846 ], [ 162.246094, -82.021378 ], [ 162.421875, -82.021378 ], [ 162.421875, -82.070028 ], [ 162.597656, -82.070028 ], [ 162.597656, -82.118384 ], [ 162.773438, -82.118384 ], [ 162.773438, -82.166446 ], [ 162.949219, -82.166446 ], [ 162.949219, -82.214217 ], [ 163.125000, -82.214217 ], [ 163.125000, -82.261699 ], [ 163.300781, -82.261699 ], [ 163.300781, -82.308893 ], [ 163.476562, -82.308893 ], [ 163.476562, -82.355800 ], [ 163.652344, -82.355800 ], [ 163.652344, -82.402423 ], [ 163.828125, -82.402423 ], [ 163.828125, -82.448764 ], [ 164.003906, -82.448764 ], [ 164.003906, -82.494824 ], [ 164.179688, -82.494824 ], [ 164.179688, -82.540604 ], [ 164.355469, -82.540604 ], [ 164.355469, -82.563390 ], [ 164.531250, -82.563390 ], [ 164.531250, -82.608754 ], [ 164.707031, -82.608754 ], [ 164.707031, -82.653843 ], [ 164.882812, -82.653843 ], [ 164.882812, -82.698659 ], [ 165.058594, -82.698659 ], [ 165.058594, -82.720964 ], [ 165.234375, -82.720964 ], [ 165.234375, -82.765373 ], [ 165.410156, -82.765373 ], [ 165.410156, -82.809511 ], [ 165.585938, -82.809511 ], [ 165.585938, -82.853382 ], [ 165.761719, -82.853382 ], [ 165.761719, -82.875218 ], [ 165.937500, -82.875218 ], [ 165.937500, -82.918690 ], [ 166.113281, -82.918690 ], [ 166.113281, -82.961898 ], [ 166.289062, -82.961898 ], [ 166.289062, -83.004844 ], [ 166.464844, -83.004844 ], [ 166.464844, -83.026219 ], [ 166.640625, -83.026219 ], [ 166.640625, -83.047529 ], [ 166.816406, -83.047529 ], [ 166.816406, -83.068774 ], [ 166.992188, -83.068774 ], [ 166.992188, -83.111071 ], [ 167.167969, -83.111071 ], [ 167.167969, -83.132123 ], [ 167.343750, -83.132123 ], [ 167.343750, -83.153111 ], [ 167.519531, -83.153111 ], [ 167.519531, -83.174035 ], [ 167.695312, -83.174035 ], [ 167.695312, -83.194896 ], [ 167.871094, -83.194896 ], [ 167.871094, -83.215693 ], [ 168.046875, -83.215693 ], [ 168.046875, -83.236426 ], [ 168.222656, -83.236426 ], [ 168.222656, -83.277705 ], [ 168.398438, -83.277705 ], [ 168.398438, -83.298250 ], [ 168.574219, -83.298250 ], [ 168.574219, -83.318733 ], [ 168.750000, -83.318733 ], [ 168.750000, -83.420215 ], [ 168.925781, -83.420215 ], [ 168.925781, -83.579404 ], [ 169.101562, -83.579404 ], [ 169.101562, -83.734757 ], [ 169.277344, -83.734757 ], [ 169.277344, -83.829945 ], [ 169.628906, -83.829945 ], [ 169.628906, -83.848810 ], [ 169.804688, -83.848810 ], [ 169.804688, -83.867616 ], [ 169.980469, -83.867616 ], [ 169.980469, -83.886366 ], [ 170.332031, -83.886366 ], [ 170.332031, -83.905058 ], [ 170.507812, -83.905058 ], [ 170.507812, -83.923693 ], [ 170.859375, -83.923693 ], [ 170.859375, -83.942272 ], [ 171.035156, -83.942272 ], [ 171.035156, -83.960794 ], [ 171.386719, -83.960794 ], [ 171.386719, -83.979259 ], [ 171.562500, -83.979259 ], [ 171.562500, -83.997669 ], [ 171.738281, -83.997669 ], [ 171.738281, -84.016022 ], [ 172.089844, -84.016022 ], [ 172.089844, -84.034319 ], [ 172.265625, -84.034319 ], [ 172.265625, -84.070747 ], [ 172.441406, -84.070747 ], [ 172.441406, -84.160849 ], [ 172.617188, -84.160849 ], [ 172.617188, -84.231947 ], [ 172.792969, -84.231947 ], [ 172.792969, -84.302183 ], [ 172.968750, -84.302183 ], [ 172.968750, -84.371566 ], [ 173.144531, -84.371566 ], [ 173.144531, -84.405941 ], [ 173.320312, -84.405941 ], [ 173.320312, -84.388780 ], [ 173.496094, -84.388780 ], [ 173.496094, -84.371566 ], [ 173.671875, -84.371566 ], [ 173.671875, -84.354300 ], [ 173.847656, -84.354300 ], [ 173.847656, -84.336980 ], [ 174.023438, -84.336980 ], [ 174.023438, -84.319608 ], [ 174.199219, -84.319608 ], [ 174.199219, -84.302183 ], [ 174.375000, -84.302183 ], [ 174.375000, -84.284704 ], [ 174.726562, -84.284704 ], [ 174.726562, -84.267172 ], [ 174.902344, -84.267172 ], [ 174.902344, -84.249587 ], [ 175.078125, -84.249587 ], [ 175.078125, -84.231947 ], [ 175.253906, -84.231947 ], [ 175.253906, -84.214254 ], [ 175.429688, -84.214254 ], [ 175.429688, -84.196507 ], [ 175.605469, -84.196507 ], [ 175.605469, -84.178705 ], [ 175.781250, -84.178705 ], [ 175.781250, -84.160849 ], [ 176.132812, -84.160849 ], [ 176.132812, -84.196507 ], [ 176.308594, -84.196507 ], [ 176.308594, -84.214254 ], [ 176.484375, -84.214254 ], [ 176.484375, -84.231947 ], [ 176.660156, -84.231947 ], [ 176.660156, -84.267172 ], [ 176.835938, -84.267172 ], [ 176.835938, -84.284704 ], [ 177.011719, -84.284704 ], [ 177.011719, -84.302183 ], [ 177.187500, -84.302183 ], [ 177.187500, -84.336980 ], [ 177.363281, -84.336980 ], [ 177.363281, -84.354300 ], [ 177.539062, -84.354300 ], [ 177.539062, -84.388780 ], [ 177.714844, -84.388780 ], [ 177.714844, -84.405941 ], [ 177.890625, -84.405941 ], [ 177.890625, -84.423050 ], [ 178.066406, -84.423050 ], [ 178.066406, -84.457112 ], [ 178.242188, -84.457112 ], [ 178.242188, -84.474065 ], [ 178.417969, -84.474065 ], [ 178.417969, -84.507816 ], [ 178.593750, -84.507816 ], [ 178.593750, -84.524614 ], [ 178.769531, -84.524614 ], [ 178.769531, -84.558057 ], [ 178.945312, -84.558057 ], [ 178.945312, -84.574702 ], [ 179.121094, -84.574702 ], [ 179.121094, -84.607840 ], [ 179.296875, -84.607840 ], [ 179.296875, -84.624334 ], [ 179.472656, -84.624334 ], [ 179.472656, -84.657170 ], [ 179.648438, -84.657170 ], [ 179.648438, -84.673513 ], [ 179.824219, -84.673513 ], [ 179.824219, -84.706049 ], [ 180.000000, -84.706049 ], [ 180.000000, -84.657170 ], [ 180.175781, -84.657170 ], [ 180.175781, -84.558057 ], [ 180.351562, -84.558057 ], [ 180.351562, -84.457112 ], [ 180.527344, -84.457112 ], [ 180.527344, -84.354300 ], [ 180.703125, -84.354300 ], [ 180.703125, -84.249587 ], [ 180.878906, -84.249587 ], [ 180.878906, -85.126373 ], [ 180.000000, -85.126373 ], [ 134.121094, -85.126373 ], [ 134.121094, -79.004962 ], [ 164.355469, -79.004962 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.054688, -66.160511 ], [ 136.054688, -66.302205 ], [ 136.230469, -66.302205 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.861082 ], [ 137.109375, -66.861082 ], [ 137.109375, -66.930060 ], [ 139.394531, -66.930060 ], [ 139.394531, -66.861082 ], [ 140.449219, -66.861082 ], [ 140.449219, -66.791909 ], [ 143.613281, -66.791909 ], [ 143.613281, -66.861082 ], [ 144.843750, -66.861082 ], [ 144.843750, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -66.998844 ], [ 145.722656, -66.998844 ], [ 145.722656, -67.067433 ], [ 145.898438, -67.067433 ], [ 145.898438, -67.135829 ], [ 146.074219, -67.135829 ], [ 146.074219, -67.204032 ], [ 146.250000, -67.204032 ], [ 146.250000, -67.407487 ], [ 146.074219, -67.407487 ], [ 146.074219, -67.676085 ], [ 146.250000, -67.676085 ], [ 146.250000, -67.742759 ], [ 146.425781, -67.742759 ], [ 146.425781, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -67.941650 ], [ 146.953125, -67.941650 ], [ 146.953125, -68.007571 ], [ 147.128906, -68.007571 ], [ 147.128906, -68.073305 ], [ 147.480469, -68.073305 ], [ 147.480469, -68.138852 ], [ 147.656250, -68.138852 ], [ 147.656250, -68.204212 ], [ 148.007812, -68.204212 ], [ 148.007812, -68.269387 ], [ 148.359375, -68.269387 ], [ 148.359375, -68.334376 ], [ 148.710938, -68.334376 ], [ 148.710938, -68.399180 ], [ 149.062500, -68.399180 ], [ 149.062500, -68.463800 ], [ 149.414062, -68.463800 ], [ 149.414062, -68.528235 ], [ 149.765625, -68.528235 ], [ 149.765625, -68.592487 ], [ 150.292969, -68.592487 ], [ 150.292969, -68.656555 ], [ 150.996094, -68.656555 ], [ 150.996094, -68.720441 ], [ 151.699219, -68.720441 ], [ 151.699219, -68.784144 ], [ 152.226562, -68.784144 ], [ 152.226562, -68.847665 ], [ 152.929688, -68.847665 ], [ 152.929688, -68.911005 ], [ 153.808594, -68.911005 ], [ 153.808594, -68.847665 ], [ 153.984375, -68.847665 ], [ 153.984375, -68.720441 ], [ 154.160156, -68.720441 ], [ 154.160156, -68.656555 ], [ 154.511719, -68.656555 ], [ 154.511719, -68.720441 ], [ 154.863281, -68.720441 ], [ 154.863281, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.847665 ], [ 155.214844, -68.847665 ], [ 155.214844, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -68.974164 ], [ 155.566406, -68.974164 ], [ 155.566406, -69.099940 ], [ 155.742188, -69.099940 ], [ 155.742188, -69.162558 ], [ 155.917969, -69.162558 ], [ 155.917969, -69.224997 ], [ 156.093750, -69.224997 ], [ 156.093750, -69.287257 ], [ 156.445312, -69.287257 ], [ 156.445312, -69.349339 ], [ 156.621094, -69.349339 ], [ 156.621094, -69.411242 ], [ 157.324219, -69.411242 ], [ 157.324219, -69.472969 ], [ 158.203125, -69.472969 ], [ 158.203125, -69.534518 ], [ 158.906250, -69.534518 ], [ 158.906250, -69.595890 ], [ 159.257812, -69.595890 ], [ 159.257812, -69.718107 ], [ 159.433594, -69.718107 ], [ 159.433594, -69.960439 ], [ 159.609375, -69.960439 ], [ 159.609375, -70.020587 ], [ 159.785156, -70.020587 ], [ 159.785156, -70.080562 ], [ 160.136719, -70.080562 ], [ 160.136719, -70.140364 ], [ 160.488281, -70.140364 ], [ 160.488281, -70.199994 ], [ 160.839844, -70.199994 ], [ 160.839844, -70.259452 ], [ 161.015625, -70.259452 ], [ 161.015625, -70.377854 ], [ 161.191406, -70.377854 ], [ 161.191406, -70.436799 ], [ 161.367188, -70.436799 ], [ 161.367188, -70.554179 ], [ 161.718750, -70.554179 ], [ 161.718750, -70.612614 ], [ 162.070312, -70.612614 ], [ 162.070312, -70.670881 ], [ 162.421875, -70.670881 ], [ 162.421875, -70.728979 ], [ 164.179688, -70.728979 ], [ 164.179688, -70.786910 ], [ 165.585938, -70.786910 ], [ 165.585938, -70.728979 ], [ 166.289062, -70.728979 ], [ 166.289062, -70.786910 ], [ 166.992188, -70.786910 ], [ 166.992188, -70.844673 ], [ 167.519531, -70.844673 ], [ 167.519531, -70.902268 ], [ 168.046875, -70.902268 ], [ 168.046875, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.016960 ], [ 168.750000, -71.016960 ], [ 168.750000, -71.074056 ], [ 168.925781, -71.074056 ], [ 168.925781, -71.130988 ], [ 169.277344, -71.130988 ], [ 169.277344, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.244356 ], [ 169.804688, -71.244356 ], [ 169.804688, -71.300793 ], [ 169.980469, -71.300793 ], [ 169.980469, -71.357067 ], [ 170.332031, -71.357067 ], [ 170.332031, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.469124 ], [ 170.683594, -71.469124 ], [ 170.683594, -71.524909 ], [ 170.859375, -71.524909 ], [ 170.859375, -71.635993 ], [ 171.035156, -71.635993 ], [ 171.035156, -71.691293 ], [ 171.210938, -71.691293 ], [ 171.210938, -71.910888 ], [ 171.035156, -71.910888 ], [ 171.035156, -72.181804 ], [ 170.859375, -72.181804 ], [ 170.859375, -72.289067 ], [ 170.683594, -72.289067 ], [ 170.683594, -72.395706 ], [ 170.507812, -72.395706 ], [ 170.507812, -72.554498 ], [ 170.332031, -72.554498 ], [ 170.332031, -72.764065 ], [ 170.156250, -72.764065 ], [ 170.156250, -72.971189 ], [ 169.980469, -72.971189 ], [ 169.980469, -73.175897 ], [ 169.804688, -73.175897 ], [ 169.804688, -73.327858 ], [ 169.628906, -73.327858 ], [ 169.628906, -73.478485 ], [ 169.453125, -73.478485 ], [ 169.453125, -73.627789 ], [ 169.277344, -73.627789 ], [ 169.277344, -73.677264 ], [ 169.101562, -73.677264 ], [ 169.101562, -73.726595 ], [ 168.750000, -73.726595 ], [ 168.750000, -73.775780 ], [ 168.398438, -73.775780 ], [ 168.398438, -73.824820 ], [ 168.046875, -73.824820 ], [ 168.046875, -73.873717 ], [ 167.871094, -73.873717 ], [ 167.871094, -73.971078 ], [ 167.695312, -73.971078 ], [ 167.695312, -74.067866 ], [ 167.519531, -74.067866 ], [ 167.519531, -74.164085 ], [ 167.343750, -74.164085 ], [ 167.343750, -74.211983 ], [ 166.992188, -74.211983 ], [ 166.992188, -74.259738 ], [ 166.816406, -74.259738 ], [ 166.816406, -74.307353 ], [ 166.640625, -74.307353 ], [ 166.640625, -74.354828 ], [ 166.289062, -74.354828 ], [ 166.289062, -74.402163 ], [ 166.113281, -74.402163 ], [ 166.113281, -74.496413 ], [ 165.937500, -74.496413 ], [ 165.937500, -74.590108 ], [ 165.761719, -74.590108 ], [ 165.761719, -74.729615 ], [ 165.585938, -74.729615 ], [ 165.585938, -74.821934 ], [ 165.410156, -74.821934 ], [ 165.410156, -74.913708 ], [ 165.234375, -74.913708 ], [ 165.234375, -75.004940 ], [ 165.058594, -75.004940 ], [ 165.058594, -75.095633 ], [ 164.882812, -75.095633 ], [ 164.882812, -75.185789 ], [ 164.707031, -75.185789 ], [ 164.707031, -75.275413 ], [ 164.531250, -75.275413 ], [ 164.531250, -75.364506 ], [ 164.355469, -75.364506 ], [ 164.355469, -75.453071 ], [ 164.179688, -75.453071 ], [ 164.179688, -75.584937 ], [ 164.003906, -75.584937 ], [ 164.003906, -75.802118 ], [ 163.828125, -75.802118 ], [ 163.828125, -76.058508 ], [ 163.652344, -76.058508 ], [ 163.652344, -76.475773 ], [ 163.476562, -76.475773 ], [ 163.476562, -77.157163 ], [ 163.652344, -77.157163 ], [ 163.652344, -77.273855 ], [ 163.828125, -77.273855 ], [ 163.828125, -77.427824 ], [ 164.003906, -77.427824 ], [ 164.003906, -77.579959 ], [ 164.179688, -77.579959 ], [ 164.179688, -77.767582 ], [ 164.355469, -77.767582 ], [ 164.355469, -77.952414 ], [ 164.531250, -77.952414 ], [ 164.531250, -78.098296 ], [ 164.707031, -78.098296 ], [ 164.707031, -78.170582 ], [ 164.882812, -78.170582 ], [ 164.882812, -78.206563 ], [ 165.410156, -78.206563 ], [ 165.410156, -78.242436 ], [ 165.761719, -78.242436 ], [ 165.761719, -78.278201 ], [ 166.289062, -78.278201 ], [ 166.289062, -78.313860 ], [ 166.640625, -78.313860 ], [ 166.640625, -78.455425 ], [ 166.816406, -78.455425 ], [ 166.816406, -78.664608 ], [ 166.992188, -78.664608 ], [ 166.992188, -78.767792 ], [ 166.816406, -78.767792 ], [ 166.816406, -78.801980 ], [ 166.464844, -78.801980 ], [ 166.464844, -78.836065 ], [ 165.937500, -78.836065 ], [ 165.937500, -78.870048 ], [ 165.585938, -78.870048 ], [ 165.585938, -78.903929 ], [ 165.234375, -78.903929 ], [ 165.234375, -78.937708 ], [ 165.058594, -78.937708 ], [ 165.058594, -78.971386 ], [ 164.707031, -78.971386 ], [ 164.707031, -79.004962 ], [ 164.531250, -79.004962 ], [ 164.531250, -79.038437 ], [ 164.355469, -79.038437 ], [ 164.355469, -79.071812 ], [ 164.003906, -79.071812 ], [ 164.003906, -79.105086 ], [ 163.828125, -79.105086 ], [ 163.828125, -79.138260 ], [ 162.773438, -79.138260 ], [ 162.773438, -79.171335 ], [ 161.718750, -79.171335 ], [ 161.718750, -79.269962 ], [ 161.542969, -79.269962 ], [ 161.542969, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.160511 ], [ 136.054688, -66.160511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, -66.160511 ], [ 135.878906, -66.302205 ], [ 136.054688, -66.302205 ], [ 136.054688, -66.513260 ], [ 136.230469, -66.513260 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.791909 ], [ 136.933594, -66.791909 ], [ 136.933594, -66.861082 ], [ 137.285156, -66.861082 ], [ 137.285156, -66.930060 ], [ 138.164062, -66.930060 ], [ 138.164062, -66.861082 ], [ 140.449219, -66.861082 ], [ 140.449219, -66.791909 ], [ 144.667969, -66.791909 ], [ 144.667969, -66.861082 ], [ 145.371094, -66.861082 ], [ 145.371094, -66.930060 ], [ 145.546875, -66.930060 ], [ 145.546875, -66.998844 ], [ 145.722656, -66.998844 ], [ 145.722656, -67.135829 ], [ 145.898438, -67.135829 ], [ 145.898438, -67.204032 ], [ 146.074219, -67.204032 ], [ 146.074219, -67.407487 ], [ 145.898438, -67.407487 ], [ 145.898438, -67.609221 ], [ 146.074219, -67.609221 ], [ 146.074219, -67.676085 ], [ 146.250000, -67.676085 ], [ 146.250000, -67.809245 ], [ 146.425781, -67.809245 ], [ 146.425781, -67.875541 ], [ 146.601562, -67.875541 ], [ 146.601562, -67.941650 ], [ 146.953125, -67.941650 ], [ 146.953125, -68.007571 ], [ 147.304688, -68.007571 ], [ 147.304688, -68.073305 ], [ 147.656250, -68.073305 ], [ 147.656250, -68.138852 ], [ 148.007812, -68.138852 ], [ 148.007812, -68.204212 ], [ 148.183594, -68.204212 ], [ 148.183594, -68.269387 ], [ 148.535156, -68.269387 ], [ 148.535156, -68.334376 ], [ 148.886719, -68.334376 ], [ 148.886719, -68.399180 ], [ 149.238281, -68.399180 ], [ 149.238281, -68.463800 ], [ 149.765625, -68.463800 ], [ 149.765625, -68.528235 ], [ 150.292969, -68.528235 ], [ 150.292969, -68.592487 ], [ 150.996094, -68.592487 ], [ 150.996094, -68.656555 ], [ 151.347656, -68.656555 ], [ 151.347656, -68.720441 ], [ 151.699219, -68.720441 ], [ 151.699219, -68.784144 ], [ 152.050781, -68.784144 ], [ 152.050781, -68.847665 ], [ 153.808594, -68.847665 ], [ 153.808594, -68.720441 ], [ 153.984375, -68.720441 ], [ 153.984375, -68.592487 ], [ 154.335938, -68.592487 ], [ 154.335938, -68.656555 ], [ 154.687500, -68.656555 ], [ 154.687500, -68.720441 ], [ 154.863281, -68.720441 ], [ 154.863281, -68.784144 ], [ 155.039062, -68.784144 ], [ 155.039062, -68.847665 ], [ 155.214844, -68.847665 ], [ 155.214844, -68.911005 ], [ 155.390625, -68.911005 ], [ 155.390625, -68.974164 ], [ 155.566406, -68.974164 ], [ 155.566406, -69.037142 ], [ 155.742188, -69.037142 ], [ 155.742188, -69.099940 ], [ 155.917969, -69.099940 ], [ 155.917969, -69.162558 ], [ 156.093750, -69.162558 ], [ 156.093750, -69.224997 ], [ 156.445312, -69.224997 ], [ 156.445312, -69.287257 ], [ 156.621094, -69.287257 ], [ 156.621094, -69.349339 ], [ 156.972656, -69.349339 ], [ 156.972656, -69.411242 ], [ 157.675781, -69.411242 ], [ 157.675781, -69.472969 ], [ 158.203125, -69.472969 ], [ 158.203125, -69.534518 ], [ 158.730469, -69.534518 ], [ 158.730469, -69.595890 ], [ 159.082031, -69.595890 ], [ 159.082031, -69.657086 ], [ 159.257812, -69.657086 ], [ 159.257812, -69.778952 ], [ 159.433594, -69.778952 ], [ 159.433594, -69.900118 ], [ 159.609375, -69.900118 ], [ 159.609375, -70.020587 ], [ 159.960938, -70.020587 ], [ 159.960938, -70.080562 ], [ 160.136719, -70.080562 ], [ 160.136719, -70.140364 ], [ 160.488281, -70.140364 ], [ 160.488281, -70.199994 ], [ 160.664062, -70.199994 ], [ 160.664062, -70.259452 ], [ 160.839844, -70.259452 ], [ 160.839844, -70.318738 ], [ 161.015625, -70.318738 ], [ 161.015625, -70.377854 ], [ 161.191406, -70.377854 ], [ 161.191406, -70.495574 ], [ 161.367188, -70.495574 ], [ 161.367188, -70.554179 ], [ 161.542969, -70.554179 ], [ 161.542969, -70.612614 ], [ 161.894531, -70.612614 ], [ 161.894531, -70.670881 ], [ 162.246094, -70.670881 ], [ 162.246094, -70.728979 ], [ 163.300781, -70.728979 ], [ 163.300781, -70.670881 ], [ 164.179688, -70.670881 ], [ 164.179688, -70.728979 ], [ 166.464844, -70.728979 ], [ 166.464844, -70.786910 ], [ 167.343750, -70.786910 ], [ 167.343750, -70.844673 ], [ 167.695312, -70.844673 ], [ 167.695312, -70.902268 ], [ 168.046875, -70.902268 ], [ 168.046875, -70.959697 ], [ 168.398438, -70.959697 ], [ 168.398438, -71.016960 ], [ 168.750000, -71.016960 ], [ 168.750000, -71.074056 ], [ 168.925781, -71.074056 ], [ 168.925781, -71.130988 ], [ 169.277344, -71.130988 ], [ 169.277344, -71.187754 ], [ 169.453125, -71.187754 ], [ 169.453125, -71.244356 ], [ 169.804688, -71.244356 ], [ 169.804688, -71.300793 ], [ 170.156250, -71.300793 ], [ 170.156250, -71.357067 ], [ 170.332031, -71.357067 ], [ 170.332031, -71.413177 ], [ 170.507812, -71.413177 ], [ 170.507812, -71.524909 ], [ 170.683594, -71.524909 ], [ 170.683594, -71.580532 ], [ 170.859375, -71.580532 ], [ 170.859375, -71.691293 ], [ 171.035156, -71.691293 ], [ 171.035156, -72.127936 ], [ 170.859375, -72.127936 ], [ 170.859375, -72.235514 ], [ 170.683594, -72.235514 ], [ 170.683594, -72.342464 ], [ 170.507812, -72.342464 ], [ 170.507812, -72.501722 ], [ 170.332031, -72.501722 ], [ 170.332031, -72.659588 ], [ 170.156250, -72.659588 ], [ 170.156250, -72.816074 ], [ 169.980469, -72.816074 ], [ 169.980469, -72.971189 ], [ 169.804688, -72.971189 ], [ 169.804688, -73.175897 ], [ 169.628906, -73.175897 ], [ 169.628906, -73.327858 ], [ 169.453125, -73.327858 ], [ 169.453125, -73.528399 ], [ 169.277344, -73.528399 ], [ 169.277344, -73.627789 ], [ 169.101562, -73.627789 ], [ 169.101562, -73.677264 ], [ 168.750000, -73.677264 ], [ 168.750000, -73.726595 ], [ 168.222656, -73.726595 ], [ 168.222656, -73.775780 ], [ 167.871094, -73.775780 ], [ 167.871094, -73.873717 ], [ 167.695312, -73.873717 ], [ 167.695312, -73.971078 ], [ 167.519531, -73.971078 ], [ 167.519531, -74.116047 ], [ 167.343750, -74.116047 ], [ 167.343750, -74.211983 ], [ 166.992188, -74.211983 ], [ 166.992188, -74.259738 ], [ 166.640625, -74.259738 ], [ 166.640625, -74.307353 ], [ 166.289062, -74.307353 ], [ 166.289062, -74.354828 ], [ 165.937500, -74.354828 ], [ 165.937500, -74.449358 ], [ 165.761719, -74.449358 ], [ 165.761719, -74.636748 ], [ 165.585938, -74.636748 ], [ 165.585938, -74.821934 ], [ 165.410156, -74.821934 ], [ 165.410156, -74.913708 ], [ 165.234375, -74.913708 ], [ 165.234375, -75.004940 ], [ 165.058594, -75.004940 ], [ 165.058594, -75.095633 ], [ 164.882812, -75.095633 ], [ 164.882812, -75.185789 ], [ 164.707031, -75.185789 ], [ 164.707031, -75.275413 ], [ 164.531250, -75.275413 ], [ 164.531250, -75.364506 ], [ 164.355469, -75.364506 ], [ 164.355469, -75.453071 ], [ 164.179688, -75.453071 ], [ 164.179688, -75.541113 ], [ 164.003906, -75.541113 ], [ 164.003906, -75.672197 ], [ 163.828125, -75.672197 ], [ 163.828125, -75.802118 ], [ 163.652344, -75.802118 ], [ 163.652344, -76.058508 ], [ 163.476562, -76.058508 ], [ 163.476562, -76.475773 ], [ 163.300781, -76.475773 ], [ 163.300781, -76.880775 ], [ 163.476562, -76.880775 ], [ 163.476562, -77.118032 ], [ 163.652344, -77.118032 ], [ 163.652344, -77.235074 ], [ 163.828125, -77.235074 ], [ 163.828125, -77.389504 ], [ 164.003906, -77.389504 ], [ 164.003906, -77.617709 ], [ 164.179688, -77.617709 ], [ 164.179688, -77.878814 ], [ 164.355469, -77.878814 ], [ 164.355469, -77.989049 ], [ 164.531250, -77.989049 ], [ 164.531250, -78.134493 ], [ 164.707031, -78.134493 ], [ 164.707031, -78.170582 ], [ 164.882812, -78.170582 ], [ 164.882812, -78.206563 ], [ 165.234375, -78.206563 ], [ 165.234375, -78.242436 ], [ 165.761719, -78.242436 ], [ 165.761719, -78.278201 ], [ 166.113281, -78.278201 ], [ 166.113281, -78.313860 ], [ 166.464844, -78.313860 ], [ 166.464844, -78.384855 ], [ 166.640625, -78.384855 ], [ 166.640625, -78.525573 ], [ 166.816406, -78.525573 ], [ 166.816406, -78.664608 ], [ 166.992188, -78.664608 ], [ 166.992188, -78.733501 ], [ 166.816406, -78.733501 ], [ 166.816406, -78.767792 ], [ 166.464844, -78.767792 ], [ 166.464844, -78.801980 ], [ 166.113281, -78.801980 ], [ 166.113281, -78.836065 ], [ 165.761719, -78.836065 ], [ 165.761719, -78.870048 ], [ 165.410156, -78.870048 ], [ 165.410156, -78.903929 ], [ 165.058594, -78.903929 ], [ 165.058594, -78.937708 ], [ 164.882812, -78.937708 ], [ 164.882812, -78.971386 ], [ 164.531250, -78.971386 ], [ 164.531250, -79.004962 ], [ 164.355469, -79.004962 ], [ 164.355469, -79.038437 ], [ 164.179688, -79.038437 ], [ 164.179688, -79.071812 ], [ 163.828125, -79.071812 ], [ 163.828125, -79.105086 ], [ 162.773438, -79.105086 ], [ 162.773438, -79.138260 ], [ 161.718750, -79.138260 ], [ 161.718750, -79.204309 ], [ 161.542969, -79.204309 ], [ 161.542969, -79.302640 ], [ 161.367188, -79.302640 ], [ 161.367188, -79.335219 ], [ 134.121094, -79.335219 ], [ 134.121094, -66.231457 ], [ 134.472656, -66.231457 ], [ 134.472656, -66.160511 ], [ 135.878906, -66.160511 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.585720 ], [ 135.703125, -65.585720 ], [ 135.703125, -65.802776 ], [ 135.878906, -65.802776 ], [ 135.878906, -66.160511 ], [ 136.054688, -66.160511 ], [ 136.054688, -66.372755 ], [ 136.230469, -66.372755 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.231457 ], [ 134.824219, -66.231457 ], [ 134.824219, -66.018018 ], [ 135.000000, -66.018018 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ] ] ], [ [ [ 140.625000, -66.861082 ], [ 140.625000, -66.791909 ], [ 143.613281, -66.791909 ], [ 143.613281, -66.861082 ], [ 140.625000, -66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.175781, -65.366837 ], [ 135.175781, -65.440002 ], [ 135.351562, -65.440002 ], [ 135.351562, -65.512963 ], [ 135.527344, -65.512963 ], [ 135.527344, -65.802776 ], [ 135.703125, -65.802776 ], [ 135.703125, -66.160511 ], [ 135.878906, -66.160511 ], [ 135.878906, -66.372755 ], [ 136.054688, -66.372755 ], [ 136.054688, -66.513260 ], [ 136.230469, -66.513260 ], [ 136.230469, -66.583217 ], [ 136.406250, -66.583217 ], [ 136.406250, -66.722541 ], [ 136.582031, -66.722541 ], [ 136.582031, -66.791909 ], [ 136.757812, -66.791909 ], [ 136.757812, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.231457 ], [ 134.472656, -66.231457 ], [ 134.472656, -66.160511 ], [ 134.648438, -66.160511 ], [ 134.648438, -66.089364 ], [ 134.824219, -66.089364 ], [ 134.824219, -65.802776 ], [ 135.000000, -65.802776 ], [ 135.000000, -65.366837 ], [ 135.175781, -65.366837 ] ] ], [ [ [ 140.625000, -66.861082 ], [ 140.625000, -66.791909 ], [ 144.316406, -66.791909 ], [ 144.316406, -66.861082 ], [ 140.625000, -66.861082 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.843750, -40.713956 ], [ 144.843750, -40.847060 ], [ 145.546875, -40.847060 ], [ 145.546875, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.777344, -41.112469 ], [ 146.777344, -40.979898 ], [ 147.480469, -40.979898 ], [ 147.480469, -40.847060 ], [ 148.359375, -40.847060 ], [ 148.359375, -42.163403 ], [ 148.183594, -42.163403 ], [ 148.183594, -42.423457 ], [ 148.007812, -42.423457 ], [ 148.007812, -42.811522 ], [ 147.832031, -42.811522 ], [ 147.832031, -43.197167 ], [ 147.656250, -43.197167 ], [ 147.656250, -43.068888 ], [ 147.304688, -43.068888 ], [ 147.304688, -43.325178 ], [ 147.128906, -43.325178 ], [ 147.128906, -43.580391 ], [ 145.898438, -43.580391 ], [ 145.898438, -43.325178 ], [ 145.722656, -43.325178 ], [ 145.722656, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -42.811522 ], [ 145.371094, -42.811522 ], [ 145.371094, -42.032974 ], [ 145.195312, -42.032974 ], [ 145.195312, -41.771312 ], [ 145.019531, -41.771312 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.713956 ], [ 144.843750, -40.713956 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.843750, -40.580585 ], [ 144.843750, -40.713956 ], [ 145.371094, -40.713956 ], [ 145.371094, -40.847060 ], [ 145.722656, -40.847060 ], [ 145.722656, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.601562, -41.112469 ], [ 146.601562, -40.979898 ], [ 147.128906, -40.979898 ], [ 147.128906, -40.847060 ], [ 147.480469, -40.847060 ], [ 147.480469, -40.713956 ], [ 147.832031, -40.713956 ], [ 147.832031, -40.847060 ], [ 148.183594, -40.847060 ], [ 148.183594, -41.508577 ], [ 148.359375, -41.508577 ], [ 148.359375, -42.163403 ], [ 148.183594, -42.163403 ], [ 148.183594, -42.293564 ], [ 148.007812, -42.293564 ], [ 148.007812, -42.811522 ], [ 147.832031, -42.811522 ], [ 147.832031, -43.197167 ], [ 147.656250, -43.197167 ], [ 147.656250, -42.940339 ], [ 147.304688, -42.940339 ], [ 147.304688, -43.197167 ], [ 147.128906, -43.197167 ], [ 147.128906, -43.325178 ], [ 146.953125, -43.325178 ], [ 146.953125, -43.580391 ], [ 146.074219, -43.580391 ], [ 146.074219, -43.452919 ], [ 145.898438, -43.452919 ], [ 145.898438, -43.325178 ], [ 145.722656, -43.325178 ], [ 145.722656, -43.068888 ], [ 145.546875, -43.068888 ], [ 145.546875, -42.811522 ], [ 145.371094, -42.811522 ], [ 145.371094, -42.423457 ], [ 145.195312, -42.423457 ], [ 145.195312, -41.902277 ], [ 145.019531, -41.902277 ], [ 145.019531, -41.640078 ], [ 144.843750, -41.640078 ], [ 144.843750, -41.376809 ], [ 144.667969, -41.376809 ], [ 144.667969, -40.580585 ], [ 144.843750, -40.580585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.376809 ], [ 173.496094, -41.376809 ], [ 173.496094, -41.244772 ], [ 173.847656, -41.244772 ], [ 173.847656, -41.112469 ], [ 174.023438, -41.112469 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.902277 ], [ 174.023438, -41.902277 ], [ 174.023438, -42.163403 ], [ 173.847656, -42.163403 ], [ 173.847656, -42.423457 ], [ 173.671875, -42.423457 ], [ 173.671875, -42.553080 ], [ 173.496094, -42.553080 ], [ 173.496094, -42.811522 ], [ 173.320312, -42.811522 ], [ 173.320312, -42.940339 ], [ 173.144531, -42.940339 ], [ 173.144531, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -43.325178 ], [ 172.792969, -43.325178 ], [ 172.792969, -43.452919 ], [ 172.968750, -43.452919 ], [ 172.968750, -43.707594 ], [ 173.144531, -43.707594 ], [ 173.144531, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -43.961191 ], [ 171.914062, -43.961191 ], [ 171.914062, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.213710 ], [ 171.386719, -44.213710 ], [ 171.386719, -44.590467 ], [ 171.210938, -44.590467 ], [ 171.210938, -45.089036 ], [ 171.035156, -45.089036 ], [ 171.035156, -45.460131 ], [ 170.859375, -45.460131 ], [ 170.859375, -45.828799 ], [ 170.683594, -45.828799 ], [ 170.683594, -46.073231 ], [ 170.332031, -46.073231 ], [ 170.332031, -46.195042 ], [ 169.980469, -46.195042 ], [ 169.980469, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.437857 ], [ 169.628906, -46.437857 ], [ 169.628906, -46.558860 ], [ 169.453125, -46.558860 ], [ 169.453125, -46.679594 ], [ 168.222656, -46.679594 ], [ 168.222656, -46.558860 ], [ 167.871094, -46.558860 ], [ 167.871094, -46.437857 ], [ 167.695312, -46.437857 ], [ 167.695312, -46.316584 ], [ 166.992188, -46.316584 ], [ 166.992188, -46.195042 ], [ 166.640625, -46.195042 ], [ 166.640625, -46.073231 ], [ 166.464844, -46.073231 ], [ 166.464844, -45.706179 ], [ 166.640625, -45.706179 ], [ 166.640625, -45.460131 ], [ 166.816406, -45.460131 ], [ 166.816406, -45.213004 ], [ 166.992188, -45.213004 ], [ 166.992188, -45.089036 ], [ 167.167969, -45.089036 ], [ 167.167969, -44.964798 ], [ 167.343750, -44.964798 ], [ 167.343750, -44.840291 ], [ 167.519531, -44.840291 ], [ 167.519531, -44.590467 ], [ 167.695312, -44.590467 ], [ 167.695312, -44.465151 ], [ 167.871094, -44.465151 ], [ 167.871094, -44.339565 ], [ 168.046875, -44.339565 ], [ 168.046875, -44.213710 ], [ 168.222656, -44.213710 ], [ 168.222656, -44.087585 ], [ 168.750000, -44.087585 ], [ 168.750000, -43.961191 ], [ 169.101562, -43.961191 ], [ 169.101562, -43.834527 ], [ 169.453125, -43.834527 ], [ 169.453125, -43.707594 ], [ 169.628906, -43.707594 ], [ 169.628906, -43.580391 ], [ 169.804688, -43.580391 ], [ 169.804688, -43.452919 ], [ 169.980469, -43.452919 ], [ 169.980469, -43.325178 ], [ 170.332031, -43.325178 ], [ 170.332031, -43.197167 ], [ 170.507812, -43.197167 ], [ 170.507812, -43.068888 ], [ 170.683594, -43.068888 ], [ 170.683594, -42.940339 ], [ 170.859375, -42.940339 ], [ 170.859375, -42.811522 ], [ 171.035156, -42.811522 ], [ 171.035156, -42.682435 ], [ 171.210938, -42.682435 ], [ 171.210938, -42.423457 ], [ 171.386719, -42.423457 ], [ 171.386719, -42.032974 ], [ 171.562500, -42.032974 ], [ 171.562500, -41.771312 ], [ 171.738281, -41.771312 ], [ 171.738281, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.979898 ], [ 172.265625, -40.979898 ], [ 172.265625, -40.847060 ], [ 172.441406, -40.847060 ], [ 172.441406, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 176.660156, -40.313043 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.253906, -41.640078 ], [ 175.253906, -41.508577 ], [ 175.078125, -41.508577 ], [ 175.078125, -41.376809 ], [ 174.726562, -41.376809 ], [ 174.726562, -41.112469 ], [ 174.902344, -41.112469 ], [ 174.902344, -40.847060 ], [ 175.078125, -40.847060 ], [ 175.078125, -40.580585 ], [ 175.253906, -40.580585 ], [ 175.253906, -40.446947 ], [ 175.078125, -40.446947 ], [ 175.078125, -40.313043 ], [ 176.660156, -40.313043 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.244772 ], [ 173.320312, -41.244772 ], [ 173.320312, -41.112469 ], [ 173.671875, -41.112469 ], [ 173.671875, -40.979898 ], [ 174.023438, -40.979898 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.902277 ], [ 174.023438, -41.902277 ], [ 174.023438, -42.163403 ], [ 173.847656, -42.163403 ], [ 173.847656, -42.293564 ], [ 173.671875, -42.293564 ], [ 173.671875, -42.553080 ], [ 173.496094, -42.553080 ], [ 173.496094, -42.682435 ], [ 173.320312, -42.682435 ], [ 173.320312, -42.940339 ], [ 173.144531, -42.940339 ], [ 173.144531, -43.068888 ], [ 172.968750, -43.068888 ], [ 172.968750, -43.197167 ], [ 172.792969, -43.197167 ], [ 172.792969, -43.325178 ], [ 172.617188, -43.325178 ], [ 172.617188, -43.452919 ], [ 172.792969, -43.452919 ], [ 172.792969, -43.707594 ], [ 172.968750, -43.707594 ], [ 172.968750, -43.834527 ], [ 172.265625, -43.834527 ], [ 172.265625, -43.961191 ], [ 171.914062, -43.961191 ], [ 171.914062, -44.087585 ], [ 171.562500, -44.087585 ], [ 171.562500, -44.213710 ], [ 171.386719, -44.213710 ], [ 171.386719, -44.465151 ], [ 171.210938, -44.465151 ], [ 171.210938, -44.715514 ], [ 171.035156, -44.715514 ], [ 171.035156, -45.089036 ], [ 170.859375, -45.089036 ], [ 170.859375, -45.336702 ], [ 170.683594, -45.336702 ], [ 170.683594, -45.706179 ], [ 170.507812, -45.706179 ], [ 170.507812, -45.951150 ], [ 170.332031, -45.951150 ], [ 170.332031, -46.073231 ], [ 170.156250, -46.073231 ], [ 170.156250, -46.195042 ], [ 169.980469, -46.195042 ], [ 169.980469, -46.316584 ], [ 169.804688, -46.316584 ], [ 169.804688, -46.437857 ], [ 169.453125, -46.437857 ], [ 169.453125, -46.558860 ], [ 168.222656, -46.558860 ], [ 168.222656, -46.437857 ], [ 167.871094, -46.437857 ], [ 167.871094, -46.316584 ], [ 167.695312, -46.316584 ], [ 167.695312, -46.195042 ], [ 166.640625, -46.195042 ], [ 166.640625, -46.073231 ], [ 166.464844, -46.073231 ], [ 166.464844, -45.706179 ], [ 166.640625, -45.706179 ], [ 166.640625, -45.460131 ], [ 166.816406, -45.460131 ], [ 166.816406, -45.213004 ], [ 166.992188, -45.213004 ], [ 166.992188, -45.089036 ], [ 167.167969, -45.089036 ], [ 167.167969, -44.964798 ], [ 167.343750, -44.964798 ], [ 167.343750, -44.840291 ], [ 167.519531, -44.840291 ], [ 167.519531, -44.590467 ], [ 167.695312, -44.590467 ], [ 167.695312, -44.465151 ], [ 167.871094, -44.465151 ], [ 167.871094, -44.339565 ], [ 168.046875, -44.339565 ], [ 168.046875, -44.213710 ], [ 168.222656, -44.213710 ], [ 168.222656, -44.087585 ], [ 168.574219, -44.087585 ], [ 168.574219, -43.961191 ], [ 168.925781, -43.961191 ], [ 168.925781, -43.834527 ], [ 169.101562, -43.834527 ], [ 169.101562, -43.707594 ], [ 169.453125, -43.707594 ], [ 169.453125, -43.580391 ], [ 169.628906, -43.580391 ], [ 169.628906, -43.452919 ], [ 169.804688, -43.452919 ], [ 169.804688, -43.325178 ], [ 169.980469, -43.325178 ], [ 169.980469, -43.197167 ], [ 170.332031, -43.197167 ], [ 170.332031, -43.068888 ], [ 170.507812, -43.068888 ], [ 170.507812, -42.940339 ], [ 170.683594, -42.940339 ], [ 170.683594, -42.682435 ], [ 170.859375, -42.682435 ], [ 170.859375, -42.553080 ], [ 171.035156, -42.553080 ], [ 171.035156, -42.293564 ], [ 171.210938, -42.293564 ], [ 171.210938, -42.032974 ], [ 171.386719, -42.032974 ], [ 171.386719, -41.771312 ], [ 171.562500, -41.771312 ], [ 171.562500, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.847060 ], [ 172.265625, -40.847060 ], [ 172.265625, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 176.660156, -40.313043 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.605469, -41.376809 ], [ 175.605469, -41.508577 ], [ 175.253906, -41.508577 ], [ 175.253906, -41.640078 ], [ 175.078125, -41.640078 ], [ 175.078125, -41.508577 ], [ 174.902344, -41.508577 ], [ 174.902344, -41.376809 ], [ 174.550781, -41.376809 ], [ 174.550781, -41.112469 ], [ 174.726562, -41.112469 ], [ 174.726562, -40.847060 ], [ 174.902344, -40.847060 ], [ 174.902344, -40.580585 ], [ 175.078125, -40.580585 ], [ 175.078125, -40.313043 ], [ 176.660156, -40.313043 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.593750, -17.476432 ], [ 178.593750, -17.644022 ], [ 178.769531, -17.644022 ], [ 178.769531, -17.978733 ], [ 178.593750, -17.978733 ], [ 178.593750, -18.145852 ], [ 178.417969, -18.145852 ], [ 178.417969, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.363281, -17.644022 ], [ 177.539062, -17.644022 ], [ 177.539062, -17.476432 ], [ 178.593750, -17.476432 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.636192 ], [ 179.824219, -16.636192 ], [ 179.824219, -16.804541 ], [ 179.121094, -16.804541 ], [ 179.121094, -16.972741 ], [ 178.769531, -16.972741 ], [ 178.769531, -16.804541 ], [ 178.593750, -16.804541 ], [ 178.593750, -16.636192 ], [ 178.945312, -16.636192 ], [ 178.945312, -16.467695 ], [ 179.472656, -16.467695 ], [ 179.472656, -16.299051 ], [ 179.824219, -16.299051 ], [ 179.824219, -16.130262 ], [ 180.000000, -16.130262 ], [ 180.175781, -16.130262 ], [ 180.175781, -16.299051 ], [ 180.000000, -16.299051 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.714844, -17.308688 ], [ 177.714844, -17.476432 ], [ 178.593750, -17.476432 ], [ 178.593750, -17.811456 ], [ 178.417969, -17.811456 ], [ 178.417969, -18.145852 ], [ 177.363281, -18.145852 ], [ 177.363281, -17.978733 ], [ 177.187500, -17.978733 ], [ 177.187500, -17.644022 ], [ 177.363281, -17.644022 ], [ 177.363281, -17.476432 ], [ 177.539062, -17.476432 ], [ 177.539062, -17.308688 ], [ 177.714844, -17.308688 ] ] ], [ [ [ 180.000000, -16.299051 ], [ 180.000000, -16.467695 ], [ 179.824219, -16.467695 ], [ 179.824219, -16.636192 ], [ 179.296875, -16.636192 ], [ 179.296875, -16.804541 ], [ 178.945312, -16.804541 ], [ 178.945312, -16.972741 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 178.769531, -16.636192 ], [ 178.769531, -16.467695 ], [ 178.945312, -16.467695 ], [ 178.945312, -16.299051 ], [ 179.648438, -16.299051 ], [ 179.648438, -16.130262 ], [ 180.000000, -16.130262 ], [ 180.000000, -15.961329 ], [ 180.175781, -15.961329 ], [ 180.175781, -16.299051 ], [ 180.000000, -16.299051 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.515625, -1.757537 ], [ 138.515625, -1.933227 ], [ 138.867188, -1.933227 ], [ 138.867188, -2.108899 ], [ 139.218750, -2.108899 ], [ 139.218750, -2.284551 ], [ 139.570312, -2.284551 ], [ 139.570312, -2.460181 ], [ 140.273438, -2.460181 ], [ 140.273438, -2.635789 ], [ 140.976562, -2.635789 ], [ 140.976562, -9.102097 ], [ 140.800781, -9.102097 ], [ 140.800781, -8.928487 ], [ 140.625000, -8.928487 ], [ 140.625000, -8.754795 ], [ 140.449219, -8.754795 ], [ 140.449219, -8.581021 ], [ 140.273438, -8.581021 ], [ 140.273438, -8.407168 ], [ 140.097656, -8.407168 ], [ 140.097656, -8.233237 ], [ 139.394531, -8.233237 ], [ 139.394531, -8.059230 ], [ 139.042969, -8.059230 ], [ 139.042969, -8.233237 ], [ 138.867188, -8.233237 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 137.636719, -8.233237 ], [ 137.812500, -8.233237 ], [ 137.812500, -7.885147 ], [ 137.988281, -7.885147 ], [ 137.988281, -7.536764 ], [ 138.515625, -7.536764 ], [ 138.515625, -7.362467 ], [ 138.691406, -7.362467 ], [ 138.691406, -7.188101 ], [ 138.515625, -7.188101 ], [ 138.515625, -6.664608 ], [ 138.339844, -6.664608 ], [ 138.339844, -6.140555 ], [ 138.164062, -6.140555 ], [ 138.164062, -5.790897 ], [ 137.988281, -5.790897 ], [ 137.988281, -5.441022 ], [ 137.636719, -5.441022 ], [ 137.636719, -5.266008 ], [ 137.285156, -5.266008 ], [ 137.285156, -5.090944 ], [ 136.933594, -5.090944 ], [ 136.933594, -4.915833 ], [ 136.582031, -4.915833 ], [ 136.582031, -4.740675 ], [ 136.230469, -4.740675 ], [ 136.230469, -4.565474 ], [ 135.527344, -4.565474 ], [ 135.527344, -4.390229 ], [ 134.824219, -4.390229 ], [ 134.824219, -4.214943 ], [ 134.472656, -4.214943 ], [ 134.472656, -4.039618 ], [ 134.121094, -4.039618 ], [ 134.121094, -1.757537 ], [ 134.296875, -1.757537 ], [ 134.296875, -2.460181 ], [ 134.472656, -2.460181 ], [ 134.472656, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.703125, -3.337954 ], [ 135.703125, -2.986927 ], [ 135.878906, -2.986927 ], [ 135.878906, -2.811371 ], [ 136.054688, -2.811371 ], [ 136.054688, -2.460181 ], [ 136.230469, -2.460181 ], [ 136.230469, -2.284551 ], [ 136.582031, -2.284551 ], [ 136.582031, -2.108899 ], [ 136.933594, -2.108899 ], [ 136.933594, -1.933227 ], [ 137.285156, -1.933227 ], [ 137.285156, -1.757537 ], [ 138.515625, -1.757537 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.489983 ], [ 134.296875, -6.489983 ], [ 134.296875, -6.839170 ], [ 134.121094, -6.839170 ], [ 134.121094, -5.965754 ], [ 134.296875, -5.965754 ], [ 134.296875, -5.615986 ], [ 134.648438, -5.615986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.339844, -1.581830 ], [ 138.339844, -1.757537 ], [ 138.691406, -1.757537 ], [ 138.691406, -1.933227 ], [ 139.218750, -1.933227 ], [ 139.218750, -2.108899 ], [ 139.570312, -2.108899 ], [ 139.570312, -2.284551 ], [ 140.273438, -2.284551 ], [ 140.273438, -2.460181 ], [ 140.976562, -2.460181 ], [ 140.976562, -9.102097 ], [ 140.800781, -9.102097 ], [ 140.800781, -8.928487 ], [ 140.625000, -8.928487 ], [ 140.625000, -8.754795 ], [ 140.449219, -8.754795 ], [ 140.449219, -8.581021 ], [ 140.273438, -8.581021 ], [ 140.273438, -8.407168 ], [ 140.097656, -8.407168 ], [ 140.097656, -8.233237 ], [ 139.394531, -8.233237 ], [ 139.394531, -8.059230 ], [ 139.042969, -8.059230 ], [ 139.042969, -8.233237 ], [ 138.339844, -8.233237 ], [ 138.339844, -8.407168 ], [ 137.636719, -8.407168 ], [ 137.636719, -8.059230 ], [ 137.812500, -8.059230 ], [ 137.812500, -7.710992 ], [ 137.988281, -7.710992 ], [ 137.988281, -7.536764 ], [ 138.164062, -7.536764 ], [ 138.164062, -7.362467 ], [ 138.515625, -7.362467 ], [ 138.515625, -6.664608 ], [ 138.339844, -6.664608 ], [ 138.339844, -6.140555 ], [ 138.164062, -6.140555 ], [ 138.164062, -5.790897 ], [ 137.988281, -5.790897 ], [ 137.988281, -5.441022 ], [ 137.812500, -5.441022 ], [ 137.812500, -5.266008 ], [ 137.460938, -5.266008 ], [ 137.460938, -5.090944 ], [ 137.109375, -5.090944 ], [ 137.109375, -4.915833 ], [ 136.757812, -4.915833 ], [ 136.757812, -4.740675 ], [ 136.406250, -4.740675 ], [ 136.406250, -4.565474 ], [ 136.054688, -4.565474 ], [ 136.054688, -4.390229 ], [ 134.824219, -4.390229 ], [ 134.824219, -4.214943 ], [ 134.648438, -4.214943 ], [ 134.648438, -4.039618 ], [ 134.296875, -4.039618 ], [ 134.296875, -3.864255 ], [ 134.121094, -3.864255 ], [ 134.121094, -1.933227 ], [ 134.296875, -1.933227 ], [ 134.296875, -2.811371 ], [ 134.648438, -2.811371 ], [ 134.648438, -2.986927 ], [ 134.824219, -2.986927 ], [ 134.824219, -3.162456 ], [ 135.175781, -3.162456 ], [ 135.175781, -3.337954 ], [ 135.527344, -3.337954 ], [ 135.527344, -3.162456 ], [ 135.703125, -3.162456 ], [ 135.703125, -2.811371 ], [ 135.878906, -2.811371 ], [ 135.878906, -2.635789 ], [ 136.054688, -2.635789 ], [ 136.054688, -2.460181 ], [ 136.230469, -2.460181 ], [ 136.230469, -2.284551 ], [ 136.406250, -2.284551 ], [ 136.406250, -2.108899 ], [ 136.757812, -2.108899 ], [ 136.757812, -1.933227 ], [ 136.933594, -1.933227 ], [ 136.933594, -1.757537 ], [ 137.285156, -1.757537 ], [ 137.285156, -1.581830 ], [ 138.339844, -1.581830 ] ] ], [ [ [ 134.648438, -5.615986 ], [ 134.648438, -6.315299 ], [ 134.472656, -6.315299 ], [ 134.472656, -6.489983 ], [ 134.296875, -6.489983 ], [ 134.296875, -6.839170 ], [ 134.121094, -6.839170 ], [ 134.121094, -5.615986 ], [ 134.648438, -5.615986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -40.713956 ], [ 144.843750, -40.847060 ], [ 145.546875, -40.847060 ], [ 145.546875, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.777344, -41.112469 ], [ 146.777344, -40.979898 ], [ 147.480469, -40.979898 ], [ 147.480469, -40.847060 ], [ 148.359375, -40.847060 ], [ 148.359375, -41.640078 ], [ 145.019531, -41.640078 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.713956 ], [ 144.843750, -40.713956 ] ] ], [ [ [ 142.558594, -10.833306 ], [ 142.558594, -11.005904 ], [ 142.734375, -11.005904 ], [ 142.734375, -11.523088 ], [ 142.910156, -11.523088 ], [ 142.910156, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.554564 ], [ 143.261719, -12.554564 ], [ 143.261719, -12.897489 ], [ 143.437500, -12.897489 ], [ 143.437500, -13.239945 ], [ 143.613281, -13.239945 ], [ 143.613281, -14.093957 ], [ 143.789062, -14.093957 ], [ 143.789062, -14.434680 ], [ 143.964844, -14.434680 ], [ 143.964844, -14.604847 ], [ 144.140625, -14.604847 ], [ 144.140625, -14.434680 ], [ 144.316406, -14.434680 ], [ 144.316406, -14.264383 ], [ 144.667969, -14.264383 ], [ 144.667969, -14.604847 ], [ 144.843750, -14.604847 ], [ 144.843750, -14.774883 ], [ 145.195312, -14.774883 ], [ 145.195312, -14.944785 ], [ 145.371094, -14.944785 ], [ 145.371094, -15.284185 ], [ 145.195312, -15.284185 ], [ 145.195312, -15.792254 ], [ 145.371094, -15.792254 ], [ 145.371094, -16.130262 ], [ 145.546875, -16.130262 ], [ 145.546875, -16.636192 ], [ 145.722656, -16.636192 ], [ 145.722656, -16.972741 ], [ 145.898438, -16.972741 ], [ 145.898438, -17.476432 ], [ 146.074219, -17.476432 ], [ 146.074219, -18.479609 ], [ 146.250000, -18.479609 ], [ 146.250000, -18.812718 ], [ 146.425781, -18.812718 ], [ 146.425781, -19.145168 ], [ 146.777344, -19.145168 ], [ 146.777344, -19.311143 ], [ 147.128906, -19.311143 ], [ 147.128906, -19.476950 ], [ 147.480469, -19.476950 ], [ 147.480469, -19.642588 ], [ 147.656250, -19.642588 ], [ 147.656250, -19.808054 ], [ 148.007812, -19.808054 ], [ 148.007812, -19.973349 ], [ 148.183594, -19.973349 ], [ 148.183594, -20.138470 ], [ 148.359375, -20.138470 ], [ 148.359375, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.468189 ], [ 148.886719, -20.468189 ], [ 148.886719, -20.632784 ], [ 148.710938, -20.632784 ], [ 148.710938, -20.797201 ], [ 148.886719, -20.797201 ], [ 148.886719, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.289374 ], [ 149.238281, -21.289374 ], [ 149.238281, -21.453069 ], [ 149.414062, -21.453069 ], [ 149.414062, -21.779905 ], [ 149.589844, -21.779905 ], [ 149.589844, -22.105999 ], [ 149.765625, -22.105999 ], [ 149.765625, -22.268764 ], [ 150.292969, -22.268764 ], [ 150.292969, -22.593726 ], [ 150.644531, -22.593726 ], [ 150.644531, -22.917923 ], [ 150.820312, -22.917923 ], [ 150.820312, -23.563987 ], [ 150.996094, -23.563987 ], [ 150.996094, -23.725012 ], [ 151.171875, -23.725012 ], [ 151.171875, -23.885838 ], [ 151.347656, -23.885838 ], [ 151.347656, -24.046464 ], [ 151.523438, -24.046464 ], [ 151.523438, -24.206890 ], [ 151.699219, -24.206890 ], [ 151.699219, -24.367114 ], [ 151.875000, -24.367114 ], [ 151.875000, -24.527135 ], [ 152.050781, -24.527135 ], [ 152.050781, -24.686952 ], [ 152.226562, -24.686952 ], [ 152.226562, -24.846565 ], [ 152.402344, -24.846565 ], [ 152.402344, -25.005973 ], [ 152.578125, -25.005973 ], [ 152.578125, -25.165173 ], [ 152.753906, -25.165173 ], [ 152.753906, -25.324167 ], [ 152.929688, -25.324167 ], [ 152.929688, -25.799891 ], [ 153.105469, -25.799891 ], [ 153.105469, -27.371767 ], [ 153.281250, -27.371767 ], [ 153.281250, -27.683528 ], [ 153.457031, -27.683528 ], [ 153.457031, -27.994401 ], [ 153.632812, -27.994401 ], [ 153.632812, -28.613459 ], [ 153.457031, -28.613459 ], [ 153.457031, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -29.840644 ], [ 153.105469, -29.840644 ], [ 153.105469, -31.353637 ], [ 152.929688, -31.353637 ], [ 152.929688, -31.802893 ], [ 152.753906, -31.802893 ], [ 152.753906, -32.101190 ], [ 152.578125, -32.101190 ], [ 152.578125, -32.398516 ], [ 152.402344, -32.398516 ], [ 152.402344, -32.694866 ], [ 152.226562, -32.694866 ], [ 152.226562, -32.842674 ], [ 151.875000, -32.842674 ], [ 151.875000, -32.990236 ], [ 151.699219, -32.990236 ], [ 151.699219, -33.284620 ], [ 151.523438, -33.284620 ], [ 151.523438, -33.724340 ], [ 151.347656, -33.724340 ], [ 151.347656, -34.016242 ], [ 151.171875, -34.016242 ], [ 151.171875, -34.307144 ], [ 150.996094, -34.307144 ], [ 150.996094, -34.597042 ], [ 150.820312, -34.597042 ], [ 150.820312, -35.029996 ], [ 150.644531, -35.029996 ], [ 150.644531, -35.317366 ], [ 150.468750, -35.317366 ], [ 150.468750, -35.603719 ], [ 150.292969, -35.603719 ], [ 150.292969, -36.031332 ], [ 150.117188, -36.031332 ], [ 150.117188, -36.879621 ], [ 149.941406, -36.879621 ], [ 149.941406, -37.579413 ], [ 149.589844, -37.579413 ], [ 149.589844, -37.718590 ], [ 149.062500, -37.718590 ], [ 149.062500, -37.857507 ], [ 148.359375, -37.857507 ], [ 148.359375, -37.996163 ], [ 148.007812, -37.996163 ], [ 148.007812, -38.134557 ], [ 147.656250, -38.134557 ], [ 147.656250, -38.272689 ], [ 147.304688, -38.272689 ], [ 147.304688, -38.410558 ], [ 147.128906, -38.410558 ], [ 147.128906, -38.548165 ], [ 146.953125, -38.548165 ], [ 146.953125, -38.685510 ], [ 146.777344, -38.685510 ], [ 146.777344, -38.822591 ], [ 146.601562, -38.822591 ], [ 146.601562, -38.959409 ], [ 146.425781, -38.959409 ], [ 146.425781, -39.095963 ], [ 146.074219, -39.095963 ], [ 146.074219, -38.959409 ], [ 145.898438, -38.959409 ], [ 145.898438, -38.822591 ], [ 145.722656, -38.822591 ], [ 145.722656, -38.685510 ], [ 145.546875, -38.685510 ], [ 145.546875, -38.548165 ], [ 145.019531, -38.548165 ], [ 145.019531, -38.410558 ], [ 144.843750, -38.410558 ], [ 144.843750, -38.134557 ], [ 145.019531, -38.134557 ], [ 145.019531, -37.996163 ], [ 144.667969, -37.996163 ], [ 144.667969, -38.134557 ], [ 144.492188, -38.134557 ], [ 144.492188, -38.272689 ], [ 144.316406, -38.272689 ], [ 144.316406, -38.410558 ], [ 144.140625, -38.410558 ], [ 144.140625, -38.548165 ], [ 143.964844, -38.548165 ], [ 143.964844, -38.685510 ], [ 143.789062, -38.685510 ], [ 143.789062, -38.822591 ], [ 143.261719, -38.822591 ], [ 143.261719, -38.685510 ], [ 142.910156, -38.685510 ], [ 142.910156, -38.548165 ], [ 142.382812, -38.548165 ], [ 142.382812, -38.410558 ], [ 141.855469, -38.410558 ], [ 141.855469, -38.272689 ], [ 141.328125, -38.272689 ], [ 141.328125, -38.134557 ], [ 140.800781, -38.134557 ], [ 140.800781, -37.996163 ], [ 140.449219, -37.996163 ], [ 140.449219, -37.857507 ], [ 140.273438, -37.857507 ], [ 140.273438, -37.718590 ], [ 140.097656, -37.718590 ], [ 140.097656, -37.579413 ], [ 139.921875, -37.579413 ], [ 139.921875, -37.020098 ], [ 139.746094, -37.020098 ], [ 139.746094, -36.456636 ], [ 139.570312, -36.456636 ], [ 139.570312, -36.173357 ], [ 139.394531, -36.173357 ], [ 139.394531, -36.031332 ], [ 139.218750, -36.031332 ], [ 139.218750, -35.889050 ], [ 139.042969, -35.889050 ], [ 139.042969, -35.746512 ], [ 138.515625, -35.746512 ], [ 138.515625, -35.603719 ], [ 138.339844, -35.603719 ], [ 138.339844, -35.317366 ], [ 138.515625, -35.317366 ], [ 138.515625, -35.029996 ], [ 138.339844, -35.029996 ], [ 138.339844, -34.741612 ], [ 138.164062, -34.741612 ], [ 138.164062, -34.597042 ], [ 137.988281, -34.597042 ], [ 137.988281, -34.741612 ], [ 137.812500, -34.741612 ], [ 137.812500, -35.029996 ], [ 137.460938, -35.029996 ], [ 137.460938, -35.173808 ], [ 137.109375, -35.173808 ], [ 137.109375, -35.317366 ], [ 136.933594, -35.317366 ], [ 136.933594, -35.029996 ], [ 137.109375, -35.029996 ], [ 137.109375, -34.885931 ], [ 137.285156, -34.885931 ], [ 137.285156, -34.452218 ], [ 137.460938, -34.452218 ], [ 137.460938, -34.016242 ], [ 137.636719, -34.016242 ], [ 137.636719, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -32.990236 ], [ 137.636719, -32.990236 ], [ 137.636719, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.284620 ], [ 137.285156, -33.284620 ], [ 137.285156, -33.578015 ], [ 137.109375, -33.578015 ], [ 137.109375, -33.724340 ], [ 136.933594, -33.724340 ], [ 136.933594, -33.870416 ], [ 136.757812, -33.870416 ], [ 136.757812, -34.016242 ], [ 136.582031, -34.016242 ], [ 136.582031, -34.161818 ], [ 136.406250, -34.161818 ], [ 136.406250, -34.452218 ], [ 136.230469, -34.452218 ], [ 136.230469, -34.741612 ], [ 136.054688, -34.741612 ], [ 136.054688, -34.885931 ], [ 135.878906, -34.885931 ], [ 135.878906, -34.741612 ], [ 135.527344, -34.741612 ], [ 135.527344, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -34.016242 ], [ 135.000000, -34.016242 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -32.694866 ], [ 134.296875, -32.694866 ], [ 134.296875, -32.546813 ], [ 134.121094, -32.546813 ], [ 134.121094, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.703125, -12.211180 ], [ 135.703125, -12.039321 ], [ 136.582031, -12.039321 ], [ 136.582031, -12.211180 ], [ 136.757812, -12.211180 ], [ 136.757812, -12.382928 ], [ 136.933594, -12.382928 ], [ 136.933594, -12.726084 ], [ 136.757812, -12.726084 ], [ 136.757812, -13.068777 ], [ 136.406250, -13.068777 ], [ 136.406250, -13.239945 ], [ 135.878906, -13.239945 ], [ 135.878906, -13.581921 ], [ 136.054688, -13.581921 ], [ 136.054688, -13.923404 ], [ 135.878906, -13.923404 ], [ 135.878906, -14.264383 ], [ 135.703125, -14.264383 ], [ 135.703125, -14.434680 ], [ 135.527344, -14.434680 ], [ 135.527344, -14.774883 ], [ 135.351562, -14.774883 ], [ 135.351562, -14.944785 ], [ 135.527344, -14.944785 ], [ 135.527344, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 135.878906, -15.284185 ], [ 135.878906, -15.453680 ], [ 136.054688, -15.453680 ], [ 136.054688, -15.623037 ], [ 136.582031, -15.623037 ], [ 136.582031, -15.792254 ], [ 137.109375, -15.792254 ], [ 137.109375, -15.961329 ], [ 137.285156, -15.961329 ], [ 137.285156, -16.130262 ], [ 137.460938, -16.130262 ], [ 137.460938, -16.299051 ], [ 137.636719, -16.299051 ], [ 137.636719, -16.467695 ], [ 137.812500, -16.467695 ], [ 137.812500, -16.636192 ], [ 138.164062, -16.636192 ], [ 138.164062, -16.804541 ], [ 138.515625, -16.804541 ], [ 138.515625, -16.972741 ], [ 138.867188, -16.972741 ], [ 138.867188, -17.140790 ], [ 139.042969, -17.140790 ], [ 139.042969, -17.308688 ], [ 139.394531, -17.308688 ], [ 139.394531, -17.476432 ], [ 139.921875, -17.476432 ], [ 139.921875, -17.644022 ], [ 140.449219, -17.644022 ], [ 140.449219, -17.476432 ], [ 140.800781, -17.476432 ], [ 140.800781, -17.308688 ], [ 140.976562, -17.308688 ], [ 140.976562, -16.972741 ], [ 141.152344, -16.972741 ], [ 141.152344, -16.636192 ], [ 141.328125, -16.636192 ], [ 141.328125, -15.623037 ], [ 141.503906, -15.623037 ], [ 141.503906, -15.284185 ], [ 141.679688, -15.284185 ], [ 141.679688, -14.944785 ], [ 141.503906, -14.944785 ], [ 141.503906, -14.434680 ], [ 141.679688, -14.434680 ], [ 141.679688, -14.093957 ], [ 141.503906, -14.093957 ], [ 141.503906, -13.410994 ], [ 141.679688, -13.410994 ], [ 141.679688, -12.897489 ], [ 141.855469, -12.897489 ], [ 141.855469, -12.554564 ], [ 141.679688, -12.554564 ], [ 141.679688, -12.211180 ], [ 141.855469, -12.211180 ], [ 141.855469, -11.695273 ], [ 142.031250, -11.695273 ], [ 142.031250, -11.178402 ], [ 142.207031, -11.178402 ], [ 142.207031, -11.005904 ], [ 142.382812, -11.005904 ], [ 142.382812, -10.833306 ], [ 142.558594, -10.833306 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.843750, -40.580585 ], [ 144.843750, -40.713956 ], [ 145.371094, -40.713956 ], [ 145.371094, -40.847060 ], [ 145.722656, -40.847060 ], [ 145.722656, -40.979898 ], [ 146.074219, -40.979898 ], [ 146.074219, -41.112469 ], [ 146.601562, -41.112469 ], [ 146.601562, -40.979898 ], [ 147.128906, -40.979898 ], [ 147.128906, -40.847060 ], [ 147.480469, -40.847060 ], [ 147.480469, -40.713956 ], [ 147.832031, -40.713956 ], [ 147.832031, -40.847060 ], [ 148.183594, -40.847060 ], [ 148.183594, -41.640078 ], [ 145.019531, -41.640078 ], [ 145.019531, -41.508577 ], [ 144.843750, -41.508577 ], [ 144.843750, -41.244772 ], [ 144.667969, -41.244772 ], [ 144.667969, -40.580585 ], [ 144.843750, -40.580585 ] ] ], [ [ [ 142.558594, -10.833306 ], [ 142.558594, -11.005904 ], [ 142.734375, -11.005904 ], [ 142.734375, -11.867351 ], [ 143.085938, -11.867351 ], [ 143.085938, -12.382928 ], [ 143.261719, -12.382928 ], [ 143.261719, -12.726084 ], [ 143.437500, -12.726084 ], [ 143.437500, -13.923404 ], [ 143.613281, -13.923404 ], [ 143.613281, -14.264383 ], [ 143.789062, -14.264383 ], [ 143.789062, -14.434680 ], [ 144.140625, -14.434680 ], [ 144.140625, -14.264383 ], [ 144.667969, -14.264383 ], [ 144.667969, -14.434680 ], [ 144.843750, -14.434680 ], [ 144.843750, -14.604847 ], [ 145.019531, -14.604847 ], [ 145.019531, -14.774883 ], [ 145.195312, -14.774883 ], [ 145.195312, -14.944785 ], [ 145.371094, -14.944785 ], [ 145.371094, -15.114553 ], [ 145.195312, -15.114553 ], [ 145.195312, -15.792254 ], [ 145.371094, -15.792254 ], [ 145.371094, -16.467695 ], [ 145.546875, -16.467695 ], [ 145.546875, -16.804541 ], [ 145.722656, -16.804541 ], [ 145.722656, -17.140790 ], [ 145.898438, -17.140790 ], [ 145.898438, -17.476432 ], [ 146.074219, -17.476432 ], [ 146.074219, -17.978733 ], [ 145.898438, -17.978733 ], [ 145.898438, -18.312811 ], [ 146.074219, -18.312811 ], [ 146.074219, -18.646245 ], [ 146.250000, -18.646245 ], [ 146.250000, -18.979026 ], [ 146.601562, -18.979026 ], [ 146.601562, -19.145168 ], [ 146.777344, -19.145168 ], [ 146.777344, -19.311143 ], [ 147.128906, -19.311143 ], [ 147.128906, -19.476950 ], [ 147.304688, -19.476950 ], [ 147.304688, -19.642588 ], [ 147.656250, -19.642588 ], [ 147.656250, -19.808054 ], [ 148.007812, -19.808054 ], [ 148.007812, -19.973349 ], [ 148.183594, -19.973349 ], [ 148.183594, -20.138470 ], [ 148.535156, -20.138470 ], [ 148.535156, -20.303418 ], [ 148.710938, -20.303418 ], [ 148.710938, -20.797201 ], [ 148.886719, -20.797201 ], [ 148.886719, -20.961440 ], [ 149.062500, -20.961440 ], [ 149.062500, -21.125498 ], [ 149.238281, -21.125498 ], [ 149.238281, -21.453069 ], [ 149.414062, -21.453069 ], [ 149.414062, -22.105999 ], [ 149.589844, -22.105999 ], [ 149.589844, -22.268764 ], [ 150.292969, -22.268764 ], [ 150.292969, -22.431340 ], [ 150.644531, -22.431340 ], [ 150.644531, -22.917923 ], [ 150.820312, -22.917923 ], [ 150.820312, -23.563987 ], [ 150.996094, -23.563987 ], [ 150.996094, -23.725012 ], [ 151.171875, -23.725012 ], [ 151.171875, -23.885838 ], [ 151.347656, -23.885838 ], [ 151.347656, -24.046464 ], [ 151.523438, -24.046464 ], [ 151.523438, -24.206890 ], [ 151.875000, -24.206890 ], [ 151.875000, -24.367114 ], [ 152.050781, -24.367114 ], [ 152.050781, -24.527135 ], [ 152.226562, -24.527135 ], [ 152.226562, -24.686952 ], [ 152.402344, -24.686952 ], [ 152.402344, -25.005973 ], [ 152.578125, -25.005973 ], [ 152.578125, -25.165173 ], [ 152.753906, -25.165173 ], [ 152.753906, -25.482951 ], [ 152.929688, -25.482951 ], [ 152.929688, -25.799891 ], [ 153.105469, -25.799891 ], [ 153.105469, -26.902477 ], [ 152.929688, -26.902477 ], [ 152.929688, -27.371767 ], [ 153.105469, -27.371767 ], [ 153.105469, -27.683528 ], [ 153.281250, -27.683528 ], [ 153.281250, -27.994401 ], [ 153.457031, -27.994401 ], [ 153.457031, -29.228890 ], [ 153.281250, -29.228890 ], [ 153.281250, -29.688053 ], [ 153.105469, -29.688053 ], [ 153.105469, -30.145127 ], [ 152.929688, -30.145127 ], [ 152.929688, -31.203405 ], [ 152.753906, -31.203405 ], [ 152.753906, -31.802893 ], [ 152.578125, -31.802893 ], [ 152.578125, -32.398516 ], [ 152.402344, -32.398516 ], [ 152.402344, -32.694866 ], [ 152.226562, -32.694866 ], [ 152.226562, -32.842674 ], [ 151.875000, -32.842674 ], [ 151.875000, -32.990236 ], [ 151.699219, -32.990236 ], [ 151.699219, -33.137551 ], [ 151.523438, -33.137551 ], [ 151.523438, -33.431441 ], [ 151.347656, -33.431441 ], [ 151.347656, -33.724340 ], [ 151.171875, -33.724340 ], [ 151.171875, -34.016242 ], [ 150.996094, -34.016242 ], [ 150.996094, -34.597042 ], [ 150.820312, -34.597042 ], [ 150.820312, -35.029996 ], [ 150.644531, -35.029996 ], [ 150.644531, -35.317366 ], [ 150.468750, -35.317366 ], [ 150.468750, -35.603719 ], [ 150.292969, -35.603719 ], [ 150.292969, -35.889050 ], [ 150.117188, -35.889050 ], [ 150.117188, -36.173357 ], [ 149.941406, -36.173357 ], [ 149.941406, -37.439974 ], [ 149.765625, -37.439974 ], [ 149.765625, -37.579413 ], [ 149.589844, -37.579413 ], [ 149.589844, -37.718590 ], [ 148.183594, -37.718590 ], [ 148.183594, -37.857507 ], [ 147.832031, -37.857507 ], [ 147.832031, -37.996163 ], [ 147.480469, -37.996163 ], [ 147.480469, -38.134557 ], [ 147.304688, -38.134557 ], [ 147.304688, -38.272689 ], [ 147.128906, -38.272689 ], [ 147.128906, -38.410558 ], [ 146.953125, -38.410558 ], [ 146.953125, -38.548165 ], [ 146.777344, -38.548165 ], [ 146.777344, -38.685510 ], [ 146.601562, -38.685510 ], [ 146.601562, -38.822591 ], [ 146.425781, -38.822591 ], [ 146.425781, -38.959409 ], [ 146.074219, -38.959409 ], [ 146.074219, -38.822591 ], [ 145.722656, -38.822591 ], [ 145.722656, -38.685510 ], [ 145.371094, -38.685510 ], [ 145.371094, -38.548165 ], [ 145.019531, -38.548165 ], [ 145.019531, -38.410558 ], [ 144.843750, -38.410558 ], [ 144.843750, -38.134557 ], [ 145.019531, -38.134557 ], [ 145.019531, -37.857507 ], [ 144.843750, -37.857507 ], [ 144.843750, -37.996163 ], [ 144.316406, -37.996163 ], [ 144.316406, -38.134557 ], [ 144.140625, -38.134557 ], [ 144.140625, -38.272689 ], [ 143.964844, -38.272689 ], [ 143.964844, -38.410558 ], [ 143.789062, -38.410558 ], [ 143.789062, -38.548165 ], [ 143.613281, -38.548165 ], [ 143.613281, -38.685510 ], [ 143.085938, -38.685510 ], [ 143.085938, -38.548165 ], [ 142.734375, -38.548165 ], [ 142.734375, -38.410558 ], [ 142.207031, -38.410558 ], [ 142.207031, -38.272689 ], [ 141.152344, -38.272689 ], [ 141.152344, -38.134557 ], [ 140.800781, -38.134557 ], [ 140.800781, -37.996163 ], [ 140.449219, -37.996163 ], [ 140.449219, -37.857507 ], [ 140.273438, -37.857507 ], [ 140.273438, -37.579413 ], [ 140.097656, -37.579413 ], [ 140.097656, -37.439974 ], [ 139.921875, -37.439974 ], [ 139.921875, -37.020098 ], [ 139.746094, -37.020098 ], [ 139.746094, -36.315125 ], [ 139.570312, -36.315125 ], [ 139.570312, -36.031332 ], [ 139.394531, -36.031332 ], [ 139.394531, -35.889050 ], [ 139.218750, -35.889050 ], [ 139.218750, -35.746512 ], [ 139.042969, -35.746512 ], [ 139.042969, -35.603719 ], [ 137.988281, -35.603719 ], [ 137.988281, -35.460670 ], [ 138.164062, -35.460670 ], [ 138.164062, -35.173808 ], [ 138.339844, -35.173808 ], [ 138.339844, -34.741612 ], [ 138.164062, -34.741612 ], [ 138.164062, -34.452218 ], [ 137.988281, -34.452218 ], [ 137.988281, -34.741612 ], [ 137.812500, -34.741612 ], [ 137.812500, -35.029996 ], [ 137.285156, -35.029996 ], [ 137.285156, -35.173808 ], [ 136.933594, -35.173808 ], [ 136.933594, -34.885931 ], [ 137.109375, -34.885931 ], [ 137.109375, -34.741612 ], [ 137.285156, -34.741612 ], [ 137.285156, -34.307144 ], [ 137.460938, -34.307144 ], [ 137.460938, -34.016242 ], [ 137.636719, -34.016242 ], [ 137.636719, -33.724340 ], [ 137.812500, -33.724340 ], [ 137.812500, -32.990236 ], [ 137.636719, -32.990236 ], [ 137.636719, -33.137551 ], [ 137.460938, -33.137551 ], [ 137.460938, -33.284620 ], [ 137.285156, -33.284620 ], [ 137.285156, -33.578015 ], [ 137.109375, -33.578015 ], [ 137.109375, -33.724340 ], [ 136.933594, -33.724340 ], [ 136.933594, -33.870416 ], [ 136.582031, -33.870416 ], [ 136.582031, -34.016242 ], [ 136.230469, -34.016242 ], [ 136.230469, -34.307144 ], [ 136.054688, -34.307144 ], [ 136.054688, -34.741612 ], [ 135.878906, -34.741612 ], [ 135.878906, -34.885931 ], [ 135.703125, -34.885931 ], [ 135.703125, -34.741612 ], [ 135.351562, -34.741612 ], [ 135.351562, -34.597042 ], [ 135.175781, -34.597042 ], [ 135.175781, -33.870416 ], [ 135.000000, -33.870416 ], [ 135.000000, -33.724340 ], [ 134.824219, -33.724340 ], [ 134.824219, -33.431441 ], [ 134.648438, -33.431441 ], [ 134.648438, -33.284620 ], [ 134.472656, -33.284620 ], [ 134.472656, -33.137551 ], [ 134.296875, -33.137551 ], [ 134.296875, -32.990236 ], [ 134.121094, -32.990236 ], [ 134.121094, -12.039321 ], [ 135.000000, -12.039321 ], [ 135.000000, -12.211180 ], [ 135.527344, -12.211180 ], [ 135.527344, -12.039321 ], [ 136.230469, -12.039321 ], [ 136.230469, -11.867351 ], [ 136.582031, -11.867351 ], [ 136.582031, -12.039321 ], [ 136.757812, -12.039321 ], [ 136.757812, -12.211180 ], [ 136.933594, -12.211180 ], [ 136.933594, -12.382928 ], [ 136.757812, -12.382928 ], [ 136.757812, -12.726084 ], [ 136.582031, -12.726084 ], [ 136.582031, -12.897489 ], [ 136.406250, -12.897489 ], [ 136.406250, -13.239945 ], [ 135.878906, -13.239945 ], [ 135.878906, -13.410994 ], [ 136.054688, -13.410994 ], [ 136.054688, -13.752725 ], [ 135.878906, -13.752725 ], [ 135.878906, -14.093957 ], [ 135.703125, -14.093957 ], [ 135.703125, -14.264383 ], [ 135.527344, -14.264383 ], [ 135.527344, -14.604847 ], [ 135.351562, -14.604847 ], [ 135.351562, -15.114553 ], [ 135.703125, -15.114553 ], [ 135.703125, -15.284185 ], [ 136.054688, -15.284185 ], [ 136.054688, -15.453680 ], [ 136.230469, -15.453680 ], [ 136.230469, -15.623037 ], [ 136.582031, -15.623037 ], [ 136.582031, -15.792254 ], [ 136.933594, -15.792254 ], [ 136.933594, -15.961329 ], [ 137.285156, -15.961329 ], [ 137.285156, -16.130262 ], [ 137.460938, -16.130262 ], [ 137.460938, -16.299051 ], [ 137.636719, -16.299051 ], [ 137.636719, -16.467695 ], [ 137.812500, -16.467695 ], [ 137.812500, -16.636192 ], [ 137.988281, -16.636192 ], [ 137.988281, -16.804541 ], [ 138.691406, -16.804541 ], [ 138.691406, -16.972741 ], [ 139.042969, -16.972741 ], [ 139.042969, -17.140790 ], [ 139.218750, -17.140790 ], [ 139.218750, -17.308688 ], [ 139.394531, -17.308688 ], [ 139.394531, -17.476432 ], [ 139.746094, -17.476432 ], [ 139.746094, -17.644022 ], [ 140.449219, -17.644022 ], [ 140.449219, -17.476432 ], [ 140.800781, -17.476432 ], [ 140.800781, -17.140790 ], [ 140.976562, -17.140790 ], [ 140.976562, -16.636192 ], [ 141.152344, -16.636192 ], [ 141.152344, -16.130262 ], [ 141.328125, -16.130262 ], [ 141.328125, -15.623037 ], [ 141.503906, -15.623037 ], [ 141.503906, -15.284185 ], [ 141.679688, -15.284185 ], [ 141.679688, -14.774883 ], [ 141.503906, -14.774883 ], [ 141.503906, -12.897489 ], [ 141.679688, -12.897489 ], [ 141.679688, -12.211180 ], [ 141.855469, -12.211180 ], [ 141.855469, -11.523088 ], [ 142.031250, -11.523088 ], [ 142.031250, -11.005904 ], [ 142.207031, -11.005904 ], [ 142.207031, -10.833306 ], [ 142.558594, -10.833306 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.152344, -2.635789 ], [ 141.152344, -2.811371 ], [ 141.503906, -2.811371 ], [ 141.503906, -2.986927 ], [ 142.031250, -2.986927 ], [ 142.031250, -3.162456 ], [ 142.382812, -3.162456 ], [ 142.382812, -3.337954 ], [ 142.910156, -3.337954 ], [ 142.910156, -3.513421 ], [ 143.613281, -3.513421 ], [ 143.613281, -3.688855 ], [ 144.316406, -3.688855 ], [ 144.316406, -3.864255 ], [ 144.667969, -3.864255 ], [ 144.667969, -4.039618 ], [ 144.843750, -4.039618 ], [ 144.843750, -4.214943 ], [ 145.019531, -4.214943 ], [ 145.019531, -4.390229 ], [ 145.195312, -4.390229 ], [ 145.195312, -4.565474 ], [ 145.371094, -4.565474 ], [ 145.371094, -4.740675 ], [ 145.722656, -4.740675 ], [ 145.722656, -4.915833 ], [ 145.898438, -4.915833 ], [ 145.898438, -5.441022 ], [ 146.074219, -5.441022 ], [ 146.074219, -5.615986 ], [ 146.425781, -5.615986 ], [ 146.425781, -5.790897 ], [ 146.953125, -5.790897 ], [ 146.953125, -5.965754 ], [ 147.304688, -5.965754 ], [ 147.304688, -6.140555 ], [ 147.656250, -6.140555 ], [ 147.656250, -6.489983 ], [ 147.832031, -6.489983 ], [ 147.832031, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.128906, -7.013668 ], [ 147.128906, -7.536764 ], [ 147.304688, -7.536764 ], [ 147.304688, -7.710992 ], [ 147.656250, -7.710992 ], [ 147.656250, -7.885147 ], [ 147.832031, -7.885147 ], [ 147.832031, -8.059230 ], [ 148.007812, -8.059230 ], [ 148.007812, -8.233237 ], [ 148.183594, -8.233237 ], [ 148.183594, -8.581021 ], [ 148.359375, -8.581021 ], [ 148.359375, -8.754795 ], [ 148.535156, -8.754795 ], [ 148.535156, -9.102097 ], [ 149.238281, -9.102097 ], [ 149.238281, -9.449062 ], [ 149.589844, -9.449062 ], [ 149.589844, -9.622414 ], [ 150.117188, -9.622414 ], [ 150.117188, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -9.968851 ], [ 150.117188, -9.968851 ], [ 150.117188, -10.141932 ], [ 150.468750, -10.141932 ], [ 150.468750, -10.314919 ], [ 150.820312, -10.314919 ], [ 150.820312, -10.487812 ], [ 150.644531, -10.487812 ], [ 150.644531, -10.660608 ], [ 149.941406, -10.660608 ], [ 149.941406, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -10.314919 ], [ 148.183594, -10.314919 ], [ 148.183594, -10.141932 ], [ 147.656250, -10.141932 ], [ 147.656250, -9.968851 ], [ 147.480469, -9.968851 ], [ 147.480469, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.622414 ], [ 147.128906, -9.622414 ], [ 147.128906, -9.449062 ], [ 146.953125, -9.449062 ], [ 146.953125, -9.275622 ], [ 146.777344, -9.275622 ], [ 146.777344, -9.102097 ], [ 146.601562, -9.102097 ], [ 146.601562, -8.928487 ], [ 146.425781, -8.928487 ], [ 146.425781, -8.581021 ], [ 146.250000, -8.581021 ], [ 146.250000, -8.233237 ], [ 146.074219, -8.233237 ], [ 146.074219, -8.059230 ], [ 145.546875, -8.059230 ], [ 145.546875, -7.885147 ], [ 144.843750, -7.885147 ], [ 144.843750, -7.710992 ], [ 144.492188, -7.710992 ], [ 144.492188, -7.885147 ], [ 143.964844, -7.885147 ], [ 143.964844, -8.059230 ], [ 143.613281, -8.059230 ], [ 143.613281, -8.233237 ], [ 143.261719, -8.233237 ], [ 143.261719, -8.581021 ], [ 143.437500, -8.581021 ], [ 143.437500, -8.928487 ], [ 143.261719, -8.928487 ], [ 143.261719, -9.102097 ], [ 142.910156, -9.102097 ], [ 142.910156, -9.275622 ], [ 142.207031, -9.275622 ], [ 142.207031, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.635789 ], [ 141.152344, -2.635789 ] ] ], [ [ [ 152.050781, -4.214943 ], [ 152.050781, -4.390229 ], [ 152.402344, -4.390229 ], [ 152.402344, -5.090944 ], [ 152.226562, -5.090944 ], [ 152.226562, -5.441022 ], [ 151.875000, -5.441022 ], [ 151.875000, -5.615986 ], [ 151.523438, -5.615986 ], [ 151.523438, -5.790897 ], [ 151.347656, -5.790897 ], [ 151.347656, -5.965754 ], [ 150.996094, -5.965754 ], [ 150.996094, -6.140555 ], [ 150.644531, -6.140555 ], [ 150.644531, -6.315299 ], [ 149.414062, -6.315299 ], [ 149.414062, -6.140555 ], [ 149.062500, -6.140555 ], [ 149.062500, -5.965754 ], [ 148.535156, -5.965754 ], [ 148.535156, -5.790897 ], [ 148.359375, -5.790897 ], [ 148.359375, -5.441022 ], [ 148.710938, -5.441022 ], [ 148.710938, -5.615986 ], [ 149.589844, -5.615986 ], [ 149.589844, -5.441022 ], [ 149.765625, -5.441022 ], [ 149.765625, -5.266008 ], [ 149.941406, -5.266008 ], [ 149.941406, -5.090944 ], [ 150.117188, -5.090944 ], [ 150.117188, -5.266008 ], [ 150.292969, -5.266008 ], [ 150.292969, -5.615986 ], [ 150.644531, -5.615986 ], [ 150.644531, -5.441022 ], [ 150.996094, -5.441022 ], [ 150.996094, -5.266008 ], [ 151.171875, -5.266008 ], [ 151.171875, -5.090944 ], [ 151.347656, -5.090944 ], [ 151.347656, -4.915833 ], [ 151.699219, -4.915833 ], [ 151.699219, -4.565474 ], [ 151.523438, -4.565474 ], [ 151.523438, -4.214943 ], [ 152.050781, -4.214943 ] ] ], [ [ [ 154.687500, -5.090944 ], [ 154.687500, -5.441022 ], [ 154.863281, -5.441022 ], [ 154.863281, -5.615986 ], [ 155.039062, -5.615986 ], [ 155.039062, -5.790897 ], [ 155.214844, -5.790897 ], [ 155.214844, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.140555 ], [ 155.566406, -6.140555 ], [ 155.566406, -6.315299 ], [ 155.917969, -6.315299 ], [ 155.917969, -6.489983 ], [ 156.093750, -6.489983 ], [ 156.093750, -6.664608 ], [ 155.917969, -6.664608 ], [ 155.917969, -6.839170 ], [ 155.390625, -6.839170 ], [ 155.390625, -6.664608 ], [ 155.214844, -6.664608 ], [ 155.214844, -6.489983 ], [ 155.039062, -6.489983 ], [ 155.039062, -6.315299 ], [ 154.863281, -6.315299 ], [ 154.863281, -6.140555 ], [ 154.687500, -6.140555 ], [ 154.687500, -5.615986 ], [ 154.511719, -5.615986 ], [ 154.511719, -5.090944 ], [ 154.687500, -5.090944 ] ] ], [ [ [ 151.347656, -2.635789 ], [ 151.347656, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -2.986927 ], [ 151.875000, -2.986927 ], [ 151.875000, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.337954 ], [ 152.402344, -3.337954 ], [ 152.402344, -3.688855 ], [ 152.578125, -3.688855 ], [ 152.578125, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.039618 ], [ 153.105469, -4.039618 ], [ 153.105469, -4.740675 ], [ 152.753906, -4.740675 ], [ 152.753906, -4.565474 ], [ 152.578125, -4.565474 ], [ 152.578125, -4.039618 ], [ 152.402344, -4.039618 ], [ 152.402344, -3.864255 ], [ 152.226562, -3.864255 ], [ 152.226562, -3.688855 ], [ 151.875000, -3.688855 ], [ 151.875000, -3.513421 ], [ 151.699219, -3.513421 ], [ 151.699219, -3.337954 ], [ 151.523438, -3.337954 ], [ 151.523438, -3.162456 ], [ 151.347656, -3.162456 ], [ 151.347656, -2.986927 ], [ 150.820312, -2.986927 ], [ 150.820312, -2.635789 ], [ 151.347656, -2.635789 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.152344, -2.460181 ], [ 141.152344, -2.635789 ], [ 141.503906, -2.635789 ], [ 141.503906, -2.811371 ], [ 142.031250, -2.811371 ], [ 142.031250, -2.986927 ], [ 142.382812, -2.986927 ], [ 142.382812, -3.162456 ], [ 142.910156, -3.162456 ], [ 142.910156, -3.337954 ], [ 143.437500, -3.337954 ], [ 143.437500, -3.513421 ], [ 144.140625, -3.513421 ], [ 144.140625, -3.688855 ], [ 144.492188, -3.688855 ], [ 144.492188, -3.864255 ], [ 144.667969, -3.864255 ], [ 144.667969, -4.039618 ], [ 145.019531, -4.039618 ], [ 145.019531, -4.214943 ], [ 145.195312, -4.214943 ], [ 145.195312, -4.390229 ], [ 145.371094, -4.390229 ], [ 145.371094, -4.565474 ], [ 145.546875, -4.565474 ], [ 145.546875, -4.740675 ], [ 145.722656, -4.740675 ], [ 145.722656, -5.090944 ], [ 145.898438, -5.090944 ], [ 145.898438, -5.441022 ], [ 146.074219, -5.441022 ], [ 146.074219, -5.615986 ], [ 146.601562, -5.615986 ], [ 146.601562, -5.790897 ], [ 147.128906, -5.790897 ], [ 147.128906, -5.965754 ], [ 147.480469, -5.965754 ], [ 147.480469, -6.140555 ], [ 147.656250, -6.140555 ], [ 147.656250, -6.489983 ], [ 147.480469, -6.489983 ], [ 147.480469, -6.664608 ], [ 146.953125, -6.664608 ], [ 146.953125, -7.013668 ], [ 147.128906, -7.013668 ], [ 147.128906, -7.536764 ], [ 147.480469, -7.536764 ], [ 147.480469, -7.710992 ], [ 147.832031, -7.710992 ], [ 147.832031, -7.885147 ], [ 148.007812, -7.885147 ], [ 148.007812, -8.059230 ], [ 148.183594, -8.059230 ], [ 148.183594, -8.407168 ], [ 148.359375, -8.407168 ], [ 148.359375, -8.754795 ], [ 148.535156, -8.754795 ], [ 148.535156, -9.102097 ], [ 149.062500, -9.102097 ], [ 149.062500, -8.928487 ], [ 149.238281, -8.928487 ], [ 149.238281, -9.449062 ], [ 149.414062, -9.449062 ], [ 149.414062, -9.622414 ], [ 149.941406, -9.622414 ], [ 149.941406, -9.795678 ], [ 149.765625, -9.795678 ], [ 149.765625, -9.968851 ], [ 150.292969, -9.968851 ], [ 150.292969, -10.141932 ], [ 150.644531, -10.141932 ], [ 150.644531, -10.487812 ], [ 149.765625, -10.487812 ], [ 149.765625, -10.314919 ], [ 149.238281, -10.314919 ], [ 149.238281, -10.141932 ], [ 148.183594, -10.141932 ], [ 148.183594, -9.968851 ], [ 147.656250, -9.968851 ], [ 147.656250, -9.795678 ], [ 147.304688, -9.795678 ], [ 147.304688, -9.622414 ], [ 147.128906, -9.622414 ], [ 147.128906, -9.449062 ], [ 146.953125, -9.449062 ], [ 146.953125, -9.275622 ], [ 146.601562, -9.275622 ], [ 146.601562, -9.102097 ], [ 146.425781, -9.102097 ], [ 146.425781, -8.928487 ], [ 146.250000, -8.928487 ], [ 146.250000, -8.581021 ], [ 146.074219, -8.581021 ], [ 146.074219, -8.233237 ], [ 145.898438, -8.233237 ], [ 145.898438, -8.059230 ], [ 145.546875, -8.059230 ], [ 145.546875, -7.885147 ], [ 145.195312, -7.885147 ], [ 145.195312, -7.710992 ], [ 144.843750, -7.710992 ], [ 144.843750, -7.536764 ], [ 144.492188, -7.536764 ], [ 144.492188, -7.710992 ], [ 144.140625, -7.710992 ], [ 144.140625, -7.885147 ], [ 143.789062, -7.885147 ], [ 143.789062, -8.059230 ], [ 143.437500, -8.059230 ], [ 143.437500, -8.233237 ], [ 143.261719, -8.233237 ], [ 143.261719, -9.102097 ], [ 142.910156, -9.102097 ], [ 142.910156, -9.275622 ], [ 142.207031, -9.275622 ], [ 142.207031, -9.102097 ], [ 140.976562, -9.102097 ], [ 140.976562, -2.460181 ], [ 141.152344, -2.460181 ] ] ], [ [ [ 152.050781, -4.039618 ], [ 152.050781, -4.214943 ], [ 152.226562, -4.214943 ], [ 152.226562, -4.915833 ], [ 152.050781, -4.915833 ], [ 152.050781, -5.266008 ], [ 151.875000, -5.266008 ], [ 151.875000, -5.441022 ], [ 151.347656, -5.441022 ], [ 151.347656, -5.615986 ], [ 151.171875, -5.615986 ], [ 151.171875, -5.790897 ], [ 150.996094, -5.790897 ], [ 150.996094, -5.965754 ], [ 150.644531, -5.965754 ], [ 150.644531, -6.140555 ], [ 150.292969, -6.140555 ], [ 150.292969, -6.315299 ], [ 149.238281, -6.315299 ], [ 149.238281, -6.140555 ], [ 148.886719, -6.140555 ], [ 148.886719, -5.965754 ], [ 148.535156, -5.965754 ], [ 148.535156, -5.790897 ], [ 148.183594, -5.790897 ], [ 148.183594, -5.441022 ], [ 148.359375, -5.441022 ], [ 148.359375, -5.266008 ], [ 148.710938, -5.266008 ], [ 148.710938, -5.441022 ], [ 149.765625, -5.441022 ], [ 149.765625, -5.266008 ], [ 149.941406, -5.266008 ], [ 149.941406, -4.915833 ], [ 150.117188, -4.915833 ], [ 150.117188, -5.441022 ], [ 150.820312, -5.441022 ], [ 150.820312, -5.266008 ], [ 150.996094, -5.266008 ], [ 150.996094, -5.090944 ], [ 151.171875, -5.090944 ], [ 151.171875, -4.915833 ], [ 151.523438, -4.915833 ], [ 151.523438, -4.039618 ], [ 152.050781, -4.039618 ] ] ], [ [ [ 154.687500, -5.441022 ], [ 155.039062, -5.441022 ], [ 155.039062, -5.615986 ], [ 155.214844, -5.615986 ], [ 155.214844, -5.965754 ], [ 155.390625, -5.965754 ], [ 155.390625, -6.315299 ], [ 155.742188, -6.315299 ], [ 155.742188, -6.489983 ], [ 155.917969, -6.489983 ], [ 155.917969, -6.664608 ], [ 155.742188, -6.664608 ], [ 155.742188, -6.839170 ], [ 155.390625, -6.839170 ], [ 155.390625, -6.664608 ], [ 155.039062, -6.664608 ], [ 155.039062, -6.315299 ], [ 154.863281, -6.315299 ], [ 154.863281, -5.965754 ], [ 154.687500, -5.965754 ], [ 154.687500, -5.441022 ] ] ], [ [ [ 150.996094, -2.460181 ], [ 150.996094, -2.635789 ], [ 151.347656, -2.635789 ], [ 151.347656, -2.811371 ], [ 151.523438, -2.811371 ], [ 151.523438, -2.986927 ], [ 151.875000, -2.986927 ], [ 151.875000, -3.162456 ], [ 152.226562, -3.162456 ], [ 152.226562, -3.337954 ], [ 152.402344, -3.337954 ], [ 152.402344, -3.513421 ], [ 152.578125, -3.513421 ], [ 152.578125, -3.688855 ], [ 152.753906, -3.688855 ], [ 152.753906, -3.864255 ], [ 152.929688, -3.864255 ], [ 152.929688, -4.214943 ], [ 153.105469, -4.214943 ], [ 153.105469, -4.565474 ], [ 152.929688, -4.565474 ], [ 152.929688, -4.740675 ], [ 152.753906, -4.740675 ], [ 152.753906, -4.390229 ], [ 152.578125, -4.390229 ], [ 152.578125, -3.864255 ], [ 152.402344, -3.864255 ], [ 152.402344, -3.688855 ], [ 152.226562, -3.688855 ], [ 152.226562, -3.513421 ], [ 151.875000, -3.513421 ], [ 151.875000, -3.337954 ], [ 151.699219, -3.337954 ], [ 151.699219, -3.162456 ], [ 151.347656, -3.162456 ], [ 151.347656, -2.986927 ], [ 150.996094, -2.986927 ], [ 150.996094, -2.811371 ], [ 150.644531, -2.811371 ], [ 150.644531, -2.635789 ], [ 150.820312, -2.635789 ], [ 150.820312, -2.460181 ], [ 150.996094, -2.460181 ] ] ], [ [ [ 154.687500, -5.441022 ], [ 154.511719, -5.441022 ], [ 154.511719, -5.090944 ], [ 154.687500, -5.090944 ], [ 154.687500, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.718750, -10.314919 ], [ 161.718750, -10.487812 ], [ 162.070312, -10.487812 ], [ 162.070312, -10.660608 ], [ 162.246094, -10.660608 ], [ 162.246094, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.718750, -10.660608 ], [ 161.542969, -10.660608 ], [ 161.542969, -10.314919 ], [ 161.718750, -10.314919 ] ] ], [ [ [ 159.960938, -9.275622 ], [ 159.960938, -9.449062 ], [ 160.312500, -9.449062 ], [ 160.312500, -9.622414 ], [ 160.664062, -9.622414 ], [ 160.664062, -9.795678 ], [ 160.839844, -9.795678 ], [ 160.839844, -9.968851 ], [ 159.960938, -9.968851 ], [ 159.960938, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.449062 ], [ 159.785156, -9.449062 ], [ 159.785156, -9.275622 ], [ 159.960938, -9.275622 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 160.839844, -8.407168 ], [ 161.015625, -8.407168 ], [ 161.015625, -8.754795 ], [ 161.191406, -8.754795 ], [ 161.191406, -9.102097 ], [ 161.367188, -9.102097 ], [ 161.367188, -9.275622 ], [ 161.542969, -9.275622 ], [ 161.542969, -9.622414 ], [ 161.718750, -9.622414 ], [ 161.718750, -9.795678 ], [ 161.367188, -9.795678 ], [ 161.367188, -9.622414 ], [ 161.191406, -9.622414 ], [ 161.191406, -9.275622 ], [ 161.015625, -9.275622 ], [ 161.015625, -9.102097 ], [ 160.839844, -9.102097 ], [ 160.839844, -8.581021 ], [ 160.664062, -8.581021 ], [ 160.664062, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 159.785156, -8.407168 ], [ 159.433594, -8.407168 ], [ 159.433594, -8.233237 ], [ 159.082031, -8.233237 ], [ 159.082031, -8.059230 ], [ 158.906250, -8.059230 ], [ 158.906250, -7.885147 ], [ 158.554688, -7.885147 ], [ 158.554688, -7.710992 ], [ 158.378906, -7.710992 ], [ 158.378906, -7.536764 ], [ 158.203125, -7.536764 ], [ 158.203125, -7.362467 ], [ 158.554688, -7.362467 ], [ 158.554688, -7.536764 ], [ 158.906250, -7.536764 ], [ 158.906250, -7.710992 ], [ 159.082031, -7.710992 ], [ 159.082031, -7.885147 ], [ 159.433594, -7.885147 ], [ 159.433594, -8.059230 ], [ 159.609375, -8.059230 ], [ 159.609375, -8.233237 ], [ 159.785156, -8.233237 ], [ 159.785156, -8.407168 ] ] ], [ [ [ 156.972656, -6.839170 ], [ 156.972656, -7.013668 ], [ 157.148438, -7.013668 ], [ 157.148438, -7.188101 ], [ 157.324219, -7.188101 ], [ 157.324219, -7.362467 ], [ 156.972656, -7.362467 ], [ 156.972656, -7.188101 ], [ 156.796875, -7.188101 ], [ 156.796875, -7.013668 ], [ 156.445312, -7.013668 ], [ 156.445312, -6.839170 ], [ 156.972656, -6.839170 ] ] ], [ [ [ 159.785156, -8.407168 ], [ 159.960938, -8.407168 ], [ 159.960938, -8.581021 ], [ 159.785156, -8.581021 ], [ 159.785156, -8.407168 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.367188, -10.314919 ], [ 162.070312, -10.314919 ], [ 162.070312, -10.487812 ], [ 162.246094, -10.487812 ], [ 162.246094, -10.660608 ], [ 161.367188, -10.660608 ], [ 161.367188, -10.314919 ] ] ], [ [ [ 159.785156, -9.102097 ], [ 159.785156, -9.275622 ], [ 160.312500, -9.275622 ], [ 160.312500, -9.449062 ], [ 160.664062, -9.449062 ], [ 160.664062, -9.622414 ], [ 160.839844, -9.622414 ], [ 160.839844, -9.795678 ], [ 159.609375, -9.795678 ], [ 159.609375, -9.102097 ], [ 159.785156, -9.102097 ] ] ], [ [ [ 160.839844, -8.233237 ], [ 160.839844, -8.581021 ], [ 161.015625, -8.581021 ], [ 161.015625, -8.928487 ], [ 161.191406, -8.928487 ], [ 161.191406, -9.275622 ], [ 161.367188, -9.275622 ], [ 161.367188, -9.449062 ], [ 161.542969, -9.449062 ], [ 161.542969, -9.622414 ], [ 161.191406, -9.622414 ], [ 161.191406, -9.449062 ], [ 161.015625, -9.449062 ], [ 161.015625, -9.102097 ], [ 160.839844, -9.102097 ], [ 160.839844, -8.928487 ], [ 160.664062, -8.928487 ], [ 160.664062, -8.581021 ], [ 160.488281, -8.581021 ], [ 160.488281, -8.233237 ], [ 160.839844, -8.233237 ] ] ], [ [ [ 158.554688, -7.362467 ], [ 158.554688, -7.536764 ], [ 158.906250, -7.536764 ], [ 158.906250, -7.710992 ], [ 159.257812, -7.710992 ], [ 159.257812, -7.885147 ], [ 159.609375, -7.885147 ], [ 159.609375, -8.059230 ], [ 159.785156, -8.059230 ], [ 159.785156, -8.407168 ], [ 159.433594, -8.407168 ], [ 159.433594, -8.233237 ], [ 159.082031, -8.233237 ], [ 159.082031, -8.059230 ], [ 158.906250, -8.059230 ], [ 158.906250, -7.885147 ], [ 158.554688, -7.885147 ], [ 158.554688, -7.710992 ], [ 158.378906, -7.710992 ], [ 158.378906, -7.536764 ], [ 158.203125, -7.536764 ], [ 158.203125, -7.362467 ], [ 158.554688, -7.362467 ] ] ], [ [ [ 156.621094, -6.839170 ], [ 156.445312, -6.839170 ], [ 156.445312, -6.664608 ], [ 156.621094, -6.664608 ], [ 156.621094, -6.839170 ] ] ], [ [ [ 157.148438, -7.188101 ], [ 157.500000, -7.188101 ], [ 157.500000, -7.362467 ], [ 157.148438, -7.362467 ], [ 157.148438, -7.188101 ] ] ], [ [ [ 156.796875, -7.013668 ], [ 157.148438, -7.013668 ], [ 157.148438, -7.188101 ], [ 156.796875, -7.188101 ], [ 156.796875, -7.013668 ] ] ], [ [ [ 161.367188, -10.314919 ], [ 161.191406, -10.314919 ], [ 161.191406, -10.141932 ], [ 161.367188, -10.141932 ], [ 161.367188, -10.314919 ] ] ], [ [ [ 156.621094, -6.839170 ], [ 156.796875, -6.839170 ], [ 156.796875, -7.013668 ], [ 156.621094, -7.013668 ], [ 156.621094, -6.839170 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.343750, -16.299051 ], [ 167.695312, -16.299051 ], [ 167.695312, -16.467695 ], [ 167.871094, -16.467695 ], [ 167.871094, -16.636192 ], [ 167.343750, -16.636192 ], [ 167.343750, -16.299051 ] ] ], [ [ [ 166.992188, -14.774883 ], [ 166.992188, -14.944785 ], [ 167.167969, -14.944785 ], [ 167.167969, -15.453680 ], [ 167.343750, -15.453680 ], [ 167.343750, -15.792254 ], [ 166.992188, -15.792254 ], [ 166.992188, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.774883 ], [ 166.992188, -14.774883 ] ] ], [ [ [ 167.343750, -16.299051 ], [ 167.167969, -16.299051 ], [ 167.167969, -16.130262 ], [ 167.343750, -16.130262 ], [ 167.343750, -16.299051 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.343750, -15.961329 ], [ 167.343750, -16.130262 ], [ 167.519531, -16.130262 ], [ 167.519531, -16.467695 ], [ 167.343750, -16.467695 ], [ 167.343750, -16.299051 ], [ 167.167969, -16.299051 ], [ 167.167969, -15.961329 ], [ 167.343750, -15.961329 ] ] ], [ [ [ 166.640625, -14.604847 ], [ 166.640625, -14.774883 ], [ 166.992188, -14.774883 ], [ 166.992188, -15.284185 ], [ 167.167969, -15.284185 ], [ 167.167969, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.944785 ], [ 166.464844, -14.944785 ], [ 166.464844, -14.604847 ], [ 166.640625, -14.604847 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.531250, -20.138470 ], [ 164.531250, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.468189 ], [ 165.058594, -20.468189 ], [ 165.058594, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.797201 ], [ 165.410156, -20.797201 ], [ 165.410156, -20.961440 ], [ 165.585938, -20.961440 ], [ 165.585938, -21.125498 ], [ 165.761719, -21.125498 ], [ 165.761719, -21.289374 ], [ 165.937500, -21.289374 ], [ 165.937500, -21.453069 ], [ 166.289062, -21.453069 ], [ 166.289062, -21.616579 ], [ 166.464844, -21.616579 ], [ 166.464844, -21.779905 ], [ 166.640625, -21.779905 ], [ 166.640625, -21.943046 ], [ 166.992188, -21.943046 ], [ 166.992188, -22.105999 ], [ 167.167969, -22.105999 ], [ 167.167969, -22.268764 ], [ 166.992188, -22.268764 ], [ 166.992188, -22.431340 ], [ 166.464844, -22.431340 ], [ 166.464844, -22.268764 ], [ 166.113281, -22.268764 ], [ 166.113281, -22.105999 ], [ 165.937500, -22.105999 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.779905 ], [ 165.410156, -21.779905 ], [ 165.410156, -21.616579 ], [ 165.234375, -21.616579 ], [ 165.234375, -21.453069 ], [ 165.058594, -21.453069 ], [ 165.058594, -21.289374 ], [ 164.882812, -21.289374 ], [ 164.882812, -21.125498 ], [ 164.707031, -21.125498 ], [ 164.707031, -20.961440 ], [ 164.531250, -20.961440 ], [ 164.531250, -20.797201 ], [ 164.355469, -20.797201 ], [ 164.355469, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -20.303418 ], [ 164.003906, -20.303418 ], [ 164.003906, -20.138470 ], [ 164.531250, -20.138470 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.355469, -19.973349 ], [ 164.355469, -20.138470 ], [ 164.707031, -20.138470 ], [ 164.707031, -20.303418 ], [ 164.882812, -20.303418 ], [ 164.882812, -20.468189 ], [ 165.058594, -20.468189 ], [ 165.058594, -20.632784 ], [ 165.234375, -20.632784 ], [ 165.234375, -20.797201 ], [ 165.410156, -20.797201 ], [ 165.410156, -20.961440 ], [ 165.761719, -20.961440 ], [ 165.761719, -21.125498 ], [ 165.937500, -21.125498 ], [ 165.937500, -21.289374 ], [ 166.113281, -21.289374 ], [ 166.113281, -21.453069 ], [ 166.289062, -21.453069 ], [ 166.289062, -21.616579 ], [ 166.464844, -21.616579 ], [ 166.464844, -21.779905 ], [ 166.640625, -21.779905 ], [ 166.640625, -21.943046 ], [ 166.816406, -21.943046 ], [ 166.816406, -22.105999 ], [ 166.992188, -22.105999 ], [ 166.992188, -22.268764 ], [ 166.289062, -22.268764 ], [ 166.289062, -22.105999 ], [ 165.937500, -22.105999 ], [ 165.937500, -21.943046 ], [ 165.585938, -21.943046 ], [ 165.585938, -21.779905 ], [ 165.410156, -21.779905 ], [ 165.410156, -21.616579 ], [ 165.234375, -21.616579 ], [ 165.234375, -21.453069 ], [ 164.882812, -21.453069 ], [ 164.882812, -21.289374 ], [ 164.707031, -21.289374 ], [ 164.707031, -21.125498 ], [ 164.531250, -21.125498 ], [ 164.531250, -20.961440 ], [ 164.355469, -20.961440 ], [ 164.355469, -20.632784 ], [ 164.179688, -20.632784 ], [ 164.179688, -20.468189 ], [ 164.003906, -20.468189 ], [ 164.003906, -19.973349 ], [ 164.355469, -19.973349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.376809 ], [ 173.496094, -41.376809 ], [ 173.496094, -41.244772 ], [ 173.847656, -41.244772 ], [ 173.847656, -41.112469 ], [ 174.023438, -41.112469 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.979898 ], [ 172.265625, -40.979898 ], [ 172.265625, -40.847060 ], [ 172.441406, -40.847060 ], [ 172.441406, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 173.144531, -34.597042 ], [ 173.144531, -34.741612 ], [ 173.320312, -34.741612 ], [ 173.320312, -35.029996 ], [ 173.671875, -35.029996 ], [ 173.671875, -35.173808 ], [ 174.023438, -35.173808 ], [ 174.023438, -35.317366 ], [ 174.375000, -35.317366 ], [ 174.375000, -35.746512 ], [ 174.550781, -35.746512 ], [ 174.550781, -36.315125 ], [ 174.726562, -36.315125 ], [ 174.726562, -36.597889 ], [ 174.902344, -36.597889 ], [ 174.902344, -36.879621 ], [ 175.078125, -36.879621 ], [ 175.078125, -37.160317 ], [ 175.253906, -37.160317 ], [ 175.253906, -36.879621 ], [ 175.429688, -36.879621 ], [ 175.429688, -36.597889 ], [ 175.605469, -36.597889 ], [ 175.605469, -36.738884 ], [ 175.781250, -36.738884 ], [ 175.781250, -37.160317 ], [ 175.957031, -37.160317 ], [ 175.957031, -37.579413 ], [ 176.132812, -37.579413 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.857507 ], [ 177.011719, -37.857507 ], [ 177.011719, -37.996163 ], [ 177.539062, -37.996163 ], [ 177.539062, -37.857507 ], [ 177.890625, -37.857507 ], [ 177.890625, -37.718590 ], [ 178.066406, -37.718590 ], [ 178.066406, -37.579413 ], [ 178.242188, -37.579413 ], [ 178.242188, -37.718590 ], [ 178.593750, -37.718590 ], [ 178.593750, -37.996163 ], [ 178.417969, -37.996163 ], [ 178.417969, -38.410558 ], [ 178.242188, -38.410558 ], [ 178.242188, -38.822591 ], [ 178.066406, -38.822591 ], [ 178.066406, -39.095963 ], [ 177.890625, -39.095963 ], [ 177.890625, -39.232253 ], [ 177.363281, -39.232253 ], [ 177.363281, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.368279 ], [ 177.011719, -39.368279 ], [ 177.011719, -40.044438 ], [ 176.835938, -40.044438 ], [ 176.835938, -40.178873 ], [ 176.660156, -40.178873 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.253906, -41.640078 ], [ 175.253906, -41.508577 ], [ 175.078125, -41.508577 ], [ 175.078125, -41.376809 ], [ 174.726562, -41.376809 ], [ 174.726562, -41.112469 ], [ 174.902344, -41.112469 ], [ 174.902344, -40.847060 ], [ 175.078125, -40.847060 ], [ 175.078125, -40.580585 ], [ 175.253906, -40.580585 ], [ 175.253906, -40.313043 ], [ 175.078125, -40.313043 ], [ 175.078125, -40.044438 ], [ 174.902344, -40.044438 ], [ 174.902344, -39.909736 ], [ 174.550781, -39.909736 ], [ 174.550781, -39.774769 ], [ 174.199219, -39.774769 ], [ 174.199219, -39.639538 ], [ 173.847656, -39.639538 ], [ 173.847656, -39.095963 ], [ 174.199219, -39.095963 ], [ 174.199219, -38.959409 ], [ 174.550781, -38.959409 ], [ 174.550781, -38.410558 ], [ 174.726562, -38.410558 ], [ 174.726562, -37.300275 ], [ 174.550781, -37.300275 ], [ 174.550781, -37.020098 ], [ 174.375000, -37.020098 ], [ 174.375000, -36.597889 ], [ 174.199219, -36.597889 ], [ 174.199219, -36.456636 ], [ 174.023438, -36.456636 ], [ 174.023438, -36.315125 ], [ 173.847656, -36.315125 ], [ 173.847656, -36.173357 ], [ 173.671875, -36.173357 ], [ 173.671875, -35.889050 ], [ 173.496094, -35.889050 ], [ 173.496094, -35.746512 ], [ 173.320312, -35.746512 ], [ 173.320312, -35.603719 ], [ 173.144531, -35.603719 ], [ 173.144531, -35.317366 ], [ 172.968750, -35.317366 ], [ 172.968750, -35.029996 ], [ 172.792969, -35.029996 ], [ 172.792969, -34.741612 ], [ 172.617188, -34.741612 ], [ 172.617188, -34.597042 ], [ 173.144531, -34.597042 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.580585 ], [ 172.792969, -40.713956 ], [ 172.968750, -40.713956 ], [ 172.968750, -41.112469 ], [ 173.144531, -41.112469 ], [ 173.144531, -41.244772 ], [ 173.320312, -41.244772 ], [ 173.320312, -41.112469 ], [ 173.671875, -41.112469 ], [ 173.671875, -40.979898 ], [ 174.023438, -40.979898 ], [ 174.023438, -41.244772 ], [ 174.199219, -41.244772 ], [ 174.199219, -41.640078 ], [ 171.914062, -41.640078 ], [ 171.914062, -41.244772 ], [ 172.089844, -41.244772 ], [ 172.089844, -40.847060 ], [ 172.265625, -40.847060 ], [ 172.265625, -40.713956 ], [ 172.617188, -40.713956 ], [ 172.617188, -40.580585 ], [ 172.792969, -40.580585 ] ] ], [ [ [ 172.968750, -34.452218 ], [ 172.968750, -34.597042 ], [ 173.144531, -34.597042 ], [ 173.144531, -34.741612 ], [ 173.320312, -34.741612 ], [ 173.320312, -34.885931 ], [ 173.496094, -34.885931 ], [ 173.496094, -35.029996 ], [ 173.847656, -35.029996 ], [ 173.847656, -35.173808 ], [ 174.199219, -35.173808 ], [ 174.199219, -35.460670 ], [ 174.375000, -35.460670 ], [ 174.375000, -35.889050 ], [ 174.550781, -35.889050 ], [ 174.550781, -36.173357 ], [ 174.726562, -36.173357 ], [ 174.726562, -36.456636 ], [ 174.902344, -36.456636 ], [ 174.902344, -36.738884 ], [ 175.078125, -36.738884 ], [ 175.078125, -37.020098 ], [ 175.253906, -37.020098 ], [ 175.253906, -36.597889 ], [ 175.605469, -36.597889 ], [ 175.605469, -36.738884 ], [ 175.781250, -36.738884 ], [ 175.781250, -37.160317 ], [ 175.957031, -37.160317 ], [ 175.957031, -37.579413 ], [ 176.132812, -37.579413 ], [ 176.132812, -37.718590 ], [ 176.484375, -37.718590 ], [ 176.484375, -37.857507 ], [ 177.539062, -37.857507 ], [ 177.539062, -37.718590 ], [ 177.890625, -37.718590 ], [ 177.890625, -37.579413 ], [ 178.417969, -37.579413 ], [ 178.417969, -38.134557 ], [ 178.242188, -38.134557 ], [ 178.242188, -38.685510 ], [ 178.066406, -38.685510 ], [ 178.066406, -38.959409 ], [ 177.890625, -38.959409 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 177.187500, -39.232253 ], [ 177.011719, -39.232253 ], [ 177.011719, -39.368279 ], [ 176.835938, -39.368279 ], [ 176.835938, -39.639538 ], [ 177.011719, -39.639538 ], [ 177.011719, -39.909736 ], [ 176.835938, -39.909736 ], [ 176.835938, -40.178873 ], [ 176.660156, -40.178873 ], [ 176.660156, -40.446947 ], [ 176.484375, -40.446947 ], [ 176.484375, -40.713956 ], [ 176.308594, -40.713956 ], [ 176.308594, -40.979898 ], [ 176.132812, -40.979898 ], [ 176.132812, -41.244772 ], [ 175.957031, -41.244772 ], [ 175.957031, -41.376809 ], [ 175.781250, -41.376809 ], [ 175.781250, -41.508577 ], [ 175.429688, -41.508577 ], [ 175.429688, -41.640078 ], [ 175.078125, -41.640078 ], [ 175.078125, -41.508577 ], [ 174.902344, -41.508577 ], [ 174.902344, -41.376809 ], [ 174.550781, -41.376809 ], [ 174.550781, -41.112469 ], [ 174.726562, -41.112469 ], [ 174.726562, -40.847060 ], [ 174.902344, -40.847060 ], [ 174.902344, -40.580585 ], [ 175.078125, -40.580585 ], [ 175.078125, -40.178873 ], [ 174.902344, -40.178873 ], [ 174.902344, -39.909736 ], [ 174.550781, -39.909736 ], [ 174.550781, -39.774769 ], [ 174.199219, -39.774769 ], [ 174.199219, -39.639538 ], [ 173.847656, -39.639538 ], [ 173.847656, -39.504041 ], [ 173.671875, -39.504041 ], [ 173.671875, -39.368279 ], [ 173.847656, -39.368279 ], [ 173.847656, -39.095963 ], [ 174.023438, -39.095963 ], [ 174.023438, -38.959409 ], [ 174.375000, -38.959409 ], [ 174.375000, -38.822591 ], [ 174.550781, -38.822591 ], [ 174.550781, -38.410558 ], [ 174.726562, -38.410558 ], [ 174.726562, -37.718590 ], [ 174.550781, -37.718590 ], [ 174.550781, -37.160317 ], [ 174.375000, -37.160317 ], [ 174.375000, -36.879621 ], [ 174.199219, -36.879621 ], [ 174.199219, -36.456636 ], [ 174.023438, -36.456636 ], [ 174.023438, -36.315125 ], [ 173.847656, -36.315125 ], [ 173.847656, -36.173357 ], [ 173.671875, -36.173357 ], [ 173.671875, -36.031332 ], [ 173.496094, -36.031332 ], [ 173.496094, -35.746512 ], [ 173.320312, -35.746512 ], [ 173.320312, -35.603719 ], [ 173.144531, -35.603719 ], [ 173.144531, -35.317366 ], [ 172.968750, -35.317366 ], [ 172.968750, -35.029996 ], [ 172.792969, -35.029996 ], [ 172.792969, -34.741612 ], [ 172.617188, -34.741612 ], [ 172.617188, -34.452218 ], [ 172.968750, -34.452218 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.296875, 34.307144 ], [ 134.296875, 34.161818 ], [ 134.648438, 34.161818 ], [ 134.648438, 34.016242 ], [ 134.824219, 34.016242 ], [ 134.824219, 33.724340 ], [ 134.648438, 33.724340 ], [ 134.648438, 33.578015 ], [ 134.472656, 33.578015 ], [ 134.472656, 33.284620 ], [ 134.296875, 33.284620 ], [ 134.296875, 33.137551 ], [ 134.121094, 33.137551 ], [ 134.121094, 34.307144 ], [ 134.296875, 34.307144 ] ] ], [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.713956 ], [ 141.679688, 40.713956 ], [ 141.679688, 40.178873 ], [ 141.855469, 40.178873 ], [ 141.855469, 39.095963 ], [ 141.679688, 39.095963 ], [ 141.679688, 38.822591 ], [ 141.503906, 38.822591 ], [ 141.503906, 38.685510 ], [ 141.328125, 38.685510 ], [ 141.328125, 38.410558 ], [ 141.152344, 38.410558 ], [ 141.152344, 38.134557 ], [ 140.976562, 38.134557 ], [ 140.976562, 36.879621 ], [ 140.800781, 36.879621 ], [ 140.800781, 36.456636 ], [ 140.625000, 36.456636 ], [ 140.625000, 36.031332 ], [ 140.800781, 36.031332 ], [ 140.800781, 35.746512 ], [ 140.625000, 35.746512 ], [ 140.625000, 35.460670 ], [ 140.449219, 35.460670 ], [ 140.449219, 35.173808 ], [ 140.273438, 35.173808 ], [ 140.273438, 35.029996 ], [ 139.921875, 35.029996 ], [ 139.921875, 34.885931 ], [ 139.570312, 34.885931 ], [ 139.570312, 34.741612 ], [ 139.218750, 34.741612 ], [ 139.218750, 34.597042 ], [ 137.285156, 34.597042 ], [ 137.285156, 34.452218 ], [ 137.109375, 34.452218 ], [ 137.109375, 34.307144 ], [ 136.933594, 34.307144 ], [ 136.933594, 34.161818 ], [ 136.757812, 34.161818 ], [ 136.757812, 34.016242 ], [ 136.582031, 34.016242 ], [ 136.582031, 33.870416 ], [ 136.406250, 33.870416 ], [ 136.406250, 33.724340 ], [ 136.230469, 33.724340 ], [ 136.230469, 33.578015 ], [ 136.054688, 33.578015 ], [ 136.054688, 33.431441 ], [ 135.703125, 33.431441 ], [ 135.703125, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.175781, 33.724340 ], [ 135.175781, 34.161818 ], [ 135.000000, 34.161818 ], [ 135.000000, 34.597042 ], [ 134.648438, 34.597042 ], [ 134.648438, 34.452218 ], [ 134.121094, 34.452218 ], [ 134.121094, 35.603719 ], [ 134.472656, 35.603719 ], [ 134.472656, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.351562, 35.603719 ], [ 135.351562, 35.460670 ], [ 135.703125, 35.460670 ], [ 135.703125, 35.603719 ], [ 135.878906, 35.603719 ], [ 135.878906, 35.889050 ], [ 136.054688, 35.889050 ], [ 136.054688, 36.173357 ], [ 136.230469, 36.173357 ], [ 136.230469, 36.456636 ], [ 136.406250, 36.456636 ], [ 136.406250, 36.738884 ], [ 136.582031, 36.738884 ], [ 136.582031, 37.020098 ], [ 136.757812, 37.020098 ], [ 136.757812, 37.160317 ], [ 136.933594, 37.160317 ], [ 136.933594, 37.020098 ], [ 137.285156, 37.020098 ], [ 137.285156, 36.879621 ], [ 137.636719, 36.879621 ], [ 137.636719, 37.020098 ], [ 137.812500, 37.020098 ], [ 137.812500, 37.160317 ], [ 137.988281, 37.160317 ], [ 137.988281, 37.300275 ], [ 138.339844, 37.300275 ], [ 138.339844, 37.439974 ], [ 138.515625, 37.439974 ], [ 138.515625, 37.579413 ], [ 138.691406, 37.579413 ], [ 138.691406, 37.718590 ], [ 138.867188, 37.718590 ], [ 138.867188, 37.857507 ], [ 139.042969, 37.857507 ], [ 139.042969, 37.996163 ], [ 139.218750, 37.996163 ], [ 139.218750, 38.134557 ], [ 139.394531, 38.134557 ], [ 139.394531, 38.410558 ], [ 139.570312, 38.410558 ], [ 139.570312, 38.685510 ], [ 139.746094, 38.685510 ], [ 139.746094, 38.959409 ], [ 139.921875, 38.959409 ], [ 139.921875, 39.232253 ], [ 140.097656, 39.232253 ], [ 140.097656, 40.044438 ], [ 139.921875, 40.044438 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 41.640078 ], [ 140.625000, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.472656, 34.161818 ], [ 134.472656, 34.016242 ], [ 134.648438, 34.016242 ], [ 134.648438, 33.724340 ], [ 134.472656, 33.724340 ], [ 134.472656, 33.578015 ], [ 134.296875, 33.578015 ], [ 134.296875, 33.284620 ], [ 134.121094, 33.284620 ], [ 134.121094, 34.161818 ], [ 134.472656, 34.161818 ] ] ], [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.713956 ], [ 141.679688, 40.713956 ], [ 141.679688, 40.178873 ], [ 141.855469, 40.178873 ], [ 141.855469, 39.095963 ], [ 141.679688, 39.095963 ], [ 141.679688, 38.959409 ], [ 141.503906, 38.959409 ], [ 141.503906, 38.822591 ], [ 141.328125, 38.822591 ], [ 141.328125, 38.548165 ], [ 141.152344, 38.548165 ], [ 141.152344, 38.410558 ], [ 140.976562, 38.410558 ], [ 140.976562, 38.272689 ], [ 140.800781, 38.272689 ], [ 140.800781, 37.718590 ], [ 140.976562, 37.718590 ], [ 140.976562, 37.020098 ], [ 140.800781, 37.020098 ], [ 140.800781, 36.738884 ], [ 140.625000, 36.738884 ], [ 140.625000, 36.456636 ], [ 140.449219, 36.456636 ], [ 140.449219, 36.173357 ], [ 140.625000, 36.173357 ], [ 140.625000, 35.746512 ], [ 140.449219, 35.746512 ], [ 140.449219, 35.460670 ], [ 140.273438, 35.460670 ], [ 140.273438, 35.173808 ], [ 139.921875, 35.173808 ], [ 139.921875, 35.029996 ], [ 139.570312, 35.029996 ], [ 139.570312, 34.885931 ], [ 139.218750, 34.885931 ], [ 139.218750, 34.741612 ], [ 137.109375, 34.741612 ], [ 137.109375, 34.597042 ], [ 136.933594, 34.597042 ], [ 136.933594, 34.452218 ], [ 136.757812, 34.452218 ], [ 136.757812, 34.307144 ], [ 136.582031, 34.307144 ], [ 136.582031, 34.161818 ], [ 136.406250, 34.161818 ], [ 136.406250, 34.016242 ], [ 136.230469, 34.016242 ], [ 136.230469, 33.870416 ], [ 136.054688, 33.870416 ], [ 136.054688, 33.724340 ], [ 135.878906, 33.724340 ], [ 135.878906, 33.578015 ], [ 135.351562, 33.578015 ], [ 135.351562, 33.724340 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.597042 ], [ 134.121094, 34.597042 ], [ 134.121094, 35.746512 ], [ 134.824219, 35.746512 ], [ 134.824219, 35.603719 ], [ 135.527344, 35.603719 ], [ 135.527344, 35.746512 ], [ 135.703125, 35.746512 ], [ 135.703125, 36.031332 ], [ 135.878906, 36.031332 ], [ 135.878906, 36.315125 ], [ 136.054688, 36.315125 ], [ 136.054688, 36.597889 ], [ 136.230469, 36.597889 ], [ 136.230469, 36.879621 ], [ 136.406250, 36.879621 ], [ 136.406250, 37.160317 ], [ 136.582031, 37.160317 ], [ 136.582031, 37.300275 ], [ 136.757812, 37.300275 ], [ 136.757812, 37.160317 ], [ 136.933594, 37.160317 ], [ 136.933594, 37.020098 ], [ 137.109375, 37.020098 ], [ 137.109375, 36.879621 ], [ 137.460938, 36.879621 ], [ 137.460938, 37.020098 ], [ 137.636719, 37.020098 ], [ 137.636719, 37.160317 ], [ 137.812500, 37.160317 ], [ 137.812500, 37.300275 ], [ 138.164062, 37.300275 ], [ 138.164062, 37.439974 ], [ 138.339844, 37.439974 ], [ 138.339844, 37.579413 ], [ 138.515625, 37.579413 ], [ 138.515625, 37.718590 ], [ 138.691406, 37.718590 ], [ 138.691406, 37.857507 ], [ 138.867188, 37.857507 ], [ 138.867188, 37.996163 ], [ 139.218750, 37.996163 ], [ 139.218750, 38.134557 ], [ 139.394531, 38.134557 ], [ 139.394531, 38.410558 ], [ 139.570312, 38.410558 ], [ 139.570312, 38.822591 ], [ 139.746094, 38.822591 ], [ 139.746094, 39.232253 ], [ 139.921875, 39.232253 ], [ 139.921875, 40.044438 ], [ 139.746094, 40.044438 ], [ 139.746094, 40.580585 ], [ 139.921875, 40.580585 ], [ 139.921875, 40.847060 ], [ 140.097656, 40.847060 ], [ 140.097656, 41.112469 ], [ 140.273438, 41.112469 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 65.072130 ], [ 180.000000, 64.923542 ], [ 179.824219, 64.923542 ], [ 179.824219, 64.848937 ], [ 179.648438, 64.848937 ], [ 179.648438, 64.774125 ], [ 179.296875, 64.774125 ], [ 179.296875, 64.699105 ], [ 179.121094, 64.699105 ], [ 179.121094, 64.623877 ], [ 178.945312, 64.623877 ], [ 178.945312, 64.548440 ], [ 177.890625, 64.548440 ], [ 177.890625, 64.623877 ], [ 177.363281, 64.623877 ], [ 177.363281, 64.548440 ], [ 177.539062, 64.548440 ], [ 177.539062, 64.396938 ], [ 177.714844, 64.396938 ], [ 177.714844, 64.320872 ], [ 177.890625, 64.320872 ], [ 177.890625, 64.244595 ], [ 178.066406, 64.244595 ], [ 178.066406, 64.091408 ], [ 178.242188, 64.091408 ], [ 178.242188, 63.937372 ], [ 178.417969, 63.937372 ], [ 178.417969, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.548552 ], [ 178.769531, 63.548552 ], [ 178.769531, 63.312683 ], [ 178.945312, 63.312683 ], [ 178.945312, 63.154355 ], [ 179.121094, 63.154355 ], [ 179.121094, 62.995158 ], [ 179.296875, 62.995158 ], [ 179.296875, 62.754726 ], [ 179.472656, 62.754726 ], [ 179.472656, 62.431074 ], [ 179.296875, 62.431074 ], [ 179.296875, 62.267923 ], [ 178.945312, 62.267923 ], [ 178.945312, 62.349609 ], [ 178.242188, 62.349609 ], [ 178.242188, 62.431074 ], [ 177.539062, 62.431074 ], [ 177.539062, 62.512318 ], [ 177.363281, 62.512318 ], [ 177.363281, 62.431074 ], [ 177.011719, 62.431074 ], [ 177.011719, 62.349609 ], [ 176.660156, 62.349609 ], [ 176.660156, 62.267923 ], [ 176.308594, 62.267923 ], [ 176.308594, 62.186014 ], [ 176.132812, 62.186014 ], [ 176.132812, 62.103883 ], [ 175.781250, 62.103883 ], [ 175.781250, 62.021528 ], [ 175.429688, 62.021528 ], [ 175.429688, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.856149 ], [ 174.726562, 61.856149 ], [ 174.726562, 61.773123 ], [ 174.199219, 61.773123 ], [ 174.199219, 61.689872 ], [ 173.671875, 61.689872 ], [ 173.671875, 61.606396 ], [ 173.496094, 61.606396 ], [ 173.496094, 61.522695 ], [ 173.320312, 61.522695 ], [ 173.320312, 61.438767 ], [ 173.144531, 61.438767 ], [ 173.144531, 61.354614 ], [ 172.968750, 61.354614 ], [ 172.968750, 61.270233 ], [ 172.792969, 61.270233 ], [ 172.792969, 61.185625 ], [ 172.617188, 61.185625 ], [ 172.617188, 61.100789 ], [ 172.441406, 61.100789 ], [ 172.441406, 61.015725 ], [ 172.265625, 61.015725 ], [ 172.265625, 60.930432 ], [ 172.089844, 60.930432 ], [ 172.089844, 60.844911 ], [ 171.914062, 60.844911 ], [ 171.914062, 60.759160 ], [ 171.738281, 60.759160 ], [ 171.738281, 60.673179 ], [ 171.562500, 60.673179 ], [ 171.562500, 60.586967 ], [ 171.210938, 60.586967 ], [ 171.210938, 60.500525 ], [ 171.035156, 60.500525 ], [ 171.035156, 60.413852 ], [ 170.859375, 60.413852 ], [ 170.859375, 60.326948 ], [ 170.683594, 60.326948 ], [ 170.683594, 60.152442 ], [ 170.507812, 60.152442 ], [ 170.507812, 59.977005 ], [ 170.332031, 59.977005 ], [ 170.332031, 59.888937 ], [ 170.156250, 59.888937 ], [ 170.156250, 59.977005 ], [ 169.980469, 59.977005 ], [ 169.980469, 60.064840 ], [ 169.804688, 60.064840 ], [ 169.804688, 60.152442 ], [ 169.628906, 60.152442 ], [ 169.628906, 60.239811 ], [ 169.453125, 60.239811 ], [ 169.453125, 60.326948 ], [ 169.277344, 60.326948 ], [ 169.277344, 60.413852 ], [ 169.101562, 60.413852 ], [ 169.101562, 60.500525 ], [ 168.574219, 60.500525 ], [ 168.574219, 60.413852 ], [ 168.222656, 60.413852 ], [ 168.222656, 60.326948 ], [ 168.046875, 60.326948 ], [ 168.046875, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.152442 ], [ 167.343750, 60.152442 ], [ 167.343750, 60.064840 ], [ 167.167969, 60.064840 ], [ 167.167969, 59.977005 ], [ 166.816406, 59.977005 ], [ 166.816406, 59.888937 ], [ 166.464844, 59.888937 ], [ 166.464844, 59.800634 ], [ 166.113281, 59.800634 ], [ 166.113281, 59.977005 ], [ 165.937500, 59.977005 ], [ 165.937500, 60.064840 ], [ 165.585938, 60.064840 ], [ 165.585938, 59.977005 ], [ 165.410156, 59.977005 ], [ 165.410156, 59.888937 ], [ 165.234375, 59.888937 ], [ 165.234375, 59.800634 ], [ 165.058594, 59.800634 ], [ 165.058594, 59.712097 ], [ 164.355469, 59.712097 ], [ 164.355469, 59.800634 ], [ 163.652344, 59.800634 ], [ 163.652344, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.534318 ], [ 163.300781, 59.534318 ], [ 163.300781, 59.085739 ], [ 163.125000, 59.085739 ], [ 163.125000, 58.904646 ], [ 162.949219, 58.904646 ], [ 162.949219, 58.813742 ], [ 162.773438, 58.813742 ], [ 162.773438, 58.722599 ], [ 162.597656, 58.722599 ], [ 162.597656, 58.539595 ], [ 162.421875, 58.539595 ], [ 162.421875, 58.447733 ], [ 162.246094, 58.447733 ], [ 162.246094, 58.263287 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.797944 ], [ 162.246094, 57.797944 ], [ 162.246094, 57.704147 ], [ 162.773438, 57.704147 ], [ 162.773438, 57.610107 ], [ 163.125000, 57.610107 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.875311 ], [ 161.894531, 55.875311 ], [ 161.894531, 55.478853 ], [ 161.718750, 55.478853 ], [ 161.718750, 55.178868 ], [ 161.894531, 55.178868 ], [ 161.894531, 54.977614 ], [ 162.070312, 54.977614 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.673831 ], [ 161.367188, 54.673831 ], [ 161.367188, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.470038 ], [ 160.664062, 54.470038 ], [ 160.664062, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 54.059388 ], [ 160.136719, 54.059388 ], [ 160.136719, 53.435719 ], [ 159.960938, 53.435719 ], [ 159.960938, 53.225768 ], [ 159.785156, 53.225768 ], [ 159.785156, 53.120405 ], [ 159.433594, 53.120405 ], [ 159.433594, 53.014783 ], [ 158.906250, 53.014783 ], [ 158.906250, 52.908902 ], [ 158.554688, 52.908902 ], [ 158.554688, 52.589701 ], [ 158.378906, 52.589701 ], [ 158.378906, 52.160455 ], [ 158.203125, 52.160455 ], [ 158.203125, 51.835778 ], [ 158.027344, 51.835778 ], [ 158.027344, 51.727028 ], [ 157.851562, 51.727028 ], [ 157.851562, 51.618017 ], [ 157.675781, 51.618017 ], [ 157.675781, 51.508742 ], [ 157.500000, 51.508742 ], [ 157.500000, 51.289406 ], [ 157.324219, 51.289406 ], [ 157.324219, 51.179343 ], [ 157.148438, 51.179343 ], [ 157.148438, 51.069017 ], [ 156.972656, 51.069017 ], [ 156.972656, 50.958427 ], [ 156.796875, 50.958427 ], [ 156.796875, 51.069017 ], [ 156.621094, 51.069017 ], [ 156.621094, 51.508742 ], [ 156.445312, 51.508742 ], [ 156.445312, 51.944265 ], [ 156.269531, 51.944265 ], [ 156.269531, 52.375599 ], [ 156.093750, 52.375599 ], [ 156.093750, 52.802761 ], [ 155.917969, 52.802761 ], [ 155.917969, 53.435719 ], [ 155.742188, 53.435719 ], [ 155.742188, 54.265224 ], [ 155.566406, 54.265224 ], [ 155.566406, 54.977614 ], [ 155.390625, 54.977614 ], [ 155.390625, 55.578345 ], [ 155.566406, 55.578345 ], [ 155.566406, 56.072035 ], [ 155.742188, 56.072035 ], [ 155.742188, 56.462490 ], [ 155.917969, 56.462490 ], [ 155.917969, 56.752723 ], [ 156.093750, 56.752723 ], [ 156.093750, 56.848972 ], [ 156.269531, 56.848972 ], [ 156.269531, 57.040730 ], [ 156.445312, 57.040730 ], [ 156.445312, 57.136239 ], [ 156.621094, 57.136239 ], [ 156.621094, 57.231503 ], [ 156.796875, 57.231503 ], [ 156.796875, 57.797944 ], [ 157.148438, 57.797944 ], [ 157.148438, 57.891497 ], [ 157.675781, 57.891497 ], [ 157.675781, 57.984808 ], [ 158.203125, 57.984808 ], [ 158.203125, 58.077876 ], [ 158.554688, 58.077876 ], [ 158.554688, 58.263287 ], [ 158.730469, 58.263287 ], [ 158.730469, 58.355630 ], [ 158.906250, 58.355630 ], [ 158.906250, 58.447733 ], [ 159.082031, 58.447733 ], [ 159.082031, 58.631217 ], [ 159.257812, 58.631217 ], [ 159.257812, 58.722599 ], [ 159.433594, 58.722599 ], [ 159.433594, 58.904646 ], [ 159.609375, 58.904646 ], [ 159.609375, 58.995311 ], [ 159.785156, 58.995311 ], [ 159.785156, 59.085739 ], [ 159.960938, 59.085739 ], [ 159.960938, 59.265881 ], [ 160.136719, 59.265881 ], [ 160.136719, 59.355596 ], [ 160.312500, 59.355596 ], [ 160.312500, 59.445075 ], [ 160.488281, 59.445075 ], [ 160.488281, 59.534318 ], [ 160.664062, 59.534318 ], [ 160.664062, 59.623325 ], [ 160.839844, 59.623325 ], [ 160.839844, 59.712097 ], [ 161.015625, 59.712097 ], [ 161.015625, 59.888937 ], [ 161.191406, 59.888937 ], [ 161.191406, 59.977005 ], [ 161.367188, 59.977005 ], [ 161.367188, 60.064840 ], [ 161.542969, 60.064840 ], [ 161.542969, 60.152442 ], [ 161.718750, 60.152442 ], [ 161.718750, 60.239811 ], [ 161.894531, 60.239811 ], [ 161.894531, 60.326948 ], [ 162.070312, 60.326948 ], [ 162.070312, 60.413852 ], [ 162.246094, 60.413852 ], [ 162.246094, 60.500525 ], [ 162.421875, 60.500525 ], [ 162.421875, 60.586967 ], [ 162.597656, 60.586967 ], [ 162.597656, 60.673179 ], [ 162.949219, 60.673179 ], [ 162.949219, 60.759160 ], [ 163.125000, 60.759160 ], [ 163.125000, 60.844911 ], [ 163.300781, 60.844911 ], [ 163.300781, 60.930432 ], [ 163.476562, 60.930432 ], [ 163.476562, 61.015725 ], [ 163.652344, 61.015725 ], [ 163.652344, 61.185625 ], [ 163.828125, 61.185625 ], [ 163.828125, 61.522695 ], [ 164.003906, 61.522695 ], [ 164.003906, 61.773123 ], [ 164.179688, 61.773123 ], [ 164.179688, 62.021528 ], [ 164.355469, 62.021528 ], [ 164.355469, 62.349609 ], [ 164.531250, 62.349609 ], [ 164.531250, 62.512318 ], [ 164.003906, 62.512318 ], [ 164.003906, 62.431074 ], [ 163.300781, 62.431074 ], [ 163.300781, 62.267923 ], [ 163.125000, 62.267923 ], [ 163.125000, 62.103883 ], [ 162.949219, 62.103883 ], [ 162.949219, 61.856149 ], [ 162.773438, 61.856149 ], [ 162.773438, 61.689872 ], [ 162.597656, 61.689872 ], [ 162.597656, 61.522695 ], [ 162.421875, 61.522695 ], [ 162.421875, 61.438767 ], [ 162.246094, 61.438767 ], [ 162.246094, 61.354614 ], [ 161.894531, 61.354614 ], [ 161.894531, 61.270233 ], [ 161.718750, 61.270233 ], [ 161.718750, 61.185625 ], [ 161.542969, 61.185625 ], [ 161.542969, 61.100789 ], [ 161.367188, 61.100789 ], [ 161.367188, 61.015725 ], [ 161.191406, 61.015725 ], [ 161.191406, 60.930432 ], [ 161.015625, 60.930432 ], [ 161.015625, 60.844911 ], [ 160.664062, 60.844911 ], [ 160.664062, 60.759160 ], [ 160.488281, 60.759160 ], [ 160.488281, 60.673179 ], [ 160.312500, 60.673179 ], [ 160.312500, 60.586967 ], [ 160.136719, 60.586967 ], [ 160.136719, 60.673179 ], [ 159.960938, 60.673179 ], [ 159.960938, 60.930432 ], [ 159.785156, 60.930432 ], [ 159.785156, 61.185625 ], [ 159.609375, 61.185625 ], [ 159.609375, 61.354614 ], [ 159.433594, 61.354614 ], [ 159.433594, 61.606396 ], [ 159.257812, 61.606396 ], [ 159.257812, 61.773123 ], [ 159.082031, 61.773123 ], [ 159.082031, 61.689872 ], [ 158.378906, 61.689872 ], [ 158.378906, 61.606396 ], [ 157.851562, 61.606396 ], [ 157.851562, 61.522695 ], [ 157.148438, 61.522695 ], [ 157.148438, 61.438767 ], [ 156.796875, 61.438767 ], [ 156.796875, 61.354614 ], [ 156.621094, 61.354614 ], [ 156.621094, 61.270233 ], [ 156.445312, 61.270233 ], [ 156.445312, 61.100789 ], [ 156.269531, 61.100789 ], [ 156.269531, 61.015725 ], [ 156.093750, 61.015725 ], [ 156.093750, 60.930432 ], [ 155.917969, 60.930432 ], [ 155.917969, 60.844911 ], [ 155.742188, 60.844911 ], [ 155.742188, 60.673179 ], [ 155.566406, 60.673179 ], [ 155.566406, 60.586967 ], [ 155.390625, 60.586967 ], [ 155.390625, 60.500525 ], [ 155.214844, 60.500525 ], [ 155.214844, 60.326948 ], [ 155.039062, 60.326948 ], [ 155.039062, 60.239811 ], [ 154.863281, 60.239811 ], [ 154.863281, 60.152442 ], [ 154.687500, 60.152442 ], [ 154.687500, 60.064840 ], [ 154.511719, 60.064840 ], [ 154.511719, 59.888937 ], [ 154.335938, 59.888937 ], [ 154.335938, 59.800634 ], [ 154.160156, 59.800634 ], [ 154.160156, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.511719, 59.534318 ], [ 154.511719, 59.445075 ], [ 154.687500, 59.445075 ], [ 154.687500, 59.355596 ], [ 154.863281, 59.355596 ], [ 154.863281, 59.175928 ], [ 154.687500, 59.175928 ], [ 154.687500, 59.085739 ], [ 153.984375, 59.085739 ], [ 153.984375, 58.995311 ], [ 153.281250, 58.995311 ], [ 153.281250, 58.904646 ], [ 152.226562, 58.904646 ], [ 152.226562, 58.813742 ], [ 151.347656, 58.813742 ], [ 151.347656, 59.534318 ], [ 150.468750, 59.534318 ], [ 150.468750, 59.623325 ], [ 149.765625, 59.623325 ], [ 149.765625, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.445075 ], [ 149.238281, 59.445075 ], [ 149.238281, 59.355596 ], [ 149.062500, 59.355596 ], [ 149.062500, 59.265881 ], [ 148.710938, 59.265881 ], [ 148.710938, 59.175928 ], [ 147.656250, 59.175928 ], [ 147.656250, 59.265881 ], [ 146.250000, 59.265881 ], [ 146.250000, 59.355596 ], [ 145.195312, 59.355596 ], [ 145.195312, 59.265881 ], [ 144.316406, 59.265881 ], [ 144.316406, 59.175928 ], [ 143.613281, 59.175928 ], [ 143.613281, 59.085739 ], [ 142.734375, 59.085739 ], [ 142.734375, 58.995311 ], [ 142.207031, 58.995311 ], [ 142.207031, 58.904646 ], [ 142.031250, 58.904646 ], [ 142.031250, 58.813742 ], [ 141.855469, 58.813742 ], [ 141.855469, 58.722599 ], [ 141.679688, 58.722599 ], [ 141.679688, 58.539595 ], [ 141.503906, 58.539595 ], [ 141.503906, 58.447733 ], [ 141.328125, 58.447733 ], [ 141.328125, 58.355630 ], [ 141.152344, 58.355630 ], [ 141.152344, 58.263287 ], [ 140.976562, 58.263287 ], [ 140.976562, 58.170702 ], [ 140.800781, 58.170702 ], [ 140.800781, 58.077876 ], [ 140.625000, 58.077876 ], [ 140.625000, 57.891497 ], [ 140.449219, 57.891497 ], [ 140.449219, 57.797944 ], [ 140.273438, 57.797944 ], [ 140.273438, 57.704147 ], [ 140.097656, 57.704147 ], [ 140.097656, 57.610107 ], [ 139.921875, 57.610107 ], [ 139.921875, 57.515823 ], [ 139.746094, 57.515823 ], [ 139.746094, 57.421294 ], [ 139.570312, 57.421294 ], [ 139.570312, 57.231503 ], [ 139.394531, 57.231503 ], [ 139.394531, 57.136239 ], [ 139.218750, 57.136239 ], [ 139.218750, 57.040730 ], [ 139.042969, 57.040730 ], [ 139.042969, 56.944974 ], [ 138.867188, 56.944974 ], [ 138.867188, 56.848972 ], [ 138.691406, 56.848972 ], [ 138.691406, 56.752723 ], [ 138.515625, 56.752723 ], [ 138.515625, 56.656226 ], [ 138.339844, 56.656226 ], [ 138.339844, 56.559482 ], [ 138.164062, 56.559482 ], [ 138.164062, 56.462490 ], [ 137.988281, 56.462490 ], [ 137.988281, 56.365250 ], [ 137.812500, 56.365250 ], [ 137.812500, 56.267761 ], [ 137.636719, 56.267761 ], [ 137.636719, 56.170023 ], [ 137.460938, 56.170023 ], [ 137.460938, 56.072035 ], [ 137.285156, 56.072035 ], [ 137.285156, 55.973798 ], [ 137.109375, 55.973798 ], [ 137.109375, 55.776573 ], [ 136.933594, 55.776573 ], [ 136.933594, 55.677584 ], [ 136.757812, 55.677584 ], [ 136.757812, 55.578345 ], [ 136.582031, 55.578345 ], [ 136.582031, 55.478853 ], [ 136.406250, 55.478853 ], [ 136.406250, 55.379110 ], [ 136.230469, 55.379110 ], [ 136.230469, 55.279115 ], [ 136.054688, 55.279115 ], [ 136.054688, 55.178868 ], [ 135.878906, 55.178868 ], [ 135.878906, 55.078367 ], [ 135.703125, 55.078367 ], [ 135.703125, 54.977614 ], [ 135.527344, 54.977614 ], [ 135.527344, 54.876607 ], [ 135.351562, 54.876607 ], [ 135.351562, 54.775346 ], [ 135.527344, 54.775346 ], [ 135.527344, 54.673831 ], [ 136.230469, 54.673831 ], [ 136.230469, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.367759 ], [ 136.933594, 54.367759 ], [ 136.933594, 54.059388 ], [ 137.109375, 54.059388 ], [ 137.109375, 53.956086 ], [ 137.285156, 53.956086 ], [ 137.285156, 53.852527 ], [ 137.812500, 53.852527 ], [ 137.812500, 53.748711 ], [ 138.339844, 53.748711 ], [ 138.339844, 53.852527 ], [ 138.515625, 53.852527 ], [ 138.515625, 54.059388 ], [ 138.691406, 54.059388 ], [ 138.691406, 54.162434 ], [ 138.867188, 54.162434 ], [ 138.867188, 54.265224 ], [ 139.218750, 54.265224 ], [ 139.218750, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 54.059388 ], [ 140.097656, 54.059388 ], [ 140.097656, 53.956086 ], [ 140.273438, 53.956086 ], [ 140.273438, 53.748711 ], [ 140.449219, 53.748711 ], [ 140.449219, 53.644638 ], [ 140.625000, 53.644638 ], [ 140.625000, 53.540307 ], [ 140.800781, 53.540307 ], [ 140.800781, 53.435719 ], [ 140.976562, 53.435719 ], [ 140.976562, 53.225768 ], [ 141.152344, 53.225768 ], [ 141.152344, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.052490 ], [ 141.152344, 52.052490 ], [ 141.152344, 51.835778 ], [ 140.976562, 51.835778 ], [ 140.976562, 51.618017 ], [ 140.800781, 51.618017 ], [ 140.800781, 51.399206 ], [ 140.625000, 51.399206 ], [ 140.625000, 50.625073 ], [ 140.449219, 50.625073 ], [ 140.449219, 49.610710 ], [ 140.273438, 49.610710 ], [ 140.273438, 48.806863 ], [ 140.097656, 48.806863 ], [ 140.097656, 48.341646 ], [ 139.921875, 48.341646 ], [ 139.921875, 48.224673 ], [ 139.746094, 48.224673 ], [ 139.746094, 47.989922 ], [ 139.570312, 47.989922 ], [ 139.570312, 47.872144 ], [ 139.394531, 47.872144 ], [ 139.394531, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.517201 ], [ 139.042969, 47.517201 ], [ 139.042969, 47.398349 ], [ 138.867188, 47.398349 ], [ 138.867188, 47.279229 ], [ 138.691406, 47.279229 ], [ 138.691406, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.800059 ], [ 138.339844, 46.800059 ], [ 138.339844, 46.437857 ], [ 138.164062, 46.437857 ], [ 138.164062, 46.195042 ], [ 137.988281, 46.195042 ], [ 137.988281, 45.951150 ], [ 137.812500, 45.951150 ], [ 137.812500, 45.828799 ], [ 137.636719, 45.828799 ], [ 137.636719, 45.706179 ], [ 137.460938, 45.706179 ], [ 137.460938, 45.460131 ], [ 137.285156, 45.460131 ], [ 137.285156, 45.336702 ], [ 137.109375, 45.336702 ], [ 137.109375, 45.089036 ], [ 136.933594, 45.089036 ], [ 136.933594, 44.964798 ], [ 136.757812, 44.964798 ], [ 136.757812, 44.840291 ], [ 136.582031, 44.840291 ], [ 136.582031, 44.715514 ], [ 136.406250, 44.715514 ], [ 136.406250, 44.590467 ], [ 136.230469, 44.590467 ], [ 136.230469, 44.339565 ], [ 136.054688, 44.339565 ], [ 136.054688, 44.213710 ], [ 135.878906, 44.213710 ], [ 135.878906, 44.087585 ], [ 135.703125, 44.087585 ], [ 135.703125, 43.961191 ], [ 135.527344, 43.961191 ], [ 135.527344, 43.834527 ], [ 135.351562, 43.834527 ], [ 135.351562, 43.707594 ], [ 135.175781, 43.707594 ], [ 135.175781, 43.580391 ], [ 135.000000, 43.580391 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.648438, 43.325178 ], [ 134.648438, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 47.989922 ], [ 134.824219, 47.989922 ], [ 134.824219, 48.224673 ], [ 135.000000, 48.224673 ], [ 135.000000, 48.458352 ], [ 134.648438, 48.458352 ], [ 134.648438, 48.341646 ], [ 134.121094, 48.341646 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 65.946472 ], [ 180.527344, 65.946472 ], [ 180.527344, 65.874725 ], [ 180.175781, 65.874725 ], [ 180.175781, 65.730626 ], [ 180.351562, 65.730626 ], [ 180.351562, 65.512963 ], [ 180.527344, 65.512963 ], [ 180.527344, 65.366837 ], [ 180.351562, 65.366837 ], [ 180.351562, 65.219894 ], [ 180.175781, 65.219894 ], [ 180.175781, 65.072130 ], [ 180.000000, 65.072130 ] ] ], [ [ [ 142.734375, 54.367759 ], [ 142.734375, 54.059388 ], [ 142.910156, 54.059388 ], [ 142.910156, 53.435719 ], [ 143.085938, 53.435719 ], [ 143.085938, 52.908902 ], [ 143.261719, 52.908902 ], [ 143.261719, 51.399206 ], [ 143.437500, 51.399206 ], [ 143.437500, 50.958427 ], [ 143.613281, 50.958427 ], [ 143.613281, 50.513427 ], [ 143.789062, 50.513427 ], [ 143.789062, 50.289339 ], [ 143.964844, 50.289339 ], [ 143.964844, 49.951220 ], [ 144.140625, 49.951220 ], [ 144.140625, 49.610710 ], [ 144.316406, 49.610710 ], [ 144.316406, 49.382373 ], [ 144.492188, 49.382373 ], [ 144.492188, 49.037868 ], [ 144.667969, 49.037868 ], [ 144.667969, 48.922499 ], [ 144.316406, 48.922499 ], [ 144.316406, 49.037868 ], [ 143.789062, 49.037868 ], [ 143.789062, 49.152970 ], [ 143.437500, 49.152970 ], [ 143.437500, 49.267805 ], [ 143.261719, 49.267805 ], [ 143.261719, 49.037868 ], [ 143.085938, 49.037868 ], [ 143.085938, 48.690960 ], [ 142.910156, 48.690960 ], [ 142.910156, 48.341646 ], [ 142.734375, 48.341646 ], [ 142.734375, 47.989922 ], [ 142.558594, 47.989922 ], [ 142.558594, 47.754098 ], [ 142.734375, 47.754098 ], [ 142.734375, 47.517201 ], [ 142.910156, 47.517201 ], [ 142.910156, 47.398349 ], [ 143.085938, 47.398349 ], [ 143.085938, 47.159840 ], [ 143.261719, 47.159840 ], [ 143.261719, 47.040182 ], [ 143.437500, 47.040182 ], [ 143.437500, 46.800059 ], [ 143.613281, 46.800059 ], [ 143.613281, 46.437857 ], [ 143.437500, 46.437857 ], [ 143.437500, 46.195042 ], [ 143.261719, 46.195042 ], [ 143.261719, 46.316584 ], [ 143.085938, 46.316584 ], [ 143.085938, 46.558860 ], [ 142.910156, 46.558860 ], [ 142.910156, 46.679594 ], [ 142.558594, 46.679594 ], [ 142.558594, 46.437857 ], [ 142.382812, 46.437857 ], [ 142.382812, 46.195042 ], [ 142.207031, 46.195042 ], [ 142.207031, 45.951150 ], [ 142.031250, 45.951150 ], [ 142.031250, 46.316584 ], [ 141.855469, 46.316584 ], [ 141.855469, 47.279229 ], [ 142.031250, 47.279229 ], [ 142.031250, 48.224673 ], [ 141.855469, 48.224673 ], [ 141.855469, 48.922499 ], [ 142.031250, 48.922499 ], [ 142.031250, 49.382373 ], [ 142.207031, 49.382373 ], [ 142.207031, 51.069017 ], [ 142.031250, 51.069017 ], [ 142.031250, 51.399206 ], [ 141.855469, 51.399206 ], [ 141.855469, 51.727028 ], [ 141.679688, 51.727028 ], [ 141.679688, 53.330873 ], [ 141.855469, 53.330873 ], [ 141.855469, 53.435719 ], [ 142.031250, 53.435719 ], [ 142.031250, 53.540307 ], [ 142.382812, 53.540307 ], [ 142.382812, 53.644638 ], [ 142.558594, 53.644638 ], [ 142.558594, 53.852527 ], [ 142.382812, 53.852527 ], [ 142.382812, 54.059388 ], [ 142.207031, 54.059388 ], [ 142.207031, 54.265224 ], [ 142.558594, 54.265224 ], [ 142.558594, 54.367759 ], [ 142.734375, 54.367759 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 66.018018 ], [ 180.527344, 66.018018 ], [ 180.527344, 65.946472 ], [ 180.175781, 65.946472 ], [ 180.175781, 65.874725 ], [ 180.000000, 65.874725 ], [ 180.000000, 65.802776 ], [ 180.175781, 65.802776 ], [ 180.175781, 65.658275 ], [ 180.351562, 65.658275 ], [ 180.351562, 65.512963 ], [ 180.527344, 65.512963 ], [ 180.527344, 65.366837 ], [ 180.351562, 65.366837 ], [ 180.351562, 65.219894 ], [ 180.175781, 65.219894 ], [ 180.175781, 65.072130 ], [ 180.000000, 65.072130 ], [ 180.000000, 64.997939 ], [ 179.824219, 64.997939 ], [ 179.824219, 64.923542 ], [ 179.648438, 64.923542 ], [ 179.648438, 64.848937 ], [ 179.472656, 64.848937 ], [ 179.472656, 64.774125 ], [ 179.121094, 64.774125 ], [ 179.121094, 64.699105 ], [ 178.945312, 64.699105 ], [ 178.945312, 64.623877 ], [ 178.769531, 64.623877 ], [ 178.769531, 64.548440 ], [ 177.890625, 64.548440 ], [ 177.890625, 64.623877 ], [ 177.363281, 64.623877 ], [ 177.363281, 64.548440 ], [ 177.539062, 64.548440 ], [ 177.539062, 64.396938 ], [ 177.714844, 64.396938 ], [ 177.714844, 64.320872 ], [ 177.890625, 64.320872 ], [ 177.890625, 64.244595 ], [ 178.066406, 64.244595 ], [ 178.066406, 64.091408 ], [ 178.242188, 64.091408 ], [ 178.242188, 63.937372 ], [ 178.417969, 63.937372 ], [ 178.417969, 63.704722 ], [ 178.593750, 63.704722 ], [ 178.593750, 63.391522 ], [ 178.769531, 63.391522 ], [ 178.769531, 63.233627 ], [ 178.945312, 63.233627 ], [ 178.945312, 63.154355 ], [ 179.121094, 63.154355 ], [ 179.121094, 62.995158 ], [ 179.296875, 62.995158 ], [ 179.296875, 62.754726 ], [ 179.472656, 62.754726 ], [ 179.472656, 62.512318 ], [ 179.296875, 62.512318 ], [ 179.296875, 62.349609 ], [ 178.769531, 62.349609 ], [ 178.769531, 62.431074 ], [ 178.066406, 62.431074 ], [ 178.066406, 62.512318 ], [ 177.539062, 62.512318 ], [ 177.539062, 62.593341 ], [ 177.363281, 62.593341 ], [ 177.363281, 62.512318 ], [ 177.011719, 62.512318 ], [ 177.011719, 62.431074 ], [ 176.835938, 62.431074 ], [ 176.835938, 62.349609 ], [ 176.484375, 62.349609 ], [ 176.484375, 62.267923 ], [ 176.132812, 62.267923 ], [ 176.132812, 62.186014 ], [ 175.957031, 62.186014 ], [ 175.957031, 62.103883 ], [ 175.605469, 62.103883 ], [ 175.605469, 62.021528 ], [ 175.429688, 62.021528 ], [ 175.429688, 61.938950 ], [ 175.078125, 61.938950 ], [ 175.078125, 61.856149 ], [ 174.726562, 61.856149 ], [ 174.726562, 61.773123 ], [ 174.199219, 61.773123 ], [ 174.199219, 61.689872 ], [ 173.671875, 61.689872 ], [ 173.671875, 61.606396 ], [ 173.496094, 61.606396 ], [ 173.496094, 61.522695 ], [ 173.320312, 61.522695 ], [ 173.320312, 61.438767 ], [ 173.144531, 61.438767 ], [ 173.144531, 61.354614 ], [ 172.792969, 61.354614 ], [ 172.792969, 61.270233 ], [ 172.617188, 61.270233 ], [ 172.617188, 61.185625 ], [ 172.441406, 61.185625 ], [ 172.441406, 61.100789 ], [ 172.265625, 61.100789 ], [ 172.265625, 61.015725 ], [ 172.089844, 61.015725 ], [ 172.089844, 60.930432 ], [ 171.914062, 60.930432 ], [ 171.914062, 60.844911 ], [ 171.738281, 60.844911 ], [ 171.738281, 60.759160 ], [ 171.562500, 60.759160 ], [ 171.562500, 60.673179 ], [ 171.210938, 60.673179 ], [ 171.210938, 60.586967 ], [ 171.035156, 60.586967 ], [ 171.035156, 60.500525 ], [ 170.859375, 60.500525 ], [ 170.859375, 60.413852 ], [ 170.683594, 60.413852 ], [ 170.683594, 60.239811 ], [ 170.507812, 60.239811 ], [ 170.507812, 59.977005 ], [ 170.332031, 59.977005 ], [ 170.332031, 59.888937 ], [ 170.156250, 59.888937 ], [ 170.156250, 59.977005 ], [ 169.980469, 59.977005 ], [ 169.980469, 60.064840 ], [ 169.804688, 60.064840 ], [ 169.804688, 60.152442 ], [ 169.628906, 60.152442 ], [ 169.628906, 60.239811 ], [ 169.277344, 60.239811 ], [ 169.277344, 60.326948 ], [ 169.101562, 60.326948 ], [ 169.101562, 60.413852 ], [ 168.925781, 60.413852 ], [ 168.925781, 60.500525 ], [ 168.398438, 60.500525 ], [ 168.398438, 60.413852 ], [ 168.222656, 60.413852 ], [ 168.222656, 60.326948 ], [ 167.871094, 60.326948 ], [ 167.871094, 60.239811 ], [ 167.695312, 60.239811 ], [ 167.695312, 60.152442 ], [ 167.343750, 60.152442 ], [ 167.343750, 60.064840 ], [ 166.992188, 60.064840 ], [ 166.992188, 59.977005 ], [ 166.816406, 59.977005 ], [ 166.816406, 59.888937 ], [ 166.464844, 59.888937 ], [ 166.464844, 59.800634 ], [ 166.113281, 59.800634 ], [ 166.113281, 59.977005 ], [ 165.937500, 59.977005 ], [ 165.937500, 60.152442 ], [ 165.585938, 60.152442 ], [ 165.585938, 60.064840 ], [ 165.410156, 60.064840 ], [ 165.410156, 59.977005 ], [ 165.058594, 59.977005 ], [ 165.058594, 59.888937 ], [ 164.882812, 59.888937 ], [ 164.882812, 59.800634 ], [ 164.003906, 59.800634 ], [ 164.003906, 59.888937 ], [ 163.476562, 59.888937 ], [ 163.476562, 59.712097 ], [ 163.300781, 59.712097 ], [ 163.300781, 59.355596 ], [ 163.125000, 59.355596 ], [ 163.125000, 59.175928 ], [ 162.949219, 59.175928 ], [ 162.949219, 58.995311 ], [ 162.773438, 58.995311 ], [ 162.773438, 58.904646 ], [ 162.597656, 58.904646 ], [ 162.597656, 58.722599 ], [ 162.421875, 58.722599 ], [ 162.421875, 58.539595 ], [ 162.246094, 58.539595 ], [ 162.246094, 58.447733 ], [ 162.070312, 58.447733 ], [ 162.070312, 58.263287 ], [ 161.894531, 58.263287 ], [ 161.894531, 57.891497 ], [ 162.070312, 57.891497 ], [ 162.070312, 57.797944 ], [ 162.773438, 57.797944 ], [ 162.773438, 57.704147 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.944974 ], [ 162.949219, 56.944974 ], [ 162.949219, 56.170023 ], [ 162.070312, 56.170023 ], [ 162.070312, 55.973798 ], [ 161.894531, 55.973798 ], [ 161.894531, 55.776573 ], [ 161.718750, 55.776573 ], [ 161.718750, 55.478853 ], [ 161.542969, 55.478853 ], [ 161.542969, 55.279115 ], [ 161.718750, 55.279115 ], [ 161.718750, 55.078367 ], [ 161.894531, 55.078367 ], [ 161.894531, 54.876607 ], [ 162.070312, 54.876607 ], [ 162.070312, 54.775346 ], [ 161.718750, 54.775346 ], [ 161.718750, 54.673831 ], [ 161.367188, 54.673831 ], [ 161.367188, 54.572062 ], [ 161.015625, 54.572062 ], [ 161.015625, 54.470038 ], [ 160.664062, 54.470038 ], [ 160.664062, 54.367759 ], [ 160.312500, 54.367759 ], [ 160.312500, 54.059388 ], [ 160.136719, 54.059388 ], [ 160.136719, 53.435719 ], [ 159.960938, 53.435719 ], [ 159.960938, 53.225768 ], [ 159.609375, 53.225768 ], [ 159.609375, 53.120405 ], [ 158.906250, 53.120405 ], [ 158.906250, 53.014783 ], [ 158.378906, 53.014783 ], [ 158.378906, 52.482780 ], [ 158.203125, 52.482780 ], [ 158.203125, 51.835778 ], [ 158.027344, 51.835778 ], [ 158.027344, 51.727028 ], [ 157.851562, 51.727028 ], [ 157.851562, 51.618017 ], [ 157.675781, 51.618017 ], [ 157.675781, 51.508742 ], [ 157.324219, 51.508742 ], [ 157.324219, 51.399206 ], [ 157.148438, 51.399206 ], [ 157.148438, 51.289406 ], [ 156.972656, 51.289406 ], [ 156.972656, 51.179343 ], [ 156.796875, 51.179343 ], [ 156.796875, 51.069017 ], [ 156.621094, 51.069017 ], [ 156.621094, 51.179343 ], [ 156.445312, 51.179343 ], [ 156.445312, 51.508742 ], [ 156.269531, 51.508742 ], [ 156.269531, 52.052490 ], [ 156.093750, 52.052490 ], [ 156.093750, 52.802761 ], [ 155.917969, 52.802761 ], [ 155.917969, 53.540307 ], [ 155.742188, 53.540307 ], [ 155.742188, 54.367759 ], [ 155.566406, 54.367759 ], [ 155.566406, 55.078367 ], [ 155.390625, 55.078367 ], [ 155.390625, 55.776573 ], [ 155.566406, 55.776573 ], [ 155.566406, 56.462490 ], [ 155.742188, 56.462490 ], [ 155.742188, 56.848972 ], [ 155.917969, 56.848972 ], [ 155.917969, 56.944974 ], [ 156.093750, 56.944974 ], [ 156.093750, 57.136239 ], [ 156.269531, 57.136239 ], [ 156.269531, 57.231503 ], [ 156.445312, 57.231503 ], [ 156.445312, 57.326521 ], [ 156.621094, 57.326521 ], [ 156.621094, 57.610107 ], [ 156.796875, 57.610107 ], [ 156.796875, 57.891497 ], [ 157.324219, 57.891497 ], [ 157.324219, 57.984808 ], [ 158.027344, 57.984808 ], [ 158.027344, 58.077876 ], [ 158.378906, 58.077876 ], [ 158.378906, 58.170702 ], [ 158.554688, 58.170702 ], [ 158.554688, 58.355630 ], [ 158.730469, 58.355630 ], [ 158.730469, 58.447733 ], [ 158.906250, 58.447733 ], [ 158.906250, 58.539595 ], [ 159.082031, 58.539595 ], [ 159.082031, 58.722599 ], [ 159.257812, 58.722599 ], [ 159.257812, 58.813742 ], [ 159.433594, 58.813742 ], [ 159.433594, 58.904646 ], [ 159.609375, 58.904646 ], [ 159.609375, 58.995311 ], [ 159.785156, 58.995311 ], [ 159.785156, 59.175928 ], [ 159.960938, 59.175928 ], [ 159.960938, 59.265881 ], [ 160.136719, 59.265881 ], [ 160.136719, 59.355596 ], [ 160.312500, 59.355596 ], [ 160.312500, 59.534318 ], [ 160.488281, 59.534318 ], [ 160.488281, 59.623325 ], [ 160.664062, 59.623325 ], [ 160.664062, 59.712097 ], [ 160.839844, 59.712097 ], [ 160.839844, 59.888937 ], [ 161.015625, 59.888937 ], [ 161.015625, 59.977005 ], [ 161.191406, 59.977005 ], [ 161.191406, 60.064840 ], [ 161.367188, 60.064840 ], [ 161.367188, 60.239811 ], [ 161.542969, 60.239811 ], [ 161.542969, 60.326948 ], [ 161.718750, 60.326948 ], [ 161.718750, 60.413852 ], [ 161.894531, 60.413852 ], [ 161.894531, 60.500525 ], [ 162.070312, 60.500525 ], [ 162.070312, 60.586967 ], [ 162.421875, 60.586967 ], [ 162.421875, 60.673179 ], [ 162.597656, 60.673179 ], [ 162.597656, 60.759160 ], [ 162.773438, 60.759160 ], [ 162.773438, 60.844911 ], [ 162.949219, 60.844911 ], [ 162.949219, 60.930432 ], [ 163.125000, 60.930432 ], [ 163.125000, 61.015725 ], [ 163.476562, 61.015725 ], [ 163.476562, 61.100789 ], [ 163.652344, 61.100789 ], [ 163.652344, 61.354614 ], [ 163.828125, 61.354614 ], [ 163.828125, 61.689872 ], [ 164.003906, 61.689872 ], [ 164.003906, 62.021528 ], [ 164.179688, 62.021528 ], [ 164.179688, 62.349609 ], [ 164.355469, 62.349609 ], [ 164.355469, 62.593341 ], [ 163.828125, 62.593341 ], [ 163.828125, 62.512318 ], [ 163.125000, 62.512318 ], [ 163.125000, 62.349609 ], [ 162.949219, 62.349609 ], [ 162.949219, 62.103883 ], [ 162.773438, 62.103883 ], [ 162.773438, 61.773123 ], [ 162.597656, 61.773123 ], [ 162.597656, 61.606396 ], [ 162.421875, 61.606396 ], [ 162.421875, 61.522695 ], [ 162.246094, 61.522695 ], [ 162.246094, 61.438767 ], [ 161.894531, 61.438767 ], [ 161.894531, 61.354614 ], [ 161.718750, 61.354614 ], [ 161.718750, 61.270233 ], [ 161.542969, 61.270233 ], [ 161.542969, 61.185625 ], [ 161.367188, 61.185625 ], [ 161.367188, 61.100789 ], [ 161.191406, 61.100789 ], [ 161.191406, 61.015725 ], [ 161.015625, 61.015725 ], [ 161.015625, 60.930432 ], [ 160.839844, 60.930432 ], [ 160.839844, 60.844911 ], [ 160.488281, 60.844911 ], [ 160.488281, 60.759160 ], [ 160.312500, 60.759160 ], [ 160.312500, 60.673179 ], [ 160.136719, 60.673179 ], [ 160.136719, 60.586967 ], [ 159.960938, 60.586967 ], [ 159.960938, 60.673179 ], [ 159.785156, 60.673179 ], [ 159.785156, 61.015725 ], [ 159.609375, 61.015725 ], [ 159.609375, 61.270233 ], [ 159.433594, 61.270233 ], [ 159.433594, 61.606396 ], [ 159.257812, 61.606396 ], [ 159.257812, 61.773123 ], [ 159.082031, 61.773123 ], [ 159.082031, 61.689872 ], [ 158.378906, 61.689872 ], [ 158.378906, 61.606396 ], [ 157.675781, 61.606396 ], [ 157.675781, 61.522695 ], [ 156.972656, 61.522695 ], [ 156.972656, 61.438767 ], [ 156.621094, 61.438767 ], [ 156.621094, 61.354614 ], [ 156.445312, 61.354614 ], [ 156.445312, 61.185625 ], [ 156.269531, 61.185625 ], [ 156.269531, 61.100789 ], [ 156.093750, 61.100789 ], [ 156.093750, 61.015725 ], [ 155.917969, 61.015725 ], [ 155.917969, 60.844911 ], [ 155.742188, 60.844911 ], [ 155.742188, 60.759160 ], [ 155.566406, 60.759160 ], [ 155.566406, 60.673179 ], [ 155.390625, 60.673179 ], [ 155.390625, 60.500525 ], [ 155.214844, 60.500525 ], [ 155.214844, 60.413852 ], [ 155.039062, 60.413852 ], [ 155.039062, 60.326948 ], [ 154.863281, 60.326948 ], [ 154.863281, 60.152442 ], [ 154.687500, 60.152442 ], [ 154.687500, 60.064840 ], [ 154.511719, 60.064840 ], [ 154.511719, 59.977005 ], [ 154.335938, 59.977005 ], [ 154.335938, 59.800634 ], [ 154.160156, 59.800634 ], [ 154.160156, 59.712097 ], [ 154.335938, 59.712097 ], [ 154.335938, 59.534318 ], [ 154.511719, 59.534318 ], [ 154.511719, 59.445075 ], [ 154.687500, 59.445075 ], [ 154.687500, 59.355596 ], [ 154.863281, 59.355596 ], [ 154.863281, 59.175928 ], [ 154.687500, 59.175928 ], [ 154.687500, 59.085739 ], [ 153.984375, 59.085739 ], [ 153.984375, 58.995311 ], [ 153.281250, 58.995311 ], [ 153.281250, 58.904646 ], [ 152.050781, 58.904646 ], [ 152.050781, 58.813742 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 150.644531, 59.534318 ], [ 150.644531, 59.623325 ], [ 149.941406, 59.623325 ], [ 149.941406, 59.712097 ], [ 149.765625, 59.712097 ], [ 149.765625, 59.623325 ], [ 149.589844, 59.623325 ], [ 149.589844, 59.534318 ], [ 149.414062, 59.534318 ], [ 149.414062, 59.445075 ], [ 149.062500, 59.445075 ], [ 149.062500, 59.355596 ], [ 148.886719, 59.355596 ], [ 148.886719, 59.265881 ], [ 148.710938, 59.265881 ], [ 148.710938, 59.175928 ], [ 147.656250, 59.175928 ], [ 147.656250, 59.265881 ], [ 146.074219, 59.265881 ], [ 146.074219, 59.355596 ], [ 144.843750, 59.355596 ], [ 144.843750, 59.265881 ], [ 143.789062, 59.265881 ], [ 143.789062, 59.175928 ], [ 142.734375, 59.175928 ], [ 142.734375, 59.085739 ], [ 142.031250, 59.085739 ], [ 142.031250, 58.995311 ], [ 141.855469, 58.995311 ], [ 141.855469, 58.904646 ], [ 141.679688, 58.904646 ], [ 141.679688, 58.813742 ], [ 141.503906, 58.813742 ], [ 141.503906, 58.631217 ], [ 141.328125, 58.631217 ], [ 141.328125, 58.539595 ], [ 141.152344, 58.539595 ], [ 141.152344, 58.447733 ], [ 140.976562, 58.447733 ], [ 140.976562, 58.355630 ], [ 140.800781, 58.355630 ], [ 140.800781, 58.263287 ], [ 140.625000, 58.263287 ], [ 140.625000, 58.170702 ], [ 140.449219, 58.170702 ], [ 140.449219, 57.984808 ], [ 140.273438, 57.984808 ], [ 140.273438, 57.891497 ], [ 140.097656, 57.891497 ], [ 140.097656, 57.797944 ], [ 139.921875, 57.797944 ], [ 139.921875, 57.704147 ], [ 139.746094, 57.704147 ], [ 139.746094, 57.610107 ], [ 139.570312, 57.610107 ], [ 139.570312, 57.515823 ], [ 139.394531, 57.515823 ], [ 139.394531, 57.326521 ], [ 139.218750, 57.326521 ], [ 139.218750, 57.231503 ], [ 139.042969, 57.231503 ], [ 139.042969, 57.136239 ], [ 138.867188, 57.136239 ], [ 138.867188, 57.040730 ], [ 138.691406, 57.040730 ], [ 138.691406, 56.944974 ], [ 138.515625, 56.944974 ], [ 138.515625, 56.848972 ], [ 138.339844, 56.848972 ], [ 138.339844, 56.752723 ], [ 138.164062, 56.752723 ], [ 138.164062, 56.656226 ], [ 137.988281, 56.656226 ], [ 137.988281, 56.559482 ], [ 137.812500, 56.559482 ], [ 137.812500, 56.365250 ], [ 137.636719, 56.365250 ], [ 137.636719, 56.267761 ], [ 137.460938, 56.267761 ], [ 137.460938, 56.170023 ], [ 137.285156, 56.170023 ], [ 137.285156, 56.072035 ], [ 137.109375, 56.072035 ], [ 137.109375, 55.973798 ], [ 136.933594, 55.973798 ], [ 136.933594, 55.875311 ], [ 136.757812, 55.875311 ], [ 136.757812, 55.776573 ], [ 136.582031, 55.776573 ], [ 136.582031, 55.677584 ], [ 136.406250, 55.677584 ], [ 136.406250, 55.578345 ], [ 136.230469, 55.578345 ], [ 136.230469, 55.478853 ], [ 136.054688, 55.478853 ], [ 136.054688, 55.379110 ], [ 135.878906, 55.379110 ], [ 135.878906, 55.178868 ], [ 135.703125, 55.178868 ], [ 135.703125, 55.078367 ], [ 135.527344, 55.078367 ], [ 135.527344, 54.977614 ], [ 135.351562, 54.977614 ], [ 135.351562, 54.876607 ], [ 135.175781, 54.876607 ], [ 135.175781, 54.775346 ], [ 135.703125, 54.775346 ], [ 135.703125, 54.673831 ], [ 136.582031, 54.673831 ], [ 136.582031, 54.572062 ], [ 136.757812, 54.572062 ], [ 136.757812, 54.367759 ], [ 136.933594, 54.367759 ], [ 136.933594, 54.162434 ], [ 137.109375, 54.162434 ], [ 137.109375, 54.059388 ], [ 137.285156, 54.059388 ], [ 137.285156, 53.956086 ], [ 137.812500, 53.956086 ], [ 137.812500, 53.852527 ], [ 138.339844, 53.852527 ], [ 138.339844, 54.059388 ], [ 138.515625, 54.059388 ], [ 138.515625, 54.162434 ], [ 138.691406, 54.162434 ], [ 138.691406, 54.265224 ], [ 139.746094, 54.265224 ], [ 139.746094, 54.162434 ], [ 139.921875, 54.162434 ], [ 139.921875, 54.059388 ], [ 140.097656, 54.059388 ], [ 140.097656, 53.852527 ], [ 140.273438, 53.852527 ], [ 140.273438, 53.748711 ], [ 140.449219, 53.748711 ], [ 140.449219, 53.644638 ], [ 140.625000, 53.644638 ], [ 140.625000, 53.540307 ], [ 140.800781, 53.540307 ], [ 140.800781, 53.435719 ], [ 140.976562, 53.435719 ], [ 140.976562, 53.225768 ], [ 141.152344, 53.225768 ], [ 141.152344, 53.120405 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.160455 ], [ 141.152344, 52.160455 ], [ 141.152344, 51.944265 ], [ 140.976562, 51.944265 ], [ 140.976562, 51.727028 ], [ 140.800781, 51.727028 ], [ 140.800781, 51.508742 ], [ 140.625000, 51.508742 ], [ 140.625000, 51.289406 ], [ 140.449219, 51.289406 ], [ 140.449219, 49.724479 ], [ 140.273438, 49.724479 ], [ 140.273438, 49.267805 ], [ 140.097656, 49.267805 ], [ 140.097656, 48.690960 ], [ 139.921875, 48.690960 ], [ 139.921875, 48.341646 ], [ 139.746094, 48.341646 ], [ 139.746094, 48.107431 ], [ 139.570312, 48.107431 ], [ 139.570312, 47.989922 ], [ 139.394531, 47.989922 ], [ 139.394531, 47.754098 ], [ 139.218750, 47.754098 ], [ 139.218750, 47.635784 ], [ 139.042969, 47.635784 ], [ 139.042969, 47.398349 ], [ 138.867188, 47.398349 ], [ 138.867188, 47.279229 ], [ 138.691406, 47.279229 ], [ 138.691406, 47.040182 ], [ 138.515625, 47.040182 ], [ 138.515625, 46.800059 ], [ 138.339844, 46.800059 ], [ 138.339844, 46.437857 ], [ 138.164062, 46.437857 ], [ 138.164062, 46.195042 ], [ 137.988281, 46.195042 ], [ 137.988281, 46.073231 ], [ 137.812500, 46.073231 ], [ 137.812500, 45.951150 ], [ 137.636719, 45.951150 ], [ 137.636719, 45.828799 ], [ 137.460938, 45.828799 ], [ 137.460938, 45.583290 ], [ 137.285156, 45.583290 ], [ 137.285156, 45.460131 ], [ 137.109375, 45.460131 ], [ 137.109375, 45.336702 ], [ 136.933594, 45.336702 ], [ 136.933594, 45.213004 ], [ 136.757812, 45.213004 ], [ 136.757812, 45.089036 ], [ 136.582031, 45.089036 ], [ 136.582031, 44.964798 ], [ 136.406250, 44.964798 ], [ 136.406250, 44.840291 ], [ 136.230469, 44.840291 ], [ 136.230469, 44.715514 ], [ 136.054688, 44.715514 ], [ 136.054688, 44.465151 ], [ 135.878906, 44.465151 ], [ 135.878906, 44.339565 ], [ 135.703125, 44.339565 ], [ 135.703125, 44.213710 ], [ 135.527344, 44.213710 ], [ 135.527344, 44.087585 ], [ 135.351562, 44.087585 ], [ 135.351562, 43.961191 ], [ 135.175781, 43.961191 ], [ 135.175781, 43.707594 ], [ 135.000000, 43.707594 ], [ 135.000000, 43.452919 ], [ 134.824219, 43.452919 ], [ 134.824219, 43.325178 ], [ 134.648438, 43.325178 ], [ 134.648438, 43.197167 ], [ 134.296875, 43.197167 ], [ 134.296875, 43.068888 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.279229 ], [ 134.296875, 47.279229 ], [ 134.296875, 47.517201 ], [ 134.472656, 47.517201 ], [ 134.472656, 47.754098 ], [ 134.648438, 47.754098 ], [ 134.648438, 48.107431 ], [ 134.824219, 48.107431 ], [ 134.824219, 48.341646 ], [ 135.000000, 48.341646 ], [ 135.000000, 48.574790 ], [ 134.824219, 48.574790 ], [ 134.824219, 48.458352 ], [ 134.472656, 48.458352 ], [ 134.472656, 48.341646 ], [ 134.121094, 48.341646 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.558594, 54.265224 ], [ 142.558594, 54.162434 ], [ 142.734375, 54.162434 ], [ 142.734375, 53.852527 ], [ 142.910156, 53.852527 ], [ 142.910156, 53.435719 ], [ 143.085938, 53.435719 ], [ 143.085938, 53.014783 ], [ 143.261719, 53.014783 ], [ 143.261719, 52.268157 ], [ 143.085938, 52.268157 ], [ 143.085938, 51.618017 ], [ 143.261719, 51.618017 ], [ 143.261719, 51.289406 ], [ 143.437500, 51.289406 ], [ 143.437500, 50.958427 ], [ 143.613281, 50.958427 ], [ 143.613281, 50.625073 ], [ 143.789062, 50.625073 ], [ 143.789062, 50.289339 ], [ 143.964844, 50.289339 ], [ 143.964844, 49.951220 ], [ 144.140625, 49.951220 ], [ 144.140625, 49.496675 ], [ 144.316406, 49.496675 ], [ 144.316406, 49.152970 ], [ 144.492188, 49.152970 ], [ 144.492188, 49.037868 ], [ 144.140625, 49.037868 ], [ 144.140625, 49.152970 ], [ 143.613281, 49.152970 ], [ 143.613281, 49.267805 ], [ 143.261719, 49.267805 ], [ 143.261719, 49.382373 ], [ 143.085938, 49.382373 ], [ 143.085938, 49.037868 ], [ 142.910156, 49.037868 ], [ 142.910156, 48.574790 ], [ 142.734375, 48.574790 ], [ 142.734375, 48.107431 ], [ 142.558594, 48.107431 ], [ 142.558594, 47.754098 ], [ 142.734375, 47.754098 ], [ 142.734375, 47.517201 ], [ 142.910156, 47.517201 ], [ 142.910156, 47.398349 ], [ 143.085938, 47.398349 ], [ 143.085938, 47.159840 ], [ 143.261719, 47.159840 ], [ 143.261719, 46.920255 ], [ 143.437500, 46.920255 ], [ 143.437500, 46.195042 ], [ 143.261719, 46.195042 ], [ 143.261719, 46.316584 ], [ 143.085938, 46.316584 ], [ 143.085938, 46.558860 ], [ 142.910156, 46.558860 ], [ 142.910156, 46.679594 ], [ 142.558594, 46.679594 ], [ 142.558594, 46.437857 ], [ 142.382812, 46.437857 ], [ 142.382812, 46.316584 ], [ 142.207031, 46.316584 ], [ 142.207031, 46.073231 ], [ 142.031250, 46.073231 ], [ 142.031250, 46.437857 ], [ 141.855469, 46.437857 ], [ 141.855469, 49.267805 ], [ 142.031250, 49.267805 ], [ 142.031250, 51.069017 ], [ 141.855469, 51.069017 ], [ 141.855469, 51.399206 ], [ 141.679688, 51.399206 ], [ 141.679688, 51.727028 ], [ 141.503906, 51.727028 ], [ 141.503906, 52.589701 ], [ 141.679688, 52.589701 ], [ 141.679688, 53.330873 ], [ 141.855469, 53.330873 ], [ 141.855469, 53.435719 ], [ 142.031250, 53.435719 ], [ 142.031250, 53.540307 ], [ 142.207031, 53.540307 ], [ 142.207031, 53.644638 ], [ 142.382812, 53.644638 ], [ 142.382812, 53.748711 ], [ 142.558594, 53.748711 ], [ 142.558594, 53.956086 ], [ 142.382812, 53.956086 ], [ 142.382812, 54.162434 ], [ 142.207031, 54.162434 ], [ 142.207031, 54.265224 ], [ 142.558594, 54.265224 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.458352 ], [ 135.000000, 48.224673 ], [ 134.824219, 48.224673 ], [ 134.824219, 47.989922 ], [ 134.648438, 47.989922 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 48.341646 ], [ 134.648438, 48.341646 ], [ 134.648438, 48.458352 ], [ 135.000000, 48.458352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.000000, 48.574790 ], [ 135.000000, 48.341646 ], [ 134.824219, 48.341646 ], [ 134.824219, 48.107431 ], [ 134.648438, 48.107431 ], [ 134.648438, 47.754098 ], [ 134.472656, 47.754098 ], [ 134.472656, 47.517201 ], [ 134.296875, 47.517201 ], [ 134.296875, 47.279229 ], [ 134.121094, 47.279229 ], [ 134.121094, 48.341646 ], [ 134.472656, 48.341646 ], [ 134.472656, 48.458352 ], [ 134.824219, 48.458352 ], [ 134.824219, 48.574790 ], [ 135.000000, 48.574790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.847060 ], [ 141.679688, 40.847060 ], [ 141.679688, 40.446947 ], [ 141.855469, 40.446947 ], [ 141.855469, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.921875, 40.713956 ], [ 140.097656, 40.713956 ], [ 140.097656, 40.979898 ], [ 140.273438, 40.979898 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 142.207031, 45.460131 ], [ 142.207031, 45.213004 ], [ 142.382812, 45.213004 ], [ 142.382812, 45.089036 ], [ 142.558594, 45.089036 ], [ 142.558594, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.715514 ], [ 142.910156, 44.715514 ], [ 142.910156, 44.465151 ], [ 143.261719, 44.465151 ], [ 143.261719, 44.339565 ], [ 143.613281, 44.339565 ], [ 143.613281, 44.213710 ], [ 143.964844, 44.213710 ], [ 143.964844, 44.087585 ], [ 144.316406, 44.087585 ], [ 144.316406, 43.961191 ], [ 144.843750, 43.961191 ], [ 144.843750, 44.087585 ], [ 145.195312, 44.087585 ], [ 145.195312, 44.213710 ], [ 145.371094, 44.213710 ], [ 145.371094, 43.834527 ], [ 145.546875, 43.834527 ], [ 145.546875, 43.325178 ], [ 145.371094, 43.325178 ], [ 145.371094, 43.197167 ], [ 145.019531, 43.197167 ], [ 145.019531, 43.068888 ], [ 144.492188, 43.068888 ], [ 144.492188, 42.940339 ], [ 144.140625, 42.940339 ], [ 144.140625, 42.811522 ], [ 143.964844, 42.811522 ], [ 143.964844, 42.553080 ], [ 143.789062, 42.553080 ], [ 143.789062, 42.423457 ], [ 143.613281, 42.423457 ], [ 143.613281, 42.293564 ], [ 143.437500, 42.293564 ], [ 143.437500, 42.032974 ], [ 143.085938, 42.032974 ], [ 143.085938, 42.163403 ], [ 142.734375, 42.163403 ], [ 142.734375, 42.293564 ], [ 142.382812, 42.293564 ], [ 142.382812, 42.423457 ], [ 142.031250, 42.423457 ], [ 142.031250, 42.553080 ], [ 141.679688, 42.553080 ], [ 141.679688, 42.423457 ], [ 141.503906, 42.423457 ], [ 141.503906, 42.163403 ], [ 141.328125, 42.163403 ], [ 141.328125, 41.771312 ], [ 141.152344, 41.771312 ], [ 141.152344, 41.640078 ], [ 140.625000, 41.640078 ], [ 140.625000, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.032974 ], [ 139.746094, 42.032974 ], [ 139.746094, 42.682435 ], [ 139.921875, 42.682435 ], [ 139.921875, 42.940339 ], [ 140.097656, 42.940339 ], [ 140.097656, 43.197167 ], [ 140.273438, 43.197167 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 141.328125, 43.580391 ], [ 141.503906, 43.580391 ], [ 141.503906, 44.339565 ], [ 141.679688, 44.339565 ], [ 141.679688, 44.840291 ], [ 141.855469, 44.840291 ], [ 141.855469, 45.336702 ], [ 142.031250, 45.336702 ], [ 142.031250, 45.460131 ], [ 142.207031, 45.460131 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.328125, 41.112469 ], [ 141.503906, 41.112469 ], [ 141.503906, 40.580585 ], [ 141.679688, 40.580585 ], [ 141.679688, 40.313043 ], [ 139.746094, 40.313043 ], [ 139.746094, 40.580585 ], [ 139.921875, 40.580585 ], [ 139.921875, 40.847060 ], [ 140.097656, 40.847060 ], [ 140.097656, 41.112469 ], [ 140.273438, 41.112469 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.244772 ], [ 140.976562, 41.376809 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 142.031250, 45.460131 ], [ 142.031250, 45.336702 ], [ 142.207031, 45.336702 ], [ 142.207031, 45.213004 ], [ 142.382812, 45.213004 ], [ 142.382812, 45.089036 ], [ 142.558594, 45.089036 ], [ 142.558594, 44.840291 ], [ 142.734375, 44.840291 ], [ 142.734375, 44.715514 ], [ 142.910156, 44.715514 ], [ 142.910156, 44.590467 ], [ 143.085938, 44.590467 ], [ 143.085938, 44.465151 ], [ 143.261719, 44.465151 ], [ 143.261719, 44.339565 ], [ 143.613281, 44.339565 ], [ 143.613281, 44.213710 ], [ 143.789062, 44.213710 ], [ 143.789062, 44.087585 ], [ 144.140625, 44.087585 ], [ 144.140625, 43.961191 ], [ 144.667969, 43.961191 ], [ 144.667969, 44.087585 ], [ 144.843750, 44.087585 ], [ 144.843750, 44.213710 ], [ 145.019531, 44.213710 ], [ 145.019531, 44.339565 ], [ 145.195312, 44.339565 ], [ 145.195312, 43.834527 ], [ 145.371094, 43.834527 ], [ 145.371094, 43.325178 ], [ 145.195312, 43.325178 ], [ 145.195312, 43.197167 ], [ 144.492188, 43.197167 ], [ 144.492188, 43.068888 ], [ 143.964844, 43.068888 ], [ 143.964844, 42.940339 ], [ 143.789062, 42.940339 ], [ 143.789062, 42.682435 ], [ 143.613281, 42.682435 ], [ 143.613281, 42.553080 ], [ 143.437500, 42.553080 ], [ 143.437500, 42.293564 ], [ 143.261719, 42.293564 ], [ 143.261719, 42.032974 ], [ 142.910156, 42.032974 ], [ 142.910156, 42.163403 ], [ 142.558594, 42.163403 ], [ 142.558594, 42.293564 ], [ 142.207031, 42.293564 ], [ 142.207031, 42.423457 ], [ 141.855469, 42.423457 ], [ 141.855469, 42.553080 ], [ 141.503906, 42.553080 ], [ 141.503906, 42.423457 ], [ 141.328125, 42.423457 ], [ 141.328125, 42.163403 ], [ 141.152344, 42.163403 ], [ 141.152344, 41.771312 ], [ 140.976562, 41.771312 ], [ 140.976562, 41.640078 ], [ 139.921875, 41.640078 ], [ 139.921875, 42.163403 ], [ 139.746094, 42.163403 ], [ 139.746094, 42.811522 ], [ 139.921875, 42.811522 ], [ 139.921875, 43.068888 ], [ 140.097656, 43.068888 ], [ 140.097656, 43.325178 ], [ 140.273438, 43.325178 ], [ 140.273438, 43.452919 ], [ 141.328125, 43.452919 ], [ 141.328125, 44.087585 ], [ 141.503906, 44.087585 ], [ 141.503906, 44.964798 ], [ 141.679688, 44.964798 ], [ 141.679688, 45.336702 ], [ 141.855469, 45.336702 ], [ 141.855469, 45.460131 ], [ 142.031250, 45.460131 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.625000, 72.867930 ], [ 140.625000, 72.816074 ], [ 141.328125, 72.816074 ], [ 141.328125, 72.764065 ], [ 142.031250, 72.764065 ], [ 142.031250, 72.711903 ], [ 142.734375, 72.711903 ], [ 142.734375, 72.659588 ], [ 143.437500, 72.659588 ], [ 143.437500, 72.607120 ], [ 144.140625, 72.607120 ], [ 144.140625, 72.554498 ], [ 144.843750, 72.554498 ], [ 144.843750, 72.501722 ], [ 145.546875, 72.501722 ], [ 145.546875, 72.448792 ], [ 146.250000, 72.448792 ], [ 146.250000, 72.395706 ], [ 146.953125, 72.395706 ], [ 146.953125, 72.342464 ], [ 147.656250, 72.342464 ], [ 147.656250, 72.289067 ], [ 148.359375, 72.289067 ], [ 148.359375, 72.235514 ], [ 149.062500, 72.235514 ], [ 149.062500, 72.181804 ], [ 149.414062, 72.181804 ], [ 149.414062, 72.073911 ], [ 149.589844, 72.073911 ], [ 149.589844, 71.965388 ], [ 149.765625, 71.965388 ], [ 149.765625, 71.856229 ], [ 149.941406, 71.856229 ], [ 149.941406, 71.746432 ], [ 150.117188, 71.746432 ], [ 150.117188, 71.635993 ], [ 150.292969, 71.635993 ], [ 150.292969, 71.524909 ], [ 150.468750, 71.524909 ], [ 150.468750, 71.469124 ], [ 150.644531, 71.469124 ], [ 150.644531, 71.413177 ], [ 150.996094, 71.413177 ], [ 150.996094, 71.357067 ], [ 151.171875, 71.357067 ], [ 151.171875, 71.300793 ], [ 151.347656, 71.300793 ], [ 151.347656, 71.244356 ], [ 151.523438, 71.244356 ], [ 151.523438, 71.187754 ], [ 151.699219, 71.187754 ], [ 151.699219, 71.130988 ], [ 151.875000, 71.130988 ], [ 151.875000, 71.074056 ], [ 152.050781, 71.074056 ], [ 152.050781, 71.016960 ], [ 152.402344, 71.016960 ], [ 152.402344, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.902268 ], [ 152.753906, 70.902268 ], [ 152.753906, 70.844673 ], [ 153.632812, 70.844673 ], [ 153.632812, 70.902268 ], [ 155.039062, 70.902268 ], [ 155.039062, 70.959697 ], [ 156.445312, 70.959697 ], [ 156.445312, 71.016960 ], [ 157.148438, 71.016960 ], [ 157.148438, 70.959697 ], [ 157.851562, 70.959697 ], [ 157.851562, 70.902268 ], [ 158.554688, 70.902268 ], [ 158.554688, 70.844673 ], [ 159.082031, 70.844673 ], [ 159.082031, 70.786910 ], [ 159.257812, 70.786910 ], [ 159.257812, 70.670881 ], [ 159.433594, 70.670881 ], [ 159.433594, 70.554179 ], [ 159.609375, 70.554179 ], [ 159.609375, 70.436799 ], [ 159.785156, 70.436799 ], [ 159.785156, 69.657086 ], [ 160.136719, 69.657086 ], [ 160.136719, 69.595890 ], [ 160.312500, 69.595890 ], [ 160.312500, 69.534518 ], [ 160.488281, 69.534518 ], [ 160.488281, 69.472969 ], [ 160.839844, 69.472969 ], [ 160.839844, 69.411242 ], [ 161.191406, 69.411242 ], [ 161.191406, 69.472969 ], [ 161.542969, 69.472969 ], [ 161.542969, 69.534518 ], [ 161.894531, 69.534518 ], [ 161.894531, 69.595890 ], [ 162.246094, 69.595890 ], [ 162.246094, 69.657086 ], [ 164.179688, 69.657086 ], [ 164.179688, 69.595890 ], [ 164.882812, 69.595890 ], [ 164.882812, 69.534518 ], [ 165.585938, 69.534518 ], [ 165.585938, 69.472969 ], [ 166.464844, 69.472969 ], [ 166.464844, 69.534518 ], [ 167.519531, 69.534518 ], [ 167.519531, 69.595890 ], [ 167.871094, 69.595890 ], [ 167.871094, 69.534518 ], [ 168.046875, 69.534518 ], [ 168.046875, 69.411242 ], [ 168.222656, 69.411242 ], [ 168.222656, 69.349339 ], [ 168.398438, 69.349339 ], [ 168.398438, 69.287257 ], [ 168.574219, 69.287257 ], [ 168.574219, 69.162558 ], [ 168.750000, 69.162558 ], [ 168.750000, 69.099940 ], [ 168.925781, 69.099940 ], [ 168.925781, 68.974164 ], [ 169.101562, 68.974164 ], [ 169.101562, 68.911005 ], [ 169.277344, 68.911005 ], [ 169.277344, 68.847665 ], [ 169.453125, 68.847665 ], [ 169.453125, 68.720441 ], [ 169.804688, 68.720441 ], [ 169.804688, 68.784144 ], [ 170.156250, 68.784144 ], [ 170.156250, 68.847665 ], [ 170.332031, 68.847665 ], [ 170.332031, 68.911005 ], [ 170.507812, 68.911005 ], [ 170.507812, 68.974164 ], [ 170.859375, 68.974164 ], [ 170.859375, 69.099940 ], [ 170.683594, 69.099940 ], [ 170.683594, 69.224997 ], [ 170.507812, 69.224997 ], [ 170.507812, 69.349339 ], [ 170.332031, 69.349339 ], [ 170.332031, 69.472969 ], [ 170.156250, 69.472969 ], [ 170.156250, 69.595890 ], [ 169.980469, 69.595890 ], [ 169.980469, 69.718107 ], [ 170.156250, 69.718107 ], [ 170.156250, 69.839622 ], [ 170.332031, 69.839622 ], [ 170.332031, 69.960439 ], [ 170.507812, 69.960439 ], [ 170.507812, 70.080562 ], [ 170.859375, 70.080562 ], [ 170.859375, 70.020587 ], [ 171.562500, 70.020587 ], [ 171.562500, 69.960439 ], [ 172.441406, 69.960439 ], [ 172.441406, 69.900118 ], [ 173.144531, 69.900118 ], [ 173.144531, 69.839622 ], [ 174.902344, 69.839622 ], [ 174.902344, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.839622 ], [ 176.132812, 69.839622 ], [ 176.132812, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.718107 ], [ 176.835938, 69.718107 ], [ 176.835938, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.595890 ], [ 177.539062, 69.595890 ], [ 177.539062, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.472969 ], [ 178.242188, 69.472969 ], [ 178.242188, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.349339 ], [ 178.769531, 69.349339 ], [ 178.769531, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.224997 ], [ 179.121094, 69.224997 ], [ 179.121094, 69.162558 ], [ 179.472656, 69.162558 ], [ 179.472656, 69.099940 ], [ 179.648438, 69.099940 ], [ 179.648438, 69.037142 ], [ 179.824219, 69.037142 ], [ 179.824219, 68.974164 ], [ 180.000000, 68.974164 ], [ 180.000000, 68.911005 ], [ 180.175781, 68.911005 ], [ 180.175781, 68.847665 ], [ 180.527344, 68.847665 ], [ 180.527344, 68.784144 ], [ 180.703125, 68.784144 ], [ 180.703125, 68.720441 ], [ 180.878906, 68.720441 ], [ 180.878906, 66.160511 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.413177 ], [ 134.472656, 71.413177 ], [ 134.472656, 71.469124 ], [ 134.824219, 71.469124 ], [ 134.824219, 71.524909 ], [ 135.175781, 71.524909 ], [ 135.175781, 71.580532 ], [ 135.527344, 71.580532 ], [ 135.527344, 71.635993 ], [ 135.703125, 71.635993 ], [ 135.703125, 71.580532 ], [ 136.054688, 71.580532 ], [ 136.054688, 71.524909 ], [ 136.406250, 71.524909 ], [ 136.406250, 71.469124 ], [ 136.757812, 71.469124 ], [ 136.757812, 71.413177 ], [ 137.109375, 71.413177 ], [ 137.109375, 71.357067 ], [ 137.636719, 71.357067 ], [ 137.636719, 71.413177 ], [ 137.812500, 71.413177 ], [ 137.812500, 71.524909 ], [ 137.988281, 71.524909 ], [ 137.988281, 71.580532 ], [ 138.164062, 71.580532 ], [ 138.164062, 71.635993 ], [ 138.339844, 71.635993 ], [ 138.339844, 71.580532 ], [ 138.867188, 71.580532 ], [ 138.867188, 71.524909 ], [ 139.570312, 71.524909 ], [ 139.570312, 71.469124 ], [ 139.921875, 71.469124 ], [ 139.921875, 71.580532 ], [ 139.746094, 71.580532 ], [ 139.746094, 71.801410 ], [ 139.570312, 71.801410 ], [ 139.570312, 72.019729 ], [ 139.394531, 72.019729 ], [ 139.394531, 72.235514 ], [ 139.218750, 72.235514 ], [ 139.218750, 72.395706 ], [ 139.394531, 72.395706 ], [ 139.394531, 72.448792 ], [ 139.570312, 72.448792 ], [ 139.570312, 72.554498 ], [ 139.746094, 72.554498 ], [ 139.746094, 72.607120 ], [ 139.921875, 72.607120 ], [ 139.921875, 72.659588 ], [ 140.097656, 72.659588 ], [ 140.097656, 72.764065 ], [ 140.273438, 72.764065 ], [ 140.273438, 72.816074 ], [ 140.449219, 72.816074 ], [ 140.449219, 72.867930 ], [ 140.625000, 72.867930 ] ] ], [ [ [ 140.097656, 76.142958 ], [ 140.097656, 76.100796 ], [ 141.503906, 76.100796 ], [ 141.503906, 76.058508 ], [ 141.855469, 76.058508 ], [ 141.855469, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.973553 ], [ 142.382812, 75.973553 ], [ 142.382812, 75.930885 ], [ 142.558594, 75.930885 ], [ 142.558594, 75.888091 ], [ 142.910156, 75.888091 ], [ 142.910156, 75.845169 ], [ 143.085938, 75.845169 ], [ 143.085938, 75.802118 ], [ 143.437500, 75.802118 ], [ 143.437500, 75.758940 ], [ 143.789062, 75.758940 ], [ 143.789062, 75.715633 ], [ 143.964844, 75.715633 ], [ 143.964844, 75.672197 ], [ 144.316406, 75.672197 ], [ 144.316406, 75.628632 ], [ 144.492188, 75.628632 ], [ 144.492188, 75.584937 ], [ 144.843750, 75.584937 ], [ 144.843750, 75.541113 ], [ 145.019531, 75.541113 ], [ 145.019531, 75.453071 ], [ 144.843750, 75.453071 ], [ 144.843750, 75.275413 ], [ 144.667969, 75.275413 ], [ 144.667969, 75.095633 ], [ 144.492188, 75.095633 ], [ 144.492188, 74.913708 ], [ 144.316406, 74.913708 ], [ 144.316406, 74.821934 ], [ 142.382812, 74.821934 ], [ 142.382812, 74.867889 ], [ 140.625000, 74.867889 ], [ 140.625000, 74.821934 ], [ 140.273438, 74.821934 ], [ 140.273438, 74.775843 ], [ 140.097656, 74.775843 ], [ 140.097656, 74.729615 ], [ 139.746094, 74.729615 ], [ 139.746094, 74.683250 ], [ 139.570312, 74.683250 ], [ 139.570312, 74.636748 ], [ 139.218750, 74.636748 ], [ 139.218750, 74.590108 ], [ 138.867188, 74.590108 ], [ 138.867188, 74.636748 ], [ 138.691406, 74.636748 ], [ 138.691406, 74.729615 ], [ 138.515625, 74.729615 ], [ 138.515625, 74.775843 ], [ 138.339844, 74.775843 ], [ 138.339844, 74.821934 ], [ 138.164062, 74.821934 ], [ 138.164062, 74.867889 ], [ 137.988281, 74.867889 ], [ 137.988281, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.004940 ], [ 137.636719, 75.004940 ], [ 137.636719, 75.050354 ], [ 137.460938, 75.050354 ], [ 137.460938, 75.095633 ], [ 137.285156, 75.095633 ], [ 137.285156, 75.185789 ], [ 137.109375, 75.185789 ], [ 137.109375, 75.230667 ], [ 136.933594, 75.230667 ], [ 136.933594, 75.364506 ], [ 137.109375, 75.364506 ], [ 137.109375, 75.584937 ], [ 137.285156, 75.584937 ], [ 137.285156, 75.802118 ], [ 137.460938, 75.802118 ], [ 137.460938, 75.930885 ], [ 137.636719, 75.930885 ], [ 137.636719, 75.973553 ], [ 137.988281, 75.973553 ], [ 137.988281, 76.016094 ], [ 138.339844, 76.016094 ], [ 138.339844, 76.058508 ], [ 138.515625, 76.058508 ], [ 138.515625, 76.100796 ], [ 138.867188, 76.100796 ], [ 138.867188, 76.142958 ], [ 140.097656, 76.142958 ] ] ], [ [ [ 180.878906, 71.580532 ], [ 180.878906, 70.902268 ], [ 180.527344, 70.902268 ], [ 180.527344, 70.844673 ], [ 180.000000, 70.844673 ], [ 179.648438, 70.844673 ], [ 179.648438, 70.786910 ], [ 178.945312, 70.786910 ], [ 178.945312, 70.902268 ], [ 178.769531, 70.902268 ], [ 178.769531, 71.074056 ], [ 178.945312, 71.074056 ], [ 178.945312, 71.130988 ], [ 179.121094, 71.130988 ], [ 179.121094, 71.187754 ], [ 179.296875, 71.187754 ], [ 179.296875, 71.300793 ], [ 179.472656, 71.300793 ], [ 179.472656, 71.357067 ], [ 179.648438, 71.357067 ], [ 179.648438, 71.413177 ], [ 179.824219, 71.413177 ], [ 179.824219, 71.469124 ], [ 180.000000, 71.469124 ], [ 180.000000, 71.524909 ], [ 180.175781, 71.524909 ], [ 180.175781, 71.580532 ], [ 180.878906, 71.580532 ] ] ], [ [ [ 146.601562, 75.497157 ], [ 146.601562, 75.453071 ], [ 147.128906, 75.453071 ], [ 147.128906, 75.408854 ], [ 147.832031, 75.408854 ], [ 147.832031, 75.364506 ], [ 148.359375, 75.364506 ], [ 148.359375, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.275413 ], [ 149.062500, 75.275413 ], [ 149.062500, 75.230667 ], [ 149.589844, 75.230667 ], [ 149.589844, 75.185789 ], [ 149.941406, 75.185789 ], [ 149.941406, 75.140778 ], [ 150.292969, 75.140778 ], [ 150.292969, 75.095633 ], [ 150.644531, 75.095633 ], [ 150.644531, 75.050354 ], [ 150.468750, 75.050354 ], [ 150.468750, 74.959392 ], [ 150.292969, 74.959392 ], [ 150.292969, 74.913708 ], [ 150.117188, 74.913708 ], [ 150.117188, 74.821934 ], [ 149.941406, 74.821934 ], [ 149.941406, 74.775843 ], [ 149.765625, 74.775843 ], [ 149.765625, 74.683250 ], [ 149.062500, 74.683250 ], [ 149.062500, 74.729615 ], [ 148.359375, 74.729615 ], [ 148.359375, 74.775843 ], [ 147.832031, 74.775843 ], [ 147.832031, 74.821934 ], [ 147.656250, 74.821934 ], [ 147.656250, 74.867889 ], [ 147.304688, 74.867889 ], [ 147.304688, 74.913708 ], [ 147.128906, 74.913708 ], [ 147.128906, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.004940 ], [ 146.777344, 75.004940 ], [ 146.777344, 75.050354 ], [ 146.601562, 75.050354 ], [ 146.601562, 75.095633 ], [ 146.250000, 75.095633 ], [ 146.250000, 75.140778 ], [ 146.074219, 75.140778 ], [ 146.074219, 75.230667 ], [ 146.250000, 75.230667 ], [ 146.250000, 75.408854 ], [ 146.425781, 75.408854 ], [ 146.425781, 75.497157 ], [ 146.601562, 75.497157 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 142.031250, 73.824820 ], [ 142.207031, 73.824820 ], [ 142.207031, 73.775780 ], [ 142.382812, 73.775780 ], [ 142.382812, 73.726595 ], [ 142.558594, 73.726595 ], [ 142.558594, 73.677264 ], [ 142.734375, 73.677264 ], [ 142.734375, 73.627789 ], [ 142.910156, 73.627789 ], [ 142.910156, 73.578167 ], [ 143.085938, 73.578167 ], [ 143.085938, 73.528399 ], [ 143.261719, 73.528399 ], [ 143.261719, 73.478485 ], [ 143.437500, 73.478485 ], [ 143.437500, 73.327858 ], [ 143.613281, 73.327858 ], [ 143.613281, 73.226700 ], [ 141.503906, 73.226700 ], [ 141.503906, 73.277353 ], [ 140.449219, 73.277353 ], [ 140.449219, 73.327858 ], [ 139.921875, 73.327858 ], [ 139.921875, 73.378215 ], [ 140.097656, 73.378215 ], [ 140.097656, 73.478485 ], [ 140.273438, 73.478485 ], [ 140.273438, 73.578167 ], [ 140.449219, 73.578167 ], [ 140.449219, 73.627789 ], [ 140.625000, 73.627789 ], [ 140.625000, 73.726595 ], [ 140.800781, 73.726595 ], [ 140.800781, 73.775780 ], [ 141.152344, 73.775780 ], [ 141.152344, 73.824820 ], [ 141.855469, 73.824820 ], [ 141.855469, 73.873717 ], [ 142.031250, 73.873717 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.800781, 72.867930 ], [ 140.800781, 72.816074 ], [ 141.503906, 72.816074 ], [ 141.503906, 72.764065 ], [ 142.207031, 72.764065 ], [ 142.207031, 72.711903 ], [ 142.910156, 72.711903 ], [ 142.910156, 72.659588 ], [ 143.789062, 72.659588 ], [ 143.789062, 72.607120 ], [ 144.492188, 72.607120 ], [ 144.492188, 72.554498 ], [ 145.195312, 72.554498 ], [ 145.195312, 72.501722 ], [ 145.898438, 72.501722 ], [ 145.898438, 72.448792 ], [ 146.777344, 72.448792 ], [ 146.777344, 72.395706 ], [ 147.480469, 72.395706 ], [ 147.480469, 72.342464 ], [ 148.183594, 72.342464 ], [ 148.183594, 72.289067 ], [ 148.886719, 72.289067 ], [ 148.886719, 72.235514 ], [ 149.414062, 72.235514 ], [ 149.414062, 72.127936 ], [ 149.589844, 72.127936 ], [ 149.589844, 72.019729 ], [ 149.765625, 72.019729 ], [ 149.765625, 71.910888 ], [ 149.941406, 71.910888 ], [ 149.941406, 71.801410 ], [ 150.117188, 71.801410 ], [ 150.117188, 71.691293 ], [ 150.292969, 71.691293 ], [ 150.292969, 71.580532 ], [ 150.468750, 71.580532 ], [ 150.468750, 71.524909 ], [ 150.644531, 71.524909 ], [ 150.644531, 71.469124 ], [ 150.820312, 71.469124 ], [ 150.820312, 71.413177 ], [ 150.996094, 71.413177 ], [ 150.996094, 71.357067 ], [ 151.171875, 71.357067 ], [ 151.171875, 71.300793 ], [ 151.347656, 71.300793 ], [ 151.347656, 71.244356 ], [ 151.699219, 71.244356 ], [ 151.699219, 71.187754 ], [ 151.875000, 71.187754 ], [ 151.875000, 71.130988 ], [ 152.050781, 71.130988 ], [ 152.050781, 71.074056 ], [ 152.226562, 71.074056 ], [ 152.226562, 71.016960 ], [ 152.402344, 71.016960 ], [ 152.402344, 70.959697 ], [ 152.578125, 70.959697 ], [ 152.578125, 70.902268 ], [ 152.753906, 70.902268 ], [ 152.753906, 70.844673 ], [ 153.457031, 70.844673 ], [ 153.457031, 70.902268 ], [ 154.511719, 70.902268 ], [ 154.511719, 70.959697 ], [ 155.566406, 70.959697 ], [ 155.566406, 71.016960 ], [ 156.621094, 71.016960 ], [ 156.621094, 71.074056 ], [ 157.148438, 71.074056 ], [ 157.148438, 71.016960 ], [ 157.851562, 71.016960 ], [ 157.851562, 70.959697 ], [ 158.554688, 70.959697 ], [ 158.554688, 70.902268 ], [ 158.906250, 70.902268 ], [ 158.906250, 70.844673 ], [ 159.082031, 70.844673 ], [ 159.082031, 70.728979 ], [ 159.257812, 70.728979 ], [ 159.257812, 70.670881 ], [ 159.433594, 70.670881 ], [ 159.433594, 70.612614 ], [ 159.609375, 70.612614 ], [ 159.609375, 70.495574 ], [ 159.785156, 70.495574 ], [ 159.785156, 70.140364 ], [ 159.609375, 70.140364 ], [ 159.609375, 69.718107 ], [ 159.960938, 69.718107 ], [ 159.960938, 69.657086 ], [ 160.136719, 69.657086 ], [ 160.136719, 69.595890 ], [ 160.312500, 69.595890 ], [ 160.312500, 69.534518 ], [ 160.664062, 69.534518 ], [ 160.664062, 69.472969 ], [ 161.191406, 69.472969 ], [ 161.191406, 69.534518 ], [ 161.718750, 69.534518 ], [ 161.718750, 69.595890 ], [ 162.070312, 69.595890 ], [ 162.070312, 69.657086 ], [ 163.300781, 69.657086 ], [ 163.300781, 69.718107 ], [ 164.179688, 69.718107 ], [ 164.179688, 69.657086 ], [ 164.707031, 69.657086 ], [ 164.707031, 69.595890 ], [ 165.058594, 69.595890 ], [ 165.058594, 69.534518 ], [ 165.585938, 69.534518 ], [ 165.585938, 69.472969 ], [ 166.464844, 69.472969 ], [ 166.464844, 69.534518 ], [ 167.343750, 69.534518 ], [ 167.343750, 69.595890 ], [ 167.695312, 69.595890 ], [ 167.695312, 69.534518 ], [ 167.871094, 69.534518 ], [ 167.871094, 69.411242 ], [ 168.046875, 69.411242 ], [ 168.046875, 69.349339 ], [ 168.222656, 69.349339 ], [ 168.222656, 69.287257 ], [ 168.398438, 69.287257 ], [ 168.398438, 69.162558 ], [ 168.574219, 69.162558 ], [ 168.574219, 69.099940 ], [ 168.750000, 69.099940 ], [ 168.750000, 68.974164 ], [ 168.925781, 68.974164 ], [ 168.925781, 68.911005 ], [ 169.101562, 68.911005 ], [ 169.101562, 68.847665 ], [ 169.277344, 68.847665 ], [ 169.277344, 68.720441 ], [ 169.628906, 68.720441 ], [ 169.628906, 68.784144 ], [ 169.980469, 68.784144 ], [ 169.980469, 68.847665 ], [ 170.156250, 68.847665 ], [ 170.156250, 68.911005 ], [ 170.332031, 68.911005 ], [ 170.332031, 68.974164 ], [ 170.683594, 68.974164 ], [ 170.683594, 69.099940 ], [ 170.507812, 69.099940 ], [ 170.507812, 69.224997 ], [ 170.332031, 69.224997 ], [ 170.332031, 69.411242 ], [ 170.156250, 69.411242 ], [ 170.156250, 69.534518 ], [ 169.980469, 69.534518 ], [ 169.980469, 69.778952 ], [ 170.156250, 69.778952 ], [ 170.156250, 70.020587 ], [ 170.332031, 70.020587 ], [ 170.332031, 70.140364 ], [ 170.507812, 70.140364 ], [ 170.507812, 70.080562 ], [ 171.210938, 70.080562 ], [ 171.210938, 70.020587 ], [ 171.738281, 70.020587 ], [ 171.738281, 69.960439 ], [ 172.441406, 69.960439 ], [ 172.441406, 69.900118 ], [ 173.144531, 69.900118 ], [ 173.144531, 69.839622 ], [ 174.726562, 69.839622 ], [ 174.726562, 69.900118 ], [ 175.781250, 69.900118 ], [ 175.781250, 69.839622 ], [ 176.132812, 69.839622 ], [ 176.132812, 69.778952 ], [ 176.484375, 69.778952 ], [ 176.484375, 69.718107 ], [ 176.835938, 69.718107 ], [ 176.835938, 69.657086 ], [ 177.187500, 69.657086 ], [ 177.187500, 69.595890 ], [ 177.539062, 69.595890 ], [ 177.539062, 69.534518 ], [ 177.890625, 69.534518 ], [ 177.890625, 69.472969 ], [ 178.242188, 69.472969 ], [ 178.242188, 69.411242 ], [ 178.593750, 69.411242 ], [ 178.593750, 69.349339 ], [ 178.769531, 69.349339 ], [ 178.769531, 69.287257 ], [ 178.945312, 69.287257 ], [ 178.945312, 69.224997 ], [ 179.121094, 69.224997 ], [ 179.121094, 69.162558 ], [ 179.472656, 69.162558 ], [ 179.472656, 69.099940 ], [ 179.648438, 69.099940 ], [ 179.648438, 69.037142 ], [ 179.824219, 69.037142 ], [ 179.824219, 68.974164 ], [ 180.000000, 68.974164 ], [ 180.000000, 68.911005 ], [ 180.175781, 68.911005 ], [ 180.175781, 68.847665 ], [ 180.527344, 68.847665 ], [ 180.527344, 68.784144 ], [ 180.703125, 68.784144 ], [ 180.703125, 68.720441 ], [ 180.878906, 68.720441 ], [ 180.878906, 66.160511 ], [ 180.000000, 66.160511 ], [ 134.121094, 66.160511 ], [ 134.121094, 71.469124 ], [ 134.472656, 71.469124 ], [ 134.472656, 71.524909 ], [ 134.824219, 71.524909 ], [ 134.824219, 71.580532 ], [ 135.175781, 71.580532 ], [ 135.175781, 71.635993 ], [ 135.878906, 71.635993 ], [ 135.878906, 71.580532 ], [ 136.230469, 71.580532 ], [ 136.230469, 71.524909 ], [ 136.582031, 71.524909 ], [ 136.582031, 71.469124 ], [ 136.933594, 71.469124 ], [ 136.933594, 71.413177 ], [ 137.285156, 71.413177 ], [ 137.285156, 71.357067 ], [ 137.636719, 71.357067 ], [ 137.636719, 71.413177 ], [ 137.812500, 71.413177 ], [ 137.812500, 71.524909 ], [ 137.988281, 71.524909 ], [ 137.988281, 71.580532 ], [ 138.164062, 71.580532 ], [ 138.164062, 71.635993 ], [ 138.515625, 71.635993 ], [ 138.515625, 71.580532 ], [ 139.218750, 71.580532 ], [ 139.218750, 71.524909 ], [ 139.746094, 71.524909 ], [ 139.746094, 71.635993 ], [ 139.570312, 71.635993 ], [ 139.570312, 71.856229 ], [ 139.394531, 71.856229 ], [ 139.394531, 72.073911 ], [ 139.218750, 72.073911 ], [ 139.218750, 72.289067 ], [ 139.042969, 72.289067 ], [ 139.042969, 72.448792 ], [ 139.218750, 72.448792 ], [ 139.218750, 72.501722 ], [ 139.394531, 72.501722 ], [ 139.394531, 72.554498 ], [ 139.570312, 72.554498 ], [ 139.570312, 72.607120 ], [ 139.746094, 72.607120 ], [ 139.746094, 72.659588 ], [ 139.921875, 72.659588 ], [ 139.921875, 72.711903 ], [ 140.097656, 72.711903 ], [ 140.097656, 72.764065 ], [ 140.273438, 72.764065 ], [ 140.273438, 72.816074 ], [ 140.449219, 72.816074 ], [ 140.449219, 72.867930 ], [ 140.800781, 72.867930 ] ] ], [ [ [ 139.921875, 76.142958 ], [ 139.921875, 76.100796 ], [ 141.328125, 76.100796 ], [ 141.328125, 76.058508 ], [ 141.679688, 76.058508 ], [ 141.679688, 76.016094 ], [ 142.031250, 76.016094 ], [ 142.031250, 75.973553 ], [ 142.382812, 75.973553 ], [ 142.382812, 75.930885 ], [ 142.558594, 75.930885 ], [ 142.558594, 75.888091 ], [ 142.910156, 75.888091 ], [ 142.910156, 75.845169 ], [ 143.261719, 75.845169 ], [ 143.261719, 75.802118 ], [ 143.613281, 75.802118 ], [ 143.613281, 75.758940 ], [ 143.789062, 75.758940 ], [ 143.789062, 75.715633 ], [ 144.140625, 75.715633 ], [ 144.140625, 75.672197 ], [ 144.492188, 75.672197 ], [ 144.492188, 75.628632 ], [ 144.843750, 75.628632 ], [ 144.843750, 75.584937 ], [ 145.019531, 75.584937 ], [ 145.019531, 75.497157 ], [ 144.843750, 75.497157 ], [ 144.843750, 75.320025 ], [ 144.667969, 75.320025 ], [ 144.667969, 75.185789 ], [ 144.492188, 75.185789 ], [ 144.492188, 75.050354 ], [ 144.316406, 75.050354 ], [ 144.316406, 74.867889 ], [ 144.140625, 74.867889 ], [ 144.140625, 74.821934 ], [ 142.207031, 74.821934 ], [ 142.207031, 74.867889 ], [ 140.449219, 74.867889 ], [ 140.449219, 74.821934 ], [ 140.097656, 74.821934 ], [ 140.097656, 74.775843 ], [ 139.746094, 74.775843 ], [ 139.746094, 74.729615 ], [ 139.394531, 74.729615 ], [ 139.394531, 74.683250 ], [ 139.042969, 74.683250 ], [ 139.042969, 74.636748 ], [ 138.691406, 74.636748 ], [ 138.691406, 74.683250 ], [ 138.515625, 74.683250 ], [ 138.515625, 74.775843 ], [ 138.339844, 74.775843 ], [ 138.339844, 74.821934 ], [ 138.164062, 74.821934 ], [ 138.164062, 74.867889 ], [ 137.988281, 74.867889 ], [ 137.988281, 74.959392 ], [ 137.812500, 74.959392 ], [ 137.812500, 75.004940 ], [ 137.636719, 75.004940 ], [ 137.636719, 75.050354 ], [ 137.460938, 75.050354 ], [ 137.460938, 75.095633 ], [ 137.285156, 75.095633 ], [ 137.285156, 75.185789 ], [ 137.109375, 75.185789 ], [ 137.109375, 75.230667 ], [ 136.933594, 75.230667 ], [ 136.933594, 75.364506 ], [ 137.109375, 75.364506 ], [ 137.109375, 75.628632 ], [ 137.285156, 75.628632 ], [ 137.285156, 75.845169 ], [ 137.460938, 75.845169 ], [ 137.460938, 75.973553 ], [ 137.636719, 75.973553 ], [ 137.636719, 76.016094 ], [ 137.988281, 76.016094 ], [ 137.988281, 76.058508 ], [ 138.339844, 76.058508 ], [ 138.339844, 76.100796 ], [ 138.691406, 76.100796 ], [ 138.691406, 76.142958 ], [ 139.921875, 76.142958 ] ] ], [ [ [ 180.878906, 71.580532 ], [ 180.878906, 70.902268 ], [ 180.527344, 70.902268 ], [ 180.527344, 70.844673 ], [ 180.000000, 70.844673 ], [ 179.472656, 70.844673 ], [ 179.472656, 70.786910 ], [ 178.769531, 70.786910 ], [ 178.769531, 70.959697 ], [ 178.593750, 70.959697 ], [ 178.593750, 71.130988 ], [ 178.769531, 71.130988 ], [ 178.769531, 71.187754 ], [ 178.945312, 71.187754 ], [ 178.945312, 71.244356 ], [ 179.121094, 71.244356 ], [ 179.121094, 71.300793 ], [ 179.472656, 71.300793 ], [ 179.472656, 71.357067 ], [ 179.648438, 71.357067 ], [ 179.648438, 71.413177 ], [ 179.824219, 71.413177 ], [ 179.824219, 71.469124 ], [ 180.000000, 71.469124 ], [ 180.000000, 71.580532 ], [ 180.878906, 71.580532 ] ] ], [ [ [ 146.425781, 75.497157 ], [ 146.425781, 75.453071 ], [ 147.128906, 75.453071 ], [ 147.128906, 75.408854 ], [ 147.832031, 75.408854 ], [ 147.832031, 75.364506 ], [ 148.359375, 75.364506 ], [ 148.359375, 75.320025 ], [ 148.710938, 75.320025 ], [ 148.710938, 75.275413 ], [ 149.062500, 75.275413 ], [ 149.062500, 75.230667 ], [ 149.589844, 75.230667 ], [ 149.589844, 75.185789 ], [ 149.941406, 75.185789 ], [ 149.941406, 75.140778 ], [ 150.292969, 75.140778 ], [ 150.292969, 75.095633 ], [ 150.644531, 75.095633 ], [ 150.644531, 75.050354 ], [ 150.468750, 75.050354 ], [ 150.468750, 75.004940 ], [ 150.292969, 75.004940 ], [ 150.292969, 74.959392 ], [ 150.117188, 74.959392 ], [ 150.117188, 74.913708 ], [ 149.941406, 74.913708 ], [ 149.941406, 74.821934 ], [ 149.765625, 74.821934 ], [ 149.765625, 74.775843 ], [ 149.589844, 74.775843 ], [ 149.589844, 74.729615 ], [ 148.886719, 74.729615 ], [ 148.886719, 74.775843 ], [ 148.183594, 74.775843 ], [ 148.183594, 74.821934 ], [ 147.656250, 74.821934 ], [ 147.656250, 74.867889 ], [ 147.480469, 74.867889 ], [ 147.480469, 74.913708 ], [ 147.128906, 74.913708 ], [ 147.128906, 74.959392 ], [ 146.953125, 74.959392 ], [ 146.953125, 75.004940 ], [ 146.777344, 75.004940 ], [ 146.777344, 75.050354 ], [ 146.601562, 75.050354 ], [ 146.601562, 75.095633 ], [ 146.250000, 75.095633 ], [ 146.250000, 75.140778 ], [ 146.074219, 75.140778 ], [ 146.074219, 75.320025 ], [ 146.250000, 75.320025 ], [ 146.250000, 75.497157 ], [ 146.425781, 75.497157 ] ] ], [ [ [ 142.031250, 73.873717 ], [ 142.031250, 73.824820 ], [ 142.207031, 73.824820 ], [ 142.207031, 73.775780 ], [ 142.382812, 73.775780 ], [ 142.382812, 73.726595 ], [ 142.558594, 73.726595 ], [ 142.558594, 73.677264 ], [ 142.734375, 73.677264 ], [ 142.734375, 73.627789 ], [ 142.910156, 73.627789 ], [ 142.910156, 73.578167 ], [ 143.085938, 73.578167 ], [ 143.085938, 73.528399 ], [ 143.261719, 73.528399 ], [ 143.261719, 73.478485 ], [ 143.437500, 73.478485 ], [ 143.437500, 73.226700 ], [ 141.328125, 73.226700 ], [ 141.328125, 73.277353 ], [ 140.273438, 73.277353 ], [ 140.273438, 73.327858 ], [ 139.746094, 73.327858 ], [ 139.746094, 73.378215 ], [ 139.921875, 73.378215 ], [ 139.921875, 73.478485 ], [ 140.097656, 73.478485 ], [ 140.097656, 73.528399 ], [ 140.273438, 73.528399 ], [ 140.273438, 73.578167 ], [ 140.449219, 73.578167 ], [ 140.449219, 73.677264 ], [ 140.625000, 73.677264 ], [ 140.625000, 73.726595 ], [ 140.800781, 73.726595 ], [ 140.800781, 73.775780 ], [ 141.152344, 73.775780 ], [ 141.152344, 73.824820 ], [ 141.855469, 73.824820 ], [ 141.855469, 73.873717 ], [ 142.031250, 73.873717 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.236914 ], [ -167.025146, -84.570026 ], [ -164.185181, -84.824819 ], [ -162.581177, -85.051129 ], [ -162.306519, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.439453, -85.088894 ], [ -180.439453, -84.652564 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139013 ], [ -177.258911, -84.452865 ], [ -176.088867, -84.099052 ], [ -175.951538, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.385986, -84.534040 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.060524 ], [ -169.953003, -83.884610 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.953003, -83.884610 ], [ -169.002686, -84.117659 ], [ -168.530273, -84.237466 ], [ -167.019653, -84.570546 ], [ -164.179688, -84.825314 ], [ -162.575684, -85.051129 ], [ -162.301025, -85.088894 ], [ -180.000000, -85.088894 ], [ -180.439453, -85.088894 ], [ -180.439453, -84.652564 ], [ -180.000000, -84.713140 ], [ -179.945068, -84.721232 ], [ -179.060669, -84.139574 ], [ -177.258911, -84.452865 ], [ -176.083374, -84.099052 ], [ -175.946045, -84.110336 ], [ -175.830688, -84.117659 ], [ -174.380493, -84.534564 ], [ -173.117065, -84.117659 ], [ -172.891846, -84.061093 ], [ -169.953003, -83.884610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.130981, -79.633945 ], [ -162.443848, -79.281206 ], [ -162.636108, -79.171335 ], [ -162.773438, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -159.461060, -79.088462 ], [ -159.411621, -79.171335 ], [ -159.208374, -79.496652 ], [ -161.125488, -79.633945 ], [ -162.438354, -79.281206 ], [ -162.630615, -79.171335 ], [ -162.767944, -79.088462 ], [ -159.461060, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.222271 ], [ -161.246338, -78.379324 ], [ -160.246582, -78.692645 ], [ -159.483032, -79.045747 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.493286, -79.253586 ], [ -162.630615, -79.171335 ], [ -163.031616, -78.928218 ], [ -163.070068, -78.868988 ], [ -163.718262, -78.595299 ], [ -163.108521, -78.222271 ] ] ], [ [ [ -158.367920, -76.888253 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -157.060547, -77.271434 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.054810, -78.025574 ], [ -158.367920, -76.888253 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.108521, -78.223392 ], [ -161.246338, -78.380430 ], [ -160.246582, -78.693722 ], [ -159.483032, -79.046790 ], [ -159.411621, -79.171335 ], [ -159.362183, -79.253586 ], [ -162.487793, -79.253586 ], [ -162.625122, -79.171335 ], [ -163.026123, -78.929273 ], [ -163.064575, -78.870048 ], [ -163.712769, -78.595299 ], [ -163.108521, -78.223392 ] ] ], [ [ [ -158.362427, -76.889500 ], [ -157.873535, -76.987572 ], [ -157.500000, -77.118032 ], [ -157.060547, -77.270224 ], [ -157.060547, -78.429011 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -158.049316, -78.025574 ], [ -158.362427, -76.889500 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.066929 ], [ -179.796753, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.551962 ], [ -180.439453, -16.720385 ], [ -180.439453, -16.299051 ], [ -180.000000, -16.066929 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, -16.066929 ], [ -179.791260, -16.019416 ], [ -179.917603, -16.499299 ], [ -180.000000, -16.557227 ], [ -180.439453, -16.720385 ], [ -180.439453, -16.299051 ], [ -180.000000, -16.066929 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.222821 ], [ -157.060547, 21.207459 ], [ -157.060547, 21.084500 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -158.131714, 21.314964 ], [ -158.258057, 21.539957 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.252808, 21.217701 ], [ -157.060547, 21.202337 ], [ -157.060547, 21.089625 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -158.126221, 21.314964 ], [ -158.252563, 21.539957 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.461060, 21.881890 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.944946, 21.657428 ], [ -157.840576, 21.534847 ], [ -158.258057, 21.534847 ], [ -158.296509, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.217920 ], [ -159.345703, 21.983801 ], [ -159.400635, 21.943046 ], [ -159.466553, 21.886987 ], [ -159.570923, 21.943046 ], [ -159.801636, 22.070369 ], [ -159.752197, 22.141620 ], [ -159.598389, 22.238260 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -158.027344, 21.718680 ], [ -157.939453, 21.652323 ], [ -157.840576, 21.534847 ], [ -158.252563, 21.534847 ], [ -158.291016, 21.580827 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.598389, 22.238260 ], [ -159.367676, 22.212835 ], [ -159.345703, 21.983801 ], [ -159.395142, 21.943046 ], [ -159.461060, 21.881890 ], [ -159.576416, 21.943046 ], [ -159.801636, 22.065278 ], [ -159.746704, 22.136532 ], [ -159.598389, 22.238260 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.240601, 55.024873 ], [ -163.070068, 54.692884 ], [ -164.789429, 54.406143 ], [ -164.943237, 54.575246 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.351012 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.554199, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.417358, 56.022948 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -161.224365, 55.363503 ], [ -162.235107, 55.024873 ], [ -163.070068, 54.689709 ], [ -164.783936, 54.402946 ], [ -164.943237, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.548706, 56.022948 ], [ -158.417358, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.904646 ], [ -157.060547, 56.818921 ], [ -157.500000, 56.674338 ], [ -158.120728, 56.465525 ], [ -158.433838, 55.995309 ], [ -159.038086, 55.776573 ], [ -159.603882, 55.569028 ], [ -160.290527, 55.646599 ], [ -160.686035, 55.528631 ], [ -162.531738, 55.528631 ], [ -162.042847, 55.776573 ], [ -161.806641, 55.896876 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.219608 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.060547, 58.904646 ] ] ], [ [ [ -157.060547, 58.918828 ], [ -157.500000, 58.802362 ], [ -158.197632, 58.616917 ], [ -158.521729, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.674082 ], [ -162.059326, 59.268688 ], [ -161.878052, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.822632, 59.800634 ], [ -164.663086, 60.269791 ], [ -165.349731, 60.508639 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.756714, 63.221255 ], [ -163.070068, 63.059937 ], [ -162.262573, 63.543658 ], [ -161.537476, 63.457874 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.223104 ], [ -161.520996, 64.404058 ], [ -160.779419, 64.790508 ], [ -161.394653, 64.778807 ], [ -162.454834, 64.560241 ], [ -162.762451, 64.339908 ], [ -163.547974, 64.560241 ], [ -164.965210, 64.449111 ], [ -166.426392, 64.687365 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.118292 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.918828 ] ] ], [ [ [ -171.732788, 63.784913 ], [ -171.117554, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.433317 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.293579, 63.196496 ], [ -170.672607, 63.376756 ], [ -171.557007, 63.320083 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.784913 ] ] ], [ [ [ -166.470337, 60.386720 ], [ -165.679321, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.195679, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.459106, 60.215262 ], [ -166.470337, 60.386720 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -157.060547, 58.901809 ], [ -157.060547, 56.815914 ], [ -157.500000, 56.668302 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.995309 ], [ -159.032593, 55.776573 ], [ -159.603882, 55.565922 ], [ -160.290527, 55.643499 ], [ -160.675049, 55.528631 ], [ -162.526245, 55.528631 ], [ -162.037354, 55.776573 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.007595 ], [ -160.070801, 56.416940 ], [ -158.686523, 57.016814 ], [ -158.461304, 57.216634 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.390197 ], [ -157.060547, 58.901809 ] ] ], [ [ [ -157.060547, 58.915992 ], [ -157.500000, 58.799516 ], [ -158.192139, 58.616917 ], [ -158.516235, 58.788132 ], [ -159.060059, 58.424730 ], [ -159.713745, 58.930169 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.071625 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.053833, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.990745 ], [ -163.817139, 59.797871 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.508639 ], [ -165.349731, 61.074231 ], [ -166.118774, 61.499113 ], [ -165.734253, 62.075598 ], [ -164.921265, 62.633770 ], [ -164.564209, 63.146912 ], [ -163.751221, 63.218780 ], [ -163.064575, 63.059937 ], [ -162.262573, 63.541211 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.765494 ], [ -160.960693, 64.223104 ], [ -161.515503, 64.401685 ], [ -160.779419, 64.788168 ], [ -161.394653, 64.776466 ], [ -162.454834, 64.560241 ], [ -162.756958, 64.337529 ], [ -163.547974, 64.560241 ], [ -164.959717, 64.446742 ], [ -166.426392, 64.687365 ], [ -166.843872, 65.088332 ], [ -168.112793, 65.669593 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.789673, 66.078230 ], [ -161.680298, 66.116068 ], [ -162.196655, 66.513260 ], [ -162.427368, 66.687784 ], [ -157.060547, 66.687784 ], [ -157.060547, 58.915992 ] ] ], [ [ [ -171.732788, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.491333, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.689575, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.977693 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.732788, 63.782486 ] ] ], [ [ [ -166.470337, 60.384005 ], [ -165.673828, 60.294299 ], [ -165.580444, 59.910976 ], [ -166.190186, 59.753628 ], [ -166.849365, 59.941256 ], [ -167.453613, 60.212533 ], [ -166.470337, 60.384005 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.006714, 66.687784 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.386719, 66.687784 ], [ -171.018677, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.542545 ], [ -172.534790, 65.440002 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.254141 ], [ -173.897095, 64.282760 ], [ -174.655151, 64.633292 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.225952, 65.522068 ], [ -178.363037, 65.392010 ], [ -178.906860, 65.741913 ], [ -178.687134, 66.113843 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.405731 ], [ -180.000000, 64.981682 ], [ -180.010986, 64.974712 ], [ -180.439453, 64.830254 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -180.000000, 66.687784 ], [ -175.001221, 66.687784 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.342041, 66.335300 ], [ -174.402466, 66.513260 ], [ -174.457397, 66.687784 ], [ -171.381226, 66.687784 ], [ -171.013184, 66.513260 ], [ -169.898071, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.437718 ], [ -172.556763, 64.460955 ], [ -172.957764, 64.251755 ], [ -173.891602, 64.282760 ], [ -174.655151, 64.630939 ], [ -175.984497, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.519792 ], [ -178.357544, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.687134, 66.111619 ], [ -179.884644, 65.874725 ], [ -179.434204, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.005493, 64.974712 ], [ -180.439453, 64.827917 ], [ -180.439453, 66.687784 ], [ -180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.657837, 66.576667 ], [ -163.679810, 66.513260 ], [ -163.729248, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.657837, 66.576667 ] ] ], [ [ [ -161.965942, 66.337505 ], [ -162.196655, 66.513260 ], [ -162.493286, 66.737732 ], [ -163.723755, 67.116613 ], [ -164.432373, 67.617589 ], [ -165.393677, 68.044569 ], [ -166.766968, 68.360725 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.916934 ], [ -163.168945, 69.372573 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.043579, 70.893280 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.043744 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.965942, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.576667 ], [ -163.674316, 66.513260 ], [ -163.723755, 66.337505 ], [ -165.580444, 66.337505 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.576667 ], [ -163.652344, 66.576667 ] ] ], [ [ [ -161.971436, 66.337505 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.116613 ], [ -164.432373, 67.615497 ], [ -165.388184, 68.042515 ], [ -166.766968, 68.358699 ], [ -166.206665, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.370638 ], [ -162.932739, 69.858546 ], [ -161.911011, 70.333533 ], [ -160.933228, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.120728, 70.824836 ], [ -157.500000, 71.041960 ], [ -157.060547, 71.194838 ], [ -157.060547, 66.337505 ], [ -161.971436, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.342041, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 69.103859 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.017700, 66.585400 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -174.342041, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.914988 ], [ -171.018677, 66.513260 ], [ -170.650635, 66.337505 ], [ -174.342041, 66.337505 ] ] ], [ [ [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.027710, 71.556217 ], [ -177.583008, 71.270831 ], [ -177.665405, 71.134540 ], [ -178.698120, 70.893280 ], [ -180.000000, 70.833855 ], [ -180.439453, 70.814007 ], [ -180.439453, 71.374619 ], [ -180.000000, 71.516203 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -174.347534, 66.337505 ], [ -180.000000, 66.337505 ], [ -180.439453, 66.337505 ], [ -180.439453, 69.101899 ], [ -180.000000, 68.964307 ], [ -177.550049, 68.200133 ], [ -174.929810, 67.206161 ], [ -175.012207, 66.585400 ], [ -174.819946, 66.513260 ], [ -174.347534, 66.337505 ] ] ], [ [ [ -174.347534, 66.337505 ], [ -174.402466, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.645142, 66.337505 ], [ -174.347534, 66.337505 ] ] ], [ [ [ -180.000000, 71.516203 ], [ -179.873657, 71.557955 ], [ -179.022217, 71.556217 ], [ -177.577515, 71.269067 ], [ -177.665405, 71.132764 ], [ -178.692627, 70.893280 ], [ -180.000000, 70.832051 ], [ -180.439453, 70.812202 ], [ -180.439453, 71.374619 ], [ -180.000000, 71.516203 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570026 ], [ -146.832275, -84.530900 ], [ -150.062256, -84.295635 ], [ -150.908203, -83.903891 ], [ -153.588867, -83.688427 ], [ -153.413086, -83.237720 ], [ -153.039551, -82.825994 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -82.620052 ], [ -134.560547, -85.088894 ], [ -143.591309, -85.088894 ], [ -143.212280, -85.051129 ], [ -143.107910, -85.040693 ], [ -142.893677, -84.570546 ], [ -146.826782, -84.531424 ], [ -150.062256, -84.296181 ], [ -150.902710, -83.904475 ], [ -153.588867, -83.688427 ], [ -153.407593, -83.237720 ], [ -153.039551, -82.826680 ], [ -152.891235, -82.676285 ], [ -152.830811, -82.620052 ], [ -134.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.453815 ], [ -152.863770, -82.041938 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.840820, -81.101715 ], [ -154.412842, -81.160152 ], [ -152.100220, -81.003467 ], [ -150.650024, -81.336499 ], [ -148.870239, -81.042894 ], [ -147.222290, -80.670217 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.068237, -79.651722 ], [ -149.534912, -79.357561 ], [ -151.589355, -79.298560 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.841309, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, -79.088462 ], [ -134.560547, -82.732092 ], [ -152.946167, -82.732092 ], [ -152.891235, -82.676285 ], [ -152.666016, -82.454537 ], [ -152.863770, -82.042699 ], [ -154.528198, -81.768140 ], [ -155.291748, -81.415573 ], [ -156.835327, -81.101715 ], [ -154.407349, -81.160996 ], [ -152.100220, -81.004326 ], [ -150.650024, -81.337327 ], [ -148.864746, -81.043750 ], [ -147.222290, -80.671108 ], [ -146.420288, -80.337653 ], [ -146.771851, -79.926314 ], [ -148.062744, -79.651722 ], [ -149.529419, -79.358575 ], [ -151.589355, -79.299580 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -154.857788, -79.088462 ], [ -134.560547, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, -74.301409 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.188110, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.063478 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.077887 ], [ -157.939453, -76.973960 ], [ -157.879028, -76.986335 ], [ -157.500000, -77.119256 ], [ -156.978149, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.748169, -77.065265 ], [ -152.924194, -77.495797 ], [ -151.336670, -77.397896 ], [ -150.007324, -77.182779 ], [ -148.749390, -76.908177 ], [ -147.617798, -76.575609 ], [ -146.107178, -76.477057 ], [ -146.145630, -76.104754 ], [ -146.497192, -75.731888 ], [ -146.206055, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.327393, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.085739 ], [ -140.213013, -75.065933 ], [ -138.861694, -74.967942 ], [ -137.510376, -74.732508 ], [ -136.433716, -74.516956 ], [ -135.219727, -74.301409 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.214233, -74.302895 ], [ -135.000000, -74.317750 ], [ -134.560547, -74.350383 ], [ -134.560547, -79.253586 ], [ -152.199097, -79.253586 ], [ -153.270264, -79.171335 ], [ -153.391113, -79.162043 ], [ -155.330200, -79.064520 ], [ -155.978394, -78.691568 ], [ -157.269287, -78.378217 ], [ -157.500000, -78.274853 ], [ -157.939453, -78.075617 ], [ -157.939453, -76.973960 ], [ -157.873535, -76.987572 ], [ -157.500000, -77.118032 ], [ -156.972656, -77.300449 ], [ -155.330200, -77.202262 ], [ -153.742676, -77.065265 ], [ -152.918701, -77.496986 ], [ -151.331177, -77.399095 ], [ -150.001831, -77.182779 ], [ -148.749390, -76.909421 ], [ -147.612305, -76.575609 ], [ -146.101685, -76.478342 ], [ -146.145630, -76.106073 ], [ -146.497192, -75.733242 ], [ -146.200562, -75.379765 ], [ -144.909668, -75.204037 ], [ -144.321899, -75.536997 ], [ -142.794800, -75.340892 ], [ -141.641235, -75.087153 ], [ -140.207520, -75.067349 ], [ -138.856201, -74.969367 ], [ -137.504883, -74.733955 ], [ -136.428223, -74.518423 ], [ -135.214233, -74.302895 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.251890 ], [ -155.225830, 19.993998 ], [ -155.066528, 19.859727 ], [ -154.808350, 19.513198 ], [ -154.835815, 19.456234 ], [ -155.225830, 19.243736 ], [ -155.544434, 19.088076 ], [ -155.692749, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.912476, 19.342245 ], [ -156.077271, 19.704658 ], [ -156.027832, 19.818390 ], [ -155.852051, 19.978511 ], [ -155.923462, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.615601, 21.012727 ], [ -156.258545, 20.920397 ], [ -156.000366, 20.766387 ], [ -156.082764, 20.648206 ], [ -156.417847, 20.576225 ], [ -156.588135, 20.786931 ], [ -156.703491, 20.869078 ], [ -156.714478, 20.930659 ], [ -156.615601, 21.012727 ] ] ], [ [ [ -157.252808, 21.222821 ], [ -156.758423, 21.181851 ], [ -156.791382, 21.069123 ], [ -157.329712, 21.099875 ], [ -157.252808, 21.222821 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.325198 ], [ -157.708740, 21.268900 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.863037, 20.267350 ], [ -155.786133, 20.246737 ], [ -155.401611, 20.081729 ], [ -155.225830, 19.993998 ], [ -155.061035, 19.859727 ], [ -154.808350, 19.508020 ], [ -154.830322, 19.451054 ], [ -155.220337, 19.238550 ], [ -155.544434, 19.082884 ], [ -155.687256, 18.916680 ], [ -155.934448, 19.056926 ], [ -155.906982, 19.337062 ], [ -156.071777, 19.704658 ], [ -156.022339, 19.813222 ], [ -155.852051, 19.978511 ], [ -155.917969, 20.174567 ], [ -155.863037, 20.267350 ] ] ], [ [ [ -156.610107, 21.012727 ], [ -156.258545, 20.915266 ], [ -155.994873, 20.766387 ], [ -156.077271, 20.643066 ], [ -156.412354, 20.571082 ], [ -156.588135, 20.781795 ], [ -156.703491, 20.863945 ], [ -156.708984, 20.925528 ], [ -156.610107, 21.012727 ] ] ], [ [ [ -157.252808, 21.217701 ], [ -156.758423, 21.176729 ], [ -156.791382, 21.069123 ], [ -157.324219, 21.099875 ], [ -157.252808, 21.217701 ] ] ], [ [ [ -157.939453, 21.652323 ], [ -157.653809, 21.320081 ], [ -157.708740, 21.263781 ], [ -157.780151, 21.279137 ], [ -157.939453, 21.299611 ], [ -157.939453, 21.652323 ] ] ] ] } } ] } ] } , @@ -2280,17 +2268,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.789580 ], [ -136.483154, 59.464617 ], [ -137.455444, 58.907483 ], [ -138.345337, 59.562158 ], [ -139.042969, 60.001733 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.307906 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.040555 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.307906 ], [ -140.015259, 60.277962 ], [ -139.042969, 60.001733 ], [ -138.345337, 59.562158 ], [ -137.455444, 58.907483 ], [ -136.483154, 59.464617 ], [ -135.477905, 59.789580 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.631470, 58.214132 ], [ -137.801514, 58.502305 ], [ -139.872437, 59.539888 ], [ -140.828247, 59.728716 ], [ -142.575073, 60.086763 ], [ -143.959351, 60.001733 ], [ -145.925903, 60.459926 ], [ -147.117920, 60.885027 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.979754 ], [ -148.573608, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.369593 ], [ -151.721191, 59.156220 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.729630 ], [ -152.583618, 60.062099 ], [ -154.022827, 59.352796 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.308228, 57.730552 ], [ -156.313477, 57.424252 ], [ -156.560669, 56.980911 ], [ -157.500000, 56.674338 ], [ -157.939453, 56.526169 ], [ -157.939453, 57.471543 ], [ -157.725220, 57.571834 ], [ -157.554932, 58.329683 ], [ -157.500000, 58.395955 ], [ -157.044067, 58.921664 ], [ -157.500000, 58.802362 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.231812, 57.970244 ], [ -152.567139, 57.903174 ], [ -152.144165, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.737662 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.462681 ], [ -153.764648, 57.818429 ], [ -153.231812, 57.970244 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.040555 ], [ -134.560547, 58.159112 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -157.500000, 56.668302 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.468589 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.390197 ], [ -157.044067, 58.918828 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.685504 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.125366, 69.471042 ], [ -137.548828, 68.991894 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.316380 ], [ -135.000000, 69.478746 ], [ -134.560547, 69.592059 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.560547, 69.590144 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.358822 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.698136 ], [ -153.901978, 70.891482 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.431280 ], [ -149.721680, 70.530391 ], [ -147.617798, 70.214875 ], [ -145.695190, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.043744 ], [ -156.582642, 71.358822 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.889683 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.357067 ] ] ] } } ] } ] } , @@ -2308,49 +2296,49 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -112.950439, -74.379992 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -112.060547, -74.645478 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.340007 ], [ -135.219727, -74.301409 ], [ -135.000000, -74.317750 ], [ -134.434204, -74.360753 ], [ -133.747559, -74.439046 ], [ -132.258911, -74.301409 ], [ -130.929565, -74.478784 ], [ -129.556274, -74.458191 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.516956 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.516956 ], [ -119.707031, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.027103 ], [ -116.218872, -74.243338 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -114.510498, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.536743, -73.898111 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.536743, -73.898111 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -113.571167, -73.898111 ], [ -113.318481, -74.019543 ], [ -113.296509, -74.028615 ], [ -112.944946, -74.381471 ], [ -112.500000, -74.609072 ], [ -112.296753, -74.713693 ], [ -112.060547, -74.646932 ], [ -112.060547, -79.253586 ], [ -135.439453, -79.253586 ], [ -135.439453, -74.341490 ], [ -135.214233, -74.302895 ], [ -135.000000, -74.317750 ], [ -134.428711, -74.360753 ], [ -133.747559, -74.440519 ], [ -132.258911, -74.302895 ], [ -130.924072, -74.478784 ], [ -129.556274, -74.459663 ], [ -128.243408, -74.322204 ], [ -126.892090, -74.419877 ], [ -125.403442, -74.518423 ], [ -124.013672, -74.478784 ], [ -121.074829, -74.518423 ], [ -119.701538, -74.478784 ], [ -118.685303, -74.185058 ], [ -117.471313, -74.028615 ], [ -116.218872, -74.243338 ], [ -115.021362, -74.067866 ], [ -114.873047, -74.019543 ], [ -114.505005, -73.898111 ], [ -113.571167, -73.898111 ] ] ], [ [ [ -119.525757, -73.898111 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.088963 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -121.948242, -73.898111 ], [ -119.525757, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.027103 ], [ -116.823120, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.027103 ] ] ], [ [ [ -115.526733, -74.140084 ], [ -115.026855, -74.066358 ], [ -114.884033, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.302002, -74.027103 ], [ -113.192139, -74.140084 ], [ -115.526733, -74.140084 ] ] ], [ [ [ -122.409668, -73.323130 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.729248, -73.480047 ], [ -119.295044, -73.833999 ], [ -119.981689, -74.019543 ], [ -120.234375, -74.087457 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.409668, -73.323130 ] ] ], [ [ [ -126.562500, -73.245712 ], [ -125.562744, -73.480047 ], [ -124.035645, -73.872191 ], [ -124.623413, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.287598, -73.461293 ], [ -126.562500, -73.245712 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -117.471313, -74.028615 ], [ -116.828613, -74.140084 ], [ -118.339233, -74.140084 ], [ -117.471313, -74.028615 ] ] ], [ [ [ -115.515747, -74.140084 ], [ -115.021362, -74.067866 ], [ -114.873047, -74.019543 ], [ -113.944702, -73.714276 ], [ -113.318481, -74.019543 ], [ -113.296509, -74.028615 ], [ -113.186646, -74.140084 ], [ -115.515747, -74.140084 ] ] ], [ [ [ -122.404175, -73.324706 ], [ -121.212158, -73.500341 ], [ -119.921265, -73.657183 ], [ -118.723755, -73.481609 ], [ -119.289551, -73.833999 ], [ -119.976196, -74.019543 ], [ -120.234375, -74.088963 ], [ -121.464844, -74.019543 ], [ -121.624146, -74.010467 ], [ -122.623901, -73.657183 ], [ -122.404175, -73.324706 ] ] ], [ [ [ -126.557007, -73.245712 ], [ -125.557251, -73.481609 ], [ -124.030151, -73.873717 ], [ -124.617920, -73.833999 ], [ -125.914307, -73.735828 ], [ -127.282104, -73.461293 ], [ -126.557007, -73.245712 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.818115, 32.528289 ], [ -114.724731, 32.722599 ], [ -115.993652, 32.616243 ], [ -117.130737, 32.537552 ], [ -117.301025, 33.050112 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.086304, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.371704, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.160337 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.117272 ], [ -123.728027, 38.955137 ], [ -123.865356, 39.770548 ], [ -124.398193, 40.317232 ], [ -124.227905, 40.979898 ], [ -124.183960, 41.145570 ], [ -124.194946, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 41.310824 ], [ -112.060547, 31.658057 ], [ -112.500000, 31.793555 ], [ -113.307495, 32.040677 ], [ -114.812622, 32.523658 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.295532, 33.045508 ], [ -117.943726, 33.619194 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.029900 ], [ -119.080811, 34.079962 ], [ -119.437866, 34.347971 ], [ -120.366211, 34.447689 ], [ -120.624390, 34.610606 ], [ -120.745239, 35.155846 ], [ -121.712036, 36.160053 ], [ -122.546997, 37.553288 ], [ -122.514038, 37.783740 ], [ -122.953491, 38.112950 ], [ -123.728027, 38.950865 ], [ -123.865356, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.189453, 41.310824 ], [ -112.060547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.724731, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.153687, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.527044 ], [ -114.779663, 31.802893 ], [ -114.938965, 31.395847 ], [ -114.774170, 30.916364 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.593140, 29.065773 ], [ -113.428345, 28.830238 ], [ -113.274536, 28.758028 ], [ -113.142700, 28.415560 ], [ -112.966919, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.681961 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.642549 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.059814, 27.727298 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.202881, 28.115594 ], [ -114.164429, 28.570050 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.559123 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.639352 ], [ -117.130737, 32.537552 ], [ -115.993652, 32.616243 ], [ -114.724731, 32.722599 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.722599 ], [ -114.812622, 32.523658 ], [ -113.307495, 32.040677 ], [ -112.500000, 31.793555 ], [ -112.060547, 31.658057 ], [ -112.060547, 28.782104 ], [ -112.230835, 28.955282 ], [ -112.269287, 29.267233 ], [ -112.500000, 29.592565 ], [ -112.807617, 30.021544 ], [ -113.164673, 30.789037 ], [ -113.148193, 31.170510 ], [ -113.873291, 31.569175 ], [ -114.208374, 31.522361 ], [ -114.774170, 31.798224 ], [ -114.938965, 31.391158 ], [ -114.768677, 30.911651 ], [ -114.675293, 30.164126 ], [ -114.329224, 29.750071 ], [ -113.587646, 29.060971 ], [ -113.422852, 28.825425 ], [ -113.274536, 28.753213 ], [ -113.142700, 28.410728 ], [ -112.961426, 28.425222 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.566721 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.171582 ], [ -112.060547, 27.024877 ], [ -112.060547, 24.676970 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.468074 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -113.466797, 26.770135 ], [ -113.598633, 26.637639 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.142257 ], [ -115.054321, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.570923, 27.741885 ], [ -114.197388, 28.115594 ], [ -114.164429, 28.565225 ], [ -114.933472, 29.281608 ], [ -115.521240, 29.554345 ], [ -115.889282, 30.183122 ], [ -116.724243, 31.634676 ], [ -117.125244, 32.537552 ], [ -115.993652, 32.611616 ], [ -114.719238, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.699829, 50.401515 ], [ -125.760498, 50.296358 ], [ -125.419922, 49.951220 ], [ -124.925537, 49.478832 ], [ -123.925781, 49.063069 ], [ -123.513794, 48.512966 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.853638, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.062134, 49.997147 ], [ -128.446655, 50.541363 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 49.001844 ], [ -112.500000, 49.001844 ], [ -122.975464, 49.005447 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.419019 ], [ -127.435913, 50.833698 ], [ -127.996216, 51.716819 ], [ -127.853394, 52.331982 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.539551, 54.803851 ], [ -129.984741, 55.285372 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.172081 ], [ -132.714844, 54.040038 ], [ -131.753540, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.182251, 52.180669 ], [ -131.583252, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.172081 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 48.998240 ], [ -112.500000, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 49.001844 ], [ -112.060547, 40.647304 ], [ -124.315796, 40.647304 ], [ -124.183960, 41.145570 ], [ -124.216919, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.145508, 43.711564 ], [ -123.903809, 45.525592 ], [ -124.085083, 46.867703 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.188063 ], [ -124.568481, 48.381794 ], [ -123.123779, 48.041365 ], [ -122.590942, 47.096305 ], [ -122.343750, 47.361153 ], [ -122.503052, 48.180739 ], [ -122.843628, 49.001844 ], [ -112.060547, 49.001844 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.984741, 55.285372 ], [ -130.539551, 54.803851 ], [ -131.088867, 55.182004 ], [ -131.967773, 55.500639 ], [ -132.061157, 55.776573 ], [ -132.143555, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 48.998240 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -112.060547, 48.998240 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.061157, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.995728, 55.528631 ], [ -130.006714, 55.776573 ], [ -130.012207, 55.918430 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.695341 ], [ -133.357544, 58.410345 ], [ -134.274902, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.990234, 55.528631 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.439453, 59.750861 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.695341 ], [ -131.709595, 56.553428 ], [ -130.012207, 55.918430 ], [ -130.006714, 55.776573 ], [ -129.995728, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.253418, 56.371335 ], [ -133.544312, 57.180925 ], [ -134.082642, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.753628 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.750861 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.990234, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.061157, 55.776573 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.196766 ], [ -135.439453, 59.750861 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.452393, 70.377854 ], [ -125.760498, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.293823, 69.401582 ], [ -123.063354, 69.565226 ], [ -122.684326, 69.856654 ], [ -121.475830, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.229858, 68.841718 ], [ -115.252075, 68.907051 ], [ -113.900757, 68.399180 ], [ -115.307007, 67.904487 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.734435 ], [ -112.060547, 67.753160 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.366767 ], [ -135.000000, 69.478746 ], [ -134.417725, 69.628422 ], [ -132.934570, 69.505689 ], [ -131.434937, 69.945375 ], [ -129.797974, 70.194411 ], [ -129.111328, 69.780850 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.169922, 73.121756 ], [ -114.669800, 72.653038 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.318481, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.224609, 69.281428 ], [ -116.109009, 69.168419 ], [ -117.344971, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.239033 ], [ -113.724976, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.601670 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.404907, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.866821, 72.707005 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.515747, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.223633, 72.521532 ], [ -120.465088, 71.820272 ], [ -120.465088, 71.385142 ], [ -123.096313, 70.902268 ], [ -123.623657, 71.341256 ], [ -125.930786, 71.869909 ], [ -125.502319, 72.292409 ], [ -124.810181, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.672852, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.139038, 70.484566 ], [ -127.446899, 70.377854 ], [ -125.755005, 69.480672 ], [ -124.425659, 70.159017 ], [ -124.288330, 69.399649 ], [ -123.063354, 69.563308 ], [ -122.684326, 69.854762 ], [ -121.470337, 69.797930 ], [ -119.943237, 69.378378 ], [ -117.603149, 69.011579 ], [ -116.224365, 68.841718 ], [ -115.246582, 68.905074 ], [ -113.895264, 68.399180 ], [ -115.307007, 67.902421 ], [ -113.499756, 67.688600 ], [ -112.500000, 67.732354 ], [ -112.060547, 67.751080 ], [ -112.060547, 66.337505 ], [ -135.439453, 66.337505 ], [ -135.439453, 69.362895 ], [ -135.000000, 69.476821 ], [ -134.412231, 69.626510 ], [ -132.929077, 69.505689 ], [ -131.429443, 69.945375 ], [ -129.792480, 70.194411 ], [ -129.105835, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.139038, 70.484566 ] ] ], [ [ [ -115.191650, 73.315246 ], [ -114.164429, 73.121756 ], [ -114.664307, 72.653038 ], [ -112.500000, 72.947042 ], [ -112.439575, 72.955095 ], [ -112.060547, 72.819319 ], [ -112.060547, 68.604513 ], [ -112.500000, 68.580453 ], [ -113.312988, 68.536276 ], [ -113.856812, 69.007643 ], [ -115.219116, 69.279484 ], [ -116.109009, 69.168419 ], [ -117.339478, 69.960439 ], [ -116.674805, 70.067457 ], [ -115.131226, 70.237175 ], [ -113.719482, 70.192550 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -114.351196, 70.599846 ], [ -116.488037, 70.521234 ], [ -117.905273, 70.541373 ], [ -118.432617, 70.909456 ], [ -116.114502, 71.309596 ], [ -117.658081, 71.295509 ], [ -119.399414, 71.557955 ], [ -118.564453, 72.307440 ], [ -117.866821, 72.705372 ], [ -115.191650, 73.315246 ] ] ], [ [ [ -117.405396, 74.140084 ], [ -116.998901, 74.019543 ], [ -116.586914, 73.896587 ], [ -115.510254, 73.475361 ], [ -116.768188, 73.223529 ], [ -119.218140, 72.519882 ], [ -120.459595, 71.820272 ], [ -120.459595, 71.383389 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.339499 ], [ -125.930786, 71.868199 ], [ -125.502319, 72.292409 ], [ -124.804688, 73.022592 ], [ -123.942261, 73.680352 ], [ -124.480591, 74.019543 ], [ -124.678345, 74.140084 ], [ -117.405396, 74.140084 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.541748, 74.449358 ], [ -120.113525, 74.241846 ], [ -117.559204, 74.186555 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.293976 ], [ -121.541748, 74.449358 ] ] ], [ [ [ -112.060547, 75.108343 ], [ -112.060547, 74.447885 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -113.746948, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.016306 ], [ -112.060547, 75.108343 ] ] ], [ [ [ -116.202393, 77.645947 ], [ -116.339722, 76.877034 ], [ -117.108765, 76.530900 ], [ -118.042603, 76.482194 ], [ -119.904785, 76.053213 ], [ -121.503296, 75.900140 ], [ -122.860107, 76.116622 ], [ -121.162720, 76.864556 ], [ -119.108276, 77.512436 ], [ -117.570190, 77.499364 ], [ -116.202393, 77.645947 ] ] ], [ [ [ -112.060547, 75.157673 ], [ -112.500000, 75.145003 ], [ -116.312256, 75.044684 ], [ -117.713013, 75.222263 ], [ -116.350708, 76.199417 ], [ -115.405884, 76.479626 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -112.060547, 75.966895 ], [ -112.060547, 75.157673 ] ] ], [ [ [ -112.060547, 78.099428 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.507684 ], [ -113.538208, 77.732617 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -112.060547, 78.099428 ] ] ], [ [ [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -121.536255, 74.449358 ], [ -120.108032, 74.241846 ], [ -117.553711, 74.185058 ], [ -116.998901, 74.019543 ], [ -116.592407, 73.898111 ], [ -124.288330, 73.898111 ], [ -124.480591, 74.019543 ], [ -124.920044, 74.292489 ], [ -121.536255, 74.449358 ] ] ], [ [ [ -112.060547, 75.106932 ], [ -112.060547, 74.446412 ], [ -112.225342, 74.416926 ], [ -112.500000, 74.413974 ], [ -113.741455, 74.394776 ], [ -113.873291, 74.720932 ], [ -112.500000, 75.014886 ], [ -112.060547, 75.106932 ] ] ], [ [ [ -116.196899, 77.644772 ], [ -116.334229, 76.877034 ], [ -117.108765, 76.529621 ], [ -118.042603, 76.480910 ], [ -119.899292, 76.053213 ], [ -121.497803, 75.900140 ], [ -122.854614, 76.116622 ], [ -121.157227, 76.864556 ], [ -119.102783, 77.512436 ], [ -117.570190, 77.498175 ], [ -116.196899, 77.644772 ] ] ], [ [ [ -112.060547, 75.156266 ], [ -112.500000, 75.143595 ], [ -116.312256, 75.043267 ], [ -117.713013, 75.222263 ], [ -116.345215, 76.199417 ], [ -115.405884, 76.478342 ], [ -112.587891, 76.141643 ], [ -112.500000, 76.113985 ], [ -112.060547, 75.968226 ], [ -112.060547, 75.156266 ] ] ], [ [ [ -112.060547, 78.097163 ], [ -112.060547, 77.412270 ], [ -112.500000, 77.508873 ], [ -113.532715, 77.732617 ], [ -112.725220, 78.050621 ], [ -112.500000, 78.066533 ], [ -112.060547, 78.097163 ] ] ], [ [ [ -112.060547, 78.688336 ], [ -112.060547, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -112.060547, 78.688336 ] ] ] ] } } ] } ] } , @@ -2368,63 +2356,63 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.384429 ], [ -112.500000, -74.611988 ], [ -112.302246, -74.713693 ], [ -111.264038, -74.419877 ], [ -110.066528, -74.791702 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.880981, -74.947983 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.766602, -74.537473 ], [ -101.255493, -74.185058 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, -73.898111 ], [ -89.560547, -79.253586 ], [ -112.939453, -79.253586 ], [ -112.939453, -74.382950 ], [ -112.500000, -74.609072 ], [ -112.296753, -74.713693 ], [ -111.258545, -74.419877 ], [ -110.066528, -74.793143 ], [ -108.715210, -74.909418 ], [ -107.561646, -75.184385 ], [ -106.149902, -75.125274 ], [ -104.875488, -74.949410 ], [ -103.370361, -74.987875 ], [ -102.019043, -75.125274 ], [ -100.645752, -75.301917 ], [ -100.118408, -74.870757 ], [ -100.761108, -74.537473 ], [ -101.250000, -74.185058 ], [ -102.546387, -74.107024 ], [ -102.683716, -74.019543 ], [ -102.870483, -73.898111 ], [ -89.560547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.316162, -72.754296 ], [ -99.140625, -72.909952 ], [ -98.118896, -73.204492 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.615397 ], [ -95.048218, -73.478485 ], [ -93.674927, -73.283674 ], [ -92.444458, -73.164764 ], [ -91.422729, -73.400199 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.560547, -72.853361 ], [ -89.560547, -74.140084 ], [ -101.991577, -74.140084 ], [ -102.546387, -74.105519 ], [ -102.683716, -74.019543 ], [ -103.117676, -73.734289 ], [ -103.331909, -73.360921 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.986816, -71.933048 ], [ -97.888184, -72.070530 ], [ -96.789551, -71.951778 ], [ -96.201782, -72.519882 ], [ -96.987305, -72.442164 ], [ -98.201294, -72.481891 ], [ -99.437256, -72.442164 ], [ -100.788574, -72.500071 ], [ -101.804810, -72.304101 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -103.683472, -72.616970 ], [ -102.919922, -72.754296 ], [ -101.607056, -72.812828 ], [ -100.310669, -72.754296 ], [ -99.135132, -72.911567 ], [ -98.118896, -73.206079 ], [ -97.690430, -73.557967 ], [ -96.339111, -73.616947 ], [ -95.042725, -73.480047 ], [ -93.674927, -73.283674 ], [ -92.438965, -73.166355 ], [ -91.422729, -73.401769 ], [ -90.087891, -73.323130 ], [ -90.000000, -73.245712 ], [ -89.560547, -72.859838 ], [ -89.560547, -74.140084 ], [ -102.002563, -74.140084 ], [ -102.546387, -74.107024 ], [ -102.683716, -74.019543 ], [ -103.112183, -73.734289 ], [ -103.326416, -73.362494 ], [ -103.683472, -72.616970 ] ] ], [ [ [ -101.705933, -71.717159 ], [ -100.431519, -71.854518 ], [ -98.981323, -71.933048 ], [ -97.882690, -72.070530 ], [ -96.789551, -71.953479 ], [ -96.201782, -72.521532 ], [ -96.981812, -72.442164 ], [ -98.195801, -72.481891 ], [ -99.431763, -72.442164 ], [ -100.783081, -72.501722 ], [ -101.799316, -72.305771 ], [ -102.332153, -71.893824 ], [ -101.705933, -71.717159 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.849731, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.895888 ], [ -96.295166, 19.321511 ], [ -95.905151, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.554077, 18.427502 ], [ -92.790527, 18.526492 ], [ -92.037964, 18.708692 ], [ -91.411743, 18.880300 ], [ -90.774536, 19.285221 ], [ -90.538330, 19.870060 ], [ -90.455933, 20.709877 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -91.005249, 17.821916 ], [ -91.005249, 17.256236 ], [ -91.455688, 17.256236 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.472963 ], [ -90.439453, 16.415009 ], [ -90.466919, 16.072207 ], [ -91.752319, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.208252, 14.833302 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.878174, 15.940202 ], [ -94.696655, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.755249 ], [ -96.558838, 15.654776 ], [ -97.267456, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.921249 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.297165 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.316327 ], [ -105.496216, 19.947533 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.535077 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.079375 ], [ -105.270996, 21.422390 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -105.748901, 22.350076 ], [ -97.849731, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.526492 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.774536, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.709877 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.110125 ], [ -89.598999, 21.263781 ], [ -89.560547, 21.274019 ], [ -89.560547, 17.816686 ], [ -90.000000, 17.821916 ], [ -90.999756, 17.816686 ], [ -90.999756, 17.256236 ], [ -91.455688, 17.250990 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.598755, 16.472963 ], [ -90.439453, 16.409740 ], [ -90.466919, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.202759, 14.827991 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.268764 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.376155 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.237762 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.609741, 13.912740 ], [ -91.235962, 13.928736 ], [ -91.691895, 14.131249 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.833302 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.752319, 16.066929 ], [ -90.466919, 16.072207 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.256236 ], [ -91.005249, 17.256236 ], [ -91.005249, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.560547, 17.816686 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.232438 ], [ -89.719849, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.736717 ], [ -90.609741, 13.907408 ], [ -91.230469, 13.928736 ], [ -91.691895, 14.125922 ], [ -92.230225, 14.541050 ], [ -92.202759, 14.827991 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.466919, 16.066929 ], [ -90.439453, 16.409740 ], [ -90.598755, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.250990 ], [ -90.999756, 17.256236 ], [ -90.999756, 17.816686 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.237762 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.560547, 14.237762 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.365513 ], [ -89.560547, 14.376155 ], [ -89.560547, 14.301647 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.232438 ], [ -89.560547, 13.496473 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.093384, 13.736717 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.719849, 14.136576 ], [ -89.560547, 14.232438 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.370834 ], [ -89.560547, 14.301647 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.178373 ], [ -89.598999, 30.164126 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.884399, 29.152161 ], [ -91.631470, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.229980, 29.788217 ], [ -93.850708, 29.716681 ], [ -94.691162, 29.482643 ], [ -95.603027, 28.738764 ], [ -96.597290, 28.309217 ], [ -97.141113, 27.834219 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.691637 ], [ -97.333374, 26.214591 ], [ -97.141113, 25.874052 ], [ -97.531128, 25.844393 ], [ -98.245239, 26.061718 ], [ -99.025269, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.542371 ], [ -100.112915, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.958862, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.112183, 28.974507 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.242798, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.027832, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 41.310824 ], [ -89.560547, 30.173625 ], [ -89.593506, 30.159377 ], [ -89.560547, 30.111870 ], [ -89.560547, 29.224096 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.118574 ], [ -90.878906, 29.147364 ], [ -91.625977, 29.678508 ], [ -92.499390, 29.554345 ], [ -93.224487, 29.783449 ], [ -93.850708, 29.711910 ], [ -94.691162, 29.477861 ], [ -95.597534, 28.738764 ], [ -96.591797, 28.309217 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.377319, 26.691637 ], [ -97.327881, 26.209663 ], [ -97.141113, 25.869109 ], [ -97.531128, 25.839449 ], [ -98.239746, 26.061718 ], [ -99.019775, 26.372185 ], [ -99.299927, 26.838776 ], [ -99.519653, 27.542371 ], [ -100.107422, 28.110749 ], [ -100.453491, 28.695406 ], [ -100.958862, 29.382175 ], [ -101.661987, 29.778682 ], [ -102.480469, 29.759609 ], [ -103.112183, 28.969701 ], [ -103.941650, 29.272025 ], [ -104.458008, 29.573457 ], [ -104.705200, 30.121373 ], [ -105.034790, 30.642638 ], [ -105.633545, 31.085870 ], [ -106.144409, 31.400535 ], [ -106.506958, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.242798, 31.344254 ], [ -111.022339, 31.334871 ], [ -112.500000, 31.793555 ], [ -112.939453, 31.928855 ], [ -112.939453, 41.310824 ], [ -89.560547, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.301761 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.027832, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.242798, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.974507 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.958862, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.112915, 28.110749 ], [ -99.525146, 27.542371 ], [ -99.305420, 26.843677 ], [ -99.025269, 26.372185 ], [ -98.245239, 26.061718 ], [ -97.531128, 25.844393 ], [ -97.141113, 25.874052 ], [ -97.531128, 24.996016 ], [ -97.706909, 24.277012 ], [ -97.778320, 22.933101 ], [ -97.877197, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.902278 ], [ -97.470703, 21.534847 ], [ -105.358887, 21.534847 ], [ -105.606079, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.273847 ], [ -106.029053, 22.776182 ], [ -106.913452, 23.770264 ], [ -107.918701, 24.552120 ], [ -108.402100, 25.175117 ], [ -109.264526, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.445984 ], [ -109.802856, 26.676913 ], [ -110.396118, 27.166695 ], [ -110.643311, 27.863360 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.274780, 29.267233 ], [ -112.500000, 29.587789 ], [ -112.813110, 30.021544 ], [ -112.939453, 30.301761 ] ] ], [ [ [ -112.939453, 28.343065 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.561852 ], [ -112.461548, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.286011, 25.735581 ], [ -110.989380, 25.299338 ], [ -110.714722, 24.826625 ], [ -110.659790, 24.302047 ], [ -110.176392, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.367471 ], [ -109.434814, 23.185813 ], [ -109.857788, 22.821757 ], [ -110.033569, 22.826820 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.676025, 24.487149 ], [ -112.186890, 24.741842 ], [ -112.153931, 25.473033 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.343065 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.939453, 30.306503 ], [ -112.939453, 31.928855 ], [ -112.500000, 31.793555 ], [ -111.022339, 31.334871 ], [ -108.242798, 31.344254 ], [ -108.237305, 31.756196 ], [ -106.506958, 31.756196 ], [ -106.144409, 31.400535 ], [ -105.633545, 31.085870 ], [ -105.034790, 30.642638 ], [ -104.705200, 30.121373 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.272025 ], [ -103.112183, 28.969701 ], [ -102.480469, 29.759609 ], [ -101.661987, 29.778682 ], [ -100.958862, 29.382175 ], [ -100.453491, 28.695406 ], [ -100.107422, 28.110749 ], [ -99.519653, 27.542371 ], [ -99.299927, 26.838776 ], [ -99.019775, 26.372185 ], [ -98.239746, 26.061718 ], [ -97.531128, 25.839449 ], [ -97.141113, 25.869109 ], [ -97.525635, 24.991037 ], [ -97.701416, 24.272005 ], [ -97.778320, 22.933101 ], [ -97.871704, 22.446572 ], [ -97.717896, 21.943046 ], [ -97.701416, 21.897181 ], [ -97.470703, 21.534847 ], [ -105.353394, 21.534847 ], [ -105.600586, 21.871695 ], [ -105.622559, 21.943046 ], [ -105.693970, 22.268764 ], [ -106.029053, 22.776182 ], [ -106.907959, 23.770264 ], [ -107.913208, 24.547123 ], [ -108.402100, 25.170145 ], [ -109.259033, 25.582085 ], [ -109.445801, 25.824617 ], [ -109.291992, 26.441066 ], [ -109.802856, 26.676913 ], [ -110.390625, 27.161808 ], [ -110.643311, 27.858504 ], [ -111.181641, 27.941034 ], [ -111.758423, 28.468691 ], [ -112.230835, 28.955282 ], [ -112.269287, 29.267233 ], [ -112.500000, 29.592565 ], [ -112.807617, 30.021544 ], [ -112.939453, 30.306503 ] ] ], [ [ [ -112.939453, 28.357568 ], [ -112.763672, 27.780772 ], [ -112.500000, 27.566721 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.171582 ], [ -111.615601, 26.662187 ], [ -111.286011, 25.730633 ], [ -110.989380, 25.294371 ], [ -110.709229, 24.826625 ], [ -110.654297, 24.297040 ], [ -110.170898, 24.266997 ], [ -109.769897, 23.810475 ], [ -109.407349, 23.362429 ], [ -109.434814, 23.185813 ], [ -109.852295, 22.816694 ], [ -110.033569, 22.821757 ], [ -110.297241, 23.433009 ], [ -110.950928, 24.001308 ], [ -111.670532, 24.482149 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.468074 ], [ -112.302246, 26.012361 ], [ -112.500000, 26.145576 ], [ -112.939453, 26.431228 ], [ -112.939453, 28.357568 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.015650 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.834961, 48.272225 ], [ -91.642456, 48.140432 ], [ -92.614746, 48.451066 ], [ -93.630981, 48.611122 ], [ -94.334106, 48.672826 ], [ -94.641724, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.163574, 49.001844 ], [ -112.939453, 49.001844 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -112.939453, 48.998240 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.822998, 49.389524 ], [ -94.641724, 48.843028 ], [ -94.334106, 48.672826 ], [ -93.630981, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.834961, 48.272225 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.560547, 48.015650 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.158081, 49.385949 ], [ -94.822998, 49.389524 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.052978 ], [ -89.917603, 64.033744 ], [ -90.000000, 63.990418 ], [ -90.708618, 63.612100 ], [ -90.774536, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.026682 ], [ -94.246216, 60.901060 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.218994, 58.782438 ], [ -92.768555, 57.847674 ], [ -92.301636, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 66.687784 ], [ -89.560547, 64.050575 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.703125, 63.609658 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.158569, 62.024105 ], [ -94.240723, 60.898388 ], [ -94.630737, 60.111408 ], [ -94.685669, 58.950008 ], [ -93.213501, 58.782438 ], [ -92.763062, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.895386, 57.284981 ], [ -90.000000, 57.079560 ], [ -89.560547, 56.977918 ], [ -89.560547, 55.528631 ], [ -112.939453, 55.528631 ], [ -112.939453, 66.687784 ], [ -89.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.213013, 71.921119 ], [ -93.894653, 71.760191 ], [ -92.878418, 71.320155 ], [ -91.521606, 70.192550 ], [ -92.411499, 69.700962 ], [ -90.549316, 69.497994 ], [ -90.554810, 68.475895 ], [ -90.000000, 68.806000 ], [ -89.560547, 69.062675 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.734435 ], [ -110.802612, 67.807170 ], [ -109.951172, 67.982873 ], [ -108.885498, 67.382150 ], [ -107.797852, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.171387, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.155396, 68.800041 ], [ -105.347900, 68.562391 ], [ -104.342651, 68.019910 ], [ -103.222046, 68.097907 ], [ -101.458740, 67.648944 ], [ -99.904175, 67.807170 ], [ -98.448486, 67.782258 ], [ -98.563843, 68.405246 ], [ -97.673950, 68.580453 ], [ -96.124878, 68.240896 ], [ -96.130371, 67.295377 ], [ -95.493164, 68.091759 ], [ -94.685669, 68.065098 ], [ -94.235229, 69.070526 ], [ -95.306396, 69.685711 ], [ -96.476440, 70.089918 ], [ -96.394043, 71.194838 ], [ -95.213013, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.077042 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.699919 ], [ -104.468994, 70.993717 ], [ -102.788086, 70.499241 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.586312 ], [ -102.733154, 69.505689 ], [ -102.095947, 69.121485 ], [ -102.431030, 68.754306 ], [ -104.243774, 68.911005 ], [ -105.963135, 69.180137 ], [ -107.127686, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.538696, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.558376 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.890570 ], [ -112.500000, 72.950264 ], [ -112.445068, 72.956705 ], [ -111.055298, 72.450448 ], [ -109.923706, 72.961534 ], [ -109.011841, 72.633374 ], [ -108.193359, 71.651562 ], [ -107.687988, 72.067147 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -100.360107, 73.844702 ], [ -99.168091, 73.633981 ], [ -97.382812, 73.760425 ], [ -97.124634, 73.470673 ], [ -98.058472, 72.992089 ], [ -96.542358, 72.561085 ], [ -96.723633, 71.660206 ], [ -98.360596, 71.274358 ], [ -99.327393, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.511630 ], [ -102.480469, 72.830674 ], [ -100.442505, 72.707005 ], [ -101.541138, 73.360921 ], [ -100.360107, 73.844702 ] ] ], [ [ [ -98.223267, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.681897 ], [ -96.262207, 69.490297 ], [ -95.652466, 69.107777 ], [ -96.273193, 68.758286 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.952473 ], [ -99.799805, 69.401582 ], [ -98.920898, 69.710489 ], [ -98.223267, 70.144096 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.273682, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.036987, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.498657, 73.863033 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -89.560547, 72.993696 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.560547, 72.993696 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.461293 ], [ -106.600342, 73.601446 ], [ -105.260010, 73.640171 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.921119 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.318396 ], [ -91.521606, 70.190688 ], [ -92.406006, 69.699057 ], [ -90.549316, 69.497994 ], [ -90.549316, 68.475895 ], [ -90.000000, 68.802028 ], [ -89.560547, 69.058749 ], [ -89.560547, 66.337505 ], [ -112.939453, 66.337505 ], [ -112.939453, 67.713612 ], [ -112.500000, 67.732354 ], [ -110.797119, 67.805095 ], [ -109.945679, 67.980813 ], [ -108.880005, 67.382150 ], [ -107.792358, 67.887951 ], [ -108.814087, 68.312057 ], [ -108.165894, 68.654556 ], [ -106.951904, 68.700496 ], [ -106.149902, 68.800041 ], [ -105.342407, 68.560384 ], [ -104.337158, 68.017854 ], [ -103.222046, 68.097907 ], [ -101.453247, 67.646855 ], [ -99.904175, 67.805095 ], [ -98.442993, 67.782258 ], [ -98.558350, 68.403224 ], [ -97.668457, 68.578447 ], [ -96.119385, 68.238859 ], [ -96.124878, 67.293256 ], [ -95.487671, 68.089709 ], [ -94.685669, 68.063046 ], [ -94.235229, 69.068563 ], [ -95.306396, 69.685711 ], [ -96.470947, 70.089918 ], [ -96.388550, 71.194838 ], [ -95.207520, 71.921119 ] ] ], [ [ [ -107.517700, 73.236209 ], [ -106.523438, 73.075443 ], [ -105.402832, 72.672681 ], [ -104.776611, 71.698194 ], [ -104.463501, 70.993717 ], [ -102.788086, 70.497408 ], [ -100.980835, 70.024341 ], [ -101.090698, 69.584396 ], [ -102.733154, 69.503765 ], [ -102.095947, 69.119527 ], [ -102.431030, 68.752315 ], [ -104.238281, 68.909028 ], [ -105.957642, 69.180137 ], [ -107.122192, 69.119527 ], [ -109.000854, 68.780168 ], [ -111.533203, 68.630549 ], [ -112.500000, 68.580453 ], [ -112.939453, 68.556368 ], [ -112.939453, 70.298378 ], [ -112.500000, 70.357552 ], [ -112.417603, 70.366783 ], [ -112.500000, 70.377854 ], [ -112.939453, 70.431280 ], [ -112.939453, 72.888954 ], [ -112.500000, 72.947042 ], [ -112.439575, 72.955095 ], [ -111.049805, 72.450448 ], [ -109.918213, 72.961534 ], [ -109.006348, 72.633374 ], [ -108.187866, 71.651562 ], [ -107.687988, 72.065456 ], [ -108.396606, 73.089829 ], [ -107.517700, 73.236209 ] ] ], [ [ [ -100.354614, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.377319, 73.760425 ], [ -97.119141, 73.470673 ], [ -98.052979, 72.990483 ], [ -96.542358, 72.559438 ], [ -96.718140, 71.660206 ], [ -98.360596, 71.272595 ], [ -99.321899, 71.357067 ], [ -100.014038, 71.737827 ], [ -102.502441, 72.509979 ], [ -102.480469, 72.830674 ], [ -100.437012, 72.705372 ], [ -101.541138, 73.359348 ], [ -100.354614, 73.843173 ] ] ], [ [ [ -98.217773, 70.144096 ], [ -97.157593, 69.860437 ], [ -96.558838, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.267700, 68.756296 ], [ -97.619019, 69.060712 ], [ -98.432007, 68.950500 ], [ -99.799805, 69.399649 ], [ -98.915405, 69.710489 ], [ -98.217773, 70.144096 ] ] ], [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -91.790771, 74.019543 ], [ -90.510864, 73.856925 ], [ -92.005005, 72.966362 ], [ -93.197021, 72.772201 ], [ -94.268188, 72.024815 ], [ -95.410767, 72.062073 ], [ -96.031494, 72.940597 ], [ -96.020508, 73.437821 ], [ -95.493164, 73.863033 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -89.560547, 72.987269 ], [ -89.560547, 71.223149 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.585738 ], [ -90.203247, 72.235514 ], [ -90.000000, 72.476930 ], [ -89.560547, 72.987269 ] ] ], [ [ [ -105.260010, 73.640171 ], [ -104.501953, 73.420588 ], [ -105.380859, 72.760809 ], [ -106.940918, 73.459729 ], [ -106.600342, 73.599895 ], [ -105.260010, 73.640171 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.101006 ], [ -91.785278, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.372314, 73.898111 ], [ -94.932861, 74.019543 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.215332, 76.202037 ], [ -107.819824, 75.846512 ], [ -106.929932, 76.013439 ], [ -105.886230, 75.969558 ], [ -105.710449, 75.480640 ], [ -106.314697, 75.006361 ], [ -109.703979, 74.850672 ], [ -112.225342, 74.418402 ], [ -112.500000, 74.415450 ], [ -112.939453, 74.408070 ], [ -112.939453, 74.922284 ], [ -112.500000, 75.016306 ], [ -111.796875, 75.163300 ], [ -112.500000, 75.145003 ], [ -112.939453, 75.133733 ], [ -112.939453, 76.183684 ], [ -112.593384, 76.141643 ], [ -112.500000, 76.111348 ], [ -110.819092, 75.549340 ], [ -109.072266, 75.473753 ], [ -110.500488, 76.430738 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.609497, 76.779399 ], [ -90.747070, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.749478 ], [ -89.560547, 74.502285 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -92.422485, 74.839183 ], [ -92.768555, 75.388082 ], [ -92.894897, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.965576, 76.442332 ], [ -97.124634, 76.751732 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -94.855957, 75.647708 ], [ -93.982544, 75.297735 ], [ -93.614502, 74.980759 ], [ -94.158325, 74.593027 ], [ -95.614014, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.855957, 75.647708 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.739868, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.162842, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.887451, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.568359, 76.337631 ], [ -101.491699, 76.306457 ], [ -99.986572, 76.646840 ], [ -98.580322, 76.589630 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.807495, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.955078, 78.751731 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.532104, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -100.827026, 78.800913 ], [ -100.063477, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.019874 ], [ -102.952881, 78.343863 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.424805, 78.918720 ], [ -105.474243, 79.171335 ], [ -105.490723, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 76.961573 ], [ -89.560547, 76.726531 ], [ -89.620972, 76.952895 ], [ -89.560547, 76.961573 ] ] ], [ [ [ -111.269531, 78.153679 ], [ -109.857788, 77.997048 ], [ -110.187378, 77.697553 ], [ -112.055054, 77.409876 ], [ -112.500000, 77.507684 ], [ -112.939453, 77.603566 ], [ -112.939453, 77.969600 ], [ -112.725220, 78.051758 ], [ -112.500000, 78.067669 ], [ -111.269531, 78.153679 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.427490, 77.821006 ], [ -93.724365, 77.635365 ], [ -93.845215, 77.520748 ], [ -94.295654, 77.492228 ], [ -96.174316, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.635254, 78.872169 ], [ -97.338867, 78.832874 ], [ -96.756592, 78.766722 ], [ -95.564575, 78.419091 ], [ -95.833740, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.083559 ], [ -98.558350, 78.458723 ], [ -98.635254, 78.872169 ] ] ], [ [ [ -111.500244, 78.850946 ], [ -110.967407, 78.805180 ], [ -109.665527, 78.602900 ], [ -110.885010, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.850946 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.504395, 74.135580 ], [ -92.422485, 74.099501 ], [ -91.790771, 74.019543 ], [ -90.834961, 73.898111 ], [ -95.366821, 73.898111 ], [ -94.504395, 74.135580 ] ] ], [ [ [ -109.583130, 76.794466 ], [ -108.550415, 76.678519 ], [ -108.209839, 76.202037 ], [ -107.819824, 75.845169 ], [ -106.929932, 76.013439 ], [ -105.880737, 75.969558 ], [ -105.704956, 75.479263 ], [ -106.314697, 75.004940 ], [ -109.698486, 74.850672 ], [ -112.225342, 74.416926 ], [ -112.500000, 74.413974 ], [ -112.939453, 74.406593 ], [ -112.939453, 74.920855 ], [ -112.500000, 75.014886 ], [ -111.796875, 75.161894 ], [ -112.500000, 75.143595 ], [ -112.939453, 75.132323 ], [ -112.939453, 76.184995 ], [ -112.587891, 76.141643 ], [ -112.500000, 76.113985 ], [ -110.813599, 75.549340 ], [ -109.066772, 75.473753 ], [ -110.494995, 76.429449 ], [ -109.583130, 76.794466 ] ] ], [ [ [ -96.745605, 77.160825 ], [ -94.685669, 77.098423 ], [ -93.576050, 76.776886 ], [ -91.604004, 76.778142 ], [ -90.741577, 76.450056 ], [ -90.972290, 76.074381 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.560547, 75.750830 ], [ -89.560547, 74.500817 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -92.422485, 74.837747 ], [ -92.768555, 75.386696 ], [ -92.889404, 75.882732 ], [ -93.894653, 76.319455 ], [ -95.960083, 76.441044 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.160825 ] ] ], [ [ [ -94.850464, 75.647708 ], [ -93.977051, 75.296341 ], [ -93.614502, 74.979336 ], [ -94.158325, 74.593027 ], [ -95.608521, 74.667281 ], [ -96.822510, 74.927999 ], [ -96.289673, 75.378379 ], [ -94.850464, 75.647708 ] ] ], [ [ [ -98.497925, 76.720223 ], [ -97.734375, 76.256955 ], [ -97.706909, 75.744068 ], [ -98.157349, 75.000676 ], [ -99.810791, 74.897973 ], [ -100.881958, 75.057437 ], [ -100.865479, 75.640898 ], [ -102.502441, 75.564411 ], [ -102.562866, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.981079, 76.646840 ], [ -98.574829, 76.588356 ], [ -98.497925, 76.720223 ] ] ], [ [ [ -89.560547, 79.253586 ], [ -89.560547, 78.267036 ], [ -90.000000, 78.249150 ], [ -90.802002, 78.215541 ], [ -92.878418, 78.343863 ], [ -93.949585, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.768311, 79.171335 ], [ -93.526611, 79.253586 ], [ -89.560547, 79.253586 ] ] ], [ [ [ -104.798584, 79.253586 ], [ -103.623047, 79.171335 ], [ -103.529663, 79.165141 ], [ -100.827026, 78.800913 ], [ -100.057983, 78.324981 ], [ -99.673462, 77.907616 ], [ -101.304932, 78.018734 ], [ -102.947388, 78.342753 ], [ -105.177612, 78.380430 ], [ -104.210815, 78.677557 ], [ -105.419312, 78.918720 ], [ -105.468750, 79.171335 ], [ -105.485229, 79.253586 ], [ -104.798584, 79.253586 ] ] ], [ [ [ -89.560547, 76.959094 ], [ -89.560547, 76.745436 ], [ -89.615479, 76.951655 ], [ -89.560547, 76.959094 ] ] ], [ [ [ -111.264038, 78.152551 ], [ -109.852295, 77.995905 ], [ -110.187378, 77.697553 ], [ -112.049561, 77.408678 ], [ -112.500000, 77.508873 ], [ -112.939453, 77.604745 ], [ -112.939453, 77.967310 ], [ -112.725220, 78.050621 ], [ -112.500000, 78.066533 ], [ -111.264038, 78.152551 ] ] ], [ [ [ -96.437988, 77.834904 ], [ -94.421997, 77.819847 ], [ -93.718872, 77.634189 ], [ -93.839722, 77.519561 ], [ -94.295654, 77.491038 ], [ -96.168823, 77.555124 ], [ -96.437988, 77.834904 ] ] ], [ [ [ -98.629761, 78.872169 ], [ -97.338867, 78.831810 ], [ -96.756592, 78.765652 ], [ -95.559082, 78.417988 ], [ -95.828247, 78.057443 ], [ -97.311401, 77.851100 ], [ -98.124390, 78.082425 ], [ -98.552856, 78.457624 ], [ -98.629761, 78.872169 ] ] ], [ [ [ -111.500244, 78.849883 ], [ -110.961914, 78.804113 ], [ -109.665527, 78.601815 ], [ -110.879517, 78.406954 ], [ -112.500000, 78.408058 ], [ -112.543945, 78.408058 ], [ -112.527466, 78.550679 ], [ -112.500000, 78.559399 ], [ -111.500244, 78.849883 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.496216, 79.301620 ], [ -103.606567, 79.171335 ], [ -103.529663, 79.166173 ], [ -102.952881, 79.088462 ], [ -105.457764, 79.088462 ], [ -105.474243, 79.171335 ], [ -105.496216, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.137085, 80.723498 ], [ -90.000000, 80.579842 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.944092, 79.088462 ], [ -93.938599, 79.114427 ], [ -93.773804, 79.171335 ], [ -93.147583, 79.380868 ], [ -94.976807, 79.372767 ], [ -96.080933, 79.705852 ], [ -96.712646, 80.158078 ], [ -96.020508, 80.603190 ], [ -95.328369, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.740601, 81.207299 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -91.373291, 81.553847 ], [ -91.587524, 81.894580 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.490723, 79.301620 ], [ -103.623047, 79.171335 ], [ -103.529663, 79.165141 ], [ -102.958374, 79.088462 ], [ -105.452271, 79.088462 ], [ -105.468750, 79.171335 ], [ -105.490723, 79.301620 ] ] ], [ [ [ -92.411499, 81.257537 ], [ -91.131592, 80.723498 ], [ -90.000000, 80.580741 ], [ -89.560547, 80.523935 ], [ -89.560547, 79.088462 ], [ -93.938599, 79.088462 ], [ -93.933105, 79.113389 ], [ -93.768311, 79.171335 ], [ -93.147583, 79.379856 ], [ -94.971313, 79.372767 ], [ -96.075439, 79.704870 ], [ -96.707153, 80.158078 ], [ -96.015015, 80.602293 ], [ -95.322876, 80.907616 ], [ -94.301147, 80.977660 ], [ -94.735107, 81.206460 ], [ -92.411499, 81.257537 ] ] ], [ [ [ -89.560547, 82.101040 ], [ -89.560547, 80.950917 ], [ -90.000000, 81.165215 ], [ -90.197754, 81.260042 ], [ -91.367798, 81.553040 ], [ -91.587524, 81.894580 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -89.560547, 82.101040 ] ] ] ] } } ] } ] } , @@ -2436,289 +2424,289 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.258969 ], [ -73.245850, -80.415707 ], [ -71.444092, -80.689789 ], [ -70.015869, -81.003467 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.389295 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.019409, -79.088462 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -76.849365, -79.514661 ], [ -76.635132, -79.886844 ], [ -75.360718, -80.259898 ], [ -73.245850, -80.416622 ], [ -71.444092, -80.690677 ], [ -70.015869, -81.004326 ], [ -68.192139, -81.317447 ], [ -67.500000, -81.361287 ], [ -67.060547, -81.388473 ], [ -67.060547, -82.732092 ], [ -90.439453, -82.732092 ], [ -90.439453, -79.088462 ], [ -78.019409, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -68.450317, -76.006799 ], [ -69.801636, -76.222983 ], [ -70.603638, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.244873, -76.712650 ], [ -76.931763, -77.104554 ], [ -75.404663, -77.279904 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.789171 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.371460, -73.898111 ], [ -76.223145, -73.968044 ], [ -75.272827, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -73.898111 ], [ -67.060547, -75.775147 ], [ -67.192383, -75.791336 ], [ -67.500000, -75.843825 ], [ -68.444824, -76.006799 ], [ -69.796143, -76.222983 ], [ -70.598145, -76.634147 ], [ -72.207642, -76.673455 ], [ -73.970947, -76.634147 ], [ -75.558472, -76.712650 ], [ -77.239380, -76.712650 ], [ -76.926270, -77.104554 ], [ -75.399170, -77.281113 ], [ -74.284058, -77.555124 ], [ -73.657837, -77.907616 ], [ -74.772949, -78.221149 ], [ -76.497803, -78.123193 ], [ -77.926025, -78.378217 ], [ -77.986450, -78.790239 ], [ -78.024902, -79.171335 ], [ -78.024902, -79.181650 ], [ -77.777710, -79.253586 ], [ -90.439453, -79.253586 ], [ -90.439453, -73.898111 ], [ -76.376953, -73.898111 ], [ -76.223145, -73.969561 ], [ -75.245361, -73.898111 ], [ -67.060547, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.770253 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.340461 ], [ -90.093384, -73.321553 ], [ -90.000000, -73.239377 ], [ -89.230957, -72.557792 ], [ -88.428955, -73.008150 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.086633 ], [ -85.193481, -73.478485 ], [ -83.880615, -73.517493 ], [ -82.666626, -73.635529 ], [ -81.474609, -73.850814 ], [ -80.689087, -73.478485 ], [ -80.299072, -73.126540 ], [ -79.299316, -73.517493 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.635529 ], [ -76.223145, -73.968044 ], [ -74.893799, -73.870665 ], [ -73.855591, -73.655637 ], [ -72.833862, -73.400199 ], [ -71.619873, -73.263122 ], [ -70.213623, -73.145663 ], [ -68.939209, -73.008150 ], [ -67.961426, -72.793339 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.917480, -70.853683 ], [ -68.236084, -70.460697 ], [ -68.488770, -70.108616 ], [ -68.549194, -69.716202 ], [ -68.450317, -69.324139 ], [ -67.977905, -68.952473 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -67.060547, -66.770253 ] ] ], [ [ [ -70.257568, -68.877378 ], [ -69.724731, -69.250312 ], [ -69.494019, -69.622685 ], [ -69.060059, -70.073075 ], [ -68.730469, -70.504742 ], [ -68.455811, -70.954320 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.090811 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.365777 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.660206 ], [ -73.916016, -71.269067 ], [ -73.234863, -71.150520 ], [ -72.075806, -71.189525 ], [ -71.784668, -70.679970 ], [ -71.724243, -70.307635 ], [ -71.746216, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.257568, -68.877378 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -66.772419 ], [ -67.060547, -74.140084 ], [ -90.439453, -74.140084 ], [ -90.439453, -73.342036 ], [ -90.087891, -73.323130 ], [ -90.000000, -73.245712 ], [ -89.225464, -72.559438 ], [ -88.423462, -73.009755 ], [ -87.269897, -73.185434 ], [ -86.017456, -73.088231 ], [ -85.193481, -73.480047 ], [ -83.880615, -73.519052 ], [ -82.666626, -73.637077 ], [ -81.469116, -73.852342 ], [ -80.689087, -73.480047 ], [ -80.293579, -73.126540 ], [ -79.299316, -73.519052 ], [ -77.926025, -73.420588 ], [ -76.909790, -73.637077 ], [ -76.223145, -73.969561 ], [ -74.888306, -73.872191 ], [ -73.850098, -73.655637 ], [ -72.833862, -73.401769 ], [ -71.619873, -73.264704 ], [ -70.208130, -73.147255 ], [ -68.933716, -73.009755 ], [ -67.955933, -72.793339 ], [ -67.500000, -72.549557 ], [ -67.368164, -72.480238 ], [ -67.131958, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.328950 ], [ -67.565918, -71.246122 ], [ -67.917480, -70.853683 ], [ -68.230591, -70.462534 ], [ -68.483276, -70.108616 ], [ -68.543701, -69.718107 ], [ -68.444824, -69.326079 ], [ -67.977905, -68.952473 ], [ -67.582397, -68.542306 ], [ -67.500000, -68.332348 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.327160 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.876188 ], [ -67.060547, -66.772419 ] ] ], [ [ [ -70.252075, -68.879358 ], [ -69.724731, -69.250312 ], [ -69.488525, -69.622685 ], [ -69.060059, -70.074947 ], [ -68.724976, -70.504742 ], [ -68.450317, -70.956113 ], [ -68.334961, -71.406172 ], [ -68.510742, -71.797979 ], [ -68.785400, -72.170034 ], [ -69.960938, -72.307440 ], [ -71.076050, -72.503374 ], [ -72.388916, -72.483545 ], [ -71.900024, -72.092500 ], [ -73.075562, -72.228809 ], [ -74.190674, -72.367441 ], [ -74.954224, -72.072221 ], [ -75.014648, -71.661935 ], [ -73.916016, -71.269067 ], [ -73.229370, -71.152294 ], [ -72.075806, -71.191296 ], [ -71.779175, -70.681787 ], [ -71.724243, -70.309486 ], [ -71.740723, -69.505689 ], [ -71.174927, -69.035176 ], [ -70.252075, -68.879358 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.010620, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.917480, -55.528631 ], [ -68.148193, -55.612487 ], [ -68.642578, -55.581450 ], [ -69.016113, -55.528631 ], [ -67.917480, -55.528631 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.637085, -52.633063 ], [ -68.637085, -54.867124 ], [ -67.500000, -54.867124 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -68.153687, -55.609384 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.010132, -55.053203 ], [ -72.268066, -54.492377 ], [ -73.289795, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.044516 ], [ -72.438354, -53.712965 ], [ -71.109009, -54.072283 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.751709, -42.049293 ], [ -72.152710, -42.252918 ], [ -71.916504, -43.405047 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.334229, -44.406316 ], [ -71.224365, -44.781835 ], [ -71.663818, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.921997, -46.882723 ], [ -72.449341, -47.735629 ], [ -72.333984, -48.242967 ], [ -72.652588, -48.875554 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.376999 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.673835 ], [ -72.333984, -51.423189 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.140231 ], [ -68.576660, -52.298402 ], [ -69.466553, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.010132, -53.833081 ], [ -71.433105, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.707275, -52.832640 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.981689, -51.041394 ], [ -75.481567, -50.376999 ], [ -75.613403, -48.672826 ], [ -75.184937, -47.709762 ], [ -74.130249, -46.939012 ], [ -75.646362, -46.645665 ], [ -74.696045, -45.763691 ], [ -74.355469, -44.099421 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.394165, -42.114524 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.221190 ], [ -74.020386, -41.791793 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.519564 ], [ -68.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.500000, -54.870285 ], [ -67.060547, -54.889246 ], [ -67.060547, -55.015426 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.148193, -55.612487 ], [ -68.642578, -55.581450 ], [ -69.230347, -55.497527 ], [ -69.955444, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.262573, -54.495568 ], [ -73.284302, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.109009, -54.075506 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.932086 ], [ -69.345703, -52.519564 ] ] ], [ [ [ -71.878052, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.746216, -42.053372 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.409038 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.328735, -44.406316 ], [ -71.224365, -44.785734 ], [ -71.658325, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.886477 ], [ -72.449341, -47.739323 ], [ -72.328491, -48.242967 ], [ -72.647095, -48.879167 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.380502 ], [ -72.976685, -50.739932 ], [ -72.312012, -50.677316 ], [ -72.328491, -51.426614 ], [ -71.916504, -52.008555 ], [ -69.499512, -52.143602 ], [ -68.571167, -52.298402 ], [ -69.461060, -52.291683 ], [ -69.944458, -52.536273 ], [ -70.845337, -52.898962 ], [ -71.004639, -53.833081 ], [ -71.427612, -53.855767 ], [ -72.559204, -53.530513 ], [ -73.701782, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.261841, -51.628248 ], [ -74.976196, -51.044848 ], [ -75.481567, -50.376999 ], [ -75.607910, -48.672826 ], [ -75.184937, -47.713458 ], [ -74.124756, -46.939012 ], [ -75.646362, -46.649436 ], [ -74.690552, -45.763691 ], [ -74.349976, -44.103365 ], [ -73.240356, -44.453389 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.118599 ], [ -73.701782, -43.365126 ], [ -74.333496, -43.225193 ], [ -74.020386, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.811646, -40.647304 ], [ -71.878052, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.637085, -52.633063 ], [ -68.252563, -53.097323 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.165650 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.867124 ], [ -68.637085, -54.867124 ], [ -68.637085, -52.633063 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.394593 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.640169 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.142456, -50.729502 ], [ -68.818359, -51.767840 ], [ -68.153687, -52.348763 ], [ -68.576660, -52.298402 ], [ -69.499512, -52.140231 ], [ -71.916504, -52.008555 ], [ -72.333984, -51.423189 ], [ -72.312012, -50.673835 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.376999 ], [ -73.416138, -49.317961 ], [ -72.652588, -48.875554 ], [ -72.333984, -48.242967 ], [ -72.449341, -47.735629 ], [ -71.921997, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.663818, -44.972571 ], [ -71.224365, -44.781835 ], [ -71.334229, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.152710, -42.252918 ], [ -71.751709, -42.049293 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.631592, -52.636397 ], [ -68.252563, -53.100621 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.168866 ], [ -67.060547, -54.889246 ], [ -67.500000, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.398450 ], [ -67.291260, -45.552525 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.687131 ], [ -67.060547, -48.647428 ], [ -67.164917, -48.698212 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.869857 ], [ -68.730469, -50.264765 ], [ -69.136963, -50.732978 ], [ -68.812866, -51.771239 ], [ -68.148193, -52.348763 ], [ -68.571167, -52.298402 ], [ -69.499512, -52.143602 ], [ -71.916504, -52.008555 ], [ -72.328491, -51.426614 ], [ -72.312012, -50.677316 ], [ -72.976685, -50.739932 ], [ -73.328247, -50.380502 ], [ -73.416138, -49.317961 ], [ -72.647095, -48.879167 ], [ -72.328491, -48.242967 ], [ -72.449341, -47.739323 ], [ -71.916504, -46.886477 ], [ -71.553955, -45.560218 ], [ -71.658325, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.328735, -44.406316 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.409038 ], [ -72.147217, -42.252918 ], [ -71.746216, -42.053372 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.878052, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.214111, -21.534847 ], [ -68.098755, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.836946 ], [ -67.060547, -23.200961 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -68.422852, -24.517139 ], [ -68.389893, -26.180089 ], [ -68.598633, -26.504989 ], [ -68.296509, -26.897578 ], [ -69.005127, -27.518015 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.922485, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.086939 ], [ -69.818115, -33.270843 ], [ -69.818115, -34.189086 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.655200 ], [ -71.119995, -37.575059 ], [ -70.817871, -38.552461 ], [ -71.416626, -38.912407 ], [ -71.685791, -39.804316 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.939225 ], [ -73.218384, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.591919, -37.155939 ], [ -73.168945, -37.120906 ], [ -72.553711, -35.505400 ], [ -71.867065, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.916364 ], [ -71.372681, -30.092861 ], [ -71.493530, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.729980, -25.705888 ], [ -70.405884, -23.624395 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.214111, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.208618, -21.534847 ], [ -68.093262, -21.943046 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.104492, -22.735657 ], [ -67.060547, -22.826820 ], [ -67.060547, -23.216107 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -68.417358, -24.517139 ], [ -68.384399, -26.185018 ], [ -68.593140, -26.504989 ], [ -68.296509, -26.897578 ], [ -68.999634, -27.522887 ], [ -69.658813, -28.459033 ], [ -70.015869, -29.367814 ], [ -69.916992, -30.334954 ], [ -70.537720, -31.363018 ], [ -70.076294, -33.091542 ], [ -69.812622, -33.275435 ], [ -69.818115, -34.193630 ], [ -70.389404, -35.169318 ], [ -70.367432, -36.004673 ], [ -71.119995, -36.659606 ], [ -71.119995, -37.575059 ], [ -70.812378, -38.552461 ], [ -71.411133, -38.916682 ], [ -71.680298, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.900024, -40.979898 ], [ -71.856079, -41.310824 ], [ -73.932495, -41.310824 ], [ -73.872070, -40.979898 ], [ -73.679810, -39.943436 ], [ -73.218384, -39.257778 ], [ -73.504028, -38.281313 ], [ -73.586426, -37.155939 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.509872 ], [ -71.861572, -33.906896 ], [ -71.438599, -32.417066 ], [ -71.669312, -30.921076 ], [ -71.372681, -30.097613 ], [ -71.488037, -28.859108 ], [ -70.905762, -27.639740 ], [ -70.724487, -25.705888 ], [ -70.405884, -23.629427 ], [ -70.169678, -21.943046 ], [ -70.114746, -21.534847 ], [ -68.208618, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.679916 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.098755, -21.943046 ], [ -68.214111, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.684984 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.208618, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.200961 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.804316 ], [ -71.416626, -38.912407 ], [ -70.817871, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.125488, -36.655200 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.270843 ], [ -70.076294, -33.086939 ], [ -70.537720, -31.363018 ], [ -69.922485, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.296509, -26.897578 ], [ -68.598633, -26.504989 ], [ -68.389893, -26.180089 ], [ -68.422852, -24.517139 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -67.060547, -23.200961 ] ] ], [ [ [ -67.060547, -22.836946 ], [ -67.109985, -22.735657 ], [ -67.060547, -22.679916 ], [ -67.060547, -22.836946 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.216107 ], [ -67.060547, -41.310824 ], [ -71.856079, -41.310824 ], [ -71.900024, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.680298, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.812378, -38.552461 ], [ -71.119995, -37.575059 ], [ -71.119995, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.193630 ], [ -69.812622, -33.275435 ], [ -70.076294, -33.091542 ], [ -70.537720, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.367814 ], [ -69.658813, -28.459033 ], [ -68.999634, -27.522887 ], [ -68.296509, -26.897578 ], [ -68.593140, -26.504989 ], [ -68.384399, -26.185018 ], [ -68.417358, -24.517139 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -67.060547, -23.216107 ] ] ], [ [ [ -67.060547, -22.826820 ], [ -67.104492, -22.735657 ], [ -67.060547, -22.684984 ], [ -67.060547, -22.826820 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.181274 ], [ -69.581909, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.697021, -3.738190 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.416626, -2.339438 ], [ -71.779175, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.075562, -2.306506 ], [ -73.663330, -1.257834 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.021362, 0.439449 ], [ -70.021362, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.812378, -2.257106 ], [ -71.411133, -2.344926 ], [ -71.773682, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.070068, -2.306506 ], [ -73.657837, -1.257834 ], [ -74.124756, -1.005197 ], [ -74.443359, -0.532829 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.453613, 0.439449 ], [ -70.021362, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.234375, -0.906334 ], [ -75.547485, -1.559866 ], [ -76.640625, -2.608352 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.869735 ], [ -78.640137, -4.543570 ], [ -79.205933, -4.954142 ], [ -79.628906, -4.450474 ], [ -80.029907, -4.340934 ], [ -80.447388, -4.423090 ], [ -80.469360, -4.056056 ], [ -80.189209, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.652251 ], [ -79.991455, -2.218684 ], [ -80.370483, -2.679687 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.960677 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.906334 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.040894, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.453613, 0.439449 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.800171, 0.082397 ], [ -75.651855, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.234375, -0.911827 ], [ -75.547485, -1.559866 ], [ -76.635132, -2.608352 ], [ -77.838135, -3.003384 ], [ -78.453369, -3.875216 ], [ -78.640137, -4.549046 ], [ -79.205933, -4.959615 ], [ -79.623413, -4.455951 ], [ -80.029907, -4.346411 ], [ -80.441895, -4.423090 ], [ -80.469360, -4.061536 ], [ -80.183716, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.985962, -2.218684 ], [ -80.370483, -2.685174 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.966167 ], [ -80.936279, -1.060120 ], [ -80.584717, -0.906334 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.453613, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.257834 ], [ -73.075562, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.779175, -2.169281 ], [ -71.416626, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.738190 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.247812 ], [ -70.933228, -4.401183 ], [ -71.751709, -4.592852 ], [ -72.894287, -5.271478 ], [ -72.965698, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.626414 ], [ -73.729248, -6.915521 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.520427 ], [ -73.575439, -8.423470 ], [ -73.020630, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.049994 ], [ -71.306763, -10.077037 ], [ -70.482788, -9.486990 ], [ -70.548706, -11.005904 ], [ -70.098267, -11.119117 ], [ -69.532471, -10.946585 ], [ -68.670044, -12.559925 ], [ -68.884277, -12.897489 ], [ -68.933716, -13.597939 ], [ -68.950195, -14.450639 ], [ -69.340210, -14.950092 ], [ -69.164429, -15.321274 ], [ -69.395142, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.575957 ], [ -69.862061, -18.088423 ], [ -70.372925, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.449097, -16.357039 ], [ -75.239868, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.426392, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.096313, -10.374362 ], [ -79.041138, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.540771, -6.539103 ], [ -81.254883, -6.135093 ], [ -80.930786, -5.687050 ], [ -81.414185, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.469360, -4.056056 ], [ -80.447388, -4.423090 ], [ -80.029907, -4.340934 ], [ -79.628906, -4.450474 ], [ -79.205933, -4.954142 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.869735 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.906334 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.532829 ], [ -74.124756, -1.005197 ], [ -73.657837, -1.257834 ], [ -73.070068, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.773682, -2.169281 ], [ -71.411133, -2.344926 ], [ -70.812378, -2.257106 ], [ -70.048828, -2.723583 ], [ -70.691528, -3.743671 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.253290 ], [ -70.927734, -4.401183 ], [ -71.746216, -4.592852 ], [ -72.894287, -5.276948 ], [ -72.965698, -5.741708 ], [ -73.218384, -6.091398 ], [ -73.119507, -6.631870 ], [ -73.723755, -6.920974 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.525873 ], [ -73.569946, -8.423470 ], [ -73.015137, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.482788, -9.492408 ], [ -70.548706, -11.011297 ], [ -70.092773, -11.124507 ], [ -69.526978, -10.951978 ], [ -68.664551, -12.559925 ], [ -68.878784, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.340210, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.581194 ], [ -69.856567, -18.093644 ], [ -70.372925, -18.349312 ], [ -71.372681, -17.774843 ], [ -71.460571, -17.361125 ], [ -73.443604, -16.357039 ], [ -75.239868, -15.268288 ], [ -76.008911, -14.647368 ], [ -76.420898, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.535278, -6.539103 ], [ -81.249390, -6.135093 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.183716, -3.820408 ], [ -80.469360, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.029907, -4.346411 ], [ -79.623413, -4.455951 ], [ -79.205933, -4.959615 ], [ -78.640137, -4.549046 ], [ -78.453369, -3.875216 ], [ -77.838135, -3.003384 ], [ -76.635132, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.371704, -0.153808 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.575957 ], [ -69.104004, -18.255437 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.225098, -21.493964 ], [ -68.098755, -21.943046 ], [ -67.983398, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.169678, -19.756364 ], [ -70.372925, -18.344098 ], [ -69.862061, -18.088423 ], [ -69.592896, -17.575957 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.581194 ], [ -69.098511, -18.260653 ], [ -68.966675, -18.984220 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.219604, -21.493964 ], [ -68.093262, -21.943046 ], [ -67.977905, -22.350076 ], [ -70.230103, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.349312 ], [ -69.856567, -18.093644 ], [ -69.592896, -17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.983398, -22.350076 ], [ -68.098755, -21.943046 ], [ -68.225098, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.255437 ], [ -69.592896, -17.575957 ], [ -68.961182, -16.499299 ], [ -69.395142, -15.660065 ], [ -69.164429, -15.321274 ], [ -69.340210, -14.950092 ], [ -68.950195, -14.450639 ], [ -68.933716, -13.597939 ], [ -68.884277, -12.897489 ], [ -68.670044, -12.559925 ], [ -69.532471, -10.946585 ], [ -68.790894, -11.032864 ], [ -68.274536, -11.011297 ], [ -68.049316, -10.709189 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.217625 ], [ -67.060547, -22.350076 ], [ -67.977905, -22.350076 ], [ -68.093262, -21.943046 ], [ -68.219604, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.966675, -18.984220 ], [ -69.098511, -18.260653 ], [ -69.592896, -17.581194 ], [ -68.961182, -16.499299 ], [ -69.389648, -15.660065 ], [ -69.158936, -15.326572 ], [ -69.340210, -14.955399 ], [ -68.950195, -14.455958 ], [ -68.928223, -13.603278 ], [ -68.878784, -12.897489 ], [ -68.664551, -12.559925 ], [ -69.526978, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.217625 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -68.049316, -10.709189 ], [ -68.274536, -11.011297 ], [ -68.790894, -11.032864 ], [ -69.532471, -10.946585 ], [ -70.098267, -11.119117 ], [ -70.548706, -11.005904 ], [ -70.482788, -9.486990 ], [ -71.306763, -10.077037 ], [ -72.185669, -10.049994 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.020630, -9.031578 ], [ -73.575439, -8.423470 ], [ -73.987427, -7.520427 ], [ -73.723755, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.626414 ], [ -73.223877, -6.085936 ], [ -72.965698, -5.736243 ], [ -72.894287, -5.271478 ], [ -71.751709, -4.592852 ], [ -70.933228, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.581909, -0.549308 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.217625 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.526978, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.011297 ], [ -70.482788, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.185669, -10.055403 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.525873 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.920974 ], [ -73.119507, -6.631870 ], [ -73.218384, -6.091398 ], [ -72.965698, -5.741708 ], [ -72.894287, -5.276948 ], [ -71.746216, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.253290 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.335432 ], [ -86.846924, 20.853679 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.440186, 19.476950 ], [ -87.841187, 18.260653 ], [ -88.093872, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.851929, 17.884659 ], [ -89.033203, 18.004856 ], [ -89.154053, 17.957832 ], [ -89.148560, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.740703 ], [ -90.280151, 21.002471 ], [ -90.000000, 21.115249 ], [ -89.604492, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.257044 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.588501, 19.041349 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.884659 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.957832 ], [ -89.143066, 17.806226 ], [ -90.000000, 17.821916 ], [ -90.439453, 17.821916 ], [ -90.439453, 20.730428 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.110125 ], [ -89.598999, 21.263781 ], [ -88.544312, 21.493964 ], [ -87.659912, 21.458181 ], [ -87.050171, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.020020 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.522339, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.159546, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.148560, 14.679254 ], [ -89.357300, 14.429360 ], [ -89.588013, 14.365513 ], [ -89.538574, 14.248411 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.939399 ], [ -90.065918, 13.886079 ], [ -90.098877, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.928833, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.875778 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.588013, 14.360191 ], [ -89.533081, 14.243087 ], [ -89.719849, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.736717 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.349312 ], [ -88.126831, 18.077979 ], [ -88.286133, 17.649257 ], [ -88.198242, 17.492150 ], [ -88.308105, 17.135541 ], [ -88.242188, 17.041029 ], [ -88.357544, 16.530898 ], [ -88.555298, 16.267414 ], [ -88.736572, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.020020 ], [ -89.148560, 17.811456 ], [ -89.154053, 17.957832 ], [ -89.033203, 18.004856 ], [ -88.851929, 17.884659 ], [ -88.494873, 18.490029 ], [ -88.302612, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.357544, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.731079, 16.235772 ], [ -88.928833, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.957832 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.489380, 18.484819 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.357300, 14.429360 ], [ -89.060669, 14.344226 ], [ -88.846436, 14.141902 ], [ -88.544312, 13.982046 ], [ -88.505859, 13.848747 ], [ -88.066406, 13.966054 ], [ -87.863159, 13.896744 ], [ -87.725830, 13.790071 ], [ -87.797241, 13.389620 ], [ -87.907104, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.098877, 13.736717 ], [ -90.065918, 13.886079 ], [ -90.000000, 13.939399 ], [ -89.725342, 14.136576 ], [ -89.538574, 14.248411 ], [ -89.588013, 14.365513 ], [ -89.357300, 14.429360 ] ] ] } } +{ "type": "Feature", "properties": { "name": "El Salvador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.351807, 14.424040 ], [ -89.060669, 14.338904 ], [ -88.840942, 14.141902 ], [ -88.538818, 13.982046 ], [ -88.505859, 13.843414 ], [ -88.066406, 13.966054 ], [ -87.857666, 13.891411 ], [ -87.725830, 13.784737 ], [ -87.791748, 13.384276 ], [ -87.901611, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.840942, 13.261333 ], [ -89.258423, 13.459080 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.667338 ], [ -90.093384, 13.736717 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.719849, 14.136576 ], [ -89.533081, 14.243087 ], [ -89.588013, 14.360191 ], [ -89.351807, 14.424040 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.006470, 16.008856 ], [ -85.687866, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.913791 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.860958 ], [ -84.369507, 15.839820 ], [ -84.067383, 15.649486 ], [ -83.776245, 15.427206 ], [ -83.413696, 15.273587 ], [ -83.150024, 14.997852 ], [ -83.490601, 15.019075 ], [ -83.633423, 14.881087 ], [ -83.979492, 14.753635 ], [ -84.232178, 14.753635 ], [ -84.451904, 14.626109 ], [ -84.649658, 14.668626 ], [ -84.825439, 14.822681 ], [ -84.929810, 14.790817 ], [ -85.056152, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.517578, 14.083301 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.099854, 14.040673 ], [ -86.314087, 13.774066 ], [ -86.522827, 13.779402 ], [ -86.759033, 13.758060 ], [ -86.737061, 13.266680 ], [ -86.885376, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.988500 ], [ -87.489624, 13.298757 ], [ -87.797241, 13.389620 ], [ -87.725830, 13.790071 ], [ -87.863159, 13.896744 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.848747 ], [ -88.544312, 13.982046 ], [ -88.846436, 14.141902 ], [ -89.060669, 14.344226 ], [ -89.357300, 14.429360 ], [ -89.148560, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.159546, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.691798 ], [ -87.907104, 15.866242 ], [ -87.615967, 15.882093 ], [ -87.528076, 15.797539 ], [ -87.368774, 15.850389 ], [ -86.907349, 15.760536 ], [ -86.445923, 15.786968 ], [ -86.121826, 15.897942 ], [ -86.006470, 16.008856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.956048 ], [ -85.446167, 15.887376 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.998295 ], [ -84.528809, 15.855674 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.776245, 15.421910 ], [ -83.408203, 15.268288 ], [ -83.144531, 14.997852 ], [ -83.490601, 15.013769 ], [ -83.627930, 14.881087 ], [ -83.973999, 14.748323 ], [ -84.226685, 14.748323 ], [ -84.451904, 14.620794 ], [ -84.649658, 14.668626 ], [ -84.819946, 14.817371 ], [ -84.924316, 14.790817 ], [ -85.050659, 14.551684 ], [ -85.149536, 14.562318 ], [ -85.166016, 14.354870 ], [ -85.512085, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.803223, 13.838080 ], [ -86.094360, 14.040673 ], [ -86.314087, 13.768731 ], [ -86.522827, 13.779402 ], [ -86.753540, 13.752725 ], [ -86.731567, 13.261333 ], [ -86.879883, 13.255986 ], [ -87.006226, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.725830, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.843414 ], [ -88.538818, 13.982046 ], [ -88.840942, 14.141902 ], [ -89.060669, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.225464, 14.875778 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.347762 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.845105 ], [ -86.901855, 15.755249 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.892659 ], [ -86.000977, 16.003576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.019075 ], [ -83.150024, 14.997852 ], [ -83.237915, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.523560, 13.571242 ], [ -83.556519, 13.127629 ], [ -83.501587, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.323903 ], [ -83.721313, 11.894228 ], [ -83.655396, 11.630716 ], [ -83.858643, 11.377724 ], [ -83.809204, 11.108337 ], [ -83.660889, 10.941192 ], [ -83.897095, 10.730778 ], [ -84.193726, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.677124, 11.086775 ], [ -84.907837, 10.957371 ], [ -85.567017, 11.221510 ], [ -85.715332, 11.092166 ], [ -86.061401, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.146746 ], [ -87.171021, 12.463396 ], [ -87.670898, 12.913552 ], [ -87.561035, 13.068777 ], [ -87.396240, 12.918907 ], [ -87.319336, 12.988500 ], [ -87.006226, 13.025966 ], [ -86.885376, 13.255986 ], [ -86.737061, 13.266680 ], [ -86.759033, 13.758060 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.774066 ], [ -86.099854, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.517578, 14.083301 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.056152, 14.551684 ], [ -84.929810, 14.790817 ], [ -84.825439, 14.822681 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.626109 ], [ -84.232178, 14.753635 ], [ -83.979492, 14.753635 ], [ -83.633423, 14.881087 ], [ -83.490601, 15.019075 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.013769 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.281860, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.318536 ], [ -83.721313, 11.894228 ], [ -83.649902, 11.630716 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.941192 ], [ -83.897095, 10.725381 ], [ -84.188232, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.319336, 12.983148 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.255986 ], [ -86.731567, 13.261333 ], [ -86.753540, 13.752725 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.768731 ], [ -86.094360, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.512085, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.050659, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.620794 ], [ -84.226685, 14.748323 ], [ -83.973999, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.013769 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.107300, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.602417, 21.017855 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.287961 ], [ -74.300537, 20.050771 ], [ -74.965210, 19.926877 ], [ -75.635376, 19.875226 ], [ -76.327515, 19.957860 ], [ -77.755737, 19.859727 ], [ -77.085571, 20.416717 ], [ -77.497559, 20.673905 ], [ -78.140259, 20.740703 ], [ -78.486328, 21.033237 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.107300, 22.350076 ] ] ], [ [ [ -83.254395, 22.350076 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.369507, 22.350076 ], [ -83.254395, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.991943, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.111816, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.248901, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.364014, 22.350076 ], [ -83.248901, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.567017, 11.221510 ], [ -84.907837, 10.957371 ], [ -84.677124, 11.086775 ], [ -84.358521, 11.000512 ], [ -84.193726, 10.795537 ], [ -83.897095, 10.730778 ], [ -83.660889, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.995901 ], [ -82.551270, 9.568251 ], [ -82.935791, 9.481572 ], [ -82.930298, 9.074976 ], [ -82.721558, 8.928487 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.629903 ], [ -82.913818, 8.428904 ], [ -82.968750, 8.227801 ], [ -83.512573, 8.450639 ], [ -83.715820, 8.657057 ], [ -83.600464, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.913574, 9.291886 ], [ -84.303589, 9.492408 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.801091 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.665894, 9.936388 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.444598 ], [ -85.660400, 10.757763 ], [ -85.946045, 10.898042 ], [ -85.567017, 11.221510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Costa Rica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.358521, 11.000512 ], [ -84.188232, 10.795537 ], [ -83.897095, 10.725381 ], [ -83.655396, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.990491 ], [ -82.545776, 9.568251 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.721558, 8.923060 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.616998 ], [ -79.024658, 9.557417 ], [ -79.063110, 9.459899 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.733765, 8.950193 ], [ -77.354736, 8.673348 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.514981 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.390865 ], [ -78.623657, 8.722218 ], [ -79.123535, 8.999026 ], [ -79.562988, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.167236, 8.336518 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.007935, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.425415, 7.275292 ], [ -80.886841, 7.220800 ], [ -81.062622, 7.819847 ], [ -81.194458, 7.651109 ], [ -81.524048, 7.710992 ], [ -81.721802, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.968750, 8.227801 ], [ -82.913818, 8.428904 ], [ -82.831421, 8.629903 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.928487 ], [ -82.930298, 9.074976 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.999026 ], [ -81.809692, 8.955619 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.952759, 8.863362 ], [ -80.524292, 9.112945 ], [ -79.920044, 9.313569 ], [ -79.573975, 9.616998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.934115 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.509535 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.385431 ], [ -78.623657, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.133789, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.831421, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.568251 ], [ -82.188721, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.716309, 9.031578 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.524292, 9.112945 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.889887 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.799683, 18.526492 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jamaica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -77.568970, 18.490029 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.875226 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.949463, 18.620219 ], [ -71.691284, 18.318026 ], [ -71.713257, 18.046644 ], [ -72.377930, 18.218916 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.927002, 18.036198 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.454590, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.339478, 18.672267 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.416138, 19.642588 ], [ -73.190918, 19.916548 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.581177, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.625366, 19.171113 ], [ -71.702271, 18.786717 ], [ -71.943970, 18.615013 ], [ -71.685791, 18.318026 ], [ -71.707764, 18.046644 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.459839, 18.344098 ], [ -74.371948, 18.667063 ], [ -73.449097, 18.526492 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.103648 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.592407, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.219116, 19.627066 ], [ -69.955444, 19.652934 ], [ -69.774170, 19.295590 ], [ -69.224854, 19.316327 ], [ -69.257812, 19.015384 ], [ -68.812866, 18.984220 ], [ -68.318481, 18.615013 ], [ -68.692017, 18.208480 ], [ -69.169922, 18.427502 ], [ -69.625854, 18.385805 ], [ -69.955444, 18.432713 ], [ -70.136719, 18.250220 ], [ -70.521240, 18.187607 ], [ -70.669556, 18.427502 ], [ -71.004639, 18.286734 ], [ -71.405640, 17.602139 ], [ -71.658325, 17.759150 ], [ -71.713257, 18.046644 ], [ -71.691284, 18.318026 ], [ -71.949463, 18.620219 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.592407, 19.885557 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.295590 ], [ -69.224854, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.692017, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.625854, 18.380592 ], [ -69.955444, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.759150 ], [ -71.707764, 18.046644 ], [ -71.685791, 18.318026 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.757202, 12.441941 ], [ -71.400146, 12.377563 ], [ -71.141968, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.976929, 11.609193 ], [ -72.229614, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.910767, 10.455402 ], [ -73.031616, 9.741542 ], [ -73.306274, 9.156333 ], [ -72.789917, 9.085824 ], [ -72.663574, 8.629903 ], [ -72.443848, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.449341, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.098267, 6.964597 ], [ -69.389648, 6.102322 ], [ -68.988647, 6.211551 ], [ -68.269043, 6.156939 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -69.818115, 1.719102 ], [ -69.807129, 1.093073 ], [ -69.219360, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.181274 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.377197, -0.148315 ], [ -75.646362, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.294556, 0.417477 ], [ -76.580200, 0.258178 ], [ -77.426147, 0.400998 ], [ -77.673340, 0.829439 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.667603, 2.268084 ], [ -78.431396, 2.630301 ], [ -77.937012, 2.701635 ], [ -77.514038, 3.326986 ], [ -77.129517, 3.853293 ], [ -77.497559, 4.088932 ], [ -77.310791, 4.669505 ], [ -77.536011, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.481079, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.673348 ], [ -76.838379, 8.640765 ], [ -76.091309, 9.340672 ], [ -75.679321, 9.443643 ], [ -75.668335, 9.774025 ], [ -75.481567, 10.622817 ], [ -74.910278, 11.086775 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.313094 ], [ -73.416138, 11.232286 ], [ -72.630615, 11.732924 ], [ -72.240601, 11.958723 ], [ -71.757202, 12.441941 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.377563 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.775948 ], [ -71.971436, 11.609193 ], [ -72.229614, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.026123, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.658081, 8.624472 ], [ -72.438354, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.443848, 7.422389 ], [ -72.196655, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.102322 ], [ -68.983154, 6.206090 ], [ -68.263550, 6.151478 ], [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.716264 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.641276 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.861855 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.604237 ], [ -69.450073, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.713745, -0.439449 ], [ -74.575195, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.326986 ], [ -77.129517, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.669505 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.934115 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.640765 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.196167, 11.313094 ], [ -73.416138, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.240601, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.957832 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.587402, 11.463874 ], [ -68.884277, 11.447723 ], [ -68.236084, 10.887254 ], [ -68.197632, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -68.269043, 6.156939 ], [ -68.988647, 6.211551 ], [ -69.389648, 6.102322 ], [ -70.098267, 6.964597 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.202148, 7.340675 ], [ -72.449341, 7.427837 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.443848, 8.407168 ], [ -72.663574, 8.629903 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.156333 ], [ -73.031616, 9.741542 ], [ -72.910767, 10.455402 ], [ -72.619629, 10.822515 ], [ -72.229614, 11.113727 ], [ -71.976929, 11.609193 ], [ -71.334229, 11.781325 ], [ -71.361694, 11.544616 ], [ -71.949463, 11.426187 ], [ -71.625366, 10.973550 ], [ -71.636353, 10.450000 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.074976 ], [ -71.268311, 9.140063 ], [ -71.043091, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.405640, 10.973550 ], [ -70.158691, 11.377724 ], [ -70.296021, 11.851223 ], [ -69.944458, 12.162856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.581909, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.230591, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.574222 ], [ -67.060547, 1.861855 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.641276 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.716264 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -68.263550, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.102322 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.196655, 7.340675 ], [ -72.443848, 7.422389 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.438354, 8.407168 ], [ -72.658081, 8.624472 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.150909 ], [ -73.026123, 9.736128 ], [ -72.905273, 10.450000 ], [ -72.614136, 10.822515 ], [ -72.229614, 11.108337 ], [ -71.971436, 11.609193 ], [ -71.334229, 11.775948 ], [ -71.361694, 11.539234 ], [ -71.949463, 11.420802 ], [ -71.619873, 10.968157 ], [ -71.630859, 10.444598 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.069551 ], [ -71.262817, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.153198, 11.377724 ], [ -70.296021, 11.845847 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.829439 ], [ -77.426147, 0.400998 ], [ -76.580200, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.646362, 0.000000 ], [ -75.377197, -0.148315 ], [ -75.327759, -0.439449 ], [ -80.452881, -0.439449 ], [ -80.403442, -0.280150 ], [ -80.238647, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.095825, 0.769020 ], [ -79.546509, 0.983228 ], [ -78.859863, 1.384143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ecuador" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.378651 ], [ -77.854614, 0.807468 ], [ -77.667847, 0.823946 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.800171, 0.082397 ], [ -75.651855, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.322266, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.983228 ], [ -78.854370, 1.378651 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.327759, -0.439449 ], [ -75.377197, -0.148315 ], [ -75.108032, -0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.575195, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.371704, -0.153808 ], [ -75.108032, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.181274 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.455566, 0.708600 ], [ -69.257812, 0.604237 ], [ -69.219360, 0.988720 ], [ -69.807129, 1.093073 ], [ -69.818115, 1.719102 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.131518 ], [ -67.060547, 1.137010 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.450073, 0.708600 ], [ -69.252319, 0.604237 ], [ -69.219360, 0.983228 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.971436, 41.310824 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.350220, 40.630630 ], [ -73.987427, 40.630630 ], [ -73.954468, 40.751418 ], [ -74.262085, 40.476203 ], [ -73.965454, 40.430224 ], [ -74.179688, 39.711413 ], [ -74.910278, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.499802 ], [ -75.322266, 38.963680 ], [ -75.075073, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.382690, 38.017804 ], [ -75.942993, 37.217206 ], [ -76.036377, 37.260938 ], [ -75.723267, 37.939865 ], [ -76.234131, 38.320111 ], [ -76.354980, 39.151363 ], [ -76.547241, 38.719805 ], [ -76.333008, 38.087013 ], [ -76.992188, 38.242495 ], [ -76.305542, 37.918201 ], [ -76.261597, 36.967449 ], [ -75.975952, 36.901587 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.554574 ], [ -76.365967, 34.809293 ], [ -77.398682, 34.515610 ], [ -78.057861, 33.929688 ], [ -78.557739, 33.865854 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.304565, 32.509762 ], [ -80.870361, 32.036020 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.732393 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.540771, 28.473520 ], [ -80.535278, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.209663 ], [ -80.134277, 25.819672 ], [ -80.381470, 25.209911 ], [ -80.683594, 25.080624 ], [ -81.172485, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.874052 ], [ -82.243652, 26.730893 ], [ -82.710571, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.104177 ], [ -83.710327, 29.940655 ], [ -84.100342, 30.092861 ], [ -85.111084, 29.640320 ], [ -85.292358, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.533569, 30.278044 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.598999, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.434204, 29.492206 ], [ -89.219971, 29.291190 ], [ -89.412231, 29.161756 ], [ -89.780273, 29.310351 ], [ -90.000000, 29.200123 ], [ -90.159302, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.971436, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.938477, 41.310824 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.328247, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.954468, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.525513, 39.499802 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.784063 ], [ -75.058594, 38.406254 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.151363 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.063110, 33.495598 ], [ -79.205933, 33.160547 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.442724 ], [ -81.491089, 30.727671 ], [ -81.315308, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.473520 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.331787, 25.641526 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.887639 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.635546 ], [ -85.286865, 29.688053 ], [ -85.775757, 30.154627 ], [ -86.401978, 30.401307 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.387092 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.291190 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.118574 ], [ -90.439453, 29.132970 ], [ -90.439453, 41.310824 ], [ -71.938477, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -87.044678, 21.534847 ], [ -87.132568, 21.534847 ], [ -87.055664, 21.545066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mexico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.545066 ], [ -87.039185, 21.534847 ], [ -87.127075, 21.534847 ], [ -87.050171, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.195190, 25.214881 ], [ -77.893066, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.195190, 25.214881 ] ] ], [ [ [ -77.794189, 27.044449 ], [ -77.003174, 26.593439 ], [ -77.173462, 25.883937 ], [ -77.360229, 26.007424 ], [ -77.343750, 26.534480 ], [ -77.788696, 26.926968 ], [ -77.794189, 27.044449 ] ] ], [ [ [ -78.513794, 26.873081 ], [ -77.854614, 26.843677 ], [ -77.821655, 26.583615 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.513794, 26.873081 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.209911 ], [ -77.887573, 25.170145 ], [ -77.541504, 24.342092 ], [ -77.536011, 23.760209 ], [ -77.777710, 23.709924 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.209911 ] ] ], [ [ [ -77.788696, 27.039557 ], [ -76.997681, 26.588527 ], [ -77.173462, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.338257, 26.529565 ], [ -77.788696, 26.926968 ], [ -77.788696, 27.039557 ] ] ], [ [ [ -78.508301, 26.868181 ], [ -77.849121, 26.838776 ], [ -77.821655, 26.578702 ], [ -78.909302, 26.421390 ], [ -78.980713, 26.789751 ], [ -78.508301, 26.868181 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.271118, 23.190863 ], [ -81.408691, 23.120154 ], [ -80.623169, 23.110049 ], [ -79.683838, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.997437, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.722534, 21.601258 ], [ -79.288330, 21.560393 ], [ -80.222168, 21.830907 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.826172, 22.192491 ], [ -82.172241, 22.390714 ], [ -81.798706, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.172145 ], [ -83.913574, 22.156883 ], [ -84.039917, 21.943046 ], [ -84.056396, 21.912471 ], [ -84.550781, 21.805408 ], [ -84.979248, 21.897181 ], [ -84.902344, 21.943046 ], [ -84.451904, 22.207749 ], [ -84.232178, 22.568366 ], [ -83.781738, 22.791375 ], [ -83.270874, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.271118, 23.190863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.403198, 23.115102 ], [ -80.617676, 23.104997 ], [ -79.678345, 22.766051 ], [ -79.282837, 22.400872 ], [ -78.348999, 22.512557 ], [ -77.991943, 22.278931 ], [ -77.536011, 21.943046 ], [ -76.981201, 21.534847 ], [ -78.700562, 21.534847 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.386963, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.172241, 22.385635 ], [ -81.793213, 22.639363 ], [ -82.776489, 22.690052 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.232178, 22.563293 ], [ -83.776245, 22.786311 ], [ -83.265381, 22.983681 ], [ -82.512817, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.667628 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -68.516235, 49.070267 ], [ -69.955444, 47.746711 ], [ -71.109009, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.301467 ], [ -67.500000, 48.763431 ], [ -67.060547, 48.936935 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.357432 ], [ -68.906250, 47.185979 ], [ -69.241333, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.664062, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.376953, 44.099421 ], [ -76.503296, 44.020472 ], [ -76.821899, 43.632099 ], [ -78.722534, 43.628123 ], [ -79.172974, 43.468868 ], [ -79.013672, 43.273206 ], [ -78.920288, 42.968482 ], [ -78.942261, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.282349, 42.212245 ], [ -82.441406, 41.677015 ], [ -82.694092, 41.677015 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.094849, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.411352 ], [ -84.605713, 46.441642 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.880371, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.305121 ], [ -89.274902, 48.022998 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.191726 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.150627 ], [ -82.441406, 54.284469 ], [ -82.128296, 53.278353 ], [ -81.403198, 52.160455 ], [ -79.914551, 51.210325 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.129028, 54.143132 ], [ -79.832153, 54.670655 ], [ -78.233643, 55.138070 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.664072 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.421694 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -67.500000, 48.759810 ], [ -67.060547, 48.933326 ], [ -67.060547, 45.151053 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.350220, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 55.998381 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.953735, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.441642 ], [ -84.342041, 46.411352 ], [ -84.144287, 46.513516 ], [ -84.094849, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.282349, 42.212245 ], [ -80.249634, 42.366662 ], [ -78.942261, 42.863886 ], [ -78.920288, 42.968482 ], [ -79.013672, 43.273206 ], [ -79.172974, 43.468868 ], [ -78.722534, 43.628123 ], [ -76.821899, 43.632099 ], [ -76.503296, 44.020472 ], [ -76.376953, 44.099421 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.307007, 45.916766 ], [ -70.004883, 46.694667 ], [ -69.241333, 47.450380 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.357432 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.995883 ], [ -67.060547, 44.774036 ], [ -67.500000, 44.570904 ], [ -68.032837, 44.327778 ], [ -69.060059, 43.980958 ], [ -70.120239, 43.687736 ], [ -70.647583, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.338245 ], [ -70.499268, 41.808173 ], [ -70.081787, 41.783601 ], [ -70.186157, 42.147114 ], [ -69.889526, 41.926803 ], [ -69.966431, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.496235 ], [ -71.861572, 41.323201 ], [ -72.295532, 41.273678 ], [ -72.877808, 41.224118 ], [ -73.586426, 40.979898 ], [ -73.712769, 40.934265 ], [ -73.355713, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.031860, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.273315, 40.647304 ], [ -73.987427, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.075317, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.191726 ], [ -90.000000, 48.096426 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.022998 ], [ -88.379517, 48.305121 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.350220, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.770137 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.328247, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.981934, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.069824, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.758208 ], [ -90.439453, 66.687784 ], [ -82.589722, 66.687784 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -86.072388, 66.058175 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.101007 ], [ -89.917603, 64.033744 ], [ -90.439453, 63.758208 ] ] ], [ [ [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.204735 ], [ -77.305298, 58.054632 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.777710, 60.759160 ], [ -78.107300, 62.321555 ], [ -77.415161, 62.552857 ], [ -75.701294, 62.280701 ], [ -74.668579, 62.183451 ], [ -73.844604, 62.446324 ], [ -72.910767, 62.106453 ], [ -71.680298, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.592896, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.958507 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -67.060547, 58.441983 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ] ] ], [ [ [ -79.931030, 62.387824 ], [ -79.524536, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.635117 ], [ -80.101318, 61.718515 ], [ -80.364990, 62.018951 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.387824 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.315449 ], [ -68.016357, 66.264645 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -67.060547, 62.706907 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.331759 ], [ -71.026611, 62.912732 ], [ -72.240601, 63.398902 ], [ -71.889038, 63.680377 ], [ -73.383179, 64.194423 ], [ -74.838867, 64.680318 ], [ -74.822388, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.574395 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.455979 ], [ -74.295044, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.711944 ], [ -83.073120, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.217591 ], [ -84.468384, 65.373705 ], [ -83.886108, 65.111460 ], [ -82.792969, 64.767101 ], [ -81.644897, 64.456218 ], [ -81.557007, 63.980781 ], [ -80.820923, 64.057785 ], [ -80.106812, 63.726615 ], [ -80.991211, 63.413656 ], [ -82.551270, 63.653574 ], [ -83.111572, 64.103406 ], [ -84.105835, 63.570566 ], [ -85.528564, 63.052470 ], [ -85.869141, 63.638943 ], [ -87.225952, 63.543658 ], [ -86.358032, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.044189, 56.851976 ], [ -88.044434, 56.474628 ], [ -87.324829, 56.001453 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 63.753350 ], [ -90.439453, 66.687784 ], [ -82.584229, 66.687784 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -86.066895, 66.055946 ], [ -87.033691, 65.212986 ], [ -87.324829, 64.776466 ], [ -88.483887, 64.098607 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.988009 ], [ -90.439453, 63.753350 ] ] ], [ [ [ -77.601929, 55.528631 ], [ -77.200928, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.624146, 57.201759 ], [ -77.299805, 58.051725 ], [ -78.519287, 58.805207 ], [ -77.338257, 59.853092 ], [ -77.772217, 60.759160 ], [ -78.107300, 62.319003 ], [ -77.409668, 62.550325 ], [ -75.695801, 62.278146 ], [ -74.668579, 62.180887 ], [ -73.839111, 62.443783 ], [ -72.910767, 62.103883 ], [ -71.674805, 61.525314 ], [ -71.372681, 61.137933 ], [ -69.592896, 61.060944 ], [ -69.620361, 60.220719 ], [ -69.285278, 58.958507 ], [ -68.373413, 58.802362 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -67.060547, 58.439108 ], [ -67.060547, 55.528631 ], [ -77.601929, 55.528631 ] ] ], [ [ [ -79.931030, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.157806 ], [ -79.656372, 61.632507 ], [ -80.101318, 61.718515 ], [ -80.359497, 62.016374 ], [ -80.315552, 62.085887 ], [ -79.931030, 62.385277 ] ] ], [ [ [ -67.060547, 66.687784 ], [ -67.060547, 66.357339 ], [ -67.500000, 66.313242 ], [ -68.016357, 66.262434 ], [ -68.142700, 65.689953 ], [ -67.500000, 65.339347 ], [ -67.088013, 65.109148 ], [ -67.060547, 65.099899 ], [ -67.060547, 63.198973 ], [ -67.500000, 63.339808 ], [ -68.785400, 63.746061 ], [ -67.500000, 62.967709 ], [ -67.060547, 62.709425 ], [ -67.060547, 62.065307 ], [ -67.500000, 62.129572 ], [ -68.878784, 62.329208 ], [ -71.021118, 62.910230 ], [ -72.235107, 63.398902 ], [ -71.883545, 63.680377 ], [ -73.377686, 64.194423 ], [ -74.833374, 64.677969 ], [ -74.816895, 64.389816 ], [ -77.711792, 64.230269 ], [ -78.557739, 64.572037 ], [ -77.898560, 65.309535 ], [ -76.019897, 65.327885 ], [ -73.959961, 65.453697 ], [ -74.295044, 65.811781 ], [ -73.943481, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.454590, 66.687784 ], [ -67.060547, 66.687784 ] ] ], [ [ [ -83.248901, 62.915233 ], [ -81.875610, 62.905227 ], [ -81.897583, 62.711944 ], [ -83.067627, 62.160372 ], [ -83.776245, 62.183451 ], [ -83.995972, 62.453946 ], [ -83.248901, 62.915233 ] ] ], [ [ [ -85.885620, 65.739656 ], [ -85.160522, 65.658275 ], [ -84.973755, 65.217591 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.787476, 64.767101 ], [ -81.639404, 64.456218 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.726615 ], [ -80.991211, 63.411198 ], [ -82.545776, 63.651136 ], [ -83.106079, 64.101007 ], [ -84.100342, 63.570566 ], [ -85.523071, 63.052470 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.541211 ], [ -86.352539, 64.036149 ], [ -86.226196, 64.823244 ], [ -85.885620, 65.739656 ] ] ], [ [ [ -90.439453, 57.180925 ], [ -90.000000, 57.079560 ], [ -89.038696, 56.851976 ], [ -88.038940, 56.471594 ], [ -87.324829, 55.998381 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.578003, 55.528631 ], [ -90.439453, 55.528631 ], [ -90.439453, 57.180925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.354004, 73.760425 ], [ -78.068848, 73.652545 ], [ -76.343994, 73.104203 ], [ -76.256104, 72.827430 ], [ -77.316284, 72.856600 ], [ -78.392944, 72.877637 ], [ -79.491577, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.694238 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.523071, 69.883121 ], [ -84.105835, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.968994, 68.132715 ], [ -81.260376, 67.598756 ], [ -81.386719, 67.112340 ], [ -83.073120, 66.513260 ], [ -83.347778, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.803223, 66.513260 ], [ -85.907593, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.546324 ], [ -90.000000, 68.806000 ], [ -89.219971, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.923076 ], [ -85.578003, 68.786132 ], [ -85.523071, 69.883121 ] ] ], [ [ [ -85.830688, 73.804915 ], [ -86.566772, 73.158399 ], [ -85.775757, 72.534726 ], [ -84.852905, 73.340461 ], [ -82.320557, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.768786 ], [ -74.102783, 71.332467 ], [ -72.246094, 71.557955 ], [ -71.202393, 70.920233 ], [ -68.790894, 70.526729 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.277541 ], [ -67.060547, 69.166466 ], [ -67.500000, 69.054822 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.362750 ], [ -67.060547, 68.240896 ], [ -67.060547, 66.357339 ], [ -67.258301, 66.337505 ], [ -73.916016, 66.337505 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.728190 ], [ -73.311768, 68.071253 ], [ -74.844360, 68.556368 ], [ -76.871338, 68.895187 ], [ -76.234131, 69.148876 ], [ -77.288818, 69.771356 ], [ -78.173218, 69.828260 ], [ -78.958740, 70.168337 ], [ -79.497070, 69.873672 ], [ -81.309814, 69.744748 ], [ -84.946289, 69.967967 ], [ -87.061157, 70.261307 ], [ -88.687134, 70.411031 ], [ -89.516602, 70.763396 ], [ -88.472900, 71.219613 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.578796 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.483545 ], [ -89.439697, 73.129728 ], [ -88.412476, 73.539299 ], [ -85.830688, 73.804915 ] ] ], [ [ [ -75.899048, 68.287684 ], [ -75.119019, 68.011685 ], [ -75.108032, 67.584098 ], [ -75.217896, 67.445443 ], [ -75.866089, 67.150765 ], [ -76.992188, 67.099518 ], [ -77.239380, 67.588287 ], [ -76.816406, 68.149077 ], [ -75.899048, 68.287684 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -80.354004, 73.760425 ], [ -78.063354, 73.652545 ], [ -76.338501, 73.102607 ], [ -76.250610, 72.825808 ], [ -77.316284, 72.854981 ], [ -78.392944, 72.876019 ], [ -79.486084, 72.742892 ], [ -79.777222, 72.803086 ], [ -80.875854, 73.332585 ], [ -80.831909, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.523071, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.622681, 69.658996 ], [ -81.282349, 69.162558 ], [ -81.221924, 68.666549 ], [ -81.963501, 68.132715 ], [ -81.260376, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.023438, 66.337505 ], [ -85.012207, 66.337505 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.559192 ], [ -85.797729, 66.513260 ], [ -85.902100, 66.337505 ], [ -90.439453, 66.337505 ], [ -90.439453, 68.542306 ], [ -90.000000, 68.802028 ], [ -89.214478, 69.258095 ], [ -88.016968, 68.614531 ], [ -88.319092, 67.873472 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.578003, 68.784144 ], [ -85.523071, 69.881231 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.775757, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.315063, 73.751205 ], [ -80.601196, 72.716800 ], [ -80.749512, 72.062073 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.749410 ], [ -75.607910, 72.243892 ], [ -74.229126, 71.767067 ], [ -74.097290, 71.330709 ], [ -72.240601, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -67.060547, 69.281428 ], [ -67.060547, 69.164512 ], [ -67.500000, 69.052858 ], [ -68.807373, 68.720441 ], [ -67.500000, 68.360725 ], [ -67.060547, 68.238859 ], [ -67.060547, 66.357339 ], [ -67.247314, 66.337505 ], [ -73.910522, 66.337505 ], [ -73.679810, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.844360, 68.554359 ], [ -76.871338, 68.895187 ], [ -76.228638, 69.146920 ], [ -77.288818, 69.769456 ], [ -78.167725, 69.826365 ], [ -78.958740, 70.166473 ], [ -79.491577, 69.871782 ], [ -81.304321, 69.742846 ], [ -84.946289, 69.966086 ], [ -87.061157, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.511108, 70.761586 ], [ -88.467407, 71.217844 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.585738 ], [ -90.203247, 72.235514 ], [ -90.000000, 72.476930 ], [ -89.434204, 73.129728 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -75.893555, 68.287684 ], [ -75.113525, 68.009628 ], [ -75.102539, 67.582003 ], [ -75.217896, 67.443336 ], [ -75.866089, 67.148632 ], [ -76.986694, 67.099518 ], [ -77.233887, 67.588287 ], [ -76.810913, 68.149077 ], [ -75.893555, 68.287684 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.192505, 75.610897 ], [ -87.841187, 75.567149 ], [ -86.380005, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.062866, 75.338111 ], [ -79.837646, 74.923713 ], [ -80.458374, 74.658563 ], [ -81.952515, 74.443466 ], [ -83.232422, 74.565274 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.769287, 74.516956 ], [ -90.000000, 74.546258 ], [ -90.439453, 74.600322 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.393677, 78.526665 ], [ -76.343994, 78.182963 ], [ -77.893066, 77.900710 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.623413, 76.983861 ], [ -77.915039, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.177490, 76.455203 ], [ -86.116333, 76.299953 ], [ -87.604980, 76.420423 ], [ -89.494629, 76.473203 ], [ -89.620972, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.264160, 77.900710 ], [ -87.654419, 77.970745 ], [ -84.979248, 77.539726 ], [ -86.341553, 78.180713 ], [ -87.962036, 78.372683 ], [ -87.154541, 78.759229 ], [ -85.380249, 78.997626 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.215210, 79.253586 ], [ -86.594238, 79.171335 ], [ -87.192993, 79.039482 ], [ -89.038696, 78.288241 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.215210, 79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.970890 ], [ -90.000000, 75.884072 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.923713 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.099854, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.598864 ], [ -90.439453, 75.970890 ] ] ], [ [ [ -76.146240, 79.253586 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -76.223145, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.983861 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.562744, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.420423 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.769775, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.973755, 77.538540 ], [ -86.341553, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.154541, 78.758158 ], [ -85.380249, 78.996578 ], [ -85.242920, 79.171335 ], [ -85.177002, 79.253586 ], [ -76.146240, 79.253586 ] ] ], [ [ [ -86.209717, 79.253586 ], [ -86.588745, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.249150 ], [ -90.439453, 78.231237 ], [ -90.439453, 79.253586 ], [ -86.209717, 79.253586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.062478 ], [ -69.669800, 76.380383 ], [ -71.405640, 77.008582 ], [ -68.779907, 77.323374 ], [ -67.500000, 77.358285 ], [ -67.060547, 77.369100 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.636542 ], [ -73.300781, 78.044933 ], [ -73.163452, 78.433418 ], [ -69.378662, 78.914496 ], [ -67.500000, 79.164108 ], [ -67.060547, 79.221787 ], [ -67.060547, 77.394300 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.369100 ], [ -67.060547, 76.106073 ], [ -67.500000, 76.092877 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.369100 ] ] ], [ [ [ -67.060547, 77.395499 ], [ -67.500000, 77.421844 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.163075 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.395499 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.660599 ], [ -85.819702, 79.337252 ], [ -86.594238, 79.171335 ], [ -86.973267, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.651713 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -67.060547, 81.503676 ], [ -67.060547, 81.105962 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -69.472046, 80.617529 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.634934 ], [ -73.883057, 79.430356 ], [ -76.909790, 79.324031 ], [ -75.531006, 79.198134 ], [ -75.640869, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.100098, 79.346396 ], [ -86.511841, 79.737217 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.413696, 80.100637 ], [ -81.853638, 80.464970 ], [ -84.100342, 80.580741 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.856256 ], [ -90.000000, 81.163528 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.042699 ], [ -90.104370, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.973267, 82.280168 ], [ -85.501099, 82.652438 ], [ -84.265137, 82.600269 ], [ -83.182983, 82.320646 ], [ -82.694092, 82.676285 ], [ -82.611694, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.637210 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.588745, 79.171335 ], [ -86.967773, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.637210 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.650118 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.899800 ], [ -69.472046, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.909790, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.635376, 79.171335 ], [ -75.959473, 79.088462 ], [ -85.308838, 79.088462 ], [ -85.242920, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.516698 ], [ -89.368286, 80.855383 ], [ -90.000000, 81.165215 ], [ -90.197754, 81.260042 ], [ -90.439453, 81.321593 ], [ -90.439453, 82.042699 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.600269 ], [ -83.177490, 82.319912 ], [ -82.688599, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.221787 ], [ -67.060547, 79.088462 ], [ -68.076782, 79.088462 ], [ -67.060547, 79.221787 ] ] ], [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.027344, 80.117621 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -67.060547, 80.536588 ], [ -67.060547, 79.991442 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.065796, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.991442 ], [ -67.500000, 80.049510 ], [ -68.021851, 80.117621 ], [ -67.500000, 80.359755 ], [ -67.153931, 80.515792 ], [ -67.060547, 80.535685 ], [ -67.060547, 79.991442 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.737549, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -82.770996, 82.620052 ], [ -82.694092, 82.676285 ], [ -82.424927, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.310303, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.723267, 83.064132 ], [ -72.833862, 83.233838 ], [ -68.505249, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.770996, 82.620052 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.501099, 82.652438 ], [ -84.732056, 82.620052 ], [ -85.632935, 82.620052 ], [ -85.501099, 82.652438 ] ] ], [ [ [ -82.765503, 82.620052 ], [ -82.688599, 82.676285 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.020214 ], [ -79.304810, 83.130809 ], [ -76.250610, 83.172076 ], [ -75.717773, 83.064132 ], [ -72.833862, 83.233191 ], [ -68.499756, 83.106457 ], [ -67.500000, 83.077387 ], [ -67.060547, 83.064796 ], [ -67.060547, 82.620052 ], [ -82.765503, 82.620052 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.194336, -82.620052 ], [ -59.078979, -82.676285 ], [ -58.716431, -82.845861 ], [ -58.227539, -83.218288 ], [ -57.013550, -82.865673 ], [ -55.947876, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -82.620052 ], [ -44.560547, -85.088894 ], [ -67.939453, -85.088894 ], [ -67.939453, -82.620052 ], [ -59.188843, -82.620052 ], [ -59.073486, -82.676285 ], [ -58.710938, -82.845861 ], [ -58.222046, -83.218288 ], [ -57.008057, -82.865673 ], [ -55.942383, -82.676285 ], [ -55.634766, -82.620052 ], [ -44.560547, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.709229, -81.474408 ], [ -63.259277, -81.748454 ], [ -61.556396, -82.041938 ], [ -59.694214, -82.375504 ], [ -59.078979, -82.676285 ], [ -58.963623, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -56.260986, -82.732092 ], [ -55.947876, -82.676285 ], [ -55.365601, -82.571206 ], [ -53.624268, -82.258000 ], [ -51.547852, -82.003058 ], [ -49.762573, -81.728721 ], [ -47.274170, -81.708942 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.260986, -82.732092 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.273828 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -46.510620, -80.594217 ], [ -48.389282, -80.829156 ], [ -50.482178, -81.024916 ], [ -52.855225, -80.966455 ], [ -54.168091, -80.632740 ], [ -53.992310, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.628013 ], [ -59.573364, -80.040014 ], [ -59.869995, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.259521, -80.862365 ], [ -64.489746, -80.921494 ], [ -65.742188, -80.587930 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.255251 ], [ -64.039307, -80.294224 ], [ -61.885986, -80.392815 ], [ -61.144409, -79.980935 ], [ -60.611572, -79.628013 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -81.333189 ], [ -67.500000, -81.361287 ], [ -65.703735, -81.474408 ], [ -63.253784, -81.748454 ], [ -61.550903, -82.042699 ], [ -59.688721, -82.375504 ], [ -59.073486, -82.676285 ], [ -58.958130, -82.732092 ], [ -67.939453, -82.732092 ], [ -67.939453, -81.333189 ] ] ], [ [ [ -56.255493, -82.732092 ], [ -55.942383, -82.676285 ], [ -55.365601, -82.571917 ], [ -53.618774, -82.258000 ], [ -51.542358, -82.003822 ], [ -49.762573, -81.729511 ], [ -47.274170, -81.709734 ], [ -45.000000, -81.836284 ], [ -44.824219, -81.846419 ], [ -44.560547, -81.877523 ], [ -44.560547, -82.732092 ], [ -56.255493, -82.732092 ] ] ], [ [ [ -44.560547, -79.088462 ], [ -44.560547, -80.274756 ], [ -44.879150, -80.339497 ], [ -45.000000, -80.357916 ], [ -46.505127, -80.594217 ], [ -48.383789, -80.829156 ], [ -50.482178, -81.025773 ], [ -52.849731, -80.966455 ], [ -54.162598, -80.633634 ], [ -53.986816, -80.221722 ], [ -51.855469, -79.947431 ], [ -50.993042, -79.614158 ], [ -50.355835, -79.171335 ], [ -50.256958, -79.088462 ], [ -44.560547, -79.088462 ] ] ], [ [ [ -60.611572, -79.629002 ], [ -59.573364, -80.040014 ], [ -59.864502, -80.549224 ], [ -60.161133, -81.000030 ], [ -62.254028, -80.863237 ], [ -64.489746, -80.922361 ], [ -65.742188, -80.588829 ], [ -65.742188, -80.549224 ], [ -66.291504, -80.256180 ], [ -64.039307, -80.295150 ], [ -61.885986, -80.392815 ], [ -61.138916, -79.980935 ], [ -60.611572, -79.629002 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.810511 ], [ -49.312134, -78.457624 ], [ -48.663940, -78.046071 ], [ -48.153076, -78.046071 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.105957, -73.898111 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.968384, -74.439046 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.357910, -75.262841 ], [ -65.863037, -75.634085 ], [ -67.197876, -75.791336 ], [ -67.500000, -75.842482 ], [ -67.939453, -75.918862 ], [ -67.939453, -73.898111 ], [ -61.105957, -73.898111 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.664429, -77.831431 ], [ -45.153809, -78.047209 ], [ -45.000000, -78.101694 ], [ -44.560547, -78.255861 ], [ -44.560547, -79.253586 ], [ -50.471191, -79.253586 ], [ -50.355835, -79.171335 ], [ -49.916382, -78.811577 ], [ -49.306641, -78.458723 ], [ -48.658447, -78.047209 ], [ -48.153076, -78.047209 ], [ -46.664429, -77.831431 ] ] ], [ [ [ -61.094971, -73.898111 ], [ -61.259766, -74.019543 ], [ -61.375122, -74.107024 ], [ -61.962891, -74.440519 ], [ -63.297729, -74.576966 ], [ -63.748169, -74.929427 ], [ -64.352417, -75.262841 ], [ -65.863037, -75.635448 ], [ -67.192383, -75.791336 ], [ -67.500000, -75.843825 ], [ -67.939453, -75.920199 ], [ -67.939453, -73.898111 ], [ -61.094971, -73.898111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.561646, -66.337505 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.297485, -66.835165 ], [ -64.885254, -67.148632 ], [ -65.511475, -67.579908 ], [ -65.665283, -67.951963 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.912981 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.990535 ], [ -62.281494, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.517944, -71.088305 ], [ -61.380615, -72.009552 ], [ -61.083984, -72.380747 ], [ -61.007080, -72.773828 ], [ -60.693970, -73.164764 ], [ -60.831299, -73.694238 ], [ -61.265259, -74.019543 ], [ -61.380615, -74.105519 ], [ -61.441040, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.780334 ], [ -67.500000, -72.547910 ], [ -67.373657, -72.480238 ], [ -67.137451, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.327192 ], [ -67.565918, -71.244356 ], [ -67.939453, -70.826640 ], [ -67.939453, -68.911005 ], [ -67.587891, -68.540296 ], [ -67.500000, -68.324234 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.325042 ], [ -67.500000, -67.101656 ], [ -67.252808, -66.874030 ], [ -66.588135, -66.513260 ], [ -66.286011, -66.337505 ], [ -62.561646, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.550659, -66.337505 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.837326 ], [ -64.879761, -67.150765 ], [ -65.505981, -67.582003 ], [ -65.665283, -67.954025 ], [ -65.313721, -68.364776 ], [ -64.786377, -68.678536 ], [ -63.962402, -68.914958 ], [ -63.198853, -69.226945 ], [ -62.786865, -69.618859 ], [ -62.572632, -69.992415 ], [ -62.276001, -70.383387 ], [ -61.809082, -70.716285 ], [ -61.512451, -71.088305 ], [ -61.375122, -72.009552 ], [ -61.083984, -72.382410 ], [ -61.001587, -72.773828 ], [ -60.688477, -73.166355 ], [ -60.825806, -73.695780 ], [ -61.259766, -74.019543 ], [ -61.375122, -74.107024 ], [ -61.435547, -74.140084 ], [ -67.939453, -74.140084 ], [ -67.939453, -72.783586 ], [ -67.500000, -72.549557 ], [ -67.368164, -72.480238 ], [ -67.131958, -72.048533 ], [ -67.252808, -71.637723 ], [ -67.500000, -71.328950 ], [ -67.565918, -71.246122 ], [ -67.939453, -70.824836 ], [ -67.939453, -68.911005 ], [ -67.582397, -68.542306 ], [ -67.500000, -68.332348 ], [ -67.428589, -68.149077 ], [ -67.500000, -67.993167 ], [ -67.626343, -67.717778 ], [ -67.741699, -67.327160 ], [ -67.500000, -67.103793 ], [ -67.252808, -66.876188 ], [ -66.582642, -66.513260 ], [ -66.280518, -66.337505 ], [ -62.550659, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.928467, -55.528631 ], [ -67.939453, -55.531739 ], [ -67.939453, -55.528631 ], [ -67.928467, -55.528631 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.917480, -55.528631 ], [ -67.939453, -55.534848 ], [ -67.939453, -55.528631 ], [ -67.917480, -55.528631 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.815552, -63.268241 ], [ -57.227783, -63.524073 ], [ -57.595825, -63.857616 ], [ -58.617554, -64.151347 ], [ -59.046021, -64.366061 ], [ -59.793091, -64.211157 ], [ -60.617065, -64.308967 ], [ -62.023315, -64.797526 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.483347 ], [ -62.594604, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.808838, -66.423340 ], [ -63.748169, -66.502312 ], [ -63.770142, -66.513260 ], [ -64.055786, -66.687784 ], [ -66.906738, -66.687784 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.374146, -65.894924 ], [ -64.572144, -65.601609 ], [ -64.176636, -65.169193 ], [ -63.632812, -64.895589 ], [ -63.006592, -64.640351 ], [ -62.045288, -64.581470 ], [ -61.419067, -64.268454 ], [ -60.710449, -64.072200 ], [ -59.891968, -63.954261 ], [ -59.166870, -63.699855 ], [ -58.595581, -63.386601 ], [ -57.815552, -63.268241 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.270712 ], [ -57.222290, -63.526522 ], [ -57.595825, -63.857616 ], [ -58.612061, -64.151347 ], [ -59.046021, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.308967 ], [ -61.298218, -64.543718 ], [ -62.023315, -64.799865 ], [ -62.512207, -65.092959 ], [ -62.649536, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.122192, -66.189357 ], [ -62.803345, -66.425537 ], [ -63.748169, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.050293, -66.687784 ], [ -66.901245, -66.687784 ], [ -66.582642, -66.513260 ], [ -66.055298, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.601609 ], [ -64.176636, -65.171500 ], [ -63.627319, -64.897920 ], [ -63.001099, -64.642704 ], [ -62.039795, -64.583827 ], [ -61.413574, -64.270839 ], [ -60.710449, -64.074601 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.702289 ], [ -58.595581, -63.389061 ], [ -57.810059, -63.270712 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.867124 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.372868 ], [ -67.939453, -55.531739 ], [ -67.939453, -54.867124 ], [ -67.500000, -54.867124 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.500000, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.534848 ], [ -67.939453, -54.870285 ], [ -67.500000, -54.870285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.447686 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.450806, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.867124 ], [ -67.939453, -54.867124 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.308472, -42.358544 ], [ -63.759155, -42.041134 ], [ -63.462524, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.492783 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.038597 ], [ -67.296753, -45.548679 ], [ -67.500000, -46.084662 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.989380, -48.133101 ], [ -67.170410, -48.694586 ], [ -67.500000, -49.292889 ], [ -67.818604, -49.866317 ], [ -67.939453, -49.915862 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.569676 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.200818 ], [ -66.450806, -55.250946 ], [ -66.961670, -54.895565 ], [ -67.500000, -54.870285 ], [ -67.939453, -54.870285 ], [ -67.939453, -53.569676 ] ] ], [ [ [ -62.160645, -40.647304 ], [ -62.144165, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.978638, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.045213 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.871938 ], [ -65.181885, -43.496768 ], [ -65.330200, -44.500423 ], [ -65.566406, -45.038597 ], [ -66.511230, -45.038597 ], [ -67.291260, -45.552525 ], [ -67.500000, -46.088472 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.133101 ], [ -67.164917, -48.698212 ], [ -67.500000, -49.300054 ], [ -67.818604, -49.869857 ], [ -67.939453, -49.919399 ], [ -67.939453, -40.647304 ], [ -62.160645, -40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.096623 ], [ -57.755127, -51.549751 ], [ -58.051758, -51.896834 ], [ -59.403076, -52.197507 ], [ -59.853516, -51.849353 ], [ -60.704956, -52.298402 ], [ -61.204834, -51.849353 ], [ -60.001831, -51.248163 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.096623 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Falkland Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.551636, -51.100073 ], [ -57.749634, -51.549751 ], [ -58.051758, -51.900223 ], [ -59.397583, -52.200874 ], [ -59.848022, -51.849353 ], [ -60.699463, -52.298402 ], [ -61.199341, -51.849353 ], [ -60.001831, -51.251601 ], [ -59.150391, -51.498485 ], [ -58.551636, -51.100073 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.487182 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.109985, -22.735657 ], [ -66.989136, -22.983681 ], [ -67.329712, -24.021379 ], [ -67.500000, -24.096619 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.487182 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.806567 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.297040 ], [ -67.939453, -22.482106 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.457275, -21.534847 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.379883, -22.796439 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.109985, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.487182 ], [ -67.939453, -21.534847 ], [ -62.457275, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.374390, -22.796439 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.806567 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.322080 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.653198, -24.881453 ], [ -48.499146, -25.874052 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.171582 ], [ -48.663940, -28.183402 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.224096 ], [ -50.701904, -30.982319 ], [ -51.580811, -31.774878 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.192731 ], [ -53.377075, -33.765449 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.850363 ], [ -55.975342, -30.878655 ], [ -56.980591, -30.107118 ], [ -57.628784, -30.211608 ], [ -56.293945, -28.849485 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.474161 ], [ -53.651733, -26.922070 ], [ -53.629761, -26.120918 ], [ -54.135132, -25.547398 ], [ -54.629517, -25.735581 ], [ -54.431763, -25.160201 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.519409, -23.569022 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.919922, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.327124 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.176469 ], [ -48.663940, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.982319 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.492188, -27.474161 ], [ -53.646240, -26.922070 ], [ -53.629761, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.160201 ], [ -54.294434, -24.572104 ], [ -54.294434, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.030518, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.519409, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.914429, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.534847 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.569022 ], [ -55.404053, -23.956136 ], [ -55.030518, -23.996290 ], [ -54.656982, -23.835601 ], [ -54.294434, -24.016362 ], [ -54.294434, -24.567108 ], [ -54.431763, -25.160201 ], [ -54.629517, -25.735581 ], [ -54.788818, -26.617997 ], [ -55.700684, -27.386401 ], [ -56.491699, -27.547242 ], [ -57.612305, -27.391278 ], [ -58.623047, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.782593, -25.160201 ], [ -58.809814, -24.766785 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.875792 ], [ -62.687988, -22.248429 ], [ -62.457275, -21.534847 ], [ -57.919922, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.914429, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.030518, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.294434, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.160201 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.386401 ], [ -56.486206, -27.547242 ], [ -57.612305, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.160201 ], [ -58.809814, -24.771772 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.914429, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.847778, -23.875792 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.766785 ], [ -57.782593, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.122702 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.386401 ], [ -54.788818, -26.617997 ], [ -54.629517, -25.735581 ], [ -54.135132, -25.547398 ], [ -53.629761, -26.120918 ], [ -53.651733, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.849485 ], [ -57.628784, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.040677 ], [ -58.134155, -33.036298 ], [ -58.353882, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.365112, -35.973561 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.170479 ], [ -62.149658, -40.676472 ], [ -62.671509, -40.979898 ], [ -62.748413, -41.025499 ], [ -63.775635, -41.166249 ], [ -64.270020, -40.979898 ], [ -64.736938, -40.801336 ], [ -65.000610, -40.979898 ], [ -65.121460, -41.062786 ], [ -65.088501, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.096619 ], [ -67.329712, -24.021379 ], [ -66.989136, -22.983681 ], [ -67.109985, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.666016, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.297040 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.980591, -30.107118 ], [ -55.975342, -30.878655 ], [ -55.601807, -30.850363 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.377075, -33.765449 ], [ -53.811035, -34.393312 ], [ -54.937134, -34.948991 ], [ -55.678711, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.821045, -34.461277 ], [ -58.430786, -33.906896 ], [ -58.353882, -33.261657 ], [ -58.134155, -33.036298 ], [ -58.145142, -32.040677 ], [ -57.875977, -31.015279 ], [ -57.628784, -30.211608 ], [ -56.980591, -30.107118 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uruguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.341187, -9.757784 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.892648 ], [ -65.407104, -11.566144 ], [ -64.319458, -12.458033 ], [ -63.198853, -12.624258 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.485790 ], [ -61.089478, -13.475106 ], [ -60.507202, -13.774066 ], [ -60.463257, -14.349548 ], [ -60.265503, -14.642054 ], [ -60.254517, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.244019, -16.299051 ], [ -58.392334, -16.872890 ], [ -58.282471, -17.266728 ], [ -57.738647, -17.549772 ], [ -57.502441, -18.171950 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.864894 ], [ -59.117432, -19.352611 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.048618 ], [ -62.589111, -21.943046 ], [ -62.687988, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.989868, -21.988895 ], [ -64.165649, -22.350076 ], [ -64.747925, -22.350076 ], [ -64.967651, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.758423, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.655210 ], [ -67.500000, -10.450000 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.341187, -9.757784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bolivia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.335693, -9.763198 ], [ -65.445557, -10.509417 ], [ -65.319214, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.463396 ], [ -63.198853, -12.629618 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.491131 ], [ -61.083984, -13.480448 ], [ -60.501709, -13.774066 ], [ -60.457764, -14.354870 ], [ -60.265503, -14.647368 ], [ -60.249023, -15.077428 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.238525, -16.299051 ], [ -58.386841, -16.878147 ], [ -58.282471, -17.271973 ], [ -57.733154, -17.555009 ], [ -57.496948, -18.171950 ], [ -57.678223, -18.963442 ], [ -57.947388, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.357794 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.053744 ], [ -62.583618, -21.943046 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.379395, -21.943046 ], [ -66.752930, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.335693, -9.763198 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.587036, -1.235866 ], [ -47.828979, -0.576772 ], [ -46.571045, -0.939289 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.560547, -1.960677 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.936401, -21.943046 ], [ -57.875977, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.952881, -19.399249 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.171950 ], [ -57.738647, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.872890 ], [ -58.244019, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.254517, -15.072124 ], [ -60.265503, -14.642054 ], [ -60.463257, -14.349548 ], [ -60.507202, -13.774066 ], [ -61.089478, -13.475106 ], [ -61.715698, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.624258 ], [ -64.319458, -12.458033 ], [ -65.407104, -11.566144 ], [ -65.324707, -10.892648 ], [ -65.445557, -10.509417 ], [ -65.341187, -9.757784 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.450000 ], [ -67.939453, -10.655210 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.509644, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.587036, -1.235866 ], [ -47.823486, -0.582265 ], [ -46.565552, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.613839 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.679687 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.947388, -19.399249 ], [ -57.678223, -18.963442 ], [ -57.496948, -18.171950 ], [ -57.733154, -17.555009 ], [ -58.282471, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.238525, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.249023, -15.077428 ], [ -60.265503, -14.647368 ], [ -60.457764, -14.354870 ], [ -60.501709, -13.774066 ], [ -61.083984, -13.480448 ], [ -61.715698, -13.491131 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.629618 ], [ -64.313965, -12.463396 ], [ -65.401611, -11.566144 ], [ -65.319214, -10.898042 ], [ -65.445557, -10.509417 ], [ -65.335693, -9.763198 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.509644, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.352611 ], [ -58.183594, -19.864894 ], [ -58.167114, -20.174567 ], [ -57.875977, -20.730428 ], [ -57.936401, -21.943046 ], [ -57.941895, -22.085640 ], [ -56.881714, -22.278931 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.578125, -22.350076 ], [ -62.687988, -22.248429 ], [ -62.589111, -21.943046 ], [ -62.292480, -21.048618 ], [ -62.270508, -20.509355 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.357794 ], [ -58.183594, -19.870060 ], [ -58.167114, -20.174567 ], [ -57.870483, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.682495, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.292480, -21.053744 ], [ -62.265015, -20.514499 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.967651, -22.075459 ], [ -64.747925, -22.350076 ], [ -66.758423, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -64.165649, -22.350076 ], [ -63.989868, -21.988895 ], [ -62.847290, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.578125, -22.350076 ], [ -64.165649, -22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.752930, -22.350076 ], [ -66.379395, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -64.160156, -22.350076 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.500000, 5.632386 ], [ -67.521973, 5.561315 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.626343, 3.842332 ], [ -67.500000, 3.716264 ], [ -67.340698, 3.546318 ], [ -67.307739, 3.321502 ], [ -67.500000, 3.135031 ], [ -67.813110, 2.822344 ], [ -67.500000, 2.635789 ], [ -67.450562, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.879272, 1.257834 ], [ -67.066040, 1.131518 ], [ -67.263794, 1.724593 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.873535, 1.697139 ], [ -67.939453, 1.702630 ], [ -67.939453, 6.227934 ], [ -67.697754, 6.271618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Colombia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.716264 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.641276 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.999106 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.697139 ], [ -67.939453, 6.222473 ], [ -67.697754, 6.266158 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.286011, 18.516075 ], [ -65.775146, 18.427502 ], [ -65.593872, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.604614, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Puerto Rico" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.098999, 18.521283 ], [ -66.280518, 18.516075 ], [ -65.769653, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.846558, 17.973508 ], [ -66.599121, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.885986, 10.719984 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.952620 ], [ -61.589355, 9.876864 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.608179 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.298462, 7.046379 ], [ -60.545654, 6.860985 ], [ -61.160889, 6.697343 ], [ -61.144409, 6.238855 ], [ -61.413574, 5.960290 ], [ -60.737915, 5.200365 ], [ -60.606079, 4.921306 ], [ -60.968628, 4.538094 ], [ -62.089233, 4.165637 ], [ -62.808838, 4.012220 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.416276 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.204102, 1.493971 ], [ -64.616089, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.549927, 0.790990 ], [ -66.329956, 0.725078 ], [ -66.879272, 1.257834 ], [ -67.181396, 2.251617 ], [ -67.450562, 2.602864 ], [ -67.500000, 2.635789 ], [ -67.813110, 2.822344 ], [ -67.500000, 3.135031 ], [ -67.307739, 3.321502 ], [ -67.340698, 3.546318 ], [ -67.500000, 3.716264 ], [ -67.626343, 3.842332 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.561315 ], [ -67.500000, 5.632386 ], [ -67.346191, 6.096860 ], [ -67.697754, 6.271618 ], [ -67.939453, 6.227934 ], [ -67.939453, 10.558022 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.231079, 10.649811 ], [ -65.659790, 10.201407 ], [ -64.890747, 10.082446 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.644412 ], [ -63.083496, 10.703792 ], [ -61.885986, 10.719984 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Venezuela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.880493, 10.714587 ], [ -62.731934, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.855532 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.968628, 4.538094 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.549927, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.641276 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.716264 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -67.939453, 6.222473 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.552622 ], [ -67.296753, 10.547221 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.639014 ], [ -63.078003, 10.703792 ], [ -61.880493, 10.714587 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.860281 ], [ -60.935669, 10.114894 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.093262 ], [ -61.660767, 10.368958 ], [ -61.682739, 10.763159 ], [ -61.105957, 10.892648 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.682739, 10.757763 ], [ -61.105957, 10.892648 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.106445, 7.999397 ], [ -58.485718, 7.351571 ], [ -58.458252, 6.833716 ], [ -58.079224, 6.811898 ], [ -57.150879, 5.976680 ], [ -57.310181, 5.074529 ], [ -57.914429, 4.817312 ], [ -57.864990, 4.581901 ], [ -58.046265, 4.061536 ], [ -57.606812, 3.337954 ], [ -57.282715, 3.337954 ], [ -57.150879, 2.772965 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.867345 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.686158 ], [ -58.117676, 1.510445 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.035034, 1.318243 ], [ -59.650269, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.979858, 2.756504 ], [ -59.820557, 3.606625 ], [ -59.540405, 3.962901 ], [ -59.771118, 4.428567 ], [ -60.111694, 4.576425 ], [ -59.985352, 5.014339 ], [ -60.216064, 5.249598 ], [ -60.737915, 5.200365 ], [ -61.413574, 5.960290 ], [ -61.144409, 6.238855 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.860985 ], [ -60.298462, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.100952, 7.999397 ], [ -58.480225, 7.346123 ], [ -58.452759, 6.833716 ], [ -58.079224, 6.806444 ], [ -57.145386, 5.971217 ], [ -57.304688, 5.074529 ], [ -57.914429, 4.811839 ], [ -57.859497, 4.576425 ], [ -58.046265, 4.061536 ], [ -57.601318, 3.332470 ], [ -57.282715, 3.332470 ], [ -57.150879, 2.767478 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.861855 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.680667 ], [ -58.112183, 1.504954 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.784990 ], [ -59.716187, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.815063, 3.606625 ], [ -59.540405, 3.957421 ], [ -59.765625, 4.423090 ], [ -60.111694, 4.576425 ], [ -59.979858, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.408081, 5.960290 ], [ -61.138916, 6.233395 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.855532 ], [ -60.292969, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.036011, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.189879 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.101929, 2.526037 ], [ -55.574341, 2.421764 ], [ -55.975342, 2.515061 ], [ -56.074219, 2.224173 ], [ -55.909424, 2.026555 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.772965 ], [ -57.282715, 3.337954 ], [ -57.606812, 3.337954 ], [ -58.046265, 4.061536 ], [ -57.864990, 4.581901 ], [ -57.914429, 4.817312 ], [ -57.310181, 5.074529 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.036011, 6.025848 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Suriname" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.030518, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.398804, 4.214943 ], [ -54.008789, 3.617589 ], [ -54.179077, 3.189879 ], [ -54.266968, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.421764 ], [ -55.975342, 2.509573 ], [ -56.074219, 2.218684 ], [ -55.903931, 2.021065 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.332470 ], [ -57.601318, 3.332470 ], [ -58.046265, 4.061536 ], [ -57.859497, 4.576425 ], [ -57.914429, 4.811839 ], [ -57.304688, 5.074529 ], [ -57.145386, 5.971217 ], [ -55.947876, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.413680 ], [ -51.828003, 4.570949 ], [ -51.663208, 4.160158 ], [ -52.250977, 3.244724 ], [ -52.558594, 2.509573 ], [ -52.943115, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.783569, 2.377857 ], [ -54.091187, 2.108899 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.014282, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.154679 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.937622, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.552856, 2.333949 ], [ -53.778076, 2.377857 ], [ -54.085693, 2.103409 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.398804, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.249598 ], [ -59.985352, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.771118, 4.428567 ], [ -59.540405, 3.962901 ], [ -59.820557, 3.606625 ], [ -59.979858, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.650269, 1.790480 ], [ -59.035034, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.117676, 1.510445 ], [ -57.661743, 1.686158 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.867345 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.909424, 2.026555 ], [ -56.074219, 2.224173 ], [ -55.975342, 2.515061 ], [ -55.574341, 2.421764 ], [ -55.101929, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.091187, 2.108899 ], [ -53.783569, 2.377857 ], [ -53.558350, 2.339438 ], [ -53.421021, 2.054003 ], [ -52.943115, 2.125367 ], [ -52.558594, 2.509573 ], [ -52.250977, 3.244724 ], [ -51.663208, 4.160158 ], [ -51.322632, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.905776 ], [ -49.976807, 1.741065 ], [ -49.949341, 1.049136 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.702630 ], [ -67.873535, 1.697139 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.263794, 1.724593 ], [ -67.066040, 1.131518 ], [ -66.879272, 1.257834 ], [ -66.329956, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.616089, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.498597 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.808838, 4.012220 ], [ -62.089233, 4.165637 ], [ -60.968628, 4.538094 ], [ -60.606079, 4.921306 ], [ -60.737915, 5.200365 ], [ -60.216064, 5.249598 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.540405, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.251617 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.421021, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.949341, 1.043643 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.619995, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.697139 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.999106 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.498597 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.968628, 4.538094 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.271389 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.573364, 55.207088 ], [ -57.980347, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.647894 ], [ -55.761108, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.726685, 50.081820 ], [ -63.863525, 50.292849 ], [ -65.368652, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.514510 ], [ -67.500000, 49.425267 ], [ -67.939453, 49.271389 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.418926 ], [ -62.012329, 46.445427 ], [ -62.506714, 46.035109 ], [ -62.874756, 45.970243 ], [ -64.143677, 46.396200 ], [ -64.396362, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -55.876465, 51.635067 ], [ -55.409546, 51.590723 ], [ -55.601807, 51.320314 ], [ -56.134644, 50.687758 ], [ -56.799316, 49.813176 ], [ -56.145630, 50.152266 ], [ -55.475464, 49.937080 ], [ -55.827026, 49.589349 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.481445, 49.249879 ], [ -53.789062, 48.520243 ], [ -53.091431, 48.690960 ], [ -52.959595, 48.158757 ], [ -52.651978, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.244995, 47.754098 ], [ -55.404053, 46.886477 ], [ -56.002808, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.255493, 47.635784 ], [ -57.326660, 47.572820 ], [ -59.271240, 47.606163 ], [ -59.419556, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.127814 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.289406 ], [ -55.876465, 51.635067 ] ] ], [ [ [ -67.939453, 48.589326 ], [ -67.500000, 48.763431 ], [ -66.555176, 49.135003 ], [ -65.061035, 49.235534 ], [ -64.171143, 48.745323 ], [ -65.115967, 48.074409 ], [ -64.802856, 46.995241 ], [ -64.473267, 46.240652 ], [ -63.176880, 45.740693 ], [ -61.523438, 45.886185 ], [ -60.518188, 47.010226 ], [ -60.452271, 46.286224 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.672559 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.165161, 44.465151 ], [ -64.429321, 45.294211 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.796631, 45.706179 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.589326 ] ] ], [ [ [ -64.176636, 49.958288 ], [ -62.863770, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.809082, 49.106242 ], [ -62.297974, 49.088258 ], [ -63.594360, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.176636, 49.958288 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.267805 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.421694 ], [ -67.939453, 49.267805 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -67.939453, 48.585692 ], [ -67.500000, 48.759810 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.585692 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.796631, 45.706179 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.813019 ], [ -67.500000, 44.574817 ], [ -67.939453, 44.370987 ], [ -67.939453, 47.163575 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -67.500000, 44.570904 ], [ -67.939453, 44.367060 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.506714, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.803589, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.214132 ], [ -67.500000, 58.274843 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ] ] ], [ [ [ -67.939453, 66.273488 ], [ -67.939453, 66.687784 ], [ -61.935425, 66.687784 ], [ -62.166138, 66.160511 ], [ -63.918457, 65.000261 ], [ -65.148926, 65.426299 ], [ -66.725464, 66.388161 ], [ -67.500000, 66.315449 ], [ -67.939453, 66.273488 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.093506, 65.109148 ], [ -65.736694, 64.649760 ], [ -65.324707, 64.385066 ], [ -64.671021, 63.393982 ], [ -65.017090, 62.676665 ], [ -66.280518, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.965212 ], [ -67.373657, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.170654, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.167805 ], [ -61.397095, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.450607 ], [ -67.648315, 58.211238 ], [ -67.500000, 58.269066 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.271278 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.271278 ] ] ], [ [ [ -67.939453, 65.581179 ], [ -67.500000, 65.339347 ], [ -67.088013, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.671021, 63.393982 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.581179 ] ] ], [ [ [ -67.939453, 63.236101 ], [ -67.500000, 62.967709 ], [ -67.368164, 62.885205 ], [ -66.329956, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.236101 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.268921, 60.855613 ], [ -48.268433, 60.860963 ], [ -49.235229, 61.407236 ], [ -49.905396, 62.385277 ], [ -51.635742, 63.629185 ], [ -52.141113, 64.280376 ], [ -52.278442, 65.178418 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.382568, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.235229, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.278442, 65.176112 ], [ -53.662720, 66.100494 ], [ -53.464966, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.362750 ], [ -66.450806, 68.069202 ], [ -64.863281, 67.848631 ], [ -63.429565, 66.930060 ], [ -61.853027, 66.863241 ], [ -62.012329, 66.513260 ], [ -62.089233, 66.337505 ], [ -66.643066, 66.337505 ], [ -66.725464, 66.388161 ], [ -67.258301, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.944580 ], [ -67.939453, 70.134765 ], [ -67.917480, 70.123562 ], [ -67.500000, 69.716202 ], [ -66.972656, 69.187945 ], [ -67.500000, 69.054822 ], [ -67.939453, 68.944580 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.483955 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.247314, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.483955 ] ] ], [ [ [ -67.939453, 68.942607 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.942607 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.305664, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.358699 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.148876 ], [ -50.872192, 69.930300 ], [ -52.014771, 69.576730 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.285314 ], [ -54.684448, 69.611206 ], [ -54.750366, 70.290969 ], [ -54.360352, 70.823031 ], [ -53.432007, 70.837461 ], [ -51.394043, 70.570631 ], [ -53.113403, 71.205460 ], [ -54.008789, 71.547525 ], [ -55.003052, 71.407923 ], [ -55.838013, 71.655020 ], [ -54.722900, 72.587405 ], [ -55.327148, 72.959925 ], [ -56.123657, 73.650999 ], [ -56.535645, 74.019543 ], [ -56.672974, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.552856, 66.337505 ], [ -53.464966, 66.513260 ], [ -53.300171, 66.837326 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.730406 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.426691 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.360352, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.570631 ], [ -53.107910, 71.205460 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.655020 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.535645, 74.019543 ], [ -57.326660, 74.710796 ], [ -58.601074, 75.099871 ], [ -58.590088, 75.517778 ], [ -61.270752, 76.103435 ], [ -63.396606, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.079668 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.358285 ], [ -66.769409, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -66.813354, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 79.253586 ], [ -44.560547, 73.898111 ], [ -56.398315, 73.898111 ], [ -56.530151, 74.019543 ], [ -57.321167, 74.710796 ], [ -58.595581, 75.098458 ], [ -58.584595, 75.517778 ], [ -61.270752, 76.102116 ], [ -63.391113, 76.175811 ], [ -66.066284, 76.135063 ], [ -67.500000, 76.092877 ], [ -67.939453, 76.078346 ], [ -67.939453, 77.346257 ], [ -67.500000, 77.357083 ], [ -66.763916, 77.376305 ], [ -67.500000, 77.421844 ], [ -67.939453, 77.448134 ], [ -67.939453, 79.105086 ], [ -67.500000, 79.163075 ], [ -67.434082, 79.171335 ], [ -66.802368, 79.253586 ], [ -44.560547, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.896973, 82.362374 ], [ -64.335938, 81.927816 ], [ -66.758423, 81.725560 ], [ -67.500000, 81.542544 ], [ -67.659302, 81.502052 ], [ -67.500000, 81.502864 ], [ -65.484009, 81.506921 ], [ -67.500000, 80.991433 ], [ -67.840576, 80.900669 ], [ -67.939453, 80.884148 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.545166, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.725560 ], [ -67.500000, 81.541736 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.502052 ], [ -65.478516, 81.506921 ], [ -67.500000, 80.990573 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.545166, 82.732092 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.106124 ], [ -67.445068, 79.171335 ], [ -65.714722, 79.395031 ], [ -65.324707, 79.758726 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.159017 ], [ -67.500000, 80.360675 ], [ -67.153931, 80.516698 ], [ -63.693237, 81.214014 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.287476, 82.034330 ], [ -57.211304, 82.191114 ], [ -54.135132, 82.200065 ], [ -53.047485, 81.888381 ], [ -50.394287, 82.439374 ], [ -48.004761, 82.065480 ], [ -46.604004, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.669241 ], [ -45.000000, 81.771285 ], [ -46.906128, 82.200065 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -46.208496, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.669241 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.049510 ], [ -67.939453, 80.107245 ], [ -67.939453, 80.156200 ], [ -67.500000, 80.359755 ], [ -67.153931, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.986228 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.200065 ], [ -46.763306, 82.627809 ], [ -46.505127, 82.676285 ], [ -46.203003, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.900382 ], [ -62.166138, 82.676285 ], [ -61.853027, 82.629219 ], [ -61.858521, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.090616 ], [ -67.500000, 83.077387 ], [ -65.830078, 83.028219 ], [ -63.682251, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.090616 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026886 ], [ -44.560547, 82.620052 ], [ -46.774292, 82.620052 ], [ -46.768799, 82.628514 ], [ -46.510620, 82.676285 ], [ -45.000000, 82.949098 ], [ -44.560547, 83.026886 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.026219 ], [ -44.560547, 82.620052 ], [ -46.768799, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.505127, 82.676285 ], [ -45.000000, 82.948424 ], [ -44.560547, 83.026219 ] ] ] } } ] } ] } , @@ -2730,41 +2718,41 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.811285 ], [ -45.000000, -81.836284 ], [ -44.829712, -81.846419 ], [ -42.813721, -82.081388 ], [ -42.165527, -81.650118 ], [ -40.775757, -81.356335 ], [ -38.248901, -81.336499 ], [ -36.271362, -81.121236 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.768549 ], [ -30.102539, -80.592421 ], [ -28.553467, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.690552, -79.631968 ], [ -29.690552, -79.259730 ], [ -31.629639, -79.298560 ], [ -33.684082, -79.455516 ], [ -35.645142, -79.455516 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.494873, -79.088462 ], [ -43.472900, -79.171335 ], [ -43.374023, -79.515661 ], [ -43.335571, -80.025752 ], [ -44.884644, -80.339497 ], [ -45.000000, -80.356995 ], [ -45.439453, -80.426676 ], [ -45.439453, -79.088462 ], [ -43.494873, -79.088462 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, -79.088462 ], [ -22.060547, -82.732092 ], [ -45.439453, -82.732092 ], [ -45.439453, -81.812068 ], [ -45.000000, -81.836284 ], [ -44.824219, -81.846419 ], [ -42.808228, -82.082145 ], [ -42.160034, -81.650916 ], [ -40.770264, -81.357161 ], [ -38.243408, -81.337327 ], [ -36.265869, -81.122084 ], [ -34.387207, -80.905879 ], [ -32.310791, -80.769430 ], [ -30.097046, -80.592421 ], [ -28.547974, -80.337653 ], [ -29.256592, -79.984757 ], [ -29.685059, -79.632957 ], [ -29.685059, -79.259730 ], [ -31.624146, -79.299580 ], [ -33.678589, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.088462 ], [ -22.060547, -79.088462 ] ] ], [ [ [ -43.489380, -79.088462 ], [ -43.374023, -79.516660 ], [ -43.335571, -80.025752 ], [ -44.879150, -80.339497 ], [ -45.000000, -80.357916 ], [ -45.439453, -80.427590 ], [ -45.439453, -79.088462 ], [ -43.489380, -79.088462 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.005042 ], [ -45.159302, -78.046071 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.477392 ], [ -43.494873, -79.085342 ], [ -43.472900, -79.171335 ], [ -43.450928, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.005042 ] ] ], [ [ [ -22.060547, -76.039967 ], [ -22.060547, -79.253586 ], [ -35.798950, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.083261 ], [ -35.782471, -78.338312 ], [ -35.332031, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.217407, -77.652997 ], [ -31.003418, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.515259, -76.496311 ], [ -26.163940, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.241286 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -22.060547, -76.039967 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -45.439453, -78.006183 ], [ -45.153809, -78.047209 ], [ -45.000000, -78.101694 ], [ -43.923340, -78.478489 ], [ -43.489380, -79.085342 ], [ -43.467407, -79.171335 ], [ -43.445435, -79.253586 ], [ -45.439453, -79.253586 ], [ -45.439453, -78.006183 ] ] ], [ [ [ -22.060547, -76.042617 ], [ -22.060547, -79.253586 ], [ -35.793457, -79.253586 ], [ -35.853882, -79.171335 ], [ -35.914307, -79.084302 ], [ -35.776978, -78.339423 ], [ -35.326538, -78.123193 ], [ -33.898315, -77.888038 ], [ -32.211914, -77.652997 ], [ -30.997925, -77.359487 ], [ -29.783936, -77.065265 ], [ -28.883057, -76.673455 ], [ -27.509766, -76.497594 ], [ -26.158447, -76.359671 ], [ -25.477295, -76.281728 ], [ -23.928223, -76.242592 ], [ -22.500000, -76.110030 ], [ -22.456055, -76.106073 ], [ -22.060547, -76.042617 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.885620, -21.534847 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.759033, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.963451 ], [ -44.648438, -23.347299 ], [ -45.000000, -23.569022 ], [ -45.357056, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.885620, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -40.880127, -21.534847 ], [ -40.946045, -21.937950 ], [ -40.957031, -21.943046 ], [ -41.753540, -22.370396 ], [ -41.989746, -22.968509 ], [ -43.077393, -22.968509 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -45.439453, -23.815501 ], [ -45.439453, -21.534847 ], [ -40.880127, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.510445 ], [ -44.906616, -1.548884 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.423462, -2.377857 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.227173, -4.817312 ], [ -36.458130, -5.107358 ], [ -35.601196, -5.145657 ], [ -35.238647, -5.462896 ], [ -34.733276, -7.340675 ], [ -35.128784, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.051392, -11.038255 ], [ -37.688599, -12.168226 ], [ -38.424683, -13.036669 ], [ -38.677368, -13.052724 ], [ -38.957520, -13.790071 ], [ -38.886108, -15.665354 ], [ -39.166260, -17.203770 ], [ -39.270630, -17.863747 ], [ -39.583740, -18.260653 ], [ -39.765015, -19.596019 ], [ -40.775757, -20.899871 ], [ -40.946045, -21.932855 ], [ -40.968018, -21.943046 ], [ -41.726074, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -45.439453, -1.351193 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.417725, -2.136346 ], [ -44.582520, -2.690661 ], [ -43.417969, -2.383346 ], [ -41.473389, -2.910125 ], [ -39.979248, -2.871722 ], [ -38.501587, -3.699819 ], [ -37.221680, -4.822786 ], [ -36.452637, -5.107358 ], [ -35.595703, -5.151128 ], [ -35.233154, -5.462896 ], [ -34.898071, -6.735531 ], [ -34.727783, -7.340675 ], [ -35.128784, -8.999026 ], [ -35.639648, -9.649492 ], [ -37.045898, -11.038255 ], [ -37.683105, -12.173595 ], [ -38.424683, -13.036669 ], [ -38.671875, -13.058075 ], [ -38.952026, -13.795406 ], [ -38.880615, -15.665354 ], [ -39.160767, -17.209017 ], [ -39.265137, -17.868975 ], [ -39.583740, -18.260653 ], [ -39.759521, -19.601194 ], [ -40.775757, -20.905003 ], [ -40.946045, -21.937950 ], [ -40.957031, -21.943046 ], [ -41.720581, -22.350076 ], [ -45.439453, -22.350076 ], [ -45.439453, -1.351193 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.200439, 66.687784 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -36.353760, 65.980034 ], [ -37.045898, 65.939754 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.460542 ], [ -40.671387, 64.841932 ], [ -40.687866, 64.139369 ], [ -41.193237, 63.484863 ], [ -42.824707, 62.684228 ], [ -42.418213, 61.902752 ], [ -43.379517, 60.100457 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.155176 ], [ -45.439453, 60.400289 ], [ -45.439453, 66.687784 ], [ -34.200439, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.189453, 66.687784 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.353760, 65.977798 ], [ -37.045898, 65.937514 ], [ -38.375244, 65.692215 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.682373, 64.139369 ], [ -41.187744, 63.482410 ], [ -42.819214, 62.681707 ], [ -42.418213, 61.900165 ], [ -43.379517, 60.097718 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.157910 ], [ -45.439453, 60.403002 ], [ -45.439453, 66.687784 ], [ -34.189453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.280376 ], [ -22.060547, 63.881808 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -22.060547, 64.280376 ] ] ], [ [ [ -22.060547, 64.468059 ], [ -22.500000, 64.567319 ], [ -23.955688, 64.893259 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -24.329224, 65.612952 ], [ -23.653564, 66.264645 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.468059 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.060547, 64.277992 ], [ -22.060547, 63.881808 ], [ -22.763672, 63.959085 ], [ -22.500000, 64.079404 ], [ -22.060547, 64.277992 ] ] ], [ [ [ -22.060547, 64.465691 ], [ -22.500000, 64.564960 ], [ -23.955688, 64.890928 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.225342, 65.378282 ], [ -22.500000, 65.410303 ], [ -24.323730, 65.610684 ], [ -23.648071, 66.262434 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.410154 ], [ -22.060547, 66.379359 ], [ -22.060547, 64.465691 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.324706 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -23.571167, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -24.279785, 72.598908 ], [ -24.796143, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.641184 ], [ -22.137451, 71.469124 ], [ -22.060547, 71.309596 ], [ -22.060547, 70.634484 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.548706, 71.432427 ], [ -25.202637, 70.752534 ], [ -26.367188, 70.227886 ], [ -23.730469, 70.185103 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -25.032349, 69.260040 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.126576 ], [ -31.777954, 68.122482 ], [ -32.816162, 67.736516 ], [ -34.205933, 66.681261 ], [ -34.727783, 66.513260 ], [ -35.271606, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 74.140084 ], [ -22.060547, 73.321553 ], [ -22.170410, 73.308936 ], [ -22.500000, 73.308936 ], [ -23.565674, 73.307358 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.183484 ], [ -22.500000, 72.225455 ], [ -24.279785, 72.597266 ], [ -24.790649, 72.330797 ], [ -23.444824, 72.080673 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -22.060547, 71.320155 ], [ -22.060547, 70.630841 ], [ -22.500000, 70.585244 ], [ -23.538208, 70.471717 ], [ -24.307251, 70.857286 ], [ -25.543213, 71.430678 ], [ -25.202637, 70.752534 ], [ -26.361694, 70.226028 ], [ -23.724976, 70.183241 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.129165 ], [ -22.500000, 70.082434 ], [ -25.026855, 69.258095 ], [ -27.745972, 68.469848 ], [ -30.673828, 68.124529 ], [ -31.777954, 68.120435 ], [ -32.810669, 67.734435 ], [ -34.200439, 66.679087 ], [ -34.716797, 66.513260 ], [ -35.260620, 66.337505 ], [ -45.439453, 66.337505 ], [ -45.439453, 74.140084 ], [ -22.060547, 74.140084 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.412352 ], [ -22.060547, 66.379359 ], [ -22.060547, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.137451, 66.410154 ], [ -22.060547, 66.377158 ], [ -22.060547, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.410154 ] ] ] } } ] } ] } , @@ -2776,13 +2764,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.520996, 82.297857 ], [ -31.904297, 82.200065 ], [ -31.398926, 82.022140 ], [ -27.861328, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -23.170166, 81.153396 ], [ -22.500000, 81.253362 ], [ -22.060547, 81.317447 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.805806 ], [ -45.000000, 81.736620 ], [ -44.527588, 81.661279 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.872865 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.060547, 82.732092 ], [ -22.060547, 82.476146 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -26.515503, 82.297857 ], [ -31.898804, 82.200065 ], [ -31.398926, 82.021378 ], [ -27.855835, 82.131931 ], [ -24.845581, 81.786995 ], [ -22.901001, 82.093487 ], [ -22.500000, 81.922414 ], [ -22.071533, 81.734251 ], [ -22.500000, 81.512599 ], [ -23.170166, 81.152551 ], [ -22.500000, 81.252526 ], [ -22.060547, 81.316618 ], [ -22.060547, 79.088462 ], [ -45.439453, 79.088462 ], [ -45.439453, 81.806589 ], [ -45.000000, 81.737409 ], [ -44.522095, 81.660482 ], [ -45.000000, 81.772072 ], [ -45.439453, 81.873641 ], [ -45.439453, 82.732092 ], [ -22.060547, 82.732092 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.103271, 83.520162 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888831 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.871129 ], [ -45.000000, 82.949098 ], [ -43.406982, 83.225420 ], [ -39.902344, 83.180561 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.097778, 83.519542 ], [ -22.500000, 82.945726 ], [ -22.060547, 82.888151 ], [ -22.060547, 82.620052 ], [ -45.439453, 82.620052 ], [ -45.439453, 82.869765 ], [ -45.000000, 82.948424 ], [ -43.406982, 83.225420 ], [ -39.896851, 83.179909 ], [ -38.622437, 83.549234 ], [ -35.090332, 83.645406 ] ] ] } } ] } ] } , @@ -2800,115 +2788,115 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.148220 ], [ -22.500000, -76.107392 ], [ -22.461548, -76.104754 ], [ -21.225586, -75.908167 ], [ -20.011597, -75.673557 ], [ -18.918457, -75.437887 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.791702 ], [ -15.704956, -74.497881 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, -73.898111 ], [ 0.439453, -79.253586 ], [ -22.939453, -79.253586 ], [ -22.939453, -76.150850 ], [ -22.500000, -76.110030 ], [ -22.456055, -76.106073 ], [ -21.225586, -75.909504 ], [ -20.011597, -75.674916 ], [ -18.912964, -75.439268 ], [ -17.523193, -75.125274 ], [ -16.644287, -74.793143 ], [ -15.699463, -74.497881 ], [ -15.408325, -74.107024 ], [ -15.803833, -74.019543 ], [ -16.347656, -73.898111 ], [ 0.439453, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.871948, -70.931004 ], [ -5.795288, -71.029464 ], [ -5.537109, -71.400917 ], [ -4.345093, -71.460393 ], [ -3.054199, -71.284936 ], [ -1.796265, -71.166486 ], [ -0.664673, -71.224917 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.105519 ], [ -15.798340, -74.019543 ], [ -16.468506, -73.870665 ], [ -16.116943, -73.459729 ], [ -15.452271, -73.145663 ], [ -14.414062, -72.950264 ], [ -13.315430, -72.715168 ], [ -12.293701, -72.400689 ], [ -11.513672, -72.009552 ], [ -11.024780, -71.538830 ], [ -10.299683, -71.263774 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.421265, -71.696469 ], [ -7.382812, -71.323674 ], [ -6.871948, -70.931004 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.866455, -70.932798 ], [ -5.789795, -71.029464 ], [ -5.537109, -71.402669 ], [ -4.339600, -71.462140 ], [ -3.048706, -71.284936 ], [ -1.796265, -71.168259 ], [ -0.659180, -71.226685 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.439453, -71.434176 ], [ 0.439453, -74.140084 ], [ -15.435791, -74.140084 ], [ -15.408325, -74.107024 ], [ -15.803833, -74.019543 ], [ -16.463013, -73.872191 ], [ -16.111450, -73.459729 ], [ -15.446777, -73.147255 ], [ -14.408569, -72.950264 ], [ -13.309937, -72.715168 ], [ -12.293701, -72.402350 ], [ -11.508179, -72.009552 ], [ -11.019287, -71.540569 ], [ -10.294189, -71.265539 ], [ -9.102173, -71.323674 ], [ -8.613281, -71.656749 ], [ -7.415771, -71.696469 ], [ -7.377319, -71.323674 ], [ -6.866455, -70.932798 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -12.930908, 21.330315 ], [ -16.847534, 21.335432 ], [ -17.067261, 21.002471 ], [ -17.023315, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.068237, 22.350076 ], [ -13.013306, 21.943046 ], [ -12.930908, 21.325198 ], [ -16.847534, 21.335432 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.216309, 22.350076 ], [ -13.068237, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.023315, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.473999, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.216309, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.216309, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.620794 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.427024 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.519165, 12.447305 ], [ -11.661987, 12.388294 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.356100 ], [ -12.502441, 12.334636 ], [ -13.222046, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.820312, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.682739, 12.388294 ], [ -16.842041, 13.154376 ], [ -15.935669, 13.132979 ], [ -15.693970, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.144653, 13.512497 ], [ -14.716187, 13.298757 ], [ -14.282227, 13.282719 ], [ -13.848267, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.629972 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.864747 ], [ -15.628052, 13.624633 ], [ -16.715698, 13.597939 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.732386 ], [ -17.188110, 14.923554 ], [ -16.704712, 15.623037 ], [ -16.468506, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.628052, 16.372851 ], [ -15.139160, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.629972 ], [ -14.051514, 13.795406 ], [ -13.848267, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.716187, 13.298757 ], [ -15.144653, 13.512497 ], [ -15.512695, 13.282719 ], [ -15.693970, 13.272026 ], [ -15.935669, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.715698, 13.597939 ], [ -15.628052, 13.624633 ], [ -15.402832, 13.864747 ], [ -15.084229, 13.880746 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.875413 ], [ -14.688721, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.276733, 13.282719 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.715698, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.084229, 13.875413 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.705444, 12.586732 ], [ -13.721924, 12.248760 ], [ -13.831787, 12.146746 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.386597, 11.512322 ], [ -14.688721, 11.528470 ], [ -15.133667, 11.043647 ], [ -15.666504, 11.458491 ], [ -16.089478, 11.528470 ], [ -16.320190, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.616821, 12.173595 ], [ -16.682739, 12.388294 ], [ -16.149902, 12.549202 ], [ -15.820312, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.551147, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.248760 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.813588 ], [ -13.903198, 11.679135 ], [ -14.122925, 11.679135 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.808211 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.173595 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.549202 ], [ -15.814819, 12.517028 ], [ -15.551147, 12.629618 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.705444, 12.586732 ], [ -13.222046, 12.576010 ], [ -12.502441, 12.334636 ], [ -12.282715, 12.356100 ], [ -12.205811, 12.468760 ], [ -11.661987, 12.388294 ], [ -11.519165, 12.447305 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.082296 ], [ -11.041260, 12.216549 ], [ -10.870972, 12.178965 ], [ -10.596313, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.332886, 12.334636 ], [ -9.129639, 12.313169 ], [ -8.909912, 12.093039 ], [ -8.789062, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.585815, 11.140677 ], [ -8.624268, 10.811724 ], [ -8.410034, 10.914224 ], [ -8.283691, 10.795537 ], [ -8.338623, 10.498614 ], [ -8.031006, 10.206813 ], [ -8.234253, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.581021 ], [ -8.206787, 8.456072 ], [ -8.300171, 8.320212 ], [ -8.223267, 8.124491 ], [ -8.283691, 7.689217 ], [ -8.442993, 7.689217 ], [ -8.723145, 7.716435 ], [ -8.926392, 7.313433 ], [ -9.212036, 7.318882 ], [ -9.404297, 7.531319 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.019531, 8.428904 ], [ -10.233765, 8.407168 ], [ -10.508423, 8.352823 ], [ -10.497437, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.843506, 9.692813 ], [ -11.118164, 10.049994 ], [ -11.920166, 10.049994 ], [ -12.150879, 9.860628 ], [ -12.431030, 9.838979 ], [ -12.601318, 9.622414 ], [ -12.716675, 9.346092 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.497826 ], [ -14.078979, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.584351, 10.217625 ], [ -14.694214, 10.660608 ], [ -14.842529, 10.881859 ], [ -15.133667, 11.043647 ], [ -14.688721, 11.528470 ], [ -14.386597, 11.512322 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.146746 ], [ -13.721924, 12.248760 ], [ -13.705444, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.049994 ], [ -10.843506, 9.692813 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.497437, 8.716789 ], [ -10.508423, 8.352823 ], [ -10.233765, 8.407168 ], [ -10.700684, 7.939556 ], [ -11.151123, 7.400600 ], [ -11.200562, 7.106344 ], [ -11.442261, 6.790080 ], [ -11.711426, 6.860985 ], [ -12.431030, 7.264394 ], [ -12.952881, 7.803521 ], [ -13.128662, 8.167993 ], [ -13.249512, 8.906780 ], [ -12.716675, 9.346092 ], [ -12.601318, 9.622414 ], [ -12.431030, 9.838979 ], [ -12.150879, 9.860628 ], [ -11.920166, 10.049994 ], [ -11.118164, 10.049994 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.168823, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.493164, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.542603, 15.506619 ], [ -9.552612, 15.490739 ], [ -9.700928, 15.268288 ], [ -10.090942, 15.331870 ], [ -10.651245, 15.135764 ], [ -11.354370, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.837769, 14.801439 ], [ -12.172852, 14.620794 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.139160, 16.588817 ], [ -15.628052, 16.372851 ], [ -16.122437, 16.457159 ], [ -16.468506, 16.135539 ], [ -16.550903, 16.678293 ], [ -16.270752, 17.167034 ], [ -16.149902, 18.109308 ], [ -16.259766, 19.098458 ], [ -16.380615, 19.596019 ], [ -16.281738, 20.097206 ], [ -16.539917, 20.571082 ], [ -17.067261, 21.002471 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.330315 ], [ -13.068237, 22.350076 ], [ -6.168823, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.119385, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.501326 ], [ -9.552612, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.331870 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.801439 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.133667, 16.588817 ], [ -15.622559, 16.367580 ], [ -16.122437, 16.457159 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.098458 ], [ -16.375122, 19.596019 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.325198 ], [ -13.013306, 21.943046 ], [ -13.068237, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.514407 ], [ 0.439453, 14.939477 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.516357, 15.119856 ], [ -1.071167, 14.976627 ], [ -2.005005, 14.562318 ], [ -2.197266, 14.248411 ], [ -2.971802, 13.800741 ], [ -3.109131, 13.544541 ], [ -3.526611, 13.341520 ], [ -4.010010, 13.475106 ], [ -4.284668, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.223999, 11.716788 ], [ -5.202026, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.374362 ], [ -5.817261, 10.223031 ], [ -6.053467, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.498413, 10.412183 ], [ -6.668701, 10.433793 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.147339 ], [ -7.904663, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.338623, 10.498614 ], [ -8.283691, 10.795537 ], [ -8.410034, 10.914224 ], [ -8.624268, 10.811724 ], [ -8.585815, 11.140677 ], [ -8.377075, 11.393879 ], [ -8.789062, 11.813588 ], [ -8.909912, 12.093039 ], [ -9.129639, 12.313169 ], [ -9.332886, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.596313, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.041260, 12.216549 ], [ -11.299438, 12.082296 ], [ -11.458740, 12.076924 ], [ -11.519165, 12.447305 ], [ -11.469727, 12.758232 ], [ -11.557617, 13.143678 ], [ -11.931152, 13.427024 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.620794 ], [ -11.837769, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.354370, 15.411319 ], [ -10.651245, 15.135764 ], [ -10.090942, 15.331870 ], [ -9.700928, 15.268288 ], [ -9.552612, 15.490739 ], [ -5.542603, 15.506619 ], [ -5.317383, 16.204125 ], [ -5.493164, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.168823, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.225220, 21.943046 ], [ 0.000000, 21.800308 ], [ 0.439453, 21.519517 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.119385, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.119856 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.016689 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.763550, 10.941192 ], [ -1.208496, 11.011297 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.982544, 9.866040 ], [ -4.334106, 9.611582 ], [ -4.784546, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.374362 ], [ -5.471191, 10.951978 ], [ -5.202026, 11.377724 ], [ -5.223999, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.341520 ], [ -3.109131, 13.544541 ], [ -2.971802, 13.800741 ], [ -2.197266, 14.248411 ], [ -2.005005, 14.562318 ], [ -1.071167, 14.976627 ], [ -0.516357, 15.119856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.439453, 13.976715 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.763550, 10.935798 ], [ -1.203003, 11.011297 ], [ -2.938843, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.510132, 9.898510 ], [ -3.982544, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.377724 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.475106 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.800741 ], [ -2.191772, 14.248411 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.531319 ], [ -9.212036, 7.318882 ], [ -8.926392, 7.313433 ], [ -8.723145, 7.716435 ], [ -8.442993, 7.689217 ], [ -8.486938, 7.400600 ], [ -8.388062, 6.915521 ], [ -8.607788, 6.468151 ], [ -8.316650, 6.195168 ], [ -7.998047, 6.129631 ], [ -7.575073, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.146016 ], [ -11.442261, 6.790080 ], [ -11.200562, 7.106344 ], [ -11.151123, 7.400600 ], [ -10.700684, 7.939556 ], [ -10.233765, 8.407168 ], [ -10.019531, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Liberia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.542998 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.683773 ], [ -8.486938, 7.395153 ], [ -8.388062, 6.910067 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.195168 ], [ -7.992554, 6.124170 ], [ -7.569580, 5.708914 ], [ -7.542114, 5.315236 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.362843 ], [ -7.976074, 4.357366 ], [ -9.003296, 4.833733 ], [ -9.915161, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.395153 ], [ -10.695190, 7.939556 ], [ -10.228271, 8.407168 ], [ -10.014038, 8.428904 ], [ -9.755859, 8.542998 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.053467, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.374362 ], [ -4.954834, 10.152746 ], [ -4.784546, 9.822742 ], [ -4.334106, 9.611582 ], [ -3.982544, 9.866040 ], [ -3.515625, 9.903921 ], [ -2.828979, 9.644077 ], [ -2.565308, 8.222364 ], [ -2.988281, 7.384258 ], [ -3.246460, 6.255237 ], [ -2.812500, 5.391805 ], [ -2.856445, 4.997922 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.183953 ], [ -4.652710, 5.173011 ], [ -5.839233, 4.997922 ], [ -6.531372, 4.707828 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.368320 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.575073, 5.708914 ], [ -7.998047, 6.129631 ], [ -8.316650, 6.195168 ], [ -8.607788, 6.468151 ], [ -8.388062, 6.915521 ], [ -8.486938, 7.400600 ], [ -8.442993, 7.689217 ], [ -8.283691, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.320212 ], [ -8.206787, 8.456072 ], [ -7.833252, 8.581021 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.234253, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.904663, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.855469, 10.141932 ], [ -6.668701, 10.433793 ], [ -6.498413, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Côte d'Ivoire" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.207275, 10.525619 ], [ -6.047974, 10.098670 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.982544, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.828979, 9.644077 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.246460, 6.249776 ], [ -2.812500, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.986977 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.531372, 4.702354 ], [ -7.520142, 4.340934 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.542114, 5.315236 ], [ -7.569580, 5.708914 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.195168 ], [ -8.602295, 6.468151 ], [ -8.388062, 6.910067 ], [ -8.486938, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.689217 ], [ -8.223267, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.378612 ], [ -8.311157, 9.790264 ], [ -8.228760, 10.131117 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.624512, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.668701, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.207275, 10.525619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.439453, 8.819939 ], [ 0.439453, 5.703448 ], [ 0.000000, 5.539446 ], [ -0.510864, 5.348052 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.713303 ], [ -2.856445, 4.997922 ], [ -2.812500, 5.391805 ], [ -3.246460, 6.255237 ], [ -2.988281, 7.384258 ], [ -2.565308, 8.222364 ], [ -2.966309, 10.395975 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.011297 ], [ -0.763550, 10.941192 ], [ -0.439453, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.925011 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.868790 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.065674, 4.997922 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.812500, 5.386336 ], [ -3.246460, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.966309, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.011297 ], [ -0.763550, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.514407 ], [ 0.000000, 21.800308 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.519517 ], [ 0.000000, 21.800308 ], [ -0.225220, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.939477 ], [ 0.439453, 13.982046 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.439453, 14.939477 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 14.934170 ], [ 0.439453, 13.976715 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 0.439453, 14.934170 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.439453, 11.016689 ], [ 0.439453, 8.819939 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.439453, 11.011297 ], [ 0.439453, 8.868790 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.649811 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.925011 ], [ 0.021973, 11.016689 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.659204 ], [ -8.684692, 27.396155 ], [ -8.690186, 25.883937 ], [ -11.969604, 25.938287 ], [ -11.942139, 23.377556 ], [ -12.875977, 23.286765 ], [ -13.123169, 22.776182 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.749146, 21.534847 ], [ -14.633789, 21.861499 ], [ -14.562378, 21.943046 ], [ -14.221802, 22.314508 ], [ -13.892212, 23.694835 ], [ -12.502441, 24.771772 ], [ -12.035522, 26.032106 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.887780 ], [ -10.552368, 26.995513 ], [ -10.189819, 26.863281 ], [ -9.739380, 26.863281 ], [ -9.415283, 27.093364 ], [ -8.800049, 27.122702 ], [ -8.822021, 27.659204 ], [ -8.668213, 27.659204 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.662720, 27.591066 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.875977, 23.286765 ], [ -13.117676, 22.771117 ], [ -13.013306, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.502441, 24.771772 ], [ -12.030029, 26.032106 ], [ -11.716919, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.794556, 27.122702 ], [ -8.816528, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.520386, 41.310824 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.333983 ], [ -7.031250, 40.187267 ], [ -7.069702, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.102661, 39.031986 ], [ -7.377319, 38.376115 ], [ -7.031250, 38.078366 ], [ -7.168579, 37.805444 ], [ -7.542114, 37.431251 ], [ -7.454224, 37.099003 ], [ -7.860718, 36.840065 ], [ -8.388062, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.750610, 37.653383 ], [ -8.843994, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.530640, 38.741231 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.981323, 40.162083 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.865967, 41.310824 ], [ -6.520386, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.509399, 41.310824 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.025757, 40.183070 ], [ -7.064209, 39.711413 ], [ -7.498169, 39.631077 ], [ -7.097168, 39.031986 ], [ -7.371826, 38.371809 ], [ -7.031250, 38.074041 ], [ -7.168579, 37.805444 ], [ -7.536621, 37.426888 ], [ -7.454224, 37.099003 ], [ -7.855225, 36.840065 ], [ -8.382568, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.653383 ], [ -8.838501, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.047241, 39.753657 ], [ -8.975830, 40.157885 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.865967, 41.310824 ], [ -6.509399, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.430224 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.472412, 38.294248 ], [ -0.686646, 37.644685 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.681636 ], [ -4.998779, 36.328403 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.520386, 36.945502 ], [ -7.454224, 37.099003 ], [ -7.542114, 37.431251 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.078366 ], [ -7.377319, 38.376115 ], [ -7.102661, 39.031986 ], [ -7.503662, 39.631077 ], [ -7.069702, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.333983 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.520386, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.655488 ], [ -0.466919, 38.294248 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.099003 ], [ -7.536621, 37.426888 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.031986 ], [ -7.498169, 39.631077 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.402484 ], [ -2.609253, 35.182788 ], [ -2.175293, 35.169318 ], [ -1.796265, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.312866, 32.263911 ], [ -2.620239, 32.096536 ], [ -3.070679, 31.728167 ], [ -3.652954, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.505484 ], [ -5.245972, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.659204 ], [ -8.822021, 27.659204 ], [ -8.800049, 27.122702 ], [ -9.415283, 27.093364 ], [ -9.739380, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.995513 ], [ -11.392822, 26.887780 ], [ -11.722412, 26.106121 ], [ -12.035522, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.694835 ], [ -14.221802, 22.314508 ], [ -14.562378, 21.943046 ], [ -14.633789, 21.861499 ], [ -14.749146, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.265259, 22.679916 ], [ -16.331177, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.430298, 24.362110 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.804077, 25.636574 ], [ -14.441528, 26.258936 ], [ -13.776855, 26.622908 ], [ -13.145142, 27.644606 ], [ -13.123169, 27.654338 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.903931, 28.835050 ], [ -10.404053, 29.099377 ], [ -9.569092, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.040677 ], [ -9.305420, 32.565333 ], [ -8.662720, 33.243282 ], [ -7.657471, 33.701493 ], [ -6.915894, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Morocco" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.012329, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.927368, 24.976099 ], [ -6.454468, 24.961160 ], [ -6.119385, 21.943046 ], [ -6.075439, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.123169, 22.776182 ], [ -12.875977, 23.286765 ], [ -11.942139, 23.377556 ], [ -11.969604, 25.938287 ], [ -8.690186, 25.883937 ], [ -8.684692, 27.396155 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.119385, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.013306, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.927368, 24.976099 ], [ -1.554565, 22.796439 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.075439, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.961160 ], [ -4.927368, 24.976099 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.225220, 21.943046 ], [ 0.406494, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.119385, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.266421 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.554565, 22.796439 ], [ -4.927368, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.668213, 27.591066 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.245972, 30.002517 ], [ -4.861450, 30.505484 ], [ -3.691406, 30.897511 ], [ -3.652954, 31.639352 ], [ -3.070679, 31.728167 ], [ -2.620239, 32.096536 ], [ -1.312866, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.796265, 34.529187 ], [ -2.175293, 35.169318 ], [ -1.213989, 35.715298 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.439453, 36.266421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ], [ 0.406494, 21.534847 ], [ -0.225220, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.591066 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 30.002517 ], [ -4.861450, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.639352 ], [ -3.070679, 31.723495 ], [ -2.614746, 32.096536 ], [ -1.307373, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.790771, 34.529187 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.261992 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.575073, 55.131790 ], [ -7.366333, 54.597528 ], [ -7.575073, 54.062612 ], [ -6.954346, 54.075506 ], [ -6.201782, 53.868725 ], [ -6.036987, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.672555 ], [ -9.981079, 51.822198 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.333130, 54.667478 ], [ -7.575073, 55.131790 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.868725 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.563843, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.168091, 52.865814 ], [ -9.689941, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.433960, 54.466845 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.771208 ], [ 0.000000, 50.774682 ], [ -0.791016, 50.778155 ], [ -2.493896, 50.502946 ], [ -2.960815, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.961822 ], [ -5.778809, 50.162824 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.773560, 52.842595 ], [ -4.581299, 53.497850 ], [ -3.092651, 53.406257 ], [ -2.949829, 53.985165 ], [ -3.630981, 54.616617 ], [ -4.844971, 54.791185 ], [ -5.086670, 55.062641 ], [ -4.724121, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.313517 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.175731 ], [ -5.663452, 54.556137 ], [ -6.201782, 53.868725 ], [ -6.954346, 54.075506 ], [ -7.575073, 54.062612 ], [ -7.366333, 54.597528 ], [ -7.575073, 55.131790 ], [ -6.734619, 55.175731 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.076172, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.988525, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.673934 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.975108 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.619507, 55.776573 ], [ -5.635986, 56.022948 ], [ -3.076172, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.834440 ], [ 0.439453, 42.646081 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.906128, 43.424999 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.016039 ], [ -2.230225, 47.066380 ], [ -2.966309, 47.572820 ], [ -4.493408, 47.956824 ], [ -4.597778, 48.687334 ], [ -3.295898, 48.904449 ], [ -1.620483, 48.647428 ], [ -1.933594, 49.777717 ], [ -0.994263, 49.350177 ], [ 0.000000, 49.685401 ], [ 0.439453, 49.834440 ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.830896 ], [ 0.439453, 42.642041 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.032761 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.192017, 46.016039 ], [ -2.224731, 47.062638 ], [ -2.960815, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.643798 ], [ -1.933594, 49.777717 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.439453, 49.830896 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.267212, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.426758, 41.795888 ], [ -7.256470, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.860962, 40.979898 ], [ -6.866455, 40.647304 ], [ -8.816528, 40.647304 ], [ -8.772583, 40.763901 ], [ -8.789062, 40.979898 ], [ -8.794556, 41.186922 ], [ -8.992310, 41.545589 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.267212, 42.281373 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Portugal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.992310, 41.541478 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.261719, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.981567, 43.751257 ], [ -6.756592, 43.568452 ], [ -5.416260, 43.576411 ], [ -4.350586, 43.405047 ], [ -3.521118, 43.456906 ], [ -1.906128, 43.424999 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.439453, 42.646081 ], [ 0.439453, 40.647304 ], [ -6.866455, 40.647304 ], [ -6.860962, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.668701, 41.885921 ], [ -7.256470, 41.918629 ], [ -7.426758, 41.795888 ], [ -8.014526, 41.791793 ], [ -8.267212, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.981567, 43.751257 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.642041 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.743652, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.913940, 64.366061 ], [ -17.797852, 63.680377 ], [ -18.660278, 63.497122 ], [ -19.973145, 63.643821 ], [ -22.500000, 63.932545 ], [ -22.763672, 63.961496 ], [ -22.500000, 64.081805 ], [ -21.780396, 64.404058 ], [ -22.500000, 64.567319 ], [ -22.939453, 64.666219 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.230835, 65.380571 ], [ -22.500000, 65.412589 ], [ -22.939453, 65.460542 ], [ -22.939453, 66.335300 ], [ -22.500000, 66.377158 ], [ -22.137451, 66.412352 ], [ -20.577393, 65.732884 ], [ -19.061279, 66.277908 ], [ -17.803345, 65.995681 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.166382, 66.526392 ], [ -15.858765, 66.513260 ], [ -14.507446, 66.456275 ], [ -14.738159, 65.809530 ], [ -13.612061, 65.127638 ], [ -14.908447, 64.363685 ], [ -17.792358, 63.677942 ], [ -18.654785, 63.497122 ], [ -22.500000, 63.930131 ], [ -22.763672, 63.959085 ], [ -22.500000, 64.079404 ], [ -21.780396, 64.401685 ], [ -22.500000, 64.564960 ], [ -22.939453, 64.663868 ], [ -22.939453, 65.004903 ], [ -22.500000, 65.053602 ], [ -22.186890, 65.086018 ], [ -22.225342, 65.378282 ], [ -22.500000, 65.410303 ], [ -22.939453, 65.458261 ], [ -22.939453, 66.333095 ], [ -22.500000, 66.374956 ], [ -22.137451, 66.410154 ], [ -20.577393, 65.732884 ], [ -19.055786, 66.275698 ], [ -17.797852, 65.993447 ], [ -16.210327, 66.513260 ], [ -16.166382, 66.526392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.010254, 58.636935 ], [ -4.075928, 57.554155 ], [ -3.059692, 57.692406 ], [ -1.961060, 57.686533 ], [ -2.224731, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.988525, 55.776573 ], [ -1.801758, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.344849, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.276911 ], [ -6.152344, 56.785836 ], [ -5.789795, 57.821355 ], [ -5.015259, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.010254, 58.636935 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.004761, 58.634076 ], [ -4.075928, 57.554155 ], [ -3.054199, 57.689470 ], [ -1.961060, 57.683597 ], [ -2.219238, 56.869994 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.988525, 55.776573 ], [ -1.796265, 55.528631 ], [ -4.746094, 55.528631 ], [ -5.042725, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.339355, 55.528631 ], [ -5.603027, 55.528631 ], [ -5.619507, 55.776573 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.785836 ], [ -5.784302, 57.818429 ], [ -5.009766, 58.631217 ], [ -4.213257, 58.551061 ], [ -3.004761, 58.634076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.175903, 73.310514 ], [ -22.500000, 73.310514 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.137451, 71.469124 ], [ -21.758423, 70.665426 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.971189 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.185165 ], [ -22.500000, 72.227132 ], [ -22.939453, 72.320791 ], [ -22.939453, 72.971189 ] ] ], [ [ [ -22.939453, 70.155288 ], [ -22.500000, 70.138498 ], [ -22.351685, 70.131032 ], [ -22.500000, 70.084305 ], [ -22.939453, 69.943491 ], [ -22.939453, 70.155288 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 73.308936 ], [ -22.939453, 74.140084 ], [ -21.357422, 74.140084 ], [ -21.011353, 74.019543 ], [ -20.434570, 73.817167 ], [ -20.764160, 73.464420 ], [ -22.170410, 73.308936 ], [ -22.939453, 73.308936 ] ] ], [ [ [ -22.939453, 71.847674 ], [ -22.500000, 71.642914 ], [ -22.131958, 71.469124 ], [ -21.752930, 70.663607 ], [ -22.500000, 70.585244 ], [ -22.939453, 70.537713 ], [ -22.939453, 71.847674 ] ] ], [ [ [ -22.939453, 72.972798 ], [ -22.500000, 72.733112 ], [ -22.313232, 72.630094 ], [ -22.302246, 72.183484 ], [ -22.500000, 72.225455 ], [ -22.939453, 72.319122 ], [ -22.939453, 72.972798 ] ] ], [ [ [ -22.939453, 70.153423 ], [ -22.500000, 70.136632 ], [ -22.351685, 70.129165 ], [ -22.500000, 70.082434 ], [ -22.939453, 69.941607 ], [ -22.939453, 70.153423 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.412352 ], [ -21.967163, 66.337505 ], [ -22.911987, 66.337505 ], [ -22.137451, 66.412352 ] ] ], [ [ [ -16.765137, 66.337505 ], [ -16.221313, 66.513260 ], [ -16.171875, 66.528580 ], [ -15.820312, 66.513260 ], [ -14.512939, 66.456275 ], [ -14.562378, 66.337505 ], [ -16.765137, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iceland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.137451, 66.410154 ], [ -21.972656, 66.337505 ], [ -22.884521, 66.337505 ], [ -22.137451, 66.410154 ] ] ], [ [ [ -16.754150, 66.337505 ], [ -16.210327, 66.513260 ], [ -16.166382, 66.526392 ], [ -15.858765, 66.513260 ], [ -14.507446, 66.456275 ], [ -14.556885, 66.337505 ], [ -16.754150, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.094238, 79.253586 ], [ -19.198608, 79.171335 ], [ -19.709473, 78.751731 ], [ -19.676514, 77.638894 ], [ -18.473511, 76.986335 ], [ -20.039062, 76.945452 ], [ -21.681519, 76.629067 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.296950 ], [ -21.599121, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.094238, 79.253586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -19.088745, 79.253586 ], [ -19.193115, 79.171335 ], [ -19.703979, 78.751731 ], [ -19.671021, 77.638894 ], [ -18.473511, 76.985098 ], [ -20.033569, 76.944212 ], [ -21.681519, 76.627796 ], [ -19.835815, 76.098157 ], [ -19.599609, 75.248861 ], [ -20.670776, 75.156266 ], [ -19.374390, 74.295463 ], [ -21.593628, 74.223935 ], [ -21.011353, 74.019543 ], [ -20.665283, 73.898111 ], [ -22.939453, 73.898111 ], [ -22.939453, 79.253586 ], [ -19.088745, 79.253586 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.885010, 82.732092 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 81.187965 ], [ -22.500000, 81.253362 ], [ -20.626831, 81.524751 ], [ -15.770874, 81.913147 ], [ -12.771606, 81.719233 ], [ -12.211304, 81.291703 ], [ -16.287231, 80.580741 ], [ -16.853027, 80.350552 ], [ -20.050049, 80.177776 ], [ -17.731934, 80.129870 ], [ -18.901978, 79.400085 ], [ -19.198608, 79.171335 ], [ -19.302979, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187965 ] ] ], [ [ [ -22.939453, 82.088952 ], [ -22.906494, 82.093487 ], [ -22.500000, 81.920099 ], [ -22.077026, 81.735041 ], [ -22.500000, 81.515030 ], [ -22.939453, 81.280052 ], [ -22.939453, 82.088952 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.939453, 82.339708 ], [ -22.939453, 82.732092 ], [ -20.890503, 82.732092 ], [ -20.846558, 82.726530 ], [ -21.093750, 82.676285 ], [ -22.500000, 82.383517 ], [ -22.692261, 82.341904 ], [ -22.939453, 82.339708 ] ] ], [ [ [ -22.939453, 81.187124 ], [ -22.500000, 81.252526 ], [ -20.621338, 81.524751 ], [ -15.770874, 81.912374 ], [ -12.771606, 81.719233 ], [ -12.205811, 81.291703 ], [ -16.287231, 80.579842 ], [ -16.847534, 80.349631 ], [ -20.044556, 80.176839 ], [ -17.731934, 80.128928 ], [ -18.901978, 79.400085 ], [ -19.193115, 79.171335 ], [ -19.297485, 79.088462 ], [ -22.939453, 79.088462 ], [ -22.939453, 81.187124 ] ] ], [ [ [ -22.939453, 82.088196 ], [ -22.901001, 82.093487 ], [ -22.500000, 81.922414 ], [ -22.071533, 81.734251 ], [ -22.500000, 81.512599 ], [ -22.939453, 81.278386 ], [ -22.939453, 82.088196 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.727226 ], [ -21.099243, 82.676285 ], [ -21.373901, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greenland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -22.939453, 83.002837 ], [ -22.500000, 82.945726 ], [ -20.846558, 82.726530 ], [ -21.368408, 82.620052 ], [ -22.939453, 82.620052 ], [ -22.939453, 83.002837 ] ] ] } } ] } ] } , @@ -2932,201 +2920,201 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.198853, -69.873672 ], [ 19.259033, -69.892565 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.917725, -70.401821 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.439422 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 4.136353, -70.853683 ], [ 5.152588, -70.618084 ], [ 6.273193, -70.460697 ], [ 7.135620, -70.246460 ], [ 7.739868, -69.892565 ], [ 8.486938, -70.147827 ], [ 9.519653, -70.011201 ], [ 10.244751, -70.480896 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.419800, -69.971730 ], [ 14.732666, -70.029970 ], [ 15.122681, -70.401821 ], [ 15.946655, -70.029970 ], [ 17.023315, -69.913328 ], [ 18.198853, -69.873672 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.204346, -69.873672 ], [ 19.259033, -69.894454 ], [ 20.374146, -70.011201 ], [ 21.450806, -70.069330 ], [ 21.923218, -70.403663 ], [ 22.500000, -70.663607 ], [ 22.571411, -70.696320 ], [ 22.939453, -70.636305 ], [ 22.939453, -74.140084 ], [ -0.439453, -74.140084 ], [ -0.439453, -71.437674 ], [ -0.230713, -71.637723 ], [ 0.000000, -71.566641 ], [ 0.867920, -71.304315 ], [ 1.884155, -71.127434 ], [ 3.021240, -70.991928 ], [ 4.136353, -70.853683 ], [ 5.158081, -70.618084 ], [ 6.273193, -70.462534 ], [ 7.135620, -70.246460 ], [ 7.745361, -69.894454 ], [ 8.486938, -70.147827 ], [ 9.525146, -70.011201 ], [ 10.816040, -70.833855 ], [ 11.953125, -70.638127 ], [ 12.403564, -70.246460 ], [ 13.425293, -69.971730 ], [ 14.732666, -70.031846 ], [ 15.128174, -70.403663 ], [ 15.946655, -70.031846 ], [ 17.028809, -69.913328 ], [ 18.204346, -69.873672 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -28.459033 ], [ 19.000854, -28.969701 ], [ 18.462524, -29.041763 ], [ 17.830811, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.342163, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.738159, -25.388698 ], [ 14.403076, -23.850674 ], [ 14.381104, -22.654572 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.760376, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.879517, -21.534847 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.000854, -28.974507 ], [ 18.462524, -29.046566 ], [ 17.836304, -28.854296 ], [ 17.385864, -28.782104 ], [ 17.221069, -28.357568 ], [ 16.825562, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.210571, -27.093364 ], [ 14.990845, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.408569, -23.850674 ], [ 14.386597, -22.654572 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.765869, -21.534847 ], [ 20.879517, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.438314 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.885010, -26.824071 ], [ 20.665283, -26.475490 ], [ 20.753174, -25.864167 ], [ 20.165405, -24.916331 ], [ 19.890747, -24.766785 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -21.534847 ], [ 22.939453, -25.443275 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 21.604614, -26.725987 ], [ 20.890503, -26.828973 ], [ 20.665283, -26.475490 ], [ 20.758667, -25.869109 ], [ 20.165405, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.879517, -21.534847 ], [ 22.939453, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.890747, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.753174, -25.864167 ], [ 20.665283, -26.475490 ], [ 20.885010, -26.824071 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 22.939453, -25.438314 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 21.538696, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.066528, -34.791250 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.993473 ], [ 18.374634, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.606989 ], [ 18.242798, -32.426340 ], [ 18.220825, -31.658057 ], [ 17.561646, -30.722949 ], [ 17.061768, -29.873992 ], [ 16.342163, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.385864, -28.782104 ], [ 17.830811, -28.854296 ], [ 18.462524, -29.041763 ], [ 19.000854, -28.969701 ], [ 19.890747, -28.459033 ], [ 19.890747, -24.766785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.896240, -24.766785 ], [ 20.165405, -24.916331 ], [ 20.758667, -25.869109 ], [ 20.665283, -26.475490 ], [ 20.890503, -26.828973 ], [ 21.604614, -26.725987 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 22.939453, -25.443275 ], [ 22.939453, -33.906896 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.888658 ], [ 21.544189, -34.257216 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.616089, -34.818313 ], [ 19.193115, -34.461277 ], [ 18.858032, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.242798, -33.865854 ], [ 18.248291, -33.280028 ], [ 17.924194, -32.611616 ], [ 18.248291, -32.430977 ], [ 18.220825, -31.662733 ], [ 17.567139, -30.727671 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.825562, -28.081674 ], [ 17.221069, -28.357568 ], [ 17.385864, -28.782104 ], [ 17.836304, -28.854296 ], [ 18.462524, -29.046566 ], [ 19.000854, -28.974507 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.985596, 0.439449 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.298706, -1.993616 ], [ 13.991089, -2.465669 ], [ 13.106689, -2.427252 ], [ 12.573853, -1.944207 ], [ 12.491455, -2.388834 ], [ 11.815796, -2.509573 ], [ 11.475220, -2.761991 ], [ 11.854248, -3.425692 ], [ 11.090698, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.794556, -1.109550 ], [ 8.827515, -0.774513 ], [ 9.047241, -0.455928 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.985596, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.870239, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.332886, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.402588, -1.735574 ], [ 15.968628, -2.707122 ], [ 16.001587, -3.529869 ], [ 15.748901, -3.853293 ], [ 15.166626, -4.340934 ], [ 14.578857, -4.965088 ], [ 14.205322, -4.789943 ], [ 14.144897, -4.505238 ], [ 13.595581, -4.499762 ], [ 13.255005, -4.877521 ], [ 12.991333, -4.778995 ], [ 12.617798, -4.434044 ], [ 12.315674, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.090698, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.475220, -2.761991 ], [ 11.815796, -2.509573 ], [ 12.491455, -2.388834 ], [ 12.573853, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.991089, -2.465669 ], [ 14.298706, -1.993616 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 13.985596, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.340934 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.778995 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.096191, -3.979341 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.394322 ], [ 12.573853, -1.949697 ], [ 13.112183, -2.427252 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.554801 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.991089, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.519497 ], [ 21.796875, -8.906780 ], [ 21.945190, -8.303906 ], [ 21.741943, -7.917793 ], [ 21.725464, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.088501, -6.942786 ], [ 20.033569, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.165649, -7.732765 ], [ 19.011841, -7.983078 ], [ 18.462524, -7.841615 ], [ 18.132935, -7.983078 ], [ 17.468262, -8.064669 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.872868 ], [ 13.370361, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.960290 ], [ 12.321167, -6.096860 ], [ 12.178345, -5.785432 ], [ 12.436523, -5.681584 ], [ 12.463989, -5.244128 ], [ 12.628784, -4.986977 ], [ 12.991333, -4.778995 ], [ 13.255005, -4.877521 ], [ 13.595581, -4.499762 ], [ 14.144897, -4.505238 ], [ 14.205322, -4.789943 ], [ 14.578857, -4.965088 ], [ 15.166626, -4.340934 ], [ 15.748901, -3.853293 ], [ 16.001587, -3.529869 ], [ 15.968628, -2.707122 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.802368, -8.906780 ], [ 21.950684, -8.303906 ], [ 21.747437, -7.917793 ], [ 21.725464, -7.291639 ], [ 20.516968, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.462524, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.858521, -7.220800 ], [ 16.572876, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.861939 ], [ 13.024292, -5.982144 ], [ 12.733154, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.778995 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.340934 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.741556 ], [ 17.638550, -0.422970 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.370361, -5.861939 ], [ 16.325684, -5.872868 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.468262, -8.064669 ], [ 18.132935, -7.983078 ], [ 18.462524, -7.841615 ], [ 19.011841, -7.983078 ], [ 19.165649, -7.732765 ], [ 19.412842, -7.155400 ], [ 20.033569, -7.111795 ], [ 20.088501, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.725464, -7.286190 ], [ 21.741943, -7.917793 ], [ 21.945190, -8.303906 ], [ 21.796875, -8.906780 ], [ 21.873779, -9.519497 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.897489 ], [ 21.928711, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 22.939453, -17.256236 ], [ 22.939453, -17.575957 ], [ 22.500000, -17.675428 ], [ 21.373901, -17.926476 ], [ 18.951416, -17.785305 ], [ 18.259277, -17.308688 ], [ 14.205322, -17.350638 ], [ 14.057007, -17.418787 ], [ 13.458252, -16.967487 ], [ 12.810059, -16.941215 ], [ 12.211304, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.172852, -14.445319 ], [ 12.496948, -13.544541 ], [ 12.733154, -13.132979 ], [ 13.309937, -12.479487 ], [ 13.628540, -12.033948 ], [ 13.738403, -11.296934 ], [ 13.683472, -10.730778 ], [ 13.386841, -10.368958 ], [ 13.117676, -9.763198 ], [ 12.870483, -9.161756 ], [ 12.925415, -8.955619 ], [ 13.233032, -8.559294 ], [ 12.727661, -6.926427 ], [ 12.222290, -6.293459 ], [ 12.321167, -6.096860 ], [ 12.733154, -5.960290 ], [ 13.024292, -5.982144 ], [ 13.370361, -5.861939 ] ] ], [ [ [ 12.617798, -4.434044 ], [ 12.991333, -4.778995 ], [ 12.628784, -4.986977 ], [ 12.463989, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.178345, -5.785432 ], [ 11.914673, -5.036227 ], [ 12.315674, -4.603803 ], [ 12.617798, -4.434044 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.897489 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.825574 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.581194 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.967487 ], [ 14.057007, -17.418787 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.785305 ], [ 21.373901, -17.926476 ], [ 22.500000, -17.675428 ], [ 22.939453, -17.575957 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.879517, -21.810508 ], [ 19.890747, -21.846204 ], [ 19.890747, -22.350076 ], [ 14.309692, -22.350076 ], [ 14.254761, -22.111088 ], [ 14.095459, -21.943046 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.826538, -19.668453 ], [ 12.606812, -19.041349 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.298199 ], [ 12.211304, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.057007, -17.424029 ], [ 14.210815, -17.350638 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.581194 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.250220 ], [ 20.879517, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.606812, -19.046541 ], [ 11.793823, -18.067535 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.109293 ], [ 12.815552, -16.941215 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -12.897489 ], [ 22.939453, -17.256236 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 21.884766, -16.077486 ], [ 21.928711, -12.897489 ], [ 22.939453, -12.897489 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.500000, -12.897489 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.825574 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ], [ 22.500000, -12.897489 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.890747, -22.350076 ], [ 19.890747, -21.846204 ], [ 20.879517, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.896240, -22.350076 ], [ 19.896240, -21.851302 ], [ 20.879517, -21.815608 ], [ 20.912476, -18.250220 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.818237, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.268188, 16.857120 ], [ 3.718872, 16.188300 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.971320 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.934170 ], [ -0.269165, 14.928862 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.000000, 21.800308 ], [ 1.823730, 20.612220 ], [ 2.059937, 20.143628 ], [ 2.686157, 19.854561 ], [ 3.147583, 19.694314 ], [ 3.158569, 19.056926 ], [ 4.268188, 19.155547 ], [ 4.268188, 16.851862 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.752075, 15.411319 ], [ 1.384277, 15.321274 ], [ 1.016235, 14.966013 ], [ 0.373535, 14.928862 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.439453, 15.061515 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.269165, 14.928862 ], [ 0.000000, 14.934170 ], [ 0.373535, 14.934170 ], [ 0.291138, 14.445319 ], [ 0.428467, 13.992706 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.113727 ], [ 0.895386, 11.000512 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.439453, 15.061515 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burkina Faso" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.061515 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.021729, 12.849293 ], [ 2.175293, 12.624258 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.444702, 11.549998 ], [ 1.241455, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.439453, 15.061515 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.102947 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.022080 ], [ 0.000000, 10.935798 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.644412 ], [ 0.362549, 10.196000 ], [ 0.362549, 9.465317 ], [ 0.455933, 8.678779 ], [ 0.708618, 8.314777 ], [ 0.488892, 7.416942 ], [ 0.565796, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.054688, 5.932972 ], [ -0.439453, 5.375398 ], [ -0.439453, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.925011 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.649811 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.314777 ], [ 0.488892, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.964600, 22.350076 ], [ 9.234009, 21.943046 ], [ 8.569336, 21.570611 ], [ 5.674438, 19.606369 ], [ 4.262695, 19.155547 ], [ 3.153076, 19.062118 ], [ 3.142090, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.059937, 20.143628 ], [ 1.818237, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.964600, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.143628 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.800308 ], [ -0.439453, 22.085640 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.499075 ], [ 18.923950, 21.943046 ], [ 18.078003, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 22.350076 ], [ 22.939453, 20.014645 ], [ 22.500000, 20.226120 ], [ 19.846802, 21.493964 ], [ 18.912964, 21.943046 ], [ 18.067017, 22.350076 ], [ 22.939453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.990845, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.390974 ], [ 15.682983, 19.957860 ], [ 15.298462, 17.931702 ], [ 15.243530, 16.630929 ], [ 13.969116, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.595337, 13.330830 ], [ 14.490967, 12.860004 ], [ 14.210815, 12.806445 ], [ 14.177856, 12.484850 ], [ 13.991089, 12.463396 ], [ 13.315430, 13.560562 ], [ 13.079224, 13.597939 ], [ 12.299194, 13.042021 ], [ 11.524658, 13.330830 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.112915, 13.277373 ], [ 9.519653, 12.854649 ], [ 9.014282, 12.827870 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.817017, 13.116930 ], [ 6.443481, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.367065, 13.752725 ], [ 4.103394, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.662996 ], [ 2.845459, 12.238023 ], [ 2.488403, 12.238023 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.992706 ], [ 0.291138, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.971320 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.718872, 16.188300 ], [ 4.268188, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.674438, 19.606369 ], [ 8.569336, 21.570611 ], [ 9.234009, 21.943046 ], [ 9.964600, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.022080 ], [ 0.895386, 11.000512 ], [ 0.769043, 10.471607 ], [ 1.076660, 10.179781 ], [ 1.422729, 9.828154 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.614990, 6.833716 ], [ 1.862183, 6.146016 ], [ 1.054688, 5.932972 ], [ 0.834961, 6.282539 ], [ 0.565796, 6.915521 ], [ 0.488892, 7.416942 ], [ 0.708618, 8.314777 ], [ 0.455933, 8.678779 ], [ 0.362549, 9.465317 ], [ 0.362549, 10.196000 ], [ 0.000000, 10.644412 ], [ -0.054932, 10.709189 ], [ 0.000000, 10.935798 ], [ 0.021973, 11.022080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.422729, 9.822742 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.833716 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.488892, 7.411495 ], [ 0.714111, 8.314777 ], [ 0.461426, 8.678779 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.649811 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.925011 ], [ 0.021973, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.845459, 12.238023 ], [ 3.609009, 11.662996 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.336536 ], [ 3.702393, 10.066220 ], [ 3.218994, 9.449062 ], [ 2.911377, 9.140063 ], [ 2.719116, 8.510403 ], [ 2.746582, 7.874265 ], [ 2.691650, 6.260697 ], [ 1.862183, 6.146016 ], [ 1.614990, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.828154 ], [ 1.076660, 10.179781 ], [ 0.769043, 10.471607 ], [ 0.895386, 11.000512 ], [ 1.241455, 11.113727 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.238023 ], [ 2.845459, 12.238023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Benin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.238023 ], [ 3.609009, 11.657616 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.140063 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.868823 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.108337 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.232655 ], [ 2.850952, 12.238023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.438232, 13.870080 ], [ 6.443481, 13.496473 ], [ 6.817017, 13.116930 ], [ 7.327881, 13.100880 ], [ 7.800293, 13.346865 ], [ 9.014282, 12.827870 ], [ 9.519653, 12.854649 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.330830 ], [ 12.299194, 13.042021 ], [ 13.079224, 13.597939 ], [ 13.315430, 13.560562 ], [ 13.991089, 12.463396 ], [ 14.177856, 12.484850 ], [ 14.573364, 12.087667 ], [ 14.463501, 11.904979 ], [ 14.414062, 11.576907 ], [ 13.568115, 10.800933 ], [ 13.304443, 10.163560 ], [ 13.167114, 9.644077 ], [ 12.952881, 9.421968 ], [ 12.749634, 8.722218 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.803521 ], [ 11.837769, 7.400600 ], [ 11.744385, 6.986407 ], [ 11.057739, 6.648239 ], [ 10.491943, 7.057282 ], [ 10.112915, 7.040927 ], [ 9.519653, 6.457234 ], [ 9.228516, 6.446318 ], [ 8.756104, 5.484768 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.894165, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.615986 ], [ 4.323120, 6.271618 ], [ 3.570557, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.874265 ], [ 2.719116, 8.510403 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.449062 ], [ 3.702393, 10.066220 ], [ 3.598022, 10.336536 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.103394, 13.533860 ], [ 4.367065, 13.752725 ], [ 5.438232, 13.870080 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.645996, 2.284551 ], [ 11.271973, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.827271, 1.071105 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.078003, 22.350076 ], [ 18.923950, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.033081, 12.956383 ], [ 21.934204, 12.592094 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.719971, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.055542, 9.015302 ], [ 19.088745, 9.074976 ], [ 18.808594, 8.988175 ], [ 18.907471, 8.635334 ], [ 18.385620, 8.282163 ], [ 17.962646, 7.896030 ], [ 16.704712, 7.509535 ], [ 16.452026, 7.738208 ], [ 16.287231, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.276489, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.117188, 8.385431 ], [ 14.979858, 8.798225 ], [ 14.540405, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.166870, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.995901 ], [ 15.463257, 9.985081 ], [ 14.919434, 10.892648 ], [ 14.957886, 11.560762 ], [ 14.891968, 12.221918 ], [ 14.490967, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.969116, 15.686510 ], [ 15.243530, 16.630929 ], [ 15.298462, 17.931702 ], [ 15.682983, 19.957860 ], [ 15.902710, 20.390974 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.990845, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.078003, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.067017, 22.350076 ], [ 18.912964, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.548960 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.067017, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.860004 ], [ 14.891968, 12.221918 ], [ 14.957886, 11.560762 ], [ 14.919434, 10.892648 ], [ 15.463257, 9.985081 ], [ 14.908447, 9.995901 ], [ 14.622803, 9.925566 ], [ 14.166870, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.540405, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.694661 ], [ 15.276489, 7.422389 ], [ 14.771118, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.474487, 4.735201 ], [ 14.946899, 4.214943 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.858765, 3.014356 ], [ 15.902710, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.935669, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.947388, 2.322972 ], [ 12.354126, 2.196727 ], [ 11.749878, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.738190 ], [ 8.942871, 3.908099 ], [ 8.739624, 4.357366 ], [ 8.486938, 4.499762 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.519653, 6.457234 ], [ 10.112915, 7.040927 ], [ 10.491943, 7.057282 ], [ 11.057739, 6.648239 ], [ 11.744385, 6.986407 ], [ 11.837769, 7.400600 ], [ 12.062988, 7.803521 ], [ 12.216797, 8.309341 ], [ 12.749634, 8.722218 ], [ 12.952881, 9.421968 ], [ 13.167114, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.463501, 11.904979 ], [ 14.573364, 12.087667 ], [ 14.177856, 12.484850 ], [ 14.210815, 12.806445 ], [ 14.490967, 12.860004 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.939453, 10.844096 ], [ 22.939453, 4.696879 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 21.654053, 4.225900 ], [ 20.923462, 4.324501 ], [ 20.286255, 4.696879 ], [ 19.467773, 5.036227 ], [ 18.929443, 4.713303 ], [ 18.539429, 4.203986 ], [ 18.451538, 3.507938 ], [ 17.808838, 3.562765 ], [ 17.127686, 3.732708 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.902710, 2.558963 ], [ 15.858765, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.946899, 4.214943 ], [ 14.474487, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.771118, 6.413566 ], [ 15.276489, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.287231, 7.754537 ], [ 16.452026, 7.738208 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.896030 ], [ 18.385620, 8.282163 ], [ 18.907471, 8.635334 ], [ 18.808594, 8.988175 ], [ 19.088745, 9.074976 ], [ 20.055542, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.719971, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.691404 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.140677 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.844096 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 21.934204, 12.592094 ], [ 22.033081, 12.956383 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.548960 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 21.934204, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.548960 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.354126, 2.196727 ], [ 12.947388, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.024048, 1.400617 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.827271, 1.071105 ], [ 11.282959, 1.060120 ], [ 11.271973, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.870239, 0.000000 ], [ 14.221802, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.195557, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.127686, 3.732708 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.507938 ], [ 18.391113, 2.904639 ], [ 18.088989, 2.366880 ], [ 17.896729, 1.746556 ], [ 17.770386, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.682495, 0.000000 ], [ 17.660522, -0.054932 ], [ 17.627563, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.271240, 1.197423 ], [ 14.024048, 1.400617 ], [ 13.282471, 1.318243 ], [ 13.002319, 1.834403 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.935669, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.127686, 3.732708 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.896729, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.627563, -0.439449 ], [ 14.221802, -0.439449 ], [ 13.870239, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.024048, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.941162, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.133179, 3.727227 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.036227 ], [ 20.286255, 4.696879 ], [ 20.923462, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 22.939453, 4.696879 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.660522, -0.054932 ], [ 17.682495, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.770386, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.088989, 2.366880 ], [ 18.391113, 2.904639 ], [ 18.451538, 3.507938 ], [ 18.539429, 4.203986 ], [ 18.929443, 4.713303 ], [ 19.467773, 5.036227 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.324501 ], [ 21.659546, 4.225900 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.691404 ], [ 22.939453, -0.439449 ], [ 17.627563, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.391113, 2.899153 ], [ 18.451538, 3.502455 ], [ 18.544922, 4.203986 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.202759, 41.310824 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.313050 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.741231 ], [ 0.000000, 38.659778 ], [ -0.439453, 38.320111 ], [ -0.439453, 41.310824 ], [ 2.202759, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.213745, 41.310824 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.719604, 40.676472 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.905523 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.655488 ], [ -0.439453, 38.315801 ], [ -0.439453, 41.310824 ], [ 2.213745, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.085640 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.085640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.233865 ], [ 15.155640, 37.444335 ], [ 15.309448, 37.138425 ], [ 15.095215, 36.624345 ], [ 14.331665, 36.998166 ], [ 13.826294, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.130236 ], [ 13.738403, 38.035112 ], [ 15.518188, 38.233865 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 18.374634, 40.359103 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.166138, 39.427707 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.682983, 38.216604 ], [ 15.891724, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.715942, 39.546412 ], [ 15.408325, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.699707, 40.605612 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.805298, 40.501269 ], [ 9.667969, 39.181175 ], [ 9.212036, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.998166 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.035112 ], [ 15.518188, 38.229550 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.876141 ], [ 18.374634, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.216604 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.705200, 40.605612 ], [ 14.062500, 40.784701 ], [ 13.848267, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.782593, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.501269 ], [ 9.667969, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 20.994873, 40.580585 ], [ 20.670776, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.698734 ], [ 19.956665, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.346924, 40.979898 ], [ 19.385376, 41.310824 ], [ 20.527954, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.785645, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.785645, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.024780, 37.094622 ], [ 11.096191, 36.901587 ], [ 10.596313, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.936890, 35.701917 ], [ 10.805054, 34.836350 ], [ 10.145874, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.948120, 31.377089 ], [ 10.052490, 30.963479 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.311246 ], [ 9.052734, 32.105843 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.608032, 33.344296 ], [ 7.520142, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.371582, 35.483038 ], [ 8.217773, 36.434542 ], [ 8.415527, 36.949892 ], [ 9.508667, 37.352693 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.901587 ], [ 10.601807, 36.408021 ], [ 10.590820, 35.946883 ], [ 10.936890, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.338135, 33.783713 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.760867 ], [ 9.948120, 31.377089 ], [ 10.057983, 30.963479 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.437500, 32.505129 ], [ 8.432007, 32.750323 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.434542 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.120906 ], [ 7.734375, 36.888408 ], [ 8.415527, 36.949892 ], [ 8.217773, 36.434542 ], [ 8.371582, 35.483038 ], [ 8.140869, 34.655804 ], [ 7.520142, 34.098159 ], [ 7.608032, 33.344296 ], [ 8.426514, 32.750323 ], [ 8.437500, 32.509762 ], [ 9.052734, 32.105843 ], [ 9.481201, 30.311246 ], [ 9.805298, 29.425245 ], [ 9.854736, 28.960089 ], [ 9.678955, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.624023, 27.142257 ], [ 9.711914, 26.514820 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.368846 ], [ 9.948120, 24.941238 ], [ 10.299683, 24.382124 ], [ 10.766602, 24.567108 ], [ 11.557617, 24.101633 ], [ 11.997070, 23.473324 ], [ 9.234009, 21.943046 ], [ 8.514404, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.844535 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.499878, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.158569, 36.787291 ], [ 4.812012, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.256714, 37.112146 ], [ 7.327881, 37.120906 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Algeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.884014 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.434542 ], [ 8.377075, 35.478565 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.432007, 32.750323 ], [ 8.437500, 32.505129 ], [ 9.058228, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.142257 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 11.997070, 23.473324 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.085640 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.262207, 37.112146 ], [ 7.327881, 37.116526 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.796510 ], [ 13.079224, 32.879587 ], [ 13.914185, 32.713355 ], [ 15.243530, 32.268555 ], [ 15.710449, 31.377089 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.765439 ], [ 19.083252, 30.268556 ], [ 19.572144, 30.529145 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.132446, 32.240683 ], [ 20.852051, 32.708733 ], [ 21.538696, 32.847289 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.769897, 21.534847 ], [ 18.923950, 21.943046 ], [ 15.858765, 23.412847 ], [ 14.848022, 22.867318 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.044353 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.101633 ], [ 10.766602, 24.567108 ], [ 10.299683, 24.382124 ], [ 9.948120, 24.941238 ], [ 9.909668, 25.368846 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.514820 ], [ 9.624023, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.678955, 28.144660 ], [ 9.854736, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.311246 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.243530, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.765439 ], [ 19.088745, 30.268556 ], [ 19.572144, 30.524413 ], [ 20.055542, 30.987028 ], [ 19.819336, 31.751525 ], [ 20.132446, 32.236036 ], [ 20.852051, 32.708733 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.758911, 21.534847 ], [ 18.912964, 21.943046 ], [ 15.858765, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.096255 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.760867 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.044353 ], [ 14.139404, 22.492257 ], [ 14.848022, 22.867318 ], [ 14.990845, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.514404, 21.534847 ], [ 9.234009, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Niger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.056763, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.412847 ], [ 18.923950, 21.943046 ], [ 19.769897, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.990845, 21.943046 ], [ 14.848022, 22.867318 ], [ 15.858765, 23.412847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.407806 ], [ 18.912964, 21.943046 ], [ 19.758911, 21.534847 ], [ 15.056763, 21.534847 ], [ 14.996338, 21.943046 ], [ 14.853516, 22.862256 ], [ 15.858765, 23.407806 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.339592 ], [ 22.774658, 37.309014 ], [ 22.939453, 36.927939 ], [ 22.939453, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.848857 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.311491 ], [ 20.725708, 38.771216 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.626846 ], [ 20.610352, 40.111689 ], [ 20.670776, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 22.939453, 39.580290 ], [ 22.939453, 37.335224 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.311491 ], [ 20.731201, 38.771216 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.626846 ], [ 20.615845, 40.111689 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.470038 ], [ 0.000000, 53.667426 ], [ 0.181274, 53.327592 ], [ 0.466919, 52.932086 ], [ 1.680908, 52.739618 ], [ 1.554565, 52.103131 ], [ 1.049194, 51.808615 ], [ 1.444702, 51.292841 ], [ 0.549316, 50.767734 ], [ 0.000000, 50.774682 ], [ -0.439453, 50.778155 ], [ -0.439453, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.466845 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.673934 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.805218 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.774682 ], [ -0.439453, 54.466845 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.380930 ], [ 8.772583, 41.586688 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.012681 ] ] ], [ [ [ 2.510376, 51.151786 ], [ 2.653198, 50.798991 ], [ 3.120117, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.795532, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.894165, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.019859 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.290408 ], [ 6.036987, 46.728566 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.838989, 45.993145 ], [ 6.800537, 45.710015 ], [ 7.091675, 45.336702 ], [ 6.745605, 45.030833 ], [ 7.003784, 44.257003 ], [ 7.547607, 44.130971 ], [ 7.432251, 43.695680 ], [ 6.525879, 43.129052 ], [ 4.553833, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.982788, 42.476149 ], [ 1.823730, 42.346365 ], [ 0.697632, 42.799431 ], [ 0.335083, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.539469 ], [ 0.000000, 49.685401 ], [ 1.334839, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.510376, 51.151786 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.666281 ], [ -0.439453, 42.775243 ], [ -0.439453, 49.535904 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.697632, 42.799431 ], [ 1.823730, 42.346365 ], [ 2.982788, 42.476149 ], [ 3.037720, 41.894100 ], [ 2.087402, 41.228249 ], [ 0.807495, 41.017211 ], [ 0.796509, 40.979898 ], [ 0.719604, 40.680638 ], [ 0.681152, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.335083, 42.581400 ], [ 0.697632, 42.799431 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 42.795401 ], [ 1.829224, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.037720, 41.894100 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.719604, 40.676472 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.775243 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.581400 ], [ 0.703125, 42.795401 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.264038, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.428518 ], [ 19.885254, 54.867124 ], [ 21.264038, 55.191412 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.952386 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 11.969604, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.195312, 56.022948 ], [ 9.948120, 55.776573 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.277954, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.519302 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.195312, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 11.975098, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.107910, 55.776573 ], [ 8.102417, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.529419, 56.022948 ], [ 14.353638, 55.776573 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.363503 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.529419, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.534912, 56.022948 ], [ 14.359131, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.799072, 55.776573 ], [ 12.716675, 56.022948 ], [ 14.534912, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.069946, 53.510918 ], [ 6.904907, 53.484777 ], [ 7.091675, 53.146770 ], [ 6.838989, 52.231164 ], [ 6.586304, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.037940 ], [ 4.971313, 51.477962 ], [ 4.042969, 51.268789 ], [ 3.312378, 51.347770 ], [ 3.828735, 51.621427 ], [ 4.702148, 53.094024 ], [ 6.069946, 53.510918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Netherlands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.157837, 50.802463 ], [ 5.608521, 51.037940 ], [ 4.971313, 51.474540 ], [ 4.048462, 51.268789 ], [ 3.312378, 51.344339 ], [ 3.828735, 51.621427 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.477962 ], [ 5.603027, 51.037940 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.131143 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.532339 ], [ 4.795532, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.120117, 50.781629 ], [ 2.653198, 50.798991 ], [ 2.510376, 51.151786 ], [ 3.312378, 51.347770 ], [ 4.042969, 51.268789 ], [ 4.971313, 51.477962 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.971313, 51.474540 ], [ 5.608521, 51.037940 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 5.784302, 50.088869 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.587036, 50.380502 ], [ 3.125610, 50.781629 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.312378, 51.344339 ], [ 4.048462, 51.268789 ], [ 4.971313, 51.474540 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.131143 ], [ 6.240234, 49.905249 ], [ 6.185303, 49.464554 ], [ 5.894165, 49.443129 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.131143 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.010997 ], [ 11.953125, 54.197797 ], [ 12.513428, 54.473230 ], [ 13.645020, 54.078729 ], [ 14.117432, 53.758454 ], [ 14.348145, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.093008 ], [ 14.606323, 51.747439 ], [ 15.012817, 51.106971 ], [ 14.567871, 51.003386 ], [ 14.304199, 51.117317 ], [ 14.051514, 50.927276 ], [ 13.337402, 50.736455 ], [ 12.963867, 50.485474 ], [ 12.238770, 50.268277 ], [ 12.414551, 49.972422 ], [ 12.518921, 49.550162 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.879167 ], [ 13.238525, 48.418264 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.639485 ], [ 12.930908, 47.468950 ], [ 12.617798, 47.672786 ], [ 12.139893, 47.706065 ], [ 11.425781, 47.524620 ], [ 10.541382, 47.569114 ], [ 10.398560, 47.305310 ], [ 9.893188, 47.580231 ], [ 9.591064, 47.528329 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.617273 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.019859 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.905249 ], [ 6.042480, 50.131143 ], [ 6.152344, 50.805935 ], [ 5.987549, 51.852746 ], [ 6.586304, 51.852746 ], [ 6.838989, 52.231164 ], [ 7.091675, 53.146770 ], [ 6.904907, 53.484777 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.530513 ], [ 8.800049, 54.023907 ], [ 8.569336, 54.396550 ], [ 8.525391, 54.965002 ], [ 9.277954, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.591064, 47.528329 ], [ 9.629517, 47.349989 ], [ 9.475708, 47.103784 ], [ 9.931641, 46.924007 ], [ 10.442505, 46.893985 ], [ 10.360107, 46.487047 ], [ 9.920654, 46.316584 ], [ 9.179077, 46.441642 ], [ 8.964844, 46.038923 ], [ 8.486938, 46.008409 ], [ 8.311157, 46.164614 ], [ 7.750854, 45.824971 ], [ 7.272949, 45.779017 ], [ 6.838989, 45.993145 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.728566 ], [ 6.767578, 47.290408 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.617273 ], [ 8.519897, 47.831596 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.103784 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.441642 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 51.003386 ], [ 15.012817, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.171875, 50.426019 ], [ 16.715698, 50.219095 ], [ 16.864014, 50.474987 ], [ 17.550659, 50.362985 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.550415, 49.496675 ], [ 18.396606, 49.317961 ], [ 18.165894, 49.274973 ], [ 18.099976, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.539673, 48.803246 ], [ 17.100220, 48.817716 ], [ 16.957397, 48.600225 ], [ 16.495972, 48.788771 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.041469 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.879167 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.550162 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.927276 ], [ 14.304199, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.854478 ], [ 18.616333, 54.683359 ], [ 18.693237, 54.441297 ], [ 19.660034, 54.428518 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ], [ 22.939453, 54.287675 ], [ 22.939453, 49.869857 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 21.604614, 49.471694 ], [ 20.885010, 49.332282 ], [ 20.412598, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.575102 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.644043, 50.050085 ], [ 17.550659, 50.362985 ], [ 16.864014, 50.474987 ], [ 16.715698, 50.219095 ], [ 16.171875, 50.426019 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.012817, 51.106971 ], [ 14.606323, 51.747439 ], [ 14.683228, 52.093008 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.348145, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.798584, 54.052939 ], [ 16.358643, 54.514704 ], [ 17.622070, 54.854478 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.866317 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.471694 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.649536, 50.050085 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.474987 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.683228, 52.089633 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.249023, 49.041469 ], [ 16.029053, 48.734455 ], [ 16.495972, 48.788771 ], [ 16.957397, 48.600225 ], [ 16.875000, 48.472921 ], [ 16.979370, 48.125768 ], [ 16.902466, 47.717154 ], [ 16.336670, 47.713458 ], [ 16.528931, 47.498648 ], [ 16.199341, 46.852678 ], [ 16.007080, 46.687131 ], [ 15.133667, 46.660747 ], [ 14.628296, 46.434071 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.769968 ], [ 12.150879, 47.118738 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.754917 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.924007 ], [ 9.475708, 47.103784 ], [ 9.629517, 47.349989 ], [ 9.591064, 47.528329 ], [ 9.893188, 47.580231 ], [ 10.398560, 47.305310 ], [ 10.541382, 47.569114 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.706065 ], [ 12.617798, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.639485 ], [ 12.881470, 48.290503 ], [ 13.238525, 48.418264 ], [ 13.595581, 48.879167 ], [ 14.337158, 48.556614 ], [ 14.897461, 48.965794 ], [ 15.249023, 49.041469 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Austria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.199341, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.561890, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.666504, 45.836454 ], [ 15.320435, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.930420, 45.475540 ], [ 14.589844, 45.637087 ], [ 14.408569, 45.467836 ], [ 13.710938, 45.502497 ], [ 13.936157, 45.594822 ], [ 13.694458, 46.019853 ], [ 13.804321, 46.509735 ], [ 14.628296, 46.434071 ], [ 15.133667, 46.660747 ], [ 16.007080, 46.687131 ], [ 16.199341, 46.852678 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.467836 ], [ 13.716431, 45.498647 ], [ 13.936157, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.804321, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.398804, 40.979898 ], [ 9.678955, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.706665, 40.901058 ], [ 8.833008, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.118738 ], [ 12.376099, 46.769968 ], [ 13.804321, 46.509735 ], [ 13.694458, 46.019853 ], [ 13.936157, 45.594822 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.584839, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.955405 ], [ 15.924683, 41.963575 ], [ 16.166382, 41.742627 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.880295 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.057007, 40.788860 ], [ 13.848267, 40.979898 ], [ 13.623047, 41.191056 ], [ 12.886963, 41.257162 ], [ 12.101440, 41.705729 ], [ 11.189575, 42.358544 ], [ 10.508423, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.233393 ], [ 7.849731, 43.771094 ], [ 7.432251, 43.695680 ], [ 7.547607, 44.130971 ], [ 7.003784, 44.257003 ], [ 6.745605, 45.030833 ], [ 7.091675, 45.336702 ], [ 6.800537, 45.710015 ], [ 6.838989, 45.993145 ], [ 7.272949, 45.779017 ], [ 7.750854, 45.824971 ], [ 8.311157, 46.164614 ], [ 8.486938, 46.008409 ], [ 8.964844, 46.038923 ], [ 9.179077, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.487047 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.118738 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Italy" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.278198, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.265015, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.891235, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.848267, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.561890, 46.505954 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.954969 ], [ 18.451538, 45.759859 ], [ 18.825073, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.385376, 45.240086 ], [ 19.000854, 44.863656 ], [ 18.550415, 45.085157 ], [ 17.858276, 45.069641 ], [ 17.001343, 45.236218 ], [ 16.534424, 45.213004 ], [ 16.314697, 45.007535 ], [ 15.957642, 45.236218 ], [ 15.748901, 44.820812 ], [ 16.237793, 44.351350 ], [ 16.452026, 44.044167 ], [ 16.913452, 43.667872 ], [ 17.292480, 43.448931 ], [ 17.671509, 43.028745 ], [ 18.555908, 42.650122 ], [ 18.446045, 42.480200 ], [ 17.506714, 42.851806 ], [ 16.929932, 43.213183 ], [ 16.012573, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.375366, 44.319918 ], [ 14.919434, 44.738930 ], [ 14.897461, 45.077400 ], [ 14.254761, 45.236218 ], [ 13.947144, 44.805224 ], [ 13.656006, 45.139430 ], [ 13.677979, 45.487095 ], [ 13.710938, 45.502497 ], [ 14.408569, 45.467836 ], [ 14.589844, 45.637087 ], [ 14.930420, 45.475540 ], [ 15.325928, 45.452424 ], [ 15.320435, 45.733025 ], [ 15.666504, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.561890, 46.505954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.797119, 48.625647 ], [ 21.868286, 48.323387 ], [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.621094, 46.995241 ], [ 21.016846, 46.316584 ], [ 20.214844, 46.130363 ], [ 19.594116, 46.172223 ], [ 18.825073, 45.909122 ], [ 18.451538, 45.759859 ], [ 17.627563, 45.954969 ], [ 16.880493, 46.381044 ], [ 16.561890, 46.505954 ], [ 16.369629, 46.841407 ], [ 16.199341, 46.852678 ], [ 16.528931, 47.498648 ], [ 16.336670, 47.713458 ], [ 16.902466, 47.717154 ], [ 16.979370, 48.125768 ], [ 17.484741, 47.868459 ], [ 17.852783, 47.761484 ], [ 18.693237, 47.883197 ], [ 18.775635, 48.085419 ], [ 19.171143, 48.114767 ], [ 19.660034, 48.268569 ], [ 19.764404, 48.202710 ], [ 20.236816, 48.330691 ], [ 20.473022, 48.563885 ], [ 20.797119, 48.625647 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.224673 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.575102 ], [ 19.824829, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.332282 ], [ 21.604614, 49.471694 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 21.868286, 48.323387 ], [ 20.797119, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.330691 ], [ 19.764404, 48.202710 ], [ 19.660034, 48.268569 ], [ 19.171143, 48.114767 ], [ 18.775635, 48.085419 ], [ 18.693237, 47.883197 ], [ 17.852783, 47.761484 ], [ 17.484741, 47.868459 ], [ 16.979370, 48.125768 ], [ 16.875000, 48.472921 ], [ 17.100220, 48.817716 ], [ 17.539673, 48.803246 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.099976, 49.045070 ], [ 18.165894, 49.274973 ], [ 18.396606, 49.317961 ], [ 18.550415, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.575102 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.236218 ], [ 17.858276, 45.069641 ], [ 18.550415, 45.085157 ], [ 19.000854, 44.863656 ], [ 19.363403, 44.863656 ], [ 19.116211, 44.425934 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.215088, 43.524655 ], [ 19.028320, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.555908, 42.650122 ], [ 17.671509, 43.028745 ], [ 17.292480, 43.448931 ], [ 16.913452, 43.667872 ], [ 16.452026, 44.044167 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.820812 ], [ 15.957642, 45.236218 ], [ 16.314697, 45.007535 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.236218 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.069641 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.422011 ], [ 19.599609, 44.040219 ], [ 19.451294, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.033813, 43.432977 ], [ 18.704224, 43.201172 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.913452, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.957642, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.001343, 45.232349 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.215088, 43.524655 ], [ 19.478760, 43.353144 ], [ 19.627075, 43.217187 ], [ 19.956665, 43.109004 ], [ 20.335693, 42.900113 ], [ 20.253296, 42.815551 ], [ 20.066528, 42.589489 ], [ 19.797363, 42.500453 ], [ 19.736938, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.285437 ], [ 18.446045, 42.480200 ], [ 18.555908, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.028320, 43.432977 ], [ 19.215088, 43.524655 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Montenegro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.220581, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.632568, 43.213183 ], [ 19.956665, 43.104994 ], [ 20.341187, 42.900113 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.302979, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.033813, 43.432977 ], [ 19.220581, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.214844, 46.130363 ], [ 20.758667, 45.736860 ], [ 20.874023, 45.417732 ], [ 21.478271, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 21.912231, 42.305753 ], [ 21.571655, 42.248852 ], [ 21.538696, 42.322001 ], [ 21.659546, 42.439674 ], [ 21.774902, 42.686473 ], [ 21.632080, 42.678397 ], [ 21.434326, 42.863886 ], [ 21.269531, 42.912183 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.133061 ], [ 20.813599, 43.273206 ], [ 20.632324, 43.217187 ], [ 20.494995, 42.888040 ], [ 20.253296, 42.815551 ], [ 20.335693, 42.900113 ], [ 19.956665, 43.109004 ], [ 19.627075, 43.217187 ], [ 19.478760, 43.353144 ], [ 19.215088, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.425934 ], [ 19.363403, 44.863656 ], [ 19.000854, 44.863656 ], [ 19.385376, 45.240086 ], [ 19.072266, 45.521744 ], [ 18.825073, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.594116, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.417732 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.770137 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.939453, 43.249204 ], [ 22.939453, 43.177141 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.322001 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.678397 ], [ 21.439819, 42.863886 ], [ 21.275024, 42.908160 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.129052 ], [ 20.813599, 43.273206 ], [ 20.637817, 43.217187 ], [ 20.494995, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.900113 ], [ 19.956665, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.451294, 43.568452 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.594116, 46.172223 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.133061 ], [ 21.143188, 43.068888 ], [ 21.269531, 42.912183 ], [ 21.434326, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.686473 ], [ 21.659546, 42.439674 ], [ 21.538696, 42.322001 ], [ 21.571655, 42.248852 ], [ 21.351929, 42.208176 ], [ 20.758667, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.322001 ], [ 20.066528, 42.589489 ], [ 20.253296, 42.815551 ], [ 20.494995, 42.888040 ], [ 20.632324, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.273206 ], [ 20.956421, 43.129052 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.908160 ], [ 21.439819, 42.863886 ], [ 21.632080, 42.678397 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.322001 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.208176 ], [ 20.764160, 42.053372 ], [ 20.714722, 41.849105 ], [ 20.588379, 41.857288 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.322001 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.811522 ], [ 20.494995, 42.884015 ], [ 20.637817, 43.217187 ], [ 20.813599, 43.273206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.690511 ], [ 19.797363, 42.500453 ], [ 20.066528, 42.589489 ], [ 20.280762, 42.322001 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.842905 ], [ 21.000366, 40.647304 ], [ 19.324951, 40.647304 ], [ 19.313965, 40.730608 ], [ 19.341431, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.690511 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.322001 ], [ 20.522461, 42.216314 ], [ 20.588379, 41.857288 ], [ 20.462036, 41.516804 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.330444, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.736938, 42.686473 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.055054, 41.153842 ], [ 21.747437, 40.979898 ], [ 21.670532, 40.934265 ], [ 21.016846, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.758667, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.912231, 42.305753 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.442726 ], [ 22.939453, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.764160, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.287675 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.264038, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.952386 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 48.000950 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 21.560669, 44.770137 ], [ 21.478271, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.758667, 45.736860 ], [ 20.214844, 46.130363 ], [ 21.016846, 46.316584 ], [ 21.621094, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 48.000950 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 22.939453, 43.253205 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.177141 ], [ 22.939453, 41.442726 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.939453, 43.177141 ] ] ], [ [ [ 22.939453, 43.249204 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.249204 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.869857 ], [ 22.939453, 48.000950 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 22.939453, 49.869857 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.866317 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.224673 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.866317 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.000366, 40.647304 ], [ 21.016846, 40.842905 ], [ 21.670532, 40.934265 ], [ 21.747437, 40.979898 ], [ 22.055054, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.339700 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.339700 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.551636, 64.788168 ], [ 13.919678, 64.446742 ], [ 13.568115, 64.050575 ], [ 12.579346, 64.067396 ], [ 11.925659, 63.129538 ], [ 11.991577, 61.801688 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.119619 ], [ 11.464233, 59.433903 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.377075, 58.315260 ], [ 7.047729, 58.080781 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.664966 ], [ 4.987793, 61.972525 ], [ 5.910645, 62.616089 ], [ 8.552856, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.354126, 65.881460 ], [ 13.112183, 66.513260 ], [ 13.326416, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.540161, 66.687784 ], [ 15.386353, 66.513260 ], [ 15.106201, 66.193792 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.573608, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.991577, 61.799093 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.116882 ], [ 11.469727, 59.431110 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.382568, 58.312374 ], [ 7.047729, 58.077876 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.662192 ], [ 4.993286, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.552856, 63.452964 ], [ 10.530396, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.123169, 66.513260 ], [ 13.337402, 66.687784 ], [ 15.540161, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.612487 ], [ 12.623291, 55.528631 ], [ 10.980835, 55.528631 ], [ 10.898438, 55.776573 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.541382, 57.216634 ], [ 10.244751, 56.891003 ], [ 10.365601, 56.610909 ], [ 10.909424, 56.459455 ], [ 10.667725, 56.084298 ], [ 10.365601, 56.191424 ], [ 9.948120, 55.776573 ], [ 9.700928, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.085938, 56.541315 ], [ 8.256226, 56.812908 ], [ 8.541870, 57.112385 ], [ 9.420776, 57.174970 ], [ 9.772339, 57.450861 ], [ 10.579834, 57.730552 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.579346, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.113403, 55.528631 ], [ 8.107910, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.209106, 65.028104 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.116699, 61.341444 ], [ 17.830811, 60.638183 ], [ 18.786621, 60.084023 ], [ 17.863770, 58.955674 ], [ 16.825562, 58.722599 ], [ 16.446533, 57.043718 ], [ 15.875244, 56.105747 ], [ 14.661255, 56.203649 ], [ 14.353638, 55.776573 ], [ 14.177856, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.782837, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.464233, 59.433903 ], [ 12.299194, 60.119619 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.801688 ], [ 11.925659, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.050575 ], [ 13.919678, 64.446742 ], [ 13.551636, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.850015 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.105747 ], [ 14.666748, 56.200593 ], [ 14.359131, 55.776573 ], [ 14.183350, 55.528631 ], [ 12.881470, 55.528631 ], [ 12.799072, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.193792 ], [ 15.386353, 66.513260 ], [ 15.540161, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.060188 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 21.318970, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.055298, 62.608508 ], [ 21.533203, 63.191541 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 22.939453, 64.060188 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.858609 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.818864 ], [ 22.939453, 64.057785 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.362090 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.785836 ], [ 21.577148, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.328721 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.176147, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.197876, 56.337856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.203369, 56.337856 ], [ 22.500000, 56.328721 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.115723, 55.776573 ], [ 21.055298, 56.032157 ], [ 22.203369, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.373901, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.207436 ], [ 22.939453, 68.867478 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 21.242065, 69.370638 ], [ 20.643311, 69.107777 ], [ 20.022583, 69.066601 ], [ 19.874268, 68.407268 ], [ 17.990112, 68.568414 ], [ 17.726440, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.386353, 66.513260 ], [ 15.227051, 66.337505 ], [ 12.903442, 66.337505 ], [ 13.117676, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.818786 ], [ 21.373901, 70.255741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.255741 ], [ 22.500000, 70.220452 ], [ 22.939453, 70.205576 ], [ 22.939453, 68.865498 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 21.247559, 69.370638 ], [ 20.643311, 69.105818 ], [ 20.022583, 69.064638 ], [ 19.879761, 68.407268 ], [ 17.995605, 68.566406 ], [ 17.726440, 68.009628 ], [ 16.770630, 68.013742 ], [ 16.111450, 67.301737 ], [ 15.386353, 66.513260 ], [ 15.232544, 66.337505 ], [ 12.908936, 66.337505 ], [ 13.123169, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.562391 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.978149, 68.618536 ], [ 22.500000, 68.393113 ], [ 22.939453, 68.202172 ], [ 22.939453, 66.337505 ], [ 15.227051, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.765137, 68.015798 ], [ 17.726440, 68.011685 ], [ 17.990112, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.022583, 69.066601 ], [ 20.643311, 69.107777 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.232544, 66.337505 ], [ 15.386353, 66.513260 ], [ 16.111450, 67.301737 ], [ 16.770630, 68.013742 ], [ 17.726440, 68.009628 ], [ 17.995605, 68.566406 ], [ 19.879761, 68.407268 ], [ 20.022583, 69.064638 ], [ 20.643311, 69.105818 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.242065, 69.370638 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 22.939453, 68.867478 ], [ 22.939453, 68.202172 ], [ 22.500000, 68.393113 ], [ 21.978149, 68.618536 ], [ 20.643311, 69.107777 ], [ 21.242065, 69.370638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.247559, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.865498 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.391090 ], [ 21.978149, 68.616534 ], [ 20.643311, 69.105818 ], [ 21.247559, 69.370638 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.247803, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.538696, 78.956665 ], [ 19.022827, 78.562667 ], [ 18.468018, 77.826799 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.809516 ], [ 15.908203, 76.770602 ], [ 13.760376, 77.381106 ], [ 14.666748, 77.736118 ], [ 13.167114, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.838013, 79.253586 ], [ 20.247803, 79.253586 ] ] ], [ [ [ 22.879028, 78.455425 ], [ 22.939453, 78.400329 ], [ 22.939453, 77.530240 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 20.725708, 77.677640 ], [ 21.412354, 77.935203 ], [ 20.808105, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.253296, 79.253586 ], [ 20.610352, 79.171335 ], [ 21.544189, 78.955612 ], [ 19.028320, 78.562667 ], [ 18.473511, 77.826799 ], [ 17.594604, 77.637718 ], [ 17.116699, 76.809516 ], [ 15.913696, 76.770602 ], [ 13.760376, 77.379906 ], [ 14.672241, 77.736118 ], [ 13.172607, 78.024434 ], [ 11.222534, 78.868988 ], [ 10.920410, 79.171335 ], [ 10.838013, 79.253586 ], [ 20.253296, 79.253586 ] ] ], [ [ [ 22.884521, 78.455425 ], [ 22.939453, 78.404746 ], [ 22.939453, 77.529054 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.444552 ], [ 20.725708, 77.676467 ], [ 21.417847, 77.935203 ], [ 20.813599, 78.254743 ], [ 22.500000, 78.419091 ], [ 22.884521, 78.455425 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.051409 ], [ 18.248291, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.002808, 79.088462 ], [ 10.920410, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.167114, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.139160, 79.674392 ], [ 15.518188, 80.016233 ], [ 16.990356, 80.051409 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 22.939453, 80.655958 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.072021, 79.567511 ], [ 19.896240, 79.842378 ], [ 18.457031, 79.860768 ], [ 17.363892, 80.319196 ], [ 20.451050, 80.598704 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.990356, 80.050460 ], [ 18.253784, 79.701925 ], [ 20.610352, 79.171335 ], [ 20.967407, 79.088462 ], [ 11.008301, 79.088462 ], [ 10.925903, 79.171335 ], [ 10.442505, 79.652708 ], [ 13.172607, 80.010518 ], [ 13.716431, 79.660599 ], [ 15.144653, 79.674392 ], [ 15.523682, 80.016233 ], [ 16.990356, 80.050460 ] ] ], [ [ [ 22.917480, 80.656850 ], [ 22.939453, 80.655066 ], [ 22.939453, 79.405136 ], [ 22.500000, 79.430356 ], [ 20.077515, 79.566517 ], [ 19.896240, 79.842378 ], [ 18.462524, 79.859801 ], [ 17.369385, 80.319196 ], [ 20.456543, 80.597807 ], [ 21.906738, 80.357916 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.656850 ] ] ] ] } } ] } ] } , @@ -3150,225 +3138,225 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.894153 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.466207 ], [ 22.500000, -70.665426 ], [ 22.565918, -70.696320 ], [ 23.664551, -70.519402 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.460697 ], [ 28.092041, -70.324288 ], [ 29.146729, -70.205576 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.986694, -69.657086 ], [ 32.750244, -69.384181 ], [ 33.299561, -68.833785 ], [ 33.865356, -68.502080 ], [ 34.903564, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.644409, -69.775154 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.918579, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.934570, -68.461783 ], [ 44.110107, -68.267353 ], [ 45.000000, -68.019910 ], [ 45.439453, -67.894153 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -67.896221 ], [ 45.439453, -74.140084 ], [ 22.060547, -74.140084 ], [ 22.060547, -70.464371 ], [ 22.500000, -70.663607 ], [ 22.571411, -70.696320 ], [ 23.664551, -70.521234 ], [ 24.840088, -70.480896 ], [ 25.977173, -70.480896 ], [ 27.092285, -70.462534 ], [ 28.092041, -70.324288 ], [ 29.152222, -70.207436 ], [ 30.031128, -69.932185 ], [ 30.970459, -69.756155 ], [ 31.992188, -69.658996 ], [ 32.755737, -69.384181 ], [ 33.305054, -68.835769 ], [ 33.870850, -68.502080 ], [ 34.909058, -68.658554 ], [ 35.299072, -69.011579 ], [ 36.161499, -69.246419 ], [ 37.199707, -69.168419 ], [ 37.902832, -69.521069 ], [ 38.649902, -69.777053 ], [ 39.666138, -69.540279 ], [ 40.017700, -69.109736 ], [ 40.924072, -68.932736 ], [ 41.956787, -68.600505 ], [ 42.940063, -68.463800 ], [ 44.115601, -68.267353 ], [ 45.000000, -68.021966 ], [ 45.439453, -67.896221 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.273315, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.278809, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.266113, -21.534847 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.529785, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.035400, -24.477150 ], [ 34.211426, -24.811668 ], [ 33.008423, -25.353955 ], [ 32.574463, -25.725684 ], [ 32.656860, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.740705 ], [ 32.069092, -26.730893 ], [ 31.981201, -26.288490 ], [ 31.832886, -25.839449 ], [ 31.750488, -25.482951 ], [ 31.926270, -24.367114 ], [ 31.668091, -23.654588 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.266113, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.725684 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.214591 ], [ 32.832642, -26.740705 ], [ 32.069092, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.750488, -25.482951 ], [ 31.931763, -24.367114 ], [ 31.668091, -23.659619 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.271606, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.273315, -21.534847 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.114258, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.482544, -24.612063 ], [ 25.938721, -24.691943 ], [ 25.762939, -25.170145 ], [ 25.664062, -25.482951 ], [ 25.021362, -25.715786 ], [ 24.208374, -25.666285 ], [ 23.730469, -25.388698 ], [ 23.307495, -25.264568 ], [ 22.824097, -25.497827 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.273315, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.278809, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.022234 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.318037 ], [ 22.060547, -21.534847 ], [ 28.278809, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.668091, -23.654588 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.832886, -25.839449 ], [ 31.333008, -25.656382 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.673828, -26.396790 ], [ 30.684814, -26.740705 ], [ 31.278076, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.730893 ], [ 32.827148, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.459106, -28.299544 ], [ 32.200928, -28.748397 ], [ 31.519775, -29.252856 ], [ 31.322021, -29.401320 ], [ 30.899048, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.053101, -31.137603 ], [ 28.921509, -32.170963 ], [ 28.218384, -32.768800 ], [ 27.460327, -33.224903 ], [ 26.416626, -33.614619 ], [ 25.905762, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.169678, -33.792844 ], [ 24.675293, -33.984364 ], [ 23.593140, -33.792844 ], [ 22.983398, -33.916013 ], [ 22.571411, -33.861293 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.497827 ], [ 23.307495, -25.264568 ], [ 23.730469, -25.388698 ], [ 24.208374, -25.666285 ], [ 25.021362, -25.715786 ], [ 25.664062, -25.482951 ], [ 25.762939, -25.170145 ], [ 25.938721, -24.691943 ], [ 26.482544, -24.612063 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.426880, -22.090730 ] ], [ [ 28.536987, -28.647210 ], [ 28.070068, -28.849485 ], [ 27.531738, -29.238477 ], [ 26.998901, -29.873992 ], [ 27.745972, -30.642638 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.225848 ], [ 28.844604, -30.069094 ], [ 29.014893, -29.740532 ], [ 29.322510, -29.252856 ], [ 28.976440, -28.955282 ], [ 28.536987, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.519775, -29.257649 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.888658 ], [ 22.060547, -34.057211 ], [ 22.060547, -26.318037 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.022234 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.656382 ], [ 31.832886, -25.839449 ], [ 31.981201, -26.288490 ], [ 32.069092, -26.730893 ], [ 31.865845, -27.176469 ], [ 31.278076, -27.283926 ], [ 30.684814, -26.740705 ], [ 30.673828, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.656382 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Swaziland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.069092, -26.735799 ], [ 31.865845, -27.176469 ], [ 31.283569, -27.283926 ], [ 30.684814, -26.745610 ], [ 30.679321, -26.396790 ], [ 30.948486, -26.022234 ], [ 31.041870, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.536987, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.252856 ], [ 29.014893, -29.740532 ], [ 28.844604, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.103027, -30.543339 ], [ 27.745972, -30.642638 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.238477 ], [ 28.070068, -28.849485 ], [ 28.536987, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.647210 ], [ 28.976440, -28.955282 ], [ 29.322510, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.873992 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.849485 ], [ 28.542480, -28.647210 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.577131 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.413509 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.379517, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.944781 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.010690 ], [ 30.415649, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.123535, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.586182, -0.587758 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.860840, 0.439449 ], [ 34.123535, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.979004, 0.439449 ], [ 40.984497, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.081451 ], [ 40.632935, -2.498597 ], [ 40.259399, -2.569939 ], [ 40.116577, -3.277630 ], [ 39.797974, -3.677892 ], [ 39.600220, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.765503, -3.672410 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.898315, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.979004, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.984497, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.123535, 0.439449 ], [ 40.984497, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.302612, 0.439449 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.984497, 0.000000 ], [ 40.979004, 0.439449 ], [ 43.302612, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.313599, 0.439449 ], [ 43.137817, 0.291136 ], [ 42.868652, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.995483, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.984497, 0.439449 ], [ 43.313599, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.251099, -2.213195 ], [ 29.113770, -2.290039 ], [ 29.020386, -2.838804 ], [ 29.273071, -3.288598 ], [ 29.338989, -4.499762 ], [ 29.514771, -5.419148 ], [ 29.415894, -5.938436 ], [ 29.619141, -6.517272 ], [ 30.195923, -7.079088 ], [ 30.739746, -8.336518 ], [ 30.344238, -8.233237 ], [ 28.998413, -8.401734 ], [ 28.734741, -8.521268 ], [ 28.449097, -9.161756 ], [ 28.668823, -9.600750 ], [ 28.493042, -10.784745 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.356100 ], [ 29.613647, -12.173595 ], [ 29.696045, -13.255986 ], [ 28.932495, -13.245293 ], [ 28.520508, -12.693933 ], [ 28.152466, -12.270231 ], [ 27.383423, -12.130635 ], [ 27.163696, -11.603813 ], [ 26.548462, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.416870, -11.329253 ], [ 24.779663, -11.237674 ], [ 24.312744, -11.259225 ], [ 24.252319, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.989728 ], [ 22.153931, -11.081385 ], [ 22.203369, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.860840, 0.439449 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.725300 ], [ 22.060547, 0.439449 ], [ 29.860840, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.203369, -9.893099 ], [ 22.153931, -11.081385 ], [ 22.401123, -10.989728 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.232286 ], [ 23.900757, -11.722167 ], [ 24.076538, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.893916 ], [ 23.214111, -17.518344 ], [ 22.500000, -17.675428 ], [ 22.060547, -17.769612 ], [ 22.060547, -16.288506 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.725300 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -10.995120 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.237674 ], [ 23.906250, -11.722167 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.913552 ], [ 22.500000, -12.897489 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.825574 ], [ 22.560425, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.780074 ], [ 22.060547, -16.288506 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.292954 ], [ 24.680786, -17.350638 ], [ 25.076294, -17.575957 ], [ 25.081787, -17.659726 ], [ 24.515991, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.276302 ], [ 23.192139, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.769612 ], [ 22.500000, -17.675428 ], [ 23.214111, -17.518344 ], [ 24.032593, -17.292954 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.298199 ], [ 24.680786, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.081787, -17.659726 ], [ 24.521484, -17.884659 ], [ 24.219360, -17.889887 ], [ 23.576660, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.415649, -1.131518 ], [ 30.811157, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.465088, -2.410787 ], [ 29.937744, -2.344926 ], [ 29.630127, -2.915611 ], [ 29.020386, -2.838804 ], [ 29.113770, -2.290039 ], [ 29.251099, -2.213195 ], [ 29.289551, -1.614776 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.439058 ], [ 30.415649, -1.131518 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Rwanda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.421143, -1.137010 ], [ 30.816650, -1.697139 ], [ 30.756226, -2.284551 ], [ 30.470581, -2.416276 ], [ 29.937744, -2.350415 ], [ 29.630127, -2.915611 ], [ 29.025879, -2.838804 ], [ 29.119263, -2.290039 ], [ 29.256592, -2.213195 ], [ 29.289551, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.421143, -1.137010 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.344926 ], [ 30.465088, -2.410787 ], [ 30.525513, -2.805885 ], [ 30.739746, -3.030812 ], [ 30.750732, -3.354405 ], [ 30.503540, -3.568248 ], [ 30.113525, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.273071, -3.288598 ], [ 29.020386, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.344926 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.470581, -2.416276 ], [ 30.525513, -2.805885 ], [ 30.745239, -3.036298 ], [ 30.750732, -3.359889 ], [ 30.503540, -3.568248 ], [ 30.119019, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.350415 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.336518 ], [ 31.157227, -8.591884 ], [ 31.552734, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.755737, -9.226827 ], [ 33.228149, -9.676569 ], [ 33.480835, -10.520219 ], [ 33.310547, -10.795537 ], [ 33.112793, -11.603813 ], [ 33.305054, -12.431212 ], [ 32.986450, -12.779661 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.790817 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.943481, -16.040534 ], [ 28.822632, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.042847, -17.936929 ], [ 26.702271, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.263062, -17.732991 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.575957 ], [ 24.680786, -17.350638 ], [ 24.032593, -17.292954 ], [ 23.214111, -17.518344 ], [ 22.560425, -16.893916 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.076538, -12.189704 ], [ 23.900757, -11.722167 ], [ 24.016113, -11.232286 ], [ 23.911743, -10.925011 ], [ 24.252319, -10.951978 ], [ 24.312744, -11.259225 ], [ 24.779663, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.548462, -11.921103 ], [ 27.163696, -11.603813 ], [ 27.383423, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.520508, -12.693933 ], [ 28.932495, -13.245293 ], [ 29.696045, -13.255986 ], [ 29.613647, -12.173595 ], [ 29.338989, -12.356100 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.493042, -10.784745 ], [ 28.668823, -9.600750 ], [ 28.449097, -9.161756 ], [ 28.734741, -8.521268 ], [ 28.998413, -8.401734 ], [ 30.344238, -8.233237 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.558228, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.112793, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.948975, -16.040534 ], [ 28.828125, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.042847, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.581194 ], [ 24.680786, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.825574 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.897489 ], [ 24.016113, -12.913552 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.722167 ], [ 24.016113, -11.237674 ], [ 23.911743, -10.925011 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.526001, -12.699292 ], [ 28.932495, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.613647, -12.178965 ], [ 29.338989, -12.361466 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.238674 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.876809 ], [ 31.168213, -15.855674 ], [ 31.635132, -16.066929 ], [ 31.849365, -16.314868 ], [ 32.327271, -16.388661 ], [ 32.843628, -16.709863 ], [ 32.849121, -17.978733 ], [ 32.651367, -18.667063 ], [ 32.607422, -19.414792 ], [ 32.772217, -19.715000 ], [ 32.656860, -20.303418 ], [ 32.508545, -20.390974 ], [ 32.244873, -21.115249 ], [ 31.470337, -21.943046 ], [ 31.190186, -22.248429 ], [ 30.657349, -22.146708 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.100909 ], [ 29.426880, -22.090730 ], [ 29.218140, -21.943046 ], [ 28.789673, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.723999, -20.848545 ], [ 27.723999, -20.493919 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.290406 ], [ 25.845337, -18.713894 ], [ 25.647583, -18.531700 ], [ 25.263062, -17.732991 ], [ 26.378174, -17.842833 ], [ 26.702271, -17.957832 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.822632, -16.388661 ], [ 28.943481, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.849365, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.647583, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.898315, -0.944781 ], [ 34.068604, -1.054628 ], [ 37.694092, -3.096636 ], [ 37.765503, -3.672410 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.905653 ], [ 38.798218, -6.473609 ], [ 39.435425, -6.839170 ], [ 39.468384, -7.095442 ], [ 39.193726, -7.700105 ], [ 39.248657, -8.004837 ], [ 39.182739, -8.483239 ], [ 39.534302, -9.107521 ], [ 39.946289, -10.093262 ], [ 40.314331, -10.314919 ], [ 39.517822, -10.892648 ], [ 38.424683, -11.280774 ], [ 37.825928, -11.264612 ], [ 37.468872, -11.566144 ], [ 36.771240, -11.593051 ], [ 36.513062, -11.716788 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.755737, -9.226827 ], [ 32.189941, -8.928487 ], [ 31.552734, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.336518 ], [ 30.195923, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.415894, -5.938436 ], [ 29.514771, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.113525, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.354405 ], [ 30.739746, -3.030812 ], [ 30.525513, -2.805885 ], [ 30.465088, -2.410787 ], [ 30.756226, -2.284551 ], [ 30.811157, -1.697139 ], [ 30.415649, -1.131518 ], [ 30.767212, -1.010690 ], [ 31.865845, -1.027167 ], [ 33.898315, -0.944781 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.765503, -3.677892 ], [ 39.204712, -4.674980 ], [ 38.743286, -5.911117 ], [ 38.798218, -6.473609 ], [ 39.440918, -6.839170 ], [ 39.468384, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.483239 ], [ 39.534302, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.314331, -10.314919 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.270000 ], [ 37.468872, -11.566144 ], [ 36.776733, -11.593051 ], [ 36.513062, -11.722167 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.558228, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.421387, -5.938436 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.119019, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.745239, -3.036298 ], [ 30.525513, -2.805885 ], [ 30.470581, -2.416276 ], [ 30.756226, -2.284551 ], [ 30.816650, -1.697139 ], [ 30.421143, -1.137010 ], [ 30.767212, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.755737, -9.226827 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.275599 ], [ 34.557495, -13.576581 ], [ 34.903564, -13.560562 ], [ 35.266113, -13.886079 ], [ 35.683594, -14.610163 ], [ 35.771484, -15.892659 ], [ 35.337524, -16.103876 ], [ 35.029907, -16.799282 ], [ 34.376221, -16.183024 ], [ 34.304810, -15.474857 ], [ 34.513550, -15.008464 ], [ 34.458618, -14.610163 ], [ 34.063110, -14.354870 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.684326, -13.710035 ], [ 32.986450, -12.779661 ], [ 33.305054, -12.431212 ], [ 33.112793, -11.603813 ], [ 33.310547, -10.795537 ], [ 33.480835, -10.520219 ], [ 33.228149, -9.676569 ], [ 32.755737, -9.226827 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malawi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.473633, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.556030, -12.634978 ], [ 40.594482, -14.200488 ], [ 40.770264, -14.689881 ], [ 40.473633, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.534546, -17.098792 ], [ 37.408447, -17.581194 ], [ 36.276855, -18.656654 ], [ 35.892334, -18.838714 ], [ 35.194702, -19.549437 ], [ 34.782715, -19.782211 ], [ 34.700317, -20.493919 ], [ 35.172729, -21.253542 ], [ 35.370483, -21.836006 ], [ 35.370483, -21.943046 ], [ 35.381470, -22.136532 ], [ 35.557251, -22.085640 ], [ 35.546265, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.248429 ], [ 31.470337, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.390974 ], [ 32.656860, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.607422, -19.414792 ], [ 32.651367, -18.667063 ], [ 32.849121, -17.978733 ], [ 32.843628, -16.709863 ], [ 32.327271, -16.388661 ], [ 31.849365, -16.314868 ], [ 31.635132, -16.066929 ], [ 31.168213, -15.855674 ], [ 30.338745, -15.876809 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.790817 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.354870 ], [ 34.458618, -14.610163 ], [ 34.513550, -15.008464 ], [ 34.304810, -15.474857 ], [ 34.376221, -16.183024 ], [ 35.029907, -16.799282 ], [ 35.337524, -16.103876 ], [ 35.771484, -15.892659 ], [ 35.683594, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.903564, -13.560562 ], [ 34.557495, -13.576581 ], [ 34.277344, -12.275599 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.716788 ], [ 36.771240, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.264612 ], [ 38.424683, -11.280774 ], [ 39.517822, -10.892648 ], [ 40.314331, -10.314919 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.479126, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.200488 ], [ 40.775757, -14.689881 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.098792 ], [ 37.408447, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.782211 ], [ 34.700317, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.551758, -22.350076 ], [ 31.217651, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.304810, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.799282 ], [ 35.337524, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.909058, -13.565902 ], [ 34.557495, -13.581921 ], [ 34.277344, -12.280966 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.732991 ], [ 25.647583, -18.531700 ], [ 25.845337, -18.713894 ], [ 26.163940, -19.290406 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.493919 ], [ 27.723999, -20.848545 ], [ 28.020630, -21.483741 ], [ 28.789673, -21.637005 ], [ 29.218140, -21.943046 ], [ 29.426880, -22.090730 ], [ 28.927002, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.192139, -17.868975 ], [ 23.576660, -18.276302 ], [ 24.213867, -17.884659 ], [ 24.515991, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Botswana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.932495, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.426880, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.268764 ], [ 30.657349, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.223145, -22.350076 ], [ 28.927002, -22.350076 ], [ 29.426880, -22.090730 ] ] ] } } +{ "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.217651, -22.350076 ], [ 28.932495, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.275146, -21.943046 ], [ 43.428955, -21.335432 ], [ 43.890381, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.430334 ], [ 44.230957, -18.958246 ], [ 44.038696, -18.328455 ], [ 43.961792, -17.408305 ], [ 44.307861, -16.846605 ], [ 44.445190, -16.214675 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.439453, -15.993015 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.993015 ], [ 45.439453, -22.350076 ], [ 43.286133, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.993015 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.845825, 20.004322 ], [ 23.834839, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 13.004558 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.834839, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.790071 ], [ 22.291260, 13.373588 ], [ 22.060547, 13.004558 ] ] ], [ [ [ 22.060547, 12.613537 ], [ 22.285767, 12.651058 ], [ 22.494507, 12.264864 ], [ 22.505493, 11.684514 ], [ 22.873535, 11.388494 ], [ 22.862549, 11.146066 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.613537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.109940 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.088629 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.049038 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.838701 ], [ 22.060547, 12.608176 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.146066 ], [ 22.972412, 10.714587 ], [ 23.549194, 10.093262 ], [ 23.554688, 9.681984 ], [ 23.389893, 9.270201 ], [ 23.455811, 8.955619 ], [ 23.801880, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.825289 ], [ 25.120239, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.550017 ], [ 26.460571, 5.949363 ], [ 27.213135, 5.555848 ], [ 27.372437, 5.238657 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.647583, 5.260538 ], [ 25.274048, 5.173011 ], [ 25.125732, 4.932251 ], [ 24.801636, 4.899414 ], [ 24.406128, 5.112830 ], [ 23.296509, 4.614753 ], [ 22.840576, 4.713303 ], [ 22.703247, 4.636655 ], [ 22.401123, 4.034138 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.146066 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.949363 ], [ 27.213135, 5.550381 ], [ 27.372437, 5.233187 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.173011 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.899414 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.838701 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.049038 ], [ 22.862549, 11.140677 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.496582, 22.350076 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.496582, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.183228, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.956979 ], [ 36.749268, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.425171, 14.424040 ], [ 36.265869, 13.565902 ], [ 35.859375, 12.581371 ], [ 35.255127, 12.087667 ], [ 34.826660, 11.323867 ], [ 34.727783, 10.914224 ], [ 34.255371, 10.633615 ], [ 33.958740, 9.584501 ], [ 33.958740, 9.465317 ], [ 33.821411, 9.486990 ], [ 33.837891, 9.985081 ], [ 33.717041, 10.325728 ], [ 33.206177, 10.725381 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.184334 ], [ 32.739258, 12.248760 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.536421 ], [ 31.349487, 9.811916 ], [ 30.833130, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.613647, 10.087854 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.965698, 9.400291 ], [ 27.828369, 9.606166 ], [ 27.108765, 9.638661 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.065308, 10.277086 ], [ 24.790649, 9.811916 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.801880, 8.667918 ], [ 23.455811, 8.955619 ], [ 23.389893, 9.270201 ], [ 23.554688, 9.681984 ], [ 23.549194, 10.093262 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.388494 ], [ 22.505493, 11.684514 ], [ 22.494507, 12.264864 ], [ 22.285767, 12.651058 ], [ 22.060547, 12.613537 ], [ 22.060547, 13.004558 ], [ 22.291260, 13.373588 ], [ 22.181396, 13.790071 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.834839, 19.580493 ], [ 23.845825, 20.004322 ], [ 24.999390, 20.004322 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.881104, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.479858, 18.615013 ], [ 37.864380, 18.370166 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.430664, 14.424040 ], [ 36.271362, 13.565902 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.673340, 12.023203 ], [ 32.074585, 11.974845 ], [ 32.316284, 11.679135 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.811916 ], [ 30.838623, 9.709057 ], [ 29.998169, 10.293301 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.971191, 9.400291 ], [ 27.833862, 9.606166 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.811916 ], [ 24.537964, 8.917634 ], [ 24.191895, 8.727648 ], [ 23.884277, 8.619041 ], [ 23.807373, 8.667918 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.554688, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.088629 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.109940 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.248760 ], [ 33.206177, 12.184334 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.725381 ], [ 33.717041, 10.325728 ], [ 33.837891, 9.985081 ], [ 33.821411, 9.486990 ], [ 33.958740, 9.465317 ], [ 33.969727, 8.689639 ], [ 33.821411, 8.379997 ], [ 33.294067, 8.358258 ], [ 32.953491, 7.787194 ], [ 33.563232, 7.716435 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.599131 ], [ 35.293579, 5.506640 ], [ 34.002686, 4.253290 ], [ 33.387451, 3.793003 ], [ 32.684326, 3.793003 ], [ 31.876831, 3.562765 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.513421 ], [ 29.948730, 4.176594 ], [ 29.712524, 4.603803 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.291636 ], [ 27.976685, 4.412137 ], [ 27.372437, 5.238657 ], [ 27.213135, 5.555848 ], [ 26.460571, 5.949363 ], [ 26.213379, 6.550017 ], [ 25.795898, 6.980954 ], [ 25.120239, 7.504089 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.532471, 8.917634 ], [ 24.790649, 9.811916 ], [ 25.065308, 10.277086 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.557417 ], [ 26.751709, 9.470736 ], [ 27.108765, 9.638661 ], [ 27.828369, 9.606166 ], [ 27.965698, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.613647, 10.087854 ], [ 29.992676, 10.293301 ], [ 30.833130, 9.709057 ], [ 31.349487, 9.811916 ], [ 31.849365, 10.536421 ], [ 32.398682, 11.081385 ], [ 32.310791, 11.684514 ], [ 32.069092, 11.974845 ], [ 32.673340, 12.028576 ], [ 32.739258, 12.248760 ] ] ] } } +{ "type": "Feature", "properties": { "name": "S. Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.253290 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.058239 ], [ 35.035400, 1.911267 ], [ 34.667358, 1.180947 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.668579, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.871826, 0.598744 ], [ 30.086060, 1.065612 ], [ 30.465088, 1.587321 ], [ 30.849609, 1.850874 ], [ 31.173706, 2.207705 ], [ 30.772705, 2.344926 ], [ 30.833130, 3.513421 ], [ 31.245117, 3.782041 ], [ 31.876831, 3.562765 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.793003 ], [ 34.002686, 4.253290 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.480591, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, -0.439449 ], [ 29.674072, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.827881, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.850874 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.808960, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.731567, 13.923404 ], [ 42.588501, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.775269, 12.458033 ], [ 42.346802, 12.543840 ], [ 42.006226, 12.870715 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.120595 ], [ 40.023193, 14.519780 ], [ 39.336548, 14.535733 ], [ 39.094849, 14.743011 ], [ 38.512573, 14.509144 ], [ 37.902832, 14.960706 ], [ 37.589722, 14.216464 ], [ 36.425171, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.749268, 16.293779 ], [ 36.848145, 16.956979 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.814453, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.737061, 13.923404 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.120595 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.754761, 16.293779 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.077393, 12.704651 ], [ 43.313599, 12.393659 ], [ 43.286133, 11.980218 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.930405 ], [ 42.550049, 11.108337 ], [ 42.313843, 11.038255 ], [ 41.753540, 11.054430 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.636096 ], [ 41.995239, 12.103781 ], [ 42.346802, 12.543840 ], [ 42.775269, 12.458033 ], [ 43.077393, 12.704651 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Djibouti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.753540, 11.049038 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.082886, 12.699292 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.293579, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.778995 ], [ 36.156006, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.117065, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.666382, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.556274, 3.425692 ], [ 39.852905, 3.842332 ], [ 40.764771, 4.258768 ], [ 41.171265, 3.924540 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.984497, 0.000000 ], [ 40.984497, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.667358, 1.180947 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.058239 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.253290 ], [ 35.293579, 5.506640 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kenya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.337114 ], [ 35.815430, 4.778995 ], [ 36.161499, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.122559, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.671875, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.420208 ], [ 39.852905, 3.836851 ], [ 40.770264, 4.258768 ], [ 41.171265, 3.919060 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.892822, -0.439449 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.960706 ], [ 38.512573, 14.509144 ], [ 39.094849, 14.743011 ], [ 39.336548, 14.535733 ], [ 40.023193, 14.519780 ], [ 40.891113, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.006226, 12.870715 ], [ 42.346802, 12.543840 ], [ 41.995239, 12.103781 ], [ 41.660156, 11.636096 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.054430 ], [ 42.313843, 11.038255 ], [ 42.550049, 11.108337 ], [ 42.775269, 10.930405 ], [ 42.555542, 10.574222 ], [ 42.923584, 10.022948 ], [ 43.291626, 9.541166 ], [ 43.676147, 9.188870 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.764282, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.924540 ], [ 40.764771, 4.258768 ], [ 39.852905, 3.842332 ], [ 39.556274, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.666382, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.117065, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.156006, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.342583 ], [ 35.293579, 5.506640 ], [ 34.705811, 6.599131 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.563232, 7.716435 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.358258 ], [ 33.821411, 8.379997 ], [ 33.969727, 8.689639 ], [ 33.958740, 9.584501 ], [ 34.255371, 10.633615 ], [ 34.727783, 10.914224 ], [ 34.826660, 11.323867 ], [ 35.255127, 12.087667 ], [ 35.859375, 12.581371 ], [ 36.265869, 13.565902 ], [ 36.425171, 14.424040 ], [ 37.589722, 14.216464 ], [ 37.902832, 14.960706 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.711359 ], [ 45.439453, 8.553862 ], [ 45.439453, 5.517575 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.413546 ], [ 43.791504, 17.324420 ], [ 43.379517, 17.581194 ], [ 43.110352, 17.093542 ], [ 43.214722, 16.667769 ], [ 42.775269, 16.351768 ], [ 42.648926, 16.778246 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.837604 ], [ 41.220703, 18.672267 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.797974, 20.339476 ], [ 39.138794, 21.294493 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.334908 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.060669, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.045410, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.324420 ], [ 44.060669, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.079478 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.489136, 12.726084 ], [ 44.170532, 12.586732 ], [ 43.478394, 12.640338 ], [ 43.220215, 13.223904 ], [ 43.247681, 13.768731 ], [ 43.082886, 14.067317 ], [ 42.890625, 14.806749 ], [ 42.599487, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.698364, 15.723526 ], [ 42.819214, 15.913791 ], [ 42.775269, 16.351768 ], [ 43.214722, 16.667769 ], [ 43.110352, 17.093542 ], [ 43.379517, 17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.060669, 17.408305 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 45.439453, 17.334908 ], [ 45.439453, 13.068777 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.801439 ], [ 42.604980, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.913791 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.467407, 11.280774 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.188870 ], [ 43.291626, 9.541166 ], [ 42.923584, 10.022948 ], [ 42.555542, 10.574222 ], [ 42.775269, 10.930405 ], [ 43.143311, 11.463874 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.439453, 10.671404 ], [ 45.439453, 8.553862 ], [ 45.000000, 8.711359 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.971657 ], [ 45.000000, 1.680667 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.296630 ], [ 42.863159, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.984497, -0.439449 ], [ 40.984497, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.764282, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.517575 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.675176 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.868652, 0.000000 ], [ 42.467651, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.439453, 5.517575 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.647583, 5.260538 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.238657 ], [ 27.976685, 4.412137 ], [ 28.427124, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.712524, 4.603803 ], [ 29.948730, 4.176594 ], [ 30.833130, 3.513421 ], [ 30.772705, 2.344926 ], [ 31.173706, 2.207705 ], [ 30.849609, 1.850874 ], [ 30.465088, 1.587321 ], [ 30.086060, 1.065612 ], [ 29.871826, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.668579, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.401123, 4.034138 ], [ 22.703247, 4.636655 ], [ 22.840576, 4.713303 ], [ 23.296509, 4.614753 ], [ 24.406128, 5.112830 ], [ 24.801636, 4.899414 ], [ 25.125732, 4.932251 ], [ 25.274048, 5.173011 ], [ 25.647583, 5.260538 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.674072, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.780151, 41.310824 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.060547, 41.153842 ], [ 22.060547, 41.310824 ], [ 22.780151, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.785645, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.785645, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.905762, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.905762, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.938721, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.938721, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 43.154297, 41.310824 ], [ 45.054932, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.704111 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.604126, 32.189560 ], [ 23.922729, 32.017392 ], [ 24.916992, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.666266 ], [ 24.697266, 30.045322 ], [ 24.999390, 29.243270 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.768800 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.189560 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.768800 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.241333, 35.371135 ], [ 25.021362, 35.429344 ], [ 25.768433, 35.357696 ], [ 25.740967, 35.182788 ], [ 26.284790, 35.303919 ], [ 26.163940, 35.007503 ], [ 24.724731, 34.921971 ], [ 24.730225, 35.088451 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.471558, 41.310824 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.128491 ], [ 23.895264, 39.964491 ], [ 23.340454, 39.964491 ], [ 22.813110, 40.476203 ], [ 22.620850, 40.258569 ], [ 22.846069, 39.660685 ], [ 23.345947, 39.193948 ], [ 22.972412, 38.972222 ], [ 23.527222, 38.513788 ], [ 24.021606, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.109741, 37.922534 ], [ 23.406372, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.153687, 36.425703 ], [ 22.500000, 36.416862 ], [ 22.489014, 36.412442 ], [ 22.060547, 36.641978 ], [ 22.060547, 41.153842 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.780151, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.905762, 41.310824 ], [ 26.471558, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.785645, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.938721, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.675147 ], [ 33.898315, 35.250105 ], [ 33.969727, 35.061477 ], [ 33.865356, 35.097440 ], [ 33.673096, 35.021000 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.003003 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.915039, 35.088451 ], [ 32.728271, 35.142371 ], [ 32.799683, 35.146863 ], [ 32.942505, 35.389050 ], [ 33.662109, 35.375614 ], [ 34.573975, 35.675147 ] ] ] } } +{ "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.670685 ], [ 33.898315, 35.245619 ], [ 33.975220, 35.056980 ], [ 33.865356, 35.092945 ], [ 33.673096, 35.016501 ], [ 33.524780, 35.038992 ], [ 33.475342, 34.998504 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.920532, 35.088451 ], [ 32.733765, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.384572 ], [ 33.667603, 35.371135 ], [ 34.573975, 35.670685 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 35.003003 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.021000 ], [ 33.865356, 35.097440 ], [ 33.969727, 35.061477 ], [ 34.002686, 34.980502 ], [ 32.975464, 34.574430 ], [ 32.486572, 34.705493 ], [ 32.255859, 35.106428 ], [ 32.728271, 35.142371 ], [ 32.915039, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 34.998504 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.016501 ], [ 33.865356, 35.092945 ], [ 33.975220, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.492065, 34.700977 ], [ 32.255859, 35.101934 ], [ 32.733765, 35.137879 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.449097, 31.029401 ], [ 28.910522, 30.873940 ], [ 29.679565, 31.189308 ], [ 30.091553, 31.475524 ], [ 30.975952, 31.559815 ], [ 31.684570, 31.433350 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.264466 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.260864, 31.222197 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.104177 ], [ 34.425659, 28.347899 ], [ 34.151001, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.854937 ], [ 32.316284, 29.764377 ], [ 32.733765, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.469604, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.689087, 23.931034 ], [ 35.491333, 23.755182 ], [ 35.524292, 23.104997 ], [ 36.688843, 22.207749 ], [ 36.864624, 22.004175 ], [ 24.999390, 22.004175 ], [ 24.999390, 29.243270 ], [ 24.697266, 30.045322 ], [ 24.955444, 30.666266 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Egypt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.654175, 40.254377 ], [ 44.395752, 40.006580 ], [ 44.791260, 39.715638 ], [ 44.104614, 39.431950 ], [ 44.417725, 38.281313 ], [ 44.225464, 37.974515 ], [ 44.769287, 37.173449 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.775269, 37.387617 ], [ 42.346802, 37.230328 ], [ 41.209717, 37.077093 ], [ 40.671387, 37.094622 ], [ 39.517822, 36.716871 ], [ 38.699341, 36.716871 ], [ 38.166504, 36.901587 ], [ 37.062378, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.822267 ], [ 35.776978, 36.275279 ], [ 36.156006, 36.650793 ], [ 35.546265, 36.567012 ], [ 34.711304, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.646385 ], [ 30.618896, 36.681636 ], [ 30.388184, 36.266421 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.636108, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.212288 ], [ 26.801147, 38.989303 ], [ 26.169434, 39.465885 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 31.547241, 41.310824 ], [ 36.996460, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.033936, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.471558, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.632202, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.102783, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.552734, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.221436, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.589478, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.039429, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.948975, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.948975, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.597042 ], [ 36.606445, 34.202716 ], [ 36.062622, 33.829357 ], [ 35.820923, 33.280028 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.091542 ], [ 35.123291, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.980225, 34.610606 ], [ 35.996704, 34.646766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.346802, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.286621, 36.359375 ], [ 41.380005, 35.630512 ], [ 41.000977, 34.420505 ], [ 38.787231, 33.380999 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.831909, 32.870360 ], [ 35.820923, 33.280028 ], [ 36.062622, 33.829357 ], [ 36.606445, 34.202716 ], [ 36.447144, 34.597042 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.145020, 35.822267 ], [ 36.683350, 36.261992 ], [ 36.738281, 36.818080 ], [ 37.062378, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.716871 ], [ 39.517822, 36.716871 ], [ 40.671387, 37.094622 ], [ 41.209717, 37.077093 ], [ 42.346802, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Syria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.630512 ], [ 41.006470, 34.420505 ], [ 38.792725, 33.376412 ], [ 36.831665, 32.314991 ], [ 35.700073, 32.717977 ], [ 35.837402, 32.870360 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 35.996704, 34.646766 ], [ 35.903320, 35.411438 ], [ 36.150513, 35.822267 ], [ 36.683350, 36.257563 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.624345 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.671387, 37.090240 ], [ 41.209717, 37.072710 ], [ 42.352295, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.775269, 37.387617 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.061761 ], [ 45.411987, 33.970698 ], [ 45.439453, 33.934245 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.885376, 31.194008 ], [ 40.396729, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.787231, 33.380999 ], [ 41.000977, 34.420505 ], [ 41.380005, 35.630512 ], [ 41.286621, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.346802, 37.230328 ], [ 42.775269, 37.387617 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.760891 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.973561 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.152161 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.280028 ], [ 35.831909, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.716553, 32.713355 ], [ 35.540771, 32.398516 ], [ 35.183716, 32.532921 ], [ 34.969482, 31.868228 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.620644 ], [ 34.925537, 31.353637 ], [ 35.392456, 31.489578 ], [ 35.419922, 31.104685 ], [ 34.920044, 29.501769 ], [ 34.260864, 31.222197 ], [ 34.552002, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.458374, 33.091542 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.280028 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Israel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.722046, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 34.974976, 31.868228 ], [ 35.227661, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.920044, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.128784, 33.091542 ], [ 35.458374, 33.086939 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.275435 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.540771, 32.398516 ], [ 35.540771, 31.784217 ], [ 35.392456, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.620644 ], [ 35.222168, 31.756196 ], [ 34.969482, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.784217 ], [ 35.397949, 31.489578 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.227661, 31.756196 ], [ 34.974976, 31.868228 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.787231, 33.380999 ], [ 39.193726, 32.161663 ], [ 39.001465, 32.012734 ], [ 37.001953, 31.512996 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.007274 ], [ 36.738281, 29.869229 ], [ 36.496582, 29.506549 ], [ 36.068115, 29.200123 ], [ 34.953003, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.104685 ], [ 35.392456, 31.489578 ], [ 35.540771, 31.784217 ], [ 35.540771, 32.398516 ], [ 35.716553, 32.713355 ], [ 36.831665, 32.314991 ], [ 38.787231, 33.380999 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.193726, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 37.996216, 30.510217 ], [ 37.666626, 30.339695 ], [ 37.501831, 30.002517 ], [ 36.738281, 29.864465 ], [ 36.502075, 29.506549 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.358239 ], [ 34.920044, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.784217 ], [ 35.546265, 32.393878 ], [ 35.722046, 32.708733 ], [ 36.831665, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 22.004175 ], [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 22.004175 ], [ 36.864624, 22.004175 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sudan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.881104, 21.943046 ], [ 37.012939, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.513799 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.663973 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.401245, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.632202, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.895308 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.513799 ], [ 45.357056, 40.563895 ], [ 45.439453, 40.668140 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.663973 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.663973 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.871988 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.061761 ], [ 45.439453, 33.934245 ], [ 45.411987, 33.970698 ], [ 45.439453, 34.061761 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.225464, 37.974515 ], [ 44.417725, 38.281313 ], [ 44.104614, 39.431950 ], [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.439453, 38.895308 ], [ 45.439453, 35.969115 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.973561 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.760891 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.973561 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.396729, 31.891551 ], [ 41.885376, 31.194008 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.061890, 22.583583 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.081574 ], [ 37.479858, 24.287027 ], [ 37.150269, 24.861519 ], [ 37.205200, 25.085599 ], [ 36.930542, 25.606856 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.573790 ], [ 35.639648, 27.376645 ], [ 35.128784, 28.067133 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.608637 ], [ 34.832153, 28.960089 ], [ 34.953003, 29.358239 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.501831, 30.007274 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.012734 ], [ 39.193726, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.439453, 29.152161 ], [ 45.439453, 21.534847 ], [ 39.094849, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.613749 ], [ 44.533081, 42.714732 ], [ 43.928833, 42.557127 ], [ 43.753052, 42.742978 ], [ 42.390747, 43.221190 ], [ 40.918579, 43.385090 ], [ 40.072632, 43.556510 ], [ 39.951782, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.534790, 44.660839 ], [ 36.672363, 45.247821 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.244451 ], [ 37.672119, 46.638122 ], [ 39.144287, 47.047669 ], [ 39.116821, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.765259, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.235650 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.926472 ], [ 38.007202, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.622925, 50.226124 ], [ 35.354004, 50.579749 ], [ 35.375977, 50.774682 ], [ 35.018921, 51.210325 ], [ 34.222412, 51.258477 ], [ 34.140015, 51.566827 ], [ 34.387207, 51.771239 ], [ 33.750000, 52.335339 ], [ 32.711792, 52.241256 ], [ 32.409668, 52.291683 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.536255, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.492310, 53.169826 ], [ 32.299805, 53.133590 ], [ 32.689819, 53.353830 ], [ 32.404175, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.159218 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.752686, 54.857640 ], [ 22.648315, 54.584797 ], [ 22.730713, 54.329338 ], [ 22.500000, 54.329338 ], [ 22.060547, 54.326135 ], [ 22.060547, 55.059495 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.512602 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.710696 ], [ 43.928833, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.638122 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.785152 ], [ 40.078125, 49.307217 ], [ 40.067139, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.140015, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.541748, 52.742943 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.404175, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.156001 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.081512 ], [ 30.871582, 55.550388 ], [ 29.943237, 55.776573 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.952386 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.329338 ], [ 23.241577, 54.223496 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.801880, 53.090725 ], [ 23.796387, 52.693032 ], [ 23.197632, 52.489470 ], [ 23.505249, 52.025459 ], [ 23.521729, 51.580483 ], [ 24.027100, 50.708634 ], [ 23.922729, 50.426019 ], [ 23.422852, 50.310392 ], [ 22.516479, 49.478832 ], [ 22.774658, 49.030665 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.113434 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.326135 ], [ 22.500000, 54.329338 ], [ 22.730713, 54.329338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.326135 ], [ 23.241577, 54.220285 ], [ 23.483276, 53.914046 ], [ 23.527222, 53.471700 ], [ 23.807373, 53.090725 ], [ 23.801880, 52.689702 ], [ 23.197632, 52.486125 ], [ 23.510742, 52.022078 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.426019 ], [ 23.428345, 50.306884 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.289306 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.082520, 48.425555 ], [ 22.500000, 48.221013 ], [ 22.637329, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.418264 ], [ 22.082520, 48.425555 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.088013, 48.421910 ], [ 22.500000, 48.224673 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.813155 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.620975 ], [ 22.060547, 48.410972 ], [ 22.088013, 48.421910 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.113434 ], [ 22.554932, 49.088258 ], [ 22.500000, 49.037868 ], [ 22.280273, 48.828566 ], [ 22.082520, 48.425555 ], [ 22.060547, 48.418264 ], [ 22.060547, 49.289306 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.289306 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.289306 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.095476 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.427511 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.313878 ], [ 22.060547, 44.523927 ], [ 22.142944, 44.480830 ], [ 22.456055, 44.703802 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.684277 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.433780 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.386692 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.706660 ], [ 22.434082, 42.581400 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.758179, 41.306698 ], [ 22.593384, 41.133159 ], [ 22.500000, 41.137296 ], [ 22.060547, 41.153842 ], [ 22.060547, 42.313878 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 42.309815 ], [ 22.379150, 42.322001 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.756958, 56.022948 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.756958, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.762451, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.680542, 56.022948 ], [ 27.762451, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.169456 ], [ 25.762939, 54.848153 ], [ 25.532227, 54.284469 ], [ 24.450073, 53.907574 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.223496 ], [ 22.730713, 54.329338 ], [ 22.648315, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.680542, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.848153 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.952386 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.680542, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.970459, 55.084656 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.159218 ], [ 31.788940, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.689819, 53.353830 ], [ 32.299805, 53.133590 ], [ 31.492310, 53.169826 ], [ 31.300049, 53.074228 ], [ 31.536255, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.825593 ], [ 30.552979, 51.320314 ], [ 30.151978, 51.416338 ], [ 29.251099, 51.368351 ], [ 28.987427, 51.604372 ], [ 28.613892, 51.430039 ], [ 28.240356, 51.573656 ], [ 27.449341, 51.594135 ], [ 26.334229, 51.832383 ], [ 25.323486, 51.913779 ], [ 24.548950, 51.890054 ], [ 23.999634, 51.618017 ], [ 23.521729, 51.580483 ], [ 23.505249, 52.025459 ], [ 23.197632, 52.489470 ], [ 23.796387, 52.693032 ], [ 23.801880, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.907574 ], [ 25.532227, 54.284469 ], [ 25.762939, 54.848153 ], [ 26.586914, 55.169456 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 27.756958, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.943237, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.970459, 55.081512 ], [ 30.756226, 54.813348 ], [ 31.382446, 54.156001 ], [ 31.788940, 53.975474 ], [ 31.734009, 53.794162 ], [ 32.404175, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.305298, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.305542, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.103131 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.256592, 51.368351 ], [ 28.992920, 51.600960 ], [ 28.619385, 51.426614 ], [ 28.240356, 51.573656 ], [ 27.454834, 51.590723 ], [ 26.339722, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.577070 ], [ 23.510742, 52.022078 ], [ 23.197632, 52.486125 ], [ 23.801880, 52.689702 ], [ 23.807373, 53.090725 ], [ 23.527222, 53.471700 ], [ 23.483276, 53.914046 ], [ 24.450073, 53.904338 ], [ 25.537720, 54.281262 ], [ 25.768433, 54.848153 ], [ 26.586914, 55.166319 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 27.762451, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.614380, 48.221013 ], [ 26.921997, 48.125768 ], [ 27.229614, 47.827908 ], [ 27.548218, 47.405785 ], [ 28.125000, 46.811339 ], [ 28.157959, 46.373464 ], [ 28.053589, 45.947330 ], [ 28.229370, 45.490946 ], [ 28.674316, 45.305803 ], [ 29.146729, 45.467836 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.038597 ], [ 29.141235, 44.820812 ], [ 28.833618, 44.914249 ], [ 28.553467, 43.707594 ], [ 27.965698, 43.814711 ], [ 27.240601, 44.178265 ], [ 26.065063, 43.945372 ], [ 25.565186, 43.691708 ], [ 24.098511, 43.743321 ], [ 23.329468, 43.897892 ], [ 22.939453, 43.826601 ], [ 22.653809, 44.237328 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.456055, 44.703802 ], [ 22.142944, 44.480830 ], [ 22.060547, 44.523927 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.137207, 48.096426 ], [ 23.757935, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.862061, 47.739323 ], [ 25.202637, 47.894248 ], [ 25.944214, 47.989922 ], [ 26.196899, 48.221013 ], [ 26.614380, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.386692 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.433780 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.684277 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.620975 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.813155 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.237328 ], [ 22.939453, 43.826601 ], [ 23.329468, 43.897892 ], [ 24.098511, 43.743321 ], [ 25.565186, 43.691708 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.178265 ], [ 27.965698, 43.814711 ], [ 28.553467, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.669067, 42.581400 ], [ 27.993164, 42.008489 ], [ 27.130737, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.331451 ], [ 25.197144, 41.236511 ], [ 24.488525, 41.586688 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.427511 ], [ 22.543945, 42.463993 ], [ 22.500000, 42.512602 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.095476 ], [ 22.653809, 44.237328 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.659302, 44.233393 ], [ 22.944946, 43.822638 ], [ 23.334961, 43.897892 ], [ 24.098511, 43.739352 ], [ 25.570679, 43.687736 ], [ 26.065063, 43.945372 ], [ 27.240601, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.558960, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.008489 ], [ 27.136230, 42.143042 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.197144, 41.236511 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.310824 ], [ 22.950439, 41.339700 ], [ 22.879028, 42.000325 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.322001 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.706660 ], [ 22.604370, 42.900113 ], [ 22.983398, 43.209180 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.469279 ], [ 28.256836, 48.158757 ], [ 28.668823, 48.118434 ], [ 29.119263, 47.850031 ], [ 29.047852, 47.513491 ], [ 29.410400, 47.349989 ], [ 29.558716, 46.931510 ], [ 29.904785, 46.675826 ], [ 29.833374, 46.528635 ], [ 30.020142, 46.426499 ], [ 29.756470, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.521076 ], [ 28.861084, 46.441642 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.943511 ], [ 28.482056, 45.598666 ], [ 28.229370, 45.490946 ], [ 28.053589, 45.947330 ], [ 28.157959, 46.373464 ], [ 28.125000, 46.811339 ], [ 27.548218, 47.405785 ], [ 27.229614, 47.827908 ], [ 26.921997, 48.125768 ], [ 26.614380, 48.221013 ], [ 26.856079, 48.370848 ], [ 27.520752, 48.469279 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.155093 ], [ 28.668823, 48.118434 ], [ 29.124756, 47.850031 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.675826 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.517296 ], [ 28.861084, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.939691 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.921997, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.856079, 48.367198 ], [ 27.520752, 48.465637 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.771239 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.258477 ], [ 35.018921, 51.210325 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.579749 ], [ 36.622925, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.007202, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.310799 ], [ 39.671631, 48.785152 ], [ 39.891357, 48.235650 ], [ 39.737549, 47.901614 ], [ 38.765259, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.025206 ], [ 36.754761, 46.702202 ], [ 35.820923, 46.649436 ], [ 34.958496, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.331787, 45.116177 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.321533, 44.566991 ], [ 33.546753, 45.038597 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.294067, 46.080852 ], [ 31.739502, 46.335551 ], [ 31.673584, 46.709736 ], [ 30.745239, 46.585294 ], [ 30.377197, 46.035109 ], [ 29.602661, 45.294211 ], [ 29.146729, 45.467836 ], [ 28.674316, 45.305803 ], [ 28.229370, 45.490946 ], [ 28.482056, 45.598666 ], [ 28.657837, 45.943511 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.441642 ], [ 29.069824, 46.521076 ], [ 29.168701, 46.381044 ], [ 29.756470, 46.350719 ], [ 30.020142, 46.426499 ], [ 29.833374, 46.528635 ], [ 29.904785, 46.675826 ], [ 29.558716, 46.931510 ], [ 29.410400, 47.349989 ], [ 29.047852, 47.513491 ], [ 29.119263, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.158757 ], [ 27.520752, 48.469279 ], [ 26.856079, 48.370848 ], [ 26.614380, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.989922 ], [ 25.202637, 47.894248 ], [ 24.862061, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.757935, 47.986245 ], [ 23.137207, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.637329, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.082520, 48.425555 ], [ 22.280273, 48.828566 ], [ 22.500000, 49.037868 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.030665 ], [ 22.516479, 49.478832 ], [ 23.422852, 50.310392 ], [ 23.922729, 50.426019 ], [ 24.027100, 50.708634 ], [ 23.521729, 51.580483 ], [ 23.999634, 51.618017 ], [ 24.548950, 51.890054 ], [ 25.323486, 51.913779 ], [ 26.334229, 51.832383 ], [ 27.449341, 51.594135 ], [ 28.240356, 51.573656 ], [ 28.613892, 51.430039 ], [ 28.987427, 51.604372 ], [ 29.251099, 51.368351 ], [ 30.151978, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.825593 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.291683 ], [ 32.711792, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.600030 ], [ 40.078125, 49.307217 ], [ 39.677124, 48.785152 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.673584, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.305803 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.598666 ], [ 28.657837, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.517296 ], [ 29.168701, 46.381044 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.675826 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.155093 ], [ 27.520752, 48.465637 ], [ 26.856079, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.224673 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.426019 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.573656 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.072632, 43.556510 ], [ 40.918579, 43.385090 ], [ 42.390747, 43.221190 ], [ 43.753052, 42.742978 ], [ 43.928833, 42.557127 ], [ 44.533081, 42.714732 ], [ 45.000000, 42.613749 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 43.577271, 41.095912 ], [ 42.615967, 41.586688 ], [ 41.550293, 41.537366 ], [ 41.698608, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.016697 ], [ 40.319824, 43.129052 ], [ 39.951782, 43.436966 ], [ 40.072632, 43.556510 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.928833, 42.553080 ], [ 44.538574, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.512602 ], [ 45.439453, 41.327326 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.621460, 41.582580 ], [ 41.555786, 41.537366 ], [ 41.704102, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.319824, 43.129052 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.552529 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.566142 ], [ 26.306763, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.054077, 40.826280 ], [ 25.444336, 40.855371 ], [ 24.922485, 40.950863 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.153842 ], [ 22.500000, 41.137296 ], [ 22.593384, 41.133159 ], [ 22.758179, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.488525, 41.586688 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.331451 ], [ 26.114502, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Greece" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.908569, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.950863 ], [ 38.562012, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.369263, 41.017211 ], [ 41.550293, 41.537366 ], [ 42.615967, 41.586688 ], [ 43.577271, 41.095912 ], [ 43.632202, 40.979898 ], [ 43.747559, 40.743095 ], [ 43.725586, 40.647304 ], [ 28.916016, 40.647304 ], [ 29.097290, 40.979898 ], [ 29.234619, 41.224118 ], [ 31.140747, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.130737, 42.143042 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.058644 ], [ 27.614136, 41.000630 ], [ 27.581177, 40.979898 ], [ 27.191162, 40.693134 ], [ 27.114258, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.054077, 40.826280 ], [ 26.290283, 40.938415 ], [ 26.306763, 40.979898 ], [ 26.603394, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.130737, 42.143042 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.589478, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.537366 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.632202, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.731079, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.102783, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.143042 ], [ 27.998657, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.143042 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.668140 ], [ 45.422974, 40.647304 ], [ 43.725586, 40.647304 ], [ 43.747559, 40.743095 ], [ 43.632202, 40.979898 ], [ 43.577271, 41.095912 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.871988 ], [ 45.439453, 40.663973 ], [ 45.422974, 40.647304 ], [ 43.731079, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.632202, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.668140 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.668140 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.663973 ], [ 45.439453, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.439453, 40.663973 ] ] ], [ [ [ 45.439453, 40.871988 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.871988 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.553495 ], [ 29.954224, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.822388, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.850342, 56.761757 ], [ 27.767944, 57.246366 ], [ 27.284546, 57.477450 ], [ 27.713013, 57.792089 ], [ 27.416382, 58.725451 ], [ 28.130493, 59.302356 ], [ 27.976685, 59.475779 ], [ 29.113770, 60.029186 ], [ 28.064575, 60.505935 ], [ 30.206909, 61.780916 ], [ 31.135254, 62.359805 ], [ 31.514282, 62.870179 ], [ 30.031128, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.949139 ], [ 30.212402, 65.807279 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.491821, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.810181, 65.901653 ], [ 34.876099, 65.437718 ], [ 34.942017, 64.415921 ], [ 36.227417, 64.110602 ], [ 37.007446, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.535034, 64.764759 ], [ 37.172241, 65.143806 ], [ 39.589233, 64.522460 ], [ 40.435181, 64.764759 ], [ 39.759521, 65.497020 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.945312, 66.069318 ], [ 44.318848, 66.513260 ], [ 44.467163, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.896606, 66.687784 ], [ 40.528564, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.381470, 66.513260 ], [ 34.348755, 66.687784 ], [ 40.896606, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.871582, 55.528631 ], [ 30.871582, 55.550388 ], [ 29.943237, 55.776573 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.306030, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.174438, 56.170023 ], [ 27.855835, 56.758746 ], [ 27.767944, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.725451 ], [ 28.130493, 59.299552 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.029186 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.780916 ], [ 31.140747, 62.357256 ], [ 31.514282, 62.867674 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.203987 ], [ 29.542236, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.492798, 66.513260 ], [ 29.311523, 66.687784 ], [ 33.497314, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.899410 ], [ 34.876099, 65.435435 ], [ 34.942017, 64.413549 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.139282, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.143806 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.902100, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.017700, 66.266856 ], [ 38.380737, 66.000150 ], [ 35.375977, 66.513260 ], [ 34.343262, 66.687784 ], [ 40.902100, 66.687784 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.009086 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.640155 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.687784 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.006852 ], [ 22.500000, 65.777998 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.637889 ], [ 22.060547, 66.687784 ], [ 23.554688, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.206377 ], [ 30.031128, 63.553446 ], [ 31.514282, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.206909, 61.780916 ], [ 28.064575, 60.505935 ], [ 26.251831, 60.424699 ], [ 24.494019, 60.059358 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.193425 ], [ 22.285767, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.558338 ], [ 22.439575, 63.818864 ], [ 22.500000, 63.850354 ], [ 24.730225, 64.902580 ], [ 25.394897, 65.111460 ], [ 25.290527, 65.535721 ], [ 23.900757, 66.009086 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.311523, 66.687784 ], [ 29.492798, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.203987 ], [ 30.036621, 63.553446 ], [ 31.514282, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.780916 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.424699 ], [ 24.494019, 60.056616 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.553446 ], [ 22.445068, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.900757, 66.006852 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.554688, 66.687784 ], [ 29.311523, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.598145, 57.847674 ], [ 26.460571, 57.477450 ], [ 27.284546, 57.477450 ], [ 27.767944, 57.246366 ], [ 27.850342, 56.761757 ], [ 28.174438, 56.170023 ], [ 27.064819, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.102683 ], [ 24.999390, 56.166965 ], [ 24.856567, 56.374377 ], [ 23.873291, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.312988, 57.007842 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.795016 ], [ 25.164185, 57.970244 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Latvia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.477450 ], [ 27.290039, 57.474497 ], [ 27.767944, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 24.999390, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.328721 ], [ 22.203369, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.589503 ], [ 22.500000, 57.748145 ], [ 22.521973, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.943970, 59.447868 ], [ 27.976685, 59.475779 ], [ 28.130493, 59.302356 ], [ 27.416382, 58.725451 ], [ 27.713013, 57.792089 ], [ 27.284546, 57.477450 ], [ 26.460571, 57.477450 ], [ 25.598145, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.795016 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.334961, 59.189999 ], [ 24.603882, 59.467408 ], [ 25.861816, 59.612212 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Estonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.725451 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.477450 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.614056 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.861816, 59.612212 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.856567, 56.374377 ], [ 24.999390, 56.166965 ], [ 25.532227, 56.102683 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.873291, 56.273861 ], [ 24.856567, 56.374377 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 24.999390, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.203369, 56.337856 ], [ 22.500000, 56.328721 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.366455, 55.671389 ], [ 29.822388, 55.776573 ], [ 29.893799, 55.792017 ], [ 29.954224, 55.776573 ], [ 30.871582, 55.553495 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.064819, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.174438, 56.170023 ], [ 29.229126, 55.918430 ], [ 29.306030, 55.776573 ], [ 29.371948, 55.671389 ], [ 29.893799, 55.788929 ], [ 29.943237, 55.776573 ], [ 30.871582, 55.550388 ], [ 30.871582, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.075806, 55.776573 ], [ 28.174438, 56.170023 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.066601 ], [ 29.399414, 69.158650 ], [ 31.096802, 69.559471 ], [ 32.129517, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.513062, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.528564, 66.513260 ], [ 40.155029, 66.337505 ], [ 36.414185, 66.337505 ] ] ], [ [ [ 41.742554, 66.337505 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.418945 ], [ 43.225708, 66.337505 ], [ 41.742554, 66.337505 ] ] ], [ [ [ 44.165039, 66.337505 ], [ 44.313354, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.951963 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.165039, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.408691, 66.337505 ], [ 35.375977, 66.513260 ], [ 33.920288, 66.759418 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.843384, 66.337505 ], [ 29.674072, 66.337505 ], [ 29.492798, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.905780 ], [ 33.777466, 69.300853 ], [ 36.513062, 69.062675 ], [ 40.292358, 67.933397 ], [ 41.061401, 67.458082 ], [ 41.127319, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.160522, 66.337505 ], [ 36.408691, 66.337505 ] ] ], [ [ [ 41.753540, 66.337505 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.231201, 66.337505 ], [ 41.753540, 66.337505 ] ] ], [ [ [ 44.170532, 66.337505 ], [ 44.318848, 66.513260 ], [ 44.533081, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.570421 ], [ 45.000000, 68.395135 ], [ 45.439453, 68.344514 ], [ 45.439453, 66.337505 ], [ 44.170532, 66.337505 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.186965 ], [ 31.096802, 69.559471 ], [ 29.399414, 69.158650 ], [ 28.591919, 69.066601 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.164610 ], [ 26.174927, 69.826365 ], [ 25.686035, 69.094060 ], [ 24.730225, 68.650556 ], [ 23.659058, 68.893209 ], [ 22.500000, 68.849647 ], [ 22.351685, 68.843700 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.235318 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.294556, 70.453346 ], [ 30.003662, 70.186965 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 29.014893, 69.765657 ], [ 27.734985, 70.164610 ], [ 26.180420, 69.824471 ], [ 25.691528, 69.092100 ], [ 24.735718, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 22.060547, 68.985986 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.220452 ], [ 23.021851, 70.201855 ], [ 24.548950, 71.031249 ], [ 26.372681, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.584465 ], [ 22.500000, 68.393113 ], [ 23.538208, 67.937524 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.584465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sweden" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.582459 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.935460 ], [ 23.560181, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.164610 ], [ 29.014893, 69.767557 ], [ 28.591919, 69.066601 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.937524 ], [ 22.500000, 68.393113 ], [ 22.060547, 68.584465 ], [ 22.060547, 68.984016 ], [ 22.351685, 68.843700 ], [ 22.500000, 68.849647 ], [ 23.659058, 68.893209 ], [ 24.730225, 68.650556 ], [ 25.686035, 69.094060 ], [ 26.174927, 69.826365 ], [ 27.729492, 70.164610 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Finland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.734985, 70.164610 ], [ 29.014893, 69.765657 ], [ 28.591919, 69.064638 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.492798, 66.513260 ], [ 29.674072, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.560181, 66.513260 ], [ 23.538208, 67.935460 ], [ 22.500000, 68.391090 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.985986 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.664551, 68.891231 ], [ 24.735718, 68.648556 ], [ 25.691528, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.734985, 70.164610 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.879028, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.854567 ], [ 22.500000, 77.448134 ], [ 22.489014, 77.445746 ], [ 22.060547, 77.502931 ], [ 22.060547, 78.377111 ], [ 22.500000, 78.419091 ], [ 22.879028, 78.455425 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.884521, 78.455425 ], [ 23.280029, 78.079021 ], [ 24.724731, 77.853412 ], [ 22.500000, 77.446940 ], [ 22.489014, 77.444552 ], [ 22.060547, 77.501742 ], [ 22.060547, 78.376004 ], [ 22.500000, 78.419091 ], [ 22.884521, 78.455425 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.647035 ], [ 45.439453, 80.583438 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 45.439453, 80.647035 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 80.646142 ], [ 45.439453, 80.582539 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604983 ], [ 45.439453, 80.646142 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.407473 ], [ 27.405396, 80.057101 ], [ 25.922241, 79.518659 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.535685 ], [ 22.917480, 80.657741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 80.656850 ], [ 25.449829, 80.407473 ], [ 27.405396, 80.056153 ], [ 25.922241, 79.517660 ], [ 23.021851, 79.400085 ], [ 22.500000, 79.430356 ], [ 22.060547, 79.455516 ], [ 22.060547, 80.404726 ], [ 22.500000, 80.534782 ], [ 22.917480, 80.656850 ] ] ] } } ] } ] } , @@ -3392,123 +3380,123 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 58.134155, -67.011719 ], [ 58.743896, -67.286894 ], [ 59.935913, -67.403266 ], [ 60.600586, -67.678171 ], [ 61.424561, -67.951963 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.815468 ], [ 64.050293, -67.403266 ], [ 64.989624, -67.619681 ], [ 65.967407, -67.736516 ], [ 66.906738, -67.854844 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.240890 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.679970 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.140897 ], [ 45.000000, -68.019910 ], [ 45.719604, -67.815468 ], [ 46.499634, -67.600849 ], [ 47.438965, -67.717778 ], [ 48.339844, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.927368, -67.110204 ], [ 50.751343, -66.874030 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.509399, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.172852, -66.337505 ], [ 57.211304, -66.513260 ], [ 57.255249, -66.681261 ], [ 58.139648, -67.013864 ], [ 58.743896, -67.286894 ], [ 59.941406, -67.405377 ], [ 60.606079, -67.680257 ], [ 61.430054, -67.954025 ], [ 62.385864, -68.011685 ], [ 63.187866, -67.817542 ], [ 64.050293, -67.405377 ], [ 64.995117, -67.621772 ], [ 65.972900, -67.738597 ], [ 66.912231, -67.856914 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 67.939453, -67.933397 ], [ 67.939453, -70.244604 ], [ 67.813110, -70.305784 ], [ 67.939453, -70.663607 ], [ 67.939453, -74.140084 ], [ 44.560547, -74.140084 ], [ 44.560547, -68.142942 ], [ 45.000000, -68.021966 ], [ 45.719604, -67.817542 ], [ 46.505127, -67.600849 ], [ 47.444458, -67.717778 ], [ 48.345337, -67.365243 ], [ 48.988037, -67.090966 ], [ 49.932861, -67.112340 ], [ 50.751343, -66.876188 ], [ 50.949097, -66.524204 ], [ 50.982056, -66.513260 ], [ 51.520386, -66.337505 ], [ 57.172852, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.530640, -65.816282 ], [ 55.409546, -65.874725 ], [ 56.354370, -65.973325 ], [ 57.156372, -66.246951 ], [ 57.216797, -66.513260 ], [ 57.255249, -66.679087 ], [ 57.277222, -66.687784 ], [ 50.850220, -66.687784 ], [ 50.949097, -66.522016 ], [ 50.971069, -66.513260 ], [ 51.789551, -66.246951 ], [ 52.613525, -66.051487 ], [ 53.607788, -65.894924 ], [ 54.530640, -65.816282 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 54.536133, -65.818532 ], [ 55.415039, -65.876970 ], [ 56.354370, -65.975562 ], [ 57.156372, -66.249163 ], [ 57.211304, -66.513260 ], [ 57.255249, -66.681261 ], [ 57.271729, -66.687784 ], [ 50.855713, -66.687784 ], [ 50.949097, -66.524204 ], [ 50.982056, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.613525, -66.053716 ], [ 53.613281, -65.897167 ], [ 54.536133, -65.818532 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.202515, -21.534847 ], [ 48.070679, -21.943046 ], [ 47.927856, -22.390714 ], [ 47.543335, -23.780318 ], [ 47.092896, -24.941238 ], [ 46.279907, -25.175117 ], [ 45.406494, -25.596948 ], [ 45.000000, -25.418470 ], [ 44.829712, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.202515, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.208008, -21.534847 ], [ 48.076172, -21.943046 ], [ 47.933350, -22.390714 ], [ 47.548828, -23.780318 ], [ 47.098389, -24.941238 ], [ 46.279907, -25.180088 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.413509 ], [ 44.835205, -25.344026 ], [ 44.560547, -25.219851 ], [ 44.560547, -21.534847 ], [ 48.208008, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.191284, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.892135 ], [ 50.053711, -13.555222 ], [ 50.213013, -14.753635 ], [ 50.471191, -15.225889 ], [ 50.372314, -15.702375 ], [ 50.196533, -15.998295 ], [ 49.855957, -15.411319 ], [ 49.669189, -15.707663 ], [ 49.861450, -16.446622 ], [ 49.773560, -16.872890 ], [ 49.493408, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.037476, -19.114029 ], [ 48.543091, -20.493919 ], [ 48.070679, -21.943046 ], [ 47.938843, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.939575, -16.177749 ], [ 45.000000, -16.151369 ], [ 45.499878, -15.971892 ], [ 45.867920, -15.792254 ], [ 46.307373, -15.776395 ], [ 46.878662, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.290405, -13.779402 ], [ 48.839722, -13.084829 ], [ 48.861694, -12.484850 ], [ 49.191284, -12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Madagascar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.196777, -12.039321 ], [ 49.542847, -12.468760 ], [ 49.806519, -12.897489 ], [ 50.059204, -13.555222 ], [ 50.218506, -14.758947 ], [ 50.476685, -15.225889 ], [ 50.377808, -15.707663 ], [ 50.202026, -15.998295 ], [ 49.861450, -15.416615 ], [ 49.674683, -15.707663 ], [ 49.861450, -16.451891 ], [ 49.773560, -16.872890 ], [ 49.498901, -17.104043 ], [ 49.432983, -17.952606 ], [ 49.042969, -19.119219 ], [ 48.548584, -20.499064 ], [ 48.076172, -21.943046 ], [ 47.944336, -22.350076 ], [ 44.560547, -22.350076 ], [ 44.560547, -16.204125 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.505371, -15.971892 ], [ 45.873413, -15.792254 ], [ 46.312866, -15.781682 ], [ 46.884155, -15.209988 ], [ 47.702637, -14.594216 ], [ 48.004761, -14.088629 ], [ 47.867432, -13.662001 ], [ 48.295898, -13.784737 ], [ 48.845215, -13.090179 ], [ 48.861694, -12.490214 ], [ 49.196777, -12.039321 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.874217 ], [ 45.000000, 8.711359 ], [ 46.944580, 7.999397 ], [ 47.785034, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.874217 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.868790 ], [ 45.000000, 8.711359 ], [ 46.950073, 7.999397 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.992450 ], [ 44.560547, 8.868790 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 54.997559, 20.004322 ], [ 51.998291, 19.004997 ], [ 49.114380, 18.620219 ], [ 48.180542, 18.166730 ], [ 47.466431, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.429270 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.437012, 22.350076 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 54.997559, 19.999160 ], [ 51.998291, 18.999803 ], [ 49.114380, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.466431, 17.114543 ], [ 46.999512, 16.951724 ], [ 46.752319, 17.282464 ], [ 46.367798, 17.235252 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.560547, 17.424029 ], [ 44.560547, 22.350076 ], [ 55.437012, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 19.004997 ], [ 52.778320, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.168823, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.674927, 14.003367 ], [ 48.235474, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.873413, 13.352210 ], [ 45.620728, 13.293411 ], [ 45.401001, 13.031318 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.726084 ], [ 44.989014, 12.704651 ], [ 44.560547, 12.726084 ], [ 44.560547, 17.429270 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.395508, 17.334908 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.119793 ], [ 48.180542, 18.166730 ], [ 49.114380, 18.620219 ], [ 51.998291, 19.004997 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Yemen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 52.783813, 17.350638 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.168579, 15.596584 ], [ 51.174316, 15.172879 ], [ 49.575806, 14.711135 ], [ 48.680420, 14.003367 ], [ 48.240967, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.356567, 13.592600 ], [ 46.719360, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.720726 ], [ 44.989014, 12.699292 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.424029 ], [ 45.000000, 17.434511 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 46.367798, 17.235252 ], [ 46.752319, 17.282464 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.114543 ], [ 48.186035, 18.166730 ], [ 49.114380, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.282227, 21.437730 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.432160 ], [ 58.029785, 20.483628 ], [ 57.821045, 20.246737 ], [ 57.661743, 19.740854 ], [ 57.788086, 19.072501 ], [ 57.689209, 18.947856 ], [ 57.233276, 18.953051 ], [ 56.607056, 18.578569 ], [ 56.508179, 18.088423 ], [ 56.282959, 17.879431 ], [ 55.656738, 17.884659 ], [ 55.266724, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.234009, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 19.004997 ], [ 54.997559, 20.004322 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.713576 ], [ 59.282227, 21.432617 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.427013 ], [ 58.035278, 20.483628 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.607056, 18.573362 ], [ 56.513672, 18.088423 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.999160 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.437012, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.454480 ], [ 48.482666, 8.841651 ], [ 47.785034, 8.004837 ], [ 46.944580, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.874217 ], [ 44.560547, 10.450000 ], [ 44.609985, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.642456, 10.817120 ], [ 47.521362, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.944092, 11.415418 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.711359 ], [ 44.560547, 8.868790 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.036987, 11.167624 ], [ 51.042480, 10.644412 ], [ 50.833740, 10.282491 ], [ 50.548096, 9.199715 ], [ 50.070190, 8.086423 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.735596, 4.220421 ], [ 46.560059, 2.860749 ], [ 45.560303, 2.048514 ], [ 45.000000, 1.680667 ], [ 44.560547, 1.389634 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.785034, 8.004837 ], [ 48.482666, 8.841651 ], [ 48.933105, 9.454480 ], [ 48.933105, 10.984335 ], [ 48.944092, 11.415418 ], [ 49.262695, 11.431571 ], [ 49.724121, 11.582288 ], [ 50.256958, 11.684514 ], [ 50.729370, 12.023203 ], [ 51.108398, 12.028576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.806444 ], [ 48.592529, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.675176 ], [ 44.560547, 1.384143 ], [ 44.560547, 4.992450 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.790527, 8.004837 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.984335 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.256958, 11.679135 ], [ 50.729370, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.916870, 41.310824 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.916870, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.054932, 41.310824 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 41.310824 ], [ 45.054932, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.516113, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.062786 ], [ 45.961304, 41.124884 ], [ 45.472412, 41.310824 ], [ 46.516113, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 39.622615 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.622615 ] ] ], [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 39.618384 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.618384 ] ] ], [ [ [ 44.560547, 37.483577 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.099003 ], [ 44.560547, 37.483577 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.173449 ], [ 45.000000, 36.752089 ], [ 45.417480, 35.978006 ], [ 46.071167, 35.679610 ], [ 46.148071, 35.097440 ], [ 45.648193, 34.750640 ], [ 45.411987, 33.970698 ], [ 46.104126, 33.017876 ], [ 47.334595, 32.472695 ], [ 47.845459, 31.709476 ], [ 47.680664, 30.987028 ], [ 47.999268, 30.987028 ], [ 48.010254, 30.453409 ], [ 48.565063, 29.931135 ], [ 47.971802, 29.978729 ], [ 47.301636, 30.059586 ], [ 46.565552, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.769287, 37.173449 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.760891 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.171349 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.291190 ], [ 44.560547, 37.099003 ], [ 44.774780, 37.169072 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.708984, 41.170384 ], [ 66.670532, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.141433 ], [ 66.714478, 41.170384 ], [ 66.676025, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.404053, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.670532, 41.310824 ], [ 66.708984, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.571822 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 66.516724, 37.365791 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.406254 ], [ 64.165649, 38.895308 ], [ 63.517456, 39.364032 ], [ 62.369385, 40.057052 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.298462, 41.310824 ], [ 66.670532, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.676025, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.141433 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.348326 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.243448 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.292969, 41.310824 ], [ 66.676025, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.730591, 39.321550 ], [ 45.736084, 39.474365 ], [ 45.296631, 39.474365 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.559721 ], [ 45.889893, 40.216635 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.626846 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.321550 ], [ 45.741577, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.614258, 40.576413 ], [ 50.081177, 40.526327 ], [ 50.388794, 40.258569 ], [ 49.564819, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.818311 ], [ 48.878174, 38.324420 ], [ 48.630981, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.059692, 39.584524 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.631077 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.357056, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.248903 ], [ 45.054932, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.916870, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.474365 ], [ 45.736084, 39.474365 ], [ 45.730591, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.878205 ], [ 45.000000, 39.296048 ], [ 44.950562, 39.338546 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.075928, 41.310824 ], [ 49.108887, 41.281935 ], [ 49.323120, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.258569 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.626846 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.216635 ], [ 45.357056, 40.559721 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.472412, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.516113, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.922363, 41.310824 ], [ 49.075928, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.950562, 39.338546 ], [ 45.000000, 39.296048 ], [ 45.455933, 38.878205 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.059692, 39.584524 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.630981, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.583766 ], [ 50.147095, 37.378888 ], [ 50.839233, 36.875227 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.396346 ], [ 55.508423, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.326660, 38.030786 ], [ 58.430786, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.531709 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.652833 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.985628 ], [ 60.858765, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.737114 ], [ 60.869751, 29.831114 ], [ 61.364136, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.381523 ], [ 63.231812, 27.220441 ], [ 63.314209, 26.760326 ], [ 61.869507, 26.244156 ], [ 61.495972, 25.080624 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.966142 ], [ 54.711914, 26.485324 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.868217 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.988245 ], [ 48.938599, 30.320730 ], [ 48.565063, 29.931135 ], [ 48.010254, 30.453409 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.334595, 32.472695 ], [ 46.104126, 33.017876 ], [ 45.411987, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.148071, 35.097440 ], [ 46.071167, 35.679610 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.173449 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.622615 ], [ 44.791260, 39.715638 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.760891 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.618384 ], [ 44.791260, 39.711413 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.978729 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.310351 ], [ 48.411255, 28.555576 ], [ 47.708130, 28.526622 ], [ 47.455444, 29.003336 ], [ 46.565552, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.973970 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.565552, 29.099377 ], [ 47.455444, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.411255, 28.555576 ], [ 48.806763, 27.693256 ], [ 49.295654, 27.464414 ], [ 49.465942, 27.112923 ], [ 50.147095, 26.691637 ], [ 50.207520, 26.278640 ], [ 50.108643, 25.948166 ], [ 50.234985, 25.611810 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.806274, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.388550, 24.632038 ], [ 51.575317, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 23.003908 ], [ 55.003052, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.662231, 22.004175 ], [ 55.640259, 21.943046 ], [ 55.502930, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.291190 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.291190 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.586304, 25.804837 ], [ 51.602783, 25.219851 ], [ 51.388550, 24.632038 ], [ 51.108398, 24.557116 ], [ 50.806274, 24.756808 ], [ 50.740356, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.392822, 24.926295 ], [ 55.881958, 24.921313 ], [ 55.799561, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.528737 ], [ 55.233765, 23.115102 ], [ 55.206299, 22.710323 ], [ 55.003052, 22.497332 ], [ 51.998291, 23.003908 ], [ 51.613770, 24.016362 ], [ 51.575317, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.789551, 24.021379 ], [ 52.575073, 24.181836 ], [ 54.003296, 24.126702 ], [ 54.689941, 24.801695 ], [ 55.437012, 25.443275 ], [ 56.068726, 26.056783 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Arab Emirates" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.068726, 26.056783 ], [ 56.260986, 25.715786 ], [ 56.398315, 24.926295 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.272005 ], [ 55.980835, 24.131715 ], [ 55.530396, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.206299, 22.710323 ], [ 55.008545, 22.497332 ], [ 51.998291, 22.998852 ], [ 51.619263, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.292034 ], [ 51.795044, 24.021379 ], [ 52.575073, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.695435, 24.796708 ], [ 55.437012, 25.438314 ], [ 56.068726, 26.056783 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.057052 ], [ 63.517456, 39.364032 ], [ 64.165649, 38.895308 ], [ 65.214844, 38.406254 ], [ 66.544189, 37.978845 ], [ 66.516724, 37.365791 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.662081 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.112146 ], [ 64.544678, 36.315125 ], [ 63.978882, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.210327, 35.652833 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.531709 ], [ 59.232788, 37.413800 ], [ 58.430786, 37.522797 ], [ 57.326660, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.508423, 37.965854 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.955137 ], [ 53.096924, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.634799 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.833252, 41.310824 ], [ 52.811279, 41.137296 ], [ 52.723389, 41.310824 ], [ 52.833252, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.292969, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.929932, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.404053, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.250000, 41.310824 ], [ 60.292969, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.398071, 23.880815 ], [ 58.134155, 23.750154 ], [ 58.727417, 23.569022 ], [ 59.177856, 22.993795 ], [ 59.447021, 22.664710 ], [ 59.804077, 22.537927 ], [ 59.804077, 22.314508 ], [ 59.573364, 21.943046 ], [ 59.441528, 21.718680 ], [ 59.337158, 21.534847 ], [ 55.502930, 21.534847 ], [ 55.640259, 21.943046 ], [ 55.662231, 22.004175 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.115102 ], [ 55.524902, 23.528737 ], [ 55.524902, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.799561, 24.272005 ], [ 55.881958, 24.921313 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.480713, 26.313113 ], [ 56.387329, 25.898762 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.177856, 22.993795 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.441528, 21.713576 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ], [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 67.939453, 39.571822 ], [ 67.939453, 38.980763 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.348326 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.348326 ] ] ], [ [ [ 67.939453, 38.976492 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.976492 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.742188, 37.662081 ], [ 66.214600, 37.396346 ], [ 66.516724, 37.365791 ], [ 67.071533, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 66.934204, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.346924, 29.563902 ], [ 64.143677, 29.343875 ], [ 63.544922, 29.473079 ], [ 62.545166, 29.319931 ], [ 60.869751, 29.831114 ], [ 61.776123, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.858765, 32.184911 ], [ 60.534668, 32.985628 ], [ 60.963135, 33.532237 ], [ 60.523682, 33.678640 ], [ 60.798340, 34.406910 ], [ 61.210327, 35.652833 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.857892 ], [ 63.978882, 36.009117 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.112146 ], [ 65.588379, 37.309014 ], [ 65.742188, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.243448 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.611288 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.306715 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.780318 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 66.368408, 25.428393 ], [ 64.528198, 25.239727 ], [ 62.902222, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.869507, 26.244156 ], [ 63.314209, 26.760326 ], [ 63.231812, 27.220441 ], [ 62.753906, 27.381523 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.364136, 29.305561 ], [ 60.869751, 29.831114 ], [ 62.545166, 29.319931 ], [ 63.544922, 29.473079 ], [ 64.143677, 29.343875 ], [ 64.346924, 29.563902 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.934204, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.611288 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.931034 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.611288 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.876607 ], [ 65.665283, 54.603892 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.667426 ], [ 61.699219, 52.981723 ], [ 60.737915, 52.722986 ], [ 60.924683, 52.449314 ], [ 59.963379, 51.961192 ], [ 61.583862, 51.275662 ], [ 61.336670, 50.802463 ], [ 59.930420, 50.844105 ], [ 59.639282, 50.548344 ], [ 58.359375, 51.065565 ], [ 56.777344, 51.044848 ], [ 55.711670, 50.625073 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.762329, 51.692990 ], [ 48.696899, 50.607646 ], [ 48.576050, 49.876938 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.396385 ], [ 47.312622, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.562637 ], [ 49.097900, 46.399988 ], [ 48.641968, 45.809658 ], [ 47.675171, 45.644768 ], [ 46.680908, 44.610023 ], [ 47.587280, 43.663898 ], [ 47.488403, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.982788, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.400757, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.466919, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.710696 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.939766 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.600710 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.737915, 52.719658 ], [ 60.924683, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.044848 ], [ 55.717163, 50.621588 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.576050, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.466675, 48.392738 ], [ 47.312622, 47.717154 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.562637 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.466919, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.400757, 41.861379 ], [ 46.142578, 41.726230 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.214233, 41.413896 ], [ 45.000000, 41.273678 ], [ 44.967041, 41.248903 ], [ 44.560547, 41.207589 ], [ 44.560547, 42.710696 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.706660 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.774536, 42.094146 ], [ 46.406250, 41.861379 ], [ 46.148071, 41.722131 ], [ 46.636963, 41.182788 ], [ 46.499634, 41.062786 ], [ 45.961304, 41.124884 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 42.706660 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.708984, 41.170384 ], [ 66.505737, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.093750, 43.000630 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.925903, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.453491, 41.261291 ], [ 54.750366, 42.045213 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.118599 ], [ 52.498169, 41.783601 ], [ 52.443237, 42.028894 ], [ 52.690430, 42.447781 ], [ 52.498169, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.333862, 44.284537 ], [ 50.300903, 44.610023 ], [ 51.273193, 44.516093 ], [ 51.311646, 45.247821 ], [ 52.163086, 45.410020 ], [ 53.036499, 45.259422 ], [ 53.217773, 46.236853 ], [ 53.041992, 46.856435 ], [ 52.036743, 46.807580 ], [ 51.190796, 47.051411 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.312622, 47.717154 ], [ 46.461182, 48.396385 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.357334 ], [ 47.548828, 50.457504 ], [ 48.576050, 49.876938 ], [ 48.696899, 50.607646 ], [ 50.762329, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.044848 ], [ 58.359375, 51.065565 ], [ 59.639282, 50.548344 ], [ 59.930420, 50.844105 ], [ 61.336670, 50.802463 ], [ 61.583862, 51.275662 ], [ 59.963379, 51.961192 ], [ 60.924683, 52.449314 ], [ 60.737915, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.667426 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.603892 ], [ 67.500000, 54.876607 ], [ 67.939453, 54.939766 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.939766 ], [ 67.939453, 41.141433 ], [ 67.500000, 41.153842 ], [ 66.714478, 41.170384 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.099243, 42.996612 ], [ 64.901733, 43.727445 ], [ 63.187866, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.931396, 44.995883 ], [ 55.969849, 41.306698 ], [ 55.453491, 41.261291 ], [ 54.755859, 42.045213 ], [ 54.080200, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.783601 ], [ 52.448730, 42.028894 ], [ 52.690430, 42.443728 ], [ 52.503662, 42.791370 ], [ 51.344604, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.516093 ], [ 51.317139, 45.247821 ], [ 52.168579, 45.410020 ], [ 53.041992, 45.259422 ], [ 53.223267, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.047669 ], [ 50.031738, 46.607941 ], [ 49.103394, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.696899, 47.073863 ], [ 48.059692, 47.743017 ], [ 47.312622, 47.717154 ], [ 46.466675, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.752319, 49.357334 ], [ 47.548828, 50.454007 ], [ 48.576050, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.717163, 50.621588 ], [ 56.777344, 51.044848 ], [ 58.364868, 51.062113 ], [ 59.644775, 50.544854 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.924683, 52.445966 ], [ 60.737915, 52.719658 ], [ 61.699219, 52.978416 ], [ 60.979614, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.600710 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.939766 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 43.000630 ], [ 66.022339, 41.996243 ], [ 66.505737, 41.988077 ], [ 66.708984, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.463257, 41.224118 ], [ 60.078735, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.755080 ], [ 57.782593, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.323201 ], [ 55.964355, 41.310824 ], [ 55.925903, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.153842 ], [ 67.939453, 41.141433 ], [ 67.939453, 40.647304 ], [ 62.089233, 40.647304 ], [ 61.929932, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.207589 ], [ 44.967041, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Armenia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.422974, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.400757, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.982788, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.323120, 40.979898 ], [ 49.559326, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.248903 ], [ 45.000000, 41.273678 ], [ 45.214233, 41.413896 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.142578, 41.726230 ], [ 46.400757, 41.861379 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.108887, 41.281935 ], [ 49.323120, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.422974, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.910156, 40.880295 ], [ 53.805542, 40.647304 ], [ 52.844238, 40.647304 ], [ 52.910156, 40.880295 ] ] ], [ [ [ 53.887939, 40.647304 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.003296, 41.553811 ], [ 53.717651, 42.126747 ], [ 52.915649, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.498169, 41.783601 ], [ 52.943115, 42.118599 ], [ 54.074707, 42.326062 ], [ 54.750366, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.828642 ], [ 57.782593, 42.171546 ], [ 58.628540, 42.755080 ], [ 59.974365, 42.224450 ], [ 60.078735, 41.426253 ], [ 60.463257, 41.224118 ], [ 61.545410, 41.269550 ], [ 61.880493, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.887939, 40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.869561 ], [ 52.816772, 41.137296 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.326062 ], [ 54.755859, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.974365, 42.224450 ], [ 60.084229, 41.426253 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.929932, 40.979898 ], [ 62.089233, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.296387, 66.687784 ], [ 46.345825, 66.668211 ], [ 46.483154, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 66.687784 ], [ 67.939453, 55.528631 ], [ 44.560547, 55.528631 ], [ 44.560547, 66.687784 ], [ 46.301880, 66.687784 ], [ 46.351318, 66.668211 ], [ 46.488647, 66.687784 ], [ 67.939453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 68.279554 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.246948, 68.251075 ], [ 46.818237, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.011719 ], [ 46.345825, 66.668211 ], [ 47.889404, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.223999, 67.999341 ], [ 53.712158, 68.857574 ], [ 54.470215, 68.809971 ], [ 53.481445, 68.202172 ], [ 54.722900, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.467832 ], [ 58.798828, 68.881337 ], [ 59.941406, 68.279554 ], [ 61.072998, 68.942607 ], [ 60.029297, 69.521069 ], [ 60.545654, 69.850978 ], [ 63.500977, 69.547958 ], [ 64.885254, 69.236684 ], [ 67.500000, 68.419393 ], [ 67.939453, 68.279554 ] ] ], [ [ [ 58.205566, 74.140084 ], [ 58.018799, 74.019543 ], [ 56.986084, 73.334161 ], [ 55.415039, 72.372432 ], [ 55.618286, 71.542309 ], [ 57.535400, 70.721726 ], [ 56.942139, 70.634484 ], [ 53.673706, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.597290, 71.476106 ], [ 51.454468, 72.016337 ], [ 52.476196, 72.230485 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 54.217529, 74.019543 ], [ 54.547119, 74.140084 ], [ 58.205566, 74.140084 ] ] ], [ [ [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.455626 ], [ 67.258301, 69.930300 ], [ 66.719971, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 68.277521 ], [ 67.939453, 66.337505 ], [ 44.560547, 66.337505 ], [ 44.560547, 68.445644 ], [ 45.000000, 68.395135 ], [ 46.252441, 68.249040 ], [ 46.823730, 67.690686 ], [ 45.554810, 67.567334 ], [ 45.560303, 67.009574 ], [ 46.351318, 66.668211 ], [ 47.894897, 66.884815 ], [ 48.136597, 67.523273 ], [ 50.229492, 67.999341 ], [ 53.717651, 68.857574 ], [ 54.470215, 68.807986 ], [ 53.486938, 68.202172 ], [ 54.728394, 68.097907 ], [ 55.442505, 68.439589 ], [ 57.315674, 68.465816 ], [ 58.804321, 68.881337 ], [ 59.941406, 68.277521 ], [ 61.078491, 68.940633 ], [ 60.029297, 69.519147 ], [ 60.551147, 69.849086 ], [ 63.506470, 69.547958 ], [ 64.890747, 69.234737 ], [ 67.500000, 68.417373 ], [ 67.939453, 68.277521 ] ] ], [ [ [ 58.211060, 74.140084 ], [ 58.024292, 74.019543 ], [ 56.986084, 73.332585 ], [ 55.420532, 72.370768 ], [ 55.623779, 71.540569 ], [ 57.535400, 70.719913 ], [ 56.947632, 70.632662 ], [ 53.679199, 70.763396 ], [ 53.410034, 71.207229 ], [ 51.602783, 71.474361 ], [ 51.454468, 72.014641 ], [ 52.476196, 72.228809 ], [ 52.443237, 72.775455 ], [ 54.426270, 73.627789 ], [ 53.508911, 73.749668 ], [ 54.228516, 74.019543 ], [ 54.552612, 74.140084 ], [ 58.211060, 74.140084 ] ] ], [ [ [ 67.939453, 69.374508 ], [ 67.500000, 69.409311 ], [ 66.928711, 69.453698 ], [ 67.258301, 69.928415 ], [ 66.725464, 70.709027 ], [ 66.692505, 71.029464 ], [ 67.500000, 71.432427 ], [ 67.939453, 71.646374 ], [ 67.939453, 69.374508 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.926828 ], [ 67.939453, 76.203347 ], [ 67.500000, 76.141643 ], [ 64.632568, 75.738656 ], [ 61.578369, 75.261444 ], [ 58.474731, 74.310325 ], [ 58.018799, 74.019543 ], [ 57.832031, 73.898111 ], [ 53.893433, 73.898111 ], [ 54.217529, 74.019543 ], [ 55.898438, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.864990, 75.609532 ], [ 61.166382, 76.253039 ], [ 64.495239, 76.439756 ], [ 66.209106, 76.810769 ], [ 67.500000, 76.898219 ], [ 67.939453, 76.926828 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 76.925585 ], [ 67.939453, 76.200727 ], [ 67.500000, 76.140327 ], [ 64.638062, 75.737303 ], [ 61.583862, 75.261444 ], [ 58.474731, 74.308839 ], [ 58.024292, 74.019543 ], [ 57.837524, 73.898111 ], [ 53.904419, 73.898111 ], [ 54.228516, 74.019543 ], [ 55.903931, 74.628014 ], [ 55.629272, 75.081497 ], [ 57.870483, 75.609532 ], [ 61.171875, 76.251734 ], [ 64.500732, 76.438468 ], [ 66.209106, 76.809516 ], [ 67.500000, 76.895728 ], [ 67.939453, 76.925585 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.700447 ], [ 51.135864, 80.547420 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.340419 ], [ 48.751831, 80.175902 ], [ 47.581787, 80.010518 ], [ 46.499634, 80.247810 ], [ 47.070923, 80.560042 ], [ 45.000000, 80.588829 ], [ 44.846191, 80.590625 ], [ 45.000000, 80.605880 ], [ 46.796265, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.092407, 80.754439 ], [ 50.037231, 80.918894 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.037231, 80.918894 ], [ 51.520386, 80.699559 ], [ 51.135864, 80.547420 ], [ 49.795532, 80.415707 ], [ 48.894653, 80.339497 ], [ 48.757324, 80.175902 ], [ 47.587280, 80.010518 ], [ 46.505127, 80.246879 ], [ 47.070923, 80.559141 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604983 ], [ 46.801758, 80.772073 ], [ 48.317871, 80.784398 ], [ 48.521118, 80.514887 ], [ 49.097900, 80.753556 ], [ 50.037231, 80.918894 ] ] ] } } ] } ] } , @@ -3532,91 +3520,91 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.824463, -66.953727 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.439453, -67.210416 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.865195 ], [ 67.500000, -67.900354 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.708252, -68.972193 ], [ 69.669800, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.593140, -69.932185 ], [ 67.807617, -70.303933 ], [ 67.944946, -70.696320 ], [ 69.065552, -70.676335 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.944946, -71.852807 ], [ 68.708496, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.021118, -72.087432 ], [ 71.570435, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.449341, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.363091 ], [ 73.861084, -69.873672 ], [ 74.487305, -69.775154 ], [ 75.624390, -69.735237 ], [ 76.624146, -69.618859 ], [ 77.640381, -69.461408 ], [ 78.129272, -69.070526 ], [ 78.425903, -68.696505 ], [ 79.112549, -68.324234 ], [ 80.090332, -68.071253 ], [ 80.930786, -67.875541 ], [ 81.480103, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.770996, -67.208289 ], [ 83.770752, -67.305976 ], [ 84.671631, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.748047, -67.148632 ], [ 87.473145, -66.874030 ], [ 87.747803, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.154297, -66.337505 ], [ 88.357544, -66.484784 ], [ 88.385010, -66.513260 ], [ 88.829956, -66.953727 ], [ 89.670410, -67.150765 ], [ 90.000000, -67.176348 ], [ 90.439453, -67.212544 ], [ 90.439453, -74.140084 ], [ 67.060547, -74.140084 ], [ 67.060547, -67.867265 ], [ 67.500000, -67.902421 ], [ 67.890015, -67.933397 ], [ 68.889771, -67.933397 ], [ 69.713745, -68.972193 ], [ 69.675293, -69.226945 ], [ 69.554443, -69.678082 ], [ 68.598633, -69.932185 ], [ 67.813110, -70.305784 ], [ 67.950439, -70.696320 ], [ 69.065552, -70.678153 ], [ 68.928223, -71.068711 ], [ 68.417358, -71.441171 ], [ 67.950439, -71.852807 ], [ 68.713989, -72.166669 ], [ 69.867554, -72.263983 ], [ 71.026611, -72.089122 ], [ 71.575928, -71.696469 ], [ 71.905518, -71.323674 ], [ 72.454834, -71.009811 ], [ 73.081055, -70.716285 ], [ 73.333740, -70.364937 ], [ 73.866577, -69.873672 ], [ 74.492798, -69.777053 ], [ 75.629883, -69.737140 ], [ 76.624146, -69.618859 ], [ 77.645874, -69.463336 ], [ 78.134766, -69.070526 ], [ 78.425903, -68.698500 ], [ 79.112549, -68.326262 ], [ 80.095825, -68.071253 ], [ 80.936279, -67.875541 ], [ 81.485596, -67.542167 ], [ 82.051392, -67.365243 ], [ 82.776489, -67.208289 ], [ 83.776245, -67.308095 ], [ 84.677124, -67.208289 ], [ 85.654907, -67.090966 ], [ 86.753540, -67.150765 ], [ 87.478638, -66.876188 ], [ 87.753296, -66.513260 ], [ 87.885132, -66.337505 ], [ 88.154297, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.482592 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.610474, -66.687784 ], [ 87.747803, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.984009, -66.209308 ], [ 88.357544, -66.484784 ], [ 88.385010, -66.513260 ], [ 88.555298, -66.687784 ], [ 87.621460, -66.687784 ], [ 87.753296, -66.513260 ], [ 87.984009, -66.209308 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.622016 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.063069 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.706720 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.933716, -48.622016 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fr. S. Antarctic Lands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.933716, -48.625647 ], [ 69.581909, -48.940543 ], [ 70.526733, -49.066668 ], [ 70.559692, -49.253465 ], [ 70.279541, -49.710273 ], [ 68.746948, -49.774170 ], [ 68.719482, -49.242707 ], [ 68.933716, -48.625647 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 86.973267, 21.499075 ], [ 87.028198, 20.745840 ], [ 86.495361, 20.153942 ], [ 85.056152, 19.482129 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.020020 ], [ 82.188721, 16.557227 ], [ 81.688843, 16.314868 ], [ 80.787964, 15.956048 ], [ 80.321045, 15.903225 ], [ 80.024414, 15.141067 ], [ 80.233154, 13.838080 ], [ 80.282593, 13.009910 ], [ 79.859619, 12.060809 ], [ 79.854126, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.933914 ], [ 77.937012, 8.254983 ], [ 77.536011, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.304110 ], [ 75.745239, 11.313094 ], [ 75.393677, 11.781325 ], [ 74.860840, 12.742158 ], [ 74.613647, 13.992706 ], [ 74.443359, 14.620794 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.931702 ], [ 72.817383, 19.212616 ], [ 72.822876, 20.421865 ], [ 72.625122, 21.361013 ], [ 71.174927, 20.761250 ], [ 70.466309, 20.879343 ], [ 69.318237, 21.943046 ], [ 69.158936, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.972778, 22.350076 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 86.973267, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.500854, 20.153942 ], [ 85.061646, 19.476950 ], [ 83.941040, 18.302381 ], [ 83.188477, 17.670194 ], [ 82.194214, 17.014768 ], [ 82.188721, 16.557227 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.326538, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.865112, 12.055437 ], [ 79.859619, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.887329, 9.546583 ], [ 79.189453, 9.215982 ], [ 78.277588, 8.933914 ], [ 77.942505, 8.254983 ], [ 77.541504, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.298706 ], [ 75.745239, 11.307708 ], [ 75.393677, 11.781325 ], [ 74.866333, 12.742158 ], [ 74.619141, 13.992706 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.926476 ], [ 72.822876, 19.207429 ], [ 72.822876, 20.421865 ], [ 72.630615, 21.355897 ], [ 71.174927, 20.756114 ], [ 70.471802, 20.879343 ], [ 69.323730, 21.943046 ], [ 69.164429, 22.090730 ], [ 69.505005, 22.350076 ], [ 88.972778, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.828154 ], [ 80.837402, 9.270201 ], [ 81.298828, 8.564726 ], [ 81.787720, 7.525873 ], [ 81.633911, 6.484525 ], [ 81.216431, 6.200629 ], [ 80.343018, 5.971217 ], [ 79.870605, 6.768261 ], [ 79.694824, 8.206053 ], [ 80.145264, 9.828154 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.822742 ], [ 80.837402, 9.270201 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.520427 ], [ 81.639404, 6.479067 ], [ 81.216431, 6.195168 ], [ 80.348511, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.822742 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.972778, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.016113, 41.310824 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.016113, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.021606, 41.310824 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.162114 ], [ 67.060547, 41.310824 ], [ 69.021606, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.149488 ], [ 71.010132, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.010620, 40.086477 ], [ 68.532715, 39.533703 ], [ 67.697754, 39.584524 ], [ 67.500000, 39.249271 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.125799 ], [ 68.175659, 38.903858 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.071533, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.016113, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.152954, 41.145570 ], [ 71.625366, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.389893, 38.156157 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.243448 ], [ 67.077026, 37.357059 ], [ 67.060547, 37.361426 ], [ 67.060547, 41.162114 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.818359, 40.979898 ], [ 69.021606, 41.310824 ], [ 70.834351, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.630859, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.294067, 41.310824 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.367474 ], [ 73.817139, 39.897094 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.283294 ], [ 70.548706, 39.605688 ], [ 69.461060, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.647583, 39.939225 ], [ 71.010132, 40.245992 ], [ 71.773682, 40.149488 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.294067, 41.310824 ] ] ], [ [ [ 71.625366, 41.310824 ], [ 71.152954, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.625366, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.630859, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.834351, 41.310824 ], [ 71.630859, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.010132, 40.245992 ], [ 70.647583, 39.939225 ], [ 69.554443, 40.103286 ], [ 69.461060, 39.529467 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.509490 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.976196, 37.422526 ], [ 73.943481, 37.422526 ], [ 73.256836, 37.496652 ], [ 72.636108, 37.050793 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.068328 ], [ 71.537476, 37.909534 ], [ 71.235352, 37.957192 ], [ 71.345215, 38.259750 ], [ 70.801392, 38.487995 ], [ 70.372925, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.592472 ], [ 69.515991, 37.609880 ], [ 69.191895, 37.151561 ], [ 68.856812, 37.348326 ], [ 68.131714, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.160476 ], [ 68.175659, 38.903858 ], [ 67.500000, 39.125799 ], [ 67.439575, 39.142842 ], [ 67.500000, 39.249271 ], [ 67.697754, 39.584524 ], [ 68.532715, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.801392, 38.487995 ], [ 71.345215, 38.259750 ], [ 71.235352, 37.957192 ], [ 71.537476, 37.909534 ], [ 71.444092, 37.068328 ], [ 71.839600, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.050793 ], [ 73.256836, 37.496652 ], [ 73.943481, 37.422526 ], [ 74.976196, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.024484 ], [ 74.064331, 36.840065 ], [ 72.916260, 36.721274 ], [ 71.845093, 36.514051 ], [ 71.257324, 36.075742 ], [ 71.493530, 35.652833 ], [ 71.608887, 35.155846 ], [ 71.114502, 34.737098 ], [ 71.152954, 34.352507 ], [ 70.878296, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.362650 ], [ 69.686279, 33.109948 ], [ 69.257812, 32.505129 ], [ 69.312744, 31.905541 ], [ 68.922729, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.829590, 37.147182 ], [ 68.131714, 37.024484 ], [ 68.856812, 37.348326 ], [ 69.191895, 37.151561 ], [ 69.515991, 37.609880 ], [ 70.114746, 37.592472 ], [ 70.268555, 37.735969 ], [ 70.372925, 38.138877 ], [ 70.801392, 38.487995 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.306715 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.361426 ], [ 67.500000, 37.243448 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.902400 ], [ 77.832642, 35.496456 ], [ 76.871338, 34.655804 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.745728, 34.320755 ], [ 74.102783, 33.445193 ], [ 74.448853, 32.768800 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.695456 ], [ 74.415894, 30.982319 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.964895 ], [ 71.773682, 27.916767 ], [ 70.614624, 27.989551 ], [ 69.510498, 26.941660 ], [ 70.164185, 26.495157 ], [ 70.279541, 25.725684 ], [ 70.839844, 25.219851 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.362110 ], [ 68.175659, 23.694835 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.666986 ], [ 67.060547, 24.751820 ], [ 67.060547, 31.306715 ], [ 67.681274, 31.306715 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.922729, 31.620644 ], [ 69.312744, 31.905541 ], [ 69.257812, 32.505129 ], [ 69.686279, 33.109948 ], [ 70.323486, 33.362650 ], [ 69.927979, 34.020795 ], [ 70.878296, 33.988918 ], [ 71.152954, 34.352507 ], [ 71.114502, 34.737098 ], [ 71.608887, 35.155846 ], [ 71.493530, 35.652833 ], [ 71.257324, 36.075742 ], [ 71.845093, 36.514051 ], [ 72.916260, 36.721274 ], [ 74.064331, 36.840065 ], [ 74.575195, 37.024484 ], [ 75.157471, 37.134045 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.931034 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.306715 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.468297 ], [ 83.897095, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.006714, 28.647210 ], [ 85.819702, 28.207609 ], [ 86.951294, 27.974998 ], [ 88.115845, 27.877928 ], [ 88.038940, 27.449790 ], [ 88.170776, 26.814266 ], [ 88.055420, 26.416470 ], [ 87.225952, 26.401711 ], [ 86.022949, 26.632729 ], [ 85.248413, 26.730893 ], [ 84.671631, 27.235095 ], [ 83.303833, 27.366889 ], [ 81.996460, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.084839, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.106567, 30.187870 ], [ 81.524048, 30.424993 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.524048, 30.424993 ], [ 82.326050, 30.116622 ], [ 83.336792, 29.463514 ], [ 83.897095, 29.319931 ], [ 84.232178, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.202768 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.444916 ], [ 88.176270, 26.809364 ], [ 88.060913, 26.416470 ], [ 87.225952, 26.396790 ], [ 86.022949, 26.632729 ], [ 85.253906, 26.725987 ], [ 84.677124, 27.235095 ], [ 83.303833, 27.366889 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.524048, 30.424993 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.832642, 35.496456 ], [ 78.909302, 34.325292 ], [ 78.810425, 33.509339 ], [ 79.205933, 32.994843 ], [ 79.172974, 32.486597 ], [ 78.453369, 32.620870 ], [ 78.733521, 31.517679 ], [ 79.716797, 30.883369 ], [ 81.106567, 30.187870 ], [ 80.474854, 29.730992 ], [ 80.084839, 28.796546 ], [ 81.057129, 28.420391 ], [ 81.996460, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.671631, 27.235095 ], [ 85.248413, 26.730893 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.401711 ], [ 88.055420, 26.416470 ], [ 88.170776, 26.814266 ], [ 88.038940, 27.449790 ], [ 88.115845, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.103144 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.199971 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.302612, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.873901, 22.882501 ], [ 89.027710, 22.060187 ], [ 88.978271, 21.943046 ], [ 88.884888, 21.693161 ], [ 88.203735, 21.703369 ], [ 87.187500, 21.534847 ], [ 69.757690, 21.534847 ], [ 69.158936, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.175659, 23.694835 ], [ 68.840332, 24.362110 ], [ 71.043091, 24.357105 ], [ 70.839844, 25.219851 ], [ 70.279541, 25.725684 ], [ 70.164185, 26.495157 ], [ 69.510498, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.773682, 27.916767 ], [ 72.822876, 28.964895 ], [ 73.449097, 29.978729 ], [ 74.415894, 30.982319 ], [ 74.404907, 31.695456 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.768800 ], [ 74.102783, 33.445193 ], [ 73.745728, 34.320755 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.655804 ], [ 77.832642, 35.496456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.517679 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.730992 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.366889 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.632729 ], [ 87.225952, 26.396790 ], [ 88.060913, 26.416470 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.877928 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.373535, 26.877981 ], [ 90.439453, 26.873081 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.560791, 26.445984 ], [ 88.209229, 25.770214 ], [ 88.928833, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.082886, 24.502145 ], [ 88.698120, 24.231938 ], [ 88.527832, 23.629427 ], [ 88.873901, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.209473, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.164429, 22.090730 ], [ 69.642334, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.840332, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.614624, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.449097, 29.978729 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.256348, 32.273200 ], [ 74.448853, 32.764181 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.750640 ], [ 75.756226, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.103144 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.439453, 28.164033 ], [ 90.439453, 26.873081 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.450902 ], [ 89.351807, 26.017298 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.439453, 25.199971 ], [ 90.439453, 22.146708 ], [ 90.269165, 21.841105 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.763794, 21.943046 ], [ 89.697876, 21.861499 ], [ 89.483643, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.027710, 22.060187 ], [ 88.873901, 22.882501 ], [ 88.527832, 23.634460 ], [ 88.698120, 24.236947 ], [ 88.082886, 24.502145 ], [ 88.302612, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.450902 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.445984 ], [ 89.357300, 26.012361 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.873901, 22.877440 ], [ 88.527832, 23.629427 ], [ 88.698120, 24.231938 ], [ 88.082886, 24.502145 ], [ 88.308105, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.445984 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.115845, 27.877928 ], [ 86.951294, 27.974998 ], [ 85.819702, 28.207609 ], [ 85.006714, 28.647210 ], [ 84.232178, 28.844674 ], [ 83.897095, 29.324720 ], [ 83.336792, 29.468297 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.106567, 30.187870 ], [ 79.716797, 30.883369 ], [ 78.733521, 31.517679 ], [ 78.453369, 32.620870 ], [ 79.172974, 32.486597 ], [ 79.205933, 32.994843 ], [ 78.810425, 33.509339 ], [ 78.909302, 34.325292 ], [ 77.832642, 35.496456 ], [ 76.190186, 35.902400 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.976196, 37.422526 ], [ 74.827881, 37.991834 ], [ 74.860840, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.509490 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.817139, 39.897094 ], [ 74.772949, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.294067, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.164033 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.215580 ], [ 90.000000, 50.018329 ], [ 88.802490, 49.471694 ], [ 87.747803, 49.300054 ], [ 87.357788, 49.217597 ], [ 86.824951, 49.827353 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.413452, 50.313900 ], [ 83.930054, 50.892639 ], [ 83.380737, 51.072468 ], [ 81.941528, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.406257 ], [ 76.519775, 54.178512 ], [ 76.887817, 54.492377 ], [ 74.382935, 53.550099 ], [ 73.421631, 53.491314 ], [ 73.504028, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.174927, 54.133478 ], [ 70.861816, 55.172594 ], [ 69.065552, 55.385352 ], [ 68.164673, 54.971308 ], [ 67.500000, 54.876607 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.810183 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.174927, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.504028, 54.036812 ], [ 73.421631, 53.491314 ], [ 74.382935, 53.550099 ], [ 76.887817, 54.492377 ], [ 76.519775, 54.178512 ], [ 77.799683, 53.406257 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.941528, 50.812877 ], [ 83.380737, 51.072468 ], [ 83.930054, 50.892639 ], [ 84.413452, 50.313900 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.827353 ], [ 87.357788, 49.217597 ], [ 86.594238, 48.549342 ], [ 85.764771, 48.458352 ], [ 85.715332, 47.454094 ], [ 85.160522, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.500453 ], [ 79.140015, 42.859860 ], [ 77.656860, 42.964463 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.879990 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.847779 ], [ 71.185913, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.383911, 42.081917 ], [ 69.065552, 41.385052 ], [ 68.812866, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.876607 ], [ 68.164673, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.036812 ], [ 73.427124, 53.491314 ], [ 74.382935, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.178512 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.380737, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.539551, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.357788, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.454094 ], [ 85.166016, 47.002734 ], [ 83.182983, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.140015, 42.855833 ], [ 77.656860, 42.960443 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.092961 ], [ 73.487549, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.960693, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.153842 ], [ 67.060547, 41.162114 ], [ 67.060547, 54.810183 ], [ 67.500000, 54.873446 ], [ 68.170166, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.416870, 41.520917 ], [ 71.152954, 41.145570 ], [ 71.867065, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.652588, 40.647304 ], [ 70.521240, 40.647304 ], [ 70.664062, 40.963308 ], [ 69.329224, 40.730608 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.812866, 40.979898 ], [ 69.065552, 41.385052 ], [ 70.383911, 42.081917 ], [ 70.960693, 42.269179 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Uzbekistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.265114 ], [ 71.257324, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.658081, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.285278, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.162114 ], [ 67.500000, 41.153842 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.265114 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.635376, 42.879990 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.964463 ], [ 79.140015, 42.859860 ], [ 79.639893, 42.500453 ], [ 80.255127, 42.350425 ], [ 80.117798, 42.126747 ], [ 78.541260, 41.582580 ], [ 78.184204, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.652588, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.867065, 41.393294 ], [ 71.152954, 41.145570 ], [ 70.416870, 41.520917 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.185913, 42.706660 ], [ 71.839600, 42.847779 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kyrgyzstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.849365, 40.979898 ], [ 76.651611, 40.647304 ], [ 72.658081, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.521240, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.526733, 40.647304 ], [ 69.285278, 40.647304 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.215580 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.747803, 49.300054 ], [ 88.802490, 49.471694 ], [ 90.000000, 50.018329 ], [ 90.439453, 50.215580 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.208549 ], [ 90.439453, 47.513491 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.753296, 49.296472 ], [ 88.807983, 49.471694 ], [ 90.000000, 50.011269 ], [ 90.439453, 50.208549 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.300054 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.184204, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.126747 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.177490, 47.331377 ], [ 85.160522, 47.002734 ], [ 85.715332, 47.454094 ], [ 85.764771, 48.458352 ], [ 86.594238, 48.549342 ], [ 87.357788, 49.217597 ], [ 87.747803, 49.300054 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.513491 ], [ 90.439453, 40.647304 ], [ 76.651611, 40.647304 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.768188, 66.687784 ], [ 71.531982, 66.513260 ], [ 71.279297, 66.322068 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.476562, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 66.687784 ], [ 90.439453, 55.528631 ], [ 67.060547, 55.528631 ], [ 67.060547, 66.687784 ], [ 71.773682, 66.687784 ], [ 71.537476, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.171609 ], [ 72.795410, 66.513260 ], [ 72.822876, 66.532956 ], [ 73.482056, 66.687784 ], [ 90.439453, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.845093, 71.409675 ], [ 72.465820, 71.091865 ], [ 72.789917, 70.392606 ], [ 72.564697, 69.021414 ], [ 73.663330, 68.409289 ], [ 73.234863, 67.740678 ], [ 71.531982, 66.513260 ], [ 71.295776, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.419393 ], [ 68.510742, 68.093808 ], [ 69.175415, 68.616534 ], [ 68.159180, 69.144965 ], [ 68.131714, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.445985 ], [ 67.060547, 69.647536 ], [ 67.258301, 69.930300 ], [ 67.060547, 70.220452 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.191895, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 72.597656, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.532956 ], [ 73.916016, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.047607, 67.761477 ], [ 74.465332, 68.330320 ], [ 74.932251, 68.989925 ], [ 73.839111, 69.072488 ], [ 73.597412, 69.628422 ], [ 74.399414, 70.632662 ], [ 73.097534, 71.448163 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.679321, 72.300761 ], [ 75.283813, 71.335983 ], [ 76.354980, 71.154069 ], [ 75.899048, 71.875036 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.496582, 71.751593 ], [ 80.606689, 72.584117 ], [ 80.507812, 73.649452 ], [ 82.249146, 73.850814 ], [ 84.655151, 73.806447 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.597656, 66.337505 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.938965, 73.040226 ], [ 72.586670, 72.777081 ], [ 72.795410, 72.220424 ], [ 71.850586, 71.409675 ], [ 72.471313, 71.090085 ], [ 72.789917, 70.390763 ], [ 72.564697, 69.021414 ], [ 73.668823, 68.407268 ], [ 73.240356, 67.740678 ], [ 71.537476, 66.513260 ], [ 71.301270, 66.337505 ], [ 67.060547, 66.337505 ], [ 67.060547, 68.558376 ], [ 67.500000, 68.417373 ], [ 68.510742, 68.091759 ], [ 69.180908, 68.616534 ], [ 68.164673, 69.144965 ], [ 68.137207, 69.357086 ], [ 67.500000, 69.409311 ], [ 67.060547, 69.444056 ], [ 67.060547, 69.645625 ], [ 67.258301, 69.928415 ], [ 67.060547, 70.222311 ], [ 67.060547, 71.214306 ], [ 67.500000, 71.432427 ], [ 68.538208, 71.934751 ], [ 69.197388, 72.843642 ], [ 69.938965, 73.040226 ] ] ], [ [ [ 72.603149, 66.337505 ], [ 72.795410, 66.513260 ], [ 72.822876, 66.532956 ], [ 73.921509, 66.789745 ], [ 74.185181, 67.284773 ], [ 75.053101, 67.761477 ], [ 74.470825, 68.328291 ], [ 74.937744, 68.989925 ], [ 73.844604, 69.070526 ], [ 73.602905, 69.628422 ], [ 74.399414, 70.630841 ], [ 73.103027, 71.446415 ], [ 74.888306, 72.121192 ], [ 74.657593, 72.832295 ], [ 75.157471, 72.854981 ], [ 75.684814, 72.300761 ], [ 75.289307, 71.335983 ], [ 76.360474, 71.152294 ], [ 75.904541, 71.873327 ], [ 77.574463, 72.267330 ], [ 79.650879, 72.320791 ], [ 81.502075, 71.749873 ], [ 80.612183, 72.582473 ], [ 80.513306, 73.647906 ], [ 82.249146, 73.849286 ], [ 84.655151, 73.806447 ], [ 86.824951, 73.936155 ], [ 86.693115, 74.019543 ], [ 86.506348, 74.140084 ], [ 90.439453, 74.140084 ], [ 90.439453, 66.337505 ], [ 72.603149, 66.337505 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.651792 ], [ 90.439453, 73.898111 ], [ 86.160278, 73.898111 ], [ 86.819458, 73.937674 ], [ 86.693115, 74.019543 ], [ 86.006470, 74.461134 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.145003 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 90.439453, 75.651792 ] ] ], [ [ [ 68.153687, 76.940488 ], [ 68.851318, 76.544967 ], [ 68.175659, 76.234752 ], [ 67.500000, 76.141643 ], [ 67.060547, 76.080989 ], [ 67.060547, 76.868300 ], [ 67.500000, 76.898219 ], [ 68.153687, 76.940488 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.439453, 75.650431 ], [ 90.439453, 73.898111 ], [ 86.182251, 73.898111 ], [ 86.824951, 73.936155 ], [ 86.693115, 74.019543 ], [ 86.011963, 74.459663 ], [ 87.165527, 75.116811 ], [ 88.313599, 75.143595 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.639536 ], [ 90.439453, 75.650431 ] ] ], [ [ [ 68.159180, 76.939247 ], [ 68.851318, 76.544967 ], [ 68.181152, 76.233445 ], [ 67.500000, 76.140327 ], [ 67.060547, 76.079668 ], [ 67.060547, 76.867052 ], [ 67.500000, 76.895728 ], [ 68.159180, 76.939247 ] ] ] ] } } ] } ] } , @@ -3640,71 +3628,71 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.148632 ], [ 90.000000, -67.174217 ], [ 90.626221, -67.227433 ], [ 91.587524, -67.110204 ], [ 92.603760, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.110204 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.384262 ], [ 96.679688, -67.246561 ], [ 97.756348, -67.246561 ], [ 98.679199, -67.110204 ], [ 99.717407, -67.246561 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.497192, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.177368, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.078003, -66.953727 ], [ 109.154663, -66.835165 ], [ 110.231323, -66.698651 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.253052, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, -66.337505 ], [ 112.939453, -74.140084 ], [ 89.560547, -74.140084 ], [ 89.560547, -67.123020 ], [ 89.670410, -67.150765 ], [ 90.000000, -67.176348 ], [ 90.631714, -67.229559 ], [ 91.587524, -67.112340 ], [ 92.609253, -67.189129 ], [ 93.548584, -67.208289 ], [ 94.174805, -67.112340 ], [ 95.015259, -67.169955 ], [ 95.778809, -67.386375 ], [ 96.679688, -67.248686 ], [ 97.761841, -67.248686 ], [ 98.679199, -67.112340 ], [ 99.717407, -67.248686 ], [ 100.382080, -66.914988 ], [ 100.892944, -66.583217 ], [ 101.508179, -66.337505 ], [ 104.930420, -66.337505 ], [ 105.292969, -66.513260 ], [ 106.182861, -66.934365 ], [ 107.160645, -66.953727 ], [ 108.083496, -66.953727 ], [ 109.160156, -66.837326 ], [ 110.236816, -66.700824 ], [ 110.797119, -66.513260 ], [ 111.060791, -66.425537 ], [ 111.264038, -66.337505 ], [ 112.939453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.474731, -65.698997 ], [ 104.238281, -65.973325 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.581034 ], [ 101.057739, -66.513260 ], [ 101.574097, -66.306621 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 110.258789, -66.687784 ], [ 110.786133, -66.513260 ], [ 111.055298, -66.423340 ], [ 111.741943, -66.129409 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 112.939453, -66.067090 ], [ 112.939453, -66.687784 ], [ 110.258789, -66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.832031, -65.563005 ], [ 103.480225, -65.701258 ], [ 104.243774, -65.975562 ], [ 104.908447, -66.326479 ], [ 105.292969, -66.513260 ], [ 105.655518, -66.687784 ], [ 100.728149, -66.687784 ], [ 100.892944, -66.583217 ], [ 101.579590, -66.308828 ], [ 102.832031, -65.563005 ] ] ], [ [ [ 110.275269, -66.687784 ], [ 110.797119, -66.513260 ], [ 111.060791, -66.425537 ], [ 111.741943, -66.131631 ], [ 112.500000, -66.102719 ], [ 112.862549, -66.091591 ], [ 112.939453, -66.069318 ], [ 112.939453, -66.687784 ], [ 110.275269, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.259521, -5.954827 ], [ 108.067017, -6.342597 ], [ 108.484497, -6.419025 ], [ 108.621826, -6.773716 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.939453, -7.520427 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.516724, -8.298470 ], [ 110.582886, -8.119053 ], [ 109.423828, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.351571 ], [ 106.276245, -6.920974 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.282471, 0.439449 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.708600 ], [ 104.007568, -1.054628 ], [ 104.364624, -1.082089 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.617065, -2.427252 ], [ 106.105957, -3.058239 ], [ 105.853271, -4.302591 ], [ 105.814819, -5.851010 ], [ 104.705200, -5.872868 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.398315, -2.794911 ], [ 100.898438, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.168091, 0.439449 ], [ 103.282471, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 111.697998, -2.992413 ], [ 111.044312, -3.047268 ], [ 110.220337, -2.932069 ], [ 110.066528, -1.592812 ], [ 109.566650, -1.312751 ], [ 109.088745, -0.455928 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.051025, -5.894725 ], [ 107.265015, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.484497, -6.424484 ], [ 108.621826, -6.779171 ], [ 110.538940, -6.877347 ], [ 110.758667, -6.462693 ], [ 112.500000, -6.915521 ], [ 112.615356, -6.948239 ], [ 112.939453, -7.525873 ], [ 112.939453, -8.358258 ], [ 112.500000, -8.369127 ], [ 111.522217, -8.303906 ], [ 110.588379, -8.124491 ], [ 109.429321, -7.738208 ], [ 108.693237, -7.640220 ], [ 108.275757, -7.765423 ], [ 106.452026, -7.357019 ], [ 106.281738, -6.926427 ], [ 105.364380, -6.850078 ], [ 106.051025, -5.894725 ] ] ], [ [ [ 103.276978, 0.439449 ], [ 103.837280, 0.104370 ], [ 103.782349, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.013062, -1.060120 ], [ 104.370117, -1.087581 ], [ 104.540405, -1.784990 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.858765, -4.308069 ], [ 105.820312, -5.851010 ], [ 104.710693, -5.872868 ], [ 103.870239, -5.036227 ], [ 102.584839, -4.220421 ], [ 102.156372, -3.612107 ], [ 101.398315, -2.800398 ], [ 100.903931, -2.048514 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.181274 ], [ 99.173584, 0.439449 ], [ 103.276978, 0.439449 ] ] ], [ [ [ 112.939453, 0.439449 ], [ 112.939453, -3.211818 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.480523 ], [ 111.703491, -2.992413 ], [ 111.049805, -3.047268 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.572144, -1.312751 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 108.951416, 0.439449 ], [ 112.939453, 0.439449 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.565308, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.142090, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.675171, 22.039822 ], [ 92.570801, 22.350076 ], [ 93.142090, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.565308, 22.350076 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.647705, 21.325198 ], [ 92.301636, 21.478629 ], [ 92.367554, 20.673905 ], [ 92.081909, 21.197216 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.713867, 22.350076 ], [ 92.565308, 22.350076 ] ] ], [ [ [ 90.554810, 22.350076 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 22.350076 ], [ 90.554810, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.570801, 22.350076 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.301636, 21.473518 ], [ 92.367554, 20.668766 ], [ 92.081909, 21.192094 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.713867, 22.350076 ], [ 92.570801, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.329590, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.081729 ], [ 111.005859, 19.699486 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.682675 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.368159 ], [ 109.116211, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.953236 ], [ 112.500000, 21.795208 ], [ 111.840820, 21.555284 ], [ 110.780640, 21.401934 ], [ 110.440063, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.627075, 21.012727 ], [ 109.863281, 21.396819 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.594849, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.799316, 21.176729 ], [ 101.266479, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.694314 ], [ 110.571899, 19.254108 ], [ 110.341187, 18.677471 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.505657 ], [ 108.627319, 19.368159 ], [ 109.121704, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 111.846313, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.445557, 20.339476 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.396819 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.885986, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.600342, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.755371, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.804810, 21.176729 ], [ 101.271973, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.580078, 21.943046 ], [ 99.239502, 22.116177 ], [ 99.316406, 22.350076 ], [ 101.755371, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.112915, 20.421865 ], [ 99.541626, 20.190035 ], [ 98.959351, 19.756364 ], [ 98.250732, 19.709829 ], [ 97.794800, 18.630630 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.841348 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.832746 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.936388 ], [ 98.453979, 10.676803 ], [ 98.761597, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.127629 ], [ 98.102417, 13.640649 ], [ 97.772827, 14.838612 ], [ 97.597046, 16.103876 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.430816 ], [ 95.366821, 15.718239 ], [ 94.806519, 15.808110 ], [ 94.185791, 16.040534 ], [ 94.531860, 17.282464 ], [ 94.323120, 18.213698 ], [ 93.537598, 19.368159 ], [ 93.658447, 19.730513 ], [ 93.076172, 19.859727 ], [ 92.367554, 20.673905 ], [ 92.301636, 21.478629 ], [ 92.647705, 21.325198 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.316406, 22.350076 ], [ 99.239502, 22.116177 ], [ 99.580078, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.541626, 20.184879 ], [ 98.959351, 19.751194 ], [ 98.256226, 19.709829 ], [ 97.800293, 18.625425 ], [ 97.377319, 18.443136 ], [ 97.860718, 17.565484 ], [ 98.492432, 16.836090 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.266680 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.930977 ], [ 98.459473, 10.676803 ], [ 98.767090, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.366821, 15.712951 ], [ 94.806519, 15.802825 ], [ 94.191284, 16.040534 ], [ 94.531860, 17.277219 ], [ 94.323120, 18.213698 ], [ 93.543091, 19.368159 ], [ 93.663940, 19.725342 ], [ 93.076172, 19.854561 ], [ 92.367554, 20.668766 ], [ 92.301636, 21.473518 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.142090, 22.350076 ], [ 99.316406, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.249756, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 103.200073, 20.771523 ], [ 104.430542, 20.761250 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.627066 ], [ 103.892212, 19.269665 ], [ 105.089722, 18.667063 ], [ 106.550903, 16.604610 ], [ 107.308960, 15.913791 ], [ 107.561646, 15.204687 ], [ 107.380371, 14.205814 ], [ 106.495972, 14.572951 ], [ 106.040039, 13.886079 ], [ 105.216064, 14.275030 ], [ 105.540161, 14.727073 ], [ 105.584106, 15.575419 ], [ 104.776611, 16.446622 ], [ 104.716187, 17.429270 ], [ 103.952637, 18.245003 ], [ 103.200073, 18.312811 ], [ 102.996826, 17.963058 ], [ 102.409058, 17.936929 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.411867 ], [ 101.277466, 19.466592 ], [ 100.601807, 19.513198 ], [ 100.546875, 20.112682 ], [ 100.112915, 20.421865 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.266479, 21.202337 ], [ 101.799316, 21.176729 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.249756, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.551880, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.755371, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.112915, 20.421865 ], [ 100.546875, 20.112682 ], [ 100.601807, 19.513198 ], [ 101.277466, 19.466592 ], [ 101.035767, 18.411867 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.409058, 17.936929 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.312811 ], [ 103.952637, 18.245003 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.446622 ], [ 105.584106, 15.575419 ], [ 105.540161, 14.727073 ], [ 105.216064, 14.275030 ], [ 104.276733, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.343140, 13.394963 ], [ 102.584839, 12.189704 ], [ 101.683960, 12.651058 ], [ 100.827026, 12.629618 ], [ 100.975342, 13.416337 ], [ 100.096436, 13.410994 ], [ 100.014038, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.217529, 9.243093 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.298470 ], [ 100.458984, 7.433284 ], [ 101.013794, 6.860985 ], [ 101.618042, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.255737, 6.648239 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.514160, 7.346123 ], [ 98.986816, 7.912353 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.146362, 8.352823 ], [ 98.256226, 8.977323 ], [ 98.552856, 9.936388 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.206543, 13.272026 ], [ 99.096680, 13.832746 ], [ 98.426514, 14.626109 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.898926, 16.183024 ], [ 98.492432, 16.841348 ], [ 97.855225, 17.570721 ], [ 97.371826, 18.448347 ], [ 97.794800, 18.630630 ], [ 98.250732, 19.709829 ], [ 98.959351, 19.756364 ], [ 99.541626, 20.190035 ], [ 100.112915, 20.421865 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Thailand" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.594849, 22.350076 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 106.710205, 20.699600 ], [ 105.880737, 19.756364 ], [ 105.661011, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.264771, 16.082764 ], [ 108.874512, 15.278886 ], [ 109.330444, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.011297 ], [ 107.215576, 10.368958 ], [ 106.402588, 9.535749 ], [ 105.155640, 8.602747 ], [ 104.793091, 9.243093 ], [ 105.073242, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.892648 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.571525 ], [ 107.490234, 12.340002 ], [ 107.611084, 13.539201 ], [ 107.380371, 14.205814 ], [ 107.561646, 15.204687 ], [ 107.308960, 15.913791 ], [ 106.550903, 16.604610 ], [ 105.089722, 18.667063 ], [ 103.892212, 19.269665 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.890723 ], [ 104.430542, 20.761250 ], [ 103.200073, 20.771523 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.249756, 22.350076 ], [ 106.594849, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.600342, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.885986, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.551880, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.600342, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.205814 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.571525 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.892648 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.156845 ], [ 102.584839, 12.189704 ], [ 102.343140, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.276733, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.886079 ], [ 106.495972, 14.572951 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.282227, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.102121 ], [ 112.939453, 1.477497 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.154175, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.824829, 1.340210 ], [ 109.660034, 2.010086 ], [ 110.396118, 1.664195 ], [ 111.165161, 1.850874 ], [ 111.368408, 2.701635 ], [ 111.796875, 2.888180 ], [ 112.939453, 3.102121 ] ] ], [ [ [ 100.255737, 6.648239 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.958374, 5.528511 ], [ 103.375854, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.425293, 3.387307 ], [ 103.502197, 2.794911 ], [ 103.853760, 2.520549 ], [ 104.243774, 1.631249 ], [ 104.227295, 1.296276 ], [ 103.518677, 1.230374 ], [ 102.568359, 1.971657 ], [ 101.387329, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.552368, 4.768047 ], [ 100.195312, 5.315236 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.255737, 6.648239 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.096636 ], [ 112.939453, 1.477497 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.368408, 2.696148 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.096636 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.227295, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.557861, 4.768047 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.660034, 2.010086 ], [ 109.824829, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.154175, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.083252, -0.439449 ], [ 109.011841, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.345701 ], [ 109.660034, 2.010086 ] ] ], [ [ [ 95.289917, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.481689, 5.249598 ], [ 98.366089, 4.269724 ], [ 99.140625, 3.595660 ], [ 99.689941, 3.178910 ], [ 100.640259, 2.103409 ], [ 101.656494, 2.086941 ], [ 102.496948, 1.400617 ], [ 103.073730, 0.565787 ], [ 103.837280, 0.109863 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.453735, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.964844, 1.043643 ], [ 98.596802, 1.828913 ], [ 97.695923, 2.454693 ], [ 97.174072, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.377808, 4.976033 ], [ 95.289917, 5.484768 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.774513 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.906334 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 112.939453, 1.477497 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.066772, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.441022 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.656494, 2.081451 ], [ 102.496948, 1.400617 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.782349, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.915161, -0.439449 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.454693 ], [ 97.179565, 3.310534 ], [ 96.421509, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.113892, 29.453948 ], [ 96.586304, 28.835050 ], [ 96.245728, 28.415560 ], [ 97.322388, 28.265682 ], [ 97.399292, 27.882784 ], [ 97.047729, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.269279 ], [ 95.119629, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.597778, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.103394, 23.855698 ], [ 93.323364, 24.081574 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.466675, 24.076559 ], [ 91.911621, 24.131715 ], [ 92.373047, 24.981079 ], [ 91.796265, 25.150257 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.264568 ], [ 89.917603, 25.274504 ], [ 89.829712, 25.967922 ], [ 89.560547, 25.997550 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.368042, 26.877981 ], [ 91.213989, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.098389, 27.454665 ], [ 91.691895, 27.775912 ], [ 92.499390, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.281608 ], [ 95.399780, 29.032158 ], [ 96.113892, 29.453948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.453948 ], [ 96.586304, 28.830238 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.260844 ], [ 97.404785, 27.882784 ], [ 97.053223, 27.698120 ], [ 97.135620, 27.083582 ], [ 96.421509, 27.264396 ], [ 95.125122, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.603271, 25.160201 ], [ 94.553833, 24.676970 ], [ 94.108887, 23.850674 ], [ 93.323364, 24.076559 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.675171, 22.039822 ], [ 92.147827, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.708374, 22.983681 ], [ 91.159058, 23.503552 ], [ 91.466675, 24.071544 ], [ 91.917114, 24.131715 ], [ 92.378540, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.873413, 25.130366 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.560547, 25.992612 ], [ 89.560547, 26.799558 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.789751 ], [ 90.373535, 26.877981 ], [ 91.219482, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.103882, 27.454665 ], [ 91.697388, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.276816 ], [ 95.405273, 29.032158 ], [ 96.119385, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.299544 ], [ 90.725098, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.691895, 27.775912 ], [ 92.098389, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.213989, 26.809364 ], [ 90.368042, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.086520 ], [ 90.000000, 28.294707 ], [ 90.010986, 28.299544 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bhutan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.730591, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.219482, 26.809364 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.789751 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.799558 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.997550 ], [ 89.829712, 25.967922 ], [ 89.917603, 25.274504 ], [ 90.000000, 25.264568 ], [ 90.867920, 25.135339 ], [ 91.796265, 25.150257 ], [ 92.373047, 24.981079 ], [ 91.911621, 24.131715 ], [ 91.466675, 24.076559 ], [ 91.153564, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.629427 ], [ 92.669678, 22.044913 ], [ 92.664185, 21.943046 ], [ 92.653198, 21.534847 ], [ 92.037964, 21.534847 ], [ 92.021484, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.187405 ], [ 91.411743, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.582275, 22.395793 ], [ 90.324097, 21.943046 ], [ 90.269165, 21.841105 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.697876, 21.861499 ], [ 89.560547, 21.917567 ], [ 89.560547, 25.997550 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.992612 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.873413, 25.130366 ], [ 91.801758, 25.145285 ], [ 92.378540, 24.976099 ], [ 91.917114, 24.131715 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.708374, 22.983681 ], [ 91.867676, 23.624395 ], [ 92.147827, 23.629427 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.658691, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.587769, 22.390714 ], [ 90.329590, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.992612 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.953236 ], [ 111.840820, 21.555284 ], [ 111.697998, 21.534847 ], [ 109.286499, 21.534847 ], [ 108.517456, 21.718680 ], [ 108.045044, 21.555284 ], [ 107.039795, 21.815608 ], [ 106.885986, 21.943046 ], [ 106.561890, 22.223005 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.474487, 22.821757 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.167358, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.694946, 21.943046 ], [ 101.749878, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.145630, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.121266 ], [ 99.530640, 22.953335 ], [ 98.893433, 23.145411 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.900905 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.923467 ], [ 98.706665, 26.745610 ], [ 98.679199, 27.513143 ], [ 98.245239, 27.751608 ], [ 97.910156, 28.338230 ], [ 97.322388, 28.265682 ], [ 96.245728, 28.415560 ], [ 96.586304, 28.835050 ], [ 96.113892, 29.453948 ], [ 95.399780, 29.032158 ], [ 94.564819, 29.281608 ], [ 93.411255, 28.642389 ], [ 92.499390, 27.897349 ], [ 91.691895, 27.775912 ], [ 91.257935, 28.042895 ], [ 90.725098, 28.067133 ], [ 90.010986, 28.299544 ], [ 90.000000, 28.294707 ], [ 89.560547, 28.086520 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.943046 ], [ 111.846313, 21.550175 ], [ 111.736450, 21.534847 ], [ 109.275513, 21.534847 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.885986, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.726685, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.331421, 23.352343 ], [ 104.474487, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.172852, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.755371, 21.534847 ], [ 101.167603, 21.534847 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.580078, 21.943046 ], [ 99.239502, 22.116177 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.662720, 24.061512 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.673706, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.684692, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.910156, 28.338230 ], [ 97.327881, 28.260844 ], [ 96.251221, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.119385, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.411255, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.042895 ], [ 90.730591, 28.067133 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.560547, 28.081674 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.751608 ], [ 98.679199, 27.513143 ], [ 98.706665, 26.745610 ], [ 98.668213, 25.923467 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.900905 ], [ 98.657227, 24.066528 ], [ 98.893433, 23.145411 ], [ 99.530640, 22.953335 ], [ 99.239502, 22.121266 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.145630, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.653198, 21.534847 ], [ 92.664185, 21.943046 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.081574 ], [ 94.103394, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.597778, 25.165173 ], [ 95.152588, 26.002487 ], [ 95.119629, 26.573790 ], [ 96.416016, 27.269279 ], [ 97.130127, 27.088473 ], [ 97.047729, 27.702984 ], [ 97.399292, 27.882784 ], [ 97.322388, 28.265682 ], [ 97.910156, 28.338230 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.580078, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.167603, 21.534847 ], [ 92.658691, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.076559 ], [ 94.108887, 23.850674 ], [ 94.553833, 24.676970 ], [ 94.603271, 25.160201 ], [ 95.152588, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.421509, 27.264396 ], [ 97.135620, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.404785, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.167358, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.749634, 21.677848 ], [ 102.815552, 21.534847 ], [ 101.749878, 21.534847 ], [ 101.694946, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.167358, 22.466878 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.466878 ], [ 102.551880, 21.943046 ], [ 102.755127, 21.672744 ], [ 102.821045, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.172852, 22.466878 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.721191, 22.796439 ], [ 106.561890, 22.223005 ], [ 106.885986, 21.943046 ], [ 107.039795, 21.815608 ], [ 108.045044, 21.555284 ], [ 108.012085, 21.534847 ], [ 102.815552, 21.534847 ], [ 102.749634, 21.677848 ], [ 102.551880, 21.943046 ], [ 102.167358, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.821757 ], [ 105.325928, 23.352343 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vietnam" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.331421, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.726685, 22.796439 ], [ 106.567383, 22.217920 ], [ 106.885986, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 108.023071, 21.534847 ], [ 102.821045, 21.534847 ], [ 102.755127, 21.672744 ], [ 102.551880, 21.943046 ], [ 102.172852, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.816694 ], [ 105.331421, 23.352343 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.567978 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 111.577148, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.473511, 49.285723 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.617310, 50.278809 ], [ 103.672485, 50.092393 ], [ 102.255249, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.518998 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.049112 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.256470, 49.728030 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.230225, 50.802463 ], [ 90.708618, 50.334943 ], [ 90.000000, 50.018329 ], [ 89.560547, 49.820265 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.564415 ], [ 112.895508, 49.543034 ], [ 112.500000, 49.496675 ], [ 111.582642, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.292889 ], [ 108.473511, 49.282140 ], [ 107.869263, 49.795450 ], [ 106.891479, 50.275299 ], [ 105.886230, 50.405017 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.088869 ], [ 102.255249, 50.509933 ], [ 102.062988, 51.258477 ], [ 100.887451, 51.515580 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.045734 ], [ 97.827759, 51.010299 ], [ 98.234253, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.975955 ], [ 94.817505, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.235718, 50.802463 ], [ 90.714111, 50.331436 ], [ 89.560547, 49.813176 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.049112 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.518998 ], [ 102.062988, 51.261915 ], [ 102.255249, 50.513427 ], [ 103.672485, 50.092393 ], [ 104.617310, 50.278809 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.473511, 49.285723 ], [ 109.401855, 49.296472 ], [ 110.659790, 49.131408 ], [ 111.577148, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 112.939453, 49.567978 ], [ 112.939453, 44.914249 ], [ 112.500000, 45.003651 ], [ 111.868286, 45.104546 ], [ 111.346436, 44.461231 ], [ 111.665039, 44.075747 ], [ 111.824341, 43.743321 ], [ 111.126709, 43.409038 ], [ 110.407104, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.484251 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.518433, 41.910453 ], [ 103.309937, 41.910453 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.524748 ], [ 97.448730, 42.751046 ], [ 96.344604, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.245199 ], [ 94.685669, 44.355278 ], [ 93.477173, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.820265 ], [ 90.000000, 50.018329 ], [ 90.708618, 50.334943 ], [ 92.230225, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.256470, 49.728030 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.860474, 52.049112 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.045734 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.515580 ], [ 102.062988, 51.258477 ], [ 102.255249, 50.509933 ], [ 103.677979, 50.088869 ], [ 104.622803, 50.275299 ], [ 105.886230, 50.405017 ], [ 106.891479, 50.275299 ], [ 107.869263, 49.795450 ], [ 108.473511, 49.282140 ], [ 109.401855, 49.292889 ], [ 110.659790, 49.131408 ], [ 111.582642, 49.378797 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.543034 ], [ 112.939453, 49.564415 ], [ 112.939453, 44.914249 ], [ 112.500000, 44.999767 ], [ 111.873779, 45.100669 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.743321 ], [ 111.132202, 43.405047 ], [ 110.412598, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.906365 ], [ 103.309937, 41.906365 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.662241 ], [ 99.514160, 42.524748 ], [ 97.454224, 42.747012 ], [ 96.350098, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.241264 ], [ 94.691162, 44.351350 ], [ 93.482666, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.587769, 45.721522 ], [ 90.972290, 46.886477 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.772560 ], [ 89.560547, 47.886881 ], [ 89.560547, 49.813176 ], [ 90.714111, 50.331436 ], [ 92.235718, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.817505, 50.014799 ], [ 95.811768, 49.975955 ], [ 97.261963, 49.724479 ], [ 98.234253, 50.422519 ], [ 97.827759, 51.010299 ], [ 98.860474, 52.045734 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.477173, 44.976457 ], [ 94.685669, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.762329, 43.321181 ], [ 96.344604, 42.726839 ], [ 97.448730, 42.751046 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.910453 ], [ 104.518433, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.484251 ], [ 109.242554, 42.520700 ], [ 110.407104, 42.871938 ], [ 111.126709, 43.409038 ], [ 111.824341, 43.743321 ], [ 111.665039, 44.075747 ], [ 111.346436, 44.461231 ], [ 111.868286, 45.104546 ], [ 112.500000, 45.003651 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.886881 ], [ 90.000000, 47.772560 ], [ 90.280151, 47.694974 ], [ 90.972290, 46.886477 ], [ 90.587769, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.482666, 44.976457 ], [ 94.691162, 44.351350 ], [ 95.306396, 44.241264 ], [ 95.762329, 43.321181 ], [ 96.350098, 42.726839 ], [ 97.454224, 42.747012 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.662241 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.906365 ], [ 104.523926, 41.906365 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.480200 ], [ 109.242554, 42.520700 ], [ 110.412598, 42.871938 ], [ 111.132202, 43.405047 ], [ 111.829834, 43.743321 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.100669 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.886881 ] ] ] } } ] } ] } , @@ -3716,19 +3704,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.753418, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.961974 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.753418, 74.140084 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.758911, 74.140084 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 112.120972, 73.788054 ], [ 112.500000, 73.869139 ], [ 112.939453, 73.960457 ], [ 112.939453, 66.337505 ], [ 89.560547, 66.337505 ], [ 89.560547, 74.140084 ], [ 109.758911, 74.140084 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.348145, 77.698723 ], [ 106.062012, 77.373904 ], [ 104.699707, 77.127825 ], [ 106.968384, 76.975198 ], [ 107.237549, 76.480910 ], [ 108.149414, 76.724008 ], [ 111.071777, 76.710125 ], [ 112.500000, 76.404937 ], [ 112.939453, 76.309057 ], [ 112.939453, 75.077254 ], [ 112.774658, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.396362, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.465484 ], [ 90.000000, 75.576730 ], [ 90.258179, 75.640898 ], [ 92.900391, 75.773797 ], [ 93.229980, 76.047916 ], [ 95.855713, 76.140327 ], [ 96.674194, 75.916189 ], [ 98.920898, 76.447482 ], [ 100.755615, 76.430738 ], [ 101.030273, 76.862059 ], [ 101.986084, 77.288368 ], [ 104.348145, 77.698723 ] ] ], [ [ [ 112.637329, 73.898111 ], [ 112.939453, 73.961974 ], [ 112.939453, 73.898111 ], [ 112.637329, 73.898111 ] ] ], [ [ [ 102.963867, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.714166 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 101.398315, 79.253586 ], [ 102.963867, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.881707 ], [ 97.756348, 78.757087 ], [ 94.971313, 79.045747 ], [ 94.427490, 79.171335 ], [ 94.070435, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.353638, 77.697553 ], [ 106.067505, 77.373904 ], [ 104.705200, 77.127825 ], [ 106.968384, 76.973960 ], [ 107.237549, 76.479626 ], [ 108.154907, 76.722747 ], [ 111.077271, 76.710125 ], [ 112.500000, 76.403646 ], [ 112.939453, 76.307757 ], [ 112.939453, 75.075840 ], [ 112.780151, 75.031921 ], [ 112.500000, 74.975064 ], [ 110.148926, 74.477314 ], [ 109.401855, 74.180566 ], [ 110.637817, 74.040702 ], [ 110.758667, 74.019543 ], [ 111.472778, 73.898111 ], [ 89.560547, 73.898111 ], [ 89.560547, 75.464105 ], [ 90.000000, 75.575362 ], [ 90.258179, 75.639536 ], [ 92.900391, 75.773797 ], [ 93.235474, 76.046592 ], [ 95.861206, 76.140327 ], [ 96.679688, 75.914852 ], [ 98.920898, 76.447482 ], [ 100.761108, 76.430738 ], [ 101.035767, 76.862059 ], [ 101.991577, 77.287159 ], [ 104.353638, 77.697553 ] ] ], [ [ [ 112.642822, 73.898111 ], [ 112.939453, 73.960457 ], [ 112.939453, 73.898111 ], [ 112.642822, 73.898111 ] ] ], [ [ [ 102.958374, 79.253586 ], [ 103.337402, 79.171335 ], [ 105.369873, 78.713091 ], [ 105.073242, 78.307182 ], [ 99.437256, 77.921418 ], [ 101.173096, 79.171335 ], [ 101.266479, 79.234107 ], [ 101.403809, 79.253586 ], [ 102.958374, 79.253586 ] ] ], [ [ [ 100.030518, 79.253586 ], [ 100.008545, 79.171335 ], [ 99.937134, 78.880647 ], [ 97.756348, 78.756016 ], [ 94.971313, 79.044703 ], [ 94.421997, 79.171335 ], [ 94.064941, 79.253586 ], [ 100.030518, 79.253586 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.347411 ], [ 102.837524, 79.282227 ], [ 103.337402, 79.171335 ], [ 103.710938, 79.088462 ], [ 101.046753, 79.088462 ], [ 101.167603, 79.171335 ], [ 101.260986, 79.234107 ], [ 102.084961, 79.347411 ] ] ], [ [ [ 95.938110, 81.250856 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.008545, 79.171335 ], [ 99.986572, 79.088462 ], [ 94.784546, 79.088462 ], [ 94.427490, 79.171335 ], [ 93.312378, 79.427332 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.342262 ], [ 93.773804, 81.024916 ], [ 95.938110, 81.250856 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.084961, 79.346396 ], [ 102.837524, 79.281206 ], [ 103.331909, 79.171335 ], [ 103.705444, 79.088462 ], [ 101.052246, 79.088462 ], [ 101.173096, 79.171335 ], [ 101.266479, 79.234107 ], [ 102.084961, 79.346396 ] ] ], [ [ [ 95.943604, 81.250020 ], [ 97.882690, 80.747376 ], [ 100.184326, 79.780190 ], [ 100.014038, 79.171335 ], [ 99.992065, 79.088462 ], [ 94.779053, 79.088462 ], [ 94.421997, 79.171335 ], [ 93.312378, 79.426325 ], [ 92.543335, 80.143984 ], [ 91.181030, 80.341340 ], [ 93.779297, 81.024916 ], [ 95.943604, 81.250020 ] ] ] ] } } ] } ] } , @@ -3752,71 +3740,71 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.598145, -66.698651 ], [ 116.696777, -66.659507 ], [ 117.383423, -66.914988 ], [ 118.575439, -67.169955 ], [ 119.827881, -67.267798 ], [ 120.866089, -67.189129 ], [ 121.651611, -66.874030 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 125.156250, -66.718199 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.798218, -66.757250 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.379517, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -66.337505 ], [ 135.439453, -74.140084 ], [ 112.060547, -74.140084 ], [ 112.060547, -66.337505 ], [ 114.812622, -66.337505 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.603638, -66.700824 ], [ 116.696777, -66.661684 ], [ 117.383423, -66.914988 ], [ 118.580933, -67.169955 ], [ 119.833374, -67.267798 ], [ 120.871582, -67.189129 ], [ 121.657104, -66.876188 ], [ 122.321777, -66.563562 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.484784 ], [ 123.403931, -66.513260 ], [ 124.123535, -66.622482 ], [ 125.161743, -66.720370 ], [ 126.101074, -66.563562 ], [ 127.001953, -66.563562 ], [ 127.880859, -66.661684 ], [ 128.803711, -66.759418 ], [ 129.704590, -66.583217 ], [ 130.182495, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.395996, -66.337505 ], [ 135.439453, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.874725 ], [ 114.384155, -66.071546 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.857056, -66.091591 ], [ 113.604126, -65.874725 ] ] ], [ [ [ 115.900269, -66.687784 ], [ 116.696777, -66.659507 ], [ 116.768188, -66.687784 ], [ 115.900269, -66.687784 ] ] ], [ [ [ 122.047119, -66.687784 ], [ 122.316284, -66.561377 ], [ 122.865601, -66.513260 ], [ 123.217163, -66.482592 ], [ 123.414917, -66.513260 ], [ 124.118042, -66.620302 ], [ 124.832153, -66.687784 ], [ 122.047119, -66.687784 ] ] ], [ [ [ 125.337524, -66.687784 ], [ 126.095581, -66.561377 ], [ 126.996460, -66.561377 ], [ 128.144531, -66.687784 ], [ 125.337524, -66.687784 ] ] ], [ [ [ 129.149780, -66.687784 ], [ 129.699097, -66.581034 ], [ 130.160522, -66.513260 ], [ 130.781250, -66.423340 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.851929, -66.286746 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.149780, -66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.604126, -65.876970 ], [ 114.389648, -66.073774 ], [ 114.895020, -66.385961 ], [ 115.175171, -66.513260 ], [ 115.570679, -66.687784 ], [ 112.060547, -66.687784 ], [ 112.060547, -66.118292 ], [ 112.500000, -66.102719 ], [ 112.862549, -66.091591 ], [ 113.604126, -65.876970 ] ] ], [ [ [ 115.966187, -66.687784 ], [ 116.696777, -66.661684 ], [ 116.762695, -66.687784 ], [ 115.966187, -66.687784 ] ] ], [ [ [ 122.052612, -66.687784 ], [ 122.321777, -66.563562 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.484784 ], [ 123.403931, -66.513260 ], [ 124.123535, -66.622482 ], [ 124.815674, -66.687784 ], [ 122.052612, -66.687784 ] ] ], [ [ [ 125.354004, -66.687784 ], [ 126.101074, -66.563562 ], [ 127.001953, -66.563562 ], [ 128.122559, -66.687784 ], [ 125.354004, -66.687784 ] ] ], [ [ [ 129.166260, -66.687784 ], [ 129.704590, -66.583217 ], [ 130.182495, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.797485, -66.385961 ], [ 132.934570, -66.385961 ], [ 133.857422, -66.288955 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.777998 ], [ 135.032959, -65.719335 ], [ 135.071411, -65.309535 ], [ 135.439453, -65.469667 ], [ 135.439453, -66.687784 ], [ 129.166260, -66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.082642, -32.847289 ], [ 134.269409, -32.616243 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.587894 ], [ 128.237915, -31.947501 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.084839, -32.727220 ], [ 124.216919, -32.957977 ], [ 124.024658, -33.481854 ], [ 123.656616, -33.888658 ], [ 122.810669, -33.911454 ], [ 122.178955, -34.002581 ], [ 121.294556, -33.820230 ], [ 120.574951, -33.929688 ], [ 119.888306, -33.975253 ], [ 119.295044, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.504028, -34.746126 ], [ 118.020630, -35.061477 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.559692, -34.384246 ], [ 115.021362, -34.193630 ], [ 115.043335, -33.619194 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.801392, -32.203505 ], [ 115.686035, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.026300 ], [ 115.037842, -29.458731 ], [ 114.636841, -28.806174 ], [ 114.614868, -28.512143 ], [ 114.169922, -28.115594 ], [ 114.043579, -27.332735 ], [ 113.472290, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.544309 ], [ 113.439331, -25.616763 ], [ 113.933716, -25.908644 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.681961 ], [ 113.389893, -24.382124 ], [ 113.499756, -23.805450 ], [ 113.703003, -23.558952 ], [ 113.840332, -23.059516 ], [ 113.735962, -22.471955 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.512557 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.350952, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, -21.534847 ], [ 135.439453, -34.597042 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.224903 ], [ 134.088135, -32.847289 ], [ 134.274902, -32.616243 ], [ 132.989502, -32.012734 ], [ 132.286377, -31.984783 ], [ 131.325073, -31.494262 ], [ 129.534302, -31.592574 ], [ 128.243408, -31.947501 ], [ 127.100830, -32.282489 ], [ 126.150513, -32.217449 ], [ 125.090332, -32.727220 ], [ 124.222412, -32.957977 ], [ 124.030151, -33.481854 ], [ 123.662109, -33.888658 ], [ 122.810669, -33.916013 ], [ 122.184448, -34.002581 ], [ 121.300049, -33.820230 ], [ 120.580444, -33.929688 ], [ 119.893799, -33.975253 ], [ 119.300537, -34.511083 ], [ 119.009399, -34.465806 ], [ 118.504028, -34.746126 ], [ 118.026123, -35.065973 ], [ 117.295532, -35.025498 ], [ 116.625366, -35.025498 ], [ 115.565186, -34.384246 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.623768 ], [ 115.543213, -33.486435 ], [ 115.713501, -33.261657 ], [ 115.680542, -32.902650 ], [ 115.801392, -32.203505 ], [ 115.691528, -31.611288 ], [ 115.158691, -30.600094 ], [ 114.999390, -30.031055 ], [ 115.037842, -29.458731 ], [ 114.642334, -28.810987 ], [ 114.614868, -28.516969 ], [ 114.175415, -28.120439 ], [ 114.049072, -27.332735 ], [ 113.477783, -26.544309 ], [ 113.340454, -26.115986 ], [ 113.779907, -26.549223 ], [ 113.439331, -25.621716 ], [ 113.939209, -25.913585 ], [ 114.230347, -26.298340 ], [ 114.213867, -25.785053 ], [ 113.719482, -25.000994 ], [ 113.626099, -24.681961 ], [ 113.395386, -24.387127 ], [ 113.499756, -23.805450 ], [ 113.708496, -23.558952 ], [ 113.845825, -23.059516 ], [ 113.735962, -22.477030 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.224854, -22.517631 ], [ 114.576416, -21.943046 ], [ 114.647827, -21.830907 ], [ 115.361938, -21.534847 ], [ 135.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.963989, -8.890499 ], [ 125.068359, -9.085824 ], [ 125.084839, -9.389452 ], [ 124.431152, -10.136524 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.546753, -9.898510 ], [ 123.975220, -9.286465 ], [ 124.963989, -8.890499 ] ] ], [ [ [ 119.899292, -9.356933 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.712280, -10.239249 ], [ 120.294800, -10.255465 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.356933 ] ] ], [ [ [ 117.899780, -8.091862 ], [ 118.256836, -8.358258 ], [ 118.877563, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.965698, -8.901353 ], [ 117.273560, -9.037003 ], [ 116.735229, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.445205 ], [ 117.899780, -8.091862 ] ] ], [ [ [ 122.898560, -8.091862 ], [ 122.755737, -8.646196 ], [ 121.250610, -8.928487 ], [ 119.921265, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.712280, -8.233237 ], [ 121.338501, -8.532133 ], [ 122.003174, -8.456072 ], [ 122.898560, -8.091862 ] ] ], [ [ [ 112.060547, -6.795535 ], [ 112.500000, -6.910067 ], [ 112.609863, -6.942786 ], [ 112.977905, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.702515, -8.369127 ], [ 114.559937, -8.749366 ], [ 113.461304, -8.347388 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.795535 ] ] ], [ [ [ 117.636108, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.252563, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.475040 ], [ 112.060547, -3.464074 ], [ 112.060547, 0.439449 ], [ 117.636108, 0.439449 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.932007, -1.406109 ], [ 121.470337, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.255615, -1.071105 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.503296, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.680455 ], [ 123.162231, -5.337114 ], [ 122.623901, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.461427 ], [ 121.734009, -4.850154 ], [ 121.486816, -4.570949 ], [ 121.618652, -4.187551 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.926583 ], [ 120.388184, -4.094411 ], [ 120.426636, -5.523043 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.075317, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 119.959717, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.147994 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.102121 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.023179 ], [ 132.978516, -4.110848 ], [ 132.753296, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.816858 ], [ 133.066406, -2.460181 ], [ 133.775024, -2.476645 ], [ 133.692627, -2.213195 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.863403, -0.692122 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.468140, -3.091151 ], [ 130.830688, -3.853293 ], [ 129.990234, -3.442141 ], [ 129.149780, -3.359889 ], [ 128.589478, -3.425692 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.838804 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 126.996460, -3.124061 ], [ 127.249146, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.183472, -3.606625 ], [ 125.985718, -3.173425 ], [ 126.996460, -3.124061 ] ] ], [ [ [ 128.638916, 0.439449 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.375244, -0.774513 ], [ 128.095093, -0.895349 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.638916, 0.439449 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.969482, -8.890499 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.436646, -10.141932 ], [ 123.579712, -10.358151 ], [ 123.458862, -10.239249 ], [ 123.552246, -9.898510 ], [ 123.980713, -9.291886 ], [ 124.969482, -8.890499 ] ] ], [ [ [ 119.899292, -9.362353 ], [ 120.426636, -9.665738 ], [ 120.778198, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.294800, -10.260871 ], [ 118.965454, -9.557417 ], [ 119.899292, -9.362353 ] ] ], [ [ [ 117.899780, -8.097300 ], [ 118.262329, -8.363693 ], [ 118.877563, -8.282163 ], [ 119.124756, -8.705929 ], [ 117.971191, -8.906780 ], [ 117.279053, -9.042428 ], [ 116.740723, -9.031578 ], [ 117.081299, -8.456072 ], [ 117.630615, -8.450639 ], [ 117.899780, -8.097300 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.755737, -8.651626 ], [ 121.256104, -8.933914 ], [ 119.926758, -8.809082 ], [ 119.921265, -8.445205 ], [ 120.717773, -8.238674 ], [ 121.343994, -8.537565 ], [ 122.008667, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 112.060547, -6.800990 ], [ 112.500000, -6.915521 ], [ 112.615356, -6.948239 ], [ 112.977905, -7.596663 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.369127 ], [ 114.565430, -8.749366 ], [ 113.466797, -8.347388 ], [ 112.560425, -8.374562 ], [ 112.500000, -8.369127 ], [ 112.060547, -8.336518 ], [ 112.060547, -6.800990 ] ] ], [ [ [ 117.641602, 0.439449 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.559448, -1.488480 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.012220 ], [ 115.999146, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.496972 ], [ 113.757935, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.500000, -3.343438 ], [ 112.066040, -3.480523 ], [ 112.060547, -3.469557 ], [ 112.060547, 0.439449 ], [ 117.641602, 0.439449 ] ] ], [ [ [ 134.500122, -5.446491 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.291382, -5.785432 ], [ 134.500122, -5.446491 ] ] ], [ [ [ 124.442139, 0.439449 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.135498, 0.000000 ], [ 120.042114, -0.521843 ], [ 120.937500, -1.411600 ], [ 121.475830, -0.955766 ], [ 123.338013, -0.615223 ], [ 123.261108, -1.076597 ], [ 122.821655, -0.928304 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.905776 ], [ 122.453613, -3.184394 ], [ 122.272339, -3.529869 ], [ 123.173218, -4.685930 ], [ 123.162231, -5.342583 ], [ 122.629395, -5.632386 ], [ 122.233887, -5.282418 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.187551 ], [ 120.899048, -3.601142 ], [ 120.970459, -2.630301 ], [ 120.305786, -2.932069 ], [ 120.388184, -4.099890 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.676117 ], [ 119.366455, -5.380867 ], [ 119.652100, -4.461427 ], [ 119.498291, -3.496972 ], [ 119.080811, -3.486006 ], [ 118.767700, -2.800398 ], [ 119.179688, -2.147324 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 119.970703, 0.439449 ], [ 124.442139, 0.439449 ] ] ], [ [ [ 132.379761, -0.368039 ], [ 133.983765, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.423218, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.439453, -3.354405 ], [ 135.439453, -4.488809 ], [ 135.164795, -4.461427 ], [ 135.000000, -4.357366 ], [ 133.665161, -3.540835 ], [ 133.368530, -4.023179 ], [ 132.984009, -4.110848 ], [ 132.758789, -3.743671 ], [ 132.753296, -3.310534 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.698120, -2.213195 ], [ 132.231445, -2.213195 ], [ 131.835938, -1.614776 ], [ 130.940552, -1.433566 ], [ 130.517578, -0.939289 ], [ 131.868896, -0.697615 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 129.369507, -2.800398 ], [ 130.473633, -3.091151 ], [ 130.836182, -3.858774 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.365373 ], [ 128.589478, -3.431175 ], [ 127.897339, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.369507, -2.800398 ] ] ], [ [ [ 128.644409, 0.439449 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.380737, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.269164 ], [ 127.628174, 0.000000 ], [ 127.523804, 0.439449 ], [ 128.644409, 0.439449 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.249146, -3.458591 ], [ 126.875610, -3.793003 ], [ 126.183472, -3.606625 ], [ 125.991211, -3.178910 ], [ 127.001953, -3.129546 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.952515, -8.271291 ], [ 127.331543, -8.396300 ], [ 126.963501, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.084839, -9.389452 ], [ 125.068359, -9.085824 ], [ 124.963989, -8.890499 ], [ 125.084839, -8.651626 ], [ 125.941772, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.952515, -8.271291 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.271291 ], [ 127.337036, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.107521 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.890499 ], [ 125.084839, -8.657057 ], [ 125.947266, -8.434338 ], [ 126.644897, -8.396300 ], [ 126.958008, -8.271291 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.801880, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 114.323730, -22.350076 ], [ 114.570923, -21.943046 ], [ 114.642334, -21.825807 ], [ 115.455322, -21.493964 ], [ 115.944214, -21.063997 ], [ 116.707764, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.438354, -20.745840 ], [ 118.229370, -20.370377 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.040450 ], [ 119.251099, -19.952696 ], [ 119.800415, -19.973349 ], [ 120.855103, -19.678798 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.703489 ], [ 122.239380, -18.192825 ], [ 122.283325, -17.795766 ], [ 122.310791, -17.250990 ], [ 123.008423, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.854370, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.325411 ], [ 124.376221, -15.564836 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.667114, -14.509144 ], [ 125.683594, -14.227113 ], [ 126.123047, -14.344226 ], [ 126.139526, -14.093957 ], [ 126.578979, -13.950061 ], [ 127.062378, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.865160 ], [ 128.984985, -14.875778 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.418720 ], [ 129.885864, -13.613956 ], [ 130.336304, -13.352210 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.731567, -12.302435 ], [ 132.572021, -12.109152 ], [ 132.555542, -11.598432 ], [ 131.819458, -11.270000 ], [ 132.352295, -11.124507 ], [ 133.016968, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.390259, -12.039321 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.439453, -12.173595 ], [ 135.439453, -14.695195 ], [ 135.428467, -14.711135 ], [ 135.439453, -14.753635 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.147949, -21.754398 ], [ 114.164429, -21.943046 ], [ 114.202881, -22.350076 ], [ 113.807373, -22.350076 ], [ 114.038086, -21.943046 ], [ 114.147949, -21.754398 ] ] ], [ [ [ 114.323730, -22.350076 ], [ 114.576416, -21.943046 ], [ 114.647827, -21.830907 ], [ 115.460815, -21.493964 ], [ 115.949707, -21.069123 ], [ 116.713257, -20.699600 ], [ 117.163696, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.229370, -20.375527 ], [ 118.833618, -20.262197 ], [ 118.987427, -20.045611 ], [ 119.251099, -19.952696 ], [ 119.805908, -19.978511 ], [ 120.855103, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.657104, -18.703489 ], [ 122.239380, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.310791, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.859863, -17.067287 ], [ 123.502808, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.260864, -16.325411 ], [ 124.381714, -15.564836 ], [ 124.925537, -15.077428 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.683594, -14.232438 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 126.584473, -13.955392 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.358765, -14.870469 ], [ 128.984985, -14.875778 ], [ 129.622192, -14.971320 ], [ 129.407959, -14.418720 ], [ 129.891357, -13.619295 ], [ 130.341797, -13.357554 ], [ 130.182495, -13.106230 ], [ 130.616455, -12.538478 ], [ 131.226196, -12.184334 ], [ 131.737061, -12.302435 ], [ 132.577515, -12.114523 ], [ 132.555542, -11.603813 ], [ 131.824951, -11.275387 ], [ 132.357788, -11.129897 ], [ 133.016968, -11.377724 ], [ 133.549805, -11.786703 ], [ 134.395752, -12.044693 ], [ 134.675903, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.248760 ], [ 135.439453, -12.178965 ], [ 135.439453, -14.700508 ], [ 135.428467, -14.716448 ], [ 135.439453, -14.758947 ], [ 135.439453, -22.350076 ], [ 114.323730, -22.350076 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.565674, 22.350076 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.500000, 21.795208 ], [ 112.060547, 21.637005 ], [ 112.060547, 22.350076 ], [ 113.565674, 22.350076 ] ] ], [ [ [ 114.312744, 22.350076 ], [ 114.147949, 22.228090 ], [ 114.016113, 22.350076 ], [ 114.312744, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 112.060547, 21.631899 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.125244, 6.931880 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.019811 ], [ 118.438110, 4.970560 ], [ 118.613892, 4.483333 ], [ 117.877808, 4.138243 ], [ 117.009888, 4.308069 ], [ 115.861816, 4.308069 ], [ 115.515747, 3.173425 ], [ 115.131226, 2.822344 ], [ 114.620361, 1.433566 ], [ 113.801880, 1.219390 ], [ 112.857056, 1.499463 ], [ 112.500000, 1.439058 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.019841 ], [ 112.994385, 3.107606 ], [ 113.708496, 3.897138 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.012220 ], [ 114.867554, 4.351889 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.451959 ], [ 116.218872, 6.146016 ], [ 116.724243, 6.926427 ], [ 117.125244, 6.931880 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.014339 ], [ 118.438110, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.308069 ], [ 115.867310, 4.308069 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.137010 ], [ 112.060547, 2.937555 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.867554, 4.346411 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.446491 ], [ 116.218872, 6.140555 ], [ 116.724243, 6.926427 ], [ 117.130737, 6.926427 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.937500, 22.350076 ], [ 120.745239, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.937500, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.745239, 21.968519 ], [ 120.503540, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.787368 ], [ 126.375732, 8.418036 ], [ 126.474609, 7.754537 ], [ 126.535034, 7.193551 ], [ 126.194458, 6.277078 ], [ 125.826416, 7.297088 ], [ 125.359497, 6.790080 ], [ 125.678101, 6.053161 ], [ 125.392456, 5.583184 ], [ 124.216919, 6.162401 ], [ 123.936768, 6.888254 ], [ 124.238892, 7.362467 ], [ 123.607178, 7.836173 ], [ 123.294067, 7.422389 ], [ 122.821655, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.695069 ], [ 123.837891, 8.244110 ], [ 124.601440, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 121.316528, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.267414 ], [ 121.662598, 15.934920 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.333582 ], [ 122.255859, 14.221789 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.178467, 12.999205 ], [ 124.074097, 12.538478 ], [ 123.294067, 13.031318 ], [ 122.926025, 13.555222 ], [ 122.667847, 13.186468 ], [ 122.030640, 13.784737 ], [ 121.124268, 13.640649 ], [ 120.624390, 13.859414 ], [ 120.679321, 14.275030 ], [ 120.986938, 14.530415 ], [ 120.690308, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.367580 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.712280, 18.505657 ], [ 121.316528, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.222168, 12.538478 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.049038 ], [ 125.007935, 11.313094 ], [ 125.029907, 10.978943 ], [ 125.277100, 10.363555 ], [ 124.799194, 10.136524 ], [ 124.755249, 10.838701 ], [ 124.458618, 10.892648 ], [ 124.299316, 11.496174 ], [ 124.887085, 11.420802 ], [ 124.876099, 11.797457 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.074097, 11.237674 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.952620 ], [ 123.305054, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.714472 ], [ 122.585449, 9.985081 ], [ 122.832642, 10.266276 ], [ 122.942505, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.074097, 11.237674 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.558022 ], [ 119.025879, 10.006720 ], [ 118.504028, 9.318990 ], [ 117.169189, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.383179, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.587669 ], [ 123.096313, 11.167624 ], [ 122.634888, 10.741572 ], [ 121.997681, 10.444598 ], [ 121.964722, 10.908830 ], [ 122.036133, 11.420802 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.469764 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.074128 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.469764 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.304321, 8.781940 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.535034, 7.188101 ], [ 126.194458, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.612671, 7.836173 ], [ 123.294067, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.695069 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.515836 ], [ 124.766235, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 121.322021, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.183960, 12.999205 ], [ 124.079590, 12.538478 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.555222 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.596903 ], [ 120.717773, 18.505657 ], [ 121.322021, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.313094 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.799194, 10.136524 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.876099, 11.792080 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.277086 ], [ 123.623657, 9.952620 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.497314, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.318990 ], [ 117.174683, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.582288 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.964722, 10.903436 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.451959 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.351889 ], [ 114.658813, 4.012220 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.904887 ], [ 115.449829, 5.451959 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Brunei" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.062866, 1.647722 ], [ 125.238647, 1.422583 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.433956 ], [ 121.052856, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.130005, 0.000000 ], [ 120.047607, -0.439449 ], [ 119.619141, -0.439449 ], [ 119.767456, 0.000000 ], [ 119.822388, 0.159302 ], [ 120.031128, 0.571280 ], [ 120.882568, 1.312751 ], [ 121.662598, 1.016182 ], [ 122.926025, 0.878872 ], [ 124.074097, 0.917319 ], [ 125.062866, 1.647722 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.589478, 1.543392 ], [ 128.682861, 1.137010 ], [ 128.633423, 0.263671 ], [ 128.117065, 0.357053 ], [ 128.023682, 0.000000 ], [ 127.963257, -0.247192 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.263671 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.016182 ], [ 127.595215, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.009888, 4.308069 ], [ 117.877808, 4.138243 ], [ 117.312012, 3.239240 ], [ 118.048096, 2.290039 ], [ 117.872314, 1.828913 ], [ 118.992920, 0.906334 ], [ 117.806396, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.500000, 1.439058 ], [ 112.857056, 1.499463 ], [ 113.801880, 1.219390 ], [ 114.620361, 1.433566 ], [ 115.131226, 2.822344 ], [ 115.515747, 3.173425 ], [ 115.861816, 4.308069 ], [ 117.009888, 4.308069 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.264404, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.135498, 0.000000 ], [ 120.053101, -0.439449 ], [ 119.624634, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.798462, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.476807, 0.000000 ], [ 117.498779, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.137010 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.370239, 41.310824 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.260864, 39.930801 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.172659 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.364032 ], [ 121.371460, 39.753657 ], [ 122.167969, 40.426042 ], [ 121.635132, 40.946714 ], [ 120.767212, 40.597271 ], [ 119.635620, 39.901309 ], [ 119.020386, 39.253525 ], [ 118.042603, 39.206719 ], [ 117.531738, 38.741231 ], [ 118.059082, 38.065392 ], [ 118.877563, 37.900865 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.160317 ], [ 120.822144, 37.870517 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.655200 ], [ 120.635376, 36.115690 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.380999 ], [ 121.228638, 32.463426 ], [ 121.904297, 31.695456 ], [ 121.887817, 30.954058 ], [ 121.261597, 30.680440 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.835879 ], [ 121.937256, 29.022552 ], [ 121.679077, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.393677, 27.054234 ], [ 119.580688, 25.745477 ], [ 118.652344, 24.552120 ], [ 117.279053, 23.629427 ], [ 115.889282, 22.786311 ], [ 114.763184, 22.669779 ], [ 114.147949, 22.228090 ], [ 113.801880, 22.553147 ], [ 113.236084, 22.055096 ], [ 112.917480, 21.943046 ], [ 112.060547, 21.637005 ], [ 112.060547, 41.310824 ], [ 126.370239, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.375732, 41.310824 ], [ 126.183472, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.079346, 40.568067 ], [ 124.266357, 39.926588 ], [ 122.865601, 39.639538 ], [ 122.129517, 39.168400 ], [ 121.052856, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.767212, 40.593100 ], [ 119.641113, 39.897094 ], [ 119.025879, 39.253525 ], [ 118.042603, 39.202462 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.061067 ], [ 118.877563, 37.896530 ], [ 118.910522, 37.448697 ], [ 119.701538, 37.155939 ], [ 120.822144, 37.870517 ], [ 121.712036, 37.479217 ], [ 122.360229, 37.453057 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.635376, 36.111253 ], [ 119.663086, 35.608185 ], [ 119.152222, 34.908458 ], [ 120.228882, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.228638, 32.458791 ], [ 121.909790, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.261597, 30.675715 ], [ 121.503296, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.134972 ], [ 120.393677, 27.054234 ], [ 119.586182, 25.740529 ], [ 118.657837, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.889282, 22.781246 ], [ 114.763184, 22.669779 ], [ 114.153442, 22.223005 ], [ 113.807373, 22.548074 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.060547, 21.631899 ], [ 112.060547, 41.310824 ], [ 126.375732, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.299338 ], [ 121.948242, 25.000994 ], [ 121.772461, 24.397133 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.973614 ], [ 120.217896, 22.816694 ], [ 120.102539, 23.558952 ], [ 120.690308, 24.542126 ], [ 121.492310, 25.299338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.294371 ], [ 121.953735, 24.996016 ], [ 121.777954, 24.392130 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.968519 ], [ 120.217896, 22.816694 ], [ 120.108032, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.492310, 25.294371 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.006958, 40.488737 ], [ 128.627930, 40.191463 ], [ 127.963257, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.380981, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.776489, 38.307181 ], [ 127.067871, 38.259750 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.844495 ], [ 126.172485, 37.753344 ], [ 125.689087, 37.944198 ], [ 125.568237, 37.753344 ], [ 125.271606, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.552461 ], [ 125.216675, 38.668356 ], [ 125.128784, 38.852542 ], [ 125.381470, 39.389509 ], [ 125.321045, 39.554883 ], [ 124.733276, 39.660685 ], [ 124.260864, 39.930801 ], [ 125.079346, 40.572240 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.370239, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.677124, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.012451, 40.484560 ], [ 128.633423, 40.191463 ], [ 127.968750, 40.023408 ], [ 127.534790, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.049052 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.781982, 38.302870 ], [ 127.073364, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.238403, 37.840157 ], [ 126.172485, 37.749001 ], [ 125.689087, 37.939865 ], [ 125.568237, 37.753344 ], [ 125.277100, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.948529 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.548165 ], [ 125.222168, 38.664067 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.389509 ], [ 125.321045, 39.550648 ], [ 124.738770, 39.660685 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.568067 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.677124, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.435612 ], [ 129.457397, 36.787291 ], [ 129.462891, 35.634977 ], [ 129.089355, 35.083956 ], [ 128.182983, 34.890437 ], [ 127.386475, 34.479392 ], [ 126.485596, 34.393312 ], [ 126.370239, 34.935482 ], [ 126.557007, 35.688533 ], [ 126.112061, 36.725677 ], [ 126.859131, 36.897194 ], [ 126.172485, 37.753344 ], [ 126.232910, 37.844495 ], [ 126.683350, 37.805444 ], [ 127.067871, 38.259750 ], [ 127.776489, 38.307181 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.347778, 38.612578 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.468384, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.890437 ], [ 127.386475, 34.474864 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.935482 ], [ 126.557007, 35.684072 ], [ 126.117554, 36.725677 ], [ 126.859131, 36.892801 ], [ 126.172485, 37.749001 ], [ 126.238403, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.073364, 38.255436 ], [ 127.781982, 38.302870 ], [ 128.204956, 38.371809 ], [ 128.347778, 38.612578 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.674069 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.335571, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.888658 ], [ 131.995239, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.298395 ], [ 130.352783, 33.605470 ], [ 130.874634, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.708733 ], [ 132.357788, 32.990236 ], [ 132.368774, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.489380, 33.947917 ], [ 133.901367, 34.366111 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.609985, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.439453, 35.576917 ], [ 135.439453, 33.669497 ], [ 135.120850, 33.847608 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.375179 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.884097 ], [ 132.000732, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.687866, 31.029401 ], [ 130.204468, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.885376, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.609985, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.148181 ], [ 134.763794, 33.806538 ], [ 134.203491, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.280640, 33.289212 ], [ 133.016968, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.368774, 33.463525 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.933454 ], [ 135.120850, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.929550 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 133.533325, 42.811522 ], [ 132.901611, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.775757, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.115198 ], [ 131.022949, 44.968684 ], [ 131.879883, 45.321254 ], [ 133.093872, 45.147179 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.215837 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 133.368530, 48.184401 ], [ 132.506104, 47.791016 ], [ 130.984497, 47.791016 ], [ 130.578003, 48.730832 ], [ 129.396973, 49.443129 ], [ 127.655640, 49.763526 ], [ 127.282104, 50.739932 ], [ 126.936035, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.941772, 52.796119 ], [ 125.062866, 53.163240 ], [ 123.568726, 53.461890 ], [ 122.244873, 53.432447 ], [ 120.997925, 53.252069 ], [ 120.173950, 52.756243 ], [ 120.723267, 52.519564 ], [ 120.734253, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.284058, 50.145226 ], [ 117.877808, 49.514510 ], [ 116.674805, 49.891096 ], [ 115.482788, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.250718 ], [ 112.895508, 49.546598 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.443129 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.930298 ], [ 135.126343, 54.730964 ], [ 135.439453, 54.708755 ], [ 135.439453, 43.921637 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.907104, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.928274 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.968684 ], [ 131.885376, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.115134 ], [ 134.110107, 47.212106 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.184401 ], [ 132.506104, 47.787326 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.730832 ], [ 129.396973, 49.439557 ], [ 127.655640, 49.759978 ], [ 127.287598, 50.739932 ], [ 126.941528, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.947266, 52.792797 ], [ 125.068359, 53.159947 ], [ 123.568726, 53.458620 ], [ 122.244873, 53.432447 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.752919 ], [ 120.723267, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.641885 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.877808, 49.510944 ], [ 116.680298, 49.887557 ], [ 115.488281, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.247205 ], [ 112.895508, 49.543034 ], [ 112.500000, 49.496675 ], [ 112.060547, 49.439557 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.250718 ], [ 114.960938, 50.141706 ], [ 115.482788, 49.806087 ], [ 116.674805, 49.891096 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.290039, 47.698672 ], [ 118.059082, 48.067068 ], [ 118.861084, 47.750405 ], [ 119.767456, 47.051411 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.416382, 46.675826 ], [ 116.713257, 46.388622 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 45.003651 ], [ 112.434082, 45.015302 ], [ 112.060547, 45.077400 ], [ 112.060547, 49.443129 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.546598 ], [ 114.362183, 50.250718 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.247205 ], [ 114.960938, 50.141706 ], [ 115.488281, 49.806087 ], [ 116.680298, 49.887557 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.295532, 47.698672 ], [ 118.064575, 48.067068 ], [ 118.866577, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.690899 ], [ 118.872070, 46.803820 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.388622 ], [ 115.982666, 45.725356 ], [ 114.461060, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.434082, 45.011419 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.496675 ], [ 112.895508, 49.543034 ], [ 114.362183, 50.247205 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.568726, 53.461890 ], [ 125.062866, 53.163240 ], [ 125.941772, 52.796119 ], [ 126.562500, 51.784834 ], [ 126.936035, 51.354631 ], [ 127.282104, 50.739932 ], [ 127.655640, 49.763526 ], [ 129.396973, 49.443129 ], [ 130.578003, 48.730832 ], [ 130.984497, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.368530, 48.184401 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.215837 ], [ 133.769531, 46.118942 ], [ 133.093872, 45.147179 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.115198 ], [ 131.143799, 42.932296 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.427511 ], [ 128.051147, 41.996243 ], [ 128.204956, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.864624, 41.820455 ], [ 126.177979, 41.108330 ], [ 125.908813, 40.979898 ], [ 125.227661, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.635132, 40.946714 ], [ 120.888062, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.077400 ], [ 112.500000, 45.003651 ], [ 113.461304, 44.809122 ], [ 114.455566, 45.340563 ], [ 115.982666, 45.729191 ], [ 116.713257, 46.388622 ], [ 117.416382, 46.675826 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.767456, 47.051411 ], [ 118.861084, 47.750405 ], [ 118.059082, 48.067068 ], [ 117.290039, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.674805, 49.891096 ], [ 117.877808, 49.514510 ], [ 119.284058, 50.145226 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.734253, 51.964577 ], [ 120.723267, 52.519564 ], [ 120.173950, 52.756243 ], [ 120.997925, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.568726, 53.461890 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.458620 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.792797 ], [ 126.562500, 51.784834 ], [ 126.941528, 51.354631 ], [ 127.287598, 50.739932 ], [ 127.655640, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.730832 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.787326 ], [ 133.374023, 48.184401 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.115134 ], [ 133.099365, 45.143305 ], [ 131.885376, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.928274 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.995728, 42.984558 ], [ 129.594727, 42.423457 ], [ 128.051147, 41.996243 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.870117, 41.816361 ], [ 126.183472, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.238647, 40.647304 ], [ 121.937256, 40.647304 ], [ 121.640625, 40.946714 ], [ 120.899048, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.461060, 45.340563 ], [ 115.982666, 45.725356 ], [ 116.718750, 46.388622 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.803820 ], [ 119.663086, 46.690899 ], [ 119.772949, 47.047669 ], [ 118.866577, 47.746711 ], [ 118.064575, 48.067068 ], [ 117.295532, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.680298, 49.887557 ], [ 117.877808, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.641885 ], [ 120.739746, 51.964577 ], [ 120.723267, 52.516221 ], [ 120.179443, 52.752919 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.574219, 53.458620 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.395066 ], [ 130.775757, 42.220382 ], [ 130.396729, 42.281373 ], [ 129.962769, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.182739, 40.663973 ], [ 129.160767, 40.647304 ], [ 125.227661, 40.647304 ], [ 125.908813, 40.979898 ], [ 126.177979, 41.108330 ], [ 126.864624, 41.820455 ], [ 127.342529, 41.504464 ], [ 128.204956, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.427511 ], [ 129.990234, 42.988576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dem. Rep. Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.995728, 42.984558 ], [ 130.638428, 42.395066 ], [ 130.781250, 42.220382 ], [ 130.402222, 42.281373 ], [ 129.968262, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.171753, 40.647304 ], [ 125.238647, 40.647304 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.870117, 41.816361 ], [ 127.342529, 41.504464 ], [ 128.210449, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.423457 ], [ 129.995728, 42.984558 ] ] ] } } ] } ] } , @@ -3828,13 +3816,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.016357, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.754279 ], [ 118.773193, 73.589034 ], [ 119.014893, 73.120161 ], [ 123.195190, 72.972798 ], [ 123.255615, 73.735828 ], [ 125.375977, 73.561076 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.040226 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.788717 ], [ 132.253418, 71.837403 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.115479, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.016357, 73.977144 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 113.021851, 73.977144 ], [ 113.527222, 73.335736 ], [ 113.966675, 73.595241 ], [ 115.565186, 73.752742 ], [ 118.778687, 73.587482 ], [ 119.020386, 73.120161 ], [ 123.200684, 72.971189 ], [ 123.255615, 73.734289 ], [ 125.381470, 73.559522 ], [ 126.974487, 73.565739 ], [ 128.589478, 73.038624 ], [ 129.050903, 72.399028 ], [ 128.457642, 71.980687 ], [ 129.715576, 71.193067 ], [ 131.286621, 70.786910 ], [ 132.253418, 71.835691 ], [ 133.857422, 71.386895 ], [ 135.439453, 71.637723 ], [ 135.439453, 66.337505 ], [ 112.060547, 66.337505 ], [ 112.060547, 73.798786 ], [ 112.120972, 73.788054 ], [ 112.500000, 73.869139 ], [ 113.021851, 73.977144 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.637329, 73.898111 ], [ 113.016357, 73.977144 ], [ 113.076782, 73.898111 ], [ 112.637329, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.404937 ], [ 113.329468, 76.222983 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.774658, 75.031921 ], [ 112.060547, 74.883655 ], [ 112.060547, 76.500159 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.642822, 73.898111 ], [ 113.021851, 73.977144 ], [ 113.082275, 73.898111 ], [ 112.642822, 73.898111 ] ] ], [ [ [ 112.060547, 76.500159 ], [ 112.500000, 76.403646 ], [ 113.329468, 76.221675 ], [ 114.131470, 75.847855 ], [ 113.884277, 75.328375 ], [ 112.780151, 75.031921 ], [ 112.500000, 74.975064 ], [ 112.060547, 74.882222 ], [ 112.060547, 76.500159 ] ] ] ] } } ] } ] } , @@ -3858,139 +3846,139 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.776752 ], [ 137.455444, -66.953727 ], [ 138.592529, -66.895596 ], [ 139.905396, -66.874030 ], [ 140.806274, -66.815710 ], [ 142.119141, -66.815710 ], [ 143.058472, -66.796238 ], [ 144.371338, -66.835165 ], [ 145.486450, -66.914988 ], [ 146.195068, -67.227433 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.128622 ], [ 148.837280, -68.385020 ], [ 150.128174, -68.560384 ], [ 151.479492, -68.716453 ], [ 152.501221, -68.873419 ], [ 153.632812, -68.893209 ], [ 154.281006, -68.560384 ], [ 155.165405, -68.833785 ], [ 155.928955, -69.148876 ], [ 156.807861, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.472969 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.115112, -66.337505 ], [ 136.208496, -66.445302 ], [ 136.290894, -66.513260 ], [ 136.620483, -66.778918 ], [ 137.460938, -66.953727 ], [ 138.598022, -66.895596 ], [ 139.910889, -66.876188 ], [ 140.811768, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.798403 ], [ 144.371338, -66.837326 ], [ 145.491943, -66.914988 ], [ 146.195068, -67.229559 ], [ 145.997314, -67.600849 ], [ 146.645508, -67.894153 ], [ 147.722168, -68.130668 ], [ 148.837280, -68.385020 ], [ 150.133667, -68.560384 ], [ 151.484985, -68.718447 ], [ 152.501221, -68.875399 ], [ 153.638306, -68.895187 ], [ 154.286499, -68.560384 ], [ 155.165405, -68.835769 ], [ 155.928955, -69.148876 ], [ 156.813354, -69.384181 ], [ 157.500000, -69.438269 ], [ 157.939453, -69.474895 ], [ 157.939453, -74.140084 ], [ 134.560547, -74.140084 ], [ 134.560547, -66.337505 ], [ 136.115112, -66.337505 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.873413, -66.031411 ], [ 136.203003, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.499634, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.752808, -66.209308 ], [ 135.000000, -65.766727 ], [ 135.027466, -65.719335 ], [ 135.065918, -65.307240 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.071411, -65.309535 ], [ 135.697632, -65.583449 ], [ 135.873413, -66.033642 ], [ 136.208496, -66.445302 ], [ 136.290894, -66.513260 ], [ 136.505127, -66.687784 ], [ 134.560547, -66.687784 ], [ 134.560547, -66.224815 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.777998 ], [ 135.032959, -65.719335 ], [ 135.071411, -65.309535 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.013306, -42.403179 ], [ 147.908936, -43.209180 ], [ 147.562866, -42.936318 ], [ 146.865234, -43.632099 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.744873, -40.705628 ], [ 145.398560, -40.793019 ], [ 145.920410, -40.979898 ], [ 146.365356, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.809652 ], [ 148.287964, -40.876141 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.061529 ], [ 148.018799, -42.407235 ], [ 147.914429, -43.213183 ], [ 147.562866, -42.936318 ], [ 146.870728, -43.636075 ], [ 146.661987, -43.580391 ], [ 146.046753, -43.548548 ], [ 145.431519, -42.694549 ], [ 145.294189, -42.032974 ], [ 144.717407, -41.162114 ], [ 144.744873, -40.705628 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.739380, -40.701464 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.969604, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.287964, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.739380, -40.701464 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.479736, -22.553147 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.458207 ], [ 151.605835, -24.071544 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.132935, -26.066652 ], [ 153.160400, -26.637639 ], [ 153.088989, -27.259513 ], [ 153.566895, -28.105903 ], [ 153.511963, -28.993727 ], [ 153.336182, -29.453948 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.921076 ], [ 152.891235, -31.639352 ], [ 152.446289, -32.546813 ], [ 151.704712, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.169318 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.416862 ], [ 149.941406, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.419556, -37.770715 ], [ 148.304443, -37.805444 ], [ 147.381592, -38.216604 ], [ 146.920166, -38.603993 ], [ 146.315918, -39.031986 ], [ 145.486450, -38.591114 ], [ 144.876709, -38.414862 ], [ 145.030518, -37.892196 ], [ 144.481201, -38.082690 ], [ 143.607788, -38.805470 ], [ 142.745361, -38.535276 ], [ 142.174072, -38.376115 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.987793, -37.400710 ], [ 139.806519, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.081421, -35.728677 ], [ 138.120117, -35.608185 ], [ 138.444214, -35.124402 ], [ 138.202515, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.499390, -34.129995 ], [ 137.889404, -33.637489 ], [ 137.807007, -32.898038 ], [ 136.994019, -33.751748 ], [ 136.367798, -34.093610 ], [ 135.988770, -34.885931 ], [ 135.203247, -34.474864 ], [ 135.236206, -33.947917 ], [ 135.000000, -33.674069 ], [ 134.609985, -33.220308 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.744873, -40.705628 ], [ 145.398560, -40.793019 ], [ 145.920410, -40.979898 ], [ 146.365356, -41.137296 ], [ 146.991577, -40.979898 ], [ 147.689209, -40.809652 ], [ 148.287964, -40.876141 ], [ 148.293457, -40.979898 ], [ 148.309937, -41.310824 ], [ 144.810791, -41.310824 ], [ 144.717407, -41.162114 ], [ 144.744873, -40.705628 ] ] ], [ [ [ 149.386597, -21.534847 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.344995 ], [ 150.078735, -22.121266 ], [ 150.485229, -22.558220 ], [ 150.726929, -22.400872 ], [ 150.897217, -23.463246 ], [ 151.611328, -24.076559 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.269536 ], [ 153.138428, -26.071586 ], [ 153.160400, -26.642549 ], [ 153.094482, -27.259513 ], [ 153.566895, -28.110749 ], [ 153.511963, -28.993727 ], [ 153.341675, -29.458731 ], [ 153.067017, -30.349176 ], [ 153.088989, -30.925789 ], [ 152.891235, -31.639352 ], [ 152.451782, -32.551444 ], [ 151.710205, -33.040903 ], [ 151.342163, -33.815666 ], [ 151.012573, -34.311681 ], [ 150.715942, -35.173808 ], [ 150.325928, -35.670685 ], [ 150.073242, -36.421282 ], [ 149.946899, -37.107765 ], [ 149.996338, -37.426888 ], [ 149.425049, -37.770715 ], [ 148.304443, -37.809784 ], [ 147.381592, -38.220920 ], [ 146.920166, -38.608286 ], [ 146.315918, -39.036253 ], [ 145.491943, -38.595407 ], [ 144.876709, -38.419166 ], [ 145.030518, -37.896530 ], [ 144.486694, -38.087013 ], [ 143.607788, -38.809751 ], [ 142.745361, -38.539573 ], [ 142.179565, -38.380422 ], [ 141.608276, -38.307181 ], [ 140.635986, -38.017804 ], [ 139.993286, -37.405074 ], [ 139.806519, -36.641978 ], [ 139.575806, -36.137875 ], [ 139.081421, -35.733136 ], [ 138.120117, -35.612651 ], [ 138.449707, -35.128894 ], [ 138.208008, -34.384246 ], [ 137.719116, -35.074965 ], [ 136.829224, -35.259077 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.129995 ], [ 137.889404, -33.642063 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.751748 ], [ 136.373291, -34.093610 ], [ 135.988770, -34.890437 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.947917 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.224903 ], [ 134.560547, -33.183537 ], [ 134.560547, -21.534847 ], [ 149.386597, -21.534847 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.180298, -2.048514 ], [ 139.921875, -2.405299 ], [ 140.998535, -2.597377 ], [ 141.031494, -9.112945 ], [ 140.141602, -8.293035 ], [ 139.125366, -8.091862 ], [ 138.878174, -8.379997 ], [ 137.609253, -8.407168 ], [ 138.037720, -7.596663 ], [ 138.663940, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.391805 ], [ 135.988770, -4.543570 ], [ 135.159302, -4.461427 ], [ 135.000000, -4.362843 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.102121 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.719849, -6.211551 ], [ 134.560547, -6.419025 ], [ 134.560547, -5.523043 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.927368, -2.410787 ], [ 140.998535, -2.602864 ], [ 141.031494, -9.118368 ], [ 140.141602, -8.298470 ], [ 139.125366, -8.097300 ], [ 138.883667, -8.379997 ], [ 137.614746, -8.412602 ], [ 138.037720, -7.596663 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.233395 ], [ 137.927856, -5.391805 ], [ 135.988770, -4.549046 ], [ 135.164795, -4.461427 ], [ 135.000000, -4.357366 ], [ 134.560547, -4.088932 ], [ 134.560547, -2.844290 ], [ 135.000000, -3.096636 ], [ 135.455933, -3.365373 ], [ 136.290894, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ] ] ], [ [ [ 134.560547, -5.523043 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.560547, -6.429942 ], [ 134.560547, -5.523043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.371094, -14.981933 ], [ 145.266724, -15.427206 ], [ 145.480957, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.156616, -17.759150 ], [ 146.063232, -18.276302 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.172607, -19.952696 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.339914 ], [ 150.073242, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.974845 ], [ 134.675903, -11.937227 ], [ 135.000000, -12.093039 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.958723 ], [ 136.257935, -12.044693 ], [ 136.488647, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.680908, -12.886780 ], [ 136.301880, -13.288065 ], [ 135.961304, -13.320140 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.499878, -14.992546 ], [ 136.290894, -15.548960 ], [ 137.059937, -15.866242 ], [ 137.576294, -16.214675 ], [ 138.301392, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.103394, -17.062036 ], [ 139.257202, -17.366367 ], [ 140.213013, -17.706828 ], [ 140.872192, -17.366367 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.394043, -15.839820 ], [ 141.701660, -15.040296 ], [ 141.558838, -14.557001 ], [ 141.630249, -14.269707 ], [ 141.514893, -13.694025 ], [ 141.646729, -12.940322 ], [ 141.838989, -12.736801 ], [ 141.685181, -12.404389 ], [ 141.926880, -11.872727 ], [ 142.113647, -11.323867 ], [ 142.141113, -11.038255 ], [ 142.514648, -10.666006 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Australia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 142.514648, -10.666006 ], [ 142.794800, -11.156845 ], [ 142.866211, -11.786703 ], [ 143.113403, -11.904979 ], [ 143.157349, -12.323903 ], [ 143.519897, -12.833226 ], [ 143.596802, -13.400307 ], [ 143.563843, -13.763396 ], [ 143.920898, -14.546367 ], [ 144.563599, -14.168534 ], [ 144.893188, -14.594216 ], [ 145.376587, -14.987240 ], [ 145.272217, -15.427206 ], [ 145.486450, -16.283233 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.904428 ], [ 146.162109, -17.759150 ], [ 146.063232, -18.281518 ], [ 146.387329, -18.958246 ], [ 147.469482, -19.482129 ], [ 148.178101, -19.957860 ], [ 148.848267, -20.390974 ], [ 148.716431, -20.632784 ], [ 149.287720, -21.258661 ], [ 149.529419, -21.943046 ], [ 149.677734, -22.344995 ], [ 150.078735, -22.121266 ], [ 150.287476, -22.350076 ], [ 134.560547, -22.350076 ], [ 134.560547, -11.980218 ], [ 134.675903, -11.942601 ], [ 135.000000, -12.098410 ], [ 135.296631, -12.248760 ], [ 135.884399, -11.964097 ], [ 136.257935, -12.050065 ], [ 136.494141, -11.856599 ], [ 136.950073, -12.350734 ], [ 136.686401, -12.886780 ], [ 136.307373, -13.293411 ], [ 135.961304, -13.325485 ], [ 136.076660, -13.726045 ], [ 135.785522, -14.221789 ], [ 135.428467, -14.716448 ], [ 135.499878, -14.997852 ], [ 136.296387, -15.548960 ], [ 137.065430, -15.871525 ], [ 137.581787, -16.214675 ], [ 138.301392, -16.809800 ], [ 138.587036, -16.804541 ], [ 139.108887, -17.062036 ], [ 139.262695, -17.371610 ], [ 140.213013, -17.712061 ], [ 140.877686, -17.371610 ], [ 141.069946, -16.830832 ], [ 141.273193, -16.388661 ], [ 141.399536, -15.839820 ], [ 141.701660, -15.045601 ], [ 141.564331, -14.562318 ], [ 141.635742, -14.269707 ], [ 141.520386, -13.699362 ], [ 141.652222, -12.945676 ], [ 141.844482, -12.742158 ], [ 141.685181, -12.409754 ], [ 141.926880, -11.878102 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.043647 ], [ 142.514648, -10.666006 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.597377 ], [ 142.734375, -3.288598 ], [ 144.580078, -3.858774 ], [ 145.272217, -4.368320 ], [ 145.827026, -4.872048 ], [ 145.980835, -5.462896 ], [ 147.645264, -6.080473 ], [ 147.886963, -6.610044 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.384258 ], [ 148.079224, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.034790, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.579622 ], [ 150.023804, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.919678, -10.277086 ], [ 147.908936, -10.125709 ], [ 147.134399, -9.492408 ], [ 146.563110, -8.939340 ], [ 146.046753, -8.064669 ], [ 144.739380, -7.629331 ], [ 143.893433, -7.912353 ], [ 143.283691, -8.244110 ], [ 143.410034, -8.982749 ], [ 142.624512, -9.324411 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.597377 ] ] ], [ [ [ 152.133179, -4.143722 ], [ 152.336426, -4.308069 ], [ 152.314453, -4.866574 ], [ 151.979370, -5.473832 ], [ 151.457520, -5.555848 ], [ 151.298218, -5.840081 ], [ 150.238037, -6.315299 ], [ 149.705200, -6.315299 ], [ 148.886719, -6.025848 ], [ 148.315430, -5.741708 ], [ 148.397827, -5.435554 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.501172 ], [ 149.990845, -5.025283 ], [ 150.139160, -4.997922 ], [ 150.232544, -5.528511 ], [ 150.803833, -5.451959 ], [ 151.089478, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.165637 ], [ 152.133179, -4.143722 ] ] ], [ [ [ 154.649048, -5.041699 ], [ 154.758911, -5.337114 ], [ 155.061035, -5.566783 ], [ 155.544434, -6.200629 ], [ 156.016846, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.165405, -6.533645 ], [ 154.725952, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.649048, -5.041699 ] ] ], [ [ [ 150.935669, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.814575, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.655964 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.762573 ], [ 152.638550, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.661011, -2.740044 ], [ 150.935669, -2.498597 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.288598 ], [ 144.585571, -3.858774 ], [ 145.272217, -4.373798 ], [ 145.832520, -4.877521 ], [ 145.980835, -5.462896 ], [ 147.650757, -6.085936 ], [ 147.892456, -6.615501 ], [ 146.969604, -6.719165 ], [ 147.189331, -7.389705 ], [ 148.084717, -8.042913 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.265747, -9.514079 ], [ 150.040283, -9.681984 ], [ 149.738159, -9.871452 ], [ 150.803833, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.782104, -10.390572 ], [ 148.925171, -10.282491 ], [ 147.914429, -10.131117 ], [ 147.134399, -9.492408 ], [ 146.568604, -8.944767 ], [ 146.046753, -8.070107 ], [ 144.744873, -7.629331 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.630005, -9.324411 ], [ 142.069702, -9.161756 ], [ 141.031494, -9.118368 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.319946, -4.866574 ], [ 151.984863, -5.479300 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.840081 ], [ 150.243530, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.892212, -6.025848 ], [ 148.320923, -5.747174 ], [ 148.403320, -5.435554 ], [ 149.298706, -5.583184 ], [ 149.848022, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.533978 ], [ 150.809326, -5.457427 ], [ 151.089478, -5.112830 ], [ 151.649780, -4.757098 ], [ 151.539917, -4.165637 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.654541, -5.041699 ], [ 154.758911, -5.342583 ], [ 155.061035, -5.566783 ], [ 155.549927, -6.200629 ], [ 156.022339, -6.539103 ], [ 155.879517, -6.817353 ], [ 155.599365, -6.920974 ], [ 155.165405, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.140186 ], [ 154.654541, -5.041699 ] ] ], [ [ [ 150.941162, -2.498597 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.638550, -3.661446 ], [ 153.017578, -3.979341 ], [ 153.138428, -4.499762 ], [ 152.825317, -4.768047 ], [ 152.638550, -4.176594 ], [ 152.407837, -3.787522 ], [ 151.951904, -3.464074 ], [ 151.386108, -3.036298 ], [ 150.661011, -2.740044 ], [ 150.941162, -2.498597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.538696, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 156.901245, -7.171751 ], [ 156.489258, -6.762806 ], [ 156.538696, -6.599131 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.313433 ], [ 157.538452, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.340698, -7.406048 ], [ 156.901245, -7.177201 ], [ 156.489258, -6.768261 ], [ 156.544189, -6.599131 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.394043, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.910400, 39.993956 ], [ 141.882935, 39.181175 ], [ 140.954590, 38.177751 ], [ 140.971069, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.142371 ], [ 138.971558, 34.669359 ], [ 137.213745, 34.610606 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.604492, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.719360, 37.309014 ], [ 137.389526, 36.831272 ], [ 139.421997, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.877930, 40.563895 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 140.960083, 41.310824 ], [ 141.394043, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.152727 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.388550, 41.310824 ], [ 141.520386, 40.979898 ], [ 141.915894, 39.989747 ], [ 141.882935, 39.181175 ], [ 140.960083, 38.173433 ], [ 140.976562, 37.142803 ], [ 140.597534, 36.346103 ], [ 140.773315, 35.844535 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.606085 ], [ 135.791016, 33.463525 ], [ 135.120850, 33.847608 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 134.560547, 34.533712 ], [ 134.560547, 35.728677 ], [ 134.609985, 35.733136 ], [ 135.000000, 35.661759 ], [ 135.675659, 35.527756 ], [ 136.724854, 37.304645 ], [ 137.389526, 36.826875 ], [ 139.427490, 38.216604 ], [ 140.053711, 39.440435 ], [ 139.883423, 40.563895 ], [ 140.158081, 40.979898 ], [ 140.306396, 41.195190 ], [ 140.976562, 41.310824 ], [ 141.388550, 41.310824 ] ] ], [ [ [ 134.560547, 34.175453 ], [ 134.637451, 34.148181 ], [ 134.763794, 33.806538 ], [ 134.560547, 33.591743 ], [ 134.560547, 34.175453 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.191772, 56.022948 ], [ 136.790771, 55.776573 ], [ 135.120850, 54.730964 ], [ 136.697388, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.255598 ], [ 139.899902, 54.191370 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.241256 ], [ 140.592041, 51.241286 ], [ 140.509644, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 47.002734 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.147179 ], [ 135.510864, 43.992815 ], [ 135.000000, 43.524655 ], [ 134.868164, 43.401056 ], [ 134.560547, 43.269206 ], [ 134.560547, 47.687579 ], [ 135.000000, 48.443778 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.476563 ], [ 134.560547, 48.400032 ], [ 134.560547, 56.022948 ], [ 137.191772, 56.022948 ] ] ], [ [ [ 142.651978, 54.367759 ], [ 142.910156, 53.706462 ], [ 143.256226, 52.742943 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.750359 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.864774 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.743625 ], [ 142.091675, 45.970243 ], [ 141.904907, 46.807580 ], [ 142.014771, 47.783635 ], [ 141.899414, 48.861101 ], [ 142.135620, 49.617828 ], [ 142.179565, 50.954967 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.764949 ], [ 142.207031, 54.226708 ], [ 142.651978, 54.367759 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.761040 ], [ 157.500000, 51.477962 ], [ 156.785889, 51.013755 ], [ 156.417847, 51.703204 ], [ 155.989380, 53.159947 ], [ 155.429077, 55.382231 ], [ 155.560913, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.197266, 56.022948 ], [ 136.796265, 55.776573 ], [ 135.126343, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.191772, 53.978705 ], [ 138.164062, 53.755207 ], [ 138.806763, 54.255598 ], [ 139.899902, 54.188155 ], [ 141.344604, 53.090725 ], [ 141.377563, 52.237892 ], [ 140.597534, 51.241286 ], [ 140.515137, 50.046557 ], [ 140.059204, 48.447422 ], [ 138.554077, 46.998988 ], [ 138.218994, 46.308996 ], [ 136.862183, 45.143305 ], [ 135.516357, 43.988862 ], [ 135.000000, 43.520672 ], [ 134.868164, 43.397065 ], [ 134.560547, 43.265206 ], [ 134.560547, 47.683881 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 134.560547, 48.396385 ], [ 134.560547, 56.022948 ], [ 137.197266, 56.022948 ] ] ], [ [ [ 142.657471, 54.364558 ], [ 142.915649, 53.703211 ], [ 143.261719, 52.739618 ], [ 143.234253, 51.757640 ], [ 143.646240, 50.746884 ], [ 144.651489, 48.976612 ], [ 143.173828, 49.307217 ], [ 142.558594, 47.861089 ], [ 143.530884, 46.837650 ], [ 143.503418, 46.137977 ], [ 142.745361, 46.739861 ], [ 142.091675, 45.966425 ], [ 141.904907, 46.807580 ], [ 142.020264, 47.779943 ], [ 141.904907, 48.857487 ], [ 142.135620, 49.614269 ], [ 142.179565, 50.951506 ], [ 141.591797, 51.934105 ], [ 141.685181, 53.301338 ], [ 142.608032, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.364558 ] ] ], [ [ [ 157.939453, 56.022948 ], [ 157.939453, 51.757640 ], [ 157.500000, 51.474540 ], [ 156.791382, 51.010299 ], [ 156.417847, 51.699800 ], [ 155.989380, 53.159947 ], [ 155.434570, 55.382231 ], [ 155.566406, 55.776573 ], [ 155.648804, 56.022948 ], [ 157.939453, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.021973, 48.480204 ], [ 135.000000, 48.443778 ], [ 134.560547, 47.687579 ], [ 134.560547, 48.400032 ], [ 135.000000, 48.476563 ], [ 135.021973, 48.480204 ] ] ] } } +{ "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.560547, 47.683881 ], [ 134.560547, 48.396385 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.380930 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.932861, 40.647304 ], [ 140.152588, 40.979898 ], [ 140.300903, 41.195190 ], [ 141.366577, 41.380930 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.316162, 44.386692 ], [ 145.541382, 43.265206 ], [ 144.058228, 42.988576 ], [ 143.179321, 41.996243 ], [ 141.608276, 42.682435 ], [ 141.064453, 41.586688 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.337165 ], [ 141.377563, 43.389082 ], [ 141.668701, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Japan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.366577, 41.376809 ], [ 141.520386, 40.979898 ], [ 141.652222, 40.647304 ], [ 139.938354, 40.647304 ], [ 140.158081, 40.979898 ], [ 140.306396, 41.195190 ], [ 141.366577, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.321655, 44.386692 ], [ 145.541382, 43.261206 ], [ 144.058228, 42.988576 ], [ 143.184814, 41.996243 ], [ 141.613770, 42.678397 ], [ 141.069946, 41.582580 ], [ 139.954834, 41.570252 ], [ 139.817505, 42.565219 ], [ 140.311890, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.674194, 44.774036 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.598559 ], [ 157.500000, 61.541024 ], [ 156.719971, 61.436141 ], [ 154.215088, 59.759162 ], [ 155.039062, 59.144952 ], [ 152.808838, 58.884781 ], [ 151.265259, 58.782438 ], [ 151.336670, 59.506455 ], [ 149.782104, 59.656642 ], [ 148.540649, 59.164668 ], [ 145.486450, 59.338792 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 136.790771, 55.776573 ], [ 136.389771, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.598559 ] ] ], [ [ [ 157.939453, 57.999366 ], [ 157.939453, 55.528631 ], [ 155.478516, 55.528631 ], [ 155.560913, 55.776573 ], [ 155.912476, 56.770788 ], [ 156.752930, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.935267 ], [ 157.939453, 57.999366 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.939453, 61.595946 ], [ 157.500000, 61.538406 ], [ 156.719971, 61.433515 ], [ 154.220581, 59.759162 ], [ 155.044556, 59.144952 ], [ 152.814331, 58.884781 ], [ 151.265259, 58.779591 ], [ 151.336670, 59.503667 ], [ 149.782104, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.486450, 59.335991 ], [ 142.196045, 59.040555 ], [ 138.960571, 57.088515 ], [ 136.796265, 55.776573 ], [ 136.395264, 55.528631 ], [ 134.560547, 55.528631 ], [ 134.560547, 66.687784 ], [ 157.939453, 66.687784 ], [ 157.939453, 61.595946 ] ] ], [ [ [ 157.939453, 57.996455 ], [ 157.939453, 55.528631 ], [ 155.484009, 55.528631 ], [ 155.566406, 55.776573 ], [ 155.912476, 56.767778 ], [ 156.758423, 57.365052 ], [ 156.807861, 57.833055 ], [ 157.500000, 57.932351 ], [ 157.939453, 57.996455 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.496460, 72.200284 ], [ 150.347900, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.033035 ], [ 157.500000, 70.993717 ], [ 157.939453, 70.956113 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.560303, 71.656749 ], [ 137.493896, 71.348285 ], [ 138.229980, 71.629069 ], [ 139.866943, 71.488319 ], [ 139.147339, 72.417291 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.058716, 73.858452 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.214013 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.318400 ], [ 139.861450, 73.370356 ], [ 140.806274, 73.766569 ], [ 142.058716, 73.858452 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.465698, 72.850122 ], [ 149.501953, 72.200284 ], [ 150.353394, 71.606549 ], [ 152.968140, 70.842870 ], [ 157.005615, 71.031249 ], [ 157.500000, 70.991928 ], [ 157.939453, 70.954320 ], [ 157.939453, 66.337505 ], [ 134.560547, 66.337505 ], [ 134.560547, 71.498780 ], [ 135.000000, 71.568378 ], [ 135.560303, 71.655020 ], [ 137.499390, 71.348285 ], [ 138.235474, 71.627338 ], [ 139.872437, 71.488319 ], [ 139.147339, 72.415631 ], [ 140.465698, 72.850122 ] ] ], [ [ [ 142.064209, 73.856925 ], [ 143.481445, 73.475361 ], [ 143.602295, 73.212427 ], [ 142.086182, 73.206079 ], [ 140.037231, 73.316823 ], [ 139.861450, 73.370356 ], [ 140.811768, 73.765033 ], [ 142.064209, 73.856925 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 14, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.137695 ], [ 141.470947, 76.094197 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.608521, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.262841 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.137695 ] ] ], [ [ [ 146.354370, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.726929, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.354370, 75.497157 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.828735, 76.136379 ], [ 141.470947, 76.092877 ], [ 145.085449, 75.563041 ], [ 144.299927, 74.820496 ], [ 140.614014, 74.847801 ], [ 138.955078, 74.611988 ], [ 136.972046, 75.261444 ], [ 137.510376, 75.949568 ], [ 138.828735, 76.136379 ] ] ], [ [ [ 146.359863, 75.497157 ], [ 148.222046, 75.346451 ], [ 150.732422, 75.084326 ], [ 149.573364, 74.689053 ], [ 147.974854, 74.778728 ], [ 146.118164, 75.173143 ], [ 146.359863, 75.497157 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.690552, -82.620052 ], [ 164.943237, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.892822, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413433 ], [ 175.984497, -84.158613 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.054932, -84.721232 ], [ 180.439453, -84.475122 ], [ 180.439453, -85.088894 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.690552, -82.620052 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.696045, -82.620052 ], [ 164.948730, -82.676285 ], [ 166.602173, -83.022216 ], [ 168.898315, -83.335967 ], [ 169.403687, -83.825811 ], [ 172.282104, -84.041167 ], [ 173.221436, -84.413967 ], [ 175.984497, -84.159172 ], [ 178.275146, -84.472477 ], [ 180.000000, -84.713140 ], [ 180.054932, -84.721232 ], [ 180.439453, -84.475122 ], [ 180.439453, -85.088894 ], [ 180.000000, -85.088894 ], [ 157.060547, -85.088894 ], [ 157.060547, -82.620052 ], [ 164.696045, -82.620052 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.905029, -79.088462 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.200241 ], [ 160.312500, -80.572647 ], [ 159.785156, -80.944867 ], [ 161.119995, -81.278386 ], [ 161.625366, -81.689909 ], [ 162.487793, -82.061687 ], [ 163.701782, -82.395157 ], [ 164.943237, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.905029, -79.088462 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 163.910522, -79.088462 ], [ 163.668823, -79.122722 ], [ 161.768188, -79.162043 ], [ 161.751709, -79.171335 ], [ 160.922241, -79.730364 ], [ 160.746460, -80.201176 ], [ 160.317993, -80.572647 ], [ 159.790649, -80.945731 ], [ 161.119995, -81.278386 ], [ 161.630859, -81.689909 ], [ 162.493286, -82.062446 ], [ 163.707275, -82.395157 ], [ 164.948730, -82.676285 ], [ 165.201416, -82.732092 ], [ 157.060547, -82.732092 ], [ 157.060547, -79.088462 ], [ 163.910522, -79.088462 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.827148, -73.898111 ], [ 167.623901, -74.019543 ], [ 167.382202, -74.164085 ], [ 166.091309, -74.379992 ], [ 165.640869, -74.771515 ], [ 164.954224, -75.145003 ], [ 164.229126, -75.458589 ], [ 163.822632, -75.869328 ], [ 163.564453, -76.241286 ], [ 163.465576, -76.692435 ], [ 163.487549, -77.065265 ], [ 164.053345, -77.456488 ], [ 164.273071, -77.829115 ], [ 164.739990, -78.181838 ], [ 166.602173, -78.319421 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.907100 ], [ 163.663330, -79.122722 ], [ 161.762695, -79.162043 ], [ 161.746216, -79.171335 ], [ 161.625366, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.827148, -73.898111 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.832642, -73.898111 ], [ 167.629395, -74.019543 ], [ 167.387695, -74.165584 ], [ 166.096802, -74.381471 ], [ 165.646362, -74.772958 ], [ 164.959717, -75.145003 ], [ 164.234619, -75.458589 ], [ 163.822632, -75.870669 ], [ 163.569946, -76.242592 ], [ 163.471069, -76.693699 ], [ 163.487549, -77.065265 ], [ 164.058838, -77.457681 ], [ 164.273071, -77.830273 ], [ 164.745483, -78.182963 ], [ 166.602173, -78.319421 ], [ 166.997681, -78.750659 ], [ 165.195923, -78.907100 ], [ 163.668823, -79.122722 ], [ 161.768188, -79.162043 ], [ 161.751709, -79.171335 ], [ 161.630859, -79.253586 ], [ 157.060547, -79.253586 ], [ 157.060547, -73.898111 ], [ 167.832642, -73.898111 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.021851, -69.480672 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.990535 ], [ 160.801392, -70.226028 ], [ 161.570435, -70.577938 ], [ 162.685547, -70.736230 ], [ 163.839111, -70.716285 ], [ 164.915771, -70.774252 ], [ 166.113281, -70.754345 ], [ 167.305298, -70.833855 ], [ 168.420410, -70.970447 ], [ 169.458618, -71.205460 ], [ 170.496826, -71.400917 ], [ 171.205444, -71.696469 ], [ 171.084595, -72.087432 ], [ 170.557251, -72.440507 ], [ 170.106812, -72.890570 ], [ 169.755249, -73.244129 ], [ 169.282837, -73.655637 ], [ 167.969971, -73.812574 ], [ 167.623901, -74.019543 ], [ 167.420654, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.060547, -69.403514 ], [ 157.500000, -69.438269 ], [ 158.027344, -69.482597 ], [ 159.180908, -69.599720 ], [ 159.669800, -69.992415 ], [ 160.806885, -70.226028 ], [ 161.570435, -70.579765 ], [ 162.685547, -70.736230 ], [ 163.844604, -70.716285 ], [ 164.921265, -70.776061 ], [ 166.113281, -70.756155 ], [ 167.310791, -70.833855 ], [ 168.425903, -70.972238 ], [ 169.464111, -71.207229 ], [ 170.502319, -71.402669 ], [ 171.205444, -71.696469 ], [ 171.090088, -72.089122 ], [ 170.562744, -72.440507 ], [ 169.755249, -73.244129 ], [ 169.288330, -73.655637 ], [ 167.975464, -73.812574 ], [ 167.629395, -74.019543 ], [ 167.426147, -74.140084 ], [ 157.060547, -74.140084 ], [ 157.060547, -69.403514 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.243408, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.347948 ], [ 174.243164, -41.767215 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.369119 ], [ 173.078613, -43.850374 ], [ 172.304077, -43.862258 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.894796 ], [ 170.612183, -45.905300 ], [ 169.332275, -46.638122 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.041626, -45.108423 ], [ 168.299561, -44.123085 ], [ 168.947754, -43.933506 ], [ 169.667358, -43.552529 ], [ 170.524292, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.237427, -41.685220 ], [ 175.067139, -41.422134 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.089111, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.875366, -40.647304 ], [ 173.051147, -40.979898 ], [ 173.248901, -41.331451 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.248657, -41.347948 ], [ 174.248657, -41.771312 ], [ 173.875122, -42.232585 ], [ 173.221436, -42.968482 ], [ 172.710571, -43.373112 ], [ 173.078613, -43.854336 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.241264 ], [ 171.183472, -44.898687 ], [ 170.617676, -45.909122 ], [ 169.332275, -46.641894 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.290020 ], [ 166.679077, -46.221652 ], [ 166.508789, -45.851760 ], [ 167.047119, -45.112300 ], [ 168.305054, -44.123085 ], [ 168.947754, -43.937462 ], [ 169.667358, -43.556510 ], [ 170.524292, -43.032761 ], [ 171.123047, -42.512602 ], [ 171.567993, -41.767215 ], [ 171.947021, -41.512691 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.562256, -40.647304 ], [ 172.875366, -40.647304 ] ] ], [ [ [ 176.473389, -40.647304 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.290190 ], [ 175.237427, -41.689322 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.281935 ], [ 174.858398, -40.979898 ], [ 175.094604, -40.647304 ], [ 176.473389, -40.647304 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.376953, -21.534847 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.739502, -22.395793 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.376953, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.382446, -21.534847 ], [ 166.602173, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.161971 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.131443 ], [ 165.888062, -21.943046 ], [ 165.476074, -21.677848 ], [ 165.294800, -21.534847 ], [ 166.382446, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.226929, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.001709, -34.447689 ], [ 173.551025, -35.003003 ], [ 174.325562, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.352783, -36.522881 ], [ 175.808716, -36.796090 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.879189 ], [ 177.434692, -37.957192 ], [ 178.005981, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.269653, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.203979, -39.142842 ], [ 176.934814, -39.448919 ], [ 177.028198, -39.876019 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.962524, -41.310824 ], [ 174.743042, -41.310824 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.455307 ], [ 174.896851, -39.905523 ], [ 173.820190, -39.508279 ], [ 173.847656, -39.142842 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.708064 ], [ 174.314575, -36.531709 ], [ 173.836670, -36.120128 ], [ 173.051147, -35.236646 ], [ 172.633667, -34.524661 ], [ 173.001709, -34.447689 ] ] ], [ [ [ 173.276367, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.215698, -41.310824 ], [ 173.276367, -41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Zealand" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.798462, -40.492915 ], [ 173.018188, -40.917664 ], [ 173.051147, -40.979898 ], [ 173.232422, -41.310824 ], [ 171.996460, -41.310824 ], [ 172.084351, -40.979898 ], [ 172.095337, -40.955011 ], [ 172.798462, -40.492915 ] ] ], [ [ [ 173.007202, -34.452218 ], [ 173.551025, -35.007503 ], [ 174.331055, -35.263562 ], [ 174.611206, -36.155618 ], [ 175.336304, -37.208457 ], [ 175.358276, -36.527295 ], [ 175.808716, -36.800488 ], [ 175.957031, -37.553288 ], [ 176.764526, -37.879189 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.696861 ], [ 178.275146, -38.582526 ], [ 177.973022, -39.168400 ], [ 177.209473, -39.147103 ], [ 176.940308, -39.448919 ], [ 177.033691, -39.880235 ], [ 176.885376, -40.065461 ], [ 176.231689, -40.979898 ], [ 176.011963, -41.290190 ], [ 175.968018, -41.310824 ], [ 174.732056, -41.310824 ], [ 174.649658, -41.281935 ], [ 174.858398, -40.979898 ], [ 175.226440, -40.459487 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.508279 ], [ 173.853149, -39.147103 ], [ 174.572754, -38.796908 ], [ 174.743042, -38.026459 ], [ 174.699097, -37.383253 ], [ 174.292603, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.842163, -36.120128 ], [ 173.056641, -35.236646 ], [ 172.633667, -34.529187 ], [ 173.007202, -34.452218 ] ] ], [ [ [ 173.281860, -41.310824 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.925965 ], [ 173.990479, -40.979898 ], [ 174.221191, -41.310824 ], [ 173.281860, -41.310824 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.368530, -17.334908 ], [ 178.714600, -17.628317 ], [ 178.549805, -18.145852 ], [ 177.929077, -18.286734 ], [ 177.379761, -18.161511 ], [ 177.280884, -17.722526 ], [ 177.665405, -17.376853 ], [ 178.121338, -17.502628 ], [ 178.368530, -17.334908 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.203247, -16.019416 ], [ 180.082397, -16.499299 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.799282 ], [ 178.720093, -17.009515 ], [ 178.593750, -16.636192 ], [ 179.093628, -16.430816 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.720093, -17.628317 ], [ 178.555298, -18.151072 ], [ 177.934570, -18.286734 ], [ 177.379761, -18.166730 ], [ 177.286377, -17.722526 ], [ 177.670898, -17.382095 ], [ 178.126831, -17.502628 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.019416 ], [ 180.082397, -16.499299 ], [ 180.000000, -16.557227 ], [ 179.362793, -16.799282 ], [ 178.725586, -17.009515 ], [ 178.599243, -16.641455 ], [ 179.099121, -16.436085 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.201407 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.482410 ], [ 162.394409, -10.822515 ], [ 161.696777, -10.817120 ], [ 161.317749, -10.201407 ] ] ], [ [ [ 159.702759, -9.237671 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.606166 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.845581, -9.790264 ], [ 159.636841, -9.638661 ], [ 159.702759, -9.237671 ] ] ], [ [ [ 160.916748, -8.314777 ], [ 161.279297, -9.118368 ], [ 161.674805, -9.595334 ], [ 161.526489, -9.779438 ], [ 160.784912, -8.912207 ], [ 160.576172, -8.314777 ], [ 160.916748, -8.314777 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.636841, -8.015716 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.582153, -7.754537 ], [ 158.208618, -7.416942 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.532959, -7.346123 ], [ 157.500000, -7.351571 ], [ 157.335205, -7.400600 ], [ 157.060547, -7.253496 ], [ 157.060547, -6.964597 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.317749, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.119751, -10.482410 ], [ 162.399902, -10.827911 ], [ 161.702271, -10.822515 ], [ 161.317749, -10.206813 ] ] ], [ [ [ 159.702759, -9.243093 ], [ 160.361938, -9.400291 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.460815, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.638661 ], [ 159.702759, -9.243093 ] ] ], [ [ [ 160.922241, -8.320212 ], [ 161.279297, -9.118368 ], [ 161.680298, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.790405, -8.917634 ], [ 160.581665, -8.320212 ], [ 160.922241, -8.320212 ] ] ], [ [ [ 158.362427, -7.318882 ], [ 158.818359, -7.558547 ], [ 159.642334, -8.021155 ], [ 159.873047, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.131470, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.208618, -7.422389 ], [ 158.362427, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.019120 ], [ 157.500000, -7.313433 ], [ 157.538452, -7.346123 ], [ 157.500000, -7.357019 ], [ 157.340698, -7.406048 ], [ 157.060547, -7.258945 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.843628, -16.462427 ], [ 167.514038, -16.594081 ], [ 167.178955, -16.156645 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.624146, -14.626109 ], [ 167.107544, -14.928862 ], [ 167.266846, -15.739388 ], [ 166.997681, -15.612456 ], [ 166.788940, -15.665354 ], [ 166.646118, -15.390136 ], [ 166.624146, -14.626109 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Vanuatu" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.217407, -15.892659 ], [ 167.843628, -16.467695 ], [ 167.514038, -16.599346 ], [ 167.178955, -16.161921 ], [ 167.217407, -15.892659 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.107544, -14.934170 ], [ 167.272339, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.670643 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.025879, -20.102365 ], [ 164.459839, -20.117840 ], [ 165.014648, -20.457896 ], [ 165.459595, -20.797201 ], [ 165.778198, -21.079375 ], [ 166.596680, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.156883 ], [ 166.810913, -22.350076 ], [ 166.640625, -22.350076 ], [ 166.184692, -22.126355 ], [ 165.888062, -21.943046 ], [ 165.470581, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.163208, -20.442455 ], [ 164.025879, -20.102365 ] ] ] } } +{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.031372, -20.107523 ], [ 164.459839, -20.117840 ], [ 165.020142, -20.457896 ], [ 165.459595, -20.802337 ], [ 165.778198, -21.079375 ], [ 166.602173, -21.698265 ], [ 166.871338, -21.943046 ], [ 167.118530, -22.161971 ], [ 166.816406, -22.350076 ], [ 166.635132, -22.350076 ], [ 166.190186, -22.131443 ], [ 165.888062, -21.943046 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.151115 ], [ 164.168701, -20.442455 ], [ 164.031372, -20.107523 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.070312, 56.022948 ], [ 161.943970, 55.776573 ], [ 161.696777, 55.288501 ], [ 162.114258, 54.857640 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.527222, 52.961875 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.477962 ], [ 157.060547, 51.193115 ], [ 157.060547, 56.022948 ], [ 162.070312, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 162.075806, 56.022948 ], [ 161.949463, 55.776573 ], [ 161.702271, 55.285372 ], [ 162.119751, 54.854478 ], [ 160.367432, 54.345351 ], [ 160.021362, 53.202742 ], [ 158.532715, 52.958566 ], [ 158.230591, 51.944265 ], [ 157.500000, 51.474540 ], [ 157.060547, 51.189673 ], [ 157.060547, 56.022948 ], [ 162.075806, 56.022948 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.439453, 66.687784 ], [ 180.439453, 65.941993 ], [ 180.115356, 65.874725 ], [ 180.439453, 65.540270 ], [ 180.439453, 65.311829 ], [ 180.000000, 64.981682 ], [ 179.989014, 64.974712 ], [ 178.703613, 64.536634 ], [ 177.407227, 64.609749 ], [ 178.308105, 64.077003 ], [ 178.906860, 63.253412 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.570575 ], [ 179.225464, 62.306241 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.770525 ], [ 173.677368, 61.653379 ], [ 172.144775, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.326538, 59.883425 ], [ 168.898315, 60.576175 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.871826, 59.734253 ], [ 163.536987, 59.869641 ], [ 163.212891, 59.212500 ], [ 162.015381, 58.245946 ], [ 162.048340, 57.841827 ], [ 163.190918, 57.615992 ], [ 163.053589, 56.160847 ], [ 162.125244, 56.124122 ], [ 161.943970, 55.776573 ], [ 161.817627, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.935267 ], [ 158.362427, 58.057538 ], [ 160.147705, 59.316375 ], [ 161.867065, 60.343260 ], [ 163.668823, 61.143235 ], [ 164.470825, 62.552857 ], [ 163.256836, 62.466646 ], [ 162.652588, 61.642945 ], [ 160.120239, 60.546476 ], [ 159.301758, 61.775721 ], [ 157.500000, 61.541024 ], [ 157.060547, 61.483382 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 180.000000, 66.687784 ], [ 180.439453, 66.687784 ], [ 180.439453, 65.939754 ], [ 180.115356, 65.874725 ], [ 180.439453, 65.537996 ], [ 180.439453, 65.309535 ], [ 180.000000, 64.979359 ], [ 180.000000, 66.513260 ], [ 179.994507, 64.974712 ], [ 178.709106, 64.534272 ], [ 177.412720, 64.607393 ], [ 178.313599, 64.077003 ], [ 178.906860, 63.250939 ], [ 179.368286, 62.982684 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.567261, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.150269, 60.949110 ], [ 170.700073, 60.335105 ], [ 170.332031, 59.880668 ], [ 168.898315, 60.573476 ], [ 166.294556, 59.789580 ], [ 165.838623, 60.160643 ], [ 164.877319, 59.731485 ], [ 163.536987, 59.869641 ], [ 163.218384, 59.209688 ], [ 162.015381, 58.243055 ], [ 162.053833, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.130737, 56.121060 ], [ 161.949463, 55.776573 ], [ 161.823120, 55.528631 ], [ 157.060547, 55.528631 ], [ 157.060547, 57.871053 ], [ 157.500000, 57.932351 ], [ 158.362427, 58.054632 ], [ 160.153198, 59.313571 ], [ 161.872559, 60.343260 ], [ 163.668823, 61.140584 ], [ 164.470825, 62.550325 ], [ 163.256836, 62.466646 ], [ 162.658081, 61.642945 ], [ 160.120239, 60.543775 ], [ 159.301758, 61.773123 ], [ 157.500000, 61.538406 ], [ 157.060547, 61.480760 ], [ 157.060547, 66.687784 ], [ 180.000000, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.029464 ], [ 157.500000, 70.993717 ], [ 158.994141, 70.868091 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.723818 ], [ 160.938721, 69.438269 ], [ 162.279053, 69.643715 ], [ 164.047852, 69.668541 ], [ 165.937500, 69.472969 ], [ 167.832642, 69.584396 ], [ 169.573975, 68.694509 ], [ 170.815430, 69.015513 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.638916, 69.818786 ], [ 175.720825, 69.877452 ], [ 178.599243, 69.401582 ], [ 180.000000, 68.964307 ], [ 180.439453, 68.829818 ], [ 180.439453, 66.337505 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.029464 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.126343, 71.557955 ], [ 180.439453, 71.557955 ], [ 180.439453, 70.855485 ], [ 180.000000, 70.833855 ], [ 178.901367, 70.781486 ], [ 178.720093, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 157.060547, 71.027678 ], [ 157.500000, 70.991928 ], [ 158.999634, 70.866291 ], [ 159.829102, 70.453346 ], [ 159.708252, 69.721915 ], [ 160.938721, 69.436340 ], [ 162.279053, 69.641804 ], [ 164.053345, 69.668541 ], [ 165.942993, 69.471042 ], [ 167.838135, 69.582480 ], [ 169.579468, 68.694509 ], [ 170.815430, 69.013546 ], [ 170.007935, 69.653267 ], [ 170.452881, 70.097399 ], [ 173.644409, 69.816891 ], [ 175.726318, 69.877452 ], [ 178.599243, 69.399649 ], [ 180.000000, 68.964307 ], [ 180.439453, 68.829818 ], [ 180.439453, 66.337505 ], [ 180.000000, 66.337505 ], [ 157.060547, 66.337505 ], [ 157.060547, 71.027678 ] ] ], [ [ [ 180.000000, 71.516203 ], [ 180.126343, 71.557955 ], [ 180.439453, 71.557955 ], [ 180.439453, 70.853683 ], [ 180.000000, 70.832051 ], [ 178.901367, 70.781486 ], [ 178.725586, 71.098984 ], [ 180.000000, 71.516203 ] ] ] ] } } ] } ] } ] } diff --git a/tile.cpp b/tile.cpp index 23be1c780..2e8910ba0 100644 --- a/tile.cpp +++ b/tile.cpp @@ -1688,6 +1688,26 @@ bool find_partial(std::vector &partials, serial_feature &sf, ssize_t &o return false; } +static bool line_is_too_small(drawvec const &geometry, int z, int detail) { + if (geometry.size() == 0) { + return true; + } + + long long x = geometry[0].x >> (32 - detail - z); + long long y = geometry[0].y >> (32 - detail - z); + + for (auto &g : geometry) { + long long xx = g.x >> (32 - detail - z); + long long yy = g.y >> (32 - detail - z); + + if (xx != x || yy != y) { + return false; + } + } + + return true; +} + long long write_tile(FILE *geoms, std::atomic *geompos_in, char *metabase, char *stringpool, int z, unsigned tx, unsigned ty, int detail, int min_detail, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, FILE **geomfile, int minzoom, int maxzoom, double todo, std::atomic *along, long long alongminus, double gamma, int child_shards, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, std::atomic *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps, size_t tiling_seg, size_t pass, size_t passes, unsigned long long mingap, long long minextent, double fraction, const char *prefilter, const char *postfilter, struct json_object *filter, write_tile_args *arg) { int line_detail; double merge_fraction = 1; @@ -1929,6 +1949,11 @@ long long write_tile(FILE *geoms, std::atomic *geompos_in, char *meta } has_polygons = true; } + if (sf.t == VT_POLYGON || sf.t == VT_LINE) { + if (line_is_too_small(sf.geometry, z, line_detail)) { + continue; + } + } if (sf.geometry.size() > 0) { partial p; diff --git a/version.hpp b/version.hpp index 6dae7daa6..1116251ee 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v1.32.4" +#define VERSION "v1.32.5" #endif From 4fec7a162e7f6c01f307b314ea0beadf28e97b54 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Mon, 26 Nov 2018 10:22:05 -0800 Subject: [PATCH 2/2] Reduce coordinate precision so GeoJSON and geobuf have the same results --- tests/grid-unaligned/in.json | 2048 ++++---- .../out/-z11_-D7_--grid-low-zooms.json | 4568 ++++++++--------- 2 files changed, 3308 insertions(+), 3308 deletions(-) diff --git a/tests/grid-unaligned/in.json b/tests/grid-unaligned/in.json index 0f36bf022..5cb8a4c40 100644 --- a/tests/grid-unaligned/in.json +++ b/tests/grid-unaligned/in.json @@ -1,1024 +1,1024 @@ -{"type": "Feature","properties": {"Tile":45,"Long":"0.0000000","Lat":"0.0000000","KPI":165,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0000000],[0.0026270,0.0000000],[0.0026270,0.0018000],[0.0000000,0.0018000],[0.0000000,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0000000","Lat":"0.0018000","KPI":853,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0018000],[0.0026270,0.0018000],[0.0026270,0.0036000],[0.0000000,0.0036000],[0.0000000,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0000000","Lat":"0.0036000","KPI":989,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0036000],[0.0026270,0.0036000],[0.0026270,0.0054000],[0.0000000,0.0054000],[0.0000000,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0000000","Lat":"0.0054000","KPI":825,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0054000],[0.0026270,0.0054000],[0.0026270,0.0072000],[0.0000000,0.0072000],[0.0000000,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":13,"Long":"0.0000000","Lat":"0.0072000","KPI":561,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0072000],[0.0026270,0.0072000],[0.0026270,0.0090000],[0.0000000,0.0090000],[0.0000000,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0000000","Lat":"0.0090000","KPI":102,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0090000],[0.0026270,0.0090000],[0.0026270,0.0108000],[0.0000000,0.0108000],[0.0000000,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0000000","Lat":"0.0108000","KPI":926,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0108000],[0.0026270,0.0108000],[0.0026270,0.0126000],[0.0000000,0.0126000],[0.0000000,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0000000","Lat":"0.0126000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0126000],[0.0026270,0.0126000],[0.0026270,0.0144000],[0.0000000,0.0144000],[0.0000000,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0000000","Lat":"0.0144000","KPI":906,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0144000],[0.0026270,0.0144000],[0.0026270,0.0162000],[0.0000000,0.0162000],[0.0000000,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0000000","Lat":"0.0162000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0162000],[0.0026270,0.0162000],[0.0026270,0.0180000],[0.0000000,0.0180000],[0.0000000,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0000000","Lat":"0.0180000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0180000],[0.0026270,0.0180000],[0.0026270,0.0198000],[0.0000000,0.0198000],[0.0000000,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0000000","Lat":"0.0198000","KPI":628,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0198000],[0.0026270,0.0198000],[0.0026270,0.0216000],[0.0000000,0.0216000],[0.0000000,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":96,"Long":"0.0000000","Lat":"0.0216000","KPI":945,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0216000],[0.0026270,0.0216000],[0.0026270,0.0234000],[0.0000000,0.0234000],[0.0000000,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0000000","Lat":"0.0234000","KPI":32,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0234000],[0.0026270,0.0234000],[0.0026270,0.0252000],[0.0000000,0.0252000],[0.0000000,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":82,"Long":"0.0000000","Lat":"0.0252000","KPI":393,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0252000],[0.0026270,0.0252000],[0.0026270,0.0270000],[0.0000000,0.0270000],[0.0000000,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":15,"Long":"0.0000000","Lat":"0.0270000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0270000],[0.0026270,0.0270000],[0.0026270,0.0288000],[0.0000000,0.0288000],[0.0000000,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0000000","Lat":"0.0288000","KPI":520,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0288000],[0.0026270,0.0288000],[0.0026270,0.0306000],[0.0000000,0.0306000],[0.0000000,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0000000","Lat":"0.0306000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0306000],[0.0026270,0.0306000],[0.0026270,0.0324000],[0.0000000,0.0324000],[0.0000000,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0000000","Lat":"0.0324000","KPI":303,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0324000],[0.0026270,0.0324000],[0.0026270,0.0342000],[0.0000000,0.0342000],[0.0000000,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":90,"Long":"0.0000000","Lat":"0.0342000","KPI":951,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0342000],[0.0026270,0.0342000],[0.0026270,0.0360000],[0.0000000,0.0360000],[0.0000000,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0000000","Lat":"0.0360000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0360000],[0.0026270,0.0360000],[0.0026270,0.0378000],[0.0000000,0.0378000],[0.0000000,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0000000","Lat":"0.0378000","KPI":941,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0378000],[0.0026270,0.0378000],[0.0026270,0.0396000],[0.0000000,0.0396000],[0.0000000,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":26,"Long":"0.0000000","Lat":"0.0396000","KPI":441,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0396000],[0.0026270,0.0396000],[0.0026270,0.0414000],[0.0000000,0.0414000],[0.0000000,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":69,"Long":"0.0000000","Lat":"0.0414000","KPI":88,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0414000],[0.0026270,0.0414000],[0.0026270,0.0432000],[0.0000000,0.0432000],[0.0000000,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0000000","Lat":"0.0432000","KPI":405,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0432000],[0.0026270,0.0432000],[0.0026270,0.0450000],[0.0000000,0.0450000],[0.0000000,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0000000","Lat":"0.0450000","KPI":310,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0450000],[0.0026270,0.0450000],[0.0026270,0.0468000],[0.0000000,0.0468000],[0.0000000,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0000000","Lat":"0.0468000","KPI":548,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0468000],[0.0026270,0.0468000],[0.0026270,0.0486000],[0.0000000,0.0486000],[0.0000000,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0000000","Lat":"0.0486000","KPI":953,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0486000],[0.0026270,0.0486000],[0.0026270,0.0504000],[0.0000000,0.0504000],[0.0000000,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0000000","Lat":"0.0504000","KPI":692,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0504000],[0.0026270,0.0504000],[0.0026270,0.0522000],[0.0000000,0.0522000],[0.0000000,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0000000","Lat":"0.0522000","KPI":40,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0522000],[0.0026270,0.0522000],[0.0026270,0.0540000],[0.0000000,0.0540000],[0.0000000,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0000000","Lat":"0.0540000","KPI":355,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0540000],[0.0026270,0.0540000],[0.0026270,0.0558000],[0.0000000,0.0558000],[0.0000000,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0000000","Lat":"0.0558000","KPI":474,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0558000],[0.0026270,0.0558000],[0.0026270,0.0576000],[0.0000000,0.0576000],[0.0000000,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0026270","Lat":"0.0000000","KPI":533,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0000000],[0.0052541,0.0000000],[0.0052541,0.0018000],[0.0026270,0.0018000],[0.0026270,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0026270","Lat":"0.0018000","KPI":67,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0018000],[0.0052541,0.0018000],[0.0052541,0.0036000],[0.0026270,0.0036000],[0.0026270,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0026270","Lat":"0.0036000","KPI":361,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0036000],[0.0052541,0.0036000],[0.0052541,0.0054000],[0.0026270,0.0054000],[0.0026270,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0026270","Lat":"0.0054000","KPI":347,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0054000],[0.0052541,0.0054000],[0.0052541,0.0072000],[0.0026270,0.0072000],[0.0026270,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":61,"Long":"0.0026270","Lat":"0.0072000","KPI":624,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0072000],[0.0052541,0.0072000],[0.0052541,0.0090000],[0.0026270,0.0090000],[0.0026270,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":60,"Long":"0.0026270","Lat":"0.0090000","KPI":298,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0090000],[0.0052541,0.0090000],[0.0052541,0.0108000],[0.0026270,0.0108000],[0.0026270,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0026270","Lat":"0.0108000","KPI":688,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0108000],[0.0052541,0.0108000],[0.0052541,0.0126000],[0.0026270,0.0126000],[0.0026270,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0026270","Lat":"0.0126000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0126000],[0.0052541,0.0126000],[0.0052541,0.0144000],[0.0026270,0.0144000],[0.0026270,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0026270","Lat":"0.0144000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0144000],[0.0052541,0.0144000],[0.0052541,0.0162000],[0.0026270,0.0162000],[0.0026270,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0026270","Lat":"0.0162000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0162000],[0.0052541,0.0162000],[0.0052541,0.0180000],[0.0026270,0.0180000],[0.0026270,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0026270","Lat":"0.0180000","KPI":718,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0180000],[0.0052541,0.0180000],[0.0052541,0.0198000],[0.0026270,0.0198000],[0.0026270,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0026270","Lat":"0.0198000","KPI":839,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0198000],[0.0052541,0.0198000],[0.0052541,0.0216000],[0.0026270,0.0216000],[0.0026270,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":53,"Long":"0.0026270","Lat":"0.0216000","KPI":993,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0216000],[0.0052541,0.0216000],[0.0052541,0.0234000],[0.0026270,0.0234000],[0.0026270,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":12,"Long":"0.0026270","Lat":"0.0234000","KPI":577,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0234000],[0.0052541,0.0234000],[0.0052541,0.0252000],[0.0026270,0.0252000],[0.0026270,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":6,"Long":"0.0026270","Lat":"0.0252000","KPI":445,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0252000],[0.0052541,0.0252000],[0.0052541,0.0270000],[0.0026270,0.0270000],[0.0026270,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0026270","Lat":"0.0270000","KPI":943,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0270000],[0.0052541,0.0270000],[0.0052541,0.0288000],[0.0026270,0.0288000],[0.0026270,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0026270","Lat":"0.0288000","KPI":675,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0288000],[0.0052541,0.0288000],[0.0052541,0.0306000],[0.0026270,0.0306000],[0.0026270,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0026270","Lat":"0.0306000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0306000],[0.0052541,0.0306000],[0.0052541,0.0324000],[0.0026270,0.0324000],[0.0026270,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":96,"Long":"0.0026270","Lat":"0.0324000","KPI":732,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0324000],[0.0052541,0.0324000],[0.0052541,0.0342000],[0.0026270,0.0342000],[0.0026270,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":53,"Long":"0.0026270","Lat":"0.0342000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0342000],[0.0052541,0.0342000],[0.0052541,0.0360000],[0.0026270,0.0360000],[0.0026270,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0026270","Lat":"0.0360000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0360000],[0.0052541,0.0360000],[0.0052541,0.0378000],[0.0026270,0.0378000],[0.0026270,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0026270","Lat":"0.0378000","KPI":867,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0378000],[0.0052541,0.0378000],[0.0052541,0.0396000],[0.0026270,0.0396000],[0.0026270,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":55,"Long":"0.0026270","Lat":"0.0396000","KPI":927,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0396000],[0.0052541,0.0396000],[0.0052541,0.0414000],[0.0026270,0.0414000],[0.0026270,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0026270","Lat":"0.0414000","KPI":718,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0414000],[0.0052541,0.0414000],[0.0052541,0.0432000],[0.0026270,0.0432000],[0.0026270,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0026270","Lat":"0.0432000","KPI":588,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0432000],[0.0052541,0.0432000],[0.0052541,0.0450000],[0.0026270,0.0450000],[0.0026270,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0026270","Lat":"0.0450000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0450000],[0.0052541,0.0450000],[0.0052541,0.0468000],[0.0026270,0.0468000],[0.0026270,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0026270","Lat":"0.0468000","KPI":510,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0468000],[0.0052541,0.0468000],[0.0052541,0.0486000],[0.0026270,0.0486000],[0.0026270,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0026270","Lat":"0.0486000","KPI":871,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0486000],[0.0052541,0.0486000],[0.0052541,0.0504000],[0.0026270,0.0504000],[0.0026270,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0026270","Lat":"0.0504000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0504000],[0.0052541,0.0504000],[0.0052541,0.0522000],[0.0026270,0.0522000],[0.0026270,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0026270","Lat":"0.0522000","KPI":116,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0522000],[0.0052541,0.0522000],[0.0052541,0.0540000],[0.0026270,0.0540000],[0.0026270,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0026270","Lat":"0.0540000","KPI":734,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0540000],[0.0052541,0.0540000],[0.0052541,0.0558000],[0.0026270,0.0558000],[0.0026270,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":96,"Long":"0.0026270","Lat":"0.0558000","KPI":434,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026270,0.0558000],[0.0052541,0.0558000],[0.0052541,0.0576000],[0.0026270,0.0576000],[0.0026270,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0052541","Lat":"0.0000000","KPI":3,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0000000],[0.0078811,0.0000000],[0.0078811,0.0018000],[0.0052541,0.0018000],[0.0052541,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0052541","Lat":"0.0018000","KPI":327,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0018000],[0.0078811,0.0018000],[0.0078811,0.0036000],[0.0052541,0.0036000],[0.0052541,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0052541","Lat":"0.0036000","KPI":430,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0036000],[0.0078811,0.0036000],[0.0078811,0.0054000],[0.0052541,0.0054000],[0.0052541,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":44,"Long":"0.0052541","Lat":"0.0054000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0054000],[0.0078811,0.0054000],[0.0078811,0.0072000],[0.0052541,0.0072000],[0.0052541,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0052541","Lat":"0.0072000","KPI":633,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0072000],[0.0078811,0.0072000],[0.0078811,0.0090000],[0.0052541,0.0090000],[0.0052541,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0052541","Lat":"0.0090000","KPI":161,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0090000],[0.0078811,0.0090000],[0.0078811,0.0108000],[0.0052541,0.0108000],[0.0052541,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0052541","Lat":"0.0108000","KPI":432,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0108000],[0.0078811,0.0108000],[0.0078811,0.0126000],[0.0052541,0.0126000],[0.0052541,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":88,"Long":"0.0052541","Lat":"0.0126000","KPI":49,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0126000],[0.0078811,0.0126000],[0.0078811,0.0144000],[0.0052541,0.0144000],[0.0052541,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0052541","Lat":"0.0144000","KPI":224,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0144000],[0.0078811,0.0144000],[0.0078811,0.0162000],[0.0052541,0.0162000],[0.0052541,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0052541","Lat":"0.0162000","KPI":361,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0162000],[0.0078811,0.0162000],[0.0078811,0.0180000],[0.0052541,0.0180000],[0.0052541,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0052541","Lat":"0.0180000","KPI":316,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0180000],[0.0078811,0.0180000],[0.0078811,0.0198000],[0.0052541,0.0198000],[0.0052541,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":52,"Long":"0.0052541","Lat":"0.0198000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0198000],[0.0078811,0.0198000],[0.0078811,0.0216000],[0.0052541,0.0216000],[0.0052541,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0052541","Lat":"0.0216000","KPI":254,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0216000],[0.0078811,0.0216000],[0.0078811,0.0234000],[0.0052541,0.0234000],[0.0052541,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":26,"Long":"0.0052541","Lat":"0.0234000","KPI":254,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0234000],[0.0078811,0.0234000],[0.0078811,0.0252000],[0.0052541,0.0252000],[0.0052541,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":66,"Long":"0.0052541","Lat":"0.0252000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0252000],[0.0078811,0.0252000],[0.0078811,0.0270000],[0.0052541,0.0270000],[0.0052541,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0052541","Lat":"0.0270000","KPI":500,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0270000],[0.0078811,0.0270000],[0.0078811,0.0288000],[0.0052541,0.0288000],[0.0052541,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0052541","Lat":"0.0288000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0288000],[0.0078811,0.0288000],[0.0078811,0.0306000],[0.0052541,0.0306000],[0.0052541,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0052541","Lat":"0.0306000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0306000],[0.0078811,0.0306000],[0.0078811,0.0324000],[0.0052541,0.0324000],[0.0052541,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0052541","Lat":"0.0324000","KPI":36,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0324000],[0.0078811,0.0324000],[0.0078811,0.0342000],[0.0052541,0.0342000],[0.0052541,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0052541","Lat":"0.0342000","KPI":868,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0342000],[0.0078811,0.0342000],[0.0078811,0.0360000],[0.0052541,0.0360000],[0.0052541,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0052541","Lat":"0.0360000","KPI":238,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0360000],[0.0078811,0.0360000],[0.0078811,0.0378000],[0.0052541,0.0378000],[0.0052541,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0052541","Lat":"0.0378000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0378000],[0.0078811,0.0378000],[0.0078811,0.0396000],[0.0052541,0.0396000],[0.0052541,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0052541","Lat":"0.0396000","KPI":181,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0396000],[0.0078811,0.0396000],[0.0078811,0.0414000],[0.0052541,0.0414000],[0.0052541,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":98,"Long":"0.0052541","Lat":"0.0414000","KPI":683,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0414000],[0.0078811,0.0414000],[0.0078811,0.0432000],[0.0052541,0.0432000],[0.0052541,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0052541","Lat":"0.0432000","KPI":288,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0432000],[0.0078811,0.0432000],[0.0078811,0.0450000],[0.0052541,0.0450000],[0.0052541,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":90,"Long":"0.0052541","Lat":"0.0450000","KPI":782,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0450000],[0.0078811,0.0450000],[0.0078811,0.0468000],[0.0052541,0.0468000],[0.0052541,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0052541","Lat":"0.0468000","KPI":2,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0468000],[0.0078811,0.0468000],[0.0078811,0.0486000],[0.0052541,0.0486000],[0.0052541,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0052541","Lat":"0.0486000","KPI":61,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0486000],[0.0078811,0.0486000],[0.0078811,0.0504000],[0.0052541,0.0504000],[0.0052541,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0052541","Lat":"0.0504000","KPI":954,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0504000],[0.0078811,0.0504000],[0.0078811,0.0522000],[0.0052541,0.0522000],[0.0052541,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0052541","Lat":"0.0522000","KPI":11,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0522000],[0.0078811,0.0522000],[0.0078811,0.0540000],[0.0052541,0.0540000],[0.0052541,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":81,"Long":"0.0052541","Lat":"0.0540000","KPI":400,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0540000],[0.0078811,0.0540000],[0.0078811,0.0558000],[0.0052541,0.0558000],[0.0052541,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0052541","Lat":"0.0558000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052541,0.0558000],[0.0078811,0.0558000],[0.0078811,0.0576000],[0.0052541,0.0576000],[0.0052541,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0078811","Lat":"0.0000000","KPI":698,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0000000],[0.0105082,0.0000000],[0.0105082,0.0018000],[0.0078811,0.0018000],[0.0078811,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":52,"Long":"0.0078811","Lat":"0.0018000","KPI":597,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0018000],[0.0105082,0.0018000],[0.0105082,0.0036000],[0.0078811,0.0036000],[0.0078811,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0078811","Lat":"0.0036000","KPI":80,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0036000],[0.0105082,0.0036000],[0.0105082,0.0054000],[0.0078811,0.0054000],[0.0078811,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0078811","Lat":"0.0054000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0054000],[0.0105082,0.0054000],[0.0105082,0.0072000],[0.0078811,0.0072000],[0.0078811,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0078811","Lat":"0.0072000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0072000],[0.0105082,0.0072000],[0.0105082,0.0090000],[0.0078811,0.0090000],[0.0078811,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0078811","Lat":"0.0090000","KPI":364,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0090000],[0.0105082,0.0090000],[0.0105082,0.0108000],[0.0078811,0.0108000],[0.0078811,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0078811","Lat":"0.0108000","KPI":793,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0108000],[0.0105082,0.0108000],[0.0105082,0.0126000],[0.0078811,0.0126000],[0.0078811,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0078811","Lat":"0.0126000","KPI":34,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0126000],[0.0105082,0.0126000],[0.0105082,0.0144000],[0.0078811,0.0144000],[0.0078811,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0078811","Lat":"0.0144000","KPI":857,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0144000],[0.0105082,0.0144000],[0.0105082,0.0162000],[0.0078811,0.0162000],[0.0078811,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0078811","Lat":"0.0162000","KPI":287,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0162000],[0.0105082,0.0162000],[0.0105082,0.0180000],[0.0078811,0.0180000],[0.0078811,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0078811","Lat":"0.0180000","KPI":415,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0180000],[0.0105082,0.0180000],[0.0105082,0.0198000],[0.0078811,0.0198000],[0.0078811,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0078811","Lat":"0.0198000","KPI":30,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0198000],[0.0105082,0.0198000],[0.0105082,0.0216000],[0.0078811,0.0216000],[0.0078811,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0078811","Lat":"0.0216000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0216000],[0.0105082,0.0216000],[0.0105082,0.0234000],[0.0078811,0.0234000],[0.0078811,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0078811","Lat":"0.0234000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0234000],[0.0105082,0.0234000],[0.0105082,0.0252000],[0.0078811,0.0252000],[0.0078811,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":44,"Long":"0.0078811","Lat":"0.0252000","KPI":810,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0252000],[0.0105082,0.0252000],[0.0105082,0.0270000],[0.0078811,0.0270000],[0.0078811,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0078811","Lat":"0.0270000","KPI":690,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0270000],[0.0105082,0.0270000],[0.0105082,0.0288000],[0.0078811,0.0288000],[0.0078811,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0078811","Lat":"0.0288000","KPI":462,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0288000],[0.0105082,0.0288000],[0.0105082,0.0306000],[0.0078811,0.0306000],[0.0078811,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":93,"Long":"0.0078811","Lat":"0.0306000","KPI":28,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0306000],[0.0105082,0.0306000],[0.0105082,0.0324000],[0.0078811,0.0324000],[0.0078811,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0078811","Lat":"0.0324000","KPI":661,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0324000],[0.0105082,0.0324000],[0.0105082,0.0342000],[0.0078811,0.0342000],[0.0078811,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0078811","Lat":"0.0342000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0342000],[0.0105082,0.0342000],[0.0105082,0.0360000],[0.0078811,0.0360000],[0.0078811,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0078811","Lat":"0.0360000","KPI":188,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0360000],[0.0105082,0.0360000],[0.0105082,0.0378000],[0.0078811,0.0378000],[0.0078811,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0078811","Lat":"0.0378000","KPI":201,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0378000],[0.0105082,0.0378000],[0.0105082,0.0396000],[0.0078811,0.0396000],[0.0078811,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":66,"Long":"0.0078811","Lat":"0.0396000","KPI":714,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0396000],[0.0105082,0.0396000],[0.0105082,0.0414000],[0.0078811,0.0414000],[0.0078811,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0078811","Lat":"0.0414000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0414000],[0.0105082,0.0414000],[0.0105082,0.0432000],[0.0078811,0.0432000],[0.0078811,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0078811","Lat":"0.0432000","KPI":147,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0432000],[0.0105082,0.0432000],[0.0105082,0.0450000],[0.0078811,0.0450000],[0.0078811,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0078811","Lat":"0.0450000","KPI":87,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0450000],[0.0105082,0.0450000],[0.0105082,0.0468000],[0.0078811,0.0468000],[0.0078811,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0078811","Lat":"0.0468000","KPI":127,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0468000],[0.0105082,0.0468000],[0.0105082,0.0486000],[0.0078811,0.0486000],[0.0078811,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0078811","Lat":"0.0486000","KPI":551,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0486000],[0.0105082,0.0486000],[0.0105082,0.0504000],[0.0078811,0.0504000],[0.0078811,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0078811","Lat":"0.0504000","KPI":663,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0504000],[0.0105082,0.0504000],[0.0105082,0.0522000],[0.0078811,0.0522000],[0.0078811,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0078811","Lat":"0.0522000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0522000],[0.0105082,0.0522000],[0.0105082,0.0540000],[0.0078811,0.0540000],[0.0078811,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0078811","Lat":"0.0540000","KPI":864,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0540000],[0.0105082,0.0540000],[0.0105082,0.0558000],[0.0078811,0.0558000],[0.0078811,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0078811","Lat":"0.0558000","KPI":790,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078811,0.0558000],[0.0105082,0.0558000],[0.0105082,0.0576000],[0.0078811,0.0576000],[0.0078811,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0105082","Lat":"0.0000000","KPI":147,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0000000],[0.0131352,0.0000000],[0.0131352,0.0018000],[0.0105082,0.0018000],[0.0105082,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":81,"Long":"0.0105082","Lat":"0.0018000","KPI":418,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0018000],[0.0131352,0.0018000],[0.0131352,0.0036000],[0.0105082,0.0036000],[0.0105082,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0105082","Lat":"0.0036000","KPI":327,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0036000],[0.0131352,0.0036000],[0.0131352,0.0054000],[0.0105082,0.0054000],[0.0105082,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0105082","Lat":"0.0054000","KPI":122,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0054000],[0.0131352,0.0054000],[0.0131352,0.0072000],[0.0105082,0.0072000],[0.0105082,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0105082","Lat":"0.0072000","KPI":494,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0072000],[0.0131352,0.0072000],[0.0131352,0.0090000],[0.0105082,0.0090000],[0.0105082,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0105082","Lat":"0.0090000","KPI":218,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0090000],[0.0131352,0.0090000],[0.0131352,0.0108000],[0.0105082,0.0108000],[0.0105082,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0105082","Lat":"0.0108000","KPI":662,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0108000],[0.0131352,0.0108000],[0.0131352,0.0126000],[0.0105082,0.0126000],[0.0105082,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":27,"Long":"0.0105082","Lat":"0.0126000","KPI":991,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0126000],[0.0131352,0.0126000],[0.0131352,0.0144000],[0.0105082,0.0144000],[0.0105082,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0105082","Lat":"0.0144000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0144000],[0.0131352,0.0144000],[0.0131352,0.0162000],[0.0105082,0.0162000],[0.0105082,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0105082","Lat":"0.0162000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0162000],[0.0131352,0.0162000],[0.0131352,0.0180000],[0.0105082,0.0180000],[0.0105082,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0105082","Lat":"0.0180000","KPI":442,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0180000],[0.0131352,0.0180000],[0.0131352,0.0198000],[0.0105082,0.0198000],[0.0105082,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":46,"Long":"0.0105082","Lat":"0.0198000","KPI":199,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0198000],[0.0131352,0.0198000],[0.0131352,0.0216000],[0.0105082,0.0216000],[0.0105082,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0105082","Lat":"0.0216000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0216000],[0.0131352,0.0216000],[0.0131352,0.0234000],[0.0105082,0.0234000],[0.0105082,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0105082","Lat":"0.0234000","KPI":784,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0234000],[0.0131352,0.0234000],[0.0131352,0.0252000],[0.0105082,0.0252000],[0.0105082,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0105082","Lat":"0.0252000","KPI":656,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0252000],[0.0131352,0.0252000],[0.0131352,0.0270000],[0.0105082,0.0270000],[0.0105082,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0105082","Lat":"0.0270000","KPI":823,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0270000],[0.0131352,0.0270000],[0.0131352,0.0288000],[0.0105082,0.0288000],[0.0105082,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0105082","Lat":"0.0288000","KPI":913,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0288000],[0.0131352,0.0288000],[0.0131352,0.0306000],[0.0105082,0.0306000],[0.0105082,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":61,"Long":"0.0105082","Lat":"0.0306000","KPI":691,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0306000],[0.0131352,0.0306000],[0.0131352,0.0324000],[0.0105082,0.0324000],[0.0105082,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0105082","Lat":"0.0324000","KPI":198,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0324000],[0.0131352,0.0324000],[0.0131352,0.0342000],[0.0105082,0.0342000],[0.0105082,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0105082","Lat":"0.0342000","KPI":517,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0342000],[0.0131352,0.0342000],[0.0131352,0.0360000],[0.0105082,0.0360000],[0.0105082,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0105082","Lat":"0.0360000","KPI":802,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0360000],[0.0131352,0.0360000],[0.0131352,0.0378000],[0.0105082,0.0378000],[0.0105082,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0105082","Lat":"0.0378000","KPI":618,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0378000],[0.0131352,0.0378000],[0.0131352,0.0396000],[0.0105082,0.0396000],[0.0105082,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":55,"Long":"0.0105082","Lat":"0.0396000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0396000],[0.0131352,0.0396000],[0.0131352,0.0414000],[0.0105082,0.0414000],[0.0105082,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0105082","Lat":"0.0414000","KPI":733,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0414000],[0.0131352,0.0414000],[0.0131352,0.0432000],[0.0105082,0.0432000],[0.0105082,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":90,"Long":"0.0105082","Lat":"0.0432000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0432000],[0.0131352,0.0432000],[0.0131352,0.0450000],[0.0105082,0.0450000],[0.0105082,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":2,"Long":"0.0105082","Lat":"0.0450000","KPI":246,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0450000],[0.0131352,0.0450000],[0.0131352,0.0468000],[0.0105082,0.0468000],[0.0105082,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":49,"Long":"0.0105082","Lat":"0.0468000","KPI":643,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0468000],[0.0131352,0.0468000],[0.0131352,0.0486000],[0.0105082,0.0486000],[0.0105082,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0105082","Lat":"0.0486000","KPI":595,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0486000],[0.0131352,0.0486000],[0.0131352,0.0504000],[0.0105082,0.0504000],[0.0105082,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":52,"Long":"0.0105082","Lat":"0.0504000","KPI":426,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0504000],[0.0131352,0.0504000],[0.0131352,0.0522000],[0.0105082,0.0522000],[0.0105082,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0105082","Lat":"0.0522000","KPI":87,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0522000],[0.0131352,0.0522000],[0.0131352,0.0540000],[0.0105082,0.0540000],[0.0105082,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0105082","Lat":"0.0540000","KPI":922,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0540000],[0.0131352,0.0540000],[0.0131352,0.0558000],[0.0105082,0.0558000],[0.0105082,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0105082","Lat":"0.0558000","KPI":438,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105082,0.0558000],[0.0131352,0.0558000],[0.0131352,0.0576000],[0.0105082,0.0576000],[0.0105082,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0131352","Lat":"0.0000000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0000000],[0.0157622,0.0000000],[0.0157622,0.0018000],[0.0131352,0.0018000],[0.0131352,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":44,"Long":"0.0131352","Lat":"0.0018000","KPI":435,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0018000],[0.0157622,0.0018000],[0.0157622,0.0036000],[0.0131352,0.0036000],[0.0131352,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0131352","Lat":"0.0036000","KPI":346,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0036000],[0.0157622,0.0036000],[0.0157622,0.0054000],[0.0131352,0.0054000],[0.0131352,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0131352","Lat":"0.0054000","KPI":265,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0054000],[0.0157622,0.0054000],[0.0157622,0.0072000],[0.0131352,0.0072000],[0.0131352,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0131352","Lat":"0.0072000","KPI":413,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0072000],[0.0157622,0.0072000],[0.0157622,0.0090000],[0.0131352,0.0090000],[0.0131352,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0131352","Lat":"0.0090000","KPI":211,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0090000],[0.0157622,0.0090000],[0.0157622,0.0108000],[0.0131352,0.0108000],[0.0131352,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0131352","Lat":"0.0108000","KPI":223,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0108000],[0.0157622,0.0108000],[0.0157622,0.0126000],[0.0131352,0.0126000],[0.0131352,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0131352","Lat":"0.0126000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0126000],[0.0157622,0.0126000],[0.0157622,0.0144000],[0.0131352,0.0144000],[0.0131352,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0131352","Lat":"0.0144000","KPI":890,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0144000],[0.0157622,0.0144000],[0.0157622,0.0162000],[0.0131352,0.0162000],[0.0131352,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0131352","Lat":"0.0162000","KPI":312,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0162000],[0.0157622,0.0162000],[0.0157622,0.0180000],[0.0131352,0.0180000],[0.0131352,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0131352","Lat":"0.0180000","KPI":495,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0180000],[0.0157622,0.0180000],[0.0157622,0.0198000],[0.0131352,0.0198000],[0.0131352,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0131352","Lat":"0.0198000","KPI":674,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0198000],[0.0157622,0.0198000],[0.0157622,0.0216000],[0.0131352,0.0216000],[0.0131352,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0131352","Lat":"0.0216000","KPI":987,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0216000],[0.0157622,0.0216000],[0.0157622,0.0234000],[0.0131352,0.0234000],[0.0131352,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":60,"Long":"0.0131352","Lat":"0.0234000","KPI":367,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0234000],[0.0157622,0.0234000],[0.0157622,0.0252000],[0.0131352,0.0252000],[0.0131352,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0131352","Lat":"0.0252000","KPI":109,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0252000],[0.0157622,0.0252000],[0.0157622,0.0270000],[0.0131352,0.0270000],[0.0131352,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0131352","Lat":"0.0270000","KPI":391,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0270000],[0.0157622,0.0270000],[0.0157622,0.0288000],[0.0131352,0.0288000],[0.0131352,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0131352","Lat":"0.0288000","KPI":190,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0288000],[0.0157622,0.0288000],[0.0157622,0.0306000],[0.0131352,0.0306000],[0.0131352,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0131352","Lat":"0.0306000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0306000],[0.0157622,0.0306000],[0.0157622,0.0324000],[0.0131352,0.0324000],[0.0131352,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0131352","Lat":"0.0324000","KPI":416,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0324000],[0.0157622,0.0324000],[0.0157622,0.0342000],[0.0131352,0.0342000],[0.0131352,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0131352","Lat":"0.0342000","KPI":261,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0342000],[0.0157622,0.0342000],[0.0157622,0.0360000],[0.0131352,0.0360000],[0.0131352,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0131352","Lat":"0.0360000","KPI":443,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0360000],[0.0157622,0.0360000],[0.0157622,0.0378000],[0.0131352,0.0378000],[0.0131352,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0131352","Lat":"0.0378000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0378000],[0.0157622,0.0378000],[0.0157622,0.0396000],[0.0131352,0.0396000],[0.0131352,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0131352","Lat":"0.0396000","KPI":55,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0396000],[0.0157622,0.0396000],[0.0157622,0.0414000],[0.0131352,0.0414000],[0.0131352,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0131352","Lat":"0.0414000","KPI":870,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0414000],[0.0157622,0.0414000],[0.0157622,0.0432000],[0.0131352,0.0432000],[0.0131352,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0131352","Lat":"0.0432000","KPI":872,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0432000],[0.0157622,0.0432000],[0.0157622,0.0450000],[0.0131352,0.0450000],[0.0131352,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0131352","Lat":"0.0450000","KPI":304,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0450000],[0.0157622,0.0450000],[0.0157622,0.0468000],[0.0131352,0.0468000],[0.0131352,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0131352","Lat":"0.0468000","KPI":994,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0468000],[0.0157622,0.0468000],[0.0157622,0.0486000],[0.0131352,0.0486000],[0.0131352,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0131352","Lat":"0.0486000","KPI":202,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0486000],[0.0157622,0.0486000],[0.0157622,0.0504000],[0.0131352,0.0504000],[0.0131352,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0131352","Lat":"0.0504000","KPI":883,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0504000],[0.0157622,0.0504000],[0.0157622,0.0522000],[0.0131352,0.0522000],[0.0131352,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0131352","Lat":"0.0522000","KPI":435,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0522000],[0.0157622,0.0522000],[0.0157622,0.0540000],[0.0131352,0.0540000],[0.0131352,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0131352","Lat":"0.0540000","KPI":683,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0540000],[0.0157622,0.0540000],[0.0157622,0.0558000],[0.0131352,0.0558000],[0.0131352,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":15,"Long":"0.0131352","Lat":"0.0558000","KPI":626,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131352,0.0558000],[0.0157622,0.0558000],[0.0157622,0.0576000],[0.0131352,0.0576000],[0.0131352,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0157622","Lat":"0.0000000","KPI":671,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0000000],[0.0183893,0.0000000],[0.0183893,0.0018000],[0.0157622,0.0018000],[0.0157622,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":26,"Long":"0.0157622","Lat":"0.0018000","KPI":932,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0018000],[0.0183893,0.0018000],[0.0183893,0.0036000],[0.0157622,0.0036000],[0.0157622,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":27,"Long":"0.0157622","Lat":"0.0036000","KPI":507,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0036000],[0.0183893,0.0036000],[0.0183893,0.0054000],[0.0157622,0.0054000],[0.0157622,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0157622","Lat":"0.0054000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0054000],[0.0183893,0.0054000],[0.0183893,0.0072000],[0.0157622,0.0072000],[0.0157622,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0157622","Lat":"0.0072000","KPI":475,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0072000],[0.0183893,0.0072000],[0.0183893,0.0090000],[0.0157622,0.0090000],[0.0157622,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":74,"Long":"0.0157622","Lat":"0.0090000","KPI":530,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0090000],[0.0183893,0.0090000],[0.0183893,0.0108000],[0.0157622,0.0108000],[0.0157622,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0157622","Lat":"0.0108000","KPI":980,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0108000],[0.0183893,0.0108000],[0.0183893,0.0126000],[0.0157622,0.0126000],[0.0157622,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0157622","Lat":"0.0126000","KPI":233,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0126000],[0.0183893,0.0126000],[0.0183893,0.0144000],[0.0157622,0.0144000],[0.0157622,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0157622","Lat":"0.0144000","KPI":132,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0144000],[0.0183893,0.0144000],[0.0183893,0.0162000],[0.0157622,0.0162000],[0.0157622,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0157622","Lat":"0.0162000","KPI":379,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0162000],[0.0183893,0.0162000],[0.0183893,0.0180000],[0.0157622,0.0180000],[0.0157622,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0157622","Lat":"0.0180000","KPI":370,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0180000],[0.0183893,0.0180000],[0.0183893,0.0198000],[0.0157622,0.0198000],[0.0157622,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":82,"Long":"0.0157622","Lat":"0.0198000","KPI":542,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0198000],[0.0183893,0.0198000],[0.0183893,0.0216000],[0.0157622,0.0216000],[0.0157622,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0157622","Lat":"0.0216000","KPI":757,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0216000],[0.0183893,0.0216000],[0.0183893,0.0234000],[0.0157622,0.0234000],[0.0157622,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0157622","Lat":"0.0234000","KPI":606,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0234000],[0.0183893,0.0234000],[0.0183893,0.0252000],[0.0157622,0.0252000],[0.0157622,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0157622","Lat":"0.0252000","KPI":696,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0252000],[0.0183893,0.0252000],[0.0183893,0.0270000],[0.0157622,0.0270000],[0.0157622,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":71,"Long":"0.0157622","Lat":"0.0270000","KPI":599,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0270000],[0.0183893,0.0270000],[0.0183893,0.0288000],[0.0157622,0.0288000],[0.0157622,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0157622","Lat":"0.0288000","KPI":610,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0288000],[0.0183893,0.0288000],[0.0183893,0.0306000],[0.0157622,0.0306000],[0.0157622,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0157622","Lat":"0.0306000","KPI":429,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0306000],[0.0183893,0.0306000],[0.0183893,0.0324000],[0.0157622,0.0324000],[0.0157622,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0157622","Lat":"0.0324000","KPI":293,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0324000],[0.0183893,0.0324000],[0.0183893,0.0342000],[0.0157622,0.0342000],[0.0157622,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0157622","Lat":"0.0342000","KPI":634,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0342000],[0.0183893,0.0342000],[0.0183893,0.0360000],[0.0157622,0.0360000],[0.0157622,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0157622","Lat":"0.0360000","KPI":469,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0360000],[0.0183893,0.0360000],[0.0183893,0.0378000],[0.0157622,0.0378000],[0.0157622,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0157622","Lat":"0.0378000","KPI":213,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0378000],[0.0183893,0.0378000],[0.0183893,0.0396000],[0.0157622,0.0396000],[0.0157622,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0157622","Lat":"0.0396000","KPI":382,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0396000],[0.0183893,0.0396000],[0.0183893,0.0414000],[0.0157622,0.0414000],[0.0157622,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":15,"Long":"0.0157622","Lat":"0.0414000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0414000],[0.0183893,0.0414000],[0.0183893,0.0432000],[0.0157622,0.0432000],[0.0157622,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0157622","Lat":"0.0432000","KPI":67,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0432000],[0.0183893,0.0432000],[0.0183893,0.0450000],[0.0157622,0.0450000],[0.0157622,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":66,"Long":"0.0157622","Lat":"0.0450000","KPI":88,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0450000],[0.0183893,0.0450000],[0.0183893,0.0468000],[0.0157622,0.0468000],[0.0157622,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0157622","Lat":"0.0468000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0468000],[0.0183893,0.0468000],[0.0183893,0.0486000],[0.0157622,0.0486000],[0.0157622,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0157622","Lat":"0.0486000","KPI":670,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0486000],[0.0183893,0.0486000],[0.0183893,0.0504000],[0.0157622,0.0504000],[0.0157622,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":44,"Long":"0.0157622","Lat":"0.0504000","KPI":425,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0504000],[0.0183893,0.0504000],[0.0183893,0.0522000],[0.0157622,0.0522000],[0.0157622,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":55,"Long":"0.0157622","Lat":"0.0522000","KPI":1,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0522000],[0.0183893,0.0522000],[0.0183893,0.0540000],[0.0157622,0.0540000],[0.0157622,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0157622","Lat":"0.0540000","KPI":600,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0540000],[0.0183893,0.0540000],[0.0183893,0.0558000],[0.0157622,0.0558000],[0.0157622,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0157622","Lat":"0.0558000","KPI":865,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157622,0.0558000],[0.0183893,0.0558000],[0.0183893,0.0576000],[0.0157622,0.0576000],[0.0157622,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0183893","Lat":"0.0000000","KPI":138,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0000000],[0.0210163,0.0000000],[0.0210163,0.0018000],[0.0183893,0.0018000],[0.0183893,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0183893","Lat":"0.0018000","KPI":359,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0018000],[0.0210163,0.0018000],[0.0210163,0.0036000],[0.0183893,0.0036000],[0.0183893,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":46,"Long":"0.0183893","Lat":"0.0036000","KPI":403,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0036000],[0.0210163,0.0036000],[0.0210163,0.0054000],[0.0183893,0.0054000],[0.0183893,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0183893","Lat":"0.0054000","KPI":780,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0054000],[0.0210163,0.0054000],[0.0210163,0.0072000],[0.0183893,0.0072000],[0.0183893,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0183893","Lat":"0.0072000","KPI":919,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0072000],[0.0210163,0.0072000],[0.0210163,0.0090000],[0.0183893,0.0090000],[0.0183893,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0183893","Lat":"0.0090000","KPI":599,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0090000],[0.0210163,0.0090000],[0.0210163,0.0108000],[0.0183893,0.0108000],[0.0183893,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0183893","Lat":"0.0108000","KPI":793,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0108000],[0.0210163,0.0108000],[0.0210163,0.0126000],[0.0183893,0.0126000],[0.0183893,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0183893","Lat":"0.0126000","KPI":210,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0126000],[0.0210163,0.0126000],[0.0210163,0.0144000],[0.0183893,0.0144000],[0.0183893,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0183893","Lat":"0.0144000","KPI":999,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0144000],[0.0210163,0.0144000],[0.0210163,0.0162000],[0.0183893,0.0162000],[0.0183893,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0183893","Lat":"0.0162000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0162000],[0.0210163,0.0162000],[0.0210163,0.0180000],[0.0183893,0.0180000],[0.0183893,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0183893","Lat":"0.0180000","KPI":598,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0180000],[0.0210163,0.0180000],[0.0210163,0.0198000],[0.0183893,0.0198000],[0.0183893,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0183893","Lat":"0.0198000","KPI":443,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0198000],[0.0210163,0.0198000],[0.0210163,0.0216000],[0.0183893,0.0216000],[0.0183893,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0183893","Lat":"0.0216000","KPI":161,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0216000],[0.0210163,0.0216000],[0.0210163,0.0234000],[0.0183893,0.0234000],[0.0183893,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0183893","Lat":"0.0234000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0234000],[0.0210163,0.0234000],[0.0210163,0.0252000],[0.0183893,0.0252000],[0.0183893,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0183893","Lat":"0.0252000","KPI":307,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0252000],[0.0210163,0.0252000],[0.0210163,0.0270000],[0.0183893,0.0270000],[0.0183893,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0183893","Lat":"0.0270000","KPI":898,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0270000],[0.0210163,0.0270000],[0.0210163,0.0288000],[0.0183893,0.0288000],[0.0183893,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":44,"Long":"0.0183893","Lat":"0.0288000","KPI":509,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0288000],[0.0210163,0.0288000],[0.0210163,0.0306000],[0.0183893,0.0306000],[0.0183893,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0183893","Lat":"0.0306000","KPI":290,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0306000],[0.0210163,0.0306000],[0.0210163,0.0324000],[0.0183893,0.0324000],[0.0183893,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0183893","Lat":"0.0324000","KPI":46,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0324000],[0.0210163,0.0324000],[0.0210163,0.0342000],[0.0183893,0.0342000],[0.0183893,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0183893","Lat":"0.0342000","KPI":247,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0342000],[0.0210163,0.0342000],[0.0210163,0.0360000],[0.0183893,0.0360000],[0.0183893,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0183893","Lat":"0.0360000","KPI":259,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0360000],[0.0210163,0.0360000],[0.0210163,0.0378000],[0.0183893,0.0378000],[0.0183893,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":49,"Long":"0.0183893","Lat":"0.0378000","KPI":622,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0378000],[0.0210163,0.0378000],[0.0210163,0.0396000],[0.0183893,0.0396000],[0.0183893,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0183893","Lat":"0.0396000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0396000],[0.0210163,0.0396000],[0.0210163,0.0414000],[0.0183893,0.0414000],[0.0183893,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0183893","Lat":"0.0414000","KPI":546,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0414000],[0.0210163,0.0414000],[0.0210163,0.0432000],[0.0183893,0.0432000],[0.0183893,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0183893","Lat":"0.0432000","KPI":143,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0432000],[0.0210163,0.0432000],[0.0210163,0.0450000],[0.0183893,0.0450000],[0.0183893,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0183893","Lat":"0.0450000","KPI":743,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0450000],[0.0210163,0.0450000],[0.0210163,0.0468000],[0.0183893,0.0468000],[0.0183893,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0183893","Lat":"0.0468000","KPI":584,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0468000],[0.0210163,0.0468000],[0.0210163,0.0486000],[0.0183893,0.0486000],[0.0183893,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0183893","Lat":"0.0486000","KPI":115,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0486000],[0.0210163,0.0486000],[0.0210163,0.0504000],[0.0183893,0.0504000],[0.0183893,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0183893","Lat":"0.0504000","KPI":225,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0504000],[0.0210163,0.0504000],[0.0210163,0.0522000],[0.0183893,0.0522000],[0.0183893,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0183893","Lat":"0.0522000","KPI":517,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0522000],[0.0210163,0.0522000],[0.0210163,0.0540000],[0.0183893,0.0540000],[0.0183893,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0183893","Lat":"0.0540000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0540000],[0.0210163,0.0540000],[0.0210163,0.0558000],[0.0183893,0.0558000],[0.0183893,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0183893","Lat":"0.0558000","KPI":178,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183893,0.0558000],[0.0210163,0.0558000],[0.0210163,0.0576000],[0.0183893,0.0576000],[0.0183893,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":5,"Long":"0.0210163","Lat":"0.0000000","KPI":205,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0000000],[0.0236434,0.0000000],[0.0236434,0.0018000],[0.0210163,0.0018000],[0.0210163,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0210163","Lat":"0.0018000","KPI":868,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0018000],[0.0236434,0.0018000],[0.0236434,0.0036000],[0.0210163,0.0036000],[0.0210163,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0210163","Lat":"0.0036000","KPI":884,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0036000],[0.0236434,0.0036000],[0.0236434,0.0054000],[0.0210163,0.0054000],[0.0210163,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0210163","Lat":"0.0054000","KPI":509,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0054000],[0.0236434,0.0054000],[0.0236434,0.0072000],[0.0210163,0.0072000],[0.0210163,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":93,"Long":"0.0210163","Lat":"0.0072000","KPI":523,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0072000],[0.0236434,0.0072000],[0.0236434,0.0090000],[0.0210163,0.0090000],[0.0210163,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0210163","Lat":"0.0090000","KPI":610,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0090000],[0.0236434,0.0090000],[0.0236434,0.0108000],[0.0210163,0.0108000],[0.0210163,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0210163","Lat":"0.0108000","KPI":903,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0108000],[0.0236434,0.0108000],[0.0236434,0.0126000],[0.0210163,0.0126000],[0.0210163,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":46,"Long":"0.0210163","Lat":"0.0126000","KPI":603,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0126000],[0.0236434,0.0126000],[0.0236434,0.0144000],[0.0210163,0.0144000],[0.0210163,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":55,"Long":"0.0210163","Lat":"0.0144000","KPI":831,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0144000],[0.0236434,0.0144000],[0.0236434,0.0162000],[0.0210163,0.0162000],[0.0210163,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0210163","Lat":"0.0162000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0162000],[0.0236434,0.0162000],[0.0236434,0.0180000],[0.0210163,0.0180000],[0.0210163,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":46,"Long":"0.0210163","Lat":"0.0180000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0180000],[0.0236434,0.0180000],[0.0236434,0.0198000],[0.0210163,0.0198000],[0.0210163,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0210163","Lat":"0.0198000","KPI":103,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0198000],[0.0236434,0.0198000],[0.0236434,0.0216000],[0.0210163,0.0216000],[0.0210163,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":8,"Long":"0.0210163","Lat":"0.0216000","KPI":649,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0216000],[0.0236434,0.0216000],[0.0236434,0.0234000],[0.0210163,0.0234000],[0.0210163,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0210163","Lat":"0.0234000","KPI":86,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0234000],[0.0236434,0.0234000],[0.0236434,0.0252000],[0.0210163,0.0252000],[0.0210163,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":81,"Long":"0.0210163","Lat":"0.0252000","KPI":223,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0252000],[0.0236434,0.0252000],[0.0236434,0.0270000],[0.0210163,0.0270000],[0.0210163,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":6,"Long":"0.0210163","Lat":"0.0270000","KPI":513,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0270000],[0.0236434,0.0270000],[0.0236434,0.0288000],[0.0210163,0.0288000],[0.0210163,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0210163","Lat":"0.0288000","KPI":273,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0288000],[0.0236434,0.0288000],[0.0236434,0.0306000],[0.0210163,0.0306000],[0.0210163,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0210163","Lat":"0.0306000","KPI":425,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0306000],[0.0236434,0.0306000],[0.0236434,0.0324000],[0.0210163,0.0324000],[0.0210163,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0210163","Lat":"0.0324000","KPI":163,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0324000],[0.0236434,0.0324000],[0.0236434,0.0342000],[0.0210163,0.0342000],[0.0210163,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0210163","Lat":"0.0342000","KPI":430,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0342000],[0.0236434,0.0342000],[0.0236434,0.0360000],[0.0210163,0.0360000],[0.0210163,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0210163","Lat":"0.0360000","KPI":249,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0360000],[0.0236434,0.0360000],[0.0236434,0.0378000],[0.0210163,0.0378000],[0.0210163,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0210163","Lat":"0.0378000","KPI":457,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0378000],[0.0236434,0.0378000],[0.0236434,0.0396000],[0.0210163,0.0396000],[0.0210163,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0210163","Lat":"0.0396000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0396000],[0.0236434,0.0396000],[0.0236434,0.0414000],[0.0210163,0.0414000],[0.0210163,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0210163","Lat":"0.0414000","KPI":807,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0414000],[0.0236434,0.0414000],[0.0236434,0.0432000],[0.0210163,0.0432000],[0.0210163,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0210163","Lat":"0.0432000","KPI":975,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0432000],[0.0236434,0.0432000],[0.0236434,0.0450000],[0.0210163,0.0450000],[0.0210163,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0210163","Lat":"0.0450000","KPI":263,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0450000],[0.0236434,0.0450000],[0.0236434,0.0468000],[0.0210163,0.0468000],[0.0210163,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0210163","Lat":"0.0468000","KPI":417,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0468000],[0.0236434,0.0468000],[0.0236434,0.0486000],[0.0210163,0.0486000],[0.0210163,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":38,"Long":"0.0210163","Lat":"0.0486000","KPI":4,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0486000],[0.0236434,0.0486000],[0.0236434,0.0504000],[0.0210163,0.0504000],[0.0210163,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0210163","Lat":"0.0504000","KPI":267,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0504000],[0.0236434,0.0504000],[0.0236434,0.0522000],[0.0210163,0.0522000],[0.0210163,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0210163","Lat":"0.0522000","KPI":125,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0522000],[0.0236434,0.0522000],[0.0236434,0.0540000],[0.0210163,0.0540000],[0.0210163,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":16,"Long":"0.0210163","Lat":"0.0540000","KPI":639,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0540000],[0.0236434,0.0540000],[0.0236434,0.0558000],[0.0210163,0.0558000],[0.0210163,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0210163","Lat":"0.0558000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210163,0.0558000],[0.0236434,0.0558000],[0.0236434,0.0576000],[0.0210163,0.0576000],[0.0210163,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0236434","Lat":"0.0000000","KPI":923,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0000000],[0.0262704,0.0000000],[0.0262704,0.0018000],[0.0236434,0.0018000],[0.0236434,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0236434","Lat":"0.0018000","KPI":842,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0018000],[0.0262704,0.0018000],[0.0262704,0.0036000],[0.0236434,0.0036000],[0.0236434,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0236434","Lat":"0.0036000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0036000],[0.0262704,0.0036000],[0.0262704,0.0054000],[0.0236434,0.0054000],[0.0236434,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0236434","Lat":"0.0054000","KPI":407,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0054000],[0.0262704,0.0054000],[0.0262704,0.0072000],[0.0236434,0.0072000],[0.0236434,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0236434","Lat":"0.0072000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0072000],[0.0262704,0.0072000],[0.0262704,0.0090000],[0.0236434,0.0090000],[0.0236434,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0236434","Lat":"0.0090000","KPI":48,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0090000],[0.0262704,0.0090000],[0.0262704,0.0108000],[0.0236434,0.0108000],[0.0236434,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0236434","Lat":"0.0108000","KPI":968,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0108000],[0.0262704,0.0108000],[0.0262704,0.0126000],[0.0236434,0.0126000],[0.0236434,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":6,"Long":"0.0236434","Lat":"0.0126000","KPI":631,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0126000],[0.0262704,0.0126000],[0.0262704,0.0144000],[0.0236434,0.0144000],[0.0236434,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0236434","Lat":"0.0144000","KPI":792,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0144000],[0.0262704,0.0144000],[0.0262704,0.0162000],[0.0236434,0.0162000],[0.0236434,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0236434","Lat":"0.0162000","KPI":188,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0162000],[0.0262704,0.0162000],[0.0262704,0.0180000],[0.0236434,0.0180000],[0.0236434,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0236434","Lat":"0.0180000","KPI":75,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0180000],[0.0262704,0.0180000],[0.0262704,0.0198000],[0.0236434,0.0198000],[0.0236434,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0236434","Lat":"0.0198000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0198000],[0.0262704,0.0198000],[0.0262704,0.0216000],[0.0236434,0.0216000],[0.0236434,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":16,"Long":"0.0236434","Lat":"0.0216000","KPI":997,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0216000],[0.0262704,0.0216000],[0.0262704,0.0234000],[0.0236434,0.0234000],[0.0236434,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0236434","Lat":"0.0234000","KPI":0,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0234000],[0.0262704,0.0234000],[0.0262704,0.0252000],[0.0236434,0.0252000],[0.0236434,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0236434","Lat":"0.0252000","KPI":148,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0252000],[0.0262704,0.0252000],[0.0262704,0.0270000],[0.0236434,0.0270000],[0.0236434,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0236434","Lat":"0.0270000","KPI":978,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0270000],[0.0262704,0.0270000],[0.0262704,0.0288000],[0.0236434,0.0288000],[0.0236434,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0236434","Lat":"0.0288000","KPI":371,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0288000],[0.0262704,0.0288000],[0.0262704,0.0306000],[0.0236434,0.0306000],[0.0236434,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":71,"Long":"0.0236434","Lat":"0.0306000","KPI":656,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0306000],[0.0262704,0.0306000],[0.0262704,0.0324000],[0.0236434,0.0324000],[0.0236434,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0236434","Lat":"0.0324000","KPI":435,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0324000],[0.0262704,0.0324000],[0.0262704,0.0342000],[0.0236434,0.0342000],[0.0236434,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0236434","Lat":"0.0342000","KPI":761,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0342000],[0.0262704,0.0342000],[0.0262704,0.0360000],[0.0236434,0.0360000],[0.0236434,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0236434","Lat":"0.0360000","KPI":956,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0360000],[0.0262704,0.0360000],[0.0262704,0.0378000],[0.0236434,0.0378000],[0.0236434,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0236434","Lat":"0.0378000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0378000],[0.0262704,0.0378000],[0.0262704,0.0396000],[0.0236434,0.0396000],[0.0236434,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0236434","Lat":"0.0396000","KPI":835,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0396000],[0.0262704,0.0396000],[0.0262704,0.0414000],[0.0236434,0.0414000],[0.0236434,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":27,"Long":"0.0236434","Lat":"0.0414000","KPI":544,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0414000],[0.0262704,0.0414000],[0.0262704,0.0432000],[0.0236434,0.0432000],[0.0236434,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0236434","Lat":"0.0432000","KPI":774,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0432000],[0.0262704,0.0432000],[0.0262704,0.0450000],[0.0236434,0.0450000],[0.0236434,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0236434","Lat":"0.0450000","KPI":20,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0450000],[0.0262704,0.0450000],[0.0262704,0.0468000],[0.0236434,0.0468000],[0.0236434,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0236434","Lat":"0.0468000","KPI":333,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0468000],[0.0262704,0.0468000],[0.0262704,0.0486000],[0.0236434,0.0486000],[0.0236434,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0236434","Lat":"0.0486000","KPI":684,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0486000],[0.0262704,0.0486000],[0.0262704,0.0504000],[0.0236434,0.0504000],[0.0236434,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0236434","Lat":"0.0504000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0504000],[0.0262704,0.0504000],[0.0262704,0.0522000],[0.0236434,0.0522000],[0.0236434,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":98,"Long":"0.0236434","Lat":"0.0522000","KPI":917,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0522000],[0.0262704,0.0522000],[0.0262704,0.0540000],[0.0236434,0.0540000],[0.0236434,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0236434","Lat":"0.0540000","KPI":676,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0540000],[0.0262704,0.0540000],[0.0262704,0.0558000],[0.0236434,0.0558000],[0.0236434,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0236434","Lat":"0.0558000","KPI":848,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236434,0.0558000],[0.0262704,0.0558000],[0.0262704,0.0576000],[0.0236434,0.0576000],[0.0236434,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":96,"Long":"0.0262704","Lat":"0.0000000","KPI":936,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0000000],[0.0288974,0.0000000],[0.0288974,0.0018000],[0.0262704,0.0018000],[0.0262704,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0262704","Lat":"0.0018000","KPI":424,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0018000],[0.0288974,0.0018000],[0.0288974,0.0036000],[0.0262704,0.0036000],[0.0262704,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":12,"Long":"0.0262704","Lat":"0.0036000","KPI":459,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0036000],[0.0288974,0.0036000],[0.0288974,0.0054000],[0.0262704,0.0054000],[0.0262704,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0262704","Lat":"0.0054000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0054000],[0.0288974,0.0054000],[0.0288974,0.0072000],[0.0262704,0.0072000],[0.0262704,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0262704","Lat":"0.0072000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0072000],[0.0288974,0.0072000],[0.0288974,0.0090000],[0.0262704,0.0090000],[0.0262704,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":44,"Long":"0.0262704","Lat":"0.0090000","KPI":231,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0090000],[0.0288974,0.0090000],[0.0288974,0.0108000],[0.0262704,0.0108000],[0.0262704,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0262704","Lat":"0.0108000","KPI":94,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0108000],[0.0288974,0.0108000],[0.0288974,0.0126000],[0.0262704,0.0126000],[0.0262704,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0262704","Lat":"0.0126000","KPI":218,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0126000],[0.0288974,0.0126000],[0.0288974,0.0144000],[0.0262704,0.0144000],[0.0262704,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":5,"Long":"0.0262704","Lat":"0.0144000","KPI":902,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0144000],[0.0288974,0.0144000],[0.0288974,0.0162000],[0.0262704,0.0162000],[0.0262704,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0262704","Lat":"0.0162000","KPI":664,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0162000],[0.0288974,0.0162000],[0.0288974,0.0180000],[0.0262704,0.0180000],[0.0262704,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":88,"Long":"0.0262704","Lat":"0.0180000","KPI":324,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0180000],[0.0288974,0.0180000],[0.0288974,0.0198000],[0.0262704,0.0198000],[0.0262704,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0262704","Lat":"0.0198000","KPI":207,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0198000],[0.0288974,0.0198000],[0.0288974,0.0216000],[0.0262704,0.0216000],[0.0262704,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0262704","Lat":"0.0216000","KPI":340,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0216000],[0.0288974,0.0216000],[0.0288974,0.0234000],[0.0262704,0.0234000],[0.0262704,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0262704","Lat":"0.0234000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0234000],[0.0288974,0.0234000],[0.0288974,0.0252000],[0.0262704,0.0252000],[0.0262704,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":13,"Long":"0.0262704","Lat":"0.0252000","KPI":240,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0252000],[0.0288974,0.0252000],[0.0288974,0.0270000],[0.0262704,0.0270000],[0.0262704,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0262704","Lat":"0.0270000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0270000],[0.0288974,0.0270000],[0.0288974,0.0288000],[0.0262704,0.0288000],[0.0262704,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0262704","Lat":"0.0288000","KPI":384,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0288000],[0.0288974,0.0288000],[0.0288974,0.0306000],[0.0262704,0.0306000],[0.0262704,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0262704","Lat":"0.0306000","KPI":332,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0306000],[0.0288974,0.0306000],[0.0288974,0.0324000],[0.0262704,0.0324000],[0.0262704,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0262704","Lat":"0.0324000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0324000],[0.0288974,0.0324000],[0.0288974,0.0342000],[0.0262704,0.0342000],[0.0262704,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0262704","Lat":"0.0342000","KPI":597,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0342000],[0.0288974,0.0342000],[0.0288974,0.0360000],[0.0262704,0.0360000],[0.0262704,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":44,"Long":"0.0262704","Lat":"0.0360000","KPI":18,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0360000],[0.0288974,0.0360000],[0.0288974,0.0378000],[0.0262704,0.0378000],[0.0262704,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":27,"Long":"0.0262704","Lat":"0.0378000","KPI":843,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0378000],[0.0288974,0.0378000],[0.0288974,0.0396000],[0.0262704,0.0396000],[0.0262704,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0262704","Lat":"0.0396000","KPI":600,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0396000],[0.0288974,0.0396000],[0.0288974,0.0414000],[0.0262704,0.0414000],[0.0262704,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0262704","Lat":"0.0414000","KPI":983,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0414000],[0.0288974,0.0414000],[0.0288974,0.0432000],[0.0262704,0.0432000],[0.0262704,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":93,"Long":"0.0262704","Lat":"0.0432000","KPI":122,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0432000],[0.0288974,0.0432000],[0.0288974,0.0450000],[0.0262704,0.0450000],[0.0262704,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0262704","Lat":"0.0450000","KPI":300,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0450000],[0.0288974,0.0450000],[0.0288974,0.0468000],[0.0262704,0.0468000],[0.0262704,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":2,"Long":"0.0262704","Lat":"0.0468000","KPI":670,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0468000],[0.0288974,0.0468000],[0.0288974,0.0486000],[0.0262704,0.0486000],[0.0262704,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0262704","Lat":"0.0486000","KPI":916,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0486000],[0.0288974,0.0486000],[0.0288974,0.0504000],[0.0262704,0.0504000],[0.0262704,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0262704","Lat":"0.0504000","KPI":255,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0504000],[0.0288974,0.0504000],[0.0288974,0.0522000],[0.0262704,0.0522000],[0.0262704,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0262704","Lat":"0.0522000","KPI":461,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0522000],[0.0288974,0.0522000],[0.0288974,0.0540000],[0.0262704,0.0540000],[0.0262704,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":6,"Long":"0.0262704","Lat":"0.0540000","KPI":765,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0540000],[0.0288974,0.0540000],[0.0288974,0.0558000],[0.0262704,0.0558000],[0.0262704,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0262704","Lat":"0.0558000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262704,0.0558000],[0.0288974,0.0558000],[0.0288974,0.0576000],[0.0262704,0.0576000],[0.0262704,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0288974","Lat":"0.0000000","KPI":519,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0000000],[0.0315245,0.0000000],[0.0315245,0.0018000],[0.0288974,0.0018000],[0.0288974,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0288974","Lat":"0.0018000","KPI":53,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0018000],[0.0315245,0.0018000],[0.0315245,0.0036000],[0.0288974,0.0036000],[0.0288974,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0288974","Lat":"0.0036000","KPI":809,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0036000],[0.0315245,0.0036000],[0.0315245,0.0054000],[0.0288974,0.0054000],[0.0288974,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0288974","Lat":"0.0054000","KPI":363,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0054000],[0.0315245,0.0054000],[0.0315245,0.0072000],[0.0288974,0.0072000],[0.0288974,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0288974","Lat":"0.0072000","KPI":815,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0072000],[0.0315245,0.0072000],[0.0315245,0.0090000],[0.0288974,0.0090000],[0.0288974,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0288974","Lat":"0.0090000","KPI":835,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0090000],[0.0315245,0.0090000],[0.0315245,0.0108000],[0.0288974,0.0108000],[0.0288974,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0288974","Lat":"0.0108000","KPI":863,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0108000],[0.0315245,0.0108000],[0.0315245,0.0126000],[0.0288974,0.0126000],[0.0288974,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0288974","Lat":"0.0126000","KPI":528,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0126000],[0.0315245,0.0126000],[0.0315245,0.0144000],[0.0288974,0.0144000],[0.0288974,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0288974","Lat":"0.0144000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0144000],[0.0315245,0.0144000],[0.0315245,0.0162000],[0.0288974,0.0162000],[0.0288974,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":27,"Long":"0.0288974","Lat":"0.0162000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0162000],[0.0315245,0.0162000],[0.0315245,0.0180000],[0.0288974,0.0180000],[0.0288974,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":96,"Long":"0.0288974","Lat":"0.0180000","KPI":988,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0180000],[0.0315245,0.0180000],[0.0315245,0.0198000],[0.0288974,0.0198000],[0.0288974,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0288974","Lat":"0.0198000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0198000],[0.0315245,0.0198000],[0.0315245,0.0216000],[0.0288974,0.0216000],[0.0288974,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0288974","Lat":"0.0216000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0216000],[0.0315245,0.0216000],[0.0315245,0.0234000],[0.0288974,0.0234000],[0.0288974,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0288974","Lat":"0.0234000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0234000],[0.0315245,0.0234000],[0.0315245,0.0252000],[0.0288974,0.0252000],[0.0288974,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0288974","Lat":"0.0252000","KPI":145,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0252000],[0.0315245,0.0252000],[0.0315245,0.0270000],[0.0288974,0.0270000],[0.0288974,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0288974","Lat":"0.0270000","KPI":313,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0270000],[0.0315245,0.0270000],[0.0315245,0.0288000],[0.0288974,0.0288000],[0.0288974,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":71,"Long":"0.0288974","Lat":"0.0288000","KPI":35,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0288000],[0.0315245,0.0288000],[0.0315245,0.0306000],[0.0288974,0.0306000],[0.0288974,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":26,"Long":"0.0288974","Lat":"0.0306000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0306000],[0.0315245,0.0306000],[0.0315245,0.0324000],[0.0288974,0.0324000],[0.0288974,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0288974","Lat":"0.0324000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0324000],[0.0315245,0.0324000],[0.0315245,0.0342000],[0.0288974,0.0342000],[0.0288974,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0288974","Lat":"0.0342000","KPI":606,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0342000],[0.0315245,0.0342000],[0.0315245,0.0360000],[0.0288974,0.0360000],[0.0288974,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0288974","Lat":"0.0360000","KPI":218,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0360000],[0.0315245,0.0360000],[0.0315245,0.0378000],[0.0288974,0.0378000],[0.0288974,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0288974","Lat":"0.0378000","KPI":130,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0378000],[0.0315245,0.0378000],[0.0315245,0.0396000],[0.0288974,0.0396000],[0.0288974,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0288974","Lat":"0.0396000","KPI":238,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0396000],[0.0315245,0.0396000],[0.0315245,0.0414000],[0.0288974,0.0414000],[0.0288974,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0288974","Lat":"0.0414000","KPI":855,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0414000],[0.0315245,0.0414000],[0.0315245,0.0432000],[0.0288974,0.0432000],[0.0288974,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0288974","Lat":"0.0432000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0432000],[0.0315245,0.0432000],[0.0315245,0.0450000],[0.0288974,0.0450000],[0.0288974,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":60,"Long":"0.0288974","Lat":"0.0450000","KPI":826,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0450000],[0.0315245,0.0450000],[0.0315245,0.0468000],[0.0288974,0.0468000],[0.0288974,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0288974","Lat":"0.0468000","KPI":638,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0468000],[0.0315245,0.0468000],[0.0315245,0.0486000],[0.0288974,0.0486000],[0.0288974,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0288974","Lat":"0.0486000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0486000],[0.0315245,0.0486000],[0.0315245,0.0504000],[0.0288974,0.0504000],[0.0288974,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":55,"Long":"0.0288974","Lat":"0.0504000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0504000],[0.0315245,0.0504000],[0.0315245,0.0522000],[0.0288974,0.0522000],[0.0288974,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":60,"Long":"0.0288974","Lat":"0.0522000","KPI":332,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0522000],[0.0315245,0.0522000],[0.0315245,0.0540000],[0.0288974,0.0540000],[0.0288974,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":98,"Long":"0.0288974","Lat":"0.0540000","KPI":556,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0540000],[0.0315245,0.0540000],[0.0315245,0.0558000],[0.0288974,0.0558000],[0.0288974,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":81,"Long":"0.0288974","Lat":"0.0558000","KPI":205,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0288974,0.0558000],[0.0315245,0.0558000],[0.0315245,0.0576000],[0.0288974,0.0576000],[0.0288974,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0315245","Lat":"0.0000000","KPI":605,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0000000],[0.0341515,0.0000000],[0.0341515,0.0018000],[0.0315245,0.0018000],[0.0315245,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0315245","Lat":"0.0018000","KPI":992,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0018000],[0.0341515,0.0018000],[0.0341515,0.0036000],[0.0315245,0.0036000],[0.0315245,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0315245","Lat":"0.0036000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0036000],[0.0341515,0.0036000],[0.0341515,0.0054000],[0.0315245,0.0054000],[0.0315245,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0315245","Lat":"0.0054000","KPI":890,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0054000],[0.0341515,0.0054000],[0.0341515,0.0072000],[0.0315245,0.0072000],[0.0315245,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":2,"Long":"0.0315245","Lat":"0.0072000","KPI":707,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0072000],[0.0341515,0.0072000],[0.0341515,0.0090000],[0.0315245,0.0090000],[0.0315245,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":49,"Long":"0.0315245","Lat":"0.0090000","KPI":427,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0090000],[0.0341515,0.0090000],[0.0341515,0.0108000],[0.0315245,0.0108000],[0.0315245,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":18,"Long":"0.0315245","Lat":"0.0108000","KPI":367,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0108000],[0.0341515,0.0108000],[0.0341515,0.0126000],[0.0315245,0.0126000],[0.0315245,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0315245","Lat":"0.0126000","KPI":488,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0126000],[0.0341515,0.0126000],[0.0341515,0.0144000],[0.0315245,0.0144000],[0.0315245,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":5,"Long":"0.0315245","Lat":"0.0144000","KPI":100,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0144000],[0.0341515,0.0144000],[0.0341515,0.0162000],[0.0315245,0.0162000],[0.0315245,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0315245","Lat":"0.0162000","KPI":586,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0162000],[0.0341515,0.0162000],[0.0341515,0.0180000],[0.0315245,0.0180000],[0.0315245,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0315245","Lat":"0.0180000","KPI":725,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0180000],[0.0341515,0.0180000],[0.0341515,0.0198000],[0.0315245,0.0198000],[0.0315245,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0315245","Lat":"0.0198000","KPI":533,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0198000],[0.0341515,0.0198000],[0.0341515,0.0216000],[0.0315245,0.0216000],[0.0315245,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":49,"Long":"0.0315245","Lat":"0.0216000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0216000],[0.0341515,0.0216000],[0.0341515,0.0234000],[0.0315245,0.0234000],[0.0315245,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":60,"Long":"0.0315245","Lat":"0.0234000","KPI":411,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0234000],[0.0341515,0.0234000],[0.0341515,0.0252000],[0.0315245,0.0252000],[0.0315245,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0315245","Lat":"0.0252000","KPI":24,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0252000],[0.0341515,0.0252000],[0.0341515,0.0270000],[0.0315245,0.0270000],[0.0315245,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":66,"Long":"0.0315245","Lat":"0.0270000","KPI":567,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0270000],[0.0341515,0.0270000],[0.0341515,0.0288000],[0.0315245,0.0288000],[0.0315245,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0315245","Lat":"0.0288000","KPI":227,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0288000],[0.0341515,0.0288000],[0.0341515,0.0306000],[0.0315245,0.0306000],[0.0315245,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0315245","Lat":"0.0306000","KPI":247,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0306000],[0.0341515,0.0306000],[0.0341515,0.0324000],[0.0315245,0.0324000],[0.0315245,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0315245","Lat":"0.0324000","KPI":279,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0324000],[0.0341515,0.0324000],[0.0341515,0.0342000],[0.0315245,0.0342000],[0.0315245,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0315245","Lat":"0.0342000","KPI":300,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0342000],[0.0341515,0.0342000],[0.0341515,0.0360000],[0.0315245,0.0360000],[0.0315245,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":67,"Long":"0.0315245","Lat":"0.0360000","KPI":522,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0360000],[0.0341515,0.0360000],[0.0341515,0.0378000],[0.0315245,0.0378000],[0.0315245,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0315245","Lat":"0.0378000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0378000],[0.0341515,0.0378000],[0.0341515,0.0396000],[0.0315245,0.0396000],[0.0315245,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0315245","Lat":"0.0396000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0396000],[0.0341515,0.0396000],[0.0341515,0.0414000],[0.0315245,0.0414000],[0.0315245,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0315245","Lat":"0.0414000","KPI":922,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0414000],[0.0341515,0.0414000],[0.0341515,0.0432000],[0.0315245,0.0432000],[0.0315245,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0315245","Lat":"0.0432000","KPI":840,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0432000],[0.0341515,0.0432000],[0.0341515,0.0450000],[0.0315245,0.0450000],[0.0315245,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":93,"Long":"0.0315245","Lat":"0.0450000","KPI":298,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0450000],[0.0341515,0.0450000],[0.0341515,0.0468000],[0.0315245,0.0468000],[0.0315245,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0315245","Lat":"0.0468000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0468000],[0.0341515,0.0468000],[0.0341515,0.0486000],[0.0315245,0.0486000],[0.0315245,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0315245","Lat":"0.0486000","KPI":329,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0486000],[0.0341515,0.0486000],[0.0341515,0.0504000],[0.0315245,0.0504000],[0.0315245,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":67,"Long":"0.0315245","Lat":"0.0504000","KPI":691,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0504000],[0.0341515,0.0504000],[0.0341515,0.0522000],[0.0315245,0.0522000],[0.0315245,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0315245","Lat":"0.0522000","KPI":646,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0522000],[0.0341515,0.0522000],[0.0341515,0.0540000],[0.0315245,0.0540000],[0.0315245,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0315245","Lat":"0.0540000","KPI":232,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0540000],[0.0341515,0.0540000],[0.0341515,0.0558000],[0.0315245,0.0558000],[0.0315245,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":18,"Long":"0.0315245","Lat":"0.0558000","KPI":257,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315245,0.0558000],[0.0341515,0.0558000],[0.0341515,0.0576000],[0.0315245,0.0576000],[0.0315245,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0341515","Lat":"0.0000000","KPI":820,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0000000],[0.0367786,0.0000000],[0.0367786,0.0018000],[0.0341515,0.0018000],[0.0341515,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":61,"Long":"0.0341515","Lat":"0.0018000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0018000],[0.0367786,0.0018000],[0.0367786,0.0036000],[0.0341515,0.0036000],[0.0341515,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":18,"Long":"0.0341515","Lat":"0.0036000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0036000],[0.0367786,0.0036000],[0.0367786,0.0054000],[0.0341515,0.0054000],[0.0341515,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":88,"Long":"0.0341515","Lat":"0.0054000","KPI":589,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0054000],[0.0367786,0.0054000],[0.0367786,0.0072000],[0.0341515,0.0072000],[0.0341515,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":53,"Long":"0.0341515","Lat":"0.0072000","KPI":824,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0072000],[0.0367786,0.0072000],[0.0367786,0.0090000],[0.0341515,0.0090000],[0.0341515,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0341515","Lat":"0.0090000","KPI":997,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0090000],[0.0367786,0.0090000],[0.0367786,0.0108000],[0.0341515,0.0108000],[0.0341515,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0341515","Lat":"0.0108000","KPI":239,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0108000],[0.0367786,0.0108000],[0.0367786,0.0126000],[0.0341515,0.0126000],[0.0341515,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0341515","Lat":"0.0126000","KPI":329,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0126000],[0.0367786,0.0126000],[0.0367786,0.0144000],[0.0341515,0.0144000],[0.0341515,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0341515","Lat":"0.0144000","KPI":782,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0144000],[0.0367786,0.0144000],[0.0367786,0.0162000],[0.0341515,0.0162000],[0.0341515,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0341515","Lat":"0.0162000","KPI":313,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0162000],[0.0367786,0.0162000],[0.0367786,0.0180000],[0.0341515,0.0180000],[0.0341515,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0341515","Lat":"0.0180000","KPI":113,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0180000],[0.0367786,0.0180000],[0.0367786,0.0198000],[0.0341515,0.0198000],[0.0341515,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0341515","Lat":"0.0198000","KPI":6,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0198000],[0.0367786,0.0198000],[0.0367786,0.0216000],[0.0341515,0.0216000],[0.0341515,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0341515","Lat":"0.0216000","KPI":736,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0216000],[0.0367786,0.0216000],[0.0367786,0.0234000],[0.0341515,0.0234000],[0.0341515,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0341515","Lat":"0.0234000","KPI":483,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0234000],[0.0367786,0.0234000],[0.0367786,0.0252000],[0.0341515,0.0252000],[0.0341515,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0341515","Lat":"0.0252000","KPI":589,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0252000],[0.0367786,0.0252000],[0.0367786,0.0270000],[0.0341515,0.0270000],[0.0341515,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0341515","Lat":"0.0270000","KPI":501,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0270000],[0.0367786,0.0270000],[0.0367786,0.0288000],[0.0341515,0.0288000],[0.0341515,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":51,"Long":"0.0341515","Lat":"0.0288000","KPI":67,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0288000],[0.0367786,0.0288000],[0.0367786,0.0306000],[0.0341515,0.0306000],[0.0341515,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0341515","Lat":"0.0306000","KPI":607,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0306000],[0.0367786,0.0306000],[0.0367786,0.0324000],[0.0341515,0.0324000],[0.0341515,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0341515","Lat":"0.0324000","KPI":217,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0324000],[0.0367786,0.0324000],[0.0367786,0.0342000],[0.0341515,0.0342000],[0.0341515,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0341515","Lat":"0.0342000","KPI":564,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0342000],[0.0367786,0.0342000],[0.0367786,0.0360000],[0.0341515,0.0360000],[0.0341515,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0341515","Lat":"0.0360000","KPI":102,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0360000],[0.0367786,0.0360000],[0.0367786,0.0378000],[0.0341515,0.0378000],[0.0341515,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0341515","Lat":"0.0378000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0378000],[0.0367786,0.0378000],[0.0367786,0.0396000],[0.0341515,0.0396000],[0.0341515,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0341515","Lat":"0.0396000","KPI":128,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0396000],[0.0367786,0.0396000],[0.0367786,0.0414000],[0.0341515,0.0414000],[0.0341515,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0341515","Lat":"0.0414000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0414000],[0.0367786,0.0414000],[0.0367786,0.0432000],[0.0341515,0.0432000],[0.0341515,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0341515","Lat":"0.0432000","KPI":511,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0432000],[0.0367786,0.0432000],[0.0367786,0.0450000],[0.0341515,0.0450000],[0.0341515,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0341515","Lat":"0.0450000","KPI":920,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0450000],[0.0367786,0.0450000],[0.0367786,0.0468000],[0.0341515,0.0468000],[0.0341515,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0341515","Lat":"0.0468000","KPI":857,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0468000],[0.0367786,0.0468000],[0.0367786,0.0486000],[0.0341515,0.0486000],[0.0341515,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0341515","Lat":"0.0486000","KPI":875,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0486000],[0.0367786,0.0486000],[0.0367786,0.0504000],[0.0341515,0.0504000],[0.0341515,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0341515","Lat":"0.0504000","KPI":305,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0504000],[0.0367786,0.0504000],[0.0367786,0.0522000],[0.0341515,0.0522000],[0.0341515,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0341515","Lat":"0.0522000","KPI":590,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0522000],[0.0367786,0.0522000],[0.0367786,0.0540000],[0.0341515,0.0540000],[0.0341515,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":12,"Long":"0.0341515","Lat":"0.0540000","KPI":539,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0540000],[0.0367786,0.0540000],[0.0367786,0.0558000],[0.0341515,0.0558000],[0.0341515,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":5,"Long":"0.0341515","Lat":"0.0558000","KPI":979,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341515,0.0558000],[0.0367786,0.0558000],[0.0367786,0.0576000],[0.0341515,0.0576000],[0.0341515,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0367786","Lat":"0.0000000","KPI":510,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0000000],[0.0394056,0.0000000],[0.0394056,0.0018000],[0.0367786,0.0018000],[0.0367786,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":88,"Long":"0.0367786","Lat":"0.0018000","KPI":163,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0018000],[0.0394056,0.0018000],[0.0394056,0.0036000],[0.0367786,0.0036000],[0.0367786,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":90,"Long":"0.0367786","Lat":"0.0036000","KPI":638,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0036000],[0.0394056,0.0036000],[0.0394056,0.0054000],[0.0367786,0.0054000],[0.0367786,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0367786","Lat":"0.0054000","KPI":731,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0054000],[0.0394056,0.0054000],[0.0394056,0.0072000],[0.0367786,0.0072000],[0.0367786,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":13,"Long":"0.0367786","Lat":"0.0072000","KPI":830,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0072000],[0.0394056,0.0072000],[0.0394056,0.0090000],[0.0367786,0.0090000],[0.0367786,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0367786","Lat":"0.0090000","KPI":489,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0090000],[0.0394056,0.0090000],[0.0394056,0.0108000],[0.0367786,0.0108000],[0.0367786,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0367786","Lat":"0.0108000","KPI":685,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0108000],[0.0394056,0.0108000],[0.0394056,0.0126000],[0.0367786,0.0126000],[0.0367786,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0367786","Lat":"0.0126000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0126000],[0.0394056,0.0126000],[0.0394056,0.0144000],[0.0367786,0.0144000],[0.0367786,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0367786","Lat":"0.0144000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0144000],[0.0394056,0.0144000],[0.0394056,0.0162000],[0.0367786,0.0162000],[0.0367786,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0367786","Lat":"0.0162000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0162000],[0.0394056,0.0162000],[0.0394056,0.0180000],[0.0367786,0.0180000],[0.0367786,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0367786","Lat":"0.0180000","KPI":679,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0180000],[0.0394056,0.0180000],[0.0394056,0.0198000],[0.0367786,0.0198000],[0.0367786,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0367786","Lat":"0.0198000","KPI":112,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0198000],[0.0394056,0.0198000],[0.0394056,0.0216000],[0.0367786,0.0216000],[0.0367786,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0367786","Lat":"0.0216000","KPI":688,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0216000],[0.0394056,0.0216000],[0.0394056,0.0234000],[0.0367786,0.0234000],[0.0367786,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0367786","Lat":"0.0234000","KPI":909,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0234000],[0.0394056,0.0234000],[0.0394056,0.0252000],[0.0367786,0.0252000],[0.0367786,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":98,"Long":"0.0367786","Lat":"0.0252000","KPI":128,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0252000],[0.0394056,0.0252000],[0.0394056,0.0270000],[0.0367786,0.0270000],[0.0367786,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0367786","Lat":"0.0270000","KPI":152,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0270000],[0.0394056,0.0270000],[0.0394056,0.0288000],[0.0367786,0.0288000],[0.0367786,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0367786","Lat":"0.0288000","KPI":898,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0288000],[0.0394056,0.0288000],[0.0394056,0.0306000],[0.0367786,0.0306000],[0.0367786,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":74,"Long":"0.0367786","Lat":"0.0306000","KPI":716,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0306000],[0.0394056,0.0306000],[0.0394056,0.0324000],[0.0367786,0.0324000],[0.0367786,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":51,"Long":"0.0367786","Lat":"0.0324000","KPI":893,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0324000],[0.0394056,0.0324000],[0.0394056,0.0342000],[0.0367786,0.0342000],[0.0367786,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":46,"Long":"0.0367786","Lat":"0.0342000","KPI":186,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0342000],[0.0394056,0.0342000],[0.0394056,0.0360000],[0.0367786,0.0360000],[0.0367786,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":2,"Long":"0.0367786","Lat":"0.0360000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0360000],[0.0394056,0.0360000],[0.0394056,0.0378000],[0.0367786,0.0378000],[0.0367786,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0367786","Lat":"0.0378000","KPI":567,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0378000],[0.0394056,0.0378000],[0.0394056,0.0396000],[0.0367786,0.0396000],[0.0367786,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0367786","Lat":"0.0396000","KPI":296,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0396000],[0.0394056,0.0396000],[0.0394056,0.0414000],[0.0367786,0.0414000],[0.0367786,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0367786","Lat":"0.0414000","KPI":50,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0414000],[0.0394056,0.0414000],[0.0394056,0.0432000],[0.0367786,0.0432000],[0.0367786,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0367786","Lat":"0.0432000","KPI":394,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0432000],[0.0394056,0.0432000],[0.0394056,0.0450000],[0.0367786,0.0450000],[0.0367786,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0367786","Lat":"0.0450000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0450000],[0.0394056,0.0450000],[0.0394056,0.0468000],[0.0367786,0.0468000],[0.0367786,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":55,"Long":"0.0367786","Lat":"0.0468000","KPI":174,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0468000],[0.0394056,0.0468000],[0.0394056,0.0486000],[0.0367786,0.0486000],[0.0367786,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0367786","Lat":"0.0486000","KPI":768,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0486000],[0.0394056,0.0486000],[0.0394056,0.0504000],[0.0367786,0.0504000],[0.0367786,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":81,"Long":"0.0367786","Lat":"0.0504000","KPI":866,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0504000],[0.0394056,0.0504000],[0.0394056,0.0522000],[0.0367786,0.0522000],[0.0367786,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0367786","Lat":"0.0522000","KPI":952,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0522000],[0.0394056,0.0522000],[0.0394056,0.0540000],[0.0367786,0.0540000],[0.0367786,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0367786","Lat":"0.0540000","KPI":817,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0540000],[0.0394056,0.0540000],[0.0394056,0.0558000],[0.0367786,0.0558000],[0.0367786,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0367786","Lat":"0.0558000","KPI":840,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367786,0.0558000],[0.0394056,0.0558000],[0.0394056,0.0576000],[0.0367786,0.0576000],[0.0367786,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0394056","Lat":"0.0000000","KPI":776,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0000000],[0.0420326,0.0000000],[0.0420326,0.0018000],[0.0394056,0.0018000],[0.0394056,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0394056","Lat":"0.0018000","KPI":825,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0018000],[0.0420326,0.0018000],[0.0420326,0.0036000],[0.0394056,0.0036000],[0.0394056,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0394056","Lat":"0.0036000","KPI":998,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0036000],[0.0420326,0.0036000],[0.0420326,0.0054000],[0.0394056,0.0054000],[0.0394056,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0394056","Lat":"0.0054000","KPI":756,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0054000],[0.0420326,0.0054000],[0.0420326,0.0072000],[0.0394056,0.0072000],[0.0394056,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0394056","Lat":"0.0072000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0072000],[0.0420326,0.0072000],[0.0420326,0.0090000],[0.0394056,0.0090000],[0.0394056,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0394056","Lat":"0.0090000","KPI":330,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0090000],[0.0420326,0.0090000],[0.0420326,0.0108000],[0.0394056,0.0108000],[0.0394056,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0394056","Lat":"0.0108000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0108000],[0.0420326,0.0108000],[0.0420326,0.0126000],[0.0394056,0.0126000],[0.0394056,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":49,"Long":"0.0394056","Lat":"0.0126000","KPI":253,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0126000],[0.0420326,0.0126000],[0.0420326,0.0144000],[0.0394056,0.0144000],[0.0394056,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0394056","Lat":"0.0144000","KPI":102,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0144000],[0.0420326,0.0144000],[0.0420326,0.0162000],[0.0394056,0.0162000],[0.0394056,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":90,"Long":"0.0394056","Lat":"0.0162000","KPI":228,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0162000],[0.0420326,0.0162000],[0.0420326,0.0180000],[0.0394056,0.0180000],[0.0394056,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0394056","Lat":"0.0180000","KPI":935,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0180000],[0.0420326,0.0180000],[0.0420326,0.0198000],[0.0394056,0.0198000],[0.0394056,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0394056","Lat":"0.0198000","KPI":43,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0198000],[0.0420326,0.0198000],[0.0420326,0.0216000],[0.0394056,0.0216000],[0.0394056,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0394056","Lat":"0.0216000","KPI":790,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0216000],[0.0420326,0.0216000],[0.0420326,0.0234000],[0.0394056,0.0234000],[0.0394056,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0394056","Lat":"0.0234000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0234000],[0.0420326,0.0234000],[0.0420326,0.0252000],[0.0394056,0.0252000],[0.0394056,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0394056","Lat":"0.0252000","KPI":544,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0252000],[0.0420326,0.0252000],[0.0420326,0.0270000],[0.0394056,0.0270000],[0.0394056,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0394056","Lat":"0.0270000","KPI":52,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0270000],[0.0420326,0.0270000],[0.0420326,0.0288000],[0.0394056,0.0288000],[0.0394056,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0394056","Lat":"0.0288000","KPI":335,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0288000],[0.0420326,0.0288000],[0.0420326,0.0306000],[0.0394056,0.0306000],[0.0394056,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0394056","Lat":"0.0306000","KPI":532,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0306000],[0.0420326,0.0306000],[0.0420326,0.0324000],[0.0394056,0.0324000],[0.0394056,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0394056","Lat":"0.0324000","KPI":566,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0324000],[0.0420326,0.0324000],[0.0420326,0.0342000],[0.0394056,0.0342000],[0.0394056,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0394056","Lat":"0.0342000","KPI":393,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0342000],[0.0420326,0.0342000],[0.0420326,0.0360000],[0.0394056,0.0360000],[0.0394056,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0394056","Lat":"0.0360000","KPI":28,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0360000],[0.0420326,0.0360000],[0.0420326,0.0378000],[0.0394056,0.0378000],[0.0394056,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0394056","Lat":"0.0378000","KPI":751,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0378000],[0.0420326,0.0378000],[0.0420326,0.0396000],[0.0394056,0.0396000],[0.0394056,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0394056","Lat":"0.0396000","KPI":235,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0396000],[0.0420326,0.0396000],[0.0420326,0.0414000],[0.0394056,0.0414000],[0.0394056,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0394056","Lat":"0.0414000","KPI":587,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0414000],[0.0420326,0.0414000],[0.0420326,0.0432000],[0.0394056,0.0432000],[0.0394056,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0394056","Lat":"0.0432000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0432000],[0.0420326,0.0432000],[0.0420326,0.0450000],[0.0394056,0.0450000],[0.0394056,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0394056","Lat":"0.0450000","KPI":133,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0450000],[0.0420326,0.0450000],[0.0420326,0.0468000],[0.0394056,0.0468000],[0.0394056,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":98,"Long":"0.0394056","Lat":"0.0468000","KPI":312,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0468000],[0.0420326,0.0468000],[0.0420326,0.0486000],[0.0394056,0.0486000],[0.0394056,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0394056","Lat":"0.0486000","KPI":799,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0486000],[0.0420326,0.0486000],[0.0420326,0.0504000],[0.0394056,0.0504000],[0.0394056,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0394056","Lat":"0.0504000","KPI":917,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0504000],[0.0420326,0.0504000],[0.0420326,0.0522000],[0.0394056,0.0522000],[0.0394056,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0394056","Lat":"0.0522000","KPI":654,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0522000],[0.0420326,0.0522000],[0.0420326,0.0540000],[0.0394056,0.0540000],[0.0394056,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0394056","Lat":"0.0540000","KPI":36,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0540000],[0.0420326,0.0540000],[0.0420326,0.0558000],[0.0394056,0.0558000],[0.0394056,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0394056","Lat":"0.0558000","KPI":68,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394056,0.0558000],[0.0420326,0.0558000],[0.0420326,0.0576000],[0.0394056,0.0576000],[0.0394056,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0420326","Lat":"0.0000000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0000000],[0.0446597,0.0000000],[0.0446597,0.0018000],[0.0420326,0.0018000],[0.0420326,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0420326","Lat":"0.0018000","KPI":720,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0018000],[0.0446597,0.0018000],[0.0446597,0.0036000],[0.0420326,0.0036000],[0.0420326,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0420326","Lat":"0.0036000","KPI":679,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0036000],[0.0446597,0.0036000],[0.0446597,0.0054000],[0.0420326,0.0054000],[0.0420326,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0420326","Lat":"0.0054000","KPI":809,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0054000],[0.0446597,0.0054000],[0.0446597,0.0072000],[0.0420326,0.0072000],[0.0420326,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":60,"Long":"0.0420326","Lat":"0.0072000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0072000],[0.0446597,0.0072000],[0.0446597,0.0090000],[0.0420326,0.0090000],[0.0420326,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0420326","Lat":"0.0090000","KPI":965,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0090000],[0.0446597,0.0090000],[0.0446597,0.0108000],[0.0420326,0.0108000],[0.0420326,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0420326","Lat":"0.0108000","KPI":161,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0108000],[0.0446597,0.0108000],[0.0446597,0.0126000],[0.0420326,0.0126000],[0.0420326,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0420326","Lat":"0.0126000","KPI":72,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0126000],[0.0446597,0.0126000],[0.0446597,0.0144000],[0.0420326,0.0144000],[0.0420326,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0420326","Lat":"0.0144000","KPI":307,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0144000],[0.0446597,0.0144000],[0.0446597,0.0162000],[0.0420326,0.0162000],[0.0420326,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0420326","Lat":"0.0162000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0162000],[0.0446597,0.0162000],[0.0446597,0.0180000],[0.0420326,0.0180000],[0.0420326,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0420326","Lat":"0.0180000","KPI":405,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0180000],[0.0446597,0.0180000],[0.0446597,0.0198000],[0.0420326,0.0198000],[0.0420326,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0420326","Lat":"0.0198000","KPI":326,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0198000],[0.0446597,0.0198000],[0.0446597,0.0216000],[0.0420326,0.0216000],[0.0420326,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":82,"Long":"0.0420326","Lat":"0.0216000","KPI":989,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0216000],[0.0446597,0.0216000],[0.0446597,0.0234000],[0.0420326,0.0234000],[0.0420326,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0420326","Lat":"0.0234000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0234000],[0.0446597,0.0234000],[0.0446597,0.0252000],[0.0420326,0.0252000],[0.0420326,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0420326","Lat":"0.0252000","KPI":378,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0252000],[0.0446597,0.0252000],[0.0446597,0.0270000],[0.0420326,0.0270000],[0.0420326,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0420326","Lat":"0.0270000","KPI":762,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0270000],[0.0446597,0.0270000],[0.0446597,0.0288000],[0.0420326,0.0288000],[0.0420326,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0420326","Lat":"0.0288000","KPI":292,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0288000],[0.0446597,0.0288000],[0.0446597,0.0306000],[0.0420326,0.0306000],[0.0420326,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":15,"Long":"0.0420326","Lat":"0.0306000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0306000],[0.0446597,0.0306000],[0.0446597,0.0324000],[0.0420326,0.0324000],[0.0420326,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0420326","Lat":"0.0324000","KPI":18,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0324000],[0.0446597,0.0324000],[0.0446597,0.0342000],[0.0420326,0.0342000],[0.0420326,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":52,"Long":"0.0420326","Lat":"0.0342000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0342000],[0.0446597,0.0342000],[0.0446597,0.0360000],[0.0420326,0.0360000],[0.0420326,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0420326","Lat":"0.0360000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0360000],[0.0446597,0.0360000],[0.0446597,0.0378000],[0.0420326,0.0378000],[0.0420326,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0420326","Lat":"0.0378000","KPI":437,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0378000],[0.0446597,0.0378000],[0.0446597,0.0396000],[0.0420326,0.0396000],[0.0420326,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":12,"Long":"0.0420326","Lat":"0.0396000","KPI":465,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0396000],[0.0446597,0.0396000],[0.0446597,0.0414000],[0.0420326,0.0414000],[0.0420326,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0420326","Lat":"0.0414000","KPI":334,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0414000],[0.0446597,0.0414000],[0.0446597,0.0432000],[0.0420326,0.0432000],[0.0420326,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0420326","Lat":"0.0432000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0432000],[0.0446597,0.0432000],[0.0446597,0.0450000],[0.0420326,0.0450000],[0.0420326,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0420326","Lat":"0.0450000","KPI":434,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0450000],[0.0446597,0.0450000],[0.0446597,0.0468000],[0.0420326,0.0468000],[0.0420326,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0420326","Lat":"0.0468000","KPI":316,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0468000],[0.0446597,0.0468000],[0.0446597,0.0486000],[0.0420326,0.0486000],[0.0420326,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":38,"Long":"0.0420326","Lat":"0.0486000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0486000],[0.0446597,0.0486000],[0.0446597,0.0504000],[0.0420326,0.0504000],[0.0420326,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0420326","Lat":"0.0504000","KPI":65,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0504000],[0.0446597,0.0504000],[0.0446597,0.0522000],[0.0420326,0.0522000],[0.0420326,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0420326","Lat":"0.0522000","KPI":282,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0522000],[0.0446597,0.0522000],[0.0446597,0.0540000],[0.0420326,0.0540000],[0.0420326,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0420326","Lat":"0.0540000","KPI":822,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0540000],[0.0446597,0.0540000],[0.0446597,0.0558000],[0.0420326,0.0558000],[0.0420326,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0420326","Lat":"0.0558000","KPI":185,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420326,0.0558000],[0.0446597,0.0558000],[0.0446597,0.0576000],[0.0420326,0.0576000],[0.0420326,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0446597","Lat":"0.0000000","KPI":393,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0000000],[0.0472867,0.0000000],[0.0472867,0.0018000],[0.0446597,0.0018000],[0.0446597,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0446597","Lat":"0.0018000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0018000],[0.0472867,0.0018000],[0.0472867,0.0036000],[0.0446597,0.0036000],[0.0446597,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0446597","Lat":"0.0036000","KPI":236,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0036000],[0.0472867,0.0036000],[0.0472867,0.0054000],[0.0446597,0.0054000],[0.0446597,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0446597","Lat":"0.0054000","KPI":264,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0054000],[0.0472867,0.0054000],[0.0472867,0.0072000],[0.0446597,0.0072000],[0.0446597,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0446597","Lat":"0.0072000","KPI":398,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0072000],[0.0472867,0.0072000],[0.0472867,0.0090000],[0.0446597,0.0090000],[0.0446597,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0446597","Lat":"0.0090000","KPI":387,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0090000],[0.0472867,0.0090000],[0.0472867,0.0108000],[0.0446597,0.0108000],[0.0446597,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0446597","Lat":"0.0108000","KPI":742,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0108000],[0.0472867,0.0108000],[0.0472867,0.0126000],[0.0446597,0.0126000],[0.0446597,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0446597","Lat":"0.0126000","KPI":307,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0126000],[0.0472867,0.0126000],[0.0472867,0.0144000],[0.0446597,0.0144000],[0.0446597,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":46,"Long":"0.0446597","Lat":"0.0144000","KPI":356,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0144000],[0.0472867,0.0144000],[0.0472867,0.0162000],[0.0446597,0.0162000],[0.0446597,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0446597","Lat":"0.0162000","KPI":160,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0162000],[0.0472867,0.0162000],[0.0472867,0.0180000],[0.0446597,0.0180000],[0.0446597,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0446597","Lat":"0.0180000","KPI":655,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0180000],[0.0472867,0.0180000],[0.0472867,0.0198000],[0.0446597,0.0198000],[0.0446597,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0446597","Lat":"0.0198000","KPI":352,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0198000],[0.0472867,0.0198000],[0.0472867,0.0216000],[0.0446597,0.0216000],[0.0446597,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0446597","Lat":"0.0216000","KPI":807,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0216000],[0.0472867,0.0216000],[0.0472867,0.0234000],[0.0446597,0.0234000],[0.0446597,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0446597","Lat":"0.0234000","KPI":967,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0234000],[0.0472867,0.0234000],[0.0472867,0.0252000],[0.0446597,0.0252000],[0.0446597,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0446597","Lat":"0.0252000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0252000],[0.0472867,0.0252000],[0.0472867,0.0270000],[0.0446597,0.0270000],[0.0446597,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0446597","Lat":"0.0270000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0270000],[0.0472867,0.0270000],[0.0472867,0.0288000],[0.0446597,0.0288000],[0.0446597,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0446597","Lat":"0.0288000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0288000],[0.0472867,0.0288000],[0.0472867,0.0306000],[0.0446597,0.0306000],[0.0446597,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0446597","Lat":"0.0306000","KPI":226,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0306000],[0.0472867,0.0306000],[0.0472867,0.0324000],[0.0446597,0.0324000],[0.0446597,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0446597","Lat":"0.0324000","KPI":584,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0324000],[0.0472867,0.0324000],[0.0472867,0.0342000],[0.0446597,0.0342000],[0.0446597,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":69,"Long":"0.0446597","Lat":"0.0342000","KPI":829,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0342000],[0.0472867,0.0342000],[0.0472867,0.0360000],[0.0446597,0.0360000],[0.0446597,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":82,"Long":"0.0446597","Lat":"0.0360000","KPI":789,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0360000],[0.0472867,0.0360000],[0.0472867,0.0378000],[0.0446597,0.0378000],[0.0446597,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":18,"Long":"0.0446597","Lat":"0.0378000","KPI":463,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0378000],[0.0472867,0.0378000],[0.0472867,0.0396000],[0.0446597,0.0396000],[0.0446597,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0446597","Lat":"0.0396000","KPI":190,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0396000],[0.0472867,0.0396000],[0.0472867,0.0414000],[0.0446597,0.0414000],[0.0446597,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":16,"Long":"0.0446597","Lat":"0.0414000","KPI":191,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0414000],[0.0472867,0.0414000],[0.0472867,0.0432000],[0.0446597,0.0432000],[0.0446597,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":66,"Long":"0.0446597","Lat":"0.0432000","KPI":191,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0432000],[0.0472867,0.0432000],[0.0472867,0.0450000],[0.0446597,0.0450000],[0.0446597,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0446597","Lat":"0.0450000","KPI":368,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0450000],[0.0472867,0.0450000],[0.0472867,0.0468000],[0.0446597,0.0468000],[0.0446597,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0446597","Lat":"0.0468000","KPI":286,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0468000],[0.0472867,0.0468000],[0.0472867,0.0486000],[0.0446597,0.0486000],[0.0446597,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0446597","Lat":"0.0486000","KPI":978,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0486000],[0.0472867,0.0486000],[0.0472867,0.0504000],[0.0446597,0.0504000],[0.0446597,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0446597","Lat":"0.0504000","KPI":7,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0504000],[0.0472867,0.0504000],[0.0472867,0.0522000],[0.0446597,0.0522000],[0.0446597,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0446597","Lat":"0.0522000","KPI":620,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0522000],[0.0472867,0.0522000],[0.0472867,0.0540000],[0.0446597,0.0540000],[0.0446597,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0446597","Lat":"0.0540000","KPI":488,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0540000],[0.0472867,0.0540000],[0.0472867,0.0558000],[0.0446597,0.0558000],[0.0446597,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":82,"Long":"0.0446597","Lat":"0.0558000","KPI":534,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446597,0.0558000],[0.0472867,0.0558000],[0.0472867,0.0576000],[0.0446597,0.0576000],[0.0446597,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0472867","Lat":"0.0000000","KPI":993,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0000000],[0.0499138,0.0000000],[0.0499138,0.0018000],[0.0472867,0.0018000],[0.0472867,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0472867","Lat":"0.0018000","KPI":648,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0018000],[0.0499138,0.0018000],[0.0499138,0.0036000],[0.0472867,0.0036000],[0.0472867,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0472867","Lat":"0.0036000","KPI":790,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0036000],[0.0499138,0.0036000],[0.0499138,0.0054000],[0.0472867,0.0054000],[0.0472867,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0472867","Lat":"0.0054000","KPI":262,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0054000],[0.0499138,0.0054000],[0.0499138,0.0072000],[0.0472867,0.0072000],[0.0472867,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0472867","Lat":"0.0072000","KPI":242,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0072000],[0.0499138,0.0072000],[0.0499138,0.0090000],[0.0472867,0.0090000],[0.0472867,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0472867","Lat":"0.0090000","KPI":666,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0090000],[0.0499138,0.0090000],[0.0499138,0.0108000],[0.0472867,0.0108000],[0.0472867,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0472867","Lat":"0.0108000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0108000],[0.0499138,0.0108000],[0.0499138,0.0126000],[0.0472867,0.0126000],[0.0472867,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0472867","Lat":"0.0126000","KPI":652,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0126000],[0.0499138,0.0126000],[0.0499138,0.0144000],[0.0472867,0.0144000],[0.0472867,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0472867","Lat":"0.0144000","KPI":233,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0144000],[0.0499138,0.0144000],[0.0499138,0.0162000],[0.0472867,0.0162000],[0.0472867,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0472867","Lat":"0.0162000","KPI":646,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0162000],[0.0499138,0.0162000],[0.0499138,0.0180000],[0.0472867,0.0180000],[0.0472867,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0472867","Lat":"0.0180000","KPI":330,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0180000],[0.0499138,0.0180000],[0.0499138,0.0198000],[0.0472867,0.0198000],[0.0472867,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0472867","Lat":"0.0198000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0198000],[0.0499138,0.0198000],[0.0499138,0.0216000],[0.0472867,0.0216000],[0.0472867,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0472867","Lat":"0.0216000","KPI":376,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0216000],[0.0499138,0.0216000],[0.0499138,0.0234000],[0.0472867,0.0234000],[0.0472867,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0472867","Lat":"0.0234000","KPI":89,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0234000],[0.0499138,0.0234000],[0.0499138,0.0252000],[0.0472867,0.0252000],[0.0472867,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0472867","Lat":"0.0252000","KPI":876,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0252000],[0.0499138,0.0252000],[0.0499138,0.0270000],[0.0472867,0.0270000],[0.0472867,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":69,"Long":"0.0472867","Lat":"0.0270000","KPI":158,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0270000],[0.0499138,0.0270000],[0.0499138,0.0288000],[0.0472867,0.0288000],[0.0472867,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0472867","Lat":"0.0288000","KPI":115,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0288000],[0.0499138,0.0288000],[0.0499138,0.0306000],[0.0472867,0.0306000],[0.0472867,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0472867","Lat":"0.0306000","KPI":723,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0306000],[0.0499138,0.0306000],[0.0499138,0.0324000],[0.0472867,0.0324000],[0.0472867,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0472867","Lat":"0.0324000","KPI":181,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0324000],[0.0499138,0.0324000],[0.0499138,0.0342000],[0.0472867,0.0342000],[0.0472867,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":98,"Long":"0.0472867","Lat":"0.0342000","KPI":472,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0342000],[0.0499138,0.0342000],[0.0499138,0.0360000],[0.0472867,0.0360000],[0.0472867,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0472867","Lat":"0.0360000","KPI":920,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0360000],[0.0499138,0.0360000],[0.0499138,0.0378000],[0.0472867,0.0378000],[0.0472867,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":16,"Long":"0.0472867","Lat":"0.0378000","KPI":515,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0378000],[0.0499138,0.0378000],[0.0499138,0.0396000],[0.0472867,0.0396000],[0.0472867,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0472867","Lat":"0.0396000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0396000],[0.0499138,0.0396000],[0.0499138,0.0414000],[0.0472867,0.0414000],[0.0472867,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0472867","Lat":"0.0414000","KPI":280,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0414000],[0.0499138,0.0414000],[0.0499138,0.0432000],[0.0472867,0.0432000],[0.0472867,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0472867","Lat":"0.0432000","KPI":713,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0432000],[0.0499138,0.0432000],[0.0499138,0.0450000],[0.0472867,0.0450000],[0.0472867,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0472867","Lat":"0.0450000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0450000],[0.0499138,0.0450000],[0.0499138,0.0468000],[0.0472867,0.0468000],[0.0472867,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":18,"Long":"0.0472867","Lat":"0.0468000","KPI":416,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0468000],[0.0499138,0.0468000],[0.0499138,0.0486000],[0.0472867,0.0486000],[0.0472867,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0472867","Lat":"0.0486000","KPI":837,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0486000],[0.0499138,0.0486000],[0.0499138,0.0504000],[0.0472867,0.0504000],[0.0472867,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":38,"Long":"0.0472867","Lat":"0.0504000","KPI":568,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0504000],[0.0499138,0.0504000],[0.0499138,0.0522000],[0.0472867,0.0522000],[0.0472867,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0472867","Lat":"0.0522000","KPI":176,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0522000],[0.0499138,0.0522000],[0.0499138,0.0540000],[0.0472867,0.0540000],[0.0472867,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":96,"Long":"0.0472867","Lat":"0.0540000","KPI":71,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0540000],[0.0499138,0.0540000],[0.0499138,0.0558000],[0.0472867,0.0558000],[0.0472867,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":26,"Long":"0.0472867","Lat":"0.0558000","KPI":813,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472867,0.0558000],[0.0499138,0.0558000],[0.0499138,0.0576000],[0.0472867,0.0576000],[0.0472867,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0499138","Lat":"0.0000000","KPI":731,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0000000],[0.0525408,0.0000000],[0.0525408,0.0018000],[0.0499138,0.0018000],[0.0499138,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0499138","Lat":"0.0018000","KPI":958,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0018000],[0.0525408,0.0018000],[0.0525408,0.0036000],[0.0499138,0.0036000],[0.0499138,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":38,"Long":"0.0499138","Lat":"0.0036000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0036000],[0.0525408,0.0036000],[0.0525408,0.0054000],[0.0499138,0.0054000],[0.0499138,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":69,"Long":"0.0499138","Lat":"0.0054000","KPI":237,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0054000],[0.0525408,0.0054000],[0.0525408,0.0072000],[0.0499138,0.0072000],[0.0499138,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":15,"Long":"0.0499138","Lat":"0.0072000","KPI":292,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0072000],[0.0525408,0.0072000],[0.0525408,0.0090000],[0.0499138,0.0090000],[0.0499138,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0499138","Lat":"0.0090000","KPI":482,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0090000],[0.0525408,0.0090000],[0.0525408,0.0108000],[0.0499138,0.0108000],[0.0499138,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0499138","Lat":"0.0108000","KPI":641,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0108000],[0.0525408,0.0108000],[0.0525408,0.0126000],[0.0499138,0.0126000],[0.0499138,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0499138","Lat":"0.0126000","KPI":290,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0126000],[0.0525408,0.0126000],[0.0525408,0.0144000],[0.0499138,0.0144000],[0.0499138,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":12,"Long":"0.0499138","Lat":"0.0144000","KPI":58,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0144000],[0.0525408,0.0144000],[0.0525408,0.0162000],[0.0499138,0.0162000],[0.0499138,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0499138","Lat":"0.0162000","KPI":970,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0162000],[0.0525408,0.0162000],[0.0525408,0.0180000],[0.0499138,0.0180000],[0.0499138,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0499138","Lat":"0.0180000","KPI":181,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0180000],[0.0525408,0.0180000],[0.0525408,0.0198000],[0.0499138,0.0198000],[0.0499138,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0499138","Lat":"0.0198000","KPI":720,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0198000],[0.0525408,0.0198000],[0.0525408,0.0216000],[0.0499138,0.0216000],[0.0499138,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0499138","Lat":"0.0216000","KPI":468,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0216000],[0.0525408,0.0216000],[0.0525408,0.0234000],[0.0499138,0.0234000],[0.0499138,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0499138","Lat":"0.0234000","KPI":185,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0234000],[0.0525408,0.0234000],[0.0525408,0.0252000],[0.0499138,0.0252000],[0.0499138,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0499138","Lat":"0.0252000","KPI":117,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0252000],[0.0525408,0.0252000],[0.0525408,0.0270000],[0.0499138,0.0270000],[0.0499138,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0499138","Lat":"0.0270000","KPI":872,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0270000],[0.0525408,0.0270000],[0.0525408,0.0288000],[0.0499138,0.0288000],[0.0499138,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":12,"Long":"0.0499138","Lat":"0.0288000","KPI":592,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0288000],[0.0525408,0.0288000],[0.0525408,0.0306000],[0.0499138,0.0306000],[0.0499138,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0499138","Lat":"0.0306000","KPI":225,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0306000],[0.0525408,0.0306000],[0.0525408,0.0324000],[0.0499138,0.0324000],[0.0499138,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0499138","Lat":"0.0324000","KPI":342,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0324000],[0.0525408,0.0324000],[0.0525408,0.0342000],[0.0499138,0.0342000],[0.0499138,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0499138","Lat":"0.0342000","KPI":588,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0342000],[0.0525408,0.0342000],[0.0525408,0.0360000],[0.0499138,0.0360000],[0.0499138,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0499138","Lat":"0.0360000","KPI":543,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0360000],[0.0525408,0.0360000],[0.0525408,0.0378000],[0.0499138,0.0378000],[0.0499138,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0499138","Lat":"0.0378000","KPI":652,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0378000],[0.0525408,0.0378000],[0.0525408,0.0396000],[0.0499138,0.0396000],[0.0499138,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0499138","Lat":"0.0396000","KPI":524,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0396000],[0.0525408,0.0396000],[0.0525408,0.0414000],[0.0499138,0.0414000],[0.0499138,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0499138","Lat":"0.0414000","KPI":476,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0414000],[0.0525408,0.0414000],[0.0525408,0.0432000],[0.0499138,0.0432000],[0.0499138,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0499138","Lat":"0.0432000","KPI":866,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0432000],[0.0525408,0.0432000],[0.0525408,0.0450000],[0.0499138,0.0450000],[0.0499138,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":6,"Long":"0.0499138","Lat":"0.0450000","KPI":598,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0450000],[0.0525408,0.0450000],[0.0525408,0.0468000],[0.0499138,0.0468000],[0.0499138,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0499138","Lat":"0.0468000","KPI":22,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0468000],[0.0525408,0.0468000],[0.0525408,0.0486000],[0.0499138,0.0486000],[0.0499138,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0499138","Lat":"0.0486000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0486000],[0.0525408,0.0486000],[0.0525408,0.0504000],[0.0499138,0.0504000],[0.0499138,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0499138","Lat":"0.0504000","KPI":725,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0504000],[0.0525408,0.0504000],[0.0525408,0.0522000],[0.0499138,0.0522000],[0.0499138,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0499138","Lat":"0.0522000","KPI":719,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0522000],[0.0525408,0.0522000],[0.0525408,0.0540000],[0.0499138,0.0540000],[0.0499138,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0499138","Lat":"0.0540000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0540000],[0.0525408,0.0540000],[0.0525408,0.0558000],[0.0499138,0.0558000],[0.0499138,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0499138","Lat":"0.0558000","KPI":605,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499138,0.0558000],[0.0525408,0.0558000],[0.0525408,0.0576000],[0.0499138,0.0576000],[0.0499138,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":15,"Long":"0.0525408","Lat":"0.0000000","KPI":944,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0000000],[0.0551678,0.0000000],[0.0551678,0.0018000],[0.0525408,0.0018000],[0.0525408,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0525408","Lat":"0.0018000","KPI":122,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0018000],[0.0551678,0.0018000],[0.0551678,0.0036000],[0.0525408,0.0036000],[0.0525408,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0525408","Lat":"0.0036000","KPI":406,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0036000],[0.0551678,0.0036000],[0.0551678,0.0054000],[0.0525408,0.0054000],[0.0525408,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":71,"Long":"0.0525408","Lat":"0.0054000","KPI":453,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0054000],[0.0551678,0.0054000],[0.0551678,0.0072000],[0.0525408,0.0072000],[0.0525408,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0525408","Lat":"0.0072000","KPI":227,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0072000],[0.0551678,0.0072000],[0.0551678,0.0090000],[0.0525408,0.0090000],[0.0525408,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0525408","Lat":"0.0090000","KPI":657,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0090000],[0.0551678,0.0090000],[0.0551678,0.0108000],[0.0525408,0.0108000],[0.0525408,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0525408","Lat":"0.0108000","KPI":784,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0108000],[0.0551678,0.0108000],[0.0551678,0.0126000],[0.0525408,0.0126000],[0.0525408,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0525408","Lat":"0.0126000","KPI":419,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0126000],[0.0551678,0.0126000],[0.0551678,0.0144000],[0.0525408,0.0144000],[0.0525408,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0525408","Lat":"0.0144000","KPI":119,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0144000],[0.0551678,0.0144000],[0.0551678,0.0162000],[0.0525408,0.0162000],[0.0525408,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0525408","Lat":"0.0162000","KPI":187,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0162000],[0.0551678,0.0162000],[0.0551678,0.0180000],[0.0525408,0.0180000],[0.0525408,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0525408","Lat":"0.0180000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0180000],[0.0551678,0.0180000],[0.0551678,0.0198000],[0.0525408,0.0198000],[0.0525408,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":13,"Long":"0.0525408","Lat":"0.0198000","KPI":955,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0198000],[0.0551678,0.0198000],[0.0551678,0.0216000],[0.0525408,0.0216000],[0.0525408,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0525408","Lat":"0.0216000","KPI":528,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0216000],[0.0551678,0.0216000],[0.0551678,0.0234000],[0.0525408,0.0234000],[0.0525408,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0525408","Lat":"0.0234000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0234000],[0.0551678,0.0234000],[0.0551678,0.0252000],[0.0525408,0.0252000],[0.0525408,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0525408","Lat":"0.0252000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0252000],[0.0551678,0.0252000],[0.0551678,0.0270000],[0.0525408,0.0270000],[0.0525408,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":30,"Long":"0.0525408","Lat":"0.0270000","KPI":514,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0270000],[0.0551678,0.0270000],[0.0551678,0.0288000],[0.0525408,0.0288000],[0.0525408,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0525408","Lat":"0.0288000","KPI":876,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0288000],[0.0551678,0.0288000],[0.0551678,0.0306000],[0.0525408,0.0306000],[0.0525408,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0525408","Lat":"0.0306000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0306000],[0.0551678,0.0306000],[0.0551678,0.0324000],[0.0525408,0.0324000],[0.0525408,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0525408","Lat":"0.0324000","KPI":245,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0324000],[0.0551678,0.0324000],[0.0551678,0.0342000],[0.0525408,0.0342000],[0.0525408,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0525408","Lat":"0.0342000","KPI":550,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0342000],[0.0551678,0.0342000],[0.0551678,0.0360000],[0.0525408,0.0360000],[0.0525408,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":52,"Long":"0.0525408","Lat":"0.0360000","KPI":180,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0360000],[0.0551678,0.0360000],[0.0551678,0.0378000],[0.0525408,0.0378000],[0.0525408,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0525408","Lat":"0.0378000","KPI":841,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0378000],[0.0551678,0.0378000],[0.0551678,0.0396000],[0.0525408,0.0396000],[0.0525408,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0525408","Lat":"0.0396000","KPI":224,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0396000],[0.0551678,0.0396000],[0.0551678,0.0414000],[0.0525408,0.0414000],[0.0525408,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0525408","Lat":"0.0414000","KPI":936,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0414000],[0.0551678,0.0414000],[0.0551678,0.0432000],[0.0525408,0.0432000],[0.0525408,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0525408","Lat":"0.0432000","KPI":658,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0432000],[0.0551678,0.0432000],[0.0551678,0.0450000],[0.0525408,0.0450000],[0.0525408,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0525408","Lat":"0.0450000","KPI":892,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0450000],[0.0551678,0.0450000],[0.0551678,0.0468000],[0.0525408,0.0468000],[0.0525408,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0525408","Lat":"0.0468000","KPI":575,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0468000],[0.0551678,0.0468000],[0.0551678,0.0486000],[0.0525408,0.0486000],[0.0525408,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0525408","Lat":"0.0486000","KPI":529,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0486000],[0.0551678,0.0486000],[0.0551678,0.0504000],[0.0525408,0.0504000],[0.0525408,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0525408","Lat":"0.0504000","KPI":646,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0504000],[0.0551678,0.0504000],[0.0551678,0.0522000],[0.0525408,0.0522000],[0.0525408,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0525408","Lat":"0.0522000","KPI":806,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0522000],[0.0551678,0.0522000],[0.0551678,0.0540000],[0.0525408,0.0540000],[0.0525408,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0525408","Lat":"0.0540000","KPI":916,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0540000],[0.0551678,0.0540000],[0.0551678,0.0558000],[0.0525408,0.0558000],[0.0525408,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":96,"Long":"0.0525408","Lat":"0.0558000","KPI":909,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525408,0.0558000],[0.0551678,0.0558000],[0.0551678,0.0576000],[0.0525408,0.0576000],[0.0525408,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0551678","Lat":"0.0000000","KPI":910,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0000000],[0.0577949,0.0000000],[0.0577949,0.0018000],[0.0551678,0.0018000],[0.0551678,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0551678","Lat":"0.0018000","KPI":733,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0018000],[0.0577949,0.0018000],[0.0577949,0.0036000],[0.0551678,0.0036000],[0.0551678,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0551678","Lat":"0.0036000","KPI":832,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0036000],[0.0577949,0.0036000],[0.0577949,0.0054000],[0.0551678,0.0054000],[0.0551678,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0551678","Lat":"0.0054000","KPI":529,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0054000],[0.0577949,0.0054000],[0.0577949,0.0072000],[0.0551678,0.0072000],[0.0551678,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":2,"Long":"0.0551678","Lat":"0.0072000","KPI":672,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0072000],[0.0577949,0.0072000],[0.0577949,0.0090000],[0.0551678,0.0090000],[0.0551678,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0551678","Lat":"0.0090000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0090000],[0.0577949,0.0090000],[0.0577949,0.0108000],[0.0551678,0.0108000],[0.0551678,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0551678","Lat":"0.0108000","KPI":571,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0108000],[0.0577949,0.0108000],[0.0577949,0.0126000],[0.0551678,0.0126000],[0.0551678,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":53,"Long":"0.0551678","Lat":"0.0126000","KPI":789,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0126000],[0.0577949,0.0126000],[0.0577949,0.0144000],[0.0551678,0.0144000],[0.0551678,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":51,"Long":"0.0551678","Lat":"0.0144000","KPI":902,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0144000],[0.0577949,0.0144000],[0.0577949,0.0162000],[0.0551678,0.0162000],[0.0551678,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0551678","Lat":"0.0162000","KPI":342,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0162000],[0.0577949,0.0162000],[0.0577949,0.0180000],[0.0551678,0.0180000],[0.0551678,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0551678","Lat":"0.0180000","KPI":137,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0180000],[0.0577949,0.0180000],[0.0577949,0.0198000],[0.0551678,0.0198000],[0.0551678,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0551678","Lat":"0.0198000","KPI":786,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0198000],[0.0577949,0.0198000],[0.0577949,0.0216000],[0.0551678,0.0216000],[0.0551678,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0551678","Lat":"0.0216000","KPI":702,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0216000],[0.0577949,0.0216000],[0.0577949,0.0234000],[0.0551678,0.0234000],[0.0551678,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0551678","Lat":"0.0234000","KPI":742,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0234000],[0.0577949,0.0234000],[0.0577949,0.0252000],[0.0551678,0.0252000],[0.0551678,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":8,"Long":"0.0551678","Lat":"0.0252000","KPI":736,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0252000],[0.0577949,0.0252000],[0.0577949,0.0270000],[0.0551678,0.0270000],[0.0551678,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0551678","Lat":"0.0270000","KPI":740,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0270000],[0.0577949,0.0270000],[0.0577949,0.0288000],[0.0551678,0.0288000],[0.0551678,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0551678","Lat":"0.0288000","KPI":851,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0288000],[0.0577949,0.0288000],[0.0577949,0.0306000],[0.0551678,0.0306000],[0.0551678,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0551678","Lat":"0.0306000","KPI":11,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0306000],[0.0577949,0.0306000],[0.0577949,0.0324000],[0.0551678,0.0324000],[0.0551678,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0551678","Lat":"0.0324000","KPI":746,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0324000],[0.0577949,0.0324000],[0.0577949,0.0342000],[0.0551678,0.0342000],[0.0551678,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":67,"Long":"0.0551678","Lat":"0.0342000","KPI":359,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0342000],[0.0577949,0.0342000],[0.0577949,0.0360000],[0.0551678,0.0360000],[0.0551678,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0551678","Lat":"0.0360000","KPI":816,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0360000],[0.0577949,0.0360000],[0.0577949,0.0378000],[0.0551678,0.0378000],[0.0551678,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0551678","Lat":"0.0378000","KPI":485,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0378000],[0.0577949,0.0378000],[0.0577949,0.0396000],[0.0551678,0.0396000],[0.0551678,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0551678","Lat":"0.0396000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0396000],[0.0577949,0.0396000],[0.0577949,0.0414000],[0.0551678,0.0414000],[0.0551678,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0551678","Lat":"0.0414000","KPI":634,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0414000],[0.0577949,0.0414000],[0.0577949,0.0432000],[0.0551678,0.0432000],[0.0551678,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0551678","Lat":"0.0432000","KPI":814,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0432000],[0.0577949,0.0432000],[0.0577949,0.0450000],[0.0551678,0.0450000],[0.0551678,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0551678","Lat":"0.0450000","KPI":871,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0450000],[0.0577949,0.0450000],[0.0577949,0.0468000],[0.0551678,0.0468000],[0.0551678,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0551678","Lat":"0.0468000","KPI":729,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0468000],[0.0577949,0.0468000],[0.0577949,0.0486000],[0.0551678,0.0486000],[0.0551678,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0551678","Lat":"0.0486000","KPI":831,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0486000],[0.0577949,0.0486000],[0.0577949,0.0504000],[0.0551678,0.0504000],[0.0551678,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0551678","Lat":"0.0504000","KPI":714,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0504000],[0.0577949,0.0504000],[0.0577949,0.0522000],[0.0551678,0.0522000],[0.0551678,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0551678","Lat":"0.0522000","KPI":315,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0522000],[0.0577949,0.0522000],[0.0577949,0.0540000],[0.0551678,0.0540000],[0.0551678,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0551678","Lat":"0.0540000","KPI":131,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0540000],[0.0577949,0.0540000],[0.0577949,0.0558000],[0.0551678,0.0558000],[0.0551678,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":38,"Long":"0.0551678","Lat":"0.0558000","KPI":673,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551678,0.0558000],[0.0577949,0.0558000],[0.0577949,0.0576000],[0.0551678,0.0576000],[0.0551678,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0577949","Lat":"0.0000000","KPI":877,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0000000],[0.0604219,0.0000000],[0.0604219,0.0018000],[0.0577949,0.0018000],[0.0577949,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0577949","Lat":"0.0018000","KPI":519,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0018000],[0.0604219,0.0018000],[0.0604219,0.0036000],[0.0577949,0.0036000],[0.0577949,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0577949","Lat":"0.0036000","KPI":49,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0036000],[0.0604219,0.0036000],[0.0604219,0.0054000],[0.0577949,0.0054000],[0.0577949,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0577949","Lat":"0.0054000","KPI":975,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0054000],[0.0604219,0.0054000],[0.0604219,0.0072000],[0.0577949,0.0072000],[0.0577949,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0577949","Lat":"0.0072000","KPI":227,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0072000],[0.0604219,0.0072000],[0.0604219,0.0090000],[0.0577949,0.0090000],[0.0577949,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0577949","Lat":"0.0090000","KPI":266,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0090000],[0.0604219,0.0090000],[0.0604219,0.0108000],[0.0577949,0.0108000],[0.0577949,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0577949","Lat":"0.0108000","KPI":904,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0108000],[0.0604219,0.0108000],[0.0604219,0.0126000],[0.0577949,0.0126000],[0.0577949,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":93,"Long":"0.0577949","Lat":"0.0126000","KPI":230,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0126000],[0.0604219,0.0126000],[0.0604219,0.0144000],[0.0577949,0.0144000],[0.0577949,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":24,"Long":"0.0577949","Lat":"0.0144000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0144000],[0.0604219,0.0144000],[0.0604219,0.0162000],[0.0577949,0.0162000],[0.0577949,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":95,"Long":"0.0577949","Lat":"0.0162000","KPI":2,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0162000],[0.0604219,0.0162000],[0.0604219,0.0180000],[0.0577949,0.0180000],[0.0577949,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0577949","Lat":"0.0180000","KPI":560,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0180000],[0.0604219,0.0180000],[0.0604219,0.0198000],[0.0577949,0.0198000],[0.0577949,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":81,"Long":"0.0577949","Lat":"0.0198000","KPI":900,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0198000],[0.0604219,0.0198000],[0.0604219,0.0216000],[0.0577949,0.0216000],[0.0577949,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0577949","Lat":"0.0216000","KPI":870,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0216000],[0.0604219,0.0216000],[0.0604219,0.0234000],[0.0577949,0.0234000],[0.0577949,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0577949","Lat":"0.0234000","KPI":342,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0234000],[0.0604219,0.0234000],[0.0604219,0.0252000],[0.0577949,0.0252000],[0.0577949,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0577949","Lat":"0.0252000","KPI":389,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0252000],[0.0604219,0.0252000],[0.0604219,0.0270000],[0.0577949,0.0270000],[0.0577949,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0577949","Lat":"0.0270000","KPI":421,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0270000],[0.0604219,0.0270000],[0.0604219,0.0288000],[0.0577949,0.0288000],[0.0577949,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":66,"Long":"0.0577949","Lat":"0.0288000","KPI":889,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0288000],[0.0604219,0.0288000],[0.0604219,0.0306000],[0.0577949,0.0306000],[0.0577949,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0577949","Lat":"0.0306000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0306000],[0.0604219,0.0306000],[0.0604219,0.0324000],[0.0577949,0.0324000],[0.0577949,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":74,"Long":"0.0577949","Lat":"0.0324000","KPI":410,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0324000],[0.0604219,0.0324000],[0.0604219,0.0342000],[0.0577949,0.0342000],[0.0577949,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":69,"Long":"0.0577949","Lat":"0.0342000","KPI":166,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0342000],[0.0604219,0.0342000],[0.0604219,0.0360000],[0.0577949,0.0360000],[0.0577949,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":26,"Long":"0.0577949","Lat":"0.0360000","KPI":925,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0360000],[0.0604219,0.0360000],[0.0604219,0.0378000],[0.0577949,0.0378000],[0.0577949,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0577949","Lat":"0.0378000","KPI":960,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0378000],[0.0604219,0.0378000],[0.0604219,0.0396000],[0.0577949,0.0396000],[0.0577949,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0577949","Lat":"0.0396000","KPI":923,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0396000],[0.0604219,0.0396000],[0.0604219,0.0414000],[0.0577949,0.0414000],[0.0577949,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":82,"Long":"0.0577949","Lat":"0.0414000","KPI":889,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0414000],[0.0604219,0.0414000],[0.0604219,0.0432000],[0.0577949,0.0432000],[0.0577949,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0577949","Lat":"0.0432000","KPI":800,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0432000],[0.0604219,0.0432000],[0.0604219,0.0450000],[0.0577949,0.0450000],[0.0577949,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0577949","Lat":"0.0450000","KPI":185,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0450000],[0.0604219,0.0450000],[0.0604219,0.0468000],[0.0577949,0.0468000],[0.0577949,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0577949","Lat":"0.0468000","KPI":355,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0468000],[0.0604219,0.0468000],[0.0604219,0.0486000],[0.0577949,0.0486000],[0.0577949,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0577949","Lat":"0.0486000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0486000],[0.0604219,0.0486000],[0.0604219,0.0504000],[0.0577949,0.0504000],[0.0577949,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0577949","Lat":"0.0504000","KPI":564,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0504000],[0.0604219,0.0504000],[0.0604219,0.0522000],[0.0577949,0.0522000],[0.0577949,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0577949","Lat":"0.0522000","KPI":977,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0522000],[0.0604219,0.0522000],[0.0604219,0.0540000],[0.0577949,0.0540000],[0.0577949,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0577949","Lat":"0.0540000","KPI":231,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0540000],[0.0604219,0.0540000],[0.0604219,0.0558000],[0.0577949,0.0558000],[0.0577949,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0577949","Lat":"0.0558000","KPI":322,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577949,0.0558000],[0.0604219,0.0558000],[0.0604219,0.0576000],[0.0577949,0.0576000],[0.0577949,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":46,"Long":"0.0604219","Lat":"0.0000000","KPI":100,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0000000],[0.0630490,0.0000000],[0.0630490,0.0018000],[0.0604219,0.0018000],[0.0604219,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":67,"Long":"0.0604219","Lat":"0.0018000","KPI":879,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0018000],[0.0630490,0.0018000],[0.0630490,0.0036000],[0.0604219,0.0036000],[0.0604219,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":8,"Long":"0.0604219","Lat":"0.0036000","KPI":485,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0036000],[0.0630490,0.0036000],[0.0630490,0.0054000],[0.0604219,0.0054000],[0.0604219,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":8,"Long":"0.0604219","Lat":"0.0054000","KPI":720,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0054000],[0.0630490,0.0054000],[0.0630490,0.0072000],[0.0604219,0.0072000],[0.0604219,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":74,"Long":"0.0604219","Lat":"0.0072000","KPI":499,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0072000],[0.0630490,0.0072000],[0.0630490,0.0090000],[0.0604219,0.0090000],[0.0604219,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0604219","Lat":"0.0090000","KPI":830,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0090000],[0.0630490,0.0090000],[0.0630490,0.0108000],[0.0604219,0.0108000],[0.0604219,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0604219","Lat":"0.0108000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0108000],[0.0630490,0.0108000],[0.0630490,0.0126000],[0.0604219,0.0126000],[0.0604219,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":69,"Long":"0.0604219","Lat":"0.0126000","KPI":183,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0126000],[0.0630490,0.0126000],[0.0630490,0.0144000],[0.0604219,0.0144000],[0.0604219,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0604219","Lat":"0.0144000","KPI":763,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0144000],[0.0630490,0.0144000],[0.0630490,0.0162000],[0.0604219,0.0162000],[0.0604219,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":2,"Long":"0.0604219","Lat":"0.0162000","KPI":782,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0162000],[0.0630490,0.0162000],[0.0630490,0.0180000],[0.0604219,0.0180000],[0.0604219,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0604219","Lat":"0.0180000","KPI":857,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0180000],[0.0630490,0.0180000],[0.0630490,0.0198000],[0.0604219,0.0198000],[0.0604219,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0604219","Lat":"0.0198000","KPI":42,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0198000],[0.0630490,0.0198000],[0.0630490,0.0216000],[0.0604219,0.0216000],[0.0604219,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":6,"Long":"0.0604219","Lat":"0.0216000","KPI":677,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0216000],[0.0630490,0.0216000],[0.0630490,0.0234000],[0.0604219,0.0234000],[0.0604219,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0604219","Lat":"0.0234000","KPI":259,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0234000],[0.0630490,0.0234000],[0.0630490,0.0252000],[0.0604219,0.0252000],[0.0604219,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":88,"Long":"0.0604219","Lat":"0.0252000","KPI":868,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0252000],[0.0630490,0.0252000],[0.0630490,0.0270000],[0.0604219,0.0270000],[0.0604219,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0604219","Lat":"0.0270000","KPI":171,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0270000],[0.0630490,0.0270000],[0.0630490,0.0288000],[0.0604219,0.0288000],[0.0604219,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":13,"Long":"0.0604219","Lat":"0.0288000","KPI":884,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0288000],[0.0630490,0.0288000],[0.0630490,0.0306000],[0.0604219,0.0306000],[0.0604219,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0604219","Lat":"0.0306000","KPI":12,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0306000],[0.0630490,0.0306000],[0.0630490,0.0324000],[0.0604219,0.0324000],[0.0604219,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0604219","Lat":"0.0324000","KPI":540,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0324000],[0.0630490,0.0324000],[0.0630490,0.0342000],[0.0604219,0.0342000],[0.0604219,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0604219","Lat":"0.0342000","KPI":812,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0342000],[0.0630490,0.0342000],[0.0630490,0.0360000],[0.0604219,0.0360000],[0.0604219,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0604219","Lat":"0.0360000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0360000],[0.0630490,0.0360000],[0.0630490,0.0378000],[0.0604219,0.0378000],[0.0604219,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0604219","Lat":"0.0378000","KPI":139,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0378000],[0.0630490,0.0378000],[0.0630490,0.0396000],[0.0604219,0.0396000],[0.0604219,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":49,"Long":"0.0604219","Lat":"0.0396000","KPI":944,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0396000],[0.0630490,0.0396000],[0.0630490,0.0414000],[0.0604219,0.0414000],[0.0604219,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":81,"Long":"0.0604219","Lat":"0.0414000","KPI":898,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0414000],[0.0630490,0.0414000],[0.0630490,0.0432000],[0.0604219,0.0432000],[0.0604219,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0604219","Lat":"0.0432000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0432000],[0.0630490,0.0432000],[0.0630490,0.0450000],[0.0604219,0.0450000],[0.0604219,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0604219","Lat":"0.0450000","KPI":301,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0450000],[0.0630490,0.0450000],[0.0630490,0.0468000],[0.0604219,0.0468000],[0.0604219,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0604219","Lat":"0.0468000","KPI":573,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0468000],[0.0630490,0.0468000],[0.0630490,0.0486000],[0.0604219,0.0486000],[0.0604219,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":60,"Long":"0.0604219","Lat":"0.0486000","KPI":626,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0486000],[0.0630490,0.0486000],[0.0630490,0.0504000],[0.0604219,0.0504000],[0.0604219,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":18,"Long":"0.0604219","Lat":"0.0504000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0504000],[0.0630490,0.0504000],[0.0630490,0.0522000],[0.0604219,0.0522000],[0.0604219,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0604219","Lat":"0.0522000","KPI":906,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0522000],[0.0630490,0.0522000],[0.0630490,0.0540000],[0.0604219,0.0540000],[0.0604219,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0604219","Lat":"0.0540000","KPI":321,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0540000],[0.0630490,0.0540000],[0.0630490,0.0558000],[0.0604219,0.0558000],[0.0604219,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0604219","Lat":"0.0558000","KPI":294,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604219,0.0558000],[0.0630490,0.0558000],[0.0630490,0.0576000],[0.0604219,0.0576000],[0.0604219,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":5,"Long":"0.0630490","Lat":"0.0000000","KPI":867,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0000000],[0.0656760,0.0000000],[0.0656760,0.0018000],[0.0630490,0.0018000],[0.0630490,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0630490","Lat":"0.0018000","KPI":409,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0018000],[0.0656760,0.0018000],[0.0656760,0.0036000],[0.0630490,0.0036000],[0.0630490,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0630490","Lat":"0.0036000","KPI":328,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0036000],[0.0656760,0.0036000],[0.0656760,0.0054000],[0.0630490,0.0054000],[0.0630490,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0630490","Lat":"0.0054000","KPI":647,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0054000],[0.0656760,0.0054000],[0.0656760,0.0072000],[0.0630490,0.0072000],[0.0630490,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0630490","Lat":"0.0072000","KPI":134,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0072000],[0.0656760,0.0072000],[0.0656760,0.0090000],[0.0630490,0.0090000],[0.0630490,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0630490","Lat":"0.0090000","KPI":77,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0090000],[0.0656760,0.0090000],[0.0656760,0.0108000],[0.0630490,0.0108000],[0.0630490,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":88,"Long":"0.0630490","Lat":"0.0108000","KPI":126,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0108000],[0.0656760,0.0108000],[0.0656760,0.0126000],[0.0630490,0.0126000],[0.0630490,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0630490","Lat":"0.0126000","KPI":234,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0126000],[0.0656760,0.0126000],[0.0656760,0.0144000],[0.0630490,0.0144000],[0.0630490,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0630490","Lat":"0.0144000","KPI":90,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0144000],[0.0656760,0.0144000],[0.0656760,0.0162000],[0.0630490,0.0162000],[0.0630490,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0630490","Lat":"0.0162000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0162000],[0.0656760,0.0162000],[0.0656760,0.0180000],[0.0630490,0.0180000],[0.0630490,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":55,"Long":"0.0630490","Lat":"0.0180000","KPI":783,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0180000],[0.0656760,0.0180000],[0.0656760,0.0198000],[0.0630490,0.0198000],[0.0630490,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0630490","Lat":"0.0198000","KPI":539,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0198000],[0.0656760,0.0198000],[0.0656760,0.0216000],[0.0630490,0.0216000],[0.0630490,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0630490","Lat":"0.0216000","KPI":566,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0216000],[0.0656760,0.0216000],[0.0656760,0.0234000],[0.0630490,0.0234000],[0.0630490,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0630490","Lat":"0.0234000","KPI":371,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0234000],[0.0656760,0.0234000],[0.0656760,0.0252000],[0.0630490,0.0252000],[0.0630490,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":31,"Long":"0.0630490","Lat":"0.0252000","KPI":979,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0252000],[0.0656760,0.0252000],[0.0656760,0.0270000],[0.0630490,0.0270000],[0.0630490,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0630490","Lat":"0.0270000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0270000],[0.0656760,0.0270000],[0.0656760,0.0288000],[0.0630490,0.0288000],[0.0630490,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":61,"Long":"0.0630490","Lat":"0.0288000","KPI":277,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0288000],[0.0656760,0.0288000],[0.0656760,0.0306000],[0.0630490,0.0306000],[0.0630490,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0630490","Lat":"0.0306000","KPI":661,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0306000],[0.0656760,0.0306000],[0.0656760,0.0324000],[0.0630490,0.0324000],[0.0630490,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":93,"Long":"0.0630490","Lat":"0.0324000","KPI":212,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0324000],[0.0656760,0.0324000],[0.0656760,0.0342000],[0.0630490,0.0342000],[0.0630490,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0630490","Lat":"0.0342000","KPI":353,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0342000],[0.0656760,0.0342000],[0.0656760,0.0360000],[0.0630490,0.0360000],[0.0630490,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0630490","Lat":"0.0360000","KPI":109,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0360000],[0.0656760,0.0360000],[0.0656760,0.0378000],[0.0630490,0.0378000],[0.0630490,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0630490","Lat":"0.0378000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0378000],[0.0656760,0.0378000],[0.0656760,0.0396000],[0.0630490,0.0396000],[0.0630490,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0630490","Lat":"0.0396000","KPI":574,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0396000],[0.0656760,0.0396000],[0.0656760,0.0414000],[0.0630490,0.0414000],[0.0630490,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0630490","Lat":"0.0414000","KPI":266,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0414000],[0.0656760,0.0414000],[0.0656760,0.0432000],[0.0630490,0.0432000],[0.0630490,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0630490","Lat":"0.0432000","KPI":54,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0432000],[0.0656760,0.0432000],[0.0656760,0.0450000],[0.0630490,0.0450000],[0.0630490,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":71,"Long":"0.0630490","Lat":"0.0450000","KPI":33,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0450000],[0.0656760,0.0450000],[0.0656760,0.0468000],[0.0630490,0.0468000],[0.0630490,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0630490","Lat":"0.0468000","KPI":781,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0468000],[0.0656760,0.0468000],[0.0656760,0.0486000],[0.0630490,0.0486000],[0.0630490,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0630490","Lat":"0.0486000","KPI":907,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0486000],[0.0656760,0.0486000],[0.0656760,0.0504000],[0.0630490,0.0504000],[0.0630490,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0630490","Lat":"0.0504000","KPI":580,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0504000],[0.0656760,0.0504000],[0.0656760,0.0522000],[0.0630490,0.0522000],[0.0630490,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0630490","Lat":"0.0522000","KPI":131,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0522000],[0.0656760,0.0522000],[0.0656760,0.0540000],[0.0630490,0.0540000],[0.0630490,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0630490","Lat":"0.0540000","KPI":415,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0540000],[0.0656760,0.0540000],[0.0656760,0.0558000],[0.0630490,0.0558000],[0.0630490,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":47,"Long":"0.0630490","Lat":"0.0558000","KPI":567,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630490,0.0558000],[0.0656760,0.0558000],[0.0656760,0.0576000],[0.0630490,0.0576000],[0.0630490,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0656760","Lat":"0.0000000","KPI":532,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0000000],[0.0683030,0.0000000],[0.0683030,0.0018000],[0.0656760,0.0018000],[0.0656760,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0656760","Lat":"0.0018000","KPI":438,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0018000],[0.0683030,0.0018000],[0.0683030,0.0036000],[0.0656760,0.0036000],[0.0656760,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0656760","Lat":"0.0036000","KPI":549,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0036000],[0.0683030,0.0036000],[0.0683030,0.0054000],[0.0656760,0.0054000],[0.0656760,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":8,"Long":"0.0656760","Lat":"0.0054000","KPI":120,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0054000],[0.0683030,0.0054000],[0.0683030,0.0072000],[0.0656760,0.0072000],[0.0656760,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":55,"Long":"0.0656760","Lat":"0.0072000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0072000],[0.0683030,0.0072000],[0.0683030,0.0090000],[0.0656760,0.0090000],[0.0656760,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0656760","Lat":"0.0090000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0090000],[0.0683030,0.0090000],[0.0683030,0.0108000],[0.0656760,0.0108000],[0.0656760,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0656760","Lat":"0.0108000","KPI":213,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0108000],[0.0683030,0.0108000],[0.0683030,0.0126000],[0.0656760,0.0126000],[0.0656760,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0656760","Lat":"0.0126000","KPI":641,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0126000],[0.0683030,0.0126000],[0.0683030,0.0144000],[0.0656760,0.0144000],[0.0656760,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0656760","Lat":"0.0144000","KPI":697,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0144000],[0.0683030,0.0144000],[0.0683030,0.0162000],[0.0656760,0.0162000],[0.0656760,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":12,"Long":"0.0656760","Lat":"0.0162000","KPI":615,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0162000],[0.0683030,0.0162000],[0.0683030,0.0180000],[0.0656760,0.0180000],[0.0656760,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0656760","Lat":"0.0180000","KPI":387,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0180000],[0.0683030,0.0180000],[0.0683030,0.0198000],[0.0656760,0.0198000],[0.0656760,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0656760","Lat":"0.0198000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0198000],[0.0683030,0.0198000],[0.0683030,0.0216000],[0.0656760,0.0216000],[0.0656760,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0656760","Lat":"0.0216000","KPI":806,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0216000],[0.0683030,0.0216000],[0.0683030,0.0234000],[0.0656760,0.0234000],[0.0656760,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0656760","Lat":"0.0234000","KPI":239,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0234000],[0.0683030,0.0234000],[0.0683030,0.0252000],[0.0656760,0.0252000],[0.0656760,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":93,"Long":"0.0656760","Lat":"0.0252000","KPI":450,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0252000],[0.0683030,0.0252000],[0.0683030,0.0270000],[0.0656760,0.0270000],[0.0656760,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0656760","Lat":"0.0270000","KPI":253,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0270000],[0.0683030,0.0270000],[0.0683030,0.0288000],[0.0656760,0.0288000],[0.0656760,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":71,"Long":"0.0656760","Lat":"0.0288000","KPI":91,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0288000],[0.0683030,0.0288000],[0.0683030,0.0306000],[0.0656760,0.0306000],[0.0656760,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":14,"Long":"0.0656760","Lat":"0.0306000","KPI":601,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0306000],[0.0683030,0.0306000],[0.0683030,0.0324000],[0.0656760,0.0324000],[0.0656760,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0656760","Lat":"0.0324000","KPI":304,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0324000],[0.0683030,0.0324000],[0.0683030,0.0342000],[0.0656760,0.0342000],[0.0656760,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":41,"Long":"0.0656760","Lat":"0.0342000","KPI":594,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0342000],[0.0683030,0.0342000],[0.0683030,0.0360000],[0.0656760,0.0360000],[0.0656760,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0656760","Lat":"0.0360000","KPI":874,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0360000],[0.0683030,0.0360000],[0.0683030,0.0378000],[0.0656760,0.0378000],[0.0656760,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0656760","Lat":"0.0378000","KPI":800,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0378000],[0.0683030,0.0378000],[0.0683030,0.0396000],[0.0656760,0.0396000],[0.0656760,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0656760","Lat":"0.0396000","KPI":589,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0396000],[0.0683030,0.0396000],[0.0683030,0.0414000],[0.0656760,0.0414000],[0.0656760,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0656760","Lat":"0.0414000","KPI":538,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0414000],[0.0683030,0.0414000],[0.0683030,0.0432000],[0.0656760,0.0432000],[0.0656760,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0656760","Lat":"0.0432000","KPI":268,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0432000],[0.0683030,0.0432000],[0.0683030,0.0450000],[0.0656760,0.0450000],[0.0656760,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0656760","Lat":"0.0450000","KPI":77,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0450000],[0.0683030,0.0450000],[0.0683030,0.0468000],[0.0656760,0.0468000],[0.0656760,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":98,"Long":"0.0656760","Lat":"0.0468000","KPI":687,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0468000],[0.0683030,0.0468000],[0.0683030,0.0486000],[0.0656760,0.0486000],[0.0656760,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0656760","Lat":"0.0486000","KPI":917,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0486000],[0.0683030,0.0486000],[0.0683030,0.0504000],[0.0656760,0.0504000],[0.0656760,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0656760","Lat":"0.0504000","KPI":544,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0504000],[0.0683030,0.0504000],[0.0683030,0.0522000],[0.0656760,0.0522000],[0.0656760,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":90,"Long":"0.0656760","Lat":"0.0522000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0522000],[0.0683030,0.0522000],[0.0683030,0.0540000],[0.0656760,0.0540000],[0.0656760,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0656760","Lat":"0.0540000","KPI":464,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0540000],[0.0683030,0.0540000],[0.0683030,0.0558000],[0.0656760,0.0558000],[0.0656760,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":0,"Long":"0.0656760","Lat":"0.0558000","KPI":192,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656760,0.0558000],[0.0683030,0.0558000],[0.0683030,0.0576000],[0.0656760,0.0576000],[0.0656760,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0683030","Lat":"0.0000000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0000000],[0.0709301,0.0000000],[0.0709301,0.0018000],[0.0683030,0.0018000],[0.0683030,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0683030","Lat":"0.0018000","KPI":558,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0018000],[0.0709301,0.0018000],[0.0709301,0.0036000],[0.0683030,0.0036000],[0.0683030,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":99,"Long":"0.0683030","Lat":"0.0036000","KPI":939,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0036000],[0.0709301,0.0036000],[0.0709301,0.0054000],[0.0683030,0.0054000],[0.0683030,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0683030","Lat":"0.0054000","KPI":517,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0054000],[0.0709301,0.0054000],[0.0709301,0.0072000],[0.0683030,0.0072000],[0.0683030,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0683030","Lat":"0.0072000","KPI":461,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0072000],[0.0709301,0.0072000],[0.0709301,0.0090000],[0.0683030,0.0090000],[0.0683030,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0683030","Lat":"0.0090000","KPI":934,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0090000],[0.0709301,0.0090000],[0.0709301,0.0108000],[0.0683030,0.0108000],[0.0683030,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0683030","Lat":"0.0108000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0108000],[0.0709301,0.0108000],[0.0709301,0.0126000],[0.0683030,0.0126000],[0.0683030,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":66,"Long":"0.0683030","Lat":"0.0126000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0126000],[0.0709301,0.0126000],[0.0709301,0.0144000],[0.0683030,0.0144000],[0.0683030,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0683030","Lat":"0.0144000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0144000],[0.0709301,0.0144000],[0.0709301,0.0162000],[0.0683030,0.0162000],[0.0683030,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0683030","Lat":"0.0162000","KPI":940,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0162000],[0.0709301,0.0162000],[0.0709301,0.0180000],[0.0683030,0.0180000],[0.0683030,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0683030","Lat":"0.0180000","KPI":43,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0180000],[0.0709301,0.0180000],[0.0709301,0.0198000],[0.0683030,0.0198000],[0.0683030,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":11,"Long":"0.0683030","Lat":"0.0198000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0198000],[0.0709301,0.0198000],[0.0709301,0.0216000],[0.0683030,0.0216000],[0.0683030,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0683030","Lat":"0.0216000","KPI":526,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0216000],[0.0709301,0.0216000],[0.0709301,0.0234000],[0.0683030,0.0234000],[0.0683030,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":89,"Long":"0.0683030","Lat":"0.0234000","KPI":635,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0234000],[0.0709301,0.0234000],[0.0709301,0.0252000],[0.0683030,0.0252000],[0.0683030,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0683030","Lat":"0.0252000","KPI":964,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0252000],[0.0709301,0.0252000],[0.0709301,0.0270000],[0.0683030,0.0270000],[0.0683030,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0683030","Lat":"0.0270000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0270000],[0.0709301,0.0270000],[0.0709301,0.0288000],[0.0683030,0.0288000],[0.0683030,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0683030","Lat":"0.0288000","KPI":964,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0288000],[0.0709301,0.0288000],[0.0709301,0.0306000],[0.0683030,0.0306000],[0.0683030,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":51,"Long":"0.0683030","Lat":"0.0306000","KPI":879,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0306000],[0.0709301,0.0306000],[0.0709301,0.0324000],[0.0683030,0.0324000],[0.0683030,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0683030","Lat":"0.0324000","KPI":527,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0324000],[0.0709301,0.0324000],[0.0709301,0.0342000],[0.0683030,0.0342000],[0.0683030,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0683030","Lat":"0.0342000","KPI":620,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0342000],[0.0709301,0.0342000],[0.0709301,0.0360000],[0.0683030,0.0360000],[0.0683030,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":2,"Long":"0.0683030","Lat":"0.0360000","KPI":554,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0360000],[0.0709301,0.0360000],[0.0709301,0.0378000],[0.0683030,0.0378000],[0.0683030,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0683030","Lat":"0.0378000","KPI":314,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0378000],[0.0709301,0.0378000],[0.0709301,0.0396000],[0.0683030,0.0396000],[0.0683030,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0683030","Lat":"0.0396000","KPI":730,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0396000],[0.0709301,0.0396000],[0.0709301,0.0414000],[0.0683030,0.0414000],[0.0683030,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0683030","Lat":"0.0414000","KPI":733,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0414000],[0.0709301,0.0414000],[0.0709301,0.0432000],[0.0683030,0.0432000],[0.0683030,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0683030","Lat":"0.0432000","KPI":268,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0432000],[0.0709301,0.0432000],[0.0709301,0.0450000],[0.0683030,0.0450000],[0.0683030,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":59,"Long":"0.0683030","Lat":"0.0450000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0450000],[0.0709301,0.0450000],[0.0709301,0.0468000],[0.0683030,0.0468000],[0.0683030,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0683030","Lat":"0.0468000","KPI":340,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0468000],[0.0709301,0.0468000],[0.0709301,0.0486000],[0.0683030,0.0486000],[0.0683030,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0683030","Lat":"0.0486000","KPI":269,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0486000],[0.0709301,0.0486000],[0.0709301,0.0504000],[0.0683030,0.0504000],[0.0683030,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":38,"Long":"0.0683030","Lat":"0.0504000","KPI":947,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0504000],[0.0709301,0.0504000],[0.0709301,0.0522000],[0.0683030,0.0522000],[0.0683030,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0683030","Lat":"0.0522000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0522000],[0.0709301,0.0522000],[0.0709301,0.0540000],[0.0683030,0.0540000],[0.0683030,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0683030","Lat":"0.0540000","KPI":392,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0540000],[0.0709301,0.0540000],[0.0709301,0.0558000],[0.0683030,0.0558000],[0.0683030,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":86,"Long":"0.0683030","Lat":"0.0558000","KPI":824,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683030,0.0558000],[0.0709301,0.0558000],[0.0709301,0.0576000],[0.0683030,0.0576000],[0.0683030,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0709301","Lat":"0.0000000","KPI":488,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0000000],[0.0735571,0.0000000],[0.0735571,0.0018000],[0.0709301,0.0018000],[0.0709301,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0709301","Lat":"0.0018000","KPI":153,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0018000],[0.0735571,0.0018000],[0.0735571,0.0036000],[0.0709301,0.0036000],[0.0709301,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0709301","Lat":"0.0036000","KPI":138,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0036000],[0.0735571,0.0036000],[0.0735571,0.0054000],[0.0709301,0.0054000],[0.0709301,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0709301","Lat":"0.0054000","KPI":763,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0054000],[0.0735571,0.0054000],[0.0735571,0.0072000],[0.0709301,0.0072000],[0.0709301,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0709301","Lat":"0.0072000","KPI":919,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0072000],[0.0735571,0.0072000],[0.0735571,0.0090000],[0.0709301,0.0090000],[0.0709301,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":53,"Long":"0.0709301","Lat":"0.0090000","KPI":55,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0090000],[0.0735571,0.0090000],[0.0735571,0.0108000],[0.0709301,0.0108000],[0.0709301,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":16,"Long":"0.0709301","Lat":"0.0108000","KPI":896,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0108000],[0.0735571,0.0108000],[0.0735571,0.0126000],[0.0709301,0.0126000],[0.0709301,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0709301","Lat":"0.0126000","KPI":120,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0126000],[0.0735571,0.0126000],[0.0735571,0.0144000],[0.0709301,0.0144000],[0.0709301,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0709301","Lat":"0.0144000","KPI":941,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0144000],[0.0735571,0.0144000],[0.0735571,0.0162000],[0.0709301,0.0162000],[0.0709301,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":16,"Long":"0.0709301","Lat":"0.0162000","KPI":990,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0162000],[0.0735571,0.0162000],[0.0735571,0.0180000],[0.0709301,0.0180000],[0.0709301,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0709301","Lat":"0.0180000","KPI":485,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0180000],[0.0735571,0.0180000],[0.0735571,0.0198000],[0.0709301,0.0198000],[0.0709301,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0709301","Lat":"0.0198000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0198000],[0.0735571,0.0198000],[0.0735571,0.0216000],[0.0709301,0.0216000],[0.0709301,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0709301","Lat":"0.0216000","KPI":745,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0216000],[0.0735571,0.0216000],[0.0735571,0.0234000],[0.0709301,0.0234000],[0.0709301,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":27,"Long":"0.0709301","Lat":"0.0234000","KPI":72,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0234000],[0.0735571,0.0234000],[0.0735571,0.0252000],[0.0709301,0.0252000],[0.0709301,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0709301","Lat":"0.0252000","KPI":191,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0252000],[0.0735571,0.0252000],[0.0735571,0.0270000],[0.0709301,0.0270000],[0.0709301,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0709301","Lat":"0.0270000","KPI":987,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0270000],[0.0735571,0.0270000],[0.0735571,0.0288000],[0.0709301,0.0288000],[0.0709301,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":52,"Long":"0.0709301","Lat":"0.0288000","KPI":176,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0288000],[0.0735571,0.0288000],[0.0735571,0.0306000],[0.0709301,0.0306000],[0.0709301,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0709301","Lat":"0.0306000","KPI":100,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0306000],[0.0735571,0.0306000],[0.0735571,0.0324000],[0.0709301,0.0324000],[0.0709301,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":61,"Long":"0.0709301","Lat":"0.0324000","KPI":457,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0324000],[0.0735571,0.0324000],[0.0735571,0.0342000],[0.0709301,0.0342000],[0.0709301,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0709301","Lat":"0.0342000","KPI":328,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0342000],[0.0735571,0.0342000],[0.0735571,0.0360000],[0.0709301,0.0360000],[0.0709301,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":97,"Long":"0.0709301","Lat":"0.0360000","KPI":552,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0360000],[0.0735571,0.0360000],[0.0735571,0.0378000],[0.0709301,0.0378000],[0.0709301,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":20,"Long":"0.0709301","Lat":"0.0378000","KPI":660,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0378000],[0.0735571,0.0378000],[0.0735571,0.0396000],[0.0709301,0.0396000],[0.0709301,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":18,"Long":"0.0709301","Lat":"0.0396000","KPI":728,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0396000],[0.0735571,0.0396000],[0.0735571,0.0414000],[0.0709301,0.0414000],[0.0709301,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0709301","Lat":"0.0414000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0414000],[0.0735571,0.0414000],[0.0735571,0.0432000],[0.0709301,0.0432000],[0.0709301,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0709301","Lat":"0.0432000","KPI":719,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0432000],[0.0735571,0.0432000],[0.0735571,0.0450000],[0.0709301,0.0450000],[0.0709301,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0709301","Lat":"0.0450000","KPI":457,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0450000],[0.0735571,0.0450000],[0.0735571,0.0468000],[0.0709301,0.0468000],[0.0709301,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":74,"Long":"0.0709301","Lat":"0.0468000","KPI":162,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0468000],[0.0735571,0.0468000],[0.0735571,0.0486000],[0.0709301,0.0486000],[0.0709301,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0709301","Lat":"0.0486000","KPI":21,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0486000],[0.0735571,0.0486000],[0.0735571,0.0504000],[0.0709301,0.0504000],[0.0709301,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":80,"Long":"0.0709301","Lat":"0.0504000","KPI":139,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0504000],[0.0735571,0.0504000],[0.0735571,0.0522000],[0.0709301,0.0522000],[0.0709301,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0709301","Lat":"0.0522000","KPI":734,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0522000],[0.0735571,0.0522000],[0.0735571,0.0540000],[0.0709301,0.0540000],[0.0709301,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0709301","Lat":"0.0540000","KPI":121,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0540000],[0.0735571,0.0540000],[0.0735571,0.0558000],[0.0709301,0.0558000],[0.0709301,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0709301","Lat":"0.0558000","KPI":254,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709301,0.0558000],[0.0735571,0.0558000],[0.0735571,0.0576000],[0.0709301,0.0576000],[0.0709301,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0735571","Lat":"0.0000000","KPI":99,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0000000],[0.0761842,0.0000000],[0.0761842,0.0018000],[0.0735571,0.0018000],[0.0735571,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":13,"Long":"0.0735571","Lat":"0.0018000","KPI":931,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0018000],[0.0761842,0.0018000],[0.0761842,0.0036000],[0.0735571,0.0036000],[0.0735571,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0735571","Lat":"0.0036000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0036000],[0.0761842,0.0036000],[0.0761842,0.0054000],[0.0735571,0.0054000],[0.0735571,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":49,"Long":"0.0735571","Lat":"0.0054000","KPI":859,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0054000],[0.0761842,0.0054000],[0.0761842,0.0072000],[0.0735571,0.0072000],[0.0735571,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0735571","Lat":"0.0072000","KPI":337,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0072000],[0.0761842,0.0072000],[0.0761842,0.0090000],[0.0735571,0.0090000],[0.0735571,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":71,"Long":"0.0735571","Lat":"0.0090000","KPI":940,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0090000],[0.0761842,0.0090000],[0.0761842,0.0108000],[0.0735571,0.0108000],[0.0735571,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0735571","Lat":"0.0108000","KPI":464,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0108000],[0.0761842,0.0108000],[0.0761842,0.0126000],[0.0735571,0.0126000],[0.0735571,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0735571","Lat":"0.0126000","KPI":864,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0126000],[0.0761842,0.0126000],[0.0761842,0.0144000],[0.0735571,0.0144000],[0.0735571,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0735571","Lat":"0.0144000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0144000],[0.0761842,0.0144000],[0.0761842,0.0162000],[0.0735571,0.0162000],[0.0735571,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0735571","Lat":"0.0162000","KPI":608,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0162000],[0.0761842,0.0162000],[0.0761842,0.0180000],[0.0735571,0.0180000],[0.0735571,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":68,"Long":"0.0735571","Lat":"0.0180000","KPI":831,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0180000],[0.0761842,0.0180000],[0.0761842,0.0198000],[0.0735571,0.0198000],[0.0735571,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0735571","Lat":"0.0198000","KPI":832,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0198000],[0.0761842,0.0198000],[0.0761842,0.0216000],[0.0735571,0.0216000],[0.0735571,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0735571","Lat":"0.0216000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0216000],[0.0761842,0.0216000],[0.0761842,0.0234000],[0.0735571,0.0234000],[0.0735571,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0735571","Lat":"0.0234000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0234000],[0.0761842,0.0234000],[0.0761842,0.0252000],[0.0735571,0.0252000],[0.0735571,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0735571","Lat":"0.0252000","KPI":817,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0252000],[0.0761842,0.0252000],[0.0761842,0.0270000],[0.0735571,0.0270000],[0.0735571,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0735571","Lat":"0.0270000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0270000],[0.0761842,0.0270000],[0.0761842,0.0288000],[0.0735571,0.0288000],[0.0735571,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0735571","Lat":"0.0288000","KPI":684,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0288000],[0.0761842,0.0288000],[0.0761842,0.0306000],[0.0735571,0.0306000],[0.0735571,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0735571","Lat":"0.0306000","KPI":959,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0306000],[0.0761842,0.0306000],[0.0761842,0.0324000],[0.0735571,0.0324000],[0.0735571,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0735571","Lat":"0.0324000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0324000],[0.0761842,0.0324000],[0.0761842,0.0342000],[0.0735571,0.0342000],[0.0735571,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0735571","Lat":"0.0342000","KPI":956,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0342000],[0.0761842,0.0342000],[0.0761842,0.0360000],[0.0735571,0.0360000],[0.0735571,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":52,"Long":"0.0735571","Lat":"0.0360000","KPI":951,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0360000],[0.0761842,0.0360000],[0.0761842,0.0378000],[0.0735571,0.0378000],[0.0735571,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0735571","Lat":"0.0378000","KPI":186,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0378000],[0.0761842,0.0378000],[0.0761842,0.0396000],[0.0735571,0.0396000],[0.0735571,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0735571","Lat":"0.0396000","KPI":343,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0396000],[0.0761842,0.0396000],[0.0761842,0.0414000],[0.0735571,0.0414000],[0.0735571,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0735571","Lat":"0.0414000","KPI":498,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0414000],[0.0761842,0.0414000],[0.0761842,0.0432000],[0.0735571,0.0432000],[0.0735571,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":45,"Long":"0.0735571","Lat":"0.0432000","KPI":219,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0432000],[0.0761842,0.0432000],[0.0761842,0.0450000],[0.0735571,0.0450000],[0.0735571,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0735571","Lat":"0.0450000","KPI":361,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0450000],[0.0761842,0.0450000],[0.0761842,0.0468000],[0.0735571,0.0468000],[0.0735571,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0735571","Lat":"0.0468000","KPI":979,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0468000],[0.0761842,0.0468000],[0.0761842,0.0486000],[0.0735571,0.0486000],[0.0735571,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0735571","Lat":"0.0486000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0486000],[0.0761842,0.0486000],[0.0761842,0.0504000],[0.0735571,0.0504000],[0.0735571,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0735571","Lat":"0.0504000","KPI":908,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0504000],[0.0761842,0.0504000],[0.0761842,0.0522000],[0.0735571,0.0522000],[0.0735571,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":74,"Long":"0.0735571","Lat":"0.0522000","KPI":310,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0522000],[0.0761842,0.0522000],[0.0761842,0.0540000],[0.0735571,0.0540000],[0.0735571,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0735571","Lat":"0.0540000","KPI":609,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0540000],[0.0761842,0.0540000],[0.0761842,0.0558000],[0.0735571,0.0558000],[0.0735571,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":92,"Long":"0.0735571","Lat":"0.0558000","KPI":938,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735571,0.0558000],[0.0761842,0.0558000],[0.0761842,0.0576000],[0.0735571,0.0576000],[0.0735571,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0761842","Lat":"0.0000000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0000000],[0.0788112,0.0000000],[0.0788112,0.0018000],[0.0761842,0.0018000],[0.0761842,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0761842","Lat":"0.0018000","KPI":458,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0018000],[0.0788112,0.0018000],[0.0788112,0.0036000],[0.0761842,0.0036000],[0.0761842,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":52,"Long":"0.0761842","Lat":"0.0036000","KPI":954,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0036000],[0.0788112,0.0036000],[0.0788112,0.0054000],[0.0761842,0.0054000],[0.0761842,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":8,"Long":"0.0761842","Lat":"0.0054000","KPI":414,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0054000],[0.0788112,0.0054000],[0.0788112,0.0072000],[0.0761842,0.0072000],[0.0761842,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":76,"Long":"0.0761842","Lat":"0.0072000","KPI":23,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0072000],[0.0788112,0.0072000],[0.0788112,0.0090000],[0.0761842,0.0090000],[0.0761842,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":35,"Long":"0.0761842","Lat":"0.0090000","KPI":590,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0090000],[0.0788112,0.0090000],[0.0788112,0.0108000],[0.0761842,0.0108000],[0.0761842,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":38,"Long":"0.0761842","Lat":"0.0108000","KPI":547,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0108000],[0.0788112,0.0108000],[0.0788112,0.0126000],[0.0761842,0.0126000],[0.0761842,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":2,"Long":"0.0761842","Lat":"0.0126000","KPI":370,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0126000],[0.0788112,0.0126000],[0.0788112,0.0144000],[0.0761842,0.0144000],[0.0761842,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":33,"Long":"0.0761842","Lat":"0.0144000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0144000],[0.0788112,0.0144000],[0.0788112,0.0162000],[0.0761842,0.0162000],[0.0761842,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":16,"Long":"0.0761842","Lat":"0.0162000","KPI":874,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0162000],[0.0788112,0.0162000],[0.0788112,0.0180000],[0.0761842,0.0180000],[0.0761842,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0761842","Lat":"0.0180000","KPI":621,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0180000],[0.0788112,0.0180000],[0.0788112,0.0198000],[0.0761842,0.0198000],[0.0761842,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0761842","Lat":"0.0198000","KPI":662,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0198000],[0.0788112,0.0198000],[0.0788112,0.0216000],[0.0761842,0.0216000],[0.0761842,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0761842","Lat":"0.0216000","KPI":394,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0216000],[0.0788112,0.0216000],[0.0788112,0.0234000],[0.0761842,0.0234000],[0.0761842,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":87,"Long":"0.0761842","Lat":"0.0234000","KPI":29,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0234000],[0.0788112,0.0234000],[0.0788112,0.0252000],[0.0761842,0.0252000],[0.0761842,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0761842","Lat":"0.0252000","KPI":578,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0252000],[0.0788112,0.0252000],[0.0788112,0.0270000],[0.0761842,0.0270000],[0.0761842,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":36,"Long":"0.0761842","Lat":"0.0270000","KPI":292,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0270000],[0.0788112,0.0270000],[0.0788112,0.0288000],[0.0761842,0.0288000],[0.0761842,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":72,"Long":"0.0761842","Lat":"0.0288000","KPI":149,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0288000],[0.0788112,0.0288000],[0.0788112,0.0306000],[0.0761842,0.0306000],[0.0761842,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":69,"Long":"0.0761842","Lat":"0.0306000","KPI":774,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0306000],[0.0788112,0.0306000],[0.0788112,0.0324000],[0.0761842,0.0324000],[0.0761842,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":49,"Long":"0.0761842","Lat":"0.0324000","KPI":251,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0324000],[0.0788112,0.0324000],[0.0788112,0.0342000],[0.0761842,0.0342000],[0.0761842,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":73,"Long":"0.0761842","Lat":"0.0342000","KPI":616,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0342000],[0.0788112,0.0342000],[0.0788112,0.0360000],[0.0761842,0.0360000],[0.0761842,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":40,"Long":"0.0761842","Lat":"0.0360000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0360000],[0.0788112,0.0360000],[0.0788112,0.0378000],[0.0761842,0.0378000],[0.0761842,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0761842","Lat":"0.0378000","KPI":924,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0378000],[0.0788112,0.0378000],[0.0788112,0.0396000],[0.0761842,0.0396000],[0.0761842,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0761842","Lat":"0.0396000","KPI":389,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0396000],[0.0788112,0.0396000],[0.0788112,0.0414000],[0.0761842,0.0414000],[0.0761842,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0761842","Lat":"0.0414000","KPI":240,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0414000],[0.0788112,0.0414000],[0.0788112,0.0432000],[0.0761842,0.0432000],[0.0761842,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":94,"Long":"0.0761842","Lat":"0.0432000","KPI":333,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0432000],[0.0788112,0.0432000],[0.0788112,0.0450000],[0.0761842,0.0450000],[0.0761842,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":13,"Long":"0.0761842","Lat":"0.0450000","KPI":773,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0450000],[0.0788112,0.0450000],[0.0788112,0.0468000],[0.0761842,0.0468000],[0.0761842,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":93,"Long":"0.0761842","Lat":"0.0468000","KPI":52,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0468000],[0.0788112,0.0468000],[0.0788112,0.0486000],[0.0761842,0.0486000],[0.0761842,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":10,"Long":"0.0761842","Lat":"0.0486000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0486000],[0.0788112,0.0486000],[0.0788112,0.0504000],[0.0761842,0.0504000],[0.0761842,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":26,"Long":"0.0761842","Lat":"0.0504000","KPI":510,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0504000],[0.0788112,0.0504000],[0.0788112,0.0522000],[0.0761842,0.0522000],[0.0761842,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":43,"Long":"0.0761842","Lat":"0.0522000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0522000],[0.0788112,0.0522000],[0.0788112,0.0540000],[0.0761842,0.0540000],[0.0761842,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0761842","Lat":"0.0540000","KPI":876,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0540000],[0.0788112,0.0540000],[0.0788112,0.0558000],[0.0761842,0.0558000],[0.0761842,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0761842","Lat":"0.0558000","KPI":531,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761842,0.0558000],[0.0788112,0.0558000],[0.0788112,0.0576000],[0.0761842,0.0576000],[0.0761842,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0788112","Lat":"0.0000000","KPI":270,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0000000],[0.0814382,0.0000000],[0.0814382,0.0018000],[0.0788112,0.0018000],[0.0788112,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":3,"Long":"0.0788112","Lat":"0.0018000","KPI":687,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0018000],[0.0814382,0.0018000],[0.0814382,0.0036000],[0.0788112,0.0036000],[0.0788112,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0788112","Lat":"0.0036000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0036000],[0.0814382,0.0036000],[0.0814382,0.0054000],[0.0788112,0.0054000],[0.0788112,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":5,"Long":"0.0788112","Lat":"0.0054000","KPI":175,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0054000],[0.0814382,0.0054000],[0.0814382,0.0072000],[0.0788112,0.0072000],[0.0788112,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":1,"Long":"0.0788112","Lat":"0.0072000","KPI":510,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0072000],[0.0814382,0.0072000],[0.0814382,0.0090000],[0.0788112,0.0090000],[0.0788112,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":18,"Long":"0.0788112","Lat":"0.0090000","KPI":457,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0090000],[0.0814382,0.0090000],[0.0814382,0.0108000],[0.0788112,0.0108000],[0.0788112,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0788112","Lat":"0.0108000","KPI":749,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0108000],[0.0814382,0.0108000],[0.0814382,0.0126000],[0.0788112,0.0126000],[0.0788112,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":44,"Long":"0.0788112","Lat":"0.0126000","KPI":237,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0126000],[0.0814382,0.0126000],[0.0814382,0.0144000],[0.0788112,0.0144000],[0.0788112,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":50,"Long":"0.0788112","Lat":"0.0144000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0144000],[0.0814382,0.0144000],[0.0814382,0.0162000],[0.0788112,0.0162000],[0.0788112,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":22,"Long":"0.0788112","Lat":"0.0162000","KPI":640,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0162000],[0.0814382,0.0162000],[0.0814382,0.0180000],[0.0788112,0.0180000],[0.0788112,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":56,"Long":"0.0788112","Lat":"0.0180000","KPI":846,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0180000],[0.0814382,0.0180000],[0.0814382,0.0198000],[0.0788112,0.0198000],[0.0788112,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":84,"Long":"0.0788112","Lat":"0.0198000","KPI":837,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0198000],[0.0814382,0.0198000],[0.0814382,0.0216000],[0.0788112,0.0216000],[0.0788112,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":70,"Long":"0.0788112","Lat":"0.0216000","KPI":593,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0216000],[0.0814382,0.0216000],[0.0814382,0.0234000],[0.0788112,0.0234000],[0.0788112,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":23,"Long":"0.0788112","Lat":"0.0234000","KPI":73,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0234000],[0.0814382,0.0234000],[0.0814382,0.0252000],[0.0788112,0.0252000],[0.0788112,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":78,"Long":"0.0788112","Lat":"0.0252000","KPI":287,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0252000],[0.0814382,0.0252000],[0.0814382,0.0270000],[0.0788112,0.0270000],[0.0788112,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":75,"Long":"0.0788112","Lat":"0.0270000","KPI":871,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0270000],[0.0814382,0.0270000],[0.0814382,0.0288000],[0.0788112,0.0288000],[0.0788112,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0788112","Lat":"0.0288000","KPI":973,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0288000],[0.0814382,0.0288000],[0.0814382,0.0306000],[0.0788112,0.0306000],[0.0788112,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0788112","Lat":"0.0306000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0306000],[0.0814382,0.0306000],[0.0814382,0.0324000],[0.0788112,0.0324000],[0.0788112,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":16,"Long":"0.0788112","Lat":"0.0324000","KPI":874,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0324000],[0.0814382,0.0324000],[0.0814382,0.0342000],[0.0788112,0.0342000],[0.0788112,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":60,"Long":"0.0788112","Lat":"0.0342000","KPI":826,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0342000],[0.0814382,0.0342000],[0.0814382,0.0360000],[0.0788112,0.0360000],[0.0788112,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":17,"Long":"0.0788112","Lat":"0.0360000","KPI":858,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0360000],[0.0814382,0.0360000],[0.0814382,0.0378000],[0.0788112,0.0378000],[0.0788112,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":57,"Long":"0.0788112","Lat":"0.0378000","KPI":129,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0378000],[0.0814382,0.0378000],[0.0814382,0.0396000],[0.0788112,0.0396000],[0.0788112,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":83,"Long":"0.0788112","Lat":"0.0396000","KPI":766,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0396000],[0.0814382,0.0396000],[0.0814382,0.0414000],[0.0788112,0.0414000],[0.0788112,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":63,"Long":"0.0788112","Lat":"0.0414000","KPI":308,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0414000],[0.0814382,0.0414000],[0.0814382,0.0432000],[0.0788112,0.0432000],[0.0788112,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0788112","Lat":"0.0432000","KPI":618,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0432000],[0.0814382,0.0432000],[0.0814382,0.0450000],[0.0788112,0.0450000],[0.0788112,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":37,"Long":"0.0788112","Lat":"0.0450000","KPI":752,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0450000],[0.0814382,0.0450000],[0.0814382,0.0468000],[0.0788112,0.0468000],[0.0788112,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":26,"Long":"0.0788112","Lat":"0.0468000","KPI":109,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0468000],[0.0814382,0.0468000],[0.0814382,0.0486000],[0.0788112,0.0486000],[0.0788112,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0788112","Lat":"0.0486000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0486000],[0.0814382,0.0486000],[0.0814382,0.0504000],[0.0788112,0.0504000],[0.0788112,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":28,"Long":"0.0788112","Lat":"0.0504000","KPI":701,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0504000],[0.0814382,0.0504000],[0.0814382,0.0522000],[0.0788112,0.0522000],[0.0788112,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0788112","Lat":"0.0522000","KPI":385,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0522000],[0.0814382,0.0522000],[0.0814382,0.0540000],[0.0788112,0.0540000],[0.0788112,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":13,"Long":"0.0788112","Lat":"0.0540000","KPI":39,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0540000],[0.0814382,0.0540000],[0.0814382,0.0558000],[0.0788112,0.0558000],[0.0788112,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":25,"Long":"0.0788112","Lat":"0.0558000","KPI":418,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788112,0.0558000],[0.0814382,0.0558000],[0.0814382,0.0576000],[0.0788112,0.0576000],[0.0788112,0.0558000]]]}} -{"type": "Feature","properties": {"Tile":48,"Long":"0.0814382","Lat":"0.0000000","KPI":390,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0000000],[0.0840653,0.0000000],[0.0840653,0.0018000],[0.0814382,0.0018000],[0.0814382,0.0000000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0814382","Lat":"0.0018000","KPI":487,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0018000],[0.0840653,0.0018000],[0.0840653,0.0036000],[0.0814382,0.0036000],[0.0814382,0.0018000]]]}} -{"type": "Feature","properties": {"Tile":6,"Long":"0.0814382","Lat":"0.0036000","KPI":285,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0036000],[0.0840653,0.0036000],[0.0840653,0.0054000],[0.0814382,0.0054000],[0.0814382,0.0036000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0814382","Lat":"0.0054000","KPI":563,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0054000],[0.0840653,0.0054000],[0.0840653,0.0072000],[0.0814382,0.0072000],[0.0814382,0.0054000]]]}} -{"type": "Feature","properties": {"Tile":6,"Long":"0.0814382","Lat":"0.0072000","KPI":592,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0072000],[0.0840653,0.0072000],[0.0840653,0.0090000],[0.0814382,0.0090000],[0.0814382,0.0072000]]]}} -{"type": "Feature","properties": {"Tile":7,"Long":"0.0814382","Lat":"0.0090000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0090000],[0.0840653,0.0090000],[0.0840653,0.0108000],[0.0814382,0.0108000],[0.0814382,0.0090000]]]}} -{"type": "Feature","properties": {"Tile":65,"Long":"0.0814382","Lat":"0.0108000","KPI":776,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0108000],[0.0840653,0.0108000],[0.0840653,0.0126000],[0.0814382,0.0126000],[0.0814382,0.0108000]]]}} -{"type": "Feature","properties": {"Tile":29,"Long":"0.0814382","Lat":"0.0126000","KPI":927,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0126000],[0.0840653,0.0126000],[0.0840653,0.0144000],[0.0814382,0.0144000],[0.0814382,0.0126000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0814382","Lat":"0.0144000","KPI":205,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0144000],[0.0840653,0.0144000],[0.0840653,0.0162000],[0.0814382,0.0162000],[0.0814382,0.0144000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0814382","Lat":"0.0162000","KPI":59,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0162000],[0.0840653,0.0162000],[0.0840653,0.0180000],[0.0814382,0.0180000],[0.0814382,0.0162000]]]}} -{"type": "Feature","properties": {"Tile":85,"Long":"0.0814382","Lat":"0.0180000","KPI":978,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0180000],[0.0840653,0.0180000],[0.0840653,0.0198000],[0.0814382,0.0198000],[0.0814382,0.0180000]]]}} -{"type": "Feature","properties": {"Tile":64,"Long":"0.0814382","Lat":"0.0198000","KPI":651,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0198000],[0.0840653,0.0198000],[0.0840653,0.0216000],[0.0814382,0.0216000],[0.0814382,0.0198000]]]}} -{"type": "Feature","properties": {"Tile":51,"Long":"0.0814382","Lat":"0.0216000","KPI":893,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0216000],[0.0840653,0.0216000],[0.0840653,0.0234000],[0.0814382,0.0234000],[0.0814382,0.0216000]]]}} -{"type": "Feature","properties": {"Tile":79,"Long":"0.0814382","Lat":"0.0234000","KPI":267,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0234000],[0.0840653,0.0234000],[0.0840653,0.0252000],[0.0814382,0.0252000],[0.0814382,0.0234000]]]}} -{"type": "Feature","properties": {"Tile":54,"Long":"0.0814382","Lat":"0.0252000","KPI":870,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0252000],[0.0840653,0.0252000],[0.0840653,0.0270000],[0.0814382,0.0270000],[0.0814382,0.0252000]]]}} -{"type": "Feature","properties": {"Tile":32,"Long":"0.0814382","Lat":"0.0270000","KPI":0,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0270000],[0.0840653,0.0270000],[0.0840653,0.0288000],[0.0814382,0.0288000],[0.0814382,0.0270000]]]}} -{"type": "Feature","properties": {"Tile":9,"Long":"0.0814382","Lat":"0.0288000","KPI":326,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0288000],[0.0840653,0.0288000],[0.0840653,0.0306000],[0.0814382,0.0306000],[0.0814382,0.0288000]]]}} -{"type": "Feature","properties": {"Tile":34,"Long":"0.0814382","Lat":"0.0306000","KPI":838,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0306000],[0.0840653,0.0306000],[0.0840653,0.0324000],[0.0814382,0.0324000],[0.0814382,0.0306000]]]}} -{"type": "Feature","properties": {"Tile":82,"Long":"0.0814382","Lat":"0.0324000","KPI":779,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0324000],[0.0840653,0.0324000],[0.0840653,0.0342000],[0.0814382,0.0342000],[0.0814382,0.0324000]]]}} -{"type": "Feature","properties": {"Tile":91,"Long":"0.0814382","Lat":"0.0342000","KPI":37,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0342000],[0.0840653,0.0342000],[0.0840653,0.0360000],[0.0814382,0.0360000],[0.0814382,0.0342000]]]}} -{"type": "Feature","properties": {"Tile":39,"Long":"0.0814382","Lat":"0.0360000","KPI":208,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0360000],[0.0840653,0.0360000],[0.0840653,0.0378000],[0.0814382,0.0378000],[0.0814382,0.0360000]]]}} -{"type": "Feature","properties": {"Tile":4,"Long":"0.0814382","Lat":"0.0378000","KPI":803,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0378000],[0.0840653,0.0378000],[0.0840653,0.0396000],[0.0814382,0.0396000],[0.0814382,0.0378000]]]}} -{"type": "Feature","properties": {"Tile":53,"Long":"0.0814382","Lat":"0.0396000","KPI":497,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0396000],[0.0840653,0.0396000],[0.0840653,0.0414000],[0.0814382,0.0414000],[0.0814382,0.0396000]]]}} -{"type": "Feature","properties": {"Tile":67,"Long":"0.0814382","Lat":"0.0414000","KPI":45,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0414000],[0.0840653,0.0414000],[0.0840653,0.0432000],[0.0814382,0.0432000],[0.0814382,0.0414000]]]}} -{"type": "Feature","properties": {"Tile":74,"Long":"0.0814382","Lat":"0.0432000","KPI":660,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0432000],[0.0840653,0.0432000],[0.0840653,0.0450000],[0.0814382,0.0450000],[0.0814382,0.0432000]]]}} -{"type": "Feature","properties": {"Tile":42,"Long":"0.0814382","Lat":"0.0450000","KPI":425,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0450000],[0.0840653,0.0450000],[0.0840653,0.0468000],[0.0814382,0.0468000],[0.0814382,0.0450000]]]}} -{"type": "Feature","properties": {"Tile":77,"Long":"0.0814382","Lat":"0.0468000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0468000],[0.0840653,0.0468000],[0.0840653,0.0486000],[0.0814382,0.0486000],[0.0814382,0.0468000]]]}} -{"type": "Feature","properties": {"Tile":19,"Long":"0.0814382","Lat":"0.0486000","KPI":448,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0486000],[0.0840653,0.0486000],[0.0840653,0.0504000],[0.0814382,0.0504000],[0.0814382,0.0486000]]]}} -{"type": "Feature","properties": {"Tile":58,"Long":"0.0814382","Lat":"0.0504000","KPI":767,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0504000],[0.0840653,0.0504000],[0.0840653,0.0522000],[0.0814382,0.0522000],[0.0814382,0.0504000]]]}} -{"type": "Feature","properties": {"Tile":74,"Long":"0.0814382","Lat":"0.0522000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0522000],[0.0840653,0.0522000],[0.0840653,0.0540000],[0.0814382,0.0540000],[0.0814382,0.0522000]]]}} -{"type": "Feature","properties": {"Tile":62,"Long":"0.0814382","Lat":"0.0540000","KPI":340,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0540000],[0.0840653,0.0540000],[0.0840653,0.0558000],[0.0814382,0.0558000],[0.0814382,0.0540000]]]}} -{"type": "Feature","properties": {"Tile":21,"Long":"0.0814382","Lat":"0.0558000","KPI":243,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814382,0.0558000],[0.0840653,0.0558000],[0.0840653,0.0576000],[0.0814382,0.0576000],[0.0814382,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0000000","Lat":"0.0000000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0000000],[0.0026300,0.0000000],[0.0026300,0.0018000],[0.0000000,0.0018000],[0.0000000,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0000000","Lat":"0.0018000","KPI":334,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0018000],[0.0026300,0.0018000],[0.0026300,0.0036000],[0.0000000,0.0036000],[0.0000000,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0000000","Lat":"0.0036000","KPI":420,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0036000],[0.0026300,0.0036000],[0.0026300,0.0054000],[0.0000000,0.0054000],[0.0000000,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0000000","Lat":"0.0054000","KPI":648,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0054000],[0.0026300,0.0054000],[0.0026300,0.0072000],[0.0000000,0.0072000],[0.0000000,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0000000","Lat":"0.0072000","KPI":125,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0072000],[0.0026300,0.0072000],[0.0026300,0.0090000],[0.0000000,0.0090000],[0.0000000,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0000000","Lat":"0.0090000","KPI":683,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0090000],[0.0026300,0.0090000],[0.0026300,0.0108000],[0.0000000,0.0108000],[0.0000000,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0000000","Lat":"0.0108000","KPI":463,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0108000],[0.0026300,0.0108000],[0.0026300,0.0126000],[0.0000000,0.0126000],[0.0000000,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0000000","Lat":"0.0126000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0126000],[0.0026300,0.0126000],[0.0026300,0.0144000],[0.0000000,0.0144000],[0.0000000,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0000000","Lat":"0.0144000","KPI":723,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0144000],[0.0026300,0.0144000],[0.0026300,0.0162000],[0.0000000,0.0162000],[0.0000000,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0000000","Lat":"0.0162000","KPI":258,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0162000],[0.0026300,0.0162000],[0.0026300,0.0180000],[0.0000000,0.0180000],[0.0000000,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0000000","Lat":"0.0180000","KPI":224,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0180000],[0.0026300,0.0180000],[0.0026300,0.0198000],[0.0000000,0.0198000],[0.0000000,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0000000","Lat":"0.0198000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0198000],[0.0026300,0.0198000],[0.0026300,0.0216000],[0.0000000,0.0216000],[0.0000000,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0000000","Lat":"0.0216000","KPI":684,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0216000],[0.0026300,0.0216000],[0.0026300,0.0234000],[0.0000000,0.0234000],[0.0000000,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0000000","Lat":"0.0234000","KPI":165,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0234000],[0.0026300,0.0234000],[0.0026300,0.0252000],[0.0000000,0.0252000],[0.0000000,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0000000","Lat":"0.0252000","KPI":193,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0252000],[0.0026300,0.0252000],[0.0026300,0.0270000],[0.0000000,0.0270000],[0.0000000,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0000000","Lat":"0.0270000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0270000],[0.0026300,0.0270000],[0.0026300,0.0288000],[0.0000000,0.0288000],[0.0000000,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0000000","Lat":"0.0288000","KPI":461,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0288000],[0.0026300,0.0288000],[0.0026300,0.0306000],[0.0000000,0.0306000],[0.0000000,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0000000","Lat":"0.0306000","KPI":422,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0306000],[0.0026300,0.0306000],[0.0026300,0.0324000],[0.0000000,0.0324000],[0.0000000,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0000000","Lat":"0.0324000","KPI":229,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0324000],[0.0026300,0.0324000],[0.0026300,0.0342000],[0.0000000,0.0342000],[0.0000000,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0000000","Lat":"0.0342000","KPI":13,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0342000],[0.0026300,0.0342000],[0.0026300,0.0360000],[0.0000000,0.0360000],[0.0000000,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0000000","Lat":"0.0360000","KPI":525,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0360000],[0.0026300,0.0360000],[0.0026300,0.0378000],[0.0000000,0.0378000],[0.0000000,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0000000","Lat":"0.0378000","KPI":526,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0378000],[0.0026300,0.0378000],[0.0026300,0.0396000],[0.0000000,0.0396000],[0.0000000,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0000000","Lat":"0.0396000","KPI":735,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0396000],[0.0026300,0.0396000],[0.0026300,0.0414000],[0.0000000,0.0414000],[0.0000000,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0000000","Lat":"0.0414000","KPI":278,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0414000],[0.0026300,0.0414000],[0.0026300,0.0432000],[0.0000000,0.0432000],[0.0000000,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0000000","Lat":"0.0432000","KPI":317,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0432000],[0.0026300,0.0432000],[0.0026300,0.0450000],[0.0000000,0.0450000],[0.0000000,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0000000","Lat":"0.0450000","KPI":408,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0450000],[0.0026300,0.0450000],[0.0026300,0.0468000],[0.0000000,0.0468000],[0.0000000,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0000000","Lat":"0.0468000","KPI":333,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0468000],[0.0026300,0.0468000],[0.0026300,0.0486000],[0.0000000,0.0486000],[0.0000000,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0000000","Lat":"0.0486000","KPI":368,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0486000],[0.0026300,0.0486000],[0.0026300,0.0504000],[0.0000000,0.0504000],[0.0000000,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0000000","Lat":"0.0504000","KPI":890,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0504000],[0.0026300,0.0504000],[0.0026300,0.0522000],[0.0000000,0.0522000],[0.0000000,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0000000","Lat":"0.0522000","KPI":634,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0522000],[0.0026300,0.0522000],[0.0026300,0.0540000],[0.0000000,0.0540000],[0.0000000,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0000000","Lat":"0.0540000","KPI":998,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0540000],[0.0026300,0.0540000],[0.0026300,0.0558000],[0.0000000,0.0558000],[0.0000000,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0000000","Lat":"0.0558000","KPI":384,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0000000,0.0558000],[0.0026300,0.0558000],[0.0026300,0.0576000],[0.0000000,0.0576000],[0.0000000,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0026300","Lat":"0.0000000","KPI":325,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0000000],[0.0052600,0.0000000],[0.0052600,0.0018000],[0.0026300,0.0018000],[0.0026300,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0026300","Lat":"0.0018000","KPI":994,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0018000],[0.0052600,0.0018000],[0.0052600,0.0036000],[0.0026300,0.0036000],[0.0026300,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0026300","Lat":"0.0036000","KPI":827,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0036000],[0.0052600,0.0036000],[0.0052600,0.0054000],[0.0026300,0.0054000],[0.0026300,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0026300","Lat":"0.0054000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0054000],[0.0052600,0.0054000],[0.0052600,0.0072000],[0.0026300,0.0072000],[0.0026300,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0026300","Lat":"0.0072000","KPI":226,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0072000],[0.0052600,0.0072000],[0.0052600,0.0090000],[0.0026300,0.0090000],[0.0026300,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0026300","Lat":"0.0090000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0090000],[0.0052600,0.0090000],[0.0052600,0.0108000],[0.0026300,0.0108000],[0.0026300,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0026300","Lat":"0.0108000","KPI":906,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0108000],[0.0052600,0.0108000],[0.0052600,0.0126000],[0.0026300,0.0126000],[0.0026300,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0026300","Lat":"0.0126000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0126000],[0.0052600,0.0126000],[0.0052600,0.0144000],[0.0026300,0.0144000],[0.0026300,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0026300","Lat":"0.0144000","KPI":861,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0144000],[0.0052600,0.0144000],[0.0052600,0.0162000],[0.0026300,0.0162000],[0.0026300,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0026300","Lat":"0.0162000","KPI":924,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0162000],[0.0052600,0.0162000],[0.0052600,0.0180000],[0.0026300,0.0180000],[0.0026300,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0026300","Lat":"0.0180000","KPI":936,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0180000],[0.0052600,0.0180000],[0.0052600,0.0198000],[0.0026300,0.0198000],[0.0026300,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0026300","Lat":"0.0198000","KPI":260,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0198000],[0.0052600,0.0198000],[0.0052600,0.0216000],[0.0026300,0.0216000],[0.0026300,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0026300","Lat":"0.0216000","KPI":779,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0216000],[0.0052600,0.0216000],[0.0052600,0.0234000],[0.0026300,0.0234000],[0.0026300,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0026300","Lat":"0.0234000","KPI":221,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0234000],[0.0052600,0.0234000],[0.0052600,0.0252000],[0.0026300,0.0252000],[0.0026300,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0026300","Lat":"0.0252000","KPI":589,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0252000],[0.0052600,0.0252000],[0.0052600,0.0270000],[0.0026300,0.0270000],[0.0026300,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0026300","Lat":"0.0270000","KPI":888,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0270000],[0.0052600,0.0270000],[0.0052600,0.0288000],[0.0026300,0.0288000],[0.0026300,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0026300","Lat":"0.0288000","KPI":945,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0288000],[0.0052600,0.0288000],[0.0052600,0.0306000],[0.0026300,0.0306000],[0.0026300,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0026300","Lat":"0.0306000","KPI":537,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0306000],[0.0052600,0.0306000],[0.0052600,0.0324000],[0.0026300,0.0324000],[0.0026300,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0026300","Lat":"0.0324000","KPI":769,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0324000],[0.0052600,0.0324000],[0.0052600,0.0342000],[0.0026300,0.0342000],[0.0026300,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0026300","Lat":"0.0342000","KPI":803,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0342000],[0.0052600,0.0342000],[0.0052600,0.0360000],[0.0026300,0.0360000],[0.0026300,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0026300","Lat":"0.0360000","KPI":732,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0360000],[0.0052600,0.0360000],[0.0052600,0.0378000],[0.0026300,0.0378000],[0.0026300,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0026300","Lat":"0.0378000","KPI":611,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0378000],[0.0052600,0.0378000],[0.0052600,0.0396000],[0.0026300,0.0396000],[0.0026300,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0026300","Lat":"0.0396000","KPI":220,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0396000],[0.0052600,0.0396000],[0.0052600,0.0414000],[0.0026300,0.0414000],[0.0026300,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0026300","Lat":"0.0414000","KPI":912,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0414000],[0.0052600,0.0414000],[0.0052600,0.0432000],[0.0026300,0.0432000],[0.0026300,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0026300","Lat":"0.0432000","KPI":326,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0432000],[0.0052600,0.0432000],[0.0052600,0.0450000],[0.0026300,0.0450000],[0.0026300,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0026300","Lat":"0.0450000","KPI":733,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0450000],[0.0052600,0.0450000],[0.0052600,0.0468000],[0.0026300,0.0468000],[0.0026300,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0026300","Lat":"0.0468000","KPI":182,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0468000],[0.0052600,0.0468000],[0.0052600,0.0486000],[0.0026300,0.0486000],[0.0026300,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0026300","Lat":"0.0486000","KPI":563,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0486000],[0.0052600,0.0486000],[0.0052600,0.0504000],[0.0026300,0.0504000],[0.0026300,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0026300","Lat":"0.0504000","KPI":364,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0504000],[0.0052600,0.0504000],[0.0052600,0.0522000],[0.0026300,0.0522000],[0.0026300,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0026300","Lat":"0.0522000","KPI":634,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0522000],[0.0052600,0.0522000],[0.0052600,0.0540000],[0.0026300,0.0540000],[0.0026300,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0026300","Lat":"0.0540000","KPI":23,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0540000],[0.0052600,0.0540000],[0.0052600,0.0558000],[0.0026300,0.0558000],[0.0026300,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0026300","Lat":"0.0558000","KPI":236,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0026300,0.0558000],[0.0052600,0.0558000],[0.0052600,0.0576000],[0.0026300,0.0576000],[0.0026300,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0052500","Lat":"0.0000000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0000000],[0.0078800,0.0000000],[0.0078800,0.0018000],[0.0052500,0.0018000],[0.0052500,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0052500","Lat":"0.0018000","KPI":792,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0018000],[0.0078800,0.0018000],[0.0078800,0.0036000],[0.0052500,0.0036000],[0.0052500,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0052500","Lat":"0.0036000","KPI":50,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0036000],[0.0078800,0.0036000],[0.0078800,0.0054000],[0.0052500,0.0054000],[0.0052500,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0052500","Lat":"0.0054000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0054000],[0.0078800,0.0054000],[0.0078800,0.0072000],[0.0052500,0.0072000],[0.0052500,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0052500","Lat":"0.0072000","KPI":759,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0072000],[0.0078800,0.0072000],[0.0078800,0.0090000],[0.0052500,0.0090000],[0.0052500,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0052500","Lat":"0.0090000","KPI":529,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0090000],[0.0078800,0.0090000],[0.0078800,0.0108000],[0.0052500,0.0108000],[0.0052500,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0052500","Lat":"0.0108000","KPI":936,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0108000],[0.0078800,0.0108000],[0.0078800,0.0126000],[0.0052500,0.0126000],[0.0052500,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0052500","Lat":"0.0126000","KPI":660,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0126000],[0.0078800,0.0126000],[0.0078800,0.0144000],[0.0052500,0.0144000],[0.0052500,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0052500","Lat":"0.0144000","KPI":661,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0144000],[0.0078800,0.0144000],[0.0078800,0.0162000],[0.0052500,0.0162000],[0.0052500,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0052500","Lat":"0.0162000","KPI":539,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0162000],[0.0078800,0.0162000],[0.0078800,0.0180000],[0.0052500,0.0180000],[0.0052500,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0052500","Lat":"0.0180000","KPI":448,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0180000],[0.0078800,0.0180000],[0.0078800,0.0198000],[0.0052500,0.0198000],[0.0052500,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0052500","Lat":"0.0198000","KPI":60,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0198000],[0.0078800,0.0198000],[0.0078800,0.0216000],[0.0052500,0.0216000],[0.0052500,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0052500","Lat":"0.0216000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0216000],[0.0078800,0.0216000],[0.0078800,0.0234000],[0.0052500,0.0234000],[0.0052500,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0052500","Lat":"0.0234000","KPI":704,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0234000],[0.0078800,0.0234000],[0.0078800,0.0252000],[0.0052500,0.0252000],[0.0052500,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0052500","Lat":"0.0252000","KPI":434,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0252000],[0.0078800,0.0252000],[0.0078800,0.0270000],[0.0052500,0.0270000],[0.0052500,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0052500","Lat":"0.0270000","KPI":714,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0270000],[0.0078800,0.0270000],[0.0078800,0.0288000],[0.0052500,0.0288000],[0.0052500,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0052500","Lat":"0.0288000","KPI":544,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0288000],[0.0078800,0.0288000],[0.0078800,0.0306000],[0.0052500,0.0306000],[0.0052500,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0052500","Lat":"0.0306000","KPI":359,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0306000],[0.0078800,0.0306000],[0.0078800,0.0324000],[0.0052500,0.0324000],[0.0052500,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0052500","Lat":"0.0324000","KPI":240,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0324000],[0.0078800,0.0324000],[0.0078800,0.0342000],[0.0052500,0.0342000],[0.0052500,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0052500","Lat":"0.0342000","KPI":845,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0342000],[0.0078800,0.0342000],[0.0078800,0.0360000],[0.0052500,0.0360000],[0.0052500,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0052500","Lat":"0.0360000","KPI":145,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0360000],[0.0078800,0.0360000],[0.0078800,0.0378000],[0.0052500,0.0378000],[0.0052500,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0052500","Lat":"0.0378000","KPI":354,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0378000],[0.0078800,0.0378000],[0.0078800,0.0396000],[0.0052500,0.0396000],[0.0052500,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0052500","Lat":"0.0396000","KPI":15,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0396000],[0.0078800,0.0396000],[0.0078800,0.0414000],[0.0052500,0.0414000],[0.0052500,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0052500","Lat":"0.0414000","KPI":635,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0414000],[0.0078800,0.0414000],[0.0078800,0.0432000],[0.0052500,0.0432000],[0.0052500,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0052500","Lat":"0.0432000","KPI":259,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0432000],[0.0078800,0.0432000],[0.0078800,0.0450000],[0.0052500,0.0450000],[0.0052500,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0052500","Lat":"0.0450000","KPI":558,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0450000],[0.0078800,0.0450000],[0.0078800,0.0468000],[0.0052500,0.0468000],[0.0052500,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0052500","Lat":"0.0468000","KPI":585,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0468000],[0.0078800,0.0468000],[0.0078800,0.0486000],[0.0052500,0.0486000],[0.0052500,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0052500","Lat":"0.0486000","KPI":19,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0486000],[0.0078800,0.0486000],[0.0078800,0.0504000],[0.0052500,0.0504000],[0.0052500,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0052500","Lat":"0.0504000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0504000],[0.0078800,0.0504000],[0.0078800,0.0522000],[0.0052500,0.0522000],[0.0052500,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0052500","Lat":"0.0522000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0522000],[0.0078800,0.0522000],[0.0078800,0.0540000],[0.0052500,0.0540000],[0.0052500,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0052500","Lat":"0.0540000","KPI":844,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0540000],[0.0078800,0.0540000],[0.0078800,0.0558000],[0.0052500,0.0558000],[0.0052500,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0052500","Lat":"0.0558000","KPI":68,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0052500,0.0558000],[0.0078800,0.0558000],[0.0078800,0.0576000],[0.0052500,0.0576000],[0.0052500,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0078800","Lat":"0.0000000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0000000],[0.0105100,0.0000000],[0.0105100,0.0018000],[0.0078800,0.0018000],[0.0078800,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0078800","Lat":"0.0018000","KPI":566,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0018000],[0.0105100,0.0018000],[0.0105100,0.0036000],[0.0078800,0.0036000],[0.0078800,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0078800","Lat":"0.0036000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0036000],[0.0105100,0.0036000],[0.0105100,0.0054000],[0.0078800,0.0054000],[0.0078800,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0078800","Lat":"0.0054000","KPI":242,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0054000],[0.0105100,0.0054000],[0.0105100,0.0072000],[0.0078800,0.0072000],[0.0078800,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0078800","Lat":"0.0072000","KPI":998,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0072000],[0.0105100,0.0072000],[0.0105100,0.0090000],[0.0078800,0.0090000],[0.0078800,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0078800","Lat":"0.0090000","KPI":239,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0090000],[0.0105100,0.0090000],[0.0105100,0.0108000],[0.0078800,0.0108000],[0.0078800,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0078800","Lat":"0.0108000","KPI":60,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0108000],[0.0105100,0.0108000],[0.0105100,0.0126000],[0.0078800,0.0126000],[0.0078800,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0078800","Lat":"0.0126000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0126000],[0.0105100,0.0126000],[0.0105100,0.0144000],[0.0078800,0.0144000],[0.0078800,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0078800","Lat":"0.0144000","KPI":685,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0144000],[0.0105100,0.0144000],[0.0105100,0.0162000],[0.0078800,0.0162000],[0.0078800,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0078800","Lat":"0.0162000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0162000],[0.0105100,0.0162000],[0.0105100,0.0180000],[0.0078800,0.0180000],[0.0078800,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0078800","Lat":"0.0180000","KPI":424,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0180000],[0.0105100,0.0180000],[0.0105100,0.0198000],[0.0078800,0.0198000],[0.0078800,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0078800","Lat":"0.0198000","KPI":453,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0198000],[0.0105100,0.0198000],[0.0105100,0.0216000],[0.0078800,0.0216000],[0.0078800,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0078800","Lat":"0.0216000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0216000],[0.0105100,0.0216000],[0.0105100,0.0234000],[0.0078800,0.0234000],[0.0078800,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0078800","Lat":"0.0234000","KPI":803,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0234000],[0.0105100,0.0234000],[0.0105100,0.0252000],[0.0078800,0.0252000],[0.0078800,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0078800","Lat":"0.0252000","KPI":234,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0252000],[0.0105100,0.0252000],[0.0105100,0.0270000],[0.0078800,0.0270000],[0.0078800,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0078800","Lat":"0.0270000","KPI":335,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0270000],[0.0105100,0.0270000],[0.0105100,0.0288000],[0.0078800,0.0288000],[0.0078800,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0078800","Lat":"0.0288000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0288000],[0.0105100,0.0288000],[0.0105100,0.0306000],[0.0078800,0.0306000],[0.0078800,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0078800","Lat":"0.0306000","KPI":573,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0306000],[0.0105100,0.0306000],[0.0105100,0.0324000],[0.0078800,0.0324000],[0.0078800,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0078800","Lat":"0.0324000","KPI":963,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0324000],[0.0105100,0.0324000],[0.0105100,0.0342000],[0.0078800,0.0342000],[0.0078800,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0078800","Lat":"0.0342000","KPI":68,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0342000],[0.0105100,0.0342000],[0.0105100,0.0360000],[0.0078800,0.0360000],[0.0078800,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0078800","Lat":"0.0360000","KPI":114,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0360000],[0.0105100,0.0360000],[0.0105100,0.0378000],[0.0078800,0.0378000],[0.0078800,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0078800","Lat":"0.0378000","KPI":429,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0378000],[0.0105100,0.0378000],[0.0105100,0.0396000],[0.0078800,0.0396000],[0.0078800,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0078800","Lat":"0.0396000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0396000],[0.0105100,0.0396000],[0.0105100,0.0414000],[0.0078800,0.0414000],[0.0078800,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0078800","Lat":"0.0414000","KPI":907,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0414000],[0.0105100,0.0414000],[0.0105100,0.0432000],[0.0078800,0.0432000],[0.0078800,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0078800","Lat":"0.0432000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0432000],[0.0105100,0.0432000],[0.0105100,0.0450000],[0.0078800,0.0450000],[0.0078800,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0078800","Lat":"0.0450000","KPI":822,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0450000],[0.0105100,0.0450000],[0.0105100,0.0468000],[0.0078800,0.0468000],[0.0078800,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0078800","Lat":"0.0468000","KPI":522,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0468000],[0.0105100,0.0468000],[0.0105100,0.0486000],[0.0078800,0.0486000],[0.0078800,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0078800","Lat":"0.0486000","KPI":640,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0486000],[0.0105100,0.0486000],[0.0105100,0.0504000],[0.0078800,0.0504000],[0.0078800,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0078800","Lat":"0.0504000","KPI":283,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0504000],[0.0105100,0.0504000],[0.0105100,0.0522000],[0.0078800,0.0522000],[0.0078800,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0078800","Lat":"0.0522000","KPI":48,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0522000],[0.0105100,0.0522000],[0.0105100,0.0540000],[0.0078800,0.0540000],[0.0078800,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0078800","Lat":"0.0540000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0540000],[0.0105100,0.0540000],[0.0105100,0.0558000],[0.0078800,0.0558000],[0.0078800,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0078800","Lat":"0.0558000","KPI":923,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0078800,0.0558000],[0.0105100,0.0558000],[0.0105100,0.0576000],[0.0078800,0.0576000],[0.0078800,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0105100","Lat":"0.0000000","KPI":138,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0000000],[0.0131400,0.0000000],[0.0131400,0.0018000],[0.0105100,0.0018000],[0.0105100,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0105100","Lat":"0.0018000","KPI":734,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0018000],[0.0131400,0.0018000],[0.0131400,0.0036000],[0.0105100,0.0036000],[0.0105100,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0105100","Lat":"0.0036000","KPI":112,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0036000],[0.0131400,0.0036000],[0.0131400,0.0054000],[0.0105100,0.0054000],[0.0105100,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0105100","Lat":"0.0054000","KPI":506,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0054000],[0.0131400,0.0054000],[0.0131400,0.0072000],[0.0105100,0.0072000],[0.0105100,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0105100","Lat":"0.0072000","KPI":628,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0072000],[0.0131400,0.0072000],[0.0131400,0.0090000],[0.0105100,0.0090000],[0.0105100,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0105100","Lat":"0.0090000","KPI":177,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0090000],[0.0131400,0.0090000],[0.0131400,0.0108000],[0.0105100,0.0108000],[0.0105100,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0105100","Lat":"0.0108000","KPI":46,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0108000],[0.0131400,0.0108000],[0.0131400,0.0126000],[0.0105100,0.0126000],[0.0105100,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0105100","Lat":"0.0126000","KPI":850,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0126000],[0.0131400,0.0126000],[0.0131400,0.0144000],[0.0105100,0.0144000],[0.0105100,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0105100","Lat":"0.0144000","KPI":166,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0144000],[0.0131400,0.0144000],[0.0131400,0.0162000],[0.0105100,0.0162000],[0.0105100,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0105100","Lat":"0.0162000","KPI":178,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0162000],[0.0131400,0.0162000],[0.0131400,0.0180000],[0.0105100,0.0180000],[0.0105100,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0105100","Lat":"0.0180000","KPI":166,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0180000],[0.0131400,0.0180000],[0.0131400,0.0198000],[0.0105100,0.0198000],[0.0105100,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0105100","Lat":"0.0198000","KPI":889,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0198000],[0.0131400,0.0198000],[0.0131400,0.0216000],[0.0105100,0.0216000],[0.0105100,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0105100","Lat":"0.0216000","KPI":854,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0216000],[0.0131400,0.0216000],[0.0131400,0.0234000],[0.0105100,0.0234000],[0.0105100,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0105100","Lat":"0.0234000","KPI":230,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0234000],[0.0131400,0.0234000],[0.0131400,0.0252000],[0.0105100,0.0252000],[0.0105100,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0105100","Lat":"0.0252000","KPI":766,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0252000],[0.0131400,0.0252000],[0.0131400,0.0270000],[0.0105100,0.0270000],[0.0105100,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0105100","Lat":"0.0270000","KPI":937,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0270000],[0.0131400,0.0270000],[0.0131400,0.0288000],[0.0105100,0.0288000],[0.0105100,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0105100","Lat":"0.0288000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0288000],[0.0131400,0.0288000],[0.0131400,0.0306000],[0.0105100,0.0306000],[0.0105100,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0105100","Lat":"0.0306000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0306000],[0.0131400,0.0306000],[0.0131400,0.0324000],[0.0105100,0.0324000],[0.0105100,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0105100","Lat":"0.0324000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0324000],[0.0131400,0.0324000],[0.0131400,0.0342000],[0.0105100,0.0342000],[0.0105100,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0105100","Lat":"0.0342000","KPI":994,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0342000],[0.0131400,0.0342000],[0.0131400,0.0360000],[0.0105100,0.0360000],[0.0105100,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0105100","Lat":"0.0360000","KPI":921,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0360000],[0.0131400,0.0360000],[0.0131400,0.0378000],[0.0105100,0.0378000],[0.0105100,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0105100","Lat":"0.0378000","KPI":921,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0378000],[0.0131400,0.0378000],[0.0131400,0.0396000],[0.0105100,0.0396000],[0.0105100,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0105100","Lat":"0.0396000","KPI":344,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0396000],[0.0131400,0.0396000],[0.0131400,0.0414000],[0.0105100,0.0414000],[0.0105100,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0105100","Lat":"0.0414000","KPI":971,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0414000],[0.0131400,0.0414000],[0.0131400,0.0432000],[0.0105100,0.0432000],[0.0105100,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0105100","Lat":"0.0432000","KPI":158,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0432000],[0.0131400,0.0432000],[0.0131400,0.0450000],[0.0105100,0.0450000],[0.0105100,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0105100","Lat":"0.0450000","KPI":189,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0450000],[0.0131400,0.0450000],[0.0131400,0.0468000],[0.0105100,0.0468000],[0.0105100,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0105100","Lat":"0.0468000","KPI":624,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0468000],[0.0131400,0.0468000],[0.0131400,0.0486000],[0.0105100,0.0486000],[0.0105100,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0105100","Lat":"0.0486000","KPI":556,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0486000],[0.0131400,0.0486000],[0.0131400,0.0504000],[0.0105100,0.0504000],[0.0105100,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0105100","Lat":"0.0504000","KPI":637,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0504000],[0.0131400,0.0504000],[0.0131400,0.0522000],[0.0105100,0.0522000],[0.0105100,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0105100","Lat":"0.0522000","KPI":270,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0522000],[0.0131400,0.0522000],[0.0131400,0.0540000],[0.0105100,0.0540000],[0.0105100,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0105100","Lat":"0.0540000","KPI":706,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0540000],[0.0131400,0.0540000],[0.0131400,0.0558000],[0.0105100,0.0558000],[0.0105100,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0105100","Lat":"0.0558000","KPI":760,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0105100,0.0558000],[0.0131400,0.0558000],[0.0131400,0.0576000],[0.0105100,0.0576000],[0.0105100,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0131400","Lat":"0.0000000","KPI":134,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0000000],[0.0157700,0.0000000],[0.0157700,0.0018000],[0.0131400,0.0018000],[0.0131400,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0131400","Lat":"0.0018000","KPI":813,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0018000],[0.0157700,0.0018000],[0.0157700,0.0036000],[0.0131400,0.0036000],[0.0131400,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0131400","Lat":"0.0036000","KPI":892,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0036000],[0.0157700,0.0036000],[0.0157700,0.0054000],[0.0131400,0.0054000],[0.0131400,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0131400","Lat":"0.0054000","KPI":372,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0054000],[0.0157700,0.0054000],[0.0157700,0.0072000],[0.0131400,0.0072000],[0.0131400,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0131400","Lat":"0.0072000","KPI":780,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0072000],[0.0157700,0.0072000],[0.0157700,0.0090000],[0.0131400,0.0090000],[0.0131400,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0131400","Lat":"0.0090000","KPI":704,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0090000],[0.0157700,0.0090000],[0.0157700,0.0108000],[0.0131400,0.0108000],[0.0131400,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0131400","Lat":"0.0108000","KPI":951,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0108000],[0.0157700,0.0108000],[0.0157700,0.0126000],[0.0131400,0.0126000],[0.0131400,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0131400","Lat":"0.0126000","KPI":837,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0126000],[0.0157700,0.0126000],[0.0157700,0.0144000],[0.0131400,0.0144000],[0.0131400,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0131400","Lat":"0.0144000","KPI":36,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0144000],[0.0157700,0.0144000],[0.0157700,0.0162000],[0.0131400,0.0162000],[0.0131400,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0131400","Lat":"0.0162000","KPI":412,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0162000],[0.0157700,0.0162000],[0.0157700,0.0180000],[0.0131400,0.0180000],[0.0131400,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0131400","Lat":"0.0180000","KPI":646,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0180000],[0.0157700,0.0180000],[0.0157700,0.0198000],[0.0131400,0.0198000],[0.0131400,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0131400","Lat":"0.0198000","KPI":309,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0198000],[0.0157700,0.0198000],[0.0157700,0.0216000],[0.0131400,0.0216000],[0.0131400,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0131400","Lat":"0.0216000","KPI":258,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0216000],[0.0157700,0.0216000],[0.0157700,0.0234000],[0.0131400,0.0234000],[0.0131400,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0131400","Lat":"0.0234000","KPI":752,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0234000],[0.0157700,0.0234000],[0.0157700,0.0252000],[0.0131400,0.0252000],[0.0131400,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0131400","Lat":"0.0252000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0252000],[0.0157700,0.0252000],[0.0157700,0.0270000],[0.0131400,0.0270000],[0.0131400,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0131400","Lat":"0.0270000","KPI":885,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0270000],[0.0157700,0.0270000],[0.0157700,0.0288000],[0.0131400,0.0288000],[0.0131400,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0131400","Lat":"0.0288000","KPI":919,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0288000],[0.0157700,0.0288000],[0.0157700,0.0306000],[0.0131400,0.0306000],[0.0131400,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0131400","Lat":"0.0306000","KPI":155,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0306000],[0.0157700,0.0306000],[0.0157700,0.0324000],[0.0131400,0.0324000],[0.0131400,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0131400","Lat":"0.0324000","KPI":208,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0324000],[0.0157700,0.0324000],[0.0157700,0.0342000],[0.0131400,0.0342000],[0.0131400,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0131400","Lat":"0.0342000","KPI":270,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0342000],[0.0157700,0.0342000],[0.0157700,0.0360000],[0.0131400,0.0360000],[0.0131400,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0131400","Lat":"0.0360000","KPI":804,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0360000],[0.0157700,0.0360000],[0.0157700,0.0378000],[0.0131400,0.0378000],[0.0131400,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0131400","Lat":"0.0378000","KPI":849,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0378000],[0.0157700,0.0378000],[0.0157700,0.0396000],[0.0131400,0.0396000],[0.0131400,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0131400","Lat":"0.0396000","KPI":503,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0396000],[0.0157700,0.0396000],[0.0157700,0.0414000],[0.0131400,0.0414000],[0.0131400,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0131400","Lat":"0.0414000","KPI":383,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0414000],[0.0157700,0.0414000],[0.0157700,0.0432000],[0.0131400,0.0432000],[0.0131400,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0131400","Lat":"0.0432000","KPI":742,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0432000],[0.0157700,0.0432000],[0.0157700,0.0450000],[0.0131400,0.0450000],[0.0131400,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0131400","Lat":"0.0450000","KPI":577,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0450000],[0.0157700,0.0450000],[0.0157700,0.0468000],[0.0131400,0.0468000],[0.0131400,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0131400","Lat":"0.0468000","KPI":212,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0468000],[0.0157700,0.0468000],[0.0157700,0.0486000],[0.0131400,0.0486000],[0.0131400,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0131400","Lat":"0.0486000","KPI":649,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0486000],[0.0157700,0.0486000],[0.0157700,0.0504000],[0.0131400,0.0504000],[0.0131400,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0131400","Lat":"0.0504000","KPI":703,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0504000],[0.0157700,0.0504000],[0.0157700,0.0522000],[0.0131400,0.0522000],[0.0131400,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0131400","Lat":"0.0522000","KPI":721,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0522000],[0.0157700,0.0522000],[0.0157700,0.0540000],[0.0131400,0.0540000],[0.0131400,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0131400","Lat":"0.0540000","KPI":401,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0540000],[0.0157700,0.0540000],[0.0157700,0.0558000],[0.0131400,0.0558000],[0.0131400,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0131400","Lat":"0.0558000","KPI":987,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0131400,0.0558000],[0.0157700,0.0558000],[0.0157700,0.0576000],[0.0131400,0.0576000],[0.0131400,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0157600","Lat":"0.0000000","KPI":303,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0000000],[0.0183900,0.0000000],[0.0183900,0.0018000],[0.0157600,0.0018000],[0.0157600,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0157600","Lat":"0.0018000","KPI":964,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0018000],[0.0183900,0.0018000],[0.0183900,0.0036000],[0.0157600,0.0036000],[0.0157600,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0157600","Lat":"0.0036000","KPI":433,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0036000],[0.0183900,0.0036000],[0.0183900,0.0054000],[0.0157600,0.0054000],[0.0157600,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0157600","Lat":"0.0054000","KPI":749,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0054000],[0.0183900,0.0054000],[0.0183900,0.0072000],[0.0157600,0.0072000],[0.0157600,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0157600","Lat":"0.0072000","KPI":60,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0072000],[0.0183900,0.0072000],[0.0183900,0.0090000],[0.0157600,0.0090000],[0.0157600,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0157600","Lat":"0.0090000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0090000],[0.0183900,0.0090000],[0.0183900,0.0108000],[0.0157600,0.0108000],[0.0157600,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0157600","Lat":"0.0108000","KPI":157,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0108000],[0.0183900,0.0108000],[0.0183900,0.0126000],[0.0157600,0.0126000],[0.0157600,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0157600","Lat":"0.0126000","KPI":112,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0126000],[0.0183900,0.0126000],[0.0183900,0.0144000],[0.0157600,0.0144000],[0.0157600,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0157600","Lat":"0.0144000","KPI":954,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0144000],[0.0183900,0.0144000],[0.0183900,0.0162000],[0.0157600,0.0162000],[0.0157600,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0157600","Lat":"0.0162000","KPI":75,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0162000],[0.0183900,0.0162000],[0.0183900,0.0180000],[0.0157600,0.0180000],[0.0157600,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0157600","Lat":"0.0180000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0180000],[0.0183900,0.0180000],[0.0183900,0.0198000],[0.0157600,0.0198000],[0.0157600,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0157600","Lat":"0.0198000","KPI":674,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0198000],[0.0183900,0.0198000],[0.0183900,0.0216000],[0.0157600,0.0216000],[0.0157600,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0157600","Lat":"0.0216000","KPI":99,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0216000],[0.0183900,0.0216000],[0.0183900,0.0234000],[0.0157600,0.0234000],[0.0157600,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0157600","Lat":"0.0234000","KPI":725,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0234000],[0.0183900,0.0234000],[0.0183900,0.0252000],[0.0157600,0.0252000],[0.0157600,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0157600","Lat":"0.0252000","KPI":643,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0252000],[0.0183900,0.0252000],[0.0183900,0.0270000],[0.0157600,0.0270000],[0.0157600,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0157600","Lat":"0.0270000","KPI":260,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0270000],[0.0183900,0.0270000],[0.0183900,0.0288000],[0.0157600,0.0288000],[0.0157600,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0157600","Lat":"0.0288000","KPI":614,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0288000],[0.0183900,0.0288000],[0.0183900,0.0306000],[0.0157600,0.0306000],[0.0157600,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0157600","Lat":"0.0306000","KPI":721,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0306000],[0.0183900,0.0306000],[0.0183900,0.0324000],[0.0157600,0.0324000],[0.0157600,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0157600","Lat":"0.0324000","KPI":227,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0324000],[0.0183900,0.0324000],[0.0183900,0.0342000],[0.0157600,0.0342000],[0.0157600,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0157600","Lat":"0.0342000","KPI":196,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0342000],[0.0183900,0.0342000],[0.0183900,0.0360000],[0.0157600,0.0360000],[0.0157600,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0157600","Lat":"0.0360000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0360000],[0.0183900,0.0360000],[0.0183900,0.0378000],[0.0157600,0.0378000],[0.0157600,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0157600","Lat":"0.0378000","KPI":704,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0378000],[0.0183900,0.0378000],[0.0183900,0.0396000],[0.0157600,0.0396000],[0.0157600,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0157600","Lat":"0.0396000","KPI":283,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0396000],[0.0183900,0.0396000],[0.0183900,0.0414000],[0.0157600,0.0414000],[0.0157600,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0157600","Lat":"0.0414000","KPI":550,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0414000],[0.0183900,0.0414000],[0.0183900,0.0432000],[0.0157600,0.0432000],[0.0157600,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0157600","Lat":"0.0432000","KPI":553,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0432000],[0.0183900,0.0432000],[0.0183900,0.0450000],[0.0157600,0.0450000],[0.0157600,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0157600","Lat":"0.0450000","KPI":689,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0450000],[0.0183900,0.0450000],[0.0183900,0.0468000],[0.0157600,0.0468000],[0.0157600,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0157600","Lat":"0.0468000","KPI":318,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0468000],[0.0183900,0.0468000],[0.0183900,0.0486000],[0.0157600,0.0486000],[0.0157600,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0157600","Lat":"0.0486000","KPI":94,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0486000],[0.0183900,0.0486000],[0.0183900,0.0504000],[0.0157600,0.0504000],[0.0157600,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0157600","Lat":"0.0504000","KPI":747,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0504000],[0.0183900,0.0504000],[0.0183900,0.0522000],[0.0157600,0.0522000],[0.0157600,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0157600","Lat":"0.0522000","KPI":122,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0522000],[0.0183900,0.0522000],[0.0183900,0.0540000],[0.0157600,0.0540000],[0.0157600,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0157600","Lat":"0.0540000","KPI":262,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0540000],[0.0183900,0.0540000],[0.0183900,0.0558000],[0.0157600,0.0558000],[0.0157600,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0157600","Lat":"0.0558000","KPI":989,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0157600,0.0558000],[0.0183900,0.0558000],[0.0183900,0.0576000],[0.0157600,0.0576000],[0.0157600,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0183900","Lat":"0.0000000","KPI":467,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0000000],[0.0210200,0.0000000],[0.0210200,0.0018000],[0.0183900,0.0018000],[0.0183900,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0183900","Lat":"0.0018000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0018000],[0.0210200,0.0018000],[0.0210200,0.0036000],[0.0183900,0.0036000],[0.0183900,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0183900","Lat":"0.0036000","KPI":203,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0036000],[0.0210200,0.0036000],[0.0210200,0.0054000],[0.0183900,0.0054000],[0.0183900,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0183900","Lat":"0.0054000","KPI":463,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0054000],[0.0210200,0.0054000],[0.0210200,0.0072000],[0.0183900,0.0072000],[0.0183900,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0183900","Lat":"0.0072000","KPI":584,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0072000],[0.0210200,0.0072000],[0.0210200,0.0090000],[0.0183900,0.0090000],[0.0183900,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0183900","Lat":"0.0090000","KPI":13,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0090000],[0.0210200,0.0090000],[0.0210200,0.0108000],[0.0183900,0.0108000],[0.0183900,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0183900","Lat":"0.0108000","KPI":397,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0108000],[0.0210200,0.0108000],[0.0210200,0.0126000],[0.0183900,0.0126000],[0.0183900,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0183900","Lat":"0.0126000","KPI":952,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0126000],[0.0210200,0.0126000],[0.0210200,0.0144000],[0.0183900,0.0144000],[0.0183900,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0183900","Lat":"0.0144000","KPI":344,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0144000],[0.0210200,0.0144000],[0.0210200,0.0162000],[0.0183900,0.0162000],[0.0183900,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0183900","Lat":"0.0162000","KPI":586,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0162000],[0.0210200,0.0162000],[0.0210200,0.0180000],[0.0183900,0.0180000],[0.0183900,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0183900","Lat":"0.0180000","KPI":241,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0180000],[0.0210200,0.0180000],[0.0210200,0.0198000],[0.0183900,0.0198000],[0.0183900,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0183900","Lat":"0.0198000","KPI":500,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0198000],[0.0210200,0.0198000],[0.0210200,0.0216000],[0.0183900,0.0216000],[0.0183900,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0183900","Lat":"0.0216000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0216000],[0.0210200,0.0216000],[0.0210200,0.0234000],[0.0183900,0.0234000],[0.0183900,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0183900","Lat":"0.0234000","KPI":620,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0234000],[0.0210200,0.0234000],[0.0210200,0.0252000],[0.0183900,0.0252000],[0.0183900,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0183900","Lat":"0.0252000","KPI":156,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0252000],[0.0210200,0.0252000],[0.0210200,0.0270000],[0.0183900,0.0270000],[0.0183900,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0183900","Lat":"0.0270000","KPI":387,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0270000],[0.0210200,0.0270000],[0.0210200,0.0288000],[0.0183900,0.0288000],[0.0183900,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0183900","Lat":"0.0288000","KPI":602,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0288000],[0.0210200,0.0288000],[0.0210200,0.0306000],[0.0183900,0.0306000],[0.0183900,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0183900","Lat":"0.0306000","KPI":140,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0306000],[0.0210200,0.0306000],[0.0210200,0.0324000],[0.0183900,0.0324000],[0.0183900,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0183900","Lat":"0.0324000","KPI":553,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0324000],[0.0210200,0.0324000],[0.0210200,0.0342000],[0.0183900,0.0342000],[0.0183900,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0183900","Lat":"0.0342000","KPI":259,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0342000],[0.0210200,0.0342000],[0.0210200,0.0360000],[0.0183900,0.0360000],[0.0183900,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0183900","Lat":"0.0360000","KPI":749,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0360000],[0.0210200,0.0360000],[0.0210200,0.0378000],[0.0183900,0.0378000],[0.0183900,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0183900","Lat":"0.0378000","KPI":977,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0378000],[0.0210200,0.0378000],[0.0210200,0.0396000],[0.0183900,0.0396000],[0.0183900,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0183900","Lat":"0.0396000","KPI":354,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0396000],[0.0210200,0.0396000],[0.0210200,0.0414000],[0.0183900,0.0414000],[0.0183900,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0183900","Lat":"0.0414000","KPI":252,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0414000],[0.0210200,0.0414000],[0.0210200,0.0432000],[0.0183900,0.0432000],[0.0183900,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0183900","Lat":"0.0432000","KPI":28,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0432000],[0.0210200,0.0432000],[0.0210200,0.0450000],[0.0183900,0.0450000],[0.0183900,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0183900","Lat":"0.0450000","KPI":546,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0450000],[0.0210200,0.0450000],[0.0210200,0.0468000],[0.0183900,0.0468000],[0.0183900,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0183900","Lat":"0.0468000","KPI":726,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0468000],[0.0210200,0.0468000],[0.0210200,0.0486000],[0.0183900,0.0486000],[0.0183900,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0183900","Lat":"0.0486000","KPI":880,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0486000],[0.0210200,0.0486000],[0.0210200,0.0504000],[0.0183900,0.0504000],[0.0183900,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0183900","Lat":"0.0504000","KPI":816,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0504000],[0.0210200,0.0504000],[0.0210200,0.0522000],[0.0183900,0.0522000],[0.0183900,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0183900","Lat":"0.0522000","KPI":80,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0522000],[0.0210200,0.0522000],[0.0210200,0.0540000],[0.0183900,0.0540000],[0.0183900,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0183900","Lat":"0.0540000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0540000],[0.0210200,0.0540000],[0.0210200,0.0558000],[0.0183900,0.0558000],[0.0183900,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0183900","Lat":"0.0558000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0183900,0.0558000],[0.0210200,0.0558000],[0.0210200,0.0576000],[0.0183900,0.0576000],[0.0183900,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0210200","Lat":"0.0000000","KPI":985,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0000000],[0.0236500,0.0000000],[0.0236500,0.0018000],[0.0210200,0.0018000],[0.0210200,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0210200","Lat":"0.0018000","KPI":484,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0018000],[0.0236500,0.0018000],[0.0236500,0.0036000],[0.0210200,0.0036000],[0.0210200,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0210200","Lat":"0.0036000","KPI":926,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0036000],[0.0236500,0.0036000],[0.0236500,0.0054000],[0.0210200,0.0054000],[0.0210200,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0210200","Lat":"0.0054000","KPI":792,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0054000],[0.0236500,0.0054000],[0.0236500,0.0072000],[0.0210200,0.0072000],[0.0210200,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0210200","Lat":"0.0072000","KPI":5,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0072000],[0.0236500,0.0072000],[0.0236500,0.0090000],[0.0210200,0.0090000],[0.0210200,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0210200","Lat":"0.0090000","KPI":160,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0090000],[0.0236500,0.0090000],[0.0236500,0.0108000],[0.0210200,0.0108000],[0.0210200,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0210200","Lat":"0.0108000","KPI":786,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0108000],[0.0236500,0.0108000],[0.0236500,0.0126000],[0.0210200,0.0126000],[0.0210200,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0210200","Lat":"0.0126000","KPI":275,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0126000],[0.0236500,0.0126000],[0.0236500,0.0144000],[0.0210200,0.0144000],[0.0210200,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0210200","Lat":"0.0144000","KPI":419,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0144000],[0.0236500,0.0144000],[0.0236500,0.0162000],[0.0210200,0.0162000],[0.0210200,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0210200","Lat":"0.0162000","KPI":449,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0162000],[0.0236500,0.0162000],[0.0236500,0.0180000],[0.0210200,0.0180000],[0.0210200,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0210200","Lat":"0.0180000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0180000],[0.0236500,0.0180000],[0.0236500,0.0198000],[0.0210200,0.0198000],[0.0210200,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0210200","Lat":"0.0198000","KPI":386,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0198000],[0.0236500,0.0198000],[0.0236500,0.0216000],[0.0210200,0.0216000],[0.0210200,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0210200","Lat":"0.0216000","KPI":498,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0216000],[0.0236500,0.0216000],[0.0236500,0.0234000],[0.0210200,0.0234000],[0.0210200,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0210200","Lat":"0.0234000","KPI":558,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0234000],[0.0236500,0.0234000],[0.0236500,0.0252000],[0.0210200,0.0252000],[0.0210200,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0210200","Lat":"0.0252000","KPI":795,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0252000],[0.0236500,0.0252000],[0.0236500,0.0270000],[0.0210200,0.0270000],[0.0210200,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0210200","Lat":"0.0270000","KPI":368,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0270000],[0.0236500,0.0270000],[0.0236500,0.0288000],[0.0210200,0.0288000],[0.0210200,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0210200","Lat":"0.0288000","KPI":145,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0288000],[0.0236500,0.0288000],[0.0236500,0.0306000],[0.0210200,0.0306000],[0.0210200,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0210200","Lat":"0.0306000","KPI":111,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0306000],[0.0236500,0.0306000],[0.0236500,0.0324000],[0.0210200,0.0324000],[0.0210200,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0210200","Lat":"0.0324000","KPI":551,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0324000],[0.0236500,0.0324000],[0.0236500,0.0342000],[0.0210200,0.0342000],[0.0210200,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0210200","Lat":"0.0342000","KPI":662,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0342000],[0.0236500,0.0342000],[0.0236500,0.0360000],[0.0210200,0.0360000],[0.0210200,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0210200","Lat":"0.0360000","KPI":375,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0360000],[0.0236500,0.0360000],[0.0236500,0.0378000],[0.0210200,0.0378000],[0.0210200,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0210200","Lat":"0.0378000","KPI":690,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0378000],[0.0236500,0.0378000],[0.0236500,0.0396000],[0.0210200,0.0396000],[0.0210200,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0210200","Lat":"0.0396000","KPI":789,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0396000],[0.0236500,0.0396000],[0.0236500,0.0414000],[0.0210200,0.0414000],[0.0210200,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0210200","Lat":"0.0414000","KPI":181,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0414000],[0.0236500,0.0414000],[0.0236500,0.0432000],[0.0210200,0.0432000],[0.0210200,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0210200","Lat":"0.0432000","KPI":916,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0432000],[0.0236500,0.0432000],[0.0236500,0.0450000],[0.0210200,0.0450000],[0.0210200,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0210200","Lat":"0.0450000","KPI":15,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0450000],[0.0236500,0.0450000],[0.0236500,0.0468000],[0.0210200,0.0468000],[0.0210200,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0210200","Lat":"0.0468000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0468000],[0.0236500,0.0468000],[0.0236500,0.0486000],[0.0210200,0.0486000],[0.0210200,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0210200","Lat":"0.0486000","KPI":350,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0486000],[0.0236500,0.0486000],[0.0236500,0.0504000],[0.0210200,0.0504000],[0.0210200,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0210200","Lat":"0.0504000","KPI":768,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0504000],[0.0236500,0.0504000],[0.0236500,0.0522000],[0.0210200,0.0522000],[0.0210200,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0210200","Lat":"0.0522000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0522000],[0.0236500,0.0522000],[0.0236500,0.0540000],[0.0210200,0.0540000],[0.0210200,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0210200","Lat":"0.0540000","KPI":716,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0540000],[0.0236500,0.0540000],[0.0236500,0.0558000],[0.0210200,0.0558000],[0.0210200,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0210200","Lat":"0.0558000","KPI":951,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0210200,0.0558000],[0.0236500,0.0558000],[0.0236500,0.0576000],[0.0210200,0.0576000],[0.0210200,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0236400","Lat":"0.0000000","KPI":779,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0000000],[0.0262700,0.0000000],[0.0262700,0.0018000],[0.0236400,0.0018000],[0.0236400,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0236400","Lat":"0.0018000","KPI":136,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0018000],[0.0262700,0.0018000],[0.0262700,0.0036000],[0.0236400,0.0036000],[0.0236400,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0236400","Lat":"0.0036000","KPI":613,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0036000],[0.0262700,0.0036000],[0.0262700,0.0054000],[0.0236400,0.0054000],[0.0236400,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0236400","Lat":"0.0054000","KPI":0,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0054000],[0.0262700,0.0054000],[0.0262700,0.0072000],[0.0236400,0.0072000],[0.0236400,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0236400","Lat":"0.0072000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0072000],[0.0262700,0.0072000],[0.0262700,0.0090000],[0.0236400,0.0090000],[0.0236400,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0236400","Lat":"0.0090000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0090000],[0.0262700,0.0090000],[0.0262700,0.0108000],[0.0236400,0.0108000],[0.0236400,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0236400","Lat":"0.0108000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0108000],[0.0262700,0.0108000],[0.0262700,0.0126000],[0.0236400,0.0126000],[0.0236400,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0236400","Lat":"0.0126000","KPI":176,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0126000],[0.0262700,0.0126000],[0.0262700,0.0144000],[0.0236400,0.0144000],[0.0236400,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0236400","Lat":"0.0144000","KPI":219,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0144000],[0.0262700,0.0144000],[0.0262700,0.0162000],[0.0236400,0.0162000],[0.0236400,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0236400","Lat":"0.0162000","KPI":781,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0162000],[0.0262700,0.0162000],[0.0262700,0.0180000],[0.0236400,0.0180000],[0.0236400,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0236400","Lat":"0.0180000","KPI":561,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0180000],[0.0262700,0.0180000],[0.0262700,0.0198000],[0.0236400,0.0198000],[0.0236400,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0236400","Lat":"0.0198000","KPI":549,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0198000],[0.0262700,0.0198000],[0.0262700,0.0216000],[0.0236400,0.0216000],[0.0236400,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0236400","Lat":"0.0216000","KPI":31,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0216000],[0.0262700,0.0216000],[0.0262700,0.0234000],[0.0236400,0.0234000],[0.0236400,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0236400","Lat":"0.0234000","KPI":841,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0234000],[0.0262700,0.0234000],[0.0262700,0.0252000],[0.0236400,0.0252000],[0.0236400,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0236400","Lat":"0.0252000","KPI":140,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0252000],[0.0262700,0.0252000],[0.0262700,0.0270000],[0.0236400,0.0270000],[0.0236400,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0236400","Lat":"0.0270000","KPI":610,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0270000],[0.0262700,0.0270000],[0.0262700,0.0288000],[0.0236400,0.0288000],[0.0236400,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0236400","Lat":"0.0288000","KPI":586,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0288000],[0.0262700,0.0288000],[0.0262700,0.0306000],[0.0236400,0.0306000],[0.0236400,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0236400","Lat":"0.0306000","KPI":332,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0306000],[0.0262700,0.0306000],[0.0262700,0.0324000],[0.0236400,0.0324000],[0.0236400,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0236400","Lat":"0.0324000","KPI":884,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0324000],[0.0262700,0.0324000],[0.0262700,0.0342000],[0.0236400,0.0342000],[0.0236400,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0236400","Lat":"0.0342000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0342000],[0.0262700,0.0342000],[0.0262700,0.0360000],[0.0236400,0.0360000],[0.0236400,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0236400","Lat":"0.0360000","KPI":268,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0360000],[0.0262700,0.0360000],[0.0262700,0.0378000],[0.0236400,0.0378000],[0.0236400,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0236400","Lat":"0.0378000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0378000],[0.0262700,0.0378000],[0.0262700,0.0396000],[0.0236400,0.0396000],[0.0236400,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0236400","Lat":"0.0396000","KPI":89,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0396000],[0.0262700,0.0396000],[0.0262700,0.0414000],[0.0236400,0.0414000],[0.0236400,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0236400","Lat":"0.0414000","KPI":466,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0414000],[0.0262700,0.0414000],[0.0262700,0.0432000],[0.0236400,0.0432000],[0.0236400,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0236400","Lat":"0.0432000","KPI":304,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0432000],[0.0262700,0.0432000],[0.0262700,0.0450000],[0.0236400,0.0450000],[0.0236400,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0236400","Lat":"0.0450000","KPI":344,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0450000],[0.0262700,0.0450000],[0.0262700,0.0468000],[0.0236400,0.0468000],[0.0236400,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0236400","Lat":"0.0468000","KPI":499,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0468000],[0.0262700,0.0468000],[0.0262700,0.0486000],[0.0236400,0.0486000],[0.0236400,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0236400","Lat":"0.0486000","KPI":726,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0486000],[0.0262700,0.0486000],[0.0262700,0.0504000],[0.0236400,0.0504000],[0.0236400,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0236400","Lat":"0.0504000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0504000],[0.0262700,0.0504000],[0.0262700,0.0522000],[0.0236400,0.0522000],[0.0236400,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0236400","Lat":"0.0522000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0522000],[0.0262700,0.0522000],[0.0262700,0.0540000],[0.0236400,0.0540000],[0.0236400,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0236400","Lat":"0.0540000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0540000],[0.0262700,0.0540000],[0.0262700,0.0558000],[0.0236400,0.0558000],[0.0236400,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0236400","Lat":"0.0558000","KPI":359,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0236400,0.0558000],[0.0262700,0.0558000],[0.0262700,0.0576000],[0.0236400,0.0576000],[0.0236400,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0262700","Lat":"0.0000000","KPI":370,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0000000],[0.0289000,0.0000000],[0.0289000,0.0018000],[0.0262700,0.0018000],[0.0262700,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0262700","Lat":"0.0018000","KPI":489,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0018000],[0.0289000,0.0018000],[0.0289000,0.0036000],[0.0262700,0.0036000],[0.0262700,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0262700","Lat":"0.0036000","KPI":593,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0036000],[0.0289000,0.0036000],[0.0289000,0.0054000],[0.0262700,0.0054000],[0.0262700,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0262700","Lat":"0.0054000","KPI":862,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0054000],[0.0289000,0.0054000],[0.0289000,0.0072000],[0.0262700,0.0072000],[0.0262700,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0262700","Lat":"0.0072000","KPI":28,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0072000],[0.0289000,0.0072000],[0.0289000,0.0090000],[0.0262700,0.0090000],[0.0262700,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0262700","Lat":"0.0090000","KPI":783,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0090000],[0.0289000,0.0090000],[0.0289000,0.0108000],[0.0262700,0.0108000],[0.0262700,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0262700","Lat":"0.0108000","KPI":597,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0108000],[0.0289000,0.0108000],[0.0289000,0.0126000],[0.0262700,0.0126000],[0.0262700,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0262700","Lat":"0.0126000","KPI":456,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0126000],[0.0289000,0.0126000],[0.0289000,0.0144000],[0.0262700,0.0144000],[0.0262700,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0262700","Lat":"0.0144000","KPI":637,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0144000],[0.0289000,0.0144000],[0.0289000,0.0162000],[0.0262700,0.0162000],[0.0262700,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0262700","Lat":"0.0162000","KPI":843,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0162000],[0.0289000,0.0162000],[0.0289000,0.0180000],[0.0262700,0.0180000],[0.0262700,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0262700","Lat":"0.0180000","KPI":926,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0180000],[0.0289000,0.0180000],[0.0289000,0.0198000],[0.0262700,0.0198000],[0.0262700,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0262700","Lat":"0.0198000","KPI":352,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0198000],[0.0289000,0.0198000],[0.0289000,0.0216000],[0.0262700,0.0216000],[0.0262700,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0262700","Lat":"0.0216000","KPI":14,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0216000],[0.0289000,0.0216000],[0.0289000,0.0234000],[0.0262700,0.0234000],[0.0262700,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0262700","Lat":"0.0234000","KPI":480,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0234000],[0.0289000,0.0234000],[0.0289000,0.0252000],[0.0262700,0.0252000],[0.0262700,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0262700","Lat":"0.0252000","KPI":225,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0252000],[0.0289000,0.0252000],[0.0289000,0.0270000],[0.0262700,0.0270000],[0.0262700,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0262700","Lat":"0.0270000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0270000],[0.0289000,0.0270000],[0.0289000,0.0288000],[0.0262700,0.0288000],[0.0262700,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0262700","Lat":"0.0288000","KPI":380,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0288000],[0.0289000,0.0288000],[0.0289000,0.0306000],[0.0262700,0.0306000],[0.0262700,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0262700","Lat":"0.0306000","KPI":27,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0306000],[0.0289000,0.0306000],[0.0289000,0.0324000],[0.0262700,0.0324000],[0.0262700,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0262700","Lat":"0.0324000","KPI":553,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0324000],[0.0289000,0.0324000],[0.0289000,0.0342000],[0.0262700,0.0342000],[0.0262700,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0262700","Lat":"0.0342000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0342000],[0.0289000,0.0342000],[0.0289000,0.0360000],[0.0262700,0.0360000],[0.0262700,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0262700","Lat":"0.0360000","KPI":939,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0360000],[0.0289000,0.0360000],[0.0289000,0.0378000],[0.0262700,0.0378000],[0.0262700,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0262700","Lat":"0.0378000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0378000],[0.0289000,0.0378000],[0.0289000,0.0396000],[0.0262700,0.0396000],[0.0262700,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0262700","Lat":"0.0396000","KPI":220,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0396000],[0.0289000,0.0396000],[0.0289000,0.0414000],[0.0262700,0.0414000],[0.0262700,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0262700","Lat":"0.0414000","KPI":210,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0414000],[0.0289000,0.0414000],[0.0289000,0.0432000],[0.0262700,0.0432000],[0.0262700,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0262700","Lat":"0.0432000","KPI":649,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0432000],[0.0289000,0.0432000],[0.0289000,0.0450000],[0.0262700,0.0450000],[0.0262700,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0262700","Lat":"0.0450000","KPI":693,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0450000],[0.0289000,0.0450000],[0.0289000,0.0468000],[0.0262700,0.0468000],[0.0262700,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0262700","Lat":"0.0468000","KPI":449,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0468000],[0.0289000,0.0468000],[0.0289000,0.0486000],[0.0262700,0.0486000],[0.0262700,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0262700","Lat":"0.0486000","KPI":645,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0486000],[0.0289000,0.0486000],[0.0289000,0.0504000],[0.0262700,0.0504000],[0.0262700,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0262700","Lat":"0.0504000","KPI":6,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0504000],[0.0289000,0.0504000],[0.0289000,0.0522000],[0.0262700,0.0522000],[0.0262700,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0262700","Lat":"0.0522000","KPI":743,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0522000],[0.0289000,0.0522000],[0.0289000,0.0540000],[0.0262700,0.0540000],[0.0262700,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0262700","Lat":"0.0540000","KPI":797,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0540000],[0.0289000,0.0540000],[0.0289000,0.0558000],[0.0262700,0.0558000],[0.0262700,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0262700","Lat":"0.0558000","KPI":504,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0262700,0.0558000],[0.0289000,0.0558000],[0.0289000,0.0576000],[0.0262700,0.0576000],[0.0262700,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0289000","Lat":"0.0000000","KPI":907,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0000000],[0.0315300,0.0000000],[0.0315300,0.0018000],[0.0289000,0.0018000],[0.0289000,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0289000","Lat":"0.0018000","KPI":855,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0018000],[0.0315300,0.0018000],[0.0315300,0.0036000],[0.0289000,0.0036000],[0.0289000,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0289000","Lat":"0.0036000","KPI":542,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0036000],[0.0315300,0.0036000],[0.0315300,0.0054000],[0.0289000,0.0054000],[0.0289000,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0289000","Lat":"0.0054000","KPI":200,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0054000],[0.0315300,0.0054000],[0.0315300,0.0072000],[0.0289000,0.0072000],[0.0289000,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0289000","Lat":"0.0072000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0072000],[0.0315300,0.0072000],[0.0315300,0.0090000],[0.0289000,0.0090000],[0.0289000,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0289000","Lat":"0.0090000","KPI":2,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0090000],[0.0315300,0.0090000],[0.0315300,0.0108000],[0.0289000,0.0108000],[0.0289000,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0289000","Lat":"0.0108000","KPI":455,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0108000],[0.0315300,0.0108000],[0.0315300,0.0126000],[0.0289000,0.0126000],[0.0289000,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0289000","Lat":"0.0126000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0126000],[0.0315300,0.0126000],[0.0315300,0.0144000],[0.0289000,0.0144000],[0.0289000,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0289000","Lat":"0.0144000","KPI":453,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0144000],[0.0315300,0.0144000],[0.0315300,0.0162000],[0.0289000,0.0162000],[0.0289000,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0289000","Lat":"0.0162000","KPI":573,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0162000],[0.0315300,0.0162000],[0.0315300,0.0180000],[0.0289000,0.0180000],[0.0289000,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0289000","Lat":"0.0180000","KPI":668,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0180000],[0.0315300,0.0180000],[0.0315300,0.0198000],[0.0289000,0.0198000],[0.0289000,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0289000","Lat":"0.0198000","KPI":835,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0198000],[0.0315300,0.0198000],[0.0315300,0.0216000],[0.0289000,0.0216000],[0.0289000,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0289000","Lat":"0.0216000","KPI":848,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0216000],[0.0315300,0.0216000],[0.0315300,0.0234000],[0.0289000,0.0234000],[0.0289000,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0289000","Lat":"0.0234000","KPI":732,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0234000],[0.0315300,0.0234000],[0.0315300,0.0252000],[0.0289000,0.0252000],[0.0289000,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0289000","Lat":"0.0252000","KPI":570,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0252000],[0.0315300,0.0252000],[0.0315300,0.0270000],[0.0289000,0.0270000],[0.0289000,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0289000","Lat":"0.0270000","KPI":235,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0270000],[0.0315300,0.0270000],[0.0315300,0.0288000],[0.0289000,0.0288000],[0.0289000,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0289000","Lat":"0.0288000","KPI":128,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0288000],[0.0315300,0.0288000],[0.0315300,0.0306000],[0.0289000,0.0306000],[0.0289000,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0289000","Lat":"0.0306000","KPI":481,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0306000],[0.0315300,0.0306000],[0.0315300,0.0324000],[0.0289000,0.0324000],[0.0289000,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0289000","Lat":"0.0324000","KPI":922,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0324000],[0.0315300,0.0324000],[0.0315300,0.0342000],[0.0289000,0.0342000],[0.0289000,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0289000","Lat":"0.0342000","KPI":877,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0342000],[0.0315300,0.0342000],[0.0315300,0.0360000],[0.0289000,0.0360000],[0.0289000,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0289000","Lat":"0.0360000","KPI":48,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0360000],[0.0315300,0.0360000],[0.0315300,0.0378000],[0.0289000,0.0378000],[0.0289000,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0289000","Lat":"0.0378000","KPI":828,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0378000],[0.0315300,0.0378000],[0.0315300,0.0396000],[0.0289000,0.0396000],[0.0289000,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0289000","Lat":"0.0396000","KPI":641,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0396000],[0.0315300,0.0396000],[0.0315300,0.0414000],[0.0289000,0.0414000],[0.0289000,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0289000","Lat":"0.0414000","KPI":16,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0414000],[0.0315300,0.0414000],[0.0315300,0.0432000],[0.0289000,0.0432000],[0.0289000,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0289000","Lat":"0.0432000","KPI":813,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0432000],[0.0315300,0.0432000],[0.0315300,0.0450000],[0.0289000,0.0450000],[0.0289000,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0289000","Lat":"0.0450000","KPI":662,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0450000],[0.0315300,0.0450000],[0.0315300,0.0468000],[0.0289000,0.0468000],[0.0289000,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0289000","Lat":"0.0468000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0468000],[0.0315300,0.0468000],[0.0315300,0.0486000],[0.0289000,0.0486000],[0.0289000,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0289000","Lat":"0.0486000","KPI":685,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0486000],[0.0315300,0.0486000],[0.0315300,0.0504000],[0.0289000,0.0504000],[0.0289000,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0289000","Lat":"0.0504000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0504000],[0.0315300,0.0504000],[0.0315300,0.0522000],[0.0289000,0.0522000],[0.0289000,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0289000","Lat":"0.0522000","KPI":235,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0522000],[0.0315300,0.0522000],[0.0315300,0.0540000],[0.0289000,0.0540000],[0.0289000,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0289000","Lat":"0.0540000","KPI":705,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0540000],[0.0315300,0.0540000],[0.0315300,0.0558000],[0.0289000,0.0558000],[0.0289000,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0289000","Lat":"0.0558000","KPI":636,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0289000,0.0558000],[0.0315300,0.0558000],[0.0315300,0.0576000],[0.0289000,0.0576000],[0.0289000,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0315200","Lat":"0.0000000","KPI":200,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0000000],[0.0341500,0.0000000],[0.0341500,0.0018000],[0.0315200,0.0018000],[0.0315200,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0315200","Lat":"0.0018000","KPI":373,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0018000],[0.0341500,0.0018000],[0.0341500,0.0036000],[0.0315200,0.0036000],[0.0315200,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0315200","Lat":"0.0036000","KPI":520,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0036000],[0.0341500,0.0036000],[0.0341500,0.0054000],[0.0315200,0.0054000],[0.0315200,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0315200","Lat":"0.0054000","KPI":413,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0054000],[0.0341500,0.0054000],[0.0341500,0.0072000],[0.0315200,0.0072000],[0.0315200,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0315200","Lat":"0.0072000","KPI":314,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0072000],[0.0341500,0.0072000],[0.0341500,0.0090000],[0.0315200,0.0090000],[0.0315200,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0315200","Lat":"0.0090000","KPI":785,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0090000],[0.0341500,0.0090000],[0.0341500,0.0108000],[0.0315200,0.0108000],[0.0315200,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0315200","Lat":"0.0108000","KPI":402,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0108000],[0.0341500,0.0108000],[0.0341500,0.0126000],[0.0315200,0.0126000],[0.0315200,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0315200","Lat":"0.0126000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0126000],[0.0341500,0.0126000],[0.0341500,0.0144000],[0.0315200,0.0144000],[0.0315200,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0315200","Lat":"0.0144000","KPI":364,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0144000],[0.0341500,0.0144000],[0.0341500,0.0162000],[0.0315200,0.0162000],[0.0315200,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0315200","Lat":"0.0162000","KPI":118,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0162000],[0.0341500,0.0162000],[0.0341500,0.0180000],[0.0315200,0.0180000],[0.0315200,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0315200","Lat":"0.0180000","KPI":321,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0180000],[0.0341500,0.0180000],[0.0341500,0.0198000],[0.0315200,0.0198000],[0.0315200,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0315200","Lat":"0.0198000","KPI":250,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0198000],[0.0341500,0.0198000],[0.0341500,0.0216000],[0.0315200,0.0216000],[0.0315200,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0315200","Lat":"0.0216000","KPI":355,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0216000],[0.0341500,0.0216000],[0.0341500,0.0234000],[0.0315200,0.0234000],[0.0315200,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0315200","Lat":"0.0234000","KPI":625,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0234000],[0.0341500,0.0234000],[0.0341500,0.0252000],[0.0315200,0.0252000],[0.0315200,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0315200","Lat":"0.0252000","KPI":211,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0252000],[0.0341500,0.0252000],[0.0341500,0.0270000],[0.0315200,0.0270000],[0.0315200,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0315200","Lat":"0.0270000","KPI":752,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0270000],[0.0341500,0.0270000],[0.0341500,0.0288000],[0.0315200,0.0288000],[0.0315200,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0315200","Lat":"0.0288000","KPI":606,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0288000],[0.0341500,0.0288000],[0.0341500,0.0306000],[0.0315200,0.0306000],[0.0315200,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0315200","Lat":"0.0306000","KPI":568,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0306000],[0.0341500,0.0306000],[0.0341500,0.0324000],[0.0315200,0.0324000],[0.0315200,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0315200","Lat":"0.0324000","KPI":751,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0324000],[0.0341500,0.0324000],[0.0341500,0.0342000],[0.0315200,0.0342000],[0.0315200,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0315200","Lat":"0.0342000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0342000],[0.0341500,0.0342000],[0.0341500,0.0360000],[0.0315200,0.0360000],[0.0315200,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0315200","Lat":"0.0360000","KPI":433,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0360000],[0.0341500,0.0360000],[0.0341500,0.0378000],[0.0315200,0.0378000],[0.0315200,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0315200","Lat":"0.0378000","KPI":756,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0378000],[0.0341500,0.0378000],[0.0341500,0.0396000],[0.0315200,0.0396000],[0.0315200,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0315200","Lat":"0.0396000","KPI":335,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0396000],[0.0341500,0.0396000],[0.0341500,0.0414000],[0.0315200,0.0414000],[0.0315200,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0315200","Lat":"0.0414000","KPI":523,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0414000],[0.0341500,0.0414000],[0.0341500,0.0432000],[0.0315200,0.0432000],[0.0315200,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0315200","Lat":"0.0432000","KPI":86,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0432000],[0.0341500,0.0432000],[0.0341500,0.0450000],[0.0315200,0.0450000],[0.0315200,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0315200","Lat":"0.0450000","KPI":824,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0450000],[0.0341500,0.0450000],[0.0341500,0.0468000],[0.0315200,0.0468000],[0.0315200,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0315200","Lat":"0.0468000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0468000],[0.0341500,0.0468000],[0.0341500,0.0486000],[0.0315200,0.0486000],[0.0315200,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0315200","Lat":"0.0486000","KPI":901,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0486000],[0.0341500,0.0486000],[0.0341500,0.0504000],[0.0315200,0.0504000],[0.0315200,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0315200","Lat":"0.0504000","KPI":760,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0504000],[0.0341500,0.0504000],[0.0341500,0.0522000],[0.0315200,0.0522000],[0.0315200,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0315200","Lat":"0.0522000","KPI":152,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0522000],[0.0341500,0.0522000],[0.0341500,0.0540000],[0.0315200,0.0540000],[0.0315200,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0315200","Lat":"0.0540000","KPI":756,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0540000],[0.0341500,0.0540000],[0.0341500,0.0558000],[0.0315200,0.0558000],[0.0315200,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0315200","Lat":"0.0558000","KPI":172,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0315200,0.0558000],[0.0341500,0.0558000],[0.0341500,0.0576000],[0.0315200,0.0576000],[0.0315200,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0341500","Lat":"0.0000000","KPI":748,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0000000],[0.0367800,0.0000000],[0.0367800,0.0018000],[0.0341500,0.0018000],[0.0341500,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0341500","Lat":"0.0018000","KPI":536,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0018000],[0.0367800,0.0018000],[0.0367800,0.0036000],[0.0341500,0.0036000],[0.0341500,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0341500","Lat":"0.0036000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0036000],[0.0367800,0.0036000],[0.0367800,0.0054000],[0.0341500,0.0054000],[0.0341500,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0341500","Lat":"0.0054000","KPI":6,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0054000],[0.0367800,0.0054000],[0.0367800,0.0072000],[0.0341500,0.0072000],[0.0341500,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0341500","Lat":"0.0072000","KPI":52,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0072000],[0.0367800,0.0072000],[0.0367800,0.0090000],[0.0341500,0.0090000],[0.0341500,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0341500","Lat":"0.0090000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0090000],[0.0367800,0.0090000],[0.0367800,0.0108000],[0.0341500,0.0108000],[0.0341500,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0341500","Lat":"0.0108000","KPI":946,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0108000],[0.0367800,0.0108000],[0.0367800,0.0126000],[0.0341500,0.0126000],[0.0341500,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0341500","Lat":"0.0126000","KPI":300,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0126000],[0.0367800,0.0126000],[0.0367800,0.0144000],[0.0341500,0.0144000],[0.0341500,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0341500","Lat":"0.0144000","KPI":17,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0144000],[0.0367800,0.0144000],[0.0367800,0.0162000],[0.0341500,0.0162000],[0.0341500,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0341500","Lat":"0.0162000","KPI":363,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0162000],[0.0367800,0.0162000],[0.0367800,0.0180000],[0.0341500,0.0180000],[0.0341500,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0341500","Lat":"0.0180000","KPI":337,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0180000],[0.0367800,0.0180000],[0.0367800,0.0198000],[0.0341500,0.0198000],[0.0341500,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0341500","Lat":"0.0198000","KPI":587,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0198000],[0.0367800,0.0198000],[0.0367800,0.0216000],[0.0341500,0.0216000],[0.0341500,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0341500","Lat":"0.0216000","KPI":810,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0216000],[0.0367800,0.0216000],[0.0367800,0.0234000],[0.0341500,0.0234000],[0.0341500,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0341500","Lat":"0.0234000","KPI":495,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0234000],[0.0367800,0.0234000],[0.0367800,0.0252000],[0.0341500,0.0252000],[0.0341500,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0341500","Lat":"0.0252000","KPI":734,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0252000],[0.0367800,0.0252000],[0.0367800,0.0270000],[0.0341500,0.0270000],[0.0341500,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0341500","Lat":"0.0270000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0270000],[0.0367800,0.0270000],[0.0367800,0.0288000],[0.0341500,0.0288000],[0.0341500,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0341500","Lat":"0.0288000","KPI":794,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0288000],[0.0367800,0.0288000],[0.0367800,0.0306000],[0.0341500,0.0306000],[0.0341500,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0341500","Lat":"0.0306000","KPI":284,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0306000],[0.0367800,0.0306000],[0.0367800,0.0324000],[0.0341500,0.0324000],[0.0341500,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0341500","Lat":"0.0324000","KPI":226,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0324000],[0.0367800,0.0324000],[0.0367800,0.0342000],[0.0341500,0.0342000],[0.0341500,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0341500","Lat":"0.0342000","KPI":92,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0342000],[0.0367800,0.0342000],[0.0367800,0.0360000],[0.0341500,0.0360000],[0.0341500,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0341500","Lat":"0.0360000","KPI":143,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0360000],[0.0367800,0.0360000],[0.0367800,0.0378000],[0.0341500,0.0378000],[0.0341500,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0341500","Lat":"0.0378000","KPI":806,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0378000],[0.0367800,0.0378000],[0.0367800,0.0396000],[0.0341500,0.0396000],[0.0341500,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0341500","Lat":"0.0396000","KPI":842,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0396000],[0.0367800,0.0396000],[0.0367800,0.0414000],[0.0341500,0.0414000],[0.0341500,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0341500","Lat":"0.0414000","KPI":934,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0414000],[0.0367800,0.0414000],[0.0367800,0.0432000],[0.0341500,0.0432000],[0.0341500,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0341500","Lat":"0.0432000","KPI":228,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0432000],[0.0367800,0.0432000],[0.0367800,0.0450000],[0.0341500,0.0450000],[0.0341500,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0341500","Lat":"0.0450000","KPI":258,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0450000],[0.0367800,0.0450000],[0.0367800,0.0468000],[0.0341500,0.0468000],[0.0341500,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0341500","Lat":"0.0468000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0468000],[0.0367800,0.0468000],[0.0367800,0.0486000],[0.0341500,0.0486000],[0.0341500,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0341500","Lat":"0.0486000","KPI":354,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0486000],[0.0367800,0.0486000],[0.0367800,0.0504000],[0.0341500,0.0504000],[0.0341500,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0341500","Lat":"0.0504000","KPI":622,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0504000],[0.0367800,0.0504000],[0.0367800,0.0522000],[0.0341500,0.0522000],[0.0341500,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0341500","Lat":"0.0522000","KPI":556,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0522000],[0.0367800,0.0522000],[0.0367800,0.0540000],[0.0341500,0.0540000],[0.0341500,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0341500","Lat":"0.0540000","KPI":573,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0540000],[0.0367800,0.0540000],[0.0367800,0.0558000],[0.0341500,0.0558000],[0.0341500,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0341500","Lat":"0.0558000","KPI":228,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0341500,0.0558000],[0.0367800,0.0558000],[0.0367800,0.0576000],[0.0341500,0.0576000],[0.0341500,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0367800","Lat":"0.0000000","KPI":773,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0000000],[0.0394100,0.0000000],[0.0394100,0.0018000],[0.0367800,0.0018000],[0.0367800,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0367800","Lat":"0.0018000","KPI":725,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0018000],[0.0394100,0.0018000],[0.0394100,0.0036000],[0.0367800,0.0036000],[0.0367800,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0367800","Lat":"0.0036000","KPI":882,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0036000],[0.0394100,0.0036000],[0.0394100,0.0054000],[0.0367800,0.0054000],[0.0367800,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0367800","Lat":"0.0054000","KPI":126,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0054000],[0.0394100,0.0054000],[0.0394100,0.0072000],[0.0367800,0.0072000],[0.0367800,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0367800","Lat":"0.0072000","KPI":666,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0072000],[0.0394100,0.0072000],[0.0394100,0.0090000],[0.0367800,0.0090000],[0.0367800,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0367800","Lat":"0.0090000","KPI":455,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0090000],[0.0394100,0.0090000],[0.0394100,0.0108000],[0.0367800,0.0108000],[0.0367800,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0367800","Lat":"0.0108000","KPI":166,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0108000],[0.0394100,0.0108000],[0.0394100,0.0126000],[0.0367800,0.0126000],[0.0367800,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0367800","Lat":"0.0126000","KPI":795,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0126000],[0.0394100,0.0126000],[0.0394100,0.0144000],[0.0367800,0.0144000],[0.0367800,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0367800","Lat":"0.0144000","KPI":38,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0144000],[0.0394100,0.0144000],[0.0394100,0.0162000],[0.0367800,0.0162000],[0.0367800,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0367800","Lat":"0.0162000","KPI":460,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0162000],[0.0394100,0.0162000],[0.0394100,0.0180000],[0.0367800,0.0180000],[0.0367800,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0367800","Lat":"0.0180000","KPI":119,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0180000],[0.0394100,0.0180000],[0.0394100,0.0198000],[0.0367800,0.0198000],[0.0367800,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0367800","Lat":"0.0198000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0198000],[0.0394100,0.0198000],[0.0394100,0.0216000],[0.0367800,0.0216000],[0.0367800,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0367800","Lat":"0.0216000","KPI":971,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0216000],[0.0394100,0.0216000],[0.0394100,0.0234000],[0.0367800,0.0234000],[0.0367800,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0367800","Lat":"0.0234000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0234000],[0.0394100,0.0234000],[0.0394100,0.0252000],[0.0367800,0.0252000],[0.0367800,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0367800","Lat":"0.0252000","KPI":304,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0252000],[0.0394100,0.0252000],[0.0394100,0.0270000],[0.0367800,0.0270000],[0.0367800,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0367800","Lat":"0.0270000","KPI":472,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0270000],[0.0394100,0.0270000],[0.0394100,0.0288000],[0.0367800,0.0288000],[0.0367800,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0367800","Lat":"0.0288000","KPI":914,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0288000],[0.0394100,0.0288000],[0.0394100,0.0306000],[0.0367800,0.0306000],[0.0367800,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0367800","Lat":"0.0306000","KPI":279,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0306000],[0.0394100,0.0306000],[0.0394100,0.0324000],[0.0367800,0.0324000],[0.0367800,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0367800","Lat":"0.0324000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0324000],[0.0394100,0.0324000],[0.0394100,0.0342000],[0.0367800,0.0342000],[0.0367800,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0367800","Lat":"0.0342000","KPI":938,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0342000],[0.0394100,0.0342000],[0.0394100,0.0360000],[0.0367800,0.0360000],[0.0367800,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0367800","Lat":"0.0360000","KPI":469,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0360000],[0.0394100,0.0360000],[0.0394100,0.0378000],[0.0367800,0.0378000],[0.0367800,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0367800","Lat":"0.0378000","KPI":350,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0378000],[0.0394100,0.0378000],[0.0394100,0.0396000],[0.0367800,0.0396000],[0.0367800,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0367800","Lat":"0.0396000","KPI":289,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0396000],[0.0394100,0.0396000],[0.0394100,0.0414000],[0.0367800,0.0414000],[0.0367800,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0367800","Lat":"0.0414000","KPI":548,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0414000],[0.0394100,0.0414000],[0.0394100,0.0432000],[0.0367800,0.0432000],[0.0367800,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0367800","Lat":"0.0432000","KPI":490,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0432000],[0.0394100,0.0432000],[0.0394100,0.0450000],[0.0367800,0.0450000],[0.0367800,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0367800","Lat":"0.0450000","KPI":79,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0450000],[0.0394100,0.0450000],[0.0394100,0.0468000],[0.0367800,0.0468000],[0.0367800,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0367800","Lat":"0.0468000","KPI":153,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0468000],[0.0394100,0.0468000],[0.0394100,0.0486000],[0.0367800,0.0486000],[0.0367800,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0367800","Lat":"0.0486000","KPI":642,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0486000],[0.0394100,0.0486000],[0.0394100,0.0504000],[0.0367800,0.0504000],[0.0367800,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0367800","Lat":"0.0504000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0504000],[0.0394100,0.0504000],[0.0394100,0.0522000],[0.0367800,0.0522000],[0.0367800,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0367800","Lat":"0.0522000","KPI":110,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0522000],[0.0394100,0.0522000],[0.0394100,0.0540000],[0.0367800,0.0540000],[0.0367800,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0367800","Lat":"0.0540000","KPI":371,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0540000],[0.0394100,0.0540000],[0.0394100,0.0558000],[0.0367800,0.0558000],[0.0367800,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0367800","Lat":"0.0558000","KPI":147,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0367800,0.0558000],[0.0394100,0.0558000],[0.0394100,0.0576000],[0.0367800,0.0576000],[0.0367800,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0394100","Lat":"0.0000000","KPI":250,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0000000],[0.0420400,0.0000000],[0.0420400,0.0018000],[0.0394100,0.0018000],[0.0394100,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0394100","Lat":"0.0018000","KPI":740,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0018000],[0.0420400,0.0018000],[0.0420400,0.0036000],[0.0394100,0.0036000],[0.0394100,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0394100","Lat":"0.0036000","KPI":567,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0036000],[0.0420400,0.0036000],[0.0420400,0.0054000],[0.0394100,0.0054000],[0.0394100,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0394100","Lat":"0.0054000","KPI":89,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0054000],[0.0420400,0.0054000],[0.0420400,0.0072000],[0.0394100,0.0072000],[0.0394100,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0394100","Lat":"0.0072000","KPI":454,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0072000],[0.0420400,0.0072000],[0.0420400,0.0090000],[0.0394100,0.0090000],[0.0394100,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0394100","Lat":"0.0090000","KPI":464,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0090000],[0.0420400,0.0090000],[0.0420400,0.0108000],[0.0394100,0.0108000],[0.0394100,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0394100","Lat":"0.0108000","KPI":745,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0108000],[0.0420400,0.0108000],[0.0420400,0.0126000],[0.0394100,0.0126000],[0.0394100,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0394100","Lat":"0.0126000","KPI":845,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0126000],[0.0420400,0.0126000],[0.0420400,0.0144000],[0.0394100,0.0144000],[0.0394100,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0394100","Lat":"0.0144000","KPI":64,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0144000],[0.0420400,0.0144000],[0.0420400,0.0162000],[0.0394100,0.0162000],[0.0394100,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0394100","Lat":"0.0162000","KPI":368,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0162000],[0.0420400,0.0162000],[0.0420400,0.0180000],[0.0394100,0.0180000],[0.0394100,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0394100","Lat":"0.0180000","KPI":54,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0180000],[0.0420400,0.0180000],[0.0420400,0.0198000],[0.0394100,0.0198000],[0.0394100,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0394100","Lat":"0.0198000","KPI":885,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0198000],[0.0420400,0.0198000],[0.0420400,0.0216000],[0.0394100,0.0216000],[0.0394100,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0394100","Lat":"0.0216000","KPI":113,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0216000],[0.0420400,0.0216000],[0.0420400,0.0234000],[0.0394100,0.0234000],[0.0394100,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0394100","Lat":"0.0234000","KPI":216,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0234000],[0.0420400,0.0234000],[0.0420400,0.0252000],[0.0394100,0.0252000],[0.0394100,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0394100","Lat":"0.0252000","KPI":697,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0252000],[0.0420400,0.0252000],[0.0420400,0.0270000],[0.0394100,0.0270000],[0.0394100,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0394100","Lat":"0.0270000","KPI":997,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0270000],[0.0420400,0.0270000],[0.0420400,0.0288000],[0.0394100,0.0288000],[0.0394100,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0394100","Lat":"0.0288000","KPI":455,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0288000],[0.0420400,0.0288000],[0.0420400,0.0306000],[0.0394100,0.0306000],[0.0394100,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0394100","Lat":"0.0306000","KPI":384,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0306000],[0.0420400,0.0306000],[0.0420400,0.0324000],[0.0394100,0.0324000],[0.0394100,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0394100","Lat":"0.0324000","KPI":193,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0324000],[0.0420400,0.0324000],[0.0420400,0.0342000],[0.0394100,0.0342000],[0.0394100,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0394100","Lat":"0.0342000","KPI":264,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0342000],[0.0420400,0.0342000],[0.0420400,0.0360000],[0.0394100,0.0360000],[0.0394100,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0394100","Lat":"0.0360000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0360000],[0.0420400,0.0360000],[0.0420400,0.0378000],[0.0394100,0.0378000],[0.0394100,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0394100","Lat":"0.0378000","KPI":6,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0378000],[0.0420400,0.0378000],[0.0420400,0.0396000],[0.0394100,0.0396000],[0.0394100,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0394100","Lat":"0.0396000","KPI":423,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0396000],[0.0420400,0.0396000],[0.0420400,0.0414000],[0.0394100,0.0414000],[0.0394100,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0394100","Lat":"0.0414000","KPI":291,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0414000],[0.0420400,0.0414000],[0.0420400,0.0432000],[0.0394100,0.0432000],[0.0394100,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0394100","Lat":"0.0432000","KPI":653,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0432000],[0.0420400,0.0432000],[0.0420400,0.0450000],[0.0394100,0.0450000],[0.0394100,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0394100","Lat":"0.0450000","KPI":966,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0450000],[0.0420400,0.0450000],[0.0420400,0.0468000],[0.0394100,0.0468000],[0.0394100,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0394100","Lat":"0.0468000","KPI":155,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0468000],[0.0420400,0.0468000],[0.0420400,0.0486000],[0.0394100,0.0486000],[0.0394100,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0394100","Lat":"0.0486000","KPI":434,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0486000],[0.0420400,0.0486000],[0.0420400,0.0504000],[0.0394100,0.0504000],[0.0394100,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0394100","Lat":"0.0504000","KPI":282,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0504000],[0.0420400,0.0504000],[0.0420400,0.0522000],[0.0394100,0.0522000],[0.0394100,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0394100","Lat":"0.0522000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0522000],[0.0420400,0.0522000],[0.0420400,0.0540000],[0.0394100,0.0540000],[0.0394100,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0394100","Lat":"0.0540000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0540000],[0.0420400,0.0540000],[0.0420400,0.0558000],[0.0394100,0.0558000],[0.0394100,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0394100","Lat":"0.0558000","KPI":33,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0394100,0.0558000],[0.0420400,0.0558000],[0.0420400,0.0576000],[0.0394100,0.0576000],[0.0394100,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0420300","Lat":"0.0000000","KPI":941,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0000000],[0.0446600,0.0000000],[0.0446600,0.0018000],[0.0420300,0.0018000],[0.0420300,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0420300","Lat":"0.0018000","KPI":331,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0018000],[0.0446600,0.0018000],[0.0446600,0.0036000],[0.0420300,0.0036000],[0.0420300,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0420300","Lat":"0.0036000","KPI":942,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0036000],[0.0446600,0.0036000],[0.0446600,0.0054000],[0.0420300,0.0054000],[0.0420300,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0420300","Lat":"0.0054000","KPI":912,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0054000],[0.0446600,0.0054000],[0.0446600,0.0072000],[0.0420300,0.0072000],[0.0420300,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0420300","Lat":"0.0072000","KPI":504,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0072000],[0.0446600,0.0072000],[0.0446600,0.0090000],[0.0420300,0.0090000],[0.0420300,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0420300","Lat":"0.0090000","KPI":344,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0090000],[0.0446600,0.0090000],[0.0446600,0.0108000],[0.0420300,0.0108000],[0.0420300,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0420300","Lat":"0.0108000","KPI":1,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0108000],[0.0446600,0.0108000],[0.0446600,0.0126000],[0.0420300,0.0126000],[0.0420300,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0420300","Lat":"0.0126000","KPI":640,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0126000],[0.0446600,0.0126000],[0.0446600,0.0144000],[0.0420300,0.0144000],[0.0420300,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0420300","Lat":"0.0144000","KPI":776,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0144000],[0.0446600,0.0144000],[0.0446600,0.0162000],[0.0420300,0.0162000],[0.0420300,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0420300","Lat":"0.0162000","KPI":374,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0162000],[0.0446600,0.0162000],[0.0446600,0.0180000],[0.0420300,0.0180000],[0.0420300,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0420300","Lat":"0.0180000","KPI":540,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0180000],[0.0446600,0.0180000],[0.0446600,0.0198000],[0.0420300,0.0198000],[0.0420300,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0420300","Lat":"0.0198000","KPI":315,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0198000],[0.0446600,0.0198000],[0.0446600,0.0216000],[0.0420300,0.0216000],[0.0420300,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0420300","Lat":"0.0216000","KPI":56,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0216000],[0.0446600,0.0216000],[0.0446600,0.0234000],[0.0420300,0.0234000],[0.0420300,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0420300","Lat":"0.0234000","KPI":44,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0234000],[0.0446600,0.0234000],[0.0446600,0.0252000],[0.0420300,0.0252000],[0.0420300,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0420300","Lat":"0.0252000","KPI":332,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0252000],[0.0446600,0.0252000],[0.0446600,0.0270000],[0.0420300,0.0270000],[0.0420300,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0420300","Lat":"0.0270000","KPI":866,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0270000],[0.0446600,0.0270000],[0.0446600,0.0288000],[0.0420300,0.0288000],[0.0420300,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0420300","Lat":"0.0288000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0288000],[0.0446600,0.0288000],[0.0446600,0.0306000],[0.0420300,0.0306000],[0.0420300,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0420300","Lat":"0.0306000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0306000],[0.0446600,0.0306000],[0.0446600,0.0324000],[0.0420300,0.0324000],[0.0420300,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0420300","Lat":"0.0324000","KPI":477,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0324000],[0.0446600,0.0324000],[0.0446600,0.0342000],[0.0420300,0.0342000],[0.0420300,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0420300","Lat":"0.0342000","KPI":138,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0342000],[0.0446600,0.0342000],[0.0446600,0.0360000],[0.0420300,0.0360000],[0.0420300,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0420300","Lat":"0.0360000","KPI":530,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0360000],[0.0446600,0.0360000],[0.0446600,0.0378000],[0.0420300,0.0378000],[0.0420300,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0420300","Lat":"0.0378000","KPI":177,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0378000],[0.0446600,0.0378000],[0.0446600,0.0396000],[0.0420300,0.0396000],[0.0420300,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0420300","Lat":"0.0396000","KPI":639,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0396000],[0.0446600,0.0396000],[0.0446600,0.0414000],[0.0420300,0.0414000],[0.0420300,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0420300","Lat":"0.0414000","KPI":251,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0414000],[0.0446600,0.0414000],[0.0446600,0.0432000],[0.0420300,0.0432000],[0.0420300,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0420300","Lat":"0.0432000","KPI":55,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0432000],[0.0446600,0.0432000],[0.0446600,0.0450000],[0.0420300,0.0450000],[0.0420300,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0420300","Lat":"0.0450000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0450000],[0.0446600,0.0450000],[0.0446600,0.0468000],[0.0420300,0.0468000],[0.0420300,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0420300","Lat":"0.0468000","KPI":296,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0468000],[0.0446600,0.0468000],[0.0446600,0.0486000],[0.0420300,0.0486000],[0.0420300,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0420300","Lat":"0.0486000","KPI":997,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0486000],[0.0446600,0.0486000],[0.0446600,0.0504000],[0.0420300,0.0504000],[0.0420300,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0420300","Lat":"0.0504000","KPI":979,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0504000],[0.0446600,0.0504000],[0.0446600,0.0522000],[0.0420300,0.0522000],[0.0420300,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0420300","Lat":"0.0522000","KPI":522,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0522000],[0.0446600,0.0522000],[0.0446600,0.0540000],[0.0420300,0.0540000],[0.0420300,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0420300","Lat":"0.0540000","KPI":944,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0540000],[0.0446600,0.0540000],[0.0446600,0.0558000],[0.0420300,0.0558000],[0.0420300,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0420300","Lat":"0.0558000","KPI":282,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0420300,0.0558000],[0.0446600,0.0558000],[0.0446600,0.0576000],[0.0420300,0.0576000],[0.0420300,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0446600","Lat":"0.0000000","KPI":420,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0000000],[0.0472900,0.0000000],[0.0472900,0.0018000],[0.0446600,0.0018000],[0.0446600,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0446600","Lat":"0.0018000","KPI":727,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0018000],[0.0472900,0.0018000],[0.0472900,0.0036000],[0.0446600,0.0036000],[0.0446600,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0446600","Lat":"0.0036000","KPI":436,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0036000],[0.0472900,0.0036000],[0.0472900,0.0054000],[0.0446600,0.0054000],[0.0446600,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0446600","Lat":"0.0054000","KPI":846,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0054000],[0.0472900,0.0054000],[0.0472900,0.0072000],[0.0446600,0.0072000],[0.0446600,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0446600","Lat":"0.0072000","KPI":723,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0072000],[0.0472900,0.0072000],[0.0472900,0.0090000],[0.0446600,0.0090000],[0.0446600,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0446600","Lat":"0.0090000","KPI":961,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0090000],[0.0472900,0.0090000],[0.0472900,0.0108000],[0.0446600,0.0108000],[0.0446600,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0446600","Lat":"0.0108000","KPI":915,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0108000],[0.0472900,0.0108000],[0.0472900,0.0126000],[0.0446600,0.0126000],[0.0446600,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0446600","Lat":"0.0126000","KPI":793,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0126000],[0.0472900,0.0126000],[0.0472900,0.0144000],[0.0446600,0.0144000],[0.0446600,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0446600","Lat":"0.0144000","KPI":927,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0144000],[0.0472900,0.0144000],[0.0472900,0.0162000],[0.0446600,0.0162000],[0.0446600,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0446600","Lat":"0.0162000","KPI":631,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0162000],[0.0472900,0.0162000],[0.0472900,0.0180000],[0.0446600,0.0180000],[0.0446600,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0446600","Lat":"0.0180000","KPI":19,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0180000],[0.0472900,0.0180000],[0.0472900,0.0198000],[0.0446600,0.0198000],[0.0446600,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0446600","Lat":"0.0198000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0198000],[0.0472900,0.0198000],[0.0472900,0.0216000],[0.0446600,0.0216000],[0.0446600,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0446600","Lat":"0.0216000","KPI":198,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0216000],[0.0472900,0.0216000],[0.0472900,0.0234000],[0.0446600,0.0234000],[0.0446600,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0446600","Lat":"0.0234000","KPI":865,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0234000],[0.0472900,0.0234000],[0.0472900,0.0252000],[0.0446600,0.0252000],[0.0446600,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0446600","Lat":"0.0252000","KPI":299,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0252000],[0.0472900,0.0252000],[0.0472900,0.0270000],[0.0446600,0.0270000],[0.0446600,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0446600","Lat":"0.0270000","KPI":72,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0270000],[0.0472900,0.0270000],[0.0472900,0.0288000],[0.0446600,0.0288000],[0.0446600,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0446600","Lat":"0.0288000","KPI":285,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0288000],[0.0472900,0.0288000],[0.0472900,0.0306000],[0.0446600,0.0306000],[0.0446600,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0446600","Lat":"0.0306000","KPI":370,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0306000],[0.0472900,0.0306000],[0.0472900,0.0324000],[0.0446600,0.0324000],[0.0446600,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0446600","Lat":"0.0324000","KPI":55,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0324000],[0.0472900,0.0324000],[0.0472900,0.0342000],[0.0446600,0.0342000],[0.0446600,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0446600","Lat":"0.0342000","KPI":128,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0342000],[0.0472900,0.0342000],[0.0472900,0.0360000],[0.0446600,0.0360000],[0.0446600,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0446600","Lat":"0.0360000","KPI":337,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0360000],[0.0472900,0.0360000],[0.0472900,0.0378000],[0.0446600,0.0378000],[0.0446600,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0446600","Lat":"0.0378000","KPI":578,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0378000],[0.0472900,0.0378000],[0.0472900,0.0396000],[0.0446600,0.0396000],[0.0446600,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0446600","Lat":"0.0396000","KPI":15,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0396000],[0.0472900,0.0396000],[0.0472900,0.0414000],[0.0446600,0.0414000],[0.0446600,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0446600","Lat":"0.0414000","KPI":201,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0414000],[0.0472900,0.0414000],[0.0472900,0.0432000],[0.0446600,0.0432000],[0.0446600,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0446600","Lat":"0.0432000","KPI":623,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0432000],[0.0472900,0.0432000],[0.0472900,0.0450000],[0.0446600,0.0450000],[0.0446600,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0446600","Lat":"0.0450000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0450000],[0.0472900,0.0450000],[0.0472900,0.0468000],[0.0446600,0.0468000],[0.0446600,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0446600","Lat":"0.0468000","KPI":555,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0468000],[0.0472900,0.0468000],[0.0472900,0.0486000],[0.0446600,0.0486000],[0.0446600,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0446600","Lat":"0.0486000","KPI":731,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0486000],[0.0472900,0.0486000],[0.0472900,0.0504000],[0.0446600,0.0504000],[0.0446600,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0446600","Lat":"0.0504000","KPI":989,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0504000],[0.0472900,0.0504000],[0.0472900,0.0522000],[0.0446600,0.0522000],[0.0446600,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0446600","Lat":"0.0522000","KPI":499,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0522000],[0.0472900,0.0522000],[0.0472900,0.0540000],[0.0446600,0.0540000],[0.0446600,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0446600","Lat":"0.0540000","KPI":409,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0540000],[0.0472900,0.0540000],[0.0472900,0.0558000],[0.0446600,0.0558000],[0.0446600,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0446600","Lat":"0.0558000","KPI":113,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0446600,0.0558000],[0.0472900,0.0558000],[0.0472900,0.0576000],[0.0446600,0.0576000],[0.0446600,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0472900","Lat":"0.0000000","KPI":112,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0000000],[0.0499200,0.0000000],[0.0499200,0.0018000],[0.0472900,0.0018000],[0.0472900,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0472900","Lat":"0.0018000","KPI":172,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0018000],[0.0499200,0.0018000],[0.0499200,0.0036000],[0.0472900,0.0036000],[0.0472900,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0472900","Lat":"0.0036000","KPI":46,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0036000],[0.0499200,0.0036000],[0.0499200,0.0054000],[0.0472900,0.0054000],[0.0472900,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0472900","Lat":"0.0054000","KPI":907,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0054000],[0.0499200,0.0054000],[0.0499200,0.0072000],[0.0472900,0.0072000],[0.0472900,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0472900","Lat":"0.0072000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0072000],[0.0499200,0.0072000],[0.0499200,0.0090000],[0.0472900,0.0090000],[0.0472900,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0472900","Lat":"0.0090000","KPI":261,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0090000],[0.0499200,0.0090000],[0.0499200,0.0108000],[0.0472900,0.0108000],[0.0472900,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0472900","Lat":"0.0108000","KPI":168,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0108000],[0.0499200,0.0108000],[0.0499200,0.0126000],[0.0472900,0.0126000],[0.0472900,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0472900","Lat":"0.0126000","KPI":875,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0126000],[0.0499200,0.0126000],[0.0499200,0.0144000],[0.0472900,0.0144000],[0.0472900,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0472900","Lat":"0.0144000","KPI":377,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0144000],[0.0499200,0.0144000],[0.0499200,0.0162000],[0.0472900,0.0162000],[0.0472900,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0472900","Lat":"0.0162000","KPI":686,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0162000],[0.0499200,0.0162000],[0.0499200,0.0180000],[0.0472900,0.0180000],[0.0472900,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0472900","Lat":"0.0180000","KPI":11,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0180000],[0.0499200,0.0180000],[0.0499200,0.0198000],[0.0472900,0.0198000],[0.0472900,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0472900","Lat":"0.0198000","KPI":601,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0198000],[0.0499200,0.0198000],[0.0499200,0.0216000],[0.0472900,0.0216000],[0.0472900,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0472900","Lat":"0.0216000","KPI":546,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0216000],[0.0499200,0.0216000],[0.0499200,0.0234000],[0.0472900,0.0234000],[0.0472900,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0472900","Lat":"0.0234000","KPI":507,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0234000],[0.0499200,0.0234000],[0.0499200,0.0252000],[0.0472900,0.0252000],[0.0472900,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0472900","Lat":"0.0252000","KPI":395,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0252000],[0.0499200,0.0252000],[0.0499200,0.0270000],[0.0472900,0.0270000],[0.0472900,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":20,"Long":"0.0472900","Lat":"0.0270000","KPI":694,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0270000],[0.0499200,0.0270000],[0.0499200,0.0288000],[0.0472900,0.0288000],[0.0472900,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0472900","Lat":"0.0288000","KPI":180,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0288000],[0.0499200,0.0288000],[0.0499200,0.0306000],[0.0472900,0.0306000],[0.0472900,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0472900","Lat":"0.0306000","KPI":619,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0306000],[0.0499200,0.0306000],[0.0499200,0.0324000],[0.0472900,0.0324000],[0.0472900,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0472900","Lat":"0.0324000","KPI":721,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0324000],[0.0499200,0.0324000],[0.0499200,0.0342000],[0.0472900,0.0342000],[0.0472900,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0472900","Lat":"0.0342000","KPI":829,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0342000],[0.0499200,0.0342000],[0.0499200,0.0360000],[0.0472900,0.0360000],[0.0472900,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0472900","Lat":"0.0360000","KPI":966,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0360000],[0.0499200,0.0360000],[0.0499200,0.0378000],[0.0472900,0.0378000],[0.0472900,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0472900","Lat":"0.0378000","KPI":767,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0378000],[0.0499200,0.0378000],[0.0499200,0.0396000],[0.0472900,0.0396000],[0.0472900,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0472900","Lat":"0.0396000","KPI":340,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0396000],[0.0499200,0.0396000],[0.0499200,0.0414000],[0.0472900,0.0414000],[0.0472900,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0472900","Lat":"0.0414000","KPI":139,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0414000],[0.0499200,0.0414000],[0.0499200,0.0432000],[0.0472900,0.0432000],[0.0472900,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0472900","Lat":"0.0432000","KPI":905,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0432000],[0.0499200,0.0432000],[0.0499200,0.0450000],[0.0472900,0.0450000],[0.0472900,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0472900","Lat":"0.0450000","KPI":498,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0450000],[0.0499200,0.0450000],[0.0499200,0.0468000],[0.0472900,0.0468000],[0.0472900,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0472900","Lat":"0.0468000","KPI":999,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0468000],[0.0499200,0.0468000],[0.0499200,0.0486000],[0.0472900,0.0486000],[0.0472900,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0472900","Lat":"0.0486000","KPI":696,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0486000],[0.0499200,0.0486000],[0.0499200,0.0504000],[0.0472900,0.0504000],[0.0472900,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0472900","Lat":"0.0504000","KPI":8,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0504000],[0.0499200,0.0504000],[0.0499200,0.0522000],[0.0472900,0.0522000],[0.0472900,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0472900","Lat":"0.0522000","KPI":926,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0522000],[0.0499200,0.0522000],[0.0499200,0.0540000],[0.0472900,0.0540000],[0.0472900,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0472900","Lat":"0.0540000","KPI":300,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0540000],[0.0499200,0.0540000],[0.0499200,0.0558000],[0.0472900,0.0558000],[0.0472900,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0472900","Lat":"0.0558000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0472900,0.0558000],[0.0499200,0.0558000],[0.0499200,0.0576000],[0.0472900,0.0576000],[0.0472900,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0499100","Lat":"0.0000000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0000000],[0.0525400,0.0000000],[0.0525400,0.0018000],[0.0499100,0.0018000],[0.0499100,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0499100","Lat":"0.0018000","KPI":452,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0018000],[0.0525400,0.0018000],[0.0525400,0.0036000],[0.0499100,0.0036000],[0.0499100,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0499100","Lat":"0.0036000","KPI":369,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0036000],[0.0525400,0.0036000],[0.0525400,0.0054000],[0.0499100,0.0054000],[0.0499100,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0499100","Lat":"0.0054000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0054000],[0.0525400,0.0054000],[0.0525400,0.0072000],[0.0499100,0.0072000],[0.0499100,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0499100","Lat":"0.0072000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0072000],[0.0525400,0.0072000],[0.0525400,0.0090000],[0.0499100,0.0090000],[0.0499100,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0499100","Lat":"0.0090000","KPI":799,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0090000],[0.0525400,0.0090000],[0.0525400,0.0108000],[0.0499100,0.0108000],[0.0499100,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0499100","Lat":"0.0108000","KPI":168,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0108000],[0.0525400,0.0108000],[0.0525400,0.0126000],[0.0499100,0.0126000],[0.0499100,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0499100","Lat":"0.0126000","KPI":942,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0126000],[0.0525400,0.0126000],[0.0525400,0.0144000],[0.0499100,0.0144000],[0.0499100,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0499100","Lat":"0.0144000","KPI":120,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0144000],[0.0525400,0.0144000],[0.0525400,0.0162000],[0.0499100,0.0162000],[0.0499100,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0499100","Lat":"0.0162000","KPI":14,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0162000],[0.0525400,0.0162000],[0.0525400,0.0180000],[0.0499100,0.0180000],[0.0499100,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0499100","Lat":"0.0180000","KPI":141,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0180000],[0.0525400,0.0180000],[0.0525400,0.0198000],[0.0499100,0.0198000],[0.0499100,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0499100","Lat":"0.0198000","KPI":715,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0198000],[0.0525400,0.0198000],[0.0525400,0.0216000],[0.0499100,0.0216000],[0.0499100,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0499100","Lat":"0.0216000","KPI":747,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0216000],[0.0525400,0.0216000],[0.0525400,0.0234000],[0.0499100,0.0234000],[0.0499100,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0499100","Lat":"0.0234000","KPI":294,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0234000],[0.0525400,0.0234000],[0.0525400,0.0252000],[0.0499100,0.0252000],[0.0499100,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0499100","Lat":"0.0252000","KPI":152,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0252000],[0.0525400,0.0252000],[0.0525400,0.0270000],[0.0499100,0.0270000],[0.0499100,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0499100","Lat":"0.0270000","KPI":429,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0270000],[0.0525400,0.0270000],[0.0525400,0.0288000],[0.0499100,0.0288000],[0.0499100,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0499100","Lat":"0.0288000","KPI":767,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0288000],[0.0525400,0.0288000],[0.0525400,0.0306000],[0.0499100,0.0306000],[0.0499100,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0499100","Lat":"0.0306000","KPI":777,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0306000],[0.0525400,0.0306000],[0.0525400,0.0324000],[0.0499100,0.0324000],[0.0499100,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0499100","Lat":"0.0324000","KPI":883,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0324000],[0.0525400,0.0324000],[0.0525400,0.0342000],[0.0499100,0.0342000],[0.0499100,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0499100","Lat":"0.0342000","KPI":398,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0342000],[0.0525400,0.0342000],[0.0525400,0.0360000],[0.0499100,0.0360000],[0.0499100,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0499100","Lat":"0.0360000","KPI":385,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0360000],[0.0525400,0.0360000],[0.0525400,0.0378000],[0.0499100,0.0378000],[0.0499100,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0499100","Lat":"0.0378000","KPI":679,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0378000],[0.0525400,0.0378000],[0.0525400,0.0396000],[0.0499100,0.0396000],[0.0499100,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0499100","Lat":"0.0396000","KPI":149,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0396000],[0.0525400,0.0396000],[0.0525400,0.0414000],[0.0499100,0.0414000],[0.0499100,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0499100","Lat":"0.0414000","KPI":814,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0414000],[0.0525400,0.0414000],[0.0525400,0.0432000],[0.0499100,0.0432000],[0.0499100,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0499100","Lat":"0.0432000","KPI":102,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0432000],[0.0525400,0.0432000],[0.0525400,0.0450000],[0.0499100,0.0450000],[0.0499100,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0499100","Lat":"0.0450000","KPI":394,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0450000],[0.0525400,0.0450000],[0.0525400,0.0468000],[0.0499100,0.0468000],[0.0499100,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0499100","Lat":"0.0468000","KPI":819,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0468000],[0.0525400,0.0468000],[0.0525400,0.0486000],[0.0499100,0.0486000],[0.0499100,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0499100","Lat":"0.0486000","KPI":150,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0486000],[0.0525400,0.0486000],[0.0525400,0.0504000],[0.0499100,0.0504000],[0.0499100,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0499100","Lat":"0.0504000","KPI":893,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0504000],[0.0525400,0.0504000],[0.0525400,0.0522000],[0.0499100,0.0522000],[0.0499100,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0499100","Lat":"0.0522000","KPI":447,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0522000],[0.0525400,0.0522000],[0.0525400,0.0540000],[0.0499100,0.0540000],[0.0499100,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0499100","Lat":"0.0540000","KPI":278,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0540000],[0.0525400,0.0540000],[0.0525400,0.0558000],[0.0499100,0.0558000],[0.0499100,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0499100","Lat":"0.0558000","KPI":694,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0499100,0.0558000],[0.0525400,0.0558000],[0.0525400,0.0576000],[0.0499100,0.0576000],[0.0499100,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0525400","Lat":"0.0000000","KPI":253,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0000000],[0.0551700,0.0000000],[0.0551700,0.0018000],[0.0525400,0.0018000],[0.0525400,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0525400","Lat":"0.0018000","KPI":427,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0018000],[0.0551700,0.0018000],[0.0551700,0.0036000],[0.0525400,0.0036000],[0.0525400,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0525400","Lat":"0.0036000","KPI":632,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0036000],[0.0551700,0.0036000],[0.0551700,0.0054000],[0.0525400,0.0054000],[0.0525400,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0525400","Lat":"0.0054000","KPI":475,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0054000],[0.0551700,0.0054000],[0.0551700,0.0072000],[0.0525400,0.0072000],[0.0525400,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0525400","Lat":"0.0072000","KPI":416,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0072000],[0.0551700,0.0072000],[0.0551700,0.0090000],[0.0525400,0.0090000],[0.0525400,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0525400","Lat":"0.0090000","KPI":272,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0090000],[0.0551700,0.0090000],[0.0551700,0.0108000],[0.0525400,0.0108000],[0.0525400,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":66,"Long":"0.0525400","Lat":"0.0108000","KPI":80,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0108000],[0.0551700,0.0108000],[0.0551700,0.0126000],[0.0525400,0.0126000],[0.0525400,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0525400","Lat":"0.0126000","KPI":69,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0126000],[0.0551700,0.0126000],[0.0551700,0.0144000],[0.0525400,0.0144000],[0.0525400,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0525400","Lat":"0.0144000","KPI":319,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0144000],[0.0551700,0.0144000],[0.0551700,0.0162000],[0.0525400,0.0162000],[0.0525400,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0525400","Lat":"0.0162000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0162000],[0.0551700,0.0162000],[0.0551700,0.0180000],[0.0525400,0.0180000],[0.0525400,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0525400","Lat":"0.0180000","KPI":174,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0180000],[0.0551700,0.0180000],[0.0551700,0.0198000],[0.0525400,0.0198000],[0.0525400,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0525400","Lat":"0.0198000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0198000],[0.0551700,0.0198000],[0.0551700,0.0216000],[0.0525400,0.0216000],[0.0525400,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0525400","Lat":"0.0216000","KPI":121,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0216000],[0.0551700,0.0216000],[0.0551700,0.0234000],[0.0525400,0.0234000],[0.0525400,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0525400","Lat":"0.0234000","KPI":571,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0234000],[0.0551700,0.0234000],[0.0551700,0.0252000],[0.0525400,0.0252000],[0.0525400,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0525400","Lat":"0.0252000","KPI":869,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0252000],[0.0551700,0.0252000],[0.0551700,0.0270000],[0.0525400,0.0270000],[0.0525400,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0525400","Lat":"0.0270000","KPI":129,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0270000],[0.0551700,0.0270000],[0.0551700,0.0288000],[0.0525400,0.0288000],[0.0525400,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0525400","Lat":"0.0288000","KPI":349,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0288000],[0.0551700,0.0288000],[0.0551700,0.0306000],[0.0525400,0.0306000],[0.0525400,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0525400","Lat":"0.0306000","KPI":568,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0306000],[0.0551700,0.0306000],[0.0551700,0.0324000],[0.0525400,0.0324000],[0.0525400,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0525400","Lat":"0.0324000","KPI":592,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0324000],[0.0551700,0.0324000],[0.0551700,0.0342000],[0.0525400,0.0342000],[0.0525400,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0525400","Lat":"0.0342000","KPI":87,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0342000],[0.0551700,0.0342000],[0.0551700,0.0360000],[0.0525400,0.0360000],[0.0525400,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0525400","Lat":"0.0360000","KPI":993,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0360000],[0.0551700,0.0360000],[0.0551700,0.0378000],[0.0525400,0.0378000],[0.0525400,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0525400","Lat":"0.0378000","KPI":157,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0378000],[0.0551700,0.0378000],[0.0551700,0.0396000],[0.0525400,0.0396000],[0.0525400,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0525400","Lat":"0.0396000","KPI":748,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0396000],[0.0551700,0.0396000],[0.0551700,0.0414000],[0.0525400,0.0414000],[0.0525400,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0525400","Lat":"0.0414000","KPI":260,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0414000],[0.0551700,0.0414000],[0.0551700,0.0432000],[0.0525400,0.0432000],[0.0525400,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0525400","Lat":"0.0432000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0432000],[0.0551700,0.0432000],[0.0551700,0.0450000],[0.0525400,0.0450000],[0.0525400,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0525400","Lat":"0.0450000","KPI":860,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0450000],[0.0551700,0.0450000],[0.0551700,0.0468000],[0.0525400,0.0468000],[0.0525400,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0525400","Lat":"0.0468000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0468000],[0.0551700,0.0468000],[0.0551700,0.0486000],[0.0525400,0.0486000],[0.0525400,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0525400","Lat":"0.0486000","KPI":71,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0486000],[0.0551700,0.0486000],[0.0551700,0.0504000],[0.0525400,0.0504000],[0.0525400,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0525400","Lat":"0.0504000","KPI":682,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0504000],[0.0551700,0.0504000],[0.0551700,0.0522000],[0.0525400,0.0522000],[0.0525400,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0525400","Lat":"0.0522000","KPI":494,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0522000],[0.0551700,0.0522000],[0.0551700,0.0540000],[0.0525400,0.0540000],[0.0525400,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0525400","Lat":"0.0540000","KPI":789,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0540000],[0.0551700,0.0540000],[0.0551700,0.0558000],[0.0525400,0.0558000],[0.0525400,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0525400","Lat":"0.0558000","KPI":777,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0525400,0.0558000],[0.0551700,0.0558000],[0.0551700,0.0576000],[0.0525400,0.0576000],[0.0525400,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0551700","Lat":"0.0000000","KPI":65,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0000000],[0.0578000,0.0000000],[0.0578000,0.0018000],[0.0551700,0.0018000],[0.0551700,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0551700","Lat":"0.0018000","KPI":565,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0018000],[0.0578000,0.0018000],[0.0578000,0.0036000],[0.0551700,0.0036000],[0.0551700,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0551700","Lat":"0.0036000","KPI":721,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0036000],[0.0578000,0.0036000],[0.0578000,0.0054000],[0.0551700,0.0054000],[0.0551700,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0551700","Lat":"0.0054000","KPI":616,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0054000],[0.0578000,0.0054000],[0.0578000,0.0072000],[0.0551700,0.0072000],[0.0551700,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0551700","Lat":"0.0072000","KPI":871,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0072000],[0.0578000,0.0072000],[0.0578000,0.0090000],[0.0551700,0.0090000],[0.0551700,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0551700","Lat":"0.0090000","KPI":50,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0090000],[0.0578000,0.0090000],[0.0578000,0.0108000],[0.0551700,0.0108000],[0.0551700,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0551700","Lat":"0.0108000","KPI":864,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0108000],[0.0578000,0.0108000],[0.0578000,0.0126000],[0.0551700,0.0126000],[0.0551700,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0551700","Lat":"0.0126000","KPI":880,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0126000],[0.0578000,0.0126000],[0.0578000,0.0144000],[0.0551700,0.0144000],[0.0551700,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0551700","Lat":"0.0144000","KPI":336,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0144000],[0.0578000,0.0144000],[0.0578000,0.0162000],[0.0551700,0.0162000],[0.0551700,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0551700","Lat":"0.0162000","KPI":200,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0162000],[0.0578000,0.0162000],[0.0578000,0.0180000],[0.0551700,0.0180000],[0.0551700,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0551700","Lat":"0.0180000","KPI":43,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0180000],[0.0578000,0.0180000],[0.0578000,0.0198000],[0.0551700,0.0198000],[0.0551700,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0551700","Lat":"0.0198000","KPI":672,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0198000],[0.0578000,0.0198000],[0.0578000,0.0216000],[0.0551700,0.0216000],[0.0551700,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0551700","Lat":"0.0216000","KPI":688,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0216000],[0.0578000,0.0216000],[0.0578000,0.0234000],[0.0551700,0.0234000],[0.0551700,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0551700","Lat":"0.0234000","KPI":240,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0234000],[0.0578000,0.0234000],[0.0578000,0.0252000],[0.0551700,0.0252000],[0.0551700,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0551700","Lat":"0.0252000","KPI":644,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0252000],[0.0578000,0.0252000],[0.0578000,0.0270000],[0.0551700,0.0270000],[0.0551700,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0551700","Lat":"0.0270000","KPI":324,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0270000],[0.0578000,0.0270000],[0.0578000,0.0288000],[0.0551700,0.0288000],[0.0551700,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0551700","Lat":"0.0288000","KPI":687,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0288000],[0.0578000,0.0288000],[0.0578000,0.0306000],[0.0551700,0.0306000],[0.0551700,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0551700","Lat":"0.0306000","KPI":87,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0306000],[0.0578000,0.0306000],[0.0578000,0.0324000],[0.0551700,0.0324000],[0.0551700,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0551700","Lat":"0.0324000","KPI":582,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0324000],[0.0578000,0.0324000],[0.0578000,0.0342000],[0.0551700,0.0342000],[0.0551700,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0551700","Lat":"0.0342000","KPI":767,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0342000],[0.0578000,0.0342000],[0.0578000,0.0360000],[0.0551700,0.0360000],[0.0551700,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0551700","Lat":"0.0360000","KPI":648,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0360000],[0.0578000,0.0360000],[0.0578000,0.0378000],[0.0551700,0.0378000],[0.0551700,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0551700","Lat":"0.0378000","KPI":479,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0378000],[0.0578000,0.0378000],[0.0578000,0.0396000],[0.0551700,0.0396000],[0.0551700,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0551700","Lat":"0.0396000","KPI":254,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0396000],[0.0578000,0.0396000],[0.0578000,0.0414000],[0.0551700,0.0414000],[0.0551700,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0551700","Lat":"0.0414000","KPI":323,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0414000],[0.0578000,0.0414000],[0.0578000,0.0432000],[0.0551700,0.0432000],[0.0551700,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0551700","Lat":"0.0432000","KPI":487,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0432000],[0.0578000,0.0432000],[0.0578000,0.0450000],[0.0551700,0.0450000],[0.0551700,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0551700","Lat":"0.0450000","KPI":134,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0450000],[0.0578000,0.0450000],[0.0578000,0.0468000],[0.0551700,0.0468000],[0.0551700,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0551700","Lat":"0.0468000","KPI":153,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0468000],[0.0578000,0.0468000],[0.0578000,0.0486000],[0.0551700,0.0486000],[0.0551700,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0551700","Lat":"0.0486000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0486000],[0.0578000,0.0486000],[0.0578000,0.0504000],[0.0551700,0.0504000],[0.0551700,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0551700","Lat":"0.0504000","KPI":637,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0504000],[0.0578000,0.0504000],[0.0578000,0.0522000],[0.0551700,0.0522000],[0.0551700,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0551700","Lat":"0.0522000","KPI":821,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0522000],[0.0578000,0.0522000],[0.0578000,0.0540000],[0.0551700,0.0540000],[0.0551700,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0551700","Lat":"0.0540000","KPI":91,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0540000],[0.0578000,0.0540000],[0.0578000,0.0558000],[0.0551700,0.0558000],[0.0551700,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0551700","Lat":"0.0558000","KPI":170,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0551700,0.0558000],[0.0578000,0.0558000],[0.0578000,0.0576000],[0.0551700,0.0576000],[0.0551700,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0577900","Lat":"0.0000000","KPI":881,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0000000],[0.0604200,0.0000000],[0.0604200,0.0018000],[0.0577900,0.0018000],[0.0577900,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0577900","Lat":"0.0018000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0018000],[0.0604200,0.0018000],[0.0604200,0.0036000],[0.0577900,0.0036000],[0.0577900,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0577900","Lat":"0.0036000","KPI":220,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0036000],[0.0604200,0.0036000],[0.0604200,0.0054000],[0.0577900,0.0054000],[0.0577900,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0577900","Lat":"0.0054000","KPI":209,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0054000],[0.0604200,0.0054000],[0.0604200,0.0072000],[0.0577900,0.0072000],[0.0577900,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0577900","Lat":"0.0072000","KPI":422,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0072000],[0.0604200,0.0072000],[0.0604200,0.0090000],[0.0577900,0.0090000],[0.0577900,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0577900","Lat":"0.0090000","KPI":705,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0090000],[0.0604200,0.0090000],[0.0604200,0.0108000],[0.0577900,0.0108000],[0.0577900,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0577900","Lat":"0.0108000","KPI":298,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0108000],[0.0604200,0.0108000],[0.0604200,0.0126000],[0.0577900,0.0126000],[0.0577900,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0577900","Lat":"0.0126000","KPI":80,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0126000],[0.0604200,0.0126000],[0.0604200,0.0144000],[0.0577900,0.0144000],[0.0577900,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0577900","Lat":"0.0144000","KPI":763,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0144000],[0.0604200,0.0144000],[0.0604200,0.0162000],[0.0577900,0.0162000],[0.0577900,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0577900","Lat":"0.0162000","KPI":420,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0162000],[0.0604200,0.0162000],[0.0604200,0.0180000],[0.0577900,0.0180000],[0.0577900,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0577900","Lat":"0.0180000","KPI":883,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0180000],[0.0604200,0.0180000],[0.0604200,0.0198000],[0.0577900,0.0198000],[0.0577900,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0577900","Lat":"0.0198000","KPI":123,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0198000],[0.0604200,0.0198000],[0.0604200,0.0216000],[0.0577900,0.0216000],[0.0577900,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0577900","Lat":"0.0216000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0216000],[0.0604200,0.0216000],[0.0604200,0.0234000],[0.0577900,0.0234000],[0.0577900,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0577900","Lat":"0.0234000","KPI":289,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0234000],[0.0604200,0.0234000],[0.0604200,0.0252000],[0.0577900,0.0252000],[0.0577900,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0577900","Lat":"0.0252000","KPI":404,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0252000],[0.0604200,0.0252000],[0.0604200,0.0270000],[0.0577900,0.0270000],[0.0577900,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0577900","Lat":"0.0270000","KPI":761,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0270000],[0.0604200,0.0270000],[0.0604200,0.0288000],[0.0577900,0.0288000],[0.0577900,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0577900","Lat":"0.0288000","KPI":29,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0288000],[0.0604200,0.0288000],[0.0604200,0.0306000],[0.0577900,0.0306000],[0.0577900,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0577900","Lat":"0.0306000","KPI":329,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0306000],[0.0604200,0.0306000],[0.0604200,0.0324000],[0.0577900,0.0324000],[0.0577900,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0577900","Lat":"0.0324000","KPI":290,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0324000],[0.0604200,0.0324000],[0.0604200,0.0342000],[0.0577900,0.0342000],[0.0577900,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0577900","Lat":"0.0342000","KPI":467,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0342000],[0.0604200,0.0342000],[0.0604200,0.0360000],[0.0577900,0.0360000],[0.0577900,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0577900","Lat":"0.0360000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0360000],[0.0604200,0.0360000],[0.0604200,0.0378000],[0.0577900,0.0378000],[0.0577900,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0577900","Lat":"0.0378000","KPI":895,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0378000],[0.0604200,0.0378000],[0.0604200,0.0396000],[0.0577900,0.0396000],[0.0577900,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0577900","Lat":"0.0396000","KPI":617,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0396000],[0.0604200,0.0396000],[0.0604200,0.0414000],[0.0577900,0.0414000],[0.0577900,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0577900","Lat":"0.0414000","KPI":199,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0414000],[0.0604200,0.0414000],[0.0604200,0.0432000],[0.0577900,0.0432000],[0.0577900,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0577900","Lat":"0.0432000","KPI":616,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0432000],[0.0604200,0.0432000],[0.0604200,0.0450000],[0.0577900,0.0450000],[0.0577900,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0577900","Lat":"0.0450000","KPI":741,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0450000],[0.0604200,0.0450000],[0.0604200,0.0468000],[0.0577900,0.0468000],[0.0577900,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0577900","Lat":"0.0468000","KPI":944,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0468000],[0.0604200,0.0468000],[0.0604200,0.0486000],[0.0577900,0.0486000],[0.0577900,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":1,"Long":"0.0577900","Lat":"0.0486000","KPI":58,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0486000],[0.0604200,0.0486000],[0.0604200,0.0504000],[0.0577900,0.0504000],[0.0577900,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0577900","Lat":"0.0504000","KPI":266,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0504000],[0.0604200,0.0504000],[0.0604200,0.0522000],[0.0577900,0.0522000],[0.0577900,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0577900","Lat":"0.0522000","KPI":33,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0522000],[0.0604200,0.0522000],[0.0604200,0.0540000],[0.0577900,0.0540000],[0.0577900,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0577900","Lat":"0.0540000","KPI":287,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0540000],[0.0604200,0.0540000],[0.0604200,0.0558000],[0.0577900,0.0558000],[0.0577900,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0577900","Lat":"0.0558000","KPI":172,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0577900,0.0558000],[0.0604200,0.0558000],[0.0604200,0.0576000],[0.0577900,0.0576000],[0.0577900,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0604200","Lat":"0.0000000","KPI":829,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0000000],[0.0630500,0.0000000],[0.0630500,0.0018000],[0.0604200,0.0018000],[0.0604200,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0604200","Lat":"0.0018000","KPI":415,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0018000],[0.0630500,0.0018000],[0.0630500,0.0036000],[0.0604200,0.0036000],[0.0604200,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0604200","Lat":"0.0036000","KPI":432,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0036000],[0.0630500,0.0036000],[0.0630500,0.0054000],[0.0604200,0.0054000],[0.0604200,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0604200","Lat":"0.0054000","KPI":62,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0054000],[0.0630500,0.0054000],[0.0630500,0.0072000],[0.0604200,0.0072000],[0.0604200,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0604200","Lat":"0.0072000","KPI":551,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0072000],[0.0630500,0.0072000],[0.0630500,0.0090000],[0.0604200,0.0090000],[0.0604200,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0604200","Lat":"0.0090000","KPI":545,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0090000],[0.0630500,0.0090000],[0.0630500,0.0108000],[0.0604200,0.0108000],[0.0604200,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0604200","Lat":"0.0108000","KPI":14,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0108000],[0.0630500,0.0108000],[0.0630500,0.0126000],[0.0604200,0.0126000],[0.0604200,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0604200","Lat":"0.0126000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0126000],[0.0630500,0.0126000],[0.0630500,0.0144000],[0.0604200,0.0144000],[0.0604200,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0604200","Lat":"0.0144000","KPI":452,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0144000],[0.0630500,0.0144000],[0.0630500,0.0162000],[0.0604200,0.0162000],[0.0604200,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0604200","Lat":"0.0162000","KPI":695,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0162000],[0.0630500,0.0162000],[0.0630500,0.0180000],[0.0604200,0.0180000],[0.0604200,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0604200","Lat":"0.0180000","KPI":60,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0180000],[0.0630500,0.0180000],[0.0630500,0.0198000],[0.0604200,0.0198000],[0.0604200,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0604200","Lat":"0.0198000","KPI":29,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0198000],[0.0630500,0.0198000],[0.0630500,0.0216000],[0.0604200,0.0216000],[0.0604200,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0604200","Lat":"0.0216000","KPI":189,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0216000],[0.0630500,0.0216000],[0.0630500,0.0234000],[0.0604200,0.0234000],[0.0604200,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0604200","Lat":"0.0234000","KPI":325,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0234000],[0.0630500,0.0234000],[0.0630500,0.0252000],[0.0604200,0.0252000],[0.0604200,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0604200","Lat":"0.0252000","KPI":937,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0252000],[0.0630500,0.0252000],[0.0630500,0.0270000],[0.0604200,0.0270000],[0.0604200,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":51,"Long":"0.0604200","Lat":"0.0270000","KPI":930,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0270000],[0.0630500,0.0270000],[0.0630500,0.0288000],[0.0604200,0.0288000],[0.0604200,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":48,"Long":"0.0604200","Lat":"0.0288000","KPI":140,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0288000],[0.0630500,0.0288000],[0.0630500,0.0306000],[0.0604200,0.0306000],[0.0604200,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0604200","Lat":"0.0306000","KPI":727,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0306000],[0.0630500,0.0306000],[0.0630500,0.0324000],[0.0604200,0.0324000],[0.0604200,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0604200","Lat":"0.0324000","KPI":896,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0324000],[0.0630500,0.0324000],[0.0630500,0.0342000],[0.0604200,0.0342000],[0.0604200,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0604200","Lat":"0.0342000","KPI":902,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0342000],[0.0630500,0.0342000],[0.0630500,0.0360000],[0.0604200,0.0360000],[0.0604200,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0604200","Lat":"0.0360000","KPI":21,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0360000],[0.0630500,0.0360000],[0.0630500,0.0378000],[0.0604200,0.0378000],[0.0604200,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0604200","Lat":"0.0378000","KPI":153,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0378000],[0.0630500,0.0378000],[0.0630500,0.0396000],[0.0604200,0.0396000],[0.0604200,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0604200","Lat":"0.0396000","KPI":659,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0396000],[0.0630500,0.0396000],[0.0630500,0.0414000],[0.0604200,0.0414000],[0.0604200,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0604200","Lat":"0.0414000","KPI":960,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0414000],[0.0630500,0.0414000],[0.0630500,0.0432000],[0.0604200,0.0432000],[0.0604200,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":90,"Long":"0.0604200","Lat":"0.0432000","KPI":604,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0432000],[0.0630500,0.0432000],[0.0630500,0.0450000],[0.0604200,0.0450000],[0.0604200,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0604200","Lat":"0.0450000","KPI":23,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0450000],[0.0630500,0.0450000],[0.0630500,0.0468000],[0.0604200,0.0468000],[0.0604200,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0604200","Lat":"0.0468000","KPI":726,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0468000],[0.0630500,0.0468000],[0.0630500,0.0486000],[0.0604200,0.0486000],[0.0604200,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0604200","Lat":"0.0486000","KPI":491,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0486000],[0.0630500,0.0486000],[0.0630500,0.0504000],[0.0604200,0.0504000],[0.0604200,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0604200","Lat":"0.0504000","KPI":358,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0504000],[0.0630500,0.0504000],[0.0630500,0.0522000],[0.0604200,0.0522000],[0.0604200,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0604200","Lat":"0.0522000","KPI":119,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0522000],[0.0630500,0.0522000],[0.0630500,0.0540000],[0.0604200,0.0540000],[0.0604200,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0604200","Lat":"0.0540000","KPI":357,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0540000],[0.0630500,0.0540000],[0.0630500,0.0558000],[0.0604200,0.0558000],[0.0604200,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0604200","Lat":"0.0558000","KPI":97,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0604200,0.0558000],[0.0630500,0.0558000],[0.0630500,0.0576000],[0.0604200,0.0576000],[0.0604200,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0630500","Lat":"0.0000000","KPI":73,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0000000],[0.0656800,0.0000000],[0.0656800,0.0018000],[0.0630500,0.0018000],[0.0630500,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0630500","Lat":"0.0018000","KPI":873,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0018000],[0.0656800,0.0018000],[0.0656800,0.0036000],[0.0630500,0.0036000],[0.0630500,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0630500","Lat":"0.0036000","KPI":419,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0036000],[0.0656800,0.0036000],[0.0656800,0.0054000],[0.0630500,0.0054000],[0.0630500,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0630500","Lat":"0.0054000","KPI":929,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0054000],[0.0656800,0.0054000],[0.0656800,0.0072000],[0.0630500,0.0072000],[0.0630500,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0630500","Lat":"0.0072000","KPI":780,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0072000],[0.0656800,0.0072000],[0.0656800,0.0090000],[0.0630500,0.0090000],[0.0630500,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0630500","Lat":"0.0090000","KPI":143,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0090000],[0.0656800,0.0090000],[0.0656800,0.0108000],[0.0630500,0.0108000],[0.0630500,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0630500","Lat":"0.0108000","KPI":531,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0108000],[0.0656800,0.0108000],[0.0656800,0.0126000],[0.0630500,0.0126000],[0.0630500,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":35,"Long":"0.0630500","Lat":"0.0126000","KPI":57,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0126000],[0.0656800,0.0126000],[0.0656800,0.0144000],[0.0630500,0.0144000],[0.0630500,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0630500","Lat":"0.0144000","KPI":549,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0144000],[0.0656800,0.0144000],[0.0656800,0.0162000],[0.0630500,0.0162000],[0.0630500,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":91,"Long":"0.0630500","Lat":"0.0162000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0162000],[0.0656800,0.0162000],[0.0656800,0.0180000],[0.0630500,0.0180000],[0.0630500,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0630500","Lat":"0.0180000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0180000],[0.0656800,0.0180000],[0.0656800,0.0198000],[0.0630500,0.0198000],[0.0630500,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0630500","Lat":"0.0198000","KPI":593,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0198000],[0.0656800,0.0198000],[0.0656800,0.0216000],[0.0630500,0.0216000],[0.0630500,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0630500","Lat":"0.0216000","KPI":961,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0216000],[0.0656800,0.0216000],[0.0656800,0.0234000],[0.0630500,0.0234000],[0.0630500,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0630500","Lat":"0.0234000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0234000],[0.0656800,0.0234000],[0.0656800,0.0252000],[0.0630500,0.0252000],[0.0630500,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0630500","Lat":"0.0252000","KPI":923,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0252000],[0.0656800,0.0252000],[0.0656800,0.0270000],[0.0630500,0.0270000],[0.0630500,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0630500","Lat":"0.0270000","KPI":597,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0270000],[0.0656800,0.0270000],[0.0656800,0.0288000],[0.0630500,0.0288000],[0.0630500,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0630500","Lat":"0.0288000","KPI":339,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0288000],[0.0656800,0.0288000],[0.0656800,0.0306000],[0.0630500,0.0306000],[0.0630500,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":85,"Long":"0.0630500","Lat":"0.0306000","KPI":677,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0306000],[0.0656800,0.0306000],[0.0656800,0.0324000],[0.0630500,0.0324000],[0.0630500,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0630500","Lat":"0.0324000","KPI":351,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0324000],[0.0656800,0.0324000],[0.0656800,0.0342000],[0.0630500,0.0342000],[0.0630500,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0630500","Lat":"0.0342000","KPI":4,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0342000],[0.0656800,0.0342000],[0.0656800,0.0360000],[0.0630500,0.0360000],[0.0630500,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0630500","Lat":"0.0360000","KPI":39,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0360000],[0.0656800,0.0360000],[0.0656800,0.0378000],[0.0630500,0.0378000],[0.0630500,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0630500","Lat":"0.0378000","KPI":36,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0378000],[0.0656800,0.0378000],[0.0656800,0.0396000],[0.0630500,0.0396000],[0.0630500,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0630500","Lat":"0.0396000","KPI":101,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0396000],[0.0656800,0.0396000],[0.0656800,0.0414000],[0.0630500,0.0414000],[0.0630500,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0630500","Lat":"0.0414000","KPI":85,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0414000],[0.0656800,0.0414000],[0.0656800,0.0432000],[0.0630500,0.0432000],[0.0630500,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0630500","Lat":"0.0432000","KPI":379,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0432000],[0.0656800,0.0432000],[0.0656800,0.0450000],[0.0630500,0.0450000],[0.0630500,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0630500","Lat":"0.0450000","KPI":670,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0450000],[0.0656800,0.0450000],[0.0656800,0.0468000],[0.0630500,0.0468000],[0.0630500,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0630500","Lat":"0.0468000","KPI":773,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0468000],[0.0656800,0.0468000],[0.0656800,0.0486000],[0.0630500,0.0486000],[0.0630500,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0630500","Lat":"0.0486000","KPI":194,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0486000],[0.0656800,0.0486000],[0.0656800,0.0504000],[0.0630500,0.0504000],[0.0630500,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0630500","Lat":"0.0504000","KPI":17,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0504000],[0.0656800,0.0504000],[0.0656800,0.0522000],[0.0630500,0.0522000],[0.0630500,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":45,"Long":"0.0630500","Lat":"0.0522000","KPI":982,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0522000],[0.0656800,0.0522000],[0.0656800,0.0540000],[0.0630500,0.0540000],[0.0630500,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":8,"Long":"0.0630500","Lat":"0.0540000","KPI":191,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0540000],[0.0656800,0.0540000],[0.0656800,0.0558000],[0.0630500,0.0558000],[0.0630500,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":87,"Long":"0.0630500","Lat":"0.0558000","KPI":797,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0630500,0.0558000],[0.0656800,0.0558000],[0.0656800,0.0576000],[0.0630500,0.0576000],[0.0630500,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0656800","Lat":"0.0000000","KPI":841,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0000000],[0.0683100,0.0000000],[0.0683100,0.0018000],[0.0656800,0.0018000],[0.0656800,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0656800","Lat":"0.0018000","KPI":46,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0018000],[0.0683100,0.0018000],[0.0683100,0.0036000],[0.0656800,0.0036000],[0.0656800,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0656800","Lat":"0.0036000","KPI":29,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0036000],[0.0683100,0.0036000],[0.0683100,0.0054000],[0.0656800,0.0054000],[0.0656800,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":12,"Long":"0.0656800","Lat":"0.0054000","KPI":51,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0054000],[0.0683100,0.0054000],[0.0683100,0.0072000],[0.0656800,0.0072000],[0.0656800,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":81,"Long":"0.0656800","Lat":"0.0072000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0072000],[0.0683100,0.0072000],[0.0683100,0.0090000],[0.0656800,0.0090000],[0.0656800,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0656800","Lat":"0.0090000","KPI":872,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0090000],[0.0683100,0.0090000],[0.0683100,0.0108000],[0.0656800,0.0108000],[0.0656800,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0656800","Lat":"0.0108000","KPI":279,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0108000],[0.0683100,0.0108000],[0.0683100,0.0126000],[0.0656800,0.0126000],[0.0656800,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0656800","Lat":"0.0126000","KPI":427,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0126000],[0.0683100,0.0126000],[0.0683100,0.0144000],[0.0656800,0.0144000],[0.0656800,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0656800","Lat":"0.0144000","KPI":522,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0144000],[0.0683100,0.0144000],[0.0683100,0.0162000],[0.0656800,0.0162000],[0.0656800,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0656800","Lat":"0.0162000","KPI":825,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0162000],[0.0683100,0.0162000],[0.0683100,0.0180000],[0.0656800,0.0180000],[0.0656800,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0656800","Lat":"0.0180000","KPI":238,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0180000],[0.0683100,0.0180000],[0.0683100,0.0198000],[0.0656800,0.0198000],[0.0656800,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0656800","Lat":"0.0198000","KPI":132,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0198000],[0.0683100,0.0198000],[0.0683100,0.0216000],[0.0656800,0.0216000],[0.0656800,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0656800","Lat":"0.0216000","KPI":664,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0216000],[0.0683100,0.0216000],[0.0683100,0.0234000],[0.0656800,0.0234000],[0.0656800,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0656800","Lat":"0.0234000","KPI":52,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0234000],[0.0683100,0.0234000],[0.0683100,0.0252000],[0.0656800,0.0252000],[0.0656800,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0656800","Lat":"0.0252000","KPI":967,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0252000],[0.0683100,0.0252000],[0.0683100,0.0270000],[0.0656800,0.0270000],[0.0656800,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0656800","Lat":"0.0270000","KPI":334,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0270000],[0.0683100,0.0270000],[0.0683100,0.0288000],[0.0656800,0.0288000],[0.0656800,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0656800","Lat":"0.0288000","KPI":523,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0288000],[0.0683100,0.0288000],[0.0683100,0.0306000],[0.0656800,0.0306000],[0.0656800,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0656800","Lat":"0.0306000","KPI":73,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0306000],[0.0683100,0.0306000],[0.0683100,0.0324000],[0.0656800,0.0324000],[0.0656800,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0656800","Lat":"0.0324000","KPI":407,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0324000],[0.0683100,0.0324000],[0.0683100,0.0342000],[0.0656800,0.0342000],[0.0656800,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":43,"Long":"0.0656800","Lat":"0.0342000","KPI":451,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0342000],[0.0683100,0.0342000],[0.0683100,0.0360000],[0.0656800,0.0360000],[0.0656800,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":17,"Long":"0.0656800","Lat":"0.0360000","KPI":766,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0360000],[0.0683100,0.0360000],[0.0683100,0.0378000],[0.0656800,0.0378000],[0.0656800,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0656800","Lat":"0.0378000","KPI":887,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0378000],[0.0683100,0.0378000],[0.0683100,0.0396000],[0.0656800,0.0396000],[0.0656800,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0656800","Lat":"0.0396000","KPI":594,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0396000],[0.0683100,0.0396000],[0.0683100,0.0414000],[0.0656800,0.0414000],[0.0656800,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0656800","Lat":"0.0414000","KPI":996,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0414000],[0.0683100,0.0414000],[0.0683100,0.0432000],[0.0656800,0.0432000],[0.0656800,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0656800","Lat":"0.0432000","KPI":710,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0432000],[0.0683100,0.0432000],[0.0683100,0.0450000],[0.0656800,0.0450000],[0.0656800,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0656800","Lat":"0.0450000","KPI":250,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0450000],[0.0683100,0.0450000],[0.0683100,0.0468000],[0.0656800,0.0468000],[0.0656800,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0656800","Lat":"0.0468000","KPI":669,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0468000],[0.0683100,0.0468000],[0.0683100,0.0486000],[0.0656800,0.0486000],[0.0656800,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0656800","Lat":"0.0486000","KPI":740,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0486000],[0.0683100,0.0486000],[0.0683100,0.0504000],[0.0656800,0.0504000],[0.0656800,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0656800","Lat":"0.0504000","KPI":687,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0504000],[0.0683100,0.0504000],[0.0683100,0.0522000],[0.0656800,0.0522000],[0.0656800,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":88,"Long":"0.0656800","Lat":"0.0522000","KPI":972,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0522000],[0.0683100,0.0522000],[0.0683100,0.0540000],[0.0656800,0.0540000],[0.0656800,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0656800","Lat":"0.0540000","KPI":615,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0540000],[0.0683100,0.0540000],[0.0683100,0.0558000],[0.0656800,0.0558000],[0.0656800,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0656800","Lat":"0.0558000","KPI":198,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0656800,0.0558000],[0.0683100,0.0558000],[0.0683100,0.0576000],[0.0656800,0.0576000],[0.0656800,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0683000","Lat":"0.0000000","KPI":460,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0000000],[0.0709300,0.0000000],[0.0709300,0.0018000],[0.0683000,0.0018000],[0.0683000,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0683000","Lat":"0.0018000","KPI":401,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0018000],[0.0709300,0.0018000],[0.0709300,0.0036000],[0.0683000,0.0036000],[0.0683000,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0683000","Lat":"0.0036000","KPI":927,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0036000],[0.0709300,0.0036000],[0.0709300,0.0054000],[0.0683000,0.0054000],[0.0683000,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":96,"Long":"0.0683000","Lat":"0.0054000","KPI":681,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0054000],[0.0709300,0.0054000],[0.0709300,0.0072000],[0.0683000,0.0072000],[0.0683000,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":82,"Long":"0.0683000","Lat":"0.0072000","KPI":2,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0072000],[0.0709300,0.0072000],[0.0709300,0.0090000],[0.0683000,0.0090000],[0.0683000,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0683000","Lat":"0.0090000","KPI":432,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0090000],[0.0709300,0.0090000],[0.0709300,0.0108000],[0.0683000,0.0108000],[0.0683000,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0683000","Lat":"0.0108000","KPI":638,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0108000],[0.0709300,0.0108000],[0.0709300,0.0126000],[0.0683000,0.0126000],[0.0683000,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0683000","Lat":"0.0126000","KPI":437,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0126000],[0.0709300,0.0126000],[0.0709300,0.0144000],[0.0683000,0.0144000],[0.0683000,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0683000","Lat":"0.0144000","KPI":197,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0144000],[0.0709300,0.0144000],[0.0709300,0.0162000],[0.0683000,0.0162000],[0.0683000,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0683000","Lat":"0.0162000","KPI":700,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0162000],[0.0709300,0.0162000],[0.0709300,0.0180000],[0.0683000,0.0180000],[0.0683000,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0683000","Lat":"0.0180000","KPI":412,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0180000],[0.0709300,0.0180000],[0.0709300,0.0198000],[0.0683000,0.0198000],[0.0683000,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0683000","Lat":"0.0198000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0198000],[0.0709300,0.0198000],[0.0709300,0.0216000],[0.0683000,0.0216000],[0.0683000,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":37,"Long":"0.0683000","Lat":"0.0216000","KPI":301,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0216000],[0.0709300,0.0216000],[0.0709300,0.0234000],[0.0683000,0.0234000],[0.0683000,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0683000","Lat":"0.0234000","KPI":826,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0234000],[0.0709300,0.0234000],[0.0709300,0.0252000],[0.0683000,0.0252000],[0.0683000,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0683000","Lat":"0.0252000","KPI":626,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0252000],[0.0709300,0.0252000],[0.0709300,0.0270000],[0.0683000,0.0270000],[0.0683000,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0683000","Lat":"0.0270000","KPI":54,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0270000],[0.0709300,0.0270000],[0.0709300,0.0288000],[0.0683000,0.0288000],[0.0683000,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0683000","Lat":"0.0288000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0288000],[0.0709300,0.0288000],[0.0709300,0.0306000],[0.0683000,0.0306000],[0.0683000,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0683000","Lat":"0.0306000","KPI":835,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0306000],[0.0709300,0.0306000],[0.0709300,0.0324000],[0.0683000,0.0324000],[0.0683000,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0683000","Lat":"0.0324000","KPI":650,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0324000],[0.0709300,0.0324000],[0.0709300,0.0342000],[0.0683000,0.0342000],[0.0683000,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0683000","Lat":"0.0342000","KPI":205,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0342000],[0.0709300,0.0342000],[0.0709300,0.0360000],[0.0683000,0.0360000],[0.0683000,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0683000","Lat":"0.0360000","KPI":833,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0360000],[0.0709300,0.0360000],[0.0709300,0.0378000],[0.0683000,0.0378000],[0.0683000,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0683000","Lat":"0.0378000","KPI":146,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0378000],[0.0709300,0.0378000],[0.0709300,0.0396000],[0.0683000,0.0396000],[0.0683000,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0683000","Lat":"0.0396000","KPI":753,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0396000],[0.0709300,0.0396000],[0.0709300,0.0414000],[0.0683000,0.0414000],[0.0683000,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0683000","Lat":"0.0414000","KPI":584,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0414000],[0.0709300,0.0414000],[0.0709300,0.0432000],[0.0683000,0.0432000],[0.0683000,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":41,"Long":"0.0683000","Lat":"0.0432000","KPI":234,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0432000],[0.0709300,0.0432000],[0.0709300,0.0450000],[0.0683000,0.0450000],[0.0683000,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0683000","Lat":"0.0450000","KPI":743,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0450000],[0.0709300,0.0450000],[0.0709300,0.0468000],[0.0683000,0.0468000],[0.0683000,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":59,"Long":"0.0683000","Lat":"0.0468000","KPI":336,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0468000],[0.0709300,0.0468000],[0.0709300,0.0486000],[0.0683000,0.0486000],[0.0683000,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0683000","Lat":"0.0486000","KPI":619,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0486000],[0.0709300,0.0486000],[0.0709300,0.0504000],[0.0683000,0.0504000],[0.0683000,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0683000","Lat":"0.0504000","KPI":187,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0504000],[0.0709300,0.0504000],[0.0709300,0.0522000],[0.0683000,0.0522000],[0.0683000,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0683000","Lat":"0.0522000","KPI":415,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0522000],[0.0709300,0.0522000],[0.0709300,0.0540000],[0.0683000,0.0540000],[0.0683000,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0683000","Lat":"0.0540000","KPI":427,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0540000],[0.0709300,0.0540000],[0.0709300,0.0558000],[0.0683000,0.0558000],[0.0683000,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0683000","Lat":"0.0558000","KPI":830,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0683000,0.0558000],[0.0709300,0.0558000],[0.0709300,0.0576000],[0.0683000,0.0576000],[0.0683000,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0709300","Lat":"0.0000000","KPI":385,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0000000],[0.0735600,0.0000000],[0.0735600,0.0018000],[0.0709300,0.0018000],[0.0709300,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0709300","Lat":"0.0018000","KPI":198,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0018000],[0.0735600,0.0018000],[0.0735600,0.0036000],[0.0709300,0.0036000],[0.0709300,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0709300","Lat":"0.0036000","KPI":627,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0036000],[0.0735600,0.0036000],[0.0735600,0.0054000],[0.0709300,0.0054000],[0.0709300,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":14,"Long":"0.0709300","Lat":"0.0054000","KPI":619,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0054000],[0.0735600,0.0054000],[0.0735600,0.0072000],[0.0709300,0.0072000],[0.0709300,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":11,"Long":"0.0709300","Lat":"0.0072000","KPI":512,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0072000],[0.0735600,0.0072000],[0.0735600,0.0090000],[0.0709300,0.0090000],[0.0709300,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0709300","Lat":"0.0090000","KPI":382,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0090000],[0.0735600,0.0090000],[0.0735600,0.0108000],[0.0709300,0.0108000],[0.0709300,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0709300","Lat":"0.0108000","KPI":967,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0108000],[0.0735600,0.0108000],[0.0735600,0.0126000],[0.0709300,0.0126000],[0.0709300,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0709300","Lat":"0.0126000","KPI":163,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0126000],[0.0735600,0.0126000],[0.0735600,0.0144000],[0.0709300,0.0144000],[0.0709300,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0709300","Lat":"0.0144000","KPI":784,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0144000],[0.0735600,0.0144000],[0.0735600,0.0162000],[0.0709300,0.0162000],[0.0709300,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":56,"Long":"0.0709300","Lat":"0.0162000","KPI":737,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0162000],[0.0735600,0.0162000],[0.0735600,0.0180000],[0.0709300,0.0180000],[0.0709300,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":92,"Long":"0.0709300","Lat":"0.0180000","KPI":334,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0180000],[0.0735600,0.0180000],[0.0735600,0.0198000],[0.0709300,0.0198000],[0.0709300,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0709300","Lat":"0.0198000","KPI":177,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0198000],[0.0735600,0.0198000],[0.0735600,0.0216000],[0.0709300,0.0216000],[0.0709300,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0709300","Lat":"0.0216000","KPI":768,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0216000],[0.0735600,0.0216000],[0.0735600,0.0234000],[0.0709300,0.0234000],[0.0709300,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0709300","Lat":"0.0234000","KPI":811,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0234000],[0.0735600,0.0234000],[0.0735600,0.0252000],[0.0709300,0.0252000],[0.0709300,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0709300","Lat":"0.0252000","KPI":445,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0252000],[0.0735600,0.0252000],[0.0735600,0.0270000],[0.0709300,0.0270000],[0.0709300,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0709300","Lat":"0.0270000","KPI":539,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0270000],[0.0735600,0.0270000],[0.0735600,0.0288000],[0.0709300,0.0288000],[0.0709300,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":16,"Long":"0.0709300","Lat":"0.0288000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0288000],[0.0735600,0.0288000],[0.0735600,0.0306000],[0.0709300,0.0306000],[0.0709300,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":47,"Long":"0.0709300","Lat":"0.0306000","KPI":444,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0306000],[0.0735600,0.0306000],[0.0735600,0.0324000],[0.0709300,0.0324000],[0.0709300,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0709300","Lat":"0.0324000","KPI":531,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0324000],[0.0735600,0.0324000],[0.0735600,0.0342000],[0.0709300,0.0342000],[0.0709300,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":27,"Long":"0.0709300","Lat":"0.0342000","KPI":37,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0342000],[0.0735600,0.0342000],[0.0735600,0.0360000],[0.0709300,0.0360000],[0.0709300,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0709300","Lat":"0.0360000","KPI":517,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0360000],[0.0735600,0.0360000],[0.0735600,0.0378000],[0.0709300,0.0378000],[0.0709300,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0709300","Lat":"0.0378000","KPI":876,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0378000],[0.0735600,0.0378000],[0.0735600,0.0396000],[0.0709300,0.0396000],[0.0709300,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0709300","Lat":"0.0396000","KPI":186,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0396000],[0.0735600,0.0396000],[0.0735600,0.0414000],[0.0709300,0.0414000],[0.0709300,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0709300","Lat":"0.0414000","KPI":744,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0414000],[0.0735600,0.0414000],[0.0735600,0.0432000],[0.0709300,0.0432000],[0.0709300,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0709300","Lat":"0.0432000","KPI":493,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0432000],[0.0735600,0.0432000],[0.0735600,0.0450000],[0.0709300,0.0450000],[0.0709300,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0709300","Lat":"0.0450000","KPI":72,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0450000],[0.0735600,0.0450000],[0.0735600,0.0468000],[0.0709300,0.0468000],[0.0709300,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0709300","Lat":"0.0468000","KPI":73,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0468000],[0.0735600,0.0468000],[0.0735600,0.0486000],[0.0709300,0.0486000],[0.0709300,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":65,"Long":"0.0709300","Lat":"0.0486000","KPI":762,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0486000],[0.0735600,0.0486000],[0.0735600,0.0504000],[0.0709300,0.0504000],[0.0709300,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":26,"Long":"0.0709300","Lat":"0.0504000","KPI":745,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0504000],[0.0735600,0.0504000],[0.0735600,0.0522000],[0.0709300,0.0522000],[0.0709300,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0709300","Lat":"0.0522000","KPI":146,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0522000],[0.0735600,0.0522000],[0.0735600,0.0540000],[0.0709300,0.0540000],[0.0709300,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0709300","Lat":"0.0540000","KPI":425,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0540000],[0.0735600,0.0540000],[0.0735600,0.0558000],[0.0709300,0.0558000],[0.0709300,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":68,"Long":"0.0709300","Lat":"0.0558000","KPI":360,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0709300,0.0558000],[0.0735600,0.0558000],[0.0735600,0.0576000],[0.0709300,0.0576000],[0.0709300,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":6,"Long":"0.0735600","Lat":"0.0000000","KPI":230,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0000000],[0.0761900,0.0000000],[0.0761900,0.0018000],[0.0735600,0.0018000],[0.0735600,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0735600","Lat":"0.0018000","KPI":19,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0018000],[0.0761900,0.0018000],[0.0761900,0.0036000],[0.0735600,0.0036000],[0.0735600,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0735600","Lat":"0.0036000","KPI":525,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0036000],[0.0761900,0.0036000],[0.0761900,0.0054000],[0.0735600,0.0054000],[0.0735600,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0735600","Lat":"0.0054000","KPI":740,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0054000],[0.0761900,0.0054000],[0.0761900,0.0072000],[0.0735600,0.0072000],[0.0735600,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0735600","Lat":"0.0072000","KPI":217,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0072000],[0.0761900,0.0072000],[0.0761900,0.0090000],[0.0735600,0.0090000],[0.0735600,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0735600","Lat":"0.0090000","KPI":673,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0090000],[0.0761900,0.0090000],[0.0761900,0.0108000],[0.0735600,0.0108000],[0.0735600,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0735600","Lat":"0.0108000","KPI":630,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0108000],[0.0761900,0.0108000],[0.0761900,0.0126000],[0.0735600,0.0126000],[0.0735600,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0735600","Lat":"0.0126000","KPI":949,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0126000],[0.0761900,0.0126000],[0.0761900,0.0144000],[0.0735600,0.0144000],[0.0735600,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0735600","Lat":"0.0144000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0144000],[0.0761900,0.0144000],[0.0761900,0.0162000],[0.0735600,0.0162000],[0.0735600,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0735600","Lat":"0.0162000","KPI":652,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0162000],[0.0761900,0.0162000],[0.0761900,0.0180000],[0.0735600,0.0180000],[0.0735600,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0735600","Lat":"0.0180000","KPI":998,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0180000],[0.0761900,0.0180000],[0.0761900,0.0198000],[0.0735600,0.0198000],[0.0735600,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0735600","Lat":"0.0198000","KPI":679,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0198000],[0.0761900,0.0198000],[0.0761900,0.0216000],[0.0735600,0.0216000],[0.0735600,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":52,"Long":"0.0735600","Lat":"0.0216000","KPI":878,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0216000],[0.0761900,0.0216000],[0.0761900,0.0234000],[0.0735600,0.0234000],[0.0735600,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0735600","Lat":"0.0234000","KPI":670,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0234000],[0.0761900,0.0234000],[0.0761900,0.0252000],[0.0735600,0.0252000],[0.0735600,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":9,"Long":"0.0735600","Lat":"0.0252000","KPI":986,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0252000],[0.0761900,0.0252000],[0.0761900,0.0270000],[0.0735600,0.0270000],[0.0735600,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0735600","Lat":"0.0270000","KPI":969,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0270000],[0.0761900,0.0270000],[0.0761900,0.0288000],[0.0735600,0.0288000],[0.0735600,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":2,"Long":"0.0735600","Lat":"0.0288000","KPI":362,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0288000],[0.0761900,0.0288000],[0.0761900,0.0306000],[0.0735600,0.0306000],[0.0735600,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0735600","Lat":"0.0306000","KPI":470,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0306000],[0.0761900,0.0306000],[0.0761900,0.0324000],[0.0735600,0.0324000],[0.0735600,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0735600","Lat":"0.0324000","KPI":397,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0324000],[0.0761900,0.0324000],[0.0761900,0.0342000],[0.0735600,0.0342000],[0.0735600,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0735600","Lat":"0.0342000","KPI":61,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0342000],[0.0761900,0.0342000],[0.0761900,0.0360000],[0.0735600,0.0360000],[0.0735600,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0735600","Lat":"0.0360000","KPI":774,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0360000],[0.0761900,0.0360000],[0.0761900,0.0378000],[0.0735600,0.0378000],[0.0735600,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0735600","Lat":"0.0378000","KPI":298,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0378000],[0.0761900,0.0378000],[0.0761900,0.0396000],[0.0735600,0.0396000],[0.0735600,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0735600","Lat":"0.0396000","KPI":525,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0396000],[0.0761900,0.0396000],[0.0761900,0.0414000],[0.0735600,0.0414000],[0.0735600,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0735600","Lat":"0.0414000","KPI":904,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0414000],[0.0761900,0.0414000],[0.0761900,0.0432000],[0.0735600,0.0432000],[0.0735600,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0735600","Lat":"0.0432000","KPI":959,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0432000],[0.0761900,0.0432000],[0.0761900,0.0450000],[0.0735600,0.0450000],[0.0735600,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0735600","Lat":"0.0450000","KPI":631,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0450000],[0.0761900,0.0450000],[0.0761900,0.0468000],[0.0735600,0.0468000],[0.0735600,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0735600","Lat":"0.0468000","KPI":580,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0468000],[0.0761900,0.0468000],[0.0761900,0.0486000],[0.0735600,0.0486000],[0.0735600,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0735600","Lat":"0.0486000","KPI":76,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0486000],[0.0761900,0.0486000],[0.0761900,0.0504000],[0.0735600,0.0504000],[0.0735600,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":5,"Long":"0.0735600","Lat":"0.0504000","KPI":21,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0504000],[0.0761900,0.0504000],[0.0761900,0.0522000],[0.0735600,0.0522000],[0.0735600,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0735600","Lat":"0.0522000","KPI":40,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0522000],[0.0761900,0.0522000],[0.0761900,0.0540000],[0.0735600,0.0540000],[0.0735600,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0735600","Lat":"0.0540000","KPI":441,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0540000],[0.0761900,0.0540000],[0.0761900,0.0558000],[0.0735600,0.0558000],[0.0735600,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0735600","Lat":"0.0558000","KPI":118,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0735600,0.0558000],[0.0761900,0.0558000],[0.0761900,0.0576000],[0.0735600,0.0576000],[0.0735600,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":53,"Long":"0.0761800","Lat":"0.0000000","KPI":800,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0000000],[0.0788100,0.0000000],[0.0788100,0.0018000],[0.0761800,0.0018000],[0.0761800,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0761800","Lat":"0.0018000","KPI":306,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0018000],[0.0788100,0.0018000],[0.0788100,0.0036000],[0.0761800,0.0036000],[0.0761800,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":39,"Long":"0.0761800","Lat":"0.0036000","KPI":928,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0036000],[0.0788100,0.0036000],[0.0788100,0.0054000],[0.0761800,0.0054000],[0.0761800,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0761800","Lat":"0.0054000","KPI":529,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0054000],[0.0788100,0.0054000],[0.0788100,0.0072000],[0.0761800,0.0072000],[0.0761800,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":64,"Long":"0.0761800","Lat":"0.0072000","KPI":302,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0072000],[0.0788100,0.0072000],[0.0788100,0.0090000],[0.0761800,0.0090000],[0.0761800,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0761800","Lat":"0.0090000","KPI":179,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0090000],[0.0788100,0.0090000],[0.0788100,0.0108000],[0.0761800,0.0108000],[0.0761800,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0761800","Lat":"0.0108000","KPI":37,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0108000],[0.0788100,0.0108000],[0.0788100,0.0126000],[0.0761800,0.0126000],[0.0761800,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":34,"Long":"0.0761800","Lat":"0.0126000","KPI":941,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0126000],[0.0788100,0.0126000],[0.0788100,0.0144000],[0.0761800,0.0144000],[0.0761800,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0761800","Lat":"0.0144000","KPI":654,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0144000],[0.0788100,0.0144000],[0.0788100,0.0162000],[0.0761800,0.0162000],[0.0761800,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":49,"Long":"0.0761800","Lat":"0.0162000","KPI":400,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0162000],[0.0788100,0.0162000],[0.0788100,0.0180000],[0.0761800,0.0180000],[0.0761800,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0761800","Lat":"0.0180000","KPI":819,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0180000],[0.0788100,0.0180000],[0.0788100,0.0198000],[0.0761800,0.0198000],[0.0761800,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":97,"Long":"0.0761800","Lat":"0.0198000","KPI":213,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0198000],[0.0788100,0.0198000],[0.0788100,0.0216000],[0.0761800,0.0216000],[0.0761800,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0761800","Lat":"0.0216000","KPI":400,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0216000],[0.0788100,0.0216000],[0.0788100,0.0234000],[0.0761800,0.0234000],[0.0761800,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":86,"Long":"0.0761800","Lat":"0.0234000","KPI":872,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0234000],[0.0788100,0.0234000],[0.0788100,0.0252000],[0.0761800,0.0252000],[0.0761800,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0761800","Lat":"0.0252000","KPI":857,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0252000],[0.0788100,0.0252000],[0.0788100,0.0270000],[0.0761800,0.0270000],[0.0761800,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0761800","Lat":"0.0270000","KPI":461,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0270000],[0.0788100,0.0270000],[0.0788100,0.0288000],[0.0761800,0.0288000],[0.0761800,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":54,"Long":"0.0761800","Lat":"0.0288000","KPI":204,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0288000],[0.0788100,0.0288000],[0.0788100,0.0306000],[0.0761800,0.0306000],[0.0761800,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0761800","Lat":"0.0306000","KPI":107,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0306000],[0.0788100,0.0306000],[0.0788100,0.0324000],[0.0761800,0.0324000],[0.0761800,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0761800","Lat":"0.0324000","KPI":523,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0324000],[0.0788100,0.0324000],[0.0788100,0.0342000],[0.0761800,0.0342000],[0.0761800,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0761800","Lat":"0.0342000","KPI":263,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0342000],[0.0788100,0.0342000],[0.0788100,0.0360000],[0.0761800,0.0360000],[0.0761800,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":57,"Long":"0.0761800","Lat":"0.0360000","KPI":272,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0360000],[0.0788100,0.0360000],[0.0788100,0.0378000],[0.0761800,0.0378000],[0.0761800,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0761800","Lat":"0.0378000","KPI":321,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0378000],[0.0788100,0.0378000],[0.0788100,0.0396000],[0.0761800,0.0396000],[0.0761800,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":50,"Long":"0.0761800","Lat":"0.0396000","KPI":462,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0396000],[0.0788100,0.0396000],[0.0788100,0.0414000],[0.0761800,0.0414000],[0.0761800,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":99,"Long":"0.0761800","Lat":"0.0414000","KPI":556,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0414000],[0.0788100,0.0414000],[0.0788100,0.0432000],[0.0761800,0.0432000],[0.0761800,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0761800","Lat":"0.0432000","KPI":71,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0432000],[0.0788100,0.0432000],[0.0788100,0.0450000],[0.0761800,0.0450000],[0.0761800,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":78,"Long":"0.0761800","Lat":"0.0450000","KPI":820,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0450000],[0.0788100,0.0450000],[0.0788100,0.0468000],[0.0761800,0.0468000],[0.0761800,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":60,"Long":"0.0761800","Lat":"0.0468000","KPI":994,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0468000],[0.0788100,0.0468000],[0.0788100,0.0486000],[0.0761800,0.0486000],[0.0761800,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":15,"Long":"0.0761800","Lat":"0.0486000","KPI":976,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0486000],[0.0788100,0.0486000],[0.0788100,0.0504000],[0.0761800,0.0504000],[0.0761800,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":30,"Long":"0.0761800","Lat":"0.0504000","KPI":148,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0504000],[0.0788100,0.0504000],[0.0788100,0.0522000],[0.0761800,0.0522000],[0.0761800,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":76,"Long":"0.0761800","Lat":"0.0522000","KPI":541,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0522000],[0.0788100,0.0522000],[0.0788100,0.0540000],[0.0761800,0.0540000],[0.0761800,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":29,"Long":"0.0761800","Lat":"0.0540000","KPI":371,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0540000],[0.0788100,0.0540000],[0.0788100,0.0558000],[0.0761800,0.0558000],[0.0761800,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0761800","Lat":"0.0558000","KPI":635,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0761800,0.0558000],[0.0788100,0.0558000],[0.0788100,0.0576000],[0.0761800,0.0576000],[0.0761800,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":80,"Long":"0.0788100","Lat":"0.0000000","KPI":124,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0000000],[0.0814400,0.0000000],[0.0814400,0.0018000],[0.0788100,0.0018000],[0.0788100,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":10,"Long":"0.0788100","Lat":"0.0018000","KPI":886,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0018000],[0.0814400,0.0018000],[0.0814400,0.0036000],[0.0788100,0.0036000],[0.0788100,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":24,"Long":"0.0788100","Lat":"0.0036000","KPI":84,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0036000],[0.0814400,0.0036000],[0.0814400,0.0054000],[0.0788100,0.0054000],[0.0788100,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0788100","Lat":"0.0054000","KPI":609,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0054000],[0.0814400,0.0054000],[0.0814400,0.0072000],[0.0788100,0.0072000],[0.0788100,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0788100","Lat":"0.0072000","KPI":174,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0072000],[0.0814400,0.0072000],[0.0814400,0.0090000],[0.0788100,0.0090000],[0.0788100,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0788100","Lat":"0.0090000","KPI":228,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0090000],[0.0814400,0.0090000],[0.0814400,0.0108000],[0.0788100,0.0108000],[0.0788100,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":70,"Long":"0.0788100","Lat":"0.0108000","KPI":665,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0108000],[0.0814400,0.0108000],[0.0814400,0.0126000],[0.0788100,0.0126000],[0.0788100,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":4,"Long":"0.0788100","Lat":"0.0126000","KPI":612,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0126000],[0.0814400,0.0126000],[0.0814400,0.0144000],[0.0788100,0.0144000],[0.0788100,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0788100","Lat":"0.0144000","KPI":571,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0144000],[0.0814400,0.0144000],[0.0814400,0.0162000],[0.0788100,0.0162000],[0.0788100,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0788100","Lat":"0.0162000","KPI":709,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0162000],[0.0814400,0.0162000],[0.0814400,0.0180000],[0.0788100,0.0180000],[0.0788100,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0788100","Lat":"0.0180000","KPI":663,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0180000],[0.0814400,0.0180000],[0.0814400,0.0198000],[0.0788100,0.0198000],[0.0788100,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":33,"Long":"0.0788100","Lat":"0.0198000","KPI":645,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0198000],[0.0814400,0.0198000],[0.0814400,0.0216000],[0.0788100,0.0216000],[0.0788100,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":84,"Long":"0.0788100","Lat":"0.0216000","KPI":86,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0216000],[0.0814400,0.0216000],[0.0814400,0.0234000],[0.0788100,0.0234000],[0.0788100,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":72,"Long":"0.0788100","Lat":"0.0234000","KPI":223,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0234000],[0.0814400,0.0234000],[0.0814400,0.0252000],[0.0788100,0.0252000],[0.0788100,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0788100","Lat":"0.0252000","KPI":749,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0252000],[0.0814400,0.0252000],[0.0814400,0.0270000],[0.0788100,0.0270000],[0.0788100,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":28,"Long":"0.0788100","Lat":"0.0270000","KPI":591,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0270000],[0.0814400,0.0270000],[0.0814400,0.0288000],[0.0788100,0.0288000],[0.0788100,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":38,"Long":"0.0788100","Lat":"0.0288000","KPI":345,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0288000],[0.0814400,0.0288000],[0.0814400,0.0306000],[0.0788100,0.0306000],[0.0788100,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":21,"Long":"0.0788100","Lat":"0.0306000","KPI":699,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0306000],[0.0814400,0.0306000],[0.0814400,0.0324000],[0.0788100,0.0324000],[0.0788100,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":58,"Long":"0.0788100","Lat":"0.0324000","KPI":141,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0324000],[0.0814400,0.0324000],[0.0814400,0.0342000],[0.0788100,0.0342000],[0.0788100,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0788100","Lat":"0.0342000","KPI":35,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0342000],[0.0814400,0.0342000],[0.0814400,0.0360000],[0.0788100,0.0360000],[0.0788100,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0788100","Lat":"0.0360000","KPI":420,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0360000],[0.0814400,0.0360000],[0.0814400,0.0378000],[0.0788100,0.0378000],[0.0788100,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0788100","Lat":"0.0378000","KPI":74,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0378000],[0.0814400,0.0378000],[0.0814400,0.0396000],[0.0788100,0.0396000],[0.0788100,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":93,"Long":"0.0788100","Lat":"0.0396000","KPI":771,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0396000],[0.0814400,0.0396000],[0.0814400,0.0414000],[0.0788100,0.0414000],[0.0788100,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0788100","Lat":"0.0414000","KPI":790,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0414000],[0.0814400,0.0414000],[0.0814400,0.0432000],[0.0788100,0.0432000],[0.0788100,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0788100","Lat":"0.0432000","KPI":263,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0432000],[0.0814400,0.0432000],[0.0814400,0.0450000],[0.0788100,0.0450000],[0.0788100,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":62,"Long":"0.0788100","Lat":"0.0450000","KPI":575,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0450000],[0.0814400,0.0450000],[0.0814400,0.0468000],[0.0788100,0.0468000],[0.0788100,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0788100","Lat":"0.0468000","KPI":916,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0468000],[0.0814400,0.0468000],[0.0814400,0.0486000],[0.0788100,0.0486000],[0.0788100,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":71,"Long":"0.0788100","Lat":"0.0486000","KPI":911,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0486000],[0.0814400,0.0486000],[0.0814400,0.0504000],[0.0788100,0.0504000],[0.0788100,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0788100","Lat":"0.0504000","KPI":757,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0504000],[0.0814400,0.0504000],[0.0814400,0.0522000],[0.0788100,0.0522000],[0.0788100,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0788100","Lat":"0.0522000","KPI":197,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0522000],[0.0814400,0.0522000],[0.0814400,0.0540000],[0.0788100,0.0540000],[0.0788100,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":36,"Long":"0.0788100","Lat":"0.0540000","KPI":206,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0540000],[0.0814400,0.0540000],[0.0814400,0.0558000],[0.0788100,0.0558000],[0.0788100,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":19,"Long":"0.0788100","Lat":"0.0558000","KPI":170,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0788100,0.0558000],[0.0814400,0.0558000],[0.0814400,0.0576000],[0.0788100,0.0576000],[0.0788100,0.0558000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0814400","Lat":"0.0000000","KPI":482,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0000000],[0.0840700,0.0000000],[0.0840700,0.0018000],[0.0814400,0.0018000],[0.0814400,0.0000000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0814400","Lat":"0.0018000","KPI":505,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0018000],[0.0840700,0.0018000],[0.0840700,0.0036000],[0.0814400,0.0036000],[0.0814400,0.0018000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0814400","Lat":"0.0036000","KPI":219,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0036000],[0.0840700,0.0036000],[0.0840700,0.0054000],[0.0814400,0.0054000],[0.0814400,0.0036000]]]}} +{"type": "Feature","properties": {"Tile":98,"Long":"0.0814400","Lat":"0.0054000","KPI":272,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0054000],[0.0840700,0.0054000],[0.0840700,0.0072000],[0.0814400,0.0072000],[0.0814400,0.0054000]]]}} +{"type": "Feature","properties": {"Tile":69,"Long":"0.0814400","Lat":"0.0072000","KPI":502,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0072000],[0.0840700,0.0072000],[0.0840700,0.0090000],[0.0814400,0.0090000],[0.0814400,0.0072000]]]}} +{"type": "Feature","properties": {"Tile":77,"Long":"0.0814400","Lat":"0.0090000","KPI":131,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0090000],[0.0840700,0.0090000],[0.0840700,0.0108000],[0.0814400,0.0108000],[0.0814400,0.0090000]]]}} +{"type": "Feature","properties": {"Tile":18,"Long":"0.0814400","Lat":"0.0108000","KPI":98,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0108000],[0.0840700,0.0108000],[0.0840700,0.0126000],[0.0814400,0.0126000],[0.0814400,0.0108000]]]}} +{"type": "Feature","properties": {"Tile":0,"Long":"0.0814400","Lat":"0.0126000","KPI":299,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0126000],[0.0840700,0.0126000],[0.0840700,0.0144000],[0.0814400,0.0144000],[0.0814400,0.0126000]]]}} +{"type": "Feature","properties": {"Tile":89,"Long":"0.0814400","Lat":"0.0144000","KPI":730,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0144000],[0.0840700,0.0144000],[0.0840700,0.0162000],[0.0814400,0.0162000],[0.0814400,0.0144000]]]}} +{"type": "Feature","properties": {"Tile":67,"Long":"0.0814400","Lat":"0.0162000","KPI":605,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0162000],[0.0840700,0.0162000],[0.0840700,0.0180000],[0.0814400,0.0180000],[0.0814400,0.0162000]]]}} +{"type": "Feature","properties": {"Tile":13,"Long":"0.0814400","Lat":"0.0180000","KPI":875,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0180000],[0.0840700,0.0180000],[0.0840700,0.0198000],[0.0814400,0.0198000],[0.0814400,0.0180000]]]}} +{"type": "Feature","properties": {"Tile":31,"Long":"0.0814400","Lat":"0.0198000","KPI":143,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0198000],[0.0840700,0.0198000],[0.0840700,0.0216000],[0.0814400,0.0216000],[0.0814400,0.0198000]]]}} +{"type": "Feature","properties": {"Tile":40,"Long":"0.0814400","Lat":"0.0216000","KPI":704,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0216000],[0.0840700,0.0216000],[0.0840700,0.0234000],[0.0814400,0.0234000],[0.0814400,0.0216000]]]}} +{"type": "Feature","properties": {"Tile":73,"Long":"0.0814400","Lat":"0.0234000","KPI":393,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0234000],[0.0840700,0.0234000],[0.0840700,0.0252000],[0.0814400,0.0252000],[0.0814400,0.0234000]]]}} +{"type": "Feature","properties": {"Tile":46,"Long":"0.0814400","Lat":"0.0252000","KPI":462,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0252000],[0.0840700,0.0252000],[0.0840700,0.0270000],[0.0814400,0.0270000],[0.0814400,0.0252000]]]}} +{"type": "Feature","properties": {"Tile":63,"Long":"0.0814400","Lat":"0.0270000","KPI":934,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0270000],[0.0840700,0.0270000],[0.0840700,0.0288000],[0.0814400,0.0288000],[0.0814400,0.0270000]]]}} +{"type": "Feature","properties": {"Tile":79,"Long":"0.0814400","Lat":"0.0288000","KPI":827,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0288000],[0.0840700,0.0288000],[0.0840700,0.0306000],[0.0814400,0.0306000],[0.0814400,0.0288000]]]}} +{"type": "Feature","properties": {"Tile":83,"Long":"0.0814400","Lat":"0.0306000","KPI":276,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0306000],[0.0840700,0.0306000],[0.0840700,0.0324000],[0.0814400,0.0324000],[0.0814400,0.0306000]]]}} +{"type": "Feature","properties": {"Tile":25,"Long":"0.0814400","Lat":"0.0324000","KPI":474,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0324000],[0.0840700,0.0324000],[0.0840700,0.0342000],[0.0814400,0.0342000],[0.0814400,0.0324000]]]}} +{"type": "Feature","properties": {"Tile":55,"Long":"0.0814400","Lat":"0.0342000","KPI":706,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0342000],[0.0840700,0.0342000],[0.0840700,0.0360000],[0.0814400,0.0360000],[0.0814400,0.0342000]]]}} +{"type": "Feature","properties": {"Tile":44,"Long":"0.0814400","Lat":"0.0360000","KPI":400,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0360000],[0.0840700,0.0360000],[0.0840700,0.0378000],[0.0814400,0.0378000],[0.0814400,0.0360000]]]}} +{"type": "Feature","properties": {"Tile":75,"Long":"0.0814400","Lat":"0.0378000","KPI":435,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0378000],[0.0840700,0.0378000],[0.0840700,0.0396000],[0.0814400,0.0396000],[0.0814400,0.0378000]]]}} +{"type": "Feature","properties": {"Tile":61,"Long":"0.0814400","Lat":"0.0396000","KPI":349,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0396000],[0.0840700,0.0396000],[0.0840700,0.0414000],[0.0814400,0.0414000],[0.0814400,0.0396000]]]}} +{"type": "Feature","properties": {"Tile":42,"Long":"0.0814400","Lat":"0.0414000","KPI":824,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0414000],[0.0840700,0.0414000],[0.0840700,0.0432000],[0.0814400,0.0432000],[0.0814400,0.0414000]]]}} +{"type": "Feature","properties": {"Tile":22,"Long":"0.0814400","Lat":"0.0432000","KPI":995,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0432000],[0.0840700,0.0432000],[0.0840700,0.0450000],[0.0814400,0.0450000],[0.0814400,0.0432000]]]}} +{"type": "Feature","properties": {"Tile":74,"Long":"0.0814400","Lat":"0.0450000","KPI":897,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0450000],[0.0840700,0.0450000],[0.0840700,0.0468000],[0.0814400,0.0468000],[0.0814400,0.0450000]]]}} +{"type": "Feature","properties": {"Tile":23,"Long":"0.0814400","Lat":"0.0468000","KPI":447,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0468000],[0.0840700,0.0468000],[0.0840700,0.0486000],[0.0814400,0.0486000],[0.0814400,0.0468000]]]}} +{"type": "Feature","properties": {"Tile":95,"Long":"0.0814400","Lat":"0.0486000","KPI":903,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0486000],[0.0840700,0.0486000],[0.0840700,0.0504000],[0.0814400,0.0504000],[0.0814400,0.0486000]]]}} +{"type": "Feature","properties": {"Tile":94,"Long":"0.0814400","Lat":"0.0504000","KPI":7,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0504000],[0.0840700,0.0504000],[0.0840700,0.0522000],[0.0814400,0.0522000],[0.0814400,0.0504000]]]}} +{"type": "Feature","properties": {"Tile":32,"Long":"0.0814400","Lat":"0.0522000","KPI":189,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0522000],[0.0840700,0.0522000],[0.0840700,0.0540000],[0.0814400,0.0540000],[0.0814400,0.0522000]]]}} +{"type": "Feature","properties": {"Tile":7,"Long":"0.0814400","Lat":"0.0540000","KPI":63,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0540000],[0.0840700,0.0540000],[0.0840700,0.0558000],[0.0814400,0.0558000],[0.0814400,0.0540000]]]}} +{"type": "Feature","properties": {"Tile":3,"Long":"0.0814400","Lat":"0.0558000","KPI":242,"fill": "#000066","fill-opacity":0.5},"geometry":{"type":"Polygon","coordinates":[[[0.0814400,0.0558000],[0.0840700,0.0558000],[0.0840700,0.0576000],[0.0814400,0.0576000],[0.0814400,0.0558000]]]}} diff --git a/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json b/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json index b339cadbc..70fded447 100644 --- a/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json +++ b/tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json @@ -1,9 +1,9 @@ { "type": "FeatureCollection", "properties": { -"bounds": "0.000000,0.000000,0.084065,0.057600", -"center": "0.084065,0.057600,11", +"bounds": "0.000000,0.000000,0.084070,0.057600", +"center": "0.084070,0.057600,11", "description": "tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", "format": "pbf", -"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 11, \"fields\": {\"KPI\": \"Number\", \"Lat\": \"String\", \"Long\": \"String\", \"Tile\": \"Number\", \"fill\": \"String\", \"fill-opacity\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1024,\"geometry\": \"Polygon\",\"attributeCount\": 6,\"attributes\": [{\"attribute\": \"KPI\",\"count\": 656,\"type\": \"number\",\"values\": [0,1,100,101,102,103,109,11,110,112,113,115,116,117,119,12,120,121,122,124,125,126,127,128,129,130,131,132,133,134,137,138,139,143,145,147,148,149,150,152,153,158,16,160,161,162,163,165,166,171,174,175,176,178,18,180,181,183,185,186,187,188,190,191,192,198,199,2,20,201,202,204,205,206,207,208,21,210,211,212,213,217,218,219,22,223,224,225,226,227,228,23,230,231,232,233,234,235,236,237],\"min\": 0,\"max\": 999},{\"attribute\": \"Lat\",\"count\": 32,\"type\": \"string\",\"values\": [\"0.0000000\",\"0.0018000\",\"0.0036000\",\"0.0054000\",\"0.0072000\",\"0.0090000\",\"0.0108000\",\"0.0126000\",\"0.0144000\",\"0.0162000\",\"0.0180000\",\"0.0198000\",\"0.0216000\",\"0.0234000\",\"0.0252000\",\"0.0270000\",\"0.0288000\",\"0.0306000\",\"0.0324000\",\"0.0342000\",\"0.0360000\",\"0.0378000\",\"0.0396000\",\"0.0414000\",\"0.0432000\",\"0.0450000\",\"0.0468000\",\"0.0486000\",\"0.0504000\",\"0.0522000\",\"0.0540000\",\"0.0558000\"]},{\"attribute\": \"Long\",\"count\": 32,\"type\": \"string\",\"values\": [\"0.0000000\",\"0.0026270\",\"0.0052541\",\"0.0078811\",\"0.0105082\",\"0.0131352\",\"0.0157622\",\"0.0183893\",\"0.0210163\",\"0.0236434\",\"0.0262704\",\"0.0288974\",\"0.0315245\",\"0.0341515\",\"0.0367786\",\"0.0394056\",\"0.0420326\",\"0.0446597\",\"0.0472867\",\"0.0499138\",\"0.0525408\",\"0.0551678\",\"0.0577949\",\"0.0604219\",\"0.0630490\",\"0.0656760\",\"0.0683030\",\"0.0709301\",\"0.0735571\",\"0.0761842\",\"0.0788112\",\"0.0814382\"]},{\"attribute\": \"Tile\",\"count\": 100,\"type\": \"number\",\"values\": [0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 0,\"max\": 99},{\"attribute\": \"fill\",\"count\": 1,\"type\": \"string\",\"values\": [\"#000066\"]},{\"attribute\": \"fill-opacity\",\"count\": 1,\"type\": \"number\",\"values\": [0.5],\"min\": 0.5,\"max\": 0.5}]}]}}", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 11, \"fields\": {\"KPI\": \"Number\", \"Lat\": \"String\", \"Long\": \"String\", \"Tile\": \"Number\", \"fill\": \"String\", \"fill-opacity\": \"Number\"} } ],\"tilestats\": {\"layerCount\": 1,\"layers\": [{\"layer\": \"in\",\"count\": 1024,\"geometry\": \"Polygon\",\"attributeCount\": 6,\"attributes\": [{\"attribute\": \"KPI\",\"count\": 651,\"type\": \"number\",\"values\": [0,1,101,102,107,11,110,111,112,113,114,118,119,120,121,122,123,124,125,126,128,129,13,131,132,134,136,138,139,14,140,141,143,145,146,147,148,149,15,150,152,153,155,156,157,158,16,160,163,165,166,168,17,170,172,174,176,177,178,179,180,181,182,186,187,189,19,191,193,194,196,197,198,199,2,200,201,203,204,205,206,208,209,21,210,211,212,213,216,217,219,220,221,223,224,225,226,227,228,229],\"min\": 0,\"max\": 999},{\"attribute\": \"Lat\",\"count\": 32,\"type\": \"string\",\"values\": [\"0.0000000\",\"0.0018000\",\"0.0036000\",\"0.0054000\",\"0.0072000\",\"0.0090000\",\"0.0108000\",\"0.0126000\",\"0.0144000\",\"0.0162000\",\"0.0180000\",\"0.0198000\",\"0.0216000\",\"0.0234000\",\"0.0252000\",\"0.0270000\",\"0.0288000\",\"0.0306000\",\"0.0324000\",\"0.0342000\",\"0.0360000\",\"0.0378000\",\"0.0396000\",\"0.0414000\",\"0.0432000\",\"0.0450000\",\"0.0468000\",\"0.0486000\",\"0.0504000\",\"0.0522000\",\"0.0540000\",\"0.0558000\"]},{\"attribute\": \"Long\",\"count\": 32,\"type\": \"string\",\"values\": [\"0.0000000\",\"0.0026300\",\"0.0052500\",\"0.0078800\",\"0.0105100\",\"0.0131400\",\"0.0157600\",\"0.0183900\",\"0.0210200\",\"0.0236400\",\"0.0262700\",\"0.0289000\",\"0.0315200\",\"0.0341500\",\"0.0367800\",\"0.0394100\",\"0.0420300\",\"0.0446600\",\"0.0472900\",\"0.0499100\",\"0.0525400\",\"0.0551700\",\"0.0577900\",\"0.0604200\",\"0.0630500\",\"0.0656800\",\"0.0683000\",\"0.0709300\",\"0.0735600\",\"0.0761800\",\"0.0788100\",\"0.0814400\"]},{\"attribute\": \"Tile\",\"count\": 100,\"type\": \"number\",\"values\": [0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\": 0,\"max\": 99},{\"attribute\": \"fill\",\"count\": 1,\"type\": \"string\",\"values\": [\"#000066\"]},{\"attribute\": \"fill-opacity\",\"count\": 1,\"type\": \"number\",\"values\": [0.5],\"min\": 0.5,\"max\": 0.5}]}]}}", "maxzoom": "11", "minzoom": "0", "name": "tests/grid-unaligned/out/-z11_-D7_--grid-low-zooms.json.check.mbtiles", @@ -12,4659 +12,4659 @@ }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 32 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 31, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 32 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 32, "y": 31 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.087891 ], [ 0.043945, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.087891 ], [ 0.043945, 0.087891 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 64 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 63, "y": 63 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 64 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 64, "y": 63 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 128 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 127, "y": 127 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.065918 ], [ 0.010986, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.065918 ], [ 0.010986, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.065918 ], [ 0.010986, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.065918 ], [ 0.010986, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 128 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 128, "y": 127 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.065918 ], [ 0.010986, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.065918 ], [ 0.010986, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.065918 ], [ 0.010986, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.065918 ], [ 0.010986, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.065918 ], [ 0.021973, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.065918 ], [ 0.021973, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0540000", "KPI": 232, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.065918 ], [ 0.032959, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.065918 ], [ 0.032959, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0315200", "Lat": "0.0540000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.065918 ], [ 0.032959, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.065918 ], [ 0.032959, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0432000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0432000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0540000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0420300", "Lat": "0.0540000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.065918 ], [ 0.043945, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.065918 ], [ 0.043945, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0315245", "Lat": "0.0324000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0324000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0420326", "Lat": "0.0324000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0324000", "KPI": 477, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0525408", "Lat": "0.0540000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.065918 ], [ 0.054932, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.065918 ], [ 0.054932, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525400", "Lat": "0.0540000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.065918 ], [ 0.054932, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.065918 ], [ 0.054932, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0525408", "Lat": "0.0432000", "KPI": 658, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0525400", "Lat": "0.0432000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0656760", "Lat": "0.0540000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0656800", "Lat": "0.0540000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.065918 ], [ 0.065918, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.065918 ], [ 0.065918, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0540000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.065918 ], [ 0.076904, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.065918 ], [ 0.076904, 0.065918 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0761800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.065918 ], [ 0.076904, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.065918 ], [ 0.076904, 0.065918 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761842", "Lat": "0.0432000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0432000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0324000", "KPI": 245, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0324000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0656760", "Lat": "0.0324000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0656800", "Lat": "0.0324000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761842", "Lat": "0.0324000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0761800", "Lat": "0.0324000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 256 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 255, "y": 255 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.060425 ], [ 0.005493, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.060425 ], [ 0.005493, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.060425 ], [ 0.005493, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.060425 ], [ 0.005493, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.060425 ], [ 0.010986, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.060425 ], [ 0.010986, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.060425 ], [ 0.010986, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.060425 ], [ 0.010986, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0486000", "KPI": 595, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0105100", "Lat": "0.0486000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0105082", "Lat": "0.0378000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0378000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0270000", "KPI": 823, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0105100", "Lat": "0.0270000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0162000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105100", "Lat": "0.0162000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 256 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0157622", "Lat": "0.0108000", "KPI": 980, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157600", "Lat": "0.0108000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262704", "Lat": "0.0108000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262700", "Lat": "0.0108000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0108000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0108000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0108000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0577949", "Lat": "0.0108000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0577900", "Lat": "0.0108000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0108000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0709300", "Lat": "0.0108000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0814382", "Lat": "0.0108000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0814400", "Lat": "0.0108000", "KPI": 98, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 256, "y": 255 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.060425 ], [ 0.005493, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.060425 ], [ 0.005493, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.060425 ], [ 0.005493, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.060425 ], [ 0.005493, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.060425 ], [ 0.010986, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.060425 ], [ 0.010986, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.060425 ], [ 0.010986, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.060425 ], [ 0.010986, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0486000", "KPI": 595, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0105100", "Lat": "0.0486000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0540000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.060425 ], [ 0.016479, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.060425 ], [ 0.016479, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0157600", "Lat": "0.0540000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.060425 ], [ 0.016479, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.060425 ], [ 0.016479, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0157622", "Lat": "0.0486000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.054932 ], [ 0.016479, 0.049438 ], [ 0.010986, 0.049438 ], [ 0.010986, 0.054932 ], [ 0.016479, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0157600", "Lat": "0.0486000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.054932 ], [ 0.016479, 0.049438 ], [ 0.010986, 0.049438 ], [ 0.010986, 0.054932 ], [ 0.016479, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157622", "Lat": "0.0432000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.049438 ], [ 0.016479, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.049438 ], [ 0.016479, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0432000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.049438 ], [ 0.016479, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.049438 ], [ 0.016479, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.060425 ], [ 0.021973, 0.054932 ], [ 0.016479, 0.054932 ], [ 0.016479, 0.060425 ], [ 0.021973, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.060425 ], [ 0.021973, 0.054932 ], [ 0.016479, 0.054932 ], [ 0.016479, 0.060425 ], [ 0.021973, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0210163", "Lat": "0.0486000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.049438 ], [ 0.016479, 0.049438 ], [ 0.016479, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0210200", "Lat": "0.0486000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.049438 ], [ 0.016479, 0.049438 ], [ 0.016479, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.049438 ], [ 0.021973, 0.043945 ], [ 0.016479, 0.043945 ], [ 0.016479, 0.049438 ], [ 0.021973, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.049438 ], [ 0.021973, 0.043945 ], [ 0.016479, 0.043945 ], [ 0.016479, 0.049438 ], [ 0.021973, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0262704", "Lat": "0.0540000", "KPI": 765, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.060425 ], [ 0.027466, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.060425 ], [ 0.027466, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0262700", "Lat": "0.0540000", "KPI": 797, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.060425 ], [ 0.027466, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.060425 ], [ 0.027466, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0486000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.054932 ], [ 0.027466, 0.049438 ], [ 0.021973, 0.049438 ], [ 0.021973, 0.054932 ], [ 0.027466, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0262700", "Lat": "0.0486000", "KPI": 645, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.054932 ], [ 0.027466, 0.049438 ], [ 0.021973, 0.049438 ], [ 0.021973, 0.054932 ], [ 0.027466, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0540000", "KPI": 232, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.060425 ], [ 0.032959, 0.054932 ], [ 0.027466, 0.054932 ], [ 0.027466, 0.060425 ], [ 0.032959, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0315200", "Lat": "0.0540000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.060425 ], [ 0.032959, 0.054932 ], [ 0.027466, 0.054932 ], [ 0.027466, 0.060425 ], [ 0.032959, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0486000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.049438 ], [ 0.027466, 0.049438 ], [ 0.027466, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0315200", "Lat": "0.0486000", "KPI": 901, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.049438 ], [ 0.027466, 0.049438 ], [ 0.027466, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262704", "Lat": "0.0432000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.049438 ], [ 0.027466, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.049438 ], [ 0.027466, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0262700", "Lat": "0.0432000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.049438 ], [ 0.027466, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.049438 ], [ 0.027466, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0432000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.049438 ], [ 0.032959, 0.043945 ], [ 0.027466, 0.043945 ], [ 0.027466, 0.049438 ], [ 0.032959, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0432000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.049438 ], [ 0.032959, 0.043945 ], [ 0.027466, 0.043945 ], [ 0.027466, 0.049438 ], [ 0.032959, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0540000", "KPI": 817, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.060425 ], [ 0.038452, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.060425 ], [ 0.038452, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0367800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.060425 ], [ 0.038452, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.060425 ], [ 0.038452, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0486000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.054932 ], [ 0.038452, 0.049438 ], [ 0.032959, 0.049438 ], [ 0.032959, 0.054932 ], [ 0.038452, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367800", "Lat": "0.0486000", "KPI": 642, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.054932 ], [ 0.038452, 0.049438 ], [ 0.032959, 0.049438 ], [ 0.032959, 0.054932 ], [ 0.038452, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0432000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.049438 ], [ 0.038452, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.049438 ], [ 0.038452, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0367800", "Lat": "0.0432000", "KPI": 490, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.049438 ], [ 0.038452, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.049438 ], [ 0.038452, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0540000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.060425 ], [ 0.043945, 0.054932 ], [ 0.038452, 0.054932 ], [ 0.038452, 0.060425 ], [ 0.043945, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0420300", "Lat": "0.0540000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.060425 ], [ 0.043945, 0.054932 ], [ 0.038452, 0.054932 ], [ 0.038452, 0.060425 ], [ 0.043945, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0420326", "Lat": "0.0486000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.049438 ], [ 0.038452, 0.049438 ], [ 0.038452, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0486000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.049438 ], [ 0.038452, 0.049438 ], [ 0.038452, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.049438 ], [ 0.043945, 0.043945 ], [ 0.038452, 0.043945 ], [ 0.038452, 0.049438 ], [ 0.043945, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.049438 ], [ 0.043945, 0.043945 ], [ 0.038452, 0.043945 ], [ 0.038452, 0.049438 ], [ 0.043945, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0105082", "Lat": "0.0378000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0378000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0378000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.043945 ], [ 0.016479, 0.038452 ], [ 0.010986, 0.038452 ], [ 0.010986, 0.043945 ], [ 0.016479, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0378000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.043945 ], [ 0.016479, 0.038452 ], [ 0.010986, 0.038452 ], [ 0.010986, 0.043945 ], [ 0.016479, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0157622", "Lat": "0.0324000", "KPI": 293, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.038452 ], [ 0.016479, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.038452 ], [ 0.016479, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0157600", "Lat": "0.0324000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.038452 ], [ 0.016479, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.038452 ], [ 0.016479, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0270000", "KPI": 823, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0105100", "Lat": "0.0270000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0157622", "Lat": "0.0270000", "KPI": 599, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.032959 ], [ 0.016479, 0.027466 ], [ 0.010986, 0.027466 ], [ 0.010986, 0.032959 ], [ 0.016479, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157600", "Lat": "0.0270000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.032959 ], [ 0.016479, 0.027466 ], [ 0.010986, 0.027466 ], [ 0.010986, 0.032959 ], [ 0.016479, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157622", "Lat": "0.0216000", "KPI": 757, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.027466 ], [ 0.016479, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.027466 ], [ 0.016479, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0157600", "Lat": "0.0216000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.027466 ], [ 0.016479, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.027466 ], [ 0.016479, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0162000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105100", "Lat": "0.0162000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0162000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.021973 ], [ 0.016479, 0.016479 ], [ 0.010986, 0.016479 ], [ 0.010986, 0.021973 ], [ 0.016479, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0157600", "Lat": "0.0162000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.021973 ], [ 0.016479, 0.016479 ], [ 0.010986, 0.016479 ], [ 0.010986, 0.021973 ], [ 0.016479, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0157622", "Lat": "0.0108000", "KPI": 980, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157600", "Lat": "0.0108000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0210163", "Lat": "0.0378000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.038452 ], [ 0.016479, 0.038452 ], [ 0.016479, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0210200", "Lat": "0.0378000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.038452 ], [ 0.016479, 0.038452 ], [ 0.016479, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.038452 ], [ 0.021973, 0.032959 ], [ 0.016479, 0.032959 ], [ 0.016479, 0.038452 ], [ 0.021973, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.038452 ], [ 0.021973, 0.032959 ], [ 0.016479, 0.032959 ], [ 0.016479, 0.038452 ], [ 0.021973, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262704", "Lat": "0.0378000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.043945 ], [ 0.027466, 0.038452 ], [ 0.021973, 0.038452 ], [ 0.021973, 0.043945 ], [ 0.027466, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0378000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.043945 ], [ 0.027466, 0.038452 ], [ 0.021973, 0.038452 ], [ 0.021973, 0.043945 ], [ 0.027466, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0315245", "Lat": "0.0378000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.038452 ], [ 0.027466, 0.038452 ], [ 0.027466, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0315200", "Lat": "0.0378000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.038452 ], [ 0.027466, 0.038452 ], [ 0.027466, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0324000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.038452 ], [ 0.027466, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.038452 ], [ 0.027466, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0262700", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.038452 ], [ 0.027466, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.038452 ], [ 0.027466, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0315245", "Lat": "0.0324000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.038452 ], [ 0.032959, 0.032959 ], [ 0.027466, 0.032959 ], [ 0.027466, 0.038452 ], [ 0.032959, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0324000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.038452 ], [ 0.032959, 0.032959 ], [ 0.027466, 0.032959 ], [ 0.027466, 0.038452 ], [ 0.032959, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0210163", "Lat": "0.0270000", "KPI": 513, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.027466 ], [ 0.016479, 0.027466 ], [ 0.016479, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210200", "Lat": "0.0270000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.027466 ], [ 0.016479, 0.027466 ], [ 0.016479, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.027466 ], [ 0.021973, 0.021973 ], [ 0.016479, 0.021973 ], [ 0.016479, 0.027466 ], [ 0.021973, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.027466 ], [ 0.021973, 0.021973 ], [ 0.016479, 0.021973 ], [ 0.016479, 0.027466 ], [ 0.021973, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0262704", "Lat": "0.0270000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.032959 ], [ 0.027466, 0.027466 ], [ 0.021973, 0.027466 ], [ 0.021973, 0.032959 ], [ 0.027466, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262700", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.032959 ], [ 0.027466, 0.027466 ], [ 0.021973, 0.027466 ], [ 0.021973, 0.032959 ], [ 0.027466, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0315245", "Lat": "0.0270000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.027466 ], [ 0.027466, 0.027466 ], [ 0.027466, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0315200", "Lat": "0.0270000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.027466 ], [ 0.027466, 0.027466 ], [ 0.027466, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262704", "Lat": "0.0216000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.027466 ], [ 0.027466, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.027466 ], [ 0.027466, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262700", "Lat": "0.0216000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.027466 ], [ 0.027466, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.027466 ], [ 0.027466, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.027466 ], [ 0.032959, 0.021973 ], [ 0.027466, 0.021973 ], [ 0.027466, 0.027466 ], [ 0.032959, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.027466 ], [ 0.032959, 0.021973 ], [ 0.027466, 0.021973 ], [ 0.027466, 0.027466 ], [ 0.032959, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0367786", "Lat": "0.0378000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.043945 ], [ 0.038452, 0.038452 ], [ 0.032959, 0.038452 ], [ 0.032959, 0.043945 ], [ 0.038452, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0378000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.043945 ], [ 0.038452, 0.038452 ], [ 0.032959, 0.038452 ], [ 0.032959, 0.043945 ], [ 0.038452, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0367786", "Lat": "0.0324000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.038452 ], [ 0.038452, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.038452 ], [ 0.038452, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0324000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.038452 ], [ 0.038452, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.038452 ], [ 0.038452, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0420326", "Lat": "0.0378000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.038452 ], [ 0.038452, 0.038452 ], [ 0.038452, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420300", "Lat": "0.0378000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.038452 ], [ 0.038452, 0.038452 ], [ 0.038452, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0420326", "Lat": "0.0324000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.038452 ], [ 0.043945, 0.032959 ], [ 0.038452, 0.032959 ], [ 0.038452, 0.038452 ], [ 0.043945, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0324000", "KPI": 477, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.038452 ], [ 0.043945, 0.032959 ], [ 0.038452, 0.032959 ], [ 0.038452, 0.038452 ], [ 0.043945, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0367786", "Lat": "0.0270000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.032959 ], [ 0.038452, 0.027466 ], [ 0.032959, 0.027466 ], [ 0.032959, 0.032959 ], [ 0.038452, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0367800", "Lat": "0.0270000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.032959 ], [ 0.038452, 0.027466 ], [ 0.032959, 0.027466 ], [ 0.032959, 0.032959 ], [ 0.038452, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0367786", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.027466 ], [ 0.038452, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.027466 ], [ 0.038452, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0367800", "Lat": "0.0216000", "KPI": 971, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.027466 ], [ 0.038452, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.027466 ], [ 0.038452, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0270000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.027466 ], [ 0.038452, 0.027466 ], [ 0.038452, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0270000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.027466 ], [ 0.038452, 0.027466 ], [ 0.038452, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.027466 ], [ 0.043945, 0.021973 ], [ 0.038452, 0.021973 ], [ 0.038452, 0.027466 ], [ 0.043945, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.027466 ], [ 0.043945, 0.021973 ], [ 0.038452, 0.021973 ], [ 0.038452, 0.027466 ], [ 0.043945, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210163", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.016479 ], [ 0.016479, 0.016479 ], [ 0.016479, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0210200", "Lat": "0.0162000", "KPI": 449, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.016479 ], [ 0.016479, 0.016479 ], [ 0.016479, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0262704", "Lat": "0.0162000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.021973 ], [ 0.027466, 0.016479 ], [ 0.021973, 0.016479 ], [ 0.021973, 0.021973 ], [ 0.027466, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0162000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.021973 ], [ 0.027466, 0.016479 ], [ 0.021973, 0.016479 ], [ 0.021973, 0.021973 ], [ 0.027466, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0315245", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.016479 ], [ 0.027466, 0.016479 ], [ 0.027466, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0315200", "Lat": "0.0162000", "KPI": 118, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.016479 ], [ 0.027466, 0.016479 ], [ 0.027466, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262704", "Lat": "0.0108000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262700", "Lat": "0.0108000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0367786", "Lat": "0.0162000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.021973 ], [ 0.038452, 0.016479 ], [ 0.032959, 0.016479 ], [ 0.032959, 0.021973 ], [ 0.038452, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0367800", "Lat": "0.0162000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.021973 ], [ 0.038452, 0.016479 ], [ 0.032959, 0.016479 ], [ 0.032959, 0.021973 ], [ 0.038452, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0108000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0108000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0420326", "Lat": "0.0162000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.016479 ], [ 0.038452, 0.016479 ], [ 0.038452, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0420300", "Lat": "0.0162000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.016479 ], [ 0.038452, 0.016479 ], [ 0.038452, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472867", "Lat": "0.0540000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.060425 ], [ 0.049438, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.060425 ], [ 0.049438, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0472900", "Lat": "0.0540000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.060425 ], [ 0.049438, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.060425 ], [ 0.049438, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0472867", "Lat": "0.0486000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.054932 ], [ 0.049438, 0.049438 ], [ 0.043945, 0.049438 ], [ 0.043945, 0.054932 ], [ 0.049438, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0472900", "Lat": "0.0486000", "KPI": 696, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.054932 ], [ 0.049438, 0.049438 ], [ 0.043945, 0.049438 ], [ 0.043945, 0.054932 ], [ 0.049438, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0432000", "KPI": 713, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.049438 ], [ 0.049438, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.049438 ], [ 0.049438, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0472900", "Lat": "0.0432000", "KPI": 905, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.049438 ], [ 0.049438, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.049438 ], [ 0.049438, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0525408", "Lat": "0.0540000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.060425 ], [ 0.054932, 0.054932 ], [ 0.049438, 0.054932 ], [ 0.049438, 0.060425 ], [ 0.054932, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525400", "Lat": "0.0540000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.060425 ], [ 0.054932, 0.054932 ], [ 0.049438, 0.054932 ], [ 0.049438, 0.060425 ], [ 0.054932, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0525408", "Lat": "0.0486000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.049438 ], [ 0.049438, 0.049438 ], [ 0.049438, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0525400", "Lat": "0.0486000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.049438 ], [ 0.049438, 0.049438 ], [ 0.049438, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0525408", "Lat": "0.0432000", "KPI": 658, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.049438 ], [ 0.054932, 0.043945 ], [ 0.049438, 0.043945 ], [ 0.049438, 0.049438 ], [ 0.054932, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0525400", "Lat": "0.0432000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.049438 ], [ 0.054932, 0.043945 ], [ 0.049438, 0.043945 ], [ 0.049438, 0.049438 ], [ 0.054932, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0577949", "Lat": "0.0540000", "KPI": 231, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.060425 ], [ 0.060425, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.060425 ], [ 0.060425, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0577900", "Lat": "0.0540000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.060425 ], [ 0.060425, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.060425 ], [ 0.060425, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577949", "Lat": "0.0486000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.054932 ], [ 0.060425, 0.049438 ], [ 0.054932, 0.049438 ], [ 0.054932, 0.054932 ], [ 0.060425, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0577900", "Lat": "0.0486000", "KPI": 58, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.054932 ], [ 0.060425, 0.049438 ], [ 0.054932, 0.049438 ], [ 0.054932, 0.054932 ], [ 0.060425, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0577949", "Lat": "0.0432000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.049438 ], [ 0.060425, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.049438 ], [ 0.060425, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577900", "Lat": "0.0432000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.049438 ], [ 0.060425, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.049438 ], [ 0.060425, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0656760", "Lat": "0.0540000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.060425 ], [ 0.065918, 0.054932 ], [ 0.060425, 0.054932 ], [ 0.060425, 0.060425 ], [ 0.065918, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0656800", "Lat": "0.0540000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.060425 ], [ 0.065918, 0.054932 ], [ 0.060425, 0.054932 ], [ 0.060425, 0.060425 ], [ 0.065918, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0656760", "Lat": "0.0486000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.049438 ], [ 0.060425, 0.049438 ], [ 0.060425, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0656800", "Lat": "0.0486000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.049438 ], [ 0.060425, 0.049438 ], [ 0.060425, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.049438 ], [ 0.065918, 0.043945 ], [ 0.060425, 0.043945 ], [ 0.060425, 0.049438 ], [ 0.065918, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.049438 ], [ 0.065918, 0.043945 ], [ 0.060425, 0.043945 ], [ 0.060425, 0.049438 ], [ 0.065918, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0540000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.060425 ], [ 0.071411, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.060425 ], [ 0.071411, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0709300", "Lat": "0.0540000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.060425 ], [ 0.071411, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.060425 ], [ 0.071411, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0709301", "Lat": "0.0486000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.054932 ], [ 0.071411, 0.049438 ], [ 0.065918, 0.049438 ], [ 0.065918, 0.054932 ], [ 0.071411, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0486000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.054932 ], [ 0.071411, 0.049438 ], [ 0.065918, 0.049438 ], [ 0.065918, 0.054932 ], [ 0.071411, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0709301", "Lat": "0.0432000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.049438 ], [ 0.071411, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.049438 ], [ 0.071411, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0709300", "Lat": "0.0432000", "KPI": 493, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.049438 ], [ 0.071411, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.049438 ], [ 0.071411, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0540000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.060425 ], [ 0.076904, 0.054932 ], [ 0.071411, 0.054932 ], [ 0.071411, 0.060425 ], [ 0.076904, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0761800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.060425 ], [ 0.076904, 0.054932 ], [ 0.071411, 0.054932 ], [ 0.071411, 0.060425 ], [ 0.076904, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0761842", "Lat": "0.0486000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.049438 ], [ 0.071411, 0.049438 ], [ 0.071411, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0486000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.049438 ], [ 0.071411, 0.049438 ], [ 0.071411, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761842", "Lat": "0.0432000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.049438 ], [ 0.076904, 0.043945 ], [ 0.071411, 0.043945 ], [ 0.071411, 0.049438 ], [ 0.076904, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0432000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.049438 ], [ 0.076904, 0.043945 ], [ 0.071411, 0.043945 ], [ 0.071411, 0.049438 ], [ 0.076904, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0814382", "Lat": "0.0540000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.060425 ], [ 0.082397, 0.054932 ], [ 0.076904, 0.054932 ], [ 0.076904, 0.060425 ], [ 0.082397, 0.060425 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0814400", "Lat": "0.0540000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.060425 ], [ 0.082397, 0.054932 ], [ 0.076904, 0.054932 ], [ 0.076904, 0.060425 ], [ 0.082397, 0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0814382", "Lat": "0.0486000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.054932 ], [ 0.082397, 0.049438 ], [ 0.076904, 0.049438 ], [ 0.076904, 0.054932 ], [ 0.082397, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0814400", "Lat": "0.0486000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.054932 ], [ 0.082397, 0.049438 ], [ 0.076904, 0.049438 ], [ 0.076904, 0.054932 ], [ 0.082397, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0432000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.049438 ], [ 0.082397, 0.043945 ], [ 0.076904, 0.043945 ], [ 0.076904, 0.049438 ], [ 0.082397, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0814400", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.049438 ], [ 0.082397, 0.043945 ], [ 0.076904, 0.043945 ], [ 0.076904, 0.049438 ], [ 0.082397, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0472867", "Lat": "0.0378000", "KPI": 515, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.043945 ], [ 0.049438, 0.038452 ], [ 0.043945, 0.038452 ], [ 0.043945, 0.043945 ], [ 0.049438, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0472900", "Lat": "0.0378000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.043945 ], [ 0.049438, 0.038452 ], [ 0.043945, 0.038452 ], [ 0.043945, 0.043945 ], [ 0.049438, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0472867", "Lat": "0.0324000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.038452 ], [ 0.049438, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.038452 ], [ 0.049438, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0472900", "Lat": "0.0324000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.038452 ], [ 0.049438, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.038452 ], [ 0.049438, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0525408", "Lat": "0.0378000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.038452 ], [ 0.049438, 0.038452 ], [ 0.049438, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0525400", "Lat": "0.0378000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.038452 ], [ 0.049438, 0.038452 ], [ 0.049438, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0324000", "KPI": 245, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.038452 ], [ 0.054932, 0.032959 ], [ 0.049438, 0.032959 ], [ 0.049438, 0.038452 ], [ 0.054932, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0324000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.038452 ], [ 0.054932, 0.032959 ], [ 0.049438, 0.032959 ], [ 0.049438, 0.038452 ], [ 0.054932, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0472867", "Lat": "0.0270000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.032959 ], [ 0.049438, 0.027466 ], [ 0.043945, 0.027466 ], [ 0.043945, 0.032959 ], [ 0.049438, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0472900", "Lat": "0.0270000", "KPI": 694, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.032959 ], [ 0.049438, 0.027466 ], [ 0.043945, 0.027466 ], [ 0.043945, 0.032959 ], [ 0.049438, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0472867", "Lat": "0.0216000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.027466 ], [ 0.049438, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.027466 ], [ 0.049438, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0216000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.027466 ], [ 0.049438, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.027466 ], [ 0.049438, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0270000", "KPI": 514, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.027466 ], [ 0.049438, 0.027466 ], [ 0.049438, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0525400", "Lat": "0.0270000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.027466 ], [ 0.049438, 0.027466 ], [ 0.049438, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.027466 ], [ 0.054932, 0.021973 ], [ 0.049438, 0.021973 ], [ 0.049438, 0.027466 ], [ 0.054932, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.027466 ], [ 0.054932, 0.021973 ], [ 0.049438, 0.021973 ], [ 0.049438, 0.027466 ], [ 0.054932, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0378000", "KPI": 960, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043945 ], [ 0.060425, 0.038452 ], [ 0.054932, 0.038452 ], [ 0.054932, 0.043945 ], [ 0.060425, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577900", "Lat": "0.0378000", "KPI": 895, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043945 ], [ 0.060425, 0.038452 ], [ 0.054932, 0.038452 ], [ 0.054932, 0.043945 ], [ 0.060425, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0577949", "Lat": "0.0324000", "KPI": 410, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.038452 ], [ 0.060425, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.038452 ], [ 0.060425, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0577900", "Lat": "0.0324000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.038452 ], [ 0.060425, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.038452 ], [ 0.060425, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577949", "Lat": "0.0270000", "KPI": 421, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032959 ], [ 0.060425, 0.027466 ], [ 0.054932, 0.027466 ], [ 0.054932, 0.032959 ], [ 0.060425, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577900", "Lat": "0.0270000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032959 ], [ 0.060425, 0.027466 ], [ 0.054932, 0.027466 ], [ 0.054932, 0.032959 ], [ 0.060425, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0577949", "Lat": "0.0216000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.027466 ], [ 0.060425, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.027466 ], [ 0.060425, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0577900", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.027466 ], [ 0.060425, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.027466 ], [ 0.060425, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0472867", "Lat": "0.0162000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.021973 ], [ 0.049438, 0.016479 ], [ 0.043945, 0.016479 ], [ 0.043945, 0.021973 ], [ 0.049438, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0472900", "Lat": "0.0162000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.021973 ], [ 0.049438, 0.016479 ], [ 0.043945, 0.016479 ], [ 0.043945, 0.021973 ], [ 0.049438, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0108000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0525408", "Lat": "0.0162000", "KPI": 187, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.016479 ], [ 0.049438, 0.016479 ], [ 0.049438, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0525400", "Lat": "0.0162000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.016479 ], [ 0.049438, 0.016479 ], [ 0.049438, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577949", "Lat": "0.0162000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021973 ], [ 0.060425, 0.016479 ], [ 0.054932, 0.016479 ], [ 0.054932, 0.021973 ], [ 0.060425, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0577900", "Lat": "0.0162000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021973 ], [ 0.060425, 0.016479 ], [ 0.054932, 0.016479 ], [ 0.054932, 0.021973 ], [ 0.060425, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0577949", "Lat": "0.0108000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0577900", "Lat": "0.0108000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0656760", "Lat": "0.0378000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.038452 ], [ 0.060425, 0.038452 ], [ 0.060425, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0378000", "KPI": 887, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.038452 ], [ 0.060425, 0.038452 ], [ 0.060425, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0656760", "Lat": "0.0324000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.038452 ], [ 0.065918, 0.032959 ], [ 0.060425, 0.032959 ], [ 0.060425, 0.038452 ], [ 0.065918, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0656800", "Lat": "0.0324000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.038452 ], [ 0.065918, 0.032959 ], [ 0.060425, 0.032959 ], [ 0.060425, 0.038452 ], [ 0.065918, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0378000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.043945 ], [ 0.071411, 0.038452 ], [ 0.065918, 0.038452 ], [ 0.065918, 0.043945 ], [ 0.071411, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0709300", "Lat": "0.0378000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.043945 ], [ 0.071411, 0.038452 ], [ 0.065918, 0.038452 ], [ 0.065918, 0.043945 ], [ 0.071411, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709301", "Lat": "0.0324000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.038452 ], [ 0.071411, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.038452 ], [ 0.071411, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0709300", "Lat": "0.0324000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.038452 ], [ 0.071411, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.038452 ], [ 0.071411, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0270000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.027466 ], [ 0.060425, 0.027466 ], [ 0.060425, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0656800", "Lat": "0.0270000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.027466 ], [ 0.060425, 0.027466 ], [ 0.060425, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.027466 ], [ 0.065918, 0.021973 ], [ 0.060425, 0.021973 ], [ 0.060425, 0.027466 ], [ 0.065918, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.027466 ], [ 0.065918, 0.021973 ], [ 0.060425, 0.021973 ], [ 0.060425, 0.027466 ], [ 0.065918, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0270000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.032959 ], [ 0.071411, 0.027466 ], [ 0.065918, 0.027466 ], [ 0.065918, 0.032959 ], [ 0.071411, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0709300", "Lat": "0.0270000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.032959 ], [ 0.071411, 0.027466 ], [ 0.065918, 0.027466 ], [ 0.065918, 0.032959 ], [ 0.071411, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0709301", "Lat": "0.0216000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.027466 ], [ 0.071411, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.027466 ], [ 0.071411, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709300", "Lat": "0.0216000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.027466 ], [ 0.071411, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.027466 ], [ 0.071411, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761842", "Lat": "0.0378000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.038452 ], [ 0.071411, 0.038452 ], [ 0.071411, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0761800", "Lat": "0.0378000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.038452 ], [ 0.071411, 0.038452 ], [ 0.071411, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761842", "Lat": "0.0324000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.038452 ], [ 0.076904, 0.032959 ], [ 0.071411, 0.032959 ], [ 0.071411, 0.038452 ], [ 0.076904, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0761800", "Lat": "0.0324000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.038452 ], [ 0.076904, 0.032959 ], [ 0.071411, 0.032959 ], [ 0.071411, 0.038452 ], [ 0.076904, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0814382", "Lat": "0.0378000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.043945 ], [ 0.082397, 0.038452 ], [ 0.076904, 0.038452 ], [ 0.076904, 0.043945 ], [ 0.082397, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0814400", "Lat": "0.0378000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.043945 ], [ 0.082397, 0.038452 ], [ 0.076904, 0.038452 ], [ 0.076904, 0.043945 ], [ 0.082397, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0814382", "Lat": "0.0324000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.038452 ], [ 0.082397, 0.032959 ], [ 0.076904, 0.032959 ], [ 0.076904, 0.038452 ], [ 0.082397, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0814400", "Lat": "0.0324000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.038452 ], [ 0.082397, 0.032959 ], [ 0.076904, 0.032959 ], [ 0.076904, 0.038452 ], [ 0.082397, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0761842", "Lat": "0.0270000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.027466 ], [ 0.071411, 0.027466 ], [ 0.071411, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0761800", "Lat": "0.0270000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.027466 ], [ 0.071411, 0.027466 ], [ 0.071411, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.027466 ], [ 0.076904, 0.021973 ], [ 0.071411, 0.021973 ], [ 0.071411, 0.027466 ], [ 0.076904, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.027466 ], [ 0.076904, 0.021973 ], [ 0.071411, 0.021973 ], [ 0.071411, 0.027466 ], [ 0.076904, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814382", "Lat": "0.0270000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.032959 ], [ 0.082397, 0.027466 ], [ 0.076904, 0.027466 ], [ 0.076904, 0.032959 ], [ 0.082397, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0270000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.032959 ], [ 0.082397, 0.027466 ], [ 0.076904, 0.027466 ], [ 0.076904, 0.032959 ], [ 0.082397, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0814382", "Lat": "0.0216000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.027466 ], [ 0.082397, 0.021973 ], [ 0.076904, 0.021973 ], [ 0.076904, 0.027466 ], [ 0.082397, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0814400", "Lat": "0.0216000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.027466 ], [ 0.082397, 0.021973 ], [ 0.076904, 0.021973 ], [ 0.076904, 0.027466 ], [ 0.082397, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656760", "Lat": "0.0162000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.016479 ], [ 0.060425, 0.016479 ], [ 0.060425, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0656800", "Lat": "0.0162000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.016479 ], [ 0.060425, 0.016479 ], [ 0.060425, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0162000", "KPI": 990, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.021973 ], [ 0.071411, 0.016479 ], [ 0.065918, 0.016479 ], [ 0.065918, 0.021973 ], [ 0.071411, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709300", "Lat": "0.0162000", "KPI": 737, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.021973 ], [ 0.071411, 0.016479 ], [ 0.065918, 0.016479 ], [ 0.065918, 0.021973 ], [ 0.071411, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0108000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0709300", "Lat": "0.0108000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0761842", "Lat": "0.0162000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.016479 ], [ 0.071411, 0.016479 ], [ 0.071411, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761800", "Lat": "0.0162000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.016479 ], [ 0.071411, 0.016479 ], [ 0.071411, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0162000", "KPI": 59, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.021973 ], [ 0.082397, 0.016479 ], [ 0.076904, 0.016479 ], [ 0.076904, 0.021973 ], [ 0.082397, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0814400", "Lat": "0.0162000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.021973 ], [ 0.082397, 0.016479 ], [ 0.076904, 0.016479 ], [ 0.076904, 0.021973 ], [ 0.082397, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0814382", "Lat": "0.0108000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0814400", "Lat": "0.0108000", "KPI": 98, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 512 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 511, "y": 511 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0026270", "Lat": "0.0540000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.057678 ], [ 0.002747, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.057678 ], [ 0.002747, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0026300", "Lat": "0.0540000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.057678 ], [ 0.002747, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.057678 ], [ 0.002747, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0026270", "Lat": "0.0522000", "KPI": 116, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.054932 ], [ 0.002747, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.054932 ], [ 0.002747, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026300", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.054932 ], [ 0.002747, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.054932 ], [ 0.002747, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0026270", "Lat": "0.0486000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.052185 ], [ 0.002747, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.052185 ], [ 0.002747, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0026300", "Lat": "0.0486000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.052185 ], [ 0.002747, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.052185 ], [ 0.002747, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0450000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.049438 ], [ 0.002747, 0.046692 ], [ 0.000000, 0.046692 ], [ 0.000000, 0.049438 ], [ 0.002747, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0026300", "Lat": "0.0450000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.049438 ], [ 0.002747, 0.046692 ], [ 0.000000, 0.046692 ], [ 0.000000, 0.049438 ], [ 0.002747, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0432000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.046692 ], [ 0.002747, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.046692 ], [ 0.002747, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0026300", "Lat": "0.0432000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.046692 ], [ 0.002747, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.046692 ], [ 0.002747, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.057678 ], [ 0.005493, 0.054932 ], [ 0.002747, 0.054932 ], [ 0.002747, 0.057678 ], [ 0.005493, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.057678 ], [ 0.005493, 0.054932 ], [ 0.002747, 0.054932 ], [ 0.002747, 0.057678 ], [ 0.005493, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0052541", "Lat": "0.0522000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.052185 ], [ 0.002747, 0.052185 ], [ 0.002747, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.052185 ], [ 0.002747, 0.052185 ], [ 0.002747, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.052185 ], [ 0.005493, 0.049438 ], [ 0.002747, 0.049438 ], [ 0.002747, 0.052185 ], [ 0.005493, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.052185 ], [ 0.005493, 0.049438 ], [ 0.002747, 0.049438 ], [ 0.002747, 0.052185 ], [ 0.005493, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0052541", "Lat": "0.0450000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.046692 ], [ 0.002747, 0.046692 ], [ 0.002747, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0450000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.046692 ], [ 0.002747, 0.046692 ], [ 0.002747, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.046692 ], [ 0.005493, 0.043945 ], [ 0.002747, 0.043945 ], [ 0.002747, 0.046692 ], [ 0.005493, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.046692 ], [ 0.005493, 0.043945 ], [ 0.002747, 0.043945 ], [ 0.002747, 0.046692 ], [ 0.005493, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0026270", "Lat": "0.0396000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.043945 ], [ 0.002747, 0.041199 ], [ 0.000000, 0.041199 ], [ 0.000000, 0.043945 ], [ 0.002747, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0026300", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.043945 ], [ 0.002747, 0.041199 ], [ 0.000000, 0.041199 ], [ 0.000000, 0.043945 ], [ 0.002747, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0378000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.041199 ], [ 0.002747, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.041199 ], [ 0.002747, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0378000", "KPI": 611, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.041199 ], [ 0.002747, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.041199 ], [ 0.002747, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0342000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.038452 ], [ 0.002747, 0.035706 ], [ 0.000000, 0.035706 ], [ 0.000000, 0.038452 ], [ 0.002747, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0026300", "Lat": "0.0342000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.038452 ], [ 0.002747, 0.035706 ], [ 0.000000, 0.035706 ], [ 0.000000, 0.038452 ], [ 0.002747, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0324000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.035706 ], [ 0.002747, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.035706 ], [ 0.002747, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0026300", "Lat": "0.0324000", "KPI": 769, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.035706 ], [ 0.002747, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.035706 ], [ 0.002747, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0052541", "Lat": "0.0396000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.041199 ], [ 0.002747, 0.041199 ], [ 0.002747, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052500", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.041199 ], [ 0.002747, 0.041199 ], [ 0.002747, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.041199 ], [ 0.005493, 0.038452 ], [ 0.002747, 0.038452 ], [ 0.002747, 0.041199 ], [ 0.005493, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.041199 ], [ 0.005493, 0.038452 ], [ 0.002747, 0.038452 ], [ 0.002747, 0.041199 ], [ 0.005493, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0052541", "Lat": "0.0342000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.035706 ], [ 0.002747, 0.035706 ], [ 0.002747, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0052500", "Lat": "0.0342000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.035706 ], [ 0.002747, 0.035706 ], [ 0.002747, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.035706 ], [ 0.005493, 0.032959 ], [ 0.002747, 0.032959 ], [ 0.002747, 0.035706 ], [ 0.005493, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.035706 ], [ 0.005493, 0.032959 ], [ 0.002747, 0.032959 ], [ 0.002747, 0.035706 ], [ 0.005493, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026270", "Lat": "0.0288000", "KPI": 675, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.032959 ], [ 0.002747, 0.030212 ], [ 0.000000, 0.030212 ], [ 0.000000, 0.032959 ], [ 0.002747, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0026300", "Lat": "0.0288000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.032959 ], [ 0.002747, 0.030212 ], [ 0.000000, 0.030212 ], [ 0.000000, 0.032959 ], [ 0.002747, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0270000", "KPI": 943, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.030212 ], [ 0.002747, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.030212 ], [ 0.002747, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0270000", "KPI": 888, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.030212 ], [ 0.002747, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.030212 ], [ 0.002747, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0026270", "Lat": "0.0234000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.027466 ], [ 0.002747, 0.024719 ], [ 0.000000, 0.024719 ], [ 0.000000, 0.027466 ], [ 0.002747, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026300", "Lat": "0.0234000", "KPI": 221, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.027466 ], [ 0.002747, 0.024719 ], [ 0.000000, 0.024719 ], [ 0.000000, 0.027466 ], [ 0.002747, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0216000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.024719 ], [ 0.002747, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.024719 ], [ 0.002747, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0026300", "Lat": "0.0216000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.024719 ], [ 0.002747, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.024719 ], [ 0.002747, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0052541", "Lat": "0.0288000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.030212 ], [ 0.002747, 0.030212 ], [ 0.002747, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0052500", "Lat": "0.0288000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.030212 ], [ 0.002747, 0.030212 ], [ 0.002747, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.030212 ], [ 0.005493, 0.027466 ], [ 0.002747, 0.027466 ], [ 0.002747, 0.030212 ], [ 0.005493, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.030212 ], [ 0.005493, 0.027466 ], [ 0.002747, 0.027466 ], [ 0.002747, 0.030212 ], [ 0.005493, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0052541", "Lat": "0.0234000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.024719 ], [ 0.002747, 0.024719 ], [ 0.002747, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0052500", "Lat": "0.0234000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.024719 ], [ 0.002747, 0.024719 ], [ 0.002747, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.024719 ], [ 0.005493, 0.021973 ], [ 0.002747, 0.021973 ], [ 0.002747, 0.024719 ], [ 0.005493, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.024719 ], [ 0.005493, 0.021973 ], [ 0.002747, 0.021973 ], [ 0.002747, 0.024719 ], [ 0.005493, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0026270", "Lat": "0.0180000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.021973 ], [ 0.002747, 0.019226 ], [ 0.000000, 0.019226 ], [ 0.000000, 0.021973 ], [ 0.002747, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0026300", "Lat": "0.0180000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.021973 ], [ 0.002747, 0.019226 ], [ 0.000000, 0.019226 ], [ 0.000000, 0.021973 ], [ 0.002747, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0162000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.019226 ], [ 0.002747, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.019226 ], [ 0.002747, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0026300", "Lat": "0.0162000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.019226 ], [ 0.002747, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.019226 ], [ 0.002747, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0126000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.016479 ], [ 0.002747, 0.013733 ], [ 0.000000, 0.013733 ], [ 0.000000, 0.016479 ], [ 0.002747, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0026300", "Lat": "0.0126000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.016479 ], [ 0.002747, 0.013733 ], [ 0.000000, 0.013733 ], [ 0.000000, 0.016479 ], [ 0.002747, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0108000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.013733 ], [ 0.002747, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.013733 ], [ 0.002747, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0026300", "Lat": "0.0108000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.013733 ], [ 0.002747, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.013733 ], [ 0.002747, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052541", "Lat": "0.0180000", "KPI": 316, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.019226 ], [ 0.002747, 0.019226 ], [ 0.002747, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0052500", "Lat": "0.0180000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.019226 ], [ 0.002747, 0.019226 ], [ 0.002747, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.019226 ], [ 0.005493, 0.016479 ], [ 0.002747, 0.016479 ], [ 0.002747, 0.019226 ], [ 0.005493, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.019226 ], [ 0.005493, 0.016479 ], [ 0.002747, 0.016479 ], [ 0.002747, 0.019226 ], [ 0.005493, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0052541", "Lat": "0.0126000", "KPI": 49, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.013733 ], [ 0.002747, 0.013733 ], [ 0.002747, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0126000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.013733 ], [ 0.002747, 0.013733 ], [ 0.002747, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.013733 ], [ 0.005493, 0.010986 ], [ 0.002747, 0.010986 ], [ 0.002747, 0.013733 ], [ 0.005493, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.013733 ], [ 0.005493, 0.010986 ], [ 0.002747, 0.010986 ], [ 0.002747, 0.013733 ], [ 0.005493, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026270", "Lat": "0.0072000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.010986 ], [ 0.002747, 0.008240 ], [ 0.000000, 0.008240 ], [ 0.000000, 0.010986 ], [ 0.002747, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0072000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.010986 ], [ 0.002747, 0.008240 ], [ 0.000000, 0.008240 ], [ 0.000000, 0.010986 ], [ 0.002747, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0072000", "KPI": 633, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.008240 ], [ 0.002747, 0.008240 ], [ 0.002747, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0052500", "Lat": "0.0072000", "KPI": 759, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.008240 ], [ 0.002747, 0.008240 ], [ 0.002747, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 512 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0078811", "Lat": "0.0054000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.008240 ], [ 0.008240, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.008240 ], [ 0.008240, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078800", "Lat": "0.0054000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.008240 ], [ 0.008240, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.008240 ], [ 0.008240, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0078811", "Lat": "0.0018000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.005493 ], [ 0.008240, 0.002747 ], [ 0.005493, 0.002747 ], [ 0.005493, 0.005493 ], [ 0.008240, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0078800", "Lat": "0.0018000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.005493 ], [ 0.008240, 0.002747 ], [ 0.005493, 0.002747 ], [ 0.005493, 0.005493 ], [ 0.008240, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0078811", "Lat": "0.0000000", "KPI": 698, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.002747 ], [ 0.008240, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.002747 ], [ 0.008240, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0078800", "Lat": "0.0000000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.002747 ], [ 0.008240, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.002747 ], [ 0.008240, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.008240 ], [ 0.010986, 0.005493 ], [ 0.008240, 0.005493 ], [ 0.008240, 0.008240 ], [ 0.010986, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.008240 ], [ 0.010986, 0.005493 ], [ 0.008240, 0.005493 ], [ 0.008240, 0.008240 ], [ 0.010986, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131352", "Lat": "0.0054000", "KPI": 265, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.008240 ], [ 0.013733, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.008240 ], [ 0.013733, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0054000", "KPI": 372, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.008240 ], [ 0.013733, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.008240 ], [ 0.013733, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105082", "Lat": "0.0018000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.002747 ], [ 0.008240, 0.002747 ], [ 0.008240, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105100", "Lat": "0.0018000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.002747 ], [ 0.008240, 0.002747 ], [ 0.008240, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.002747 ], [ 0.010986, 0.000000 ], [ 0.008240, 0.000000 ], [ 0.008240, 0.002747 ], [ 0.010986, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.002747 ], [ 0.010986, 0.000000 ], [ 0.008240, 0.000000 ], [ 0.008240, 0.002747 ], [ 0.010986, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131352", "Lat": "0.0018000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.005493 ], [ 0.013733, 0.002747 ], [ 0.010986, 0.002747 ], [ 0.010986, 0.005493 ], [ 0.013733, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131400", "Lat": "0.0018000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.005493 ], [ 0.013733, 0.002747 ], [ 0.010986, 0.002747 ], [ 0.010986, 0.005493 ], [ 0.013733, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131352", "Lat": "0.0000000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.002747 ], [ 0.013733, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.002747 ], [ 0.013733, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0000000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.002747 ], [ 0.013733, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.002747 ], [ 0.013733, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.008240 ], [ 0.016479, 0.005493 ], [ 0.013733, 0.005493 ], [ 0.013733, 0.008240 ], [ 0.016479, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.008240 ], [ 0.016479, 0.005493 ], [ 0.013733, 0.005493 ], [ 0.013733, 0.008240 ], [ 0.016479, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0054000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.008240 ], [ 0.019226, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.008240 ], [ 0.019226, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0183900", "Lat": "0.0054000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.008240 ], [ 0.019226, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.008240 ], [ 0.019226, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157622", "Lat": "0.0018000", "KPI": 932, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.002747 ], [ 0.013733, 0.002747 ], [ 0.013733, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0157600", "Lat": "0.0018000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.002747 ], [ 0.013733, 0.002747 ], [ 0.013733, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.002747 ], [ 0.016479, 0.000000 ], [ 0.013733, 0.000000 ], [ 0.013733, 0.002747 ], [ 0.016479, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.002747 ], [ 0.016479, 0.000000 ], [ 0.013733, 0.000000 ], [ 0.013733, 0.002747 ], [ 0.016479, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0018000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.005493 ], [ 0.019226, 0.002747 ], [ 0.016479, 0.002747 ], [ 0.016479, 0.005493 ], [ 0.019226, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0183900", "Lat": "0.0018000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.005493 ], [ 0.019226, 0.002747 ], [ 0.016479, 0.002747 ], [ 0.016479, 0.005493 ], [ 0.019226, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183893", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.002747 ], [ 0.019226, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.002747 ], [ 0.019226, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183900", "Lat": "0.0000000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.002747 ], [ 0.019226, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.002747 ], [ 0.019226, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.008240 ], [ 0.021973, 0.005493 ], [ 0.019226, 0.005493 ], [ 0.019226, 0.008240 ], [ 0.021973, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.008240 ], [ 0.021973, 0.005493 ], [ 0.019226, 0.005493 ], [ 0.019226, 0.008240 ], [ 0.021973, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0236434", "Lat": "0.0054000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.008240 ], [ 0.024719, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.008240 ], [ 0.024719, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236400", "Lat": "0.0054000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.008240 ], [ 0.024719, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.008240 ], [ 0.024719, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210163", "Lat": "0.0018000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.002747 ], [ 0.019226, 0.002747 ], [ 0.019226, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0210200", "Lat": "0.0018000", "KPI": 484, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.002747 ], [ 0.019226, 0.002747 ], [ 0.019226, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.002747 ], [ 0.021973, 0.000000 ], [ 0.019226, 0.000000 ], [ 0.019226, 0.002747 ], [ 0.021973, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.002747 ], [ 0.021973, 0.000000 ], [ 0.019226, 0.000000 ], [ 0.019226, 0.002747 ], [ 0.021973, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236434", "Lat": "0.0018000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.005493 ], [ 0.024719, 0.002747 ], [ 0.021973, 0.002747 ], [ 0.021973, 0.005493 ], [ 0.024719, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0236400", "Lat": "0.0018000", "KPI": 136, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.005493 ], [ 0.024719, 0.002747 ], [ 0.021973, 0.002747 ], [ 0.021973, 0.005493 ], [ 0.024719, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0000000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.002747 ], [ 0.024719, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.002747 ], [ 0.024719, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0000000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.002747 ], [ 0.024719, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.002747 ], [ 0.024719, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.008240 ], [ 0.027466, 0.005493 ], [ 0.024719, 0.005493 ], [ 0.024719, 0.008240 ], [ 0.027466, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.008240 ], [ 0.027466, 0.005493 ], [ 0.024719, 0.005493 ], [ 0.024719, 0.008240 ], [ 0.027466, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0288974", "Lat": "0.0054000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.008240 ], [ 0.030212, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.008240 ], [ 0.030212, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0289000", "Lat": "0.0054000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.008240 ], [ 0.030212, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.008240 ], [ 0.030212, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.008240 ], [ 0.032959, 0.005493 ], [ 0.030212, 0.005493 ], [ 0.030212, 0.008240 ], [ 0.032959, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.008240 ], [ 0.032959, 0.005493 ], [ 0.030212, 0.005493 ], [ 0.030212, 0.008240 ], [ 0.032959, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262704", "Lat": "0.0018000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.002747 ], [ 0.024719, 0.002747 ], [ 0.024719, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0262700", "Lat": "0.0018000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.002747 ], [ 0.024719, 0.002747 ], [ 0.024719, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.002747 ], [ 0.027466, 0.000000 ], [ 0.024719, 0.000000 ], [ 0.024719, 0.002747 ], [ 0.027466, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.002747 ], [ 0.027466, 0.000000 ], [ 0.024719, 0.000000 ], [ 0.024719, 0.002747 ], [ 0.027466, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0288974", "Lat": "0.0018000", "KPI": 53, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.005493 ], [ 0.030212, 0.002747 ], [ 0.027466, 0.002747 ], [ 0.027466, 0.005493 ], [ 0.030212, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0289000", "Lat": "0.0018000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.005493 ], [ 0.030212, 0.002747 ], [ 0.027466, 0.002747 ], [ 0.027466, 0.005493 ], [ 0.030212, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0288974", "Lat": "0.0000000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.002747 ], [ 0.030212, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.002747 ], [ 0.030212, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0289000", "Lat": "0.0000000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.002747 ], [ 0.030212, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.002747 ], [ 0.030212, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0315245", "Lat": "0.0018000", "KPI": 992, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.002747 ], [ 0.030212, 0.002747 ], [ 0.030212, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0315200", "Lat": "0.0018000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.002747 ], [ 0.030212, 0.002747 ], [ 0.030212, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.002747 ], [ 0.032959, 0.000000 ], [ 0.030212, 0.000000 ], [ 0.030212, 0.002747 ], [ 0.032959, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.002747 ], [ 0.032959, 0.000000 ], [ 0.030212, 0.000000 ], [ 0.030212, 0.002747 ], [ 0.032959, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0341515", "Lat": "0.0054000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.008240 ], [ 0.035706, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.008240 ], [ 0.035706, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341500", "Lat": "0.0054000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.008240 ], [ 0.035706, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.008240 ], [ 0.035706, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.008240 ], [ 0.038452, 0.005493 ], [ 0.035706, 0.005493 ], [ 0.035706, 0.008240 ], [ 0.038452, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.008240 ], [ 0.038452, 0.005493 ], [ 0.035706, 0.005493 ], [ 0.035706, 0.008240 ], [ 0.038452, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0341515", "Lat": "0.0018000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.005493 ], [ 0.035706, 0.002747 ], [ 0.032959, 0.002747 ], [ 0.032959, 0.005493 ], [ 0.035706, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0018000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.005493 ], [ 0.035706, 0.002747 ], [ 0.032959, 0.002747 ], [ 0.032959, 0.005493 ], [ 0.035706, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0341515", "Lat": "0.0000000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.002747 ], [ 0.035706, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.002747 ], [ 0.035706, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0000000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.002747 ], [ 0.035706, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.002747 ], [ 0.035706, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0367786", "Lat": "0.0018000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.002747 ], [ 0.035706, 0.002747 ], [ 0.035706, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0018000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.002747 ], [ 0.035706, 0.002747 ], [ 0.035706, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.002747 ], [ 0.038452, 0.000000 ], [ 0.035706, 0.000000 ], [ 0.035706, 0.002747 ], [ 0.038452, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.002747 ], [ 0.038452, 0.000000 ], [ 0.035706, 0.000000 ], [ 0.035706, 0.002747 ], [ 0.038452, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0054000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.008240 ], [ 0.041199, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.008240 ], [ 0.041199, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0394100", "Lat": "0.0054000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.008240 ], [ 0.041199, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.008240 ], [ 0.041199, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.008240 ], [ 0.043945, 0.005493 ], [ 0.041199, 0.005493 ], [ 0.041199, 0.008240 ], [ 0.043945, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.008240 ], [ 0.043945, 0.005493 ], [ 0.041199, 0.005493 ], [ 0.041199, 0.008240 ], [ 0.043945, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0394056", "Lat": "0.0018000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.005493 ], [ 0.041199, 0.002747 ], [ 0.038452, 0.002747 ], [ 0.038452, 0.005493 ], [ 0.041199, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394100", "Lat": "0.0018000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.005493 ], [ 0.041199, 0.002747 ], [ 0.038452, 0.002747 ], [ 0.038452, 0.005493 ], [ 0.041199, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0000000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.002747 ], [ 0.041199, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.002747 ], [ 0.041199, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394100", "Lat": "0.0000000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.002747 ], [ 0.041199, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.002747 ], [ 0.041199, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420326", "Lat": "0.0018000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.002747 ], [ 0.041199, 0.002747 ], [ 0.041199, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0420300", "Lat": "0.0018000", "KPI": 331, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.002747 ], [ 0.041199, 0.002747 ], [ 0.041199, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.002747 ], [ 0.043945, 0.000000 ], [ 0.041199, 0.000000 ], [ 0.041199, 0.002747 ], [ 0.043945, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.002747 ], [ 0.043945, 0.000000 ], [ 0.041199, 0.000000 ], [ 0.041199, 0.002747 ], [ 0.043945, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0054000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.008240 ], [ 0.046692, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.008240 ], [ 0.046692, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0054000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.008240 ], [ 0.046692, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.008240 ], [ 0.046692, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.008240 ], [ 0.049438, 0.005493 ], [ 0.046692, 0.005493 ], [ 0.046692, 0.008240 ], [ 0.049438, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.008240 ], [ 0.049438, 0.005493 ], [ 0.046692, 0.005493 ], [ 0.046692, 0.008240 ], [ 0.049438, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0018000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.005493 ], [ 0.046692, 0.002747 ], [ 0.043945, 0.002747 ], [ 0.043945, 0.005493 ], [ 0.046692, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0446600", "Lat": "0.0018000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.005493 ], [ 0.046692, 0.002747 ], [ 0.043945, 0.002747 ], [ 0.043945, 0.005493 ], [ 0.046692, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0446597", "Lat": "0.0000000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.002747 ], [ 0.046692, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.002747 ], [ 0.046692, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0446600", "Lat": "0.0000000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.002747 ], [ 0.046692, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.002747 ], [ 0.046692, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0472867", "Lat": "0.0018000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.002747 ], [ 0.046692, 0.002747 ], [ 0.046692, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0018000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.002747 ], [ 0.046692, 0.002747 ], [ 0.046692, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.002747 ], [ 0.049438, 0.000000 ], [ 0.046692, 0.000000 ], [ 0.046692, 0.002747 ], [ 0.049438, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.002747 ], [ 0.049438, 0.000000 ], [ 0.046692, 0.000000 ], [ 0.046692, 0.002747 ], [ 0.049438, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499138", "Lat": "0.0054000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.008240 ], [ 0.052185, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.008240 ], [ 0.052185, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499100", "Lat": "0.0054000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.008240 ], [ 0.052185, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.008240 ], [ 0.052185, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.008240 ], [ 0.054932, 0.005493 ], [ 0.052185, 0.005493 ], [ 0.052185, 0.008240 ], [ 0.054932, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.008240 ], [ 0.054932, 0.005493 ], [ 0.052185, 0.005493 ], [ 0.052185, 0.008240 ], [ 0.054932, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0499138", "Lat": "0.0018000", "KPI": 958, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.005493 ], [ 0.052185, 0.002747 ], [ 0.049438, 0.002747 ], [ 0.049438, 0.005493 ], [ 0.052185, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0018000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.005493 ], [ 0.052185, 0.002747 ], [ 0.049438, 0.002747 ], [ 0.049438, 0.005493 ], [ 0.052185, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0000000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.002747 ], [ 0.052185, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.002747 ], [ 0.052185, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0499100", "Lat": "0.0000000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.002747 ], [ 0.052185, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.002747 ], [ 0.052185, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525408", "Lat": "0.0018000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.002747 ], [ 0.052185, 0.002747 ], [ 0.052185, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0525400", "Lat": "0.0018000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.002747 ], [ 0.052185, 0.002747 ], [ 0.052185, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.002747 ], [ 0.054932, 0.000000 ], [ 0.052185, 0.000000 ], [ 0.052185, 0.002747 ], [ 0.054932, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.002747 ], [ 0.054932, 0.000000 ], [ 0.052185, 0.000000 ], [ 0.052185, 0.002747 ], [ 0.054932, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551678", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.008240 ], [ 0.057678, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.008240 ], [ 0.057678, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0551700", "Lat": "0.0054000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.008240 ], [ 0.057678, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.008240 ], [ 0.057678, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.008240 ], [ 0.060425, 0.005493 ], [ 0.057678, 0.005493 ], [ 0.057678, 0.008240 ], [ 0.060425, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.008240 ], [ 0.060425, 0.005493 ], [ 0.057678, 0.005493 ], [ 0.057678, 0.008240 ], [ 0.060425, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551678", "Lat": "0.0018000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.005493 ], [ 0.057678, 0.002747 ], [ 0.054932, 0.002747 ], [ 0.054932, 0.005493 ], [ 0.057678, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0018000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.005493 ], [ 0.057678, 0.002747 ], [ 0.054932, 0.002747 ], [ 0.054932, 0.005493 ], [ 0.057678, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0551678", "Lat": "0.0000000", "KPI": 910, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.002747 ], [ 0.057678, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.002747 ], [ 0.057678, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0551700", "Lat": "0.0000000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.002747 ], [ 0.057678, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.002747 ], [ 0.057678, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0577949", "Lat": "0.0018000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.002747 ], [ 0.057678, 0.002747 ], [ 0.057678, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577900", "Lat": "0.0018000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.002747 ], [ 0.057678, 0.002747 ], [ 0.057678, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.002747 ], [ 0.060425, 0.000000 ], [ 0.057678, 0.000000 ], [ 0.057678, 0.002747 ], [ 0.060425, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.002747 ], [ 0.060425, 0.000000 ], [ 0.057678, 0.000000 ], [ 0.057678, 0.002747 ], [ 0.060425, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630490", "Lat": "0.0054000", "KPI": 647, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.008240 ], [ 0.063171, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.008240 ], [ 0.063171, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0630500", "Lat": "0.0054000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.008240 ], [ 0.063171, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.008240 ], [ 0.063171, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630490", "Lat": "0.0018000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.005493 ], [ 0.063171, 0.002747 ], [ 0.060425, 0.002747 ], [ 0.060425, 0.005493 ], [ 0.063171, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0018000", "KPI": 873, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.005493 ], [ 0.063171, 0.002747 ], [ 0.060425, 0.002747 ], [ 0.060425, 0.005493 ], [ 0.063171, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0630490", "Lat": "0.0000000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.002747 ], [ 0.063171, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.002747 ], [ 0.063171, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0630500", "Lat": "0.0000000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.002747 ], [ 0.063171, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.002747 ], [ 0.063171, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.008240 ], [ 0.065918, 0.005493 ], [ 0.063171, 0.005493 ], [ 0.063171, 0.008240 ], [ 0.065918, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.008240 ], [ 0.065918, 0.005493 ], [ 0.063171, 0.005493 ], [ 0.063171, 0.008240 ], [ 0.065918, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0683030", "Lat": "0.0054000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.008240 ], [ 0.068665, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.008240 ], [ 0.068665, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0683000", "Lat": "0.0054000", "KPI": 681, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.008240 ], [ 0.068665, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.008240 ], [ 0.068665, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656760", "Lat": "0.0018000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.002747 ], [ 0.063171, 0.002747 ], [ 0.063171, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656800", "Lat": "0.0018000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.002747 ], [ 0.063171, 0.002747 ], [ 0.063171, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.002747 ], [ 0.065918, 0.000000 ], [ 0.063171, 0.000000 ], [ 0.063171, 0.002747 ], [ 0.065918, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.002747 ], [ 0.065918, 0.000000 ], [ 0.063171, 0.000000 ], [ 0.063171, 0.002747 ], [ 0.065918, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0683030", "Lat": "0.0018000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.005493 ], [ 0.068665, 0.002747 ], [ 0.065918, 0.002747 ], [ 0.065918, 0.005493 ], [ 0.068665, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0683000", "Lat": "0.0018000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.005493 ], [ 0.068665, 0.002747 ], [ 0.065918, 0.002747 ], [ 0.065918, 0.005493 ], [ 0.068665, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0000000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.002747 ], [ 0.068665, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.002747 ], [ 0.068665, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0683000", "Lat": "0.0000000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.002747 ], [ 0.068665, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.002747 ], [ 0.068665, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.008240 ], [ 0.071411, 0.005493 ], [ 0.068665, 0.005493 ], [ 0.068665, 0.008240 ], [ 0.071411, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.008240 ], [ 0.071411, 0.005493 ], [ 0.068665, 0.005493 ], [ 0.068665, 0.008240 ], [ 0.071411, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0735571", "Lat": "0.0054000", "KPI": 859, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.008240 ], [ 0.074158, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.008240 ], [ 0.074158, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0735600", "Lat": "0.0054000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.008240 ], [ 0.074158, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.008240 ], [ 0.074158, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0709301", "Lat": "0.0018000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.002747 ], [ 0.068665, 0.002747 ], [ 0.068665, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0709300", "Lat": "0.0018000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.002747 ], [ 0.068665, 0.002747 ], [ 0.068665, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.002747 ], [ 0.071411, 0.000000 ], [ 0.068665, 0.000000 ], [ 0.068665, 0.002747 ], [ 0.071411, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.002747 ], [ 0.071411, 0.000000 ], [ 0.068665, 0.000000 ], [ 0.068665, 0.002747 ], [ 0.071411, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0735571", "Lat": "0.0018000", "KPI": 931, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.005493 ], [ 0.074158, 0.002747 ], [ 0.071411, 0.002747 ], [ 0.071411, 0.005493 ], [ 0.074158, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0735600", "Lat": "0.0018000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.005493 ], [ 0.074158, 0.002747 ], [ 0.071411, 0.002747 ], [ 0.071411, 0.005493 ], [ 0.074158, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0000000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.002747 ], [ 0.074158, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.002747 ], [ 0.074158, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0735600", "Lat": "0.0000000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.002747 ], [ 0.074158, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.002747 ], [ 0.074158, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.008240 ], [ 0.076904, 0.005493 ], [ 0.074158, 0.005493 ], [ 0.074158, 0.008240 ], [ 0.076904, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.008240 ], [ 0.076904, 0.005493 ], [ 0.074158, 0.005493 ], [ 0.074158, 0.008240 ], [ 0.076904, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0788112", "Lat": "0.0054000", "KPI": 175, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.008240 ], [ 0.079651, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.008240 ], [ 0.079651, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0788100", "Lat": "0.0054000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.008240 ], [ 0.079651, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.008240 ], [ 0.079651, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761842", "Lat": "0.0018000", "KPI": 458, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.002747 ], [ 0.074158, 0.002747 ], [ 0.074158, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761800", "Lat": "0.0018000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.002747 ], [ 0.074158, 0.002747 ], [ 0.074158, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.002747 ], [ 0.076904, 0.000000 ], [ 0.074158, 0.000000 ], [ 0.074158, 0.002747 ], [ 0.076904, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.002747 ], [ 0.076904, 0.000000 ], [ 0.074158, 0.000000 ], [ 0.074158, 0.002747 ], [ 0.076904, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0788112", "Lat": "0.0018000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.005493 ], [ 0.079651, 0.002747 ], [ 0.076904, 0.002747 ], [ 0.076904, 0.005493 ], [ 0.079651, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0788100", "Lat": "0.0018000", "KPI": 886, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.005493 ], [ 0.079651, 0.002747 ], [ 0.076904, 0.002747 ], [ 0.076904, 0.005493 ], [ 0.079651, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0000000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.002747 ], [ 0.079651, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.002747 ], [ 0.079651, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0788100", "Lat": "0.0000000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.002747 ], [ 0.079651, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.002747 ], [ 0.079651, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.008240 ], [ 0.082397, 0.005493 ], [ 0.079651, 0.005493 ], [ 0.079651, 0.008240 ], [ 0.082397, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.008240 ], [ 0.082397, 0.005493 ], [ 0.079651, 0.005493 ], [ 0.079651, 0.008240 ], [ 0.082397, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0018000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.002747 ], [ 0.079651, 0.002747 ], [ 0.079651, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0018000", "KPI": 505, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.002747 ], [ 0.079651, 0.002747 ], [ 0.079651, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.002747 ], [ 0.082397, 0.000000 ], [ 0.079651, 0.000000 ], [ 0.079651, 0.002747 ], [ 0.082397, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.002747 ], [ 0.082397, 0.000000 ], [ 0.079651, 0.000000 ], [ 0.079651, 0.002747 ], [ 0.082397, 0.002747 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 512, "y": 511 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 128 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0026270", "Lat": "0.0540000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.057678 ], [ 0.002747, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.057678 ], [ 0.002747, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0026300", "Lat": "0.0540000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.057678 ], [ 0.002747, 0.054932 ], [ 0.000000, 0.054932 ], [ 0.000000, 0.057678 ], [ 0.002747, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0026270", "Lat": "0.0522000", "KPI": 116, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.054932 ], [ 0.002747, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.054932 ], [ 0.002747, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026300", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.054932 ], [ 0.002747, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.054932 ], [ 0.002747, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0026270", "Lat": "0.0486000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.052185 ], [ 0.002747, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.052185 ], [ 0.002747, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0026300", "Lat": "0.0486000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.052185 ], [ 0.002747, 0.049438 ], [ 0.000000, 0.049438 ], [ 0.000000, 0.052185 ], [ 0.002747, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0450000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.049438 ], [ 0.002747, 0.046692 ], [ 0.000000, 0.046692 ], [ 0.000000, 0.049438 ], [ 0.002747, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0026300", "Lat": "0.0450000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.049438 ], [ 0.002747, 0.046692 ], [ 0.000000, 0.046692 ], [ 0.000000, 0.049438 ], [ 0.002747, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0432000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.046692 ], [ 0.002747, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.046692 ], [ 0.002747, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0026300", "Lat": "0.0432000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.046692 ], [ 0.002747, 0.043945 ], [ 0.000000, 0.043945 ], [ 0.000000, 0.046692 ], [ 0.002747, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.057678 ], [ 0.005493, 0.054932 ], [ 0.002747, 0.054932 ], [ 0.002747, 0.057678 ], [ 0.005493, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.057678 ], [ 0.005493, 0.054932 ], [ 0.002747, 0.054932 ], [ 0.002747, 0.057678 ], [ 0.005493, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0052541", "Lat": "0.0522000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.052185 ], [ 0.002747, 0.052185 ], [ 0.002747, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.054932 ], [ 0.005493, 0.052185 ], [ 0.002747, 0.052185 ], [ 0.002747, 0.054932 ], [ 0.005493, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.052185 ], [ 0.005493, 0.049438 ], [ 0.002747, 0.049438 ], [ 0.002747, 0.052185 ], [ 0.005493, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.052185 ], [ 0.005493, 0.049438 ], [ 0.002747, 0.049438 ], [ 0.002747, 0.052185 ], [ 0.005493, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0078811", "Lat": "0.0540000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.057678 ], [ 0.008240, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.057678 ], [ 0.008240, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078800", "Lat": "0.0540000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.057678 ], [ 0.008240, 0.054932 ], [ 0.005493, 0.054932 ], [ 0.005493, 0.057678 ], [ 0.008240, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078811", "Lat": "0.0522000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.054932 ], [ 0.008240, 0.052185 ], [ 0.005493, 0.052185 ], [ 0.005493, 0.054932 ], [ 0.008240, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0078800", "Lat": "0.0522000", "KPI": 48, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.054932 ], [ 0.008240, 0.052185 ], [ 0.005493, 0.052185 ], [ 0.005493, 0.054932 ], [ 0.008240, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078811", "Lat": "0.0486000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.052185 ], [ 0.008240, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.052185 ], [ 0.008240, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0078800", "Lat": "0.0486000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.052185 ], [ 0.008240, 0.049438 ], [ 0.005493, 0.049438 ], [ 0.005493, 0.052185 ], [ 0.008240, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0052541", "Lat": "0.0450000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.046692 ], [ 0.002747, 0.046692 ], [ 0.002747, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0450000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.049438 ], [ 0.005493, 0.046692 ], [ 0.002747, 0.046692 ], [ 0.002747, 0.049438 ], [ 0.005493, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.046692 ], [ 0.005493, 0.043945 ], [ 0.002747, 0.043945 ], [ 0.002747, 0.046692 ], [ 0.005493, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.046692 ], [ 0.005493, 0.043945 ], [ 0.002747, 0.043945 ], [ 0.002747, 0.046692 ], [ 0.005493, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078811", "Lat": "0.0450000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.049438 ], [ 0.008240, 0.046692 ], [ 0.005493, 0.046692 ], [ 0.005493, 0.049438 ], [ 0.008240, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0078800", "Lat": "0.0450000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.049438 ], [ 0.008240, 0.046692 ], [ 0.005493, 0.046692 ], [ 0.005493, 0.049438 ], [ 0.008240, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0078811", "Lat": "0.0432000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.046692 ], [ 0.008240, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.046692 ], [ 0.008240, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0078800", "Lat": "0.0432000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.046692 ], [ 0.008240, 0.043945 ], [ 0.005493, 0.043945 ], [ 0.005493, 0.046692 ], [ 0.008240, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.057678 ], [ 0.010986, 0.054932 ], [ 0.008240, 0.054932 ], [ 0.008240, 0.057678 ], [ 0.010986, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.057678 ], [ 0.010986, 0.054932 ], [ 0.008240, 0.054932 ], [ 0.008240, 0.057678 ], [ 0.010986, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0105082", "Lat": "0.0522000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.052185 ], [ 0.008240, 0.052185 ], [ 0.008240, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0105100", "Lat": "0.0522000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.054932 ], [ 0.010986, 0.052185 ], [ 0.008240, 0.052185 ], [ 0.008240, 0.054932 ], [ 0.010986, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0486000", "KPI": 595, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.052185 ], [ 0.010986, 0.049438 ], [ 0.008240, 0.049438 ], [ 0.008240, 0.052185 ], [ 0.010986, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0105100", "Lat": "0.0486000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.052185 ], [ 0.010986, 0.049438 ], [ 0.008240, 0.049438 ], [ 0.008240, 0.052185 ], [ 0.010986, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0131352", "Lat": "0.0540000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.057678 ], [ 0.013733, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.057678 ], [ 0.013733, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0131400", "Lat": "0.0540000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.057678 ], [ 0.013733, 0.054932 ], [ 0.010986, 0.054932 ], [ 0.010986, 0.057678 ], [ 0.013733, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0131352", "Lat": "0.0522000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.054932 ], [ 0.013733, 0.052185 ], [ 0.010986, 0.052185 ], [ 0.010986, 0.054932 ], [ 0.013733, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0131400", "Lat": "0.0522000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.054932 ], [ 0.013733, 0.052185 ], [ 0.010986, 0.052185 ], [ 0.010986, 0.054932 ], [ 0.013733, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0131352", "Lat": "0.0486000", "KPI": 202, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.052185 ], [ 0.013733, 0.049438 ], [ 0.010986, 0.049438 ], [ 0.010986, 0.052185 ], [ 0.013733, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0131400", "Lat": "0.0486000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.052185 ], [ 0.013733, 0.049438 ], [ 0.010986, 0.049438 ], [ 0.010986, 0.052185 ], [ 0.013733, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0105082", "Lat": "0.0450000", "KPI": 246, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.046692 ], [ 0.008240, 0.046692 ], [ 0.008240, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0105100", "Lat": "0.0450000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.049438 ], [ 0.010986, 0.046692 ], [ 0.008240, 0.046692 ], [ 0.008240, 0.049438 ], [ 0.010986, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.046692 ], [ 0.010986, 0.043945 ], [ 0.008240, 0.043945 ], [ 0.008240, 0.046692 ], [ 0.010986, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.046692 ], [ 0.010986, 0.043945 ], [ 0.008240, 0.043945 ], [ 0.008240, 0.046692 ], [ 0.010986, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0131352", "Lat": "0.0450000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.049438 ], [ 0.013733, 0.046692 ], [ 0.010986, 0.046692 ], [ 0.010986, 0.049438 ], [ 0.013733, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0131400", "Lat": "0.0450000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.049438 ], [ 0.013733, 0.046692 ], [ 0.010986, 0.046692 ], [ 0.010986, 0.049438 ], [ 0.013733, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0131352", "Lat": "0.0432000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.046692 ], [ 0.013733, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.046692 ], [ 0.013733, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0432000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.046692 ], [ 0.013733, 0.043945 ], [ 0.010986, 0.043945 ], [ 0.010986, 0.046692 ], [ 0.013733, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0540000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.057678 ], [ 0.016479, 0.054932 ], [ 0.013733, 0.054932 ], [ 0.013733, 0.057678 ], [ 0.016479, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0157600", "Lat": "0.0540000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.057678 ], [ 0.016479, 0.054932 ], [ 0.013733, 0.054932 ], [ 0.013733, 0.057678 ], [ 0.016479, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0157622", "Lat": "0.0522000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.054932 ], [ 0.016479, 0.052185 ], [ 0.013733, 0.052185 ], [ 0.013733, 0.054932 ], [ 0.016479, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157600", "Lat": "0.0522000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.054932 ], [ 0.016479, 0.052185 ], [ 0.013733, 0.052185 ], [ 0.013733, 0.054932 ], [ 0.016479, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0157622", "Lat": "0.0486000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.052185 ], [ 0.016479, 0.049438 ], [ 0.013733, 0.049438 ], [ 0.013733, 0.052185 ], [ 0.016479, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0157600", "Lat": "0.0486000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.052185 ], [ 0.016479, 0.049438 ], [ 0.013733, 0.049438 ], [ 0.013733, 0.052185 ], [ 0.016479, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0183893", "Lat": "0.0540000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.057678 ], [ 0.019226, 0.054932 ], [ 0.016479, 0.054932 ], [ 0.016479, 0.057678 ], [ 0.019226, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183900", "Lat": "0.0540000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.057678 ], [ 0.019226, 0.054932 ], [ 0.016479, 0.054932 ], [ 0.016479, 0.057678 ], [ 0.019226, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0183893", "Lat": "0.0522000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.054932 ], [ 0.019226, 0.052185 ], [ 0.016479, 0.052185 ], [ 0.016479, 0.054932 ], [ 0.019226, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0183900", "Lat": "0.0522000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.054932 ], [ 0.019226, 0.052185 ], [ 0.016479, 0.052185 ], [ 0.016479, 0.054932 ], [ 0.019226, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0183893", "Lat": "0.0486000", "KPI": 115, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.052185 ], [ 0.019226, 0.049438 ], [ 0.016479, 0.049438 ], [ 0.016479, 0.052185 ], [ 0.019226, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0183900", "Lat": "0.0486000", "KPI": 880, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.052185 ], [ 0.019226, 0.049438 ], [ 0.016479, 0.049438 ], [ 0.016479, 0.052185 ], [ 0.019226, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157622", "Lat": "0.0450000", "KPI": 88, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.049438 ], [ 0.016479, 0.046692 ], [ 0.013733, 0.046692 ], [ 0.013733, 0.049438 ], [ 0.016479, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0157600", "Lat": "0.0450000", "KPI": 689, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.049438 ], [ 0.016479, 0.046692 ], [ 0.013733, 0.046692 ], [ 0.013733, 0.049438 ], [ 0.016479, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157622", "Lat": "0.0432000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.046692 ], [ 0.016479, 0.043945 ], [ 0.013733, 0.043945 ], [ 0.013733, 0.046692 ], [ 0.016479, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0432000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.046692 ], [ 0.016479, 0.043945 ], [ 0.013733, 0.043945 ], [ 0.013733, 0.046692 ], [ 0.016479, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0183893", "Lat": "0.0450000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.049438 ], [ 0.019226, 0.046692 ], [ 0.016479, 0.046692 ], [ 0.016479, 0.049438 ], [ 0.019226, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0183900", "Lat": "0.0450000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.049438 ], [ 0.019226, 0.046692 ], [ 0.016479, 0.046692 ], [ 0.016479, 0.049438 ], [ 0.019226, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0183893", "Lat": "0.0432000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.046692 ], [ 0.019226, 0.043945 ], [ 0.016479, 0.043945 ], [ 0.016479, 0.046692 ], [ 0.019226, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0183900", "Lat": "0.0432000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.046692 ], [ 0.019226, 0.043945 ], [ 0.016479, 0.043945 ], [ 0.016479, 0.046692 ], [ 0.019226, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.057678 ], [ 0.021973, 0.054932 ], [ 0.019226, 0.054932 ], [ 0.019226, 0.057678 ], [ 0.021973, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.057678 ], [ 0.021973, 0.054932 ], [ 0.019226, 0.054932 ], [ 0.019226, 0.057678 ], [ 0.021973, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0210163", "Lat": "0.0522000", "KPI": 125, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.052185 ], [ 0.019226, 0.052185 ], [ 0.019226, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0522000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.054932 ], [ 0.021973, 0.052185 ], [ 0.019226, 0.052185 ], [ 0.019226, 0.054932 ], [ 0.021973, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0210163", "Lat": "0.0486000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.052185 ], [ 0.021973, 0.049438 ], [ 0.019226, 0.049438 ], [ 0.019226, 0.052185 ], [ 0.021973, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0210200", "Lat": "0.0486000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.052185 ], [ 0.021973, 0.049438 ], [ 0.019226, 0.049438 ], [ 0.019226, 0.052185 ], [ 0.021973, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0236434", "Lat": "0.0540000", "KPI": 676, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.057678 ], [ 0.024719, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.057678 ], [ 0.024719, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0236400", "Lat": "0.0540000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.057678 ], [ 0.024719, 0.054932 ], [ 0.021973, 0.054932 ], [ 0.021973, 0.057678 ], [ 0.024719, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0236434", "Lat": "0.0522000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.054932 ], [ 0.024719, 0.052185 ], [ 0.021973, 0.052185 ], [ 0.021973, 0.054932 ], [ 0.024719, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0236400", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.054932 ], [ 0.024719, 0.052185 ], [ 0.021973, 0.052185 ], [ 0.021973, 0.054932 ], [ 0.024719, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0236434", "Lat": "0.0486000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.052185 ], [ 0.024719, 0.049438 ], [ 0.021973, 0.049438 ], [ 0.021973, 0.052185 ], [ 0.024719, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0236400", "Lat": "0.0486000", "KPI": 726, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.052185 ], [ 0.024719, 0.049438 ], [ 0.021973, 0.049438 ], [ 0.021973, 0.052185 ], [ 0.024719, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0210163", "Lat": "0.0450000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.049438 ], [ 0.021973, 0.046692 ], [ 0.019226, 0.046692 ], [ 0.019226, 0.049438 ], [ 0.021973, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210200", "Lat": "0.0450000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.049438 ], [ 0.021973, 0.046692 ], [ 0.019226, 0.046692 ], [ 0.019226, 0.049438 ], [ 0.021973, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.046692 ], [ 0.021973, 0.043945 ], [ 0.019226, 0.043945 ], [ 0.019226, 0.046692 ], [ 0.021973, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.046692 ], [ 0.021973, 0.043945 ], [ 0.019226, 0.043945 ], [ 0.019226, 0.046692 ], [ 0.021973, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0236434", "Lat": "0.0450000", "KPI": 20, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.049438 ], [ 0.024719, 0.046692 ], [ 0.021973, 0.046692 ], [ 0.021973, 0.049438 ], [ 0.024719, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0236400", "Lat": "0.0450000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.049438 ], [ 0.024719, 0.046692 ], [ 0.021973, 0.046692 ], [ 0.021973, 0.049438 ], [ 0.024719, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0236434", "Lat": "0.0432000", "KPI": 774, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.046692 ], [ 0.024719, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.046692 ], [ 0.024719, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0236400", "Lat": "0.0432000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.046692 ], [ 0.024719, 0.043945 ], [ 0.021973, 0.043945 ], [ 0.021973, 0.046692 ], [ 0.024719, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0262704", "Lat": "0.0540000", "KPI": 765, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.057678 ], [ 0.027466, 0.054932 ], [ 0.024719, 0.054932 ], [ 0.024719, 0.057678 ], [ 0.027466, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0262700", "Lat": "0.0540000", "KPI": 797, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.057678 ], [ 0.027466, 0.054932 ], [ 0.024719, 0.054932 ], [ 0.024719, 0.057678 ], [ 0.027466, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0262704", "Lat": "0.0522000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.054932 ], [ 0.027466, 0.052185 ], [ 0.024719, 0.052185 ], [ 0.024719, 0.054932 ], [ 0.027466, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0262700", "Lat": "0.0522000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.054932 ], [ 0.027466, 0.052185 ], [ 0.024719, 0.052185 ], [ 0.024719, 0.054932 ], [ 0.027466, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0288974", "Lat": "0.0540000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.057678 ], [ 0.030212, 0.054932 ], [ 0.027466, 0.054932 ], [ 0.027466, 0.057678 ], [ 0.030212, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0262700", "Lat": "0.0486000", "KPI": 645, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.052185 ], [ 0.027466, 0.049438 ], [ 0.024719, 0.049438 ], [ 0.024719, 0.052185 ], [ 0.027466, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0288974", "Lat": "0.0522000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.054932 ], [ 0.030212, 0.052185 ], [ 0.027466, 0.052185 ], [ 0.027466, 0.054932 ], [ 0.030212, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0289000", "Lat": "0.0540000", "KPI": 705, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.057678 ], [ 0.030212, 0.054932 ], [ 0.027466, 0.054932 ], [ 0.027466, 0.057678 ], [ 0.030212, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0486000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.052185 ], [ 0.027466, 0.049438 ], [ 0.024719, 0.049438 ], [ 0.024719, 0.052185 ], [ 0.027466, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0289000", "Lat": "0.0522000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.054932 ], [ 0.030212, 0.052185 ], [ 0.027466, 0.052185 ], [ 0.027466, 0.054932 ], [ 0.030212, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0288974", "Lat": "0.0486000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.052185 ], [ 0.030212, 0.049438 ], [ 0.027466, 0.049438 ], [ 0.027466, 0.052185 ], [ 0.030212, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0315200", "Lat": "0.0540000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.057678 ], [ 0.032959, 0.054932 ], [ 0.030212, 0.054932 ], [ 0.030212, 0.057678 ], [ 0.032959, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0540000", "KPI": 232, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.057678 ], [ 0.032959, 0.054932 ], [ 0.030212, 0.054932 ], [ 0.030212, 0.057678 ], [ 0.032959, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0315200", "Lat": "0.0522000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.052185 ], [ 0.030212, 0.052185 ], [ 0.030212, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0315245", "Lat": "0.0522000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.054932 ], [ 0.032959, 0.052185 ], [ 0.030212, 0.052185 ], [ 0.030212, 0.054932 ], [ 0.032959, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0289000", "Lat": "0.0486000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.052185 ], [ 0.030212, 0.049438 ], [ 0.027466, 0.049438 ], [ 0.027466, 0.052185 ], [ 0.030212, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0486000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.052185 ], [ 0.032959, 0.049438 ], [ 0.030212, 0.049438 ], [ 0.030212, 0.052185 ], [ 0.032959, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0315200", "Lat": "0.0486000", "KPI": 901, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.052185 ], [ 0.032959, 0.049438 ], [ 0.030212, 0.049438 ], [ 0.030212, 0.052185 ], [ 0.032959, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0262704", "Lat": "0.0450000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.049438 ], [ 0.027466, 0.046692 ], [ 0.024719, 0.046692 ], [ 0.024719, 0.049438 ], [ 0.027466, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0262700", "Lat": "0.0450000", "KPI": 693, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.049438 ], [ 0.027466, 0.046692 ], [ 0.024719, 0.046692 ], [ 0.024719, 0.049438 ], [ 0.027466, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262704", "Lat": "0.0432000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.046692 ], [ 0.027466, 0.043945 ], [ 0.024719, 0.043945 ], [ 0.024719, 0.046692 ], [ 0.027466, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0262700", "Lat": "0.0432000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.046692 ], [ 0.027466, 0.043945 ], [ 0.024719, 0.043945 ], [ 0.024719, 0.046692 ], [ 0.027466, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0288974", "Lat": "0.0450000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.049438 ], [ 0.030212, 0.046692 ], [ 0.027466, 0.046692 ], [ 0.027466, 0.049438 ], [ 0.030212, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0289000", "Lat": "0.0450000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.049438 ], [ 0.030212, 0.046692 ], [ 0.027466, 0.046692 ], [ 0.027466, 0.049438 ], [ 0.030212, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0288974", "Lat": "0.0432000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.046692 ], [ 0.030212, 0.043945 ], [ 0.027466, 0.043945 ], [ 0.027466, 0.046692 ], [ 0.030212, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0289000", "Lat": "0.0432000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.046692 ], [ 0.030212, 0.043945 ], [ 0.027466, 0.043945 ], [ 0.027466, 0.046692 ], [ 0.030212, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0315245", "Lat": "0.0450000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.049438 ], [ 0.032959, 0.046692 ], [ 0.030212, 0.046692 ], [ 0.030212, 0.049438 ], [ 0.032959, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0315200", "Lat": "0.0450000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.049438 ], [ 0.032959, 0.046692 ], [ 0.030212, 0.046692 ], [ 0.030212, 0.049438 ], [ 0.032959, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0432000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.046692 ], [ 0.032959, 0.043945 ], [ 0.030212, 0.043945 ], [ 0.030212, 0.046692 ], [ 0.032959, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0432000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.046692 ], [ 0.032959, 0.043945 ], [ 0.030212, 0.043945 ], [ 0.030212, 0.046692 ], [ 0.032959, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0341515", "Lat": "0.0540000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.057678 ], [ 0.035706, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.057678 ], [ 0.035706, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0341500", "Lat": "0.0540000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.057678 ], [ 0.035706, 0.054932 ], [ 0.032959, 0.054932 ], [ 0.032959, 0.057678 ], [ 0.035706, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0341515", "Lat": "0.0522000", "KPI": 590, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.054932 ], [ 0.035706, 0.052185 ], [ 0.032959, 0.052185 ], [ 0.032959, 0.054932 ], [ 0.035706, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0341500", "Lat": "0.0522000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.054932 ], [ 0.035706, 0.052185 ], [ 0.032959, 0.052185 ], [ 0.032959, 0.054932 ], [ 0.035706, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0341515", "Lat": "0.0486000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.052185 ], [ 0.035706, 0.049438 ], [ 0.032959, 0.049438 ], [ 0.032959, 0.052185 ], [ 0.035706, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0341500", "Lat": "0.0486000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.052185 ], [ 0.035706, 0.049438 ], [ 0.032959, 0.049438 ], [ 0.032959, 0.052185 ], [ 0.035706, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0540000", "KPI": 817, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.057678 ], [ 0.038452, 0.054932 ], [ 0.035706, 0.054932 ], [ 0.035706, 0.057678 ], [ 0.038452, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0367800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.057678 ], [ 0.038452, 0.054932 ], [ 0.035706, 0.054932 ], [ 0.035706, 0.057678 ], [ 0.038452, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0367786", "Lat": "0.0522000", "KPI": 952, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.054932 ], [ 0.038452, 0.052185 ], [ 0.035706, 0.052185 ], [ 0.035706, 0.054932 ], [ 0.038452, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0367800", "Lat": "0.0522000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.054932 ], [ 0.038452, 0.052185 ], [ 0.035706, 0.052185 ], [ 0.035706, 0.054932 ], [ 0.038452, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0486000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.052185 ], [ 0.038452, 0.049438 ], [ 0.035706, 0.049438 ], [ 0.035706, 0.052185 ], [ 0.038452, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367800", "Lat": "0.0486000", "KPI": 642, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.052185 ], [ 0.038452, 0.049438 ], [ 0.035706, 0.049438 ], [ 0.035706, 0.052185 ], [ 0.038452, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0341515", "Lat": "0.0450000", "KPI": 920, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.049438 ], [ 0.035706, 0.046692 ], [ 0.032959, 0.046692 ], [ 0.032959, 0.049438 ], [ 0.035706, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0341500", "Lat": "0.0450000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.049438 ], [ 0.035706, 0.046692 ], [ 0.032959, 0.046692 ], [ 0.032959, 0.049438 ], [ 0.035706, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0341515", "Lat": "0.0432000", "KPI": 511, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.046692 ], [ 0.035706, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.046692 ], [ 0.035706, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0341500", "Lat": "0.0432000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.046692 ], [ 0.035706, 0.043945 ], [ 0.032959, 0.043945 ], [ 0.032959, 0.046692 ], [ 0.035706, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0450000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.049438 ], [ 0.038452, 0.046692 ], [ 0.035706, 0.046692 ], [ 0.035706, 0.049438 ], [ 0.038452, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0450000", "KPI": 79, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.049438 ], [ 0.038452, 0.046692 ], [ 0.035706, 0.046692 ], [ 0.035706, 0.049438 ], [ 0.038452, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0432000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.046692 ], [ 0.038452, 0.043945 ], [ 0.035706, 0.043945 ], [ 0.035706, 0.046692 ], [ 0.038452, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0367800", "Lat": "0.0432000", "KPI": 490, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.046692 ], [ 0.038452, 0.043945 ], [ 0.035706, 0.043945 ], [ 0.035706, 0.046692 ], [ 0.038452, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0394056", "Lat": "0.0540000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.057678 ], [ 0.041199, 0.054932 ], [ 0.038452, 0.054932 ], [ 0.038452, 0.057678 ], [ 0.041199, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0394100", "Lat": "0.0540000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.057678 ], [ 0.041199, 0.054932 ], [ 0.038452, 0.054932 ], [ 0.038452, 0.057678 ], [ 0.041199, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0394056", "Lat": "0.0522000", "KPI": 654, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.054932 ], [ 0.041199, 0.052185 ], [ 0.038452, 0.052185 ], [ 0.038452, 0.054932 ], [ 0.041199, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0394100", "Lat": "0.0522000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.054932 ], [ 0.041199, 0.052185 ], [ 0.038452, 0.052185 ], [ 0.038452, 0.054932 ], [ 0.041199, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0486000", "KPI": 799, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.052185 ], [ 0.041199, 0.049438 ], [ 0.038452, 0.049438 ], [ 0.038452, 0.052185 ], [ 0.041199, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0394100", "Lat": "0.0486000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.052185 ], [ 0.041199, 0.049438 ], [ 0.038452, 0.049438 ], [ 0.038452, 0.052185 ], [ 0.041199, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0540000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.057678 ], [ 0.043945, 0.054932 ], [ 0.041199, 0.054932 ], [ 0.041199, 0.057678 ], [ 0.043945, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0420300", "Lat": "0.0540000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.057678 ], [ 0.043945, 0.054932 ], [ 0.041199, 0.054932 ], [ 0.041199, 0.057678 ], [ 0.043945, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420326", "Lat": "0.0522000", "KPI": 282, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.052185 ], [ 0.041199, 0.052185 ], [ 0.041199, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0522000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.054932 ], [ 0.043945, 0.052185 ], [ 0.041199, 0.052185 ], [ 0.041199, 0.054932 ], [ 0.043945, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0420326", "Lat": "0.0486000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.052185 ], [ 0.043945, 0.049438 ], [ 0.041199, 0.049438 ], [ 0.041199, 0.052185 ], [ 0.043945, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0486000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.052185 ], [ 0.043945, 0.049438 ], [ 0.041199, 0.049438 ], [ 0.041199, 0.052185 ], [ 0.043945, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0394056", "Lat": "0.0450000", "KPI": 133, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.049438 ], [ 0.041199, 0.046692 ], [ 0.038452, 0.046692 ], [ 0.038452, 0.049438 ], [ 0.041199, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0394100", "Lat": "0.0450000", "KPI": 966, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.049438 ], [ 0.041199, 0.046692 ], [ 0.038452, 0.046692 ], [ 0.038452, 0.049438 ], [ 0.041199, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0394056", "Lat": "0.0432000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.046692 ], [ 0.041199, 0.043945 ], [ 0.038452, 0.043945 ], [ 0.038452, 0.046692 ], [ 0.041199, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0394100", "Lat": "0.0432000", "KPI": 653, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.046692 ], [ 0.041199, 0.043945 ], [ 0.038452, 0.043945 ], [ 0.038452, 0.046692 ], [ 0.041199, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0450000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.049438 ], [ 0.043945, 0.046692 ], [ 0.041199, 0.046692 ], [ 0.041199, 0.049438 ], [ 0.043945, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420300", "Lat": "0.0450000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.049438 ], [ 0.043945, 0.046692 ], [ 0.041199, 0.046692 ], [ 0.041199, 0.049438 ], [ 0.043945, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.046692 ], [ 0.043945, 0.043945 ], [ 0.041199, 0.043945 ], [ 0.041199, 0.046692 ], [ 0.043945, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.046692 ], [ 0.043945, 0.043945 ], [ 0.041199, 0.043945 ], [ 0.041199, 0.046692 ], [ 0.043945, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0026270", "Lat": "0.0396000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.043945 ], [ 0.002747, 0.041199 ], [ 0.000000, 0.041199 ], [ 0.000000, 0.043945 ], [ 0.002747, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0026300", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.043945 ], [ 0.002747, 0.041199 ], [ 0.000000, 0.041199 ], [ 0.000000, 0.043945 ], [ 0.002747, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0378000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.041199 ], [ 0.002747, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.041199 ], [ 0.002747, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0378000", "KPI": 611, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.041199 ], [ 0.002747, 0.038452 ], [ 0.000000, 0.038452 ], [ 0.000000, 0.041199 ], [ 0.002747, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0342000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.038452 ], [ 0.002747, 0.035706 ], [ 0.000000, 0.035706 ], [ 0.000000, 0.038452 ], [ 0.002747, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0026300", "Lat": "0.0342000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.038452 ], [ 0.002747, 0.035706 ], [ 0.000000, 0.035706 ], [ 0.000000, 0.038452 ], [ 0.002747, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0324000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.035706 ], [ 0.002747, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.035706 ], [ 0.002747, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0026300", "Lat": "0.0324000", "KPI": 769, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.035706 ], [ 0.002747, 0.032959 ], [ 0.000000, 0.032959 ], [ 0.000000, 0.035706 ], [ 0.002747, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0052541", "Lat": "0.0396000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.041199 ], [ 0.002747, 0.041199 ], [ 0.002747, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052500", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.043945 ], [ 0.005493, 0.041199 ], [ 0.002747, 0.041199 ], [ 0.002747, 0.043945 ], [ 0.005493, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.041199 ], [ 0.005493, 0.038452 ], [ 0.002747, 0.038452 ], [ 0.002747, 0.041199 ], [ 0.005493, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.041199 ], [ 0.005493, 0.038452 ], [ 0.002747, 0.038452 ], [ 0.002747, 0.041199 ], [ 0.005493, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0078811", "Lat": "0.0396000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.043945 ], [ 0.008240, 0.041199 ], [ 0.005493, 0.041199 ], [ 0.005493, 0.043945 ], [ 0.008240, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0078800", "Lat": "0.0396000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.043945 ], [ 0.008240, 0.041199 ], [ 0.005493, 0.041199 ], [ 0.005493, 0.043945 ], [ 0.008240, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0078811", "Lat": "0.0378000", "KPI": 201, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.041199 ], [ 0.008240, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.041199 ], [ 0.008240, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0078800", "Lat": "0.0378000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.041199 ], [ 0.008240, 0.038452 ], [ 0.005493, 0.038452 ], [ 0.005493, 0.041199 ], [ 0.008240, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0052541", "Lat": "0.0342000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.035706 ], [ 0.002747, 0.035706 ], [ 0.002747, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0052500", "Lat": "0.0342000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.038452 ], [ 0.005493, 0.035706 ], [ 0.002747, 0.035706 ], [ 0.002747, 0.038452 ], [ 0.005493, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.035706 ], [ 0.005493, 0.032959 ], [ 0.002747, 0.032959 ], [ 0.002747, 0.035706 ], [ 0.005493, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.035706 ], [ 0.005493, 0.032959 ], [ 0.002747, 0.032959 ], [ 0.002747, 0.035706 ], [ 0.005493, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078811", "Lat": "0.0342000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.038452 ], [ 0.008240, 0.035706 ], [ 0.005493, 0.035706 ], [ 0.005493, 0.038452 ], [ 0.008240, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0078800", "Lat": "0.0342000", "KPI": 68, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.038452 ], [ 0.008240, 0.035706 ], [ 0.005493, 0.035706 ], [ 0.005493, 0.038452 ], [ 0.008240, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0324000", "KPI": 661, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.035706 ], [ 0.008240, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.035706 ], [ 0.008240, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0078800", "Lat": "0.0324000", "KPI": 963, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.035706 ], [ 0.008240, 0.032959 ], [ 0.005493, 0.032959 ], [ 0.005493, 0.035706 ], [ 0.008240, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026270", "Lat": "0.0288000", "KPI": 675, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.032959 ], [ 0.002747, 0.030212 ], [ 0.000000, 0.030212 ], [ 0.000000, 0.032959 ], [ 0.002747, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0026300", "Lat": "0.0288000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.032959 ], [ 0.002747, 0.030212 ], [ 0.000000, 0.030212 ], [ 0.000000, 0.032959 ], [ 0.002747, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0270000", "KPI": 943, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.030212 ], [ 0.002747, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.030212 ], [ 0.002747, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0270000", "KPI": 888, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.030212 ], [ 0.002747, 0.027466 ], [ 0.000000, 0.027466 ], [ 0.000000, 0.030212 ], [ 0.002747, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0026270", "Lat": "0.0234000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.027466 ], [ 0.002747, 0.024719 ], [ 0.000000, 0.024719 ], [ 0.000000, 0.027466 ], [ 0.002747, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026300", "Lat": "0.0234000", "KPI": 221, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.027466 ], [ 0.002747, 0.024719 ], [ 0.000000, 0.024719 ], [ 0.000000, 0.027466 ], [ 0.002747, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0216000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.024719 ], [ 0.002747, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.024719 ], [ 0.002747, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0026300", "Lat": "0.0216000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.024719 ], [ 0.002747, 0.021973 ], [ 0.000000, 0.021973 ], [ 0.000000, 0.024719 ], [ 0.002747, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0052541", "Lat": "0.0288000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.030212 ], [ 0.002747, 0.030212 ], [ 0.002747, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0052500", "Lat": "0.0288000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.032959 ], [ 0.005493, 0.030212 ], [ 0.002747, 0.030212 ], [ 0.002747, 0.032959 ], [ 0.005493, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.030212 ], [ 0.005493, 0.027466 ], [ 0.002747, 0.027466 ], [ 0.002747, 0.030212 ], [ 0.005493, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.030212 ], [ 0.005493, 0.027466 ], [ 0.002747, 0.027466 ], [ 0.002747, 0.030212 ], [ 0.005493, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0078811", "Lat": "0.0288000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.032959 ], [ 0.008240, 0.030212 ], [ 0.005493, 0.030212 ], [ 0.005493, 0.032959 ], [ 0.008240, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0078800", "Lat": "0.0288000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.032959 ], [ 0.008240, 0.030212 ], [ 0.005493, 0.030212 ], [ 0.005493, 0.032959 ], [ 0.008240, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0078811", "Lat": "0.0270000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.030212 ], [ 0.008240, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.030212 ], [ 0.008240, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0078800", "Lat": "0.0270000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.030212 ], [ 0.008240, 0.027466 ], [ 0.005493, 0.027466 ], [ 0.005493, 0.030212 ], [ 0.008240, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0052541", "Lat": "0.0234000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.024719 ], [ 0.002747, 0.024719 ], [ 0.002747, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0052500", "Lat": "0.0234000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.027466 ], [ 0.005493, 0.024719 ], [ 0.002747, 0.024719 ], [ 0.002747, 0.027466 ], [ 0.005493, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.024719 ], [ 0.005493, 0.021973 ], [ 0.002747, 0.021973 ], [ 0.002747, 0.024719 ], [ 0.005493, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.024719 ], [ 0.005493, 0.021973 ], [ 0.002747, 0.021973 ], [ 0.002747, 0.024719 ], [ 0.005493, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0234000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.027466 ], [ 0.008240, 0.024719 ], [ 0.005493, 0.024719 ], [ 0.005493, 0.027466 ], [ 0.008240, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0078800", "Lat": "0.0234000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.027466 ], [ 0.008240, 0.024719 ], [ 0.005493, 0.024719 ], [ 0.005493, 0.027466 ], [ 0.008240, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0078811", "Lat": "0.0216000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.024719 ], [ 0.008240, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.024719 ], [ 0.008240, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0078800", "Lat": "0.0216000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.024719 ], [ 0.008240, 0.021973 ], [ 0.005493, 0.021973 ], [ 0.005493, 0.024719 ], [ 0.008240, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0105082", "Lat": "0.0396000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.041199 ], [ 0.008240, 0.041199 ], [ 0.008240, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0105100", "Lat": "0.0396000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.043945 ], [ 0.010986, 0.041199 ], [ 0.008240, 0.041199 ], [ 0.008240, 0.043945 ], [ 0.010986, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0105082", "Lat": "0.0378000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.041199 ], [ 0.010986, 0.038452 ], [ 0.008240, 0.038452 ], [ 0.008240, 0.041199 ], [ 0.010986, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0378000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.041199 ], [ 0.010986, 0.038452 ], [ 0.008240, 0.038452 ], [ 0.008240, 0.041199 ], [ 0.010986, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0131352", "Lat": "0.0396000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.043945 ], [ 0.013733, 0.041199 ], [ 0.010986, 0.041199 ], [ 0.010986, 0.043945 ], [ 0.013733, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0131400", "Lat": "0.0396000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.043945 ], [ 0.013733, 0.041199 ], [ 0.010986, 0.041199 ], [ 0.010986, 0.043945 ], [ 0.013733, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0131352", "Lat": "0.0378000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.041199 ], [ 0.013733, 0.038452 ], [ 0.010986, 0.038452 ], [ 0.010986, 0.041199 ], [ 0.013733, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0131400", "Lat": "0.0378000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.041199 ], [ 0.013733, 0.038452 ], [ 0.010986, 0.038452 ], [ 0.010986, 0.041199 ], [ 0.013733, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105082", "Lat": "0.0342000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.035706 ], [ 0.008240, 0.035706 ], [ 0.008240, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0105100", "Lat": "0.0342000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.038452 ], [ 0.010986, 0.035706 ], [ 0.008240, 0.035706 ], [ 0.008240, 0.038452 ], [ 0.010986, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.035706 ], [ 0.010986, 0.032959 ], [ 0.008240, 0.032959 ], [ 0.008240, 0.035706 ], [ 0.010986, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.035706 ], [ 0.010986, 0.032959 ], [ 0.008240, 0.032959 ], [ 0.008240, 0.035706 ], [ 0.010986, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0131352", "Lat": "0.0342000", "KPI": 261, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.038452 ], [ 0.013733, 0.035706 ], [ 0.010986, 0.035706 ], [ 0.010986, 0.038452 ], [ 0.013733, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0131400", "Lat": "0.0342000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.038452 ], [ 0.013733, 0.035706 ], [ 0.010986, 0.035706 ], [ 0.010986, 0.038452 ], [ 0.013733, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0131352", "Lat": "0.0324000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.035706 ], [ 0.013733, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.035706 ], [ 0.013733, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0131400", "Lat": "0.0324000", "KPI": 208, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.035706 ], [ 0.013733, 0.032959 ], [ 0.010986, 0.032959 ], [ 0.010986, 0.035706 ], [ 0.013733, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0157622", "Lat": "0.0396000", "KPI": 382, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.043945 ], [ 0.016479, 0.041199 ], [ 0.013733, 0.041199 ], [ 0.013733, 0.043945 ], [ 0.016479, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0157600", "Lat": "0.0396000", "KPI": 283, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.043945 ], [ 0.016479, 0.041199 ], [ 0.013733, 0.041199 ], [ 0.013733, 0.043945 ], [ 0.016479, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0378000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.041199 ], [ 0.016479, 0.038452 ], [ 0.013733, 0.038452 ], [ 0.013733, 0.041199 ], [ 0.016479, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0378000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.041199 ], [ 0.016479, 0.038452 ], [ 0.013733, 0.038452 ], [ 0.013733, 0.041199 ], [ 0.016479, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0183893", "Lat": "0.0396000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.043945 ], [ 0.019226, 0.041199 ], [ 0.016479, 0.041199 ], [ 0.016479, 0.043945 ], [ 0.019226, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0183900", "Lat": "0.0396000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.043945 ], [ 0.019226, 0.041199 ], [ 0.016479, 0.041199 ], [ 0.016479, 0.043945 ], [ 0.019226, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0183893", "Lat": "0.0378000", "KPI": 622, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.041199 ], [ 0.019226, 0.038452 ], [ 0.016479, 0.038452 ], [ 0.016479, 0.041199 ], [ 0.019226, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0183900", "Lat": "0.0378000", "KPI": 977, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.041199 ], [ 0.019226, 0.038452 ], [ 0.016479, 0.038452 ], [ 0.016479, 0.041199 ], [ 0.019226, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0157622", "Lat": "0.0342000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.038452 ], [ 0.016479, 0.035706 ], [ 0.013733, 0.035706 ], [ 0.013733, 0.038452 ], [ 0.016479, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0157600", "Lat": "0.0342000", "KPI": 196, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.038452 ], [ 0.016479, 0.035706 ], [ 0.013733, 0.035706 ], [ 0.013733, 0.038452 ], [ 0.016479, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0157622", "Lat": "0.0324000", "KPI": 293, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.035706 ], [ 0.016479, 0.032959 ], [ 0.013733, 0.032959 ], [ 0.013733, 0.035706 ], [ 0.016479, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0157600", "Lat": "0.0324000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.035706 ], [ 0.016479, 0.032959 ], [ 0.013733, 0.032959 ], [ 0.013733, 0.035706 ], [ 0.016479, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0183893", "Lat": "0.0342000", "KPI": 247, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.038452 ], [ 0.019226, 0.035706 ], [ 0.016479, 0.035706 ], [ 0.016479, 0.038452 ], [ 0.019226, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0183900", "Lat": "0.0342000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.038452 ], [ 0.019226, 0.035706 ], [ 0.016479, 0.035706 ], [ 0.016479, 0.038452 ], [ 0.019226, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0183893", "Lat": "0.0324000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.035706 ], [ 0.019226, 0.032959 ], [ 0.016479, 0.032959 ], [ 0.016479, 0.035706 ], [ 0.019226, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0183900", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.035706 ], [ 0.019226, 0.032959 ], [ 0.016479, 0.032959 ], [ 0.016479, 0.035706 ], [ 0.019226, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0288000", "KPI": 913, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.030212 ], [ 0.008240, 0.030212 ], [ 0.008240, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0105100", "Lat": "0.0288000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.032959 ], [ 0.010986, 0.030212 ], [ 0.008240, 0.030212 ], [ 0.008240, 0.032959 ], [ 0.010986, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0270000", "KPI": 823, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.030212 ], [ 0.010986, 0.027466 ], [ 0.008240, 0.027466 ], [ 0.008240, 0.030212 ], [ 0.010986, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0105100", "Lat": "0.0270000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.030212 ], [ 0.010986, 0.027466 ], [ 0.008240, 0.027466 ], [ 0.008240, 0.030212 ], [ 0.010986, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0131352", "Lat": "0.0288000", "KPI": 190, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.032959 ], [ 0.013733, 0.030212 ], [ 0.010986, 0.030212 ], [ 0.010986, 0.032959 ], [ 0.013733, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0131400", "Lat": "0.0288000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.032959 ], [ 0.013733, 0.030212 ], [ 0.010986, 0.030212 ], [ 0.010986, 0.032959 ], [ 0.013733, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0131352", "Lat": "0.0270000", "KPI": 391, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.030212 ], [ 0.013733, 0.027466 ], [ 0.010986, 0.027466 ], [ 0.010986, 0.030212 ], [ 0.013733, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0131400", "Lat": "0.0270000", "KPI": 885, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.030212 ], [ 0.013733, 0.027466 ], [ 0.010986, 0.027466 ], [ 0.010986, 0.030212 ], [ 0.013733, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0105082", "Lat": "0.0234000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.024719 ], [ 0.008240, 0.024719 ], [ 0.008240, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0105100", "Lat": "0.0234000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.027466 ], [ 0.010986, 0.024719 ], [ 0.008240, 0.024719 ], [ 0.008240, 0.027466 ], [ 0.010986, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.024719 ], [ 0.010986, 0.021973 ], [ 0.008240, 0.021973 ], [ 0.008240, 0.024719 ], [ 0.010986, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.024719 ], [ 0.010986, 0.021973 ], [ 0.008240, 0.021973 ], [ 0.008240, 0.024719 ], [ 0.010986, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0131352", "Lat": "0.0234000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.027466 ], [ 0.013733, 0.024719 ], [ 0.010986, 0.024719 ], [ 0.010986, 0.027466 ], [ 0.013733, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0131400", "Lat": "0.0234000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.027466 ], [ 0.013733, 0.024719 ], [ 0.010986, 0.024719 ], [ 0.010986, 0.027466 ], [ 0.013733, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0131352", "Lat": "0.0216000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.024719 ], [ 0.013733, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.024719 ], [ 0.013733, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0131400", "Lat": "0.0216000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.024719 ], [ 0.013733, 0.021973 ], [ 0.010986, 0.021973 ], [ 0.010986, 0.024719 ], [ 0.013733, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0157622", "Lat": "0.0288000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.032959 ], [ 0.016479, 0.030212 ], [ 0.013733, 0.030212 ], [ 0.013733, 0.032959 ], [ 0.016479, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0157600", "Lat": "0.0288000", "KPI": 614, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.032959 ], [ 0.016479, 0.030212 ], [ 0.013733, 0.030212 ], [ 0.013733, 0.032959 ], [ 0.016479, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0157622", "Lat": "0.0270000", "KPI": 599, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.030212 ], [ 0.016479, 0.027466 ], [ 0.013733, 0.027466 ], [ 0.013733, 0.030212 ], [ 0.016479, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157600", "Lat": "0.0270000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.030212 ], [ 0.016479, 0.027466 ], [ 0.013733, 0.027466 ], [ 0.013733, 0.030212 ], [ 0.016479, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0183893", "Lat": "0.0288000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.032959 ], [ 0.019226, 0.030212 ], [ 0.016479, 0.030212 ], [ 0.016479, 0.032959 ], [ 0.019226, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0183900", "Lat": "0.0288000", "KPI": 602, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.032959 ], [ 0.019226, 0.030212 ], [ 0.016479, 0.030212 ], [ 0.016479, 0.032959 ], [ 0.019226, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0270000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.030212 ], [ 0.019226, 0.027466 ], [ 0.016479, 0.027466 ], [ 0.016479, 0.030212 ], [ 0.019226, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0183900", "Lat": "0.0270000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.030212 ], [ 0.019226, 0.027466 ], [ 0.016479, 0.027466 ], [ 0.016479, 0.030212 ], [ 0.019226, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0157622", "Lat": "0.0234000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.027466 ], [ 0.016479, 0.024719 ], [ 0.013733, 0.024719 ], [ 0.013733, 0.027466 ], [ 0.016479, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0157600", "Lat": "0.0234000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.027466 ], [ 0.016479, 0.024719 ], [ 0.013733, 0.024719 ], [ 0.013733, 0.027466 ], [ 0.016479, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157622", "Lat": "0.0216000", "KPI": 757, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.024719 ], [ 0.016479, 0.021973 ], [ 0.013733, 0.021973 ], [ 0.013733, 0.024719 ], [ 0.016479, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0157600", "Lat": "0.0216000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.024719 ], [ 0.016479, 0.021973 ], [ 0.013733, 0.021973 ], [ 0.013733, 0.024719 ], [ 0.016479, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183893", "Lat": "0.0234000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.027466 ], [ 0.019226, 0.024719 ], [ 0.016479, 0.024719 ], [ 0.016479, 0.027466 ], [ 0.019226, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183900", "Lat": "0.0234000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.027466 ], [ 0.019226, 0.024719 ], [ 0.016479, 0.024719 ], [ 0.016479, 0.027466 ], [ 0.019226, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0183893", "Lat": "0.0216000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.024719 ], [ 0.019226, 0.021973 ], [ 0.016479, 0.021973 ], [ 0.016479, 0.024719 ], [ 0.019226, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183900", "Lat": "0.0216000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.024719 ], [ 0.019226, 0.021973 ], [ 0.016479, 0.021973 ], [ 0.016479, 0.024719 ], [ 0.019226, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0026270", "Lat": "0.0180000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.021973 ], [ 0.002747, 0.019226 ], [ 0.000000, 0.019226 ], [ 0.000000, 0.021973 ], [ 0.002747, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0026300", "Lat": "0.0180000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.021973 ], [ 0.002747, 0.019226 ], [ 0.000000, 0.019226 ], [ 0.000000, 0.021973 ], [ 0.002747, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0162000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.019226 ], [ 0.002747, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.019226 ], [ 0.002747, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0026300", "Lat": "0.0162000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.019226 ], [ 0.002747, 0.016479 ], [ 0.000000, 0.016479 ], [ 0.000000, 0.019226 ], [ 0.002747, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0126000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.016479 ], [ 0.002747, 0.013733 ], [ 0.000000, 0.013733 ], [ 0.000000, 0.016479 ], [ 0.002747, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0026300", "Lat": "0.0126000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.016479 ], [ 0.002747, 0.013733 ], [ 0.000000, 0.013733 ], [ 0.000000, 0.016479 ], [ 0.002747, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0108000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.013733 ], [ 0.002747, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.013733 ], [ 0.002747, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0026300", "Lat": "0.0108000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.013733 ], [ 0.002747, 0.010986 ], [ 0.000000, 0.010986 ], [ 0.000000, 0.013733 ], [ 0.002747, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052541", "Lat": "0.0180000", "KPI": 316, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.019226 ], [ 0.002747, 0.019226 ], [ 0.002747, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0052500", "Lat": "0.0180000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.021973 ], [ 0.005493, 0.019226 ], [ 0.002747, 0.019226 ], [ 0.002747, 0.021973 ], [ 0.005493, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.019226 ], [ 0.005493, 0.016479 ], [ 0.002747, 0.016479 ], [ 0.002747, 0.019226 ], [ 0.005493, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.019226 ], [ 0.005493, 0.016479 ], [ 0.002747, 0.016479 ], [ 0.002747, 0.019226 ], [ 0.005493, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0078811", "Lat": "0.0180000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.021973 ], [ 0.008240, 0.019226 ], [ 0.005493, 0.019226 ], [ 0.005493, 0.021973 ], [ 0.008240, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0078800", "Lat": "0.0180000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.021973 ], [ 0.008240, 0.019226 ], [ 0.005493, 0.019226 ], [ 0.005493, 0.021973 ], [ 0.008240, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0078811", "Lat": "0.0162000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.019226 ], [ 0.008240, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.019226 ], [ 0.008240, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0078800", "Lat": "0.0162000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.019226 ], [ 0.008240, 0.016479 ], [ 0.005493, 0.016479 ], [ 0.005493, 0.019226 ], [ 0.008240, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0052541", "Lat": "0.0126000", "KPI": 49, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.013733 ], [ 0.002747, 0.013733 ], [ 0.002747, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0126000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.016479 ], [ 0.005493, 0.013733 ], [ 0.002747, 0.013733 ], [ 0.002747, 0.016479 ], [ 0.005493, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.013733 ], [ 0.005493, 0.010986 ], [ 0.002747, 0.010986 ], [ 0.002747, 0.013733 ], [ 0.005493, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.013733 ], [ 0.005493, 0.010986 ], [ 0.002747, 0.010986 ], [ 0.002747, 0.013733 ], [ 0.005493, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0078811", "Lat": "0.0126000", "KPI": 34, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.016479 ], [ 0.008240, 0.013733 ], [ 0.005493, 0.013733 ], [ 0.005493, 0.016479 ], [ 0.008240, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0078800", "Lat": "0.0126000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.016479 ], [ 0.008240, 0.013733 ], [ 0.005493, 0.013733 ], [ 0.005493, 0.016479 ], [ 0.008240, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0078811", "Lat": "0.0108000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.013733 ], [ 0.008240, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.013733 ], [ 0.008240, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0078800", "Lat": "0.0108000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.013733 ], [ 0.008240, 0.010986 ], [ 0.005493, 0.010986 ], [ 0.005493, 0.013733 ], [ 0.008240, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026270", "Lat": "0.0072000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.010986 ], [ 0.002747, 0.008240 ], [ 0.000000, 0.008240 ], [ 0.000000, 0.010986 ], [ 0.002747, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0072000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.010986 ], [ 0.002747, 0.008240 ], [ 0.000000, 0.008240 ], [ 0.000000, 0.010986 ], [ 0.002747, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.008240 ], [ 0.002747, 0.005493 ], [ 0.000000, 0.005493 ], [ 0.000000, 0.008240 ], [ 0.002747, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.005493 ], [ 0.002747, 0.002747 ], [ 0.000000, 0.002747 ], [ 0.000000, 0.005493 ], [ 0.002747, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002747, 0.002747 ], [ 0.002747, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.002747 ], [ 0.002747, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0072000", "KPI": 633, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.008240 ], [ 0.002747, 0.008240 ], [ 0.002747, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0052500", "Lat": "0.0072000", "KPI": 759, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.010986 ], [ 0.005493, 0.008240 ], [ 0.002747, 0.008240 ], [ 0.002747, 0.010986 ], [ 0.005493, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.008240 ], [ 0.005493, 0.005493 ], [ 0.002747, 0.005493 ], [ 0.002747, 0.008240 ], [ 0.005493, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0072000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.010986 ], [ 0.008240, 0.008240 ], [ 0.005493, 0.008240 ], [ 0.005493, 0.010986 ], [ 0.008240, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0078800", "Lat": "0.0072000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.010986 ], [ 0.008240, 0.008240 ], [ 0.005493, 0.008240 ], [ 0.005493, 0.010986 ], [ 0.008240, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0078811", "Lat": "0.0054000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.008240 ], [ 0.008240, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.008240 ], [ 0.008240, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078800", "Lat": "0.0054000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.008240 ], [ 0.008240, 0.005493 ], [ 0.005493, 0.005493 ], [ 0.005493, 0.008240 ], [ 0.008240, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.005493 ], [ 0.005493, 0.002747 ], [ 0.002747, 0.002747 ], [ 0.002747, 0.005493 ], [ 0.005493, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005493, 0.002747 ], [ 0.005493, 0.000000 ], [ 0.002747, 0.000000 ], [ 0.002747, 0.002747 ], [ 0.005493, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0078811", "Lat": "0.0018000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.005493 ], [ 0.008240, 0.002747 ], [ 0.005493, 0.002747 ], [ 0.005493, 0.005493 ], [ 0.008240, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0078800", "Lat": "0.0018000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.005493 ], [ 0.008240, 0.002747 ], [ 0.005493, 0.002747 ], [ 0.005493, 0.005493 ], [ 0.008240, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0078811", "Lat": "0.0000000", "KPI": 698, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.002747 ], [ 0.008240, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.002747 ], [ 0.008240, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0078800", "Lat": "0.0000000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.008240, 0.002747 ], [ 0.008240, 0.000000 ], [ 0.005493, 0.000000 ], [ 0.005493, 0.002747 ], [ 0.008240, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0105082", "Lat": "0.0180000", "KPI": 442, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.019226 ], [ 0.008240, 0.019226 ], [ 0.008240, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0105100", "Lat": "0.0180000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.021973 ], [ 0.010986, 0.019226 ], [ 0.008240, 0.019226 ], [ 0.008240, 0.021973 ], [ 0.010986, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0162000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.019226 ], [ 0.010986, 0.016479 ], [ 0.008240, 0.016479 ], [ 0.008240, 0.019226 ], [ 0.010986, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105100", "Lat": "0.0162000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.019226 ], [ 0.010986, 0.016479 ], [ 0.008240, 0.016479 ], [ 0.008240, 0.019226 ], [ 0.010986, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0131352", "Lat": "0.0180000", "KPI": 495, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.021973 ], [ 0.013733, 0.019226 ], [ 0.010986, 0.019226 ], [ 0.010986, 0.021973 ], [ 0.013733, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0131400", "Lat": "0.0180000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.021973 ], [ 0.013733, 0.019226 ], [ 0.010986, 0.019226 ], [ 0.010986, 0.021973 ], [ 0.013733, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0131352", "Lat": "0.0162000", "KPI": 312, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.019226 ], [ 0.013733, 0.016479 ], [ 0.010986, 0.016479 ], [ 0.010986, 0.019226 ], [ 0.013733, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131400", "Lat": "0.0162000", "KPI": 412, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.019226 ], [ 0.013733, 0.016479 ], [ 0.010986, 0.016479 ], [ 0.010986, 0.019226 ], [ 0.013733, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105082", "Lat": "0.0126000", "KPI": 991, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.013733 ], [ 0.008240, 0.013733 ], [ 0.008240, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0105100", "Lat": "0.0126000", "KPI": 850, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.016479 ], [ 0.010986, 0.013733 ], [ 0.008240, 0.013733 ], [ 0.008240, 0.016479 ], [ 0.010986, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.013733 ], [ 0.010986, 0.010986 ], [ 0.008240, 0.010986 ], [ 0.008240, 0.013733 ], [ 0.010986, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.013733 ], [ 0.010986, 0.010986 ], [ 0.008240, 0.010986 ], [ 0.008240, 0.013733 ], [ 0.010986, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0131352", "Lat": "0.0126000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.016479 ], [ 0.013733, 0.013733 ], [ 0.010986, 0.013733 ], [ 0.010986, 0.016479 ], [ 0.013733, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0131400", "Lat": "0.0126000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.016479 ], [ 0.013733, 0.013733 ], [ 0.010986, 0.013733 ], [ 0.010986, 0.016479 ], [ 0.013733, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0131352", "Lat": "0.0108000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.013733 ], [ 0.013733, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.013733 ], [ 0.013733, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0131400", "Lat": "0.0108000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.013733 ], [ 0.013733, 0.010986 ], [ 0.010986, 0.010986 ], [ 0.010986, 0.013733 ], [ 0.013733, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0157622", "Lat": "0.0180000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.021973 ], [ 0.016479, 0.019226 ], [ 0.013733, 0.019226 ], [ 0.013733, 0.021973 ], [ 0.016479, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0157600", "Lat": "0.0180000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.021973 ], [ 0.016479, 0.019226 ], [ 0.013733, 0.019226 ], [ 0.013733, 0.021973 ], [ 0.016479, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0162000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.019226 ], [ 0.016479, 0.016479 ], [ 0.013733, 0.016479 ], [ 0.013733, 0.019226 ], [ 0.016479, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0157600", "Lat": "0.0162000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.019226 ], [ 0.016479, 0.016479 ], [ 0.013733, 0.016479 ], [ 0.013733, 0.019226 ], [ 0.016479, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183893", "Lat": "0.0180000", "KPI": 598, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.021973 ], [ 0.019226, 0.019226 ], [ 0.016479, 0.019226 ], [ 0.016479, 0.021973 ], [ 0.019226, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0183900", "Lat": "0.0180000", "KPI": 241, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.021973 ], [ 0.019226, 0.019226 ], [ 0.016479, 0.019226 ], [ 0.016479, 0.021973 ], [ 0.019226, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0183893", "Lat": "0.0162000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.019226 ], [ 0.019226, 0.016479 ], [ 0.016479, 0.016479 ], [ 0.016479, 0.019226 ], [ 0.019226, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0183900", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.019226 ], [ 0.019226, 0.016479 ], [ 0.016479, 0.016479 ], [ 0.016479, 0.019226 ], [ 0.019226, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0126000", "KPI": 233, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.013733 ], [ 0.013733, 0.013733 ], [ 0.013733, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0157600", "Lat": "0.0126000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.016479 ], [ 0.016479, 0.013733 ], [ 0.013733, 0.013733 ], [ 0.013733, 0.016479 ], [ 0.016479, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0157622", "Lat": "0.0108000", "KPI": 980, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.013733 ], [ 0.016479, 0.010986 ], [ 0.013733, 0.010986 ], [ 0.013733, 0.013733 ], [ 0.016479, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157600", "Lat": "0.0108000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.013733 ], [ 0.016479, 0.010986 ], [ 0.013733, 0.010986 ], [ 0.013733, 0.013733 ], [ 0.016479, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0126000", "KPI": 210, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.016479 ], [ 0.019226, 0.013733 ], [ 0.016479, 0.013733 ], [ 0.016479, 0.016479 ], [ 0.019226, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0183900", "Lat": "0.0126000", "KPI": 952, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.016479 ], [ 0.019226, 0.013733 ], [ 0.016479, 0.013733 ], [ 0.016479, 0.016479 ], [ 0.019226, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0183893", "Lat": "0.0108000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.013733 ], [ 0.019226, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.013733 ], [ 0.019226, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0183900", "Lat": "0.0108000", "KPI": 397, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.013733 ], [ 0.019226, 0.010986 ], [ 0.016479, 0.010986 ], [ 0.016479, 0.013733 ], [ 0.019226, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0105082", "Lat": "0.0072000", "KPI": 494, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.008240 ], [ 0.008240, 0.008240 ], [ 0.008240, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0072000", "KPI": 628, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.010986 ], [ 0.010986, 0.008240 ], [ 0.008240, 0.008240 ], [ 0.008240, 0.010986 ], [ 0.010986, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.008240 ], [ 0.010986, 0.005493 ], [ 0.008240, 0.005493 ], [ 0.008240, 0.008240 ], [ 0.010986, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.008240 ], [ 0.010986, 0.005493 ], [ 0.008240, 0.005493 ], [ 0.008240, 0.008240 ], [ 0.010986, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0131352", "Lat": "0.0072000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.010986 ], [ 0.013733, 0.008240 ], [ 0.010986, 0.008240 ], [ 0.010986, 0.010986 ], [ 0.013733, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0131400", "Lat": "0.0072000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.010986 ], [ 0.013733, 0.008240 ], [ 0.010986, 0.008240 ], [ 0.010986, 0.010986 ], [ 0.013733, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131352", "Lat": "0.0054000", "KPI": 265, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.008240 ], [ 0.013733, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.008240 ], [ 0.013733, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0054000", "KPI": 372, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.008240 ], [ 0.013733, 0.005493 ], [ 0.010986, 0.005493 ], [ 0.010986, 0.008240 ], [ 0.013733, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105082", "Lat": "0.0018000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.002747 ], [ 0.008240, 0.002747 ], [ 0.008240, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105100", "Lat": "0.0018000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.005493 ], [ 0.010986, 0.002747 ], [ 0.008240, 0.002747 ], [ 0.008240, 0.005493 ], [ 0.010986, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.002747 ], [ 0.010986, 0.000000 ], [ 0.008240, 0.000000 ], [ 0.008240, 0.002747 ], [ 0.010986, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010986, 0.002747 ], [ 0.010986, 0.000000 ], [ 0.008240, 0.000000 ], [ 0.008240, 0.002747 ], [ 0.010986, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131352", "Lat": "0.0018000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.005493 ], [ 0.013733, 0.002747 ], [ 0.010986, 0.002747 ], [ 0.010986, 0.005493 ], [ 0.013733, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131400", "Lat": "0.0018000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.005493 ], [ 0.013733, 0.002747 ], [ 0.010986, 0.002747 ], [ 0.010986, 0.005493 ], [ 0.013733, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131352", "Lat": "0.0000000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.002747 ], [ 0.013733, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.002747 ], [ 0.013733, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0000000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013733, 0.002747 ], [ 0.013733, 0.000000 ], [ 0.010986, 0.000000 ], [ 0.010986, 0.002747 ], [ 0.013733, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0157622", "Lat": "0.0072000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.008240 ], [ 0.013733, 0.008240 ], [ 0.013733, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157600", "Lat": "0.0072000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.010986 ], [ 0.016479, 0.008240 ], [ 0.013733, 0.008240 ], [ 0.013733, 0.010986 ], [ 0.016479, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.008240 ], [ 0.016479, 0.005493 ], [ 0.013733, 0.005493 ], [ 0.013733, 0.008240 ], [ 0.016479, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.008240 ], [ 0.016479, 0.005493 ], [ 0.013733, 0.005493 ], [ 0.013733, 0.008240 ], [ 0.016479, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0183893", "Lat": "0.0072000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.010986 ], [ 0.019226, 0.008240 ], [ 0.016479, 0.008240 ], [ 0.016479, 0.010986 ], [ 0.019226, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0183900", "Lat": "0.0072000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.010986 ], [ 0.019226, 0.008240 ], [ 0.016479, 0.008240 ], [ 0.016479, 0.010986 ], [ 0.019226, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0054000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.008240 ], [ 0.019226, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.008240 ], [ 0.019226, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0183900", "Lat": "0.0054000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.008240 ], [ 0.019226, 0.005493 ], [ 0.016479, 0.005493 ], [ 0.016479, 0.008240 ], [ 0.019226, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157622", "Lat": "0.0018000", "KPI": 932, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.002747 ], [ 0.013733, 0.002747 ], [ 0.013733, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0157600", "Lat": "0.0018000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.005493 ], [ 0.016479, 0.002747 ], [ 0.013733, 0.002747 ], [ 0.013733, 0.005493 ], [ 0.016479, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.002747 ], [ 0.016479, 0.000000 ], [ 0.013733, 0.000000 ], [ 0.013733, 0.002747 ], [ 0.016479, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.016479, 0.002747 ], [ 0.016479, 0.000000 ], [ 0.013733, 0.000000 ], [ 0.013733, 0.002747 ], [ 0.016479, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0018000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.005493 ], [ 0.019226, 0.002747 ], [ 0.016479, 0.002747 ], [ 0.016479, 0.005493 ], [ 0.019226, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0183900", "Lat": "0.0018000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.005493 ], [ 0.019226, 0.002747 ], [ 0.016479, 0.002747 ], [ 0.016479, 0.005493 ], [ 0.019226, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183893", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.002747 ], [ 0.019226, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.002747 ], [ 0.019226, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183900", "Lat": "0.0000000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.019226, 0.002747 ], [ 0.019226, 0.000000 ], [ 0.016479, 0.000000 ], [ 0.016479, 0.002747 ], [ 0.019226, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0210163", "Lat": "0.0396000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.041199 ], [ 0.019226, 0.041199 ], [ 0.019226, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0210200", "Lat": "0.0396000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.043945 ], [ 0.021973, 0.041199 ], [ 0.019226, 0.041199 ], [ 0.019226, 0.043945 ], [ 0.021973, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0210163", "Lat": "0.0378000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.041199 ], [ 0.021973, 0.038452 ], [ 0.019226, 0.038452 ], [ 0.019226, 0.041199 ], [ 0.021973, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0210200", "Lat": "0.0378000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.041199 ], [ 0.021973, 0.038452 ], [ 0.019226, 0.038452 ], [ 0.019226, 0.041199 ], [ 0.021973, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0236434", "Lat": "0.0396000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.043945 ], [ 0.024719, 0.041199 ], [ 0.021973, 0.041199 ], [ 0.021973, 0.043945 ], [ 0.024719, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0236400", "Lat": "0.0396000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.043945 ], [ 0.024719, 0.041199 ], [ 0.021973, 0.041199 ], [ 0.021973, 0.043945 ], [ 0.024719, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0236434", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.041199 ], [ 0.024719, 0.038452 ], [ 0.021973, 0.038452 ], [ 0.021973, 0.041199 ], [ 0.024719, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0236400", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.041199 ], [ 0.024719, 0.038452 ], [ 0.021973, 0.038452 ], [ 0.021973, 0.041199 ], [ 0.024719, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210163", "Lat": "0.0342000", "KPI": 430, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.038452 ], [ 0.021973, 0.035706 ], [ 0.019226, 0.035706 ], [ 0.019226, 0.038452 ], [ 0.021973, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0210200", "Lat": "0.0342000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.038452 ], [ 0.021973, 0.035706 ], [ 0.019226, 0.035706 ], [ 0.019226, 0.038452 ], [ 0.021973, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.035706 ], [ 0.021973, 0.032959 ], [ 0.019226, 0.032959 ], [ 0.019226, 0.035706 ], [ 0.021973, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.035706 ], [ 0.021973, 0.032959 ], [ 0.019226, 0.032959 ], [ 0.019226, 0.035706 ], [ 0.021973, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0236434", "Lat": "0.0342000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.038452 ], [ 0.024719, 0.035706 ], [ 0.021973, 0.035706 ], [ 0.021973, 0.038452 ], [ 0.024719, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0342000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.038452 ], [ 0.024719, 0.035706 ], [ 0.021973, 0.035706 ], [ 0.021973, 0.038452 ], [ 0.024719, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0236434", "Lat": "0.0324000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.035706 ], [ 0.024719, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.035706 ], [ 0.024719, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0236400", "Lat": "0.0324000", "KPI": 884, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.035706 ], [ 0.024719, 0.032959 ], [ 0.021973, 0.032959 ], [ 0.021973, 0.035706 ], [ 0.024719, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0262704", "Lat": "0.0396000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.043945 ], [ 0.027466, 0.041199 ], [ 0.024719, 0.041199 ], [ 0.024719, 0.043945 ], [ 0.027466, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0262700", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.043945 ], [ 0.027466, 0.041199 ], [ 0.024719, 0.041199 ], [ 0.024719, 0.043945 ], [ 0.027466, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262704", "Lat": "0.0378000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.041199 ], [ 0.027466, 0.038452 ], [ 0.024719, 0.038452 ], [ 0.024719, 0.041199 ], [ 0.027466, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0378000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.041199 ], [ 0.027466, 0.038452 ], [ 0.024719, 0.038452 ], [ 0.024719, 0.041199 ], [ 0.027466, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0288974", "Lat": "0.0396000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.043945 ], [ 0.030212, 0.041199 ], [ 0.027466, 0.041199 ], [ 0.027466, 0.043945 ], [ 0.030212, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0289000", "Lat": "0.0396000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.043945 ], [ 0.030212, 0.041199 ], [ 0.027466, 0.041199 ], [ 0.027466, 0.043945 ], [ 0.030212, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0288974", "Lat": "0.0378000", "KPI": 130, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.041199 ], [ 0.030212, 0.038452 ], [ 0.027466, 0.038452 ], [ 0.027466, 0.041199 ], [ 0.030212, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0289000", "Lat": "0.0378000", "KPI": 828, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.041199 ], [ 0.030212, 0.038452 ], [ 0.027466, 0.038452 ], [ 0.027466, 0.041199 ], [ 0.030212, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0315245", "Lat": "0.0396000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.041199 ], [ 0.030212, 0.041199 ], [ 0.030212, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0315200", "Lat": "0.0396000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.043945 ], [ 0.032959, 0.041199 ], [ 0.030212, 0.041199 ], [ 0.030212, 0.043945 ], [ 0.032959, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0315245", "Lat": "0.0378000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.041199 ], [ 0.032959, 0.038452 ], [ 0.030212, 0.038452 ], [ 0.030212, 0.041199 ], [ 0.032959, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0315200", "Lat": "0.0378000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.041199 ], [ 0.032959, 0.038452 ], [ 0.030212, 0.038452 ], [ 0.030212, 0.041199 ], [ 0.032959, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0262704", "Lat": "0.0342000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.038452 ], [ 0.027466, 0.035706 ], [ 0.024719, 0.035706 ], [ 0.024719, 0.038452 ], [ 0.027466, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262700", "Lat": "0.0342000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.038452 ], [ 0.027466, 0.035706 ], [ 0.024719, 0.035706 ], [ 0.024719, 0.038452 ], [ 0.027466, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0324000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.035706 ], [ 0.027466, 0.032959 ], [ 0.024719, 0.032959 ], [ 0.024719, 0.035706 ], [ 0.027466, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0262700", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.035706 ], [ 0.027466, 0.032959 ], [ 0.024719, 0.032959 ], [ 0.024719, 0.035706 ], [ 0.027466, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0288974", "Lat": "0.0342000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.038452 ], [ 0.030212, 0.035706 ], [ 0.027466, 0.035706 ], [ 0.027466, 0.038452 ], [ 0.030212, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0289000", "Lat": "0.0342000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.038452 ], [ 0.030212, 0.035706 ], [ 0.027466, 0.035706 ], [ 0.027466, 0.038452 ], [ 0.030212, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0288974", "Lat": "0.0324000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.035706 ], [ 0.030212, 0.032959 ], [ 0.027466, 0.032959 ], [ 0.027466, 0.035706 ], [ 0.030212, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0289000", "Lat": "0.0324000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.035706 ], [ 0.030212, 0.032959 ], [ 0.027466, 0.032959 ], [ 0.027466, 0.035706 ], [ 0.030212, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0315245", "Lat": "0.0342000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.038452 ], [ 0.032959, 0.035706 ], [ 0.030212, 0.035706 ], [ 0.030212, 0.038452 ], [ 0.032959, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315200", "Lat": "0.0342000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.038452 ], [ 0.032959, 0.035706 ], [ 0.030212, 0.035706 ], [ 0.030212, 0.038452 ], [ 0.032959, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0315245", "Lat": "0.0324000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.035706 ], [ 0.032959, 0.032959 ], [ 0.030212, 0.032959 ], [ 0.030212, 0.035706 ], [ 0.032959, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0324000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.035706 ], [ 0.032959, 0.032959 ], [ 0.030212, 0.032959 ], [ 0.030212, 0.035706 ], [ 0.032959, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0210163", "Lat": "0.0288000", "KPI": 273, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.030212 ], [ 0.019226, 0.030212 ], [ 0.019226, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0210200", "Lat": "0.0288000", "KPI": 145, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.032959 ], [ 0.021973, 0.030212 ], [ 0.019226, 0.030212 ], [ 0.019226, 0.032959 ], [ 0.021973, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0210163", "Lat": "0.0270000", "KPI": 513, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.030212 ], [ 0.021973, 0.027466 ], [ 0.019226, 0.027466 ], [ 0.019226, 0.030212 ], [ 0.021973, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210200", "Lat": "0.0270000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.030212 ], [ 0.021973, 0.027466 ], [ 0.019226, 0.027466 ], [ 0.019226, 0.030212 ], [ 0.021973, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0236434", "Lat": "0.0288000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.032959 ], [ 0.024719, 0.030212 ], [ 0.021973, 0.030212 ], [ 0.021973, 0.032959 ], [ 0.024719, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0236400", "Lat": "0.0288000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.032959 ], [ 0.024719, 0.030212 ], [ 0.021973, 0.030212 ], [ 0.021973, 0.032959 ], [ 0.024719, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236434", "Lat": "0.0270000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.030212 ], [ 0.024719, 0.027466 ], [ 0.021973, 0.027466 ], [ 0.021973, 0.030212 ], [ 0.024719, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236400", "Lat": "0.0270000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.030212 ], [ 0.024719, 0.027466 ], [ 0.021973, 0.027466 ], [ 0.021973, 0.030212 ], [ 0.024719, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210163", "Lat": "0.0234000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.027466 ], [ 0.021973, 0.024719 ], [ 0.019226, 0.024719 ], [ 0.019226, 0.027466 ], [ 0.021973, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210200", "Lat": "0.0234000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.027466 ], [ 0.021973, 0.024719 ], [ 0.019226, 0.024719 ], [ 0.019226, 0.027466 ], [ 0.021973, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.024719 ], [ 0.021973, 0.021973 ], [ 0.019226, 0.021973 ], [ 0.019226, 0.024719 ], [ 0.021973, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.024719 ], [ 0.021973, 0.021973 ], [ 0.019226, 0.021973 ], [ 0.019226, 0.024719 ], [ 0.021973, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0236434", "Lat": "0.0234000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.027466 ], [ 0.024719, 0.024719 ], [ 0.021973, 0.024719 ], [ 0.021973, 0.027466 ], [ 0.024719, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0236400", "Lat": "0.0234000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.027466 ], [ 0.024719, 0.024719 ], [ 0.021973, 0.024719 ], [ 0.021973, 0.027466 ], [ 0.024719, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0236434", "Lat": "0.0216000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.024719 ], [ 0.024719, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.024719 ], [ 0.024719, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0236400", "Lat": "0.0216000", "KPI": 31, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.024719 ], [ 0.024719, 0.021973 ], [ 0.021973, 0.021973 ], [ 0.021973, 0.024719 ], [ 0.024719, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0262704", "Lat": "0.0288000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.032959 ], [ 0.027466, 0.030212 ], [ 0.024719, 0.030212 ], [ 0.024719, 0.032959 ], [ 0.027466, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0262700", "Lat": "0.0288000", "KPI": 380, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.032959 ], [ 0.027466, 0.030212 ], [ 0.024719, 0.030212 ], [ 0.024719, 0.032959 ], [ 0.027466, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0262704", "Lat": "0.0270000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.030212 ], [ 0.027466, 0.027466 ], [ 0.024719, 0.027466 ], [ 0.024719, 0.030212 ], [ 0.027466, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262700", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.030212 ], [ 0.027466, 0.027466 ], [ 0.024719, 0.027466 ], [ 0.024719, 0.030212 ], [ 0.027466, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0288974", "Lat": "0.0288000", "KPI": 35, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.032959 ], [ 0.030212, 0.030212 ], [ 0.027466, 0.030212 ], [ 0.027466, 0.032959 ], [ 0.030212, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0289000", "Lat": "0.0288000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.032959 ], [ 0.030212, 0.030212 ], [ 0.027466, 0.030212 ], [ 0.027466, 0.032959 ], [ 0.030212, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0288974", "Lat": "0.0270000", "KPI": 313, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.030212 ], [ 0.030212, 0.027466 ], [ 0.027466, 0.027466 ], [ 0.027466, 0.030212 ], [ 0.030212, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0289000", "Lat": "0.0270000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.030212 ], [ 0.030212, 0.027466 ], [ 0.027466, 0.027466 ], [ 0.027466, 0.030212 ], [ 0.030212, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0315245", "Lat": "0.0288000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.030212 ], [ 0.030212, 0.030212 ], [ 0.030212, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0315200", "Lat": "0.0288000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.032959 ], [ 0.032959, 0.030212 ], [ 0.030212, 0.030212 ], [ 0.030212, 0.032959 ], [ 0.032959, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0315245", "Lat": "0.0270000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.030212 ], [ 0.032959, 0.027466 ], [ 0.030212, 0.027466 ], [ 0.030212, 0.030212 ], [ 0.032959, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0315200", "Lat": "0.0270000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.030212 ], [ 0.032959, 0.027466 ], [ 0.030212, 0.027466 ], [ 0.030212, 0.030212 ], [ 0.032959, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0262704", "Lat": "0.0234000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.027466 ], [ 0.027466, 0.024719 ], [ 0.024719, 0.024719 ], [ 0.024719, 0.027466 ], [ 0.027466, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0234000", "KPI": 480, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.027466 ], [ 0.027466, 0.024719 ], [ 0.024719, 0.024719 ], [ 0.024719, 0.027466 ], [ 0.027466, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262704", "Lat": "0.0216000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.024719 ], [ 0.027466, 0.021973 ], [ 0.024719, 0.021973 ], [ 0.024719, 0.024719 ], [ 0.027466, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262700", "Lat": "0.0216000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.024719 ], [ 0.027466, 0.021973 ], [ 0.024719, 0.021973 ], [ 0.024719, 0.024719 ], [ 0.027466, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0288974", "Lat": "0.0234000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.027466 ], [ 0.030212, 0.024719 ], [ 0.027466, 0.024719 ], [ 0.027466, 0.027466 ], [ 0.030212, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0289000", "Lat": "0.0234000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.027466 ], [ 0.030212, 0.024719 ], [ 0.027466, 0.024719 ], [ 0.027466, 0.027466 ], [ 0.030212, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0288974", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.024719 ], [ 0.030212, 0.021973 ], [ 0.027466, 0.021973 ], [ 0.027466, 0.024719 ], [ 0.030212, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0289000", "Lat": "0.0216000", "KPI": 848, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.024719 ], [ 0.030212, 0.021973 ], [ 0.027466, 0.021973 ], [ 0.027466, 0.024719 ], [ 0.030212, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0315245", "Lat": "0.0234000", "KPI": 411, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.027466 ], [ 0.032959, 0.024719 ], [ 0.030212, 0.024719 ], [ 0.030212, 0.027466 ], [ 0.032959, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0315200", "Lat": "0.0234000", "KPI": 625, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.027466 ], [ 0.032959, 0.024719 ], [ 0.030212, 0.024719 ], [ 0.030212, 0.027466 ], [ 0.032959, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.024719 ], [ 0.032959, 0.021973 ], [ 0.030212, 0.021973 ], [ 0.030212, 0.024719 ], [ 0.032959, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.024719 ], [ 0.032959, 0.021973 ], [ 0.030212, 0.021973 ], [ 0.030212, 0.024719 ], [ 0.032959, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0341515", "Lat": "0.0396000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.043945 ], [ 0.035706, 0.041199 ], [ 0.032959, 0.041199 ], [ 0.032959, 0.043945 ], [ 0.035706, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0341500", "Lat": "0.0396000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.043945 ], [ 0.035706, 0.041199 ], [ 0.032959, 0.041199 ], [ 0.032959, 0.043945 ], [ 0.035706, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341515", "Lat": "0.0378000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.041199 ], [ 0.035706, 0.038452 ], [ 0.032959, 0.038452 ], [ 0.032959, 0.041199 ], [ 0.035706, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0341500", "Lat": "0.0378000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.041199 ], [ 0.035706, 0.038452 ], [ 0.032959, 0.038452 ], [ 0.032959, 0.041199 ], [ 0.035706, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367786", "Lat": "0.0396000", "KPI": 296, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.043945 ], [ 0.038452, 0.041199 ], [ 0.035706, 0.041199 ], [ 0.035706, 0.043945 ], [ 0.038452, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0367800", "Lat": "0.0396000", "KPI": 289, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.043945 ], [ 0.038452, 0.041199 ], [ 0.035706, 0.041199 ], [ 0.035706, 0.043945 ], [ 0.038452, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0367786", "Lat": "0.0378000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.041199 ], [ 0.038452, 0.038452 ], [ 0.035706, 0.038452 ], [ 0.035706, 0.041199 ], [ 0.038452, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0378000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.041199 ], [ 0.038452, 0.038452 ], [ 0.035706, 0.038452 ], [ 0.035706, 0.041199 ], [ 0.038452, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0341515", "Lat": "0.0342000", "KPI": 564, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.038452 ], [ 0.035706, 0.035706 ], [ 0.032959, 0.035706 ], [ 0.032959, 0.038452 ], [ 0.035706, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0341500", "Lat": "0.0342000", "KPI": 92, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.038452 ], [ 0.035706, 0.035706 ], [ 0.032959, 0.035706 ], [ 0.032959, 0.038452 ], [ 0.035706, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0341515", "Lat": "0.0324000", "KPI": 217, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.035706 ], [ 0.035706, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.035706 ], [ 0.035706, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0341500", "Lat": "0.0324000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.035706 ], [ 0.035706, 0.032959 ], [ 0.032959, 0.032959 ], [ 0.032959, 0.035706 ], [ 0.035706, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0367786", "Lat": "0.0342000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.038452 ], [ 0.038452, 0.035706 ], [ 0.035706, 0.035706 ], [ 0.035706, 0.038452 ], [ 0.038452, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0367800", "Lat": "0.0342000", "KPI": 938, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.038452 ], [ 0.038452, 0.035706 ], [ 0.035706, 0.035706 ], [ 0.035706, 0.038452 ], [ 0.038452, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0367786", "Lat": "0.0324000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.035706 ], [ 0.038452, 0.032959 ], [ 0.035706, 0.032959 ], [ 0.035706, 0.035706 ], [ 0.038452, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0324000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.035706 ], [ 0.038452, 0.032959 ], [ 0.035706, 0.032959 ], [ 0.035706, 0.035706 ], [ 0.038452, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0396000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.043945 ], [ 0.041199, 0.041199 ], [ 0.038452, 0.041199 ], [ 0.038452, 0.043945 ], [ 0.041199, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0394100", "Lat": "0.0396000", "KPI": 423, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.043945 ], [ 0.041199, 0.041199 ], [ 0.038452, 0.041199 ], [ 0.038452, 0.043945 ], [ 0.041199, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0378000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.041199 ], [ 0.041199, 0.038452 ], [ 0.038452, 0.038452 ], [ 0.038452, 0.041199 ], [ 0.041199, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0394100", "Lat": "0.0378000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.041199 ], [ 0.041199, 0.038452 ], [ 0.038452, 0.038452 ], [ 0.038452, 0.041199 ], [ 0.041199, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0420326", "Lat": "0.0396000", "KPI": 465, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.041199 ], [ 0.041199, 0.041199 ], [ 0.041199, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0420300", "Lat": "0.0396000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.043945 ], [ 0.043945, 0.041199 ], [ 0.041199, 0.041199 ], [ 0.041199, 0.043945 ], [ 0.043945, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0420326", "Lat": "0.0378000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.041199 ], [ 0.043945, 0.038452 ], [ 0.041199, 0.038452 ], [ 0.041199, 0.041199 ], [ 0.043945, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420300", "Lat": "0.0378000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.041199 ], [ 0.043945, 0.038452 ], [ 0.041199, 0.038452 ], [ 0.041199, 0.041199 ], [ 0.043945, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0342000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.038452 ], [ 0.041199, 0.035706 ], [ 0.038452, 0.035706 ], [ 0.038452, 0.038452 ], [ 0.041199, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0394100", "Lat": "0.0342000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.038452 ], [ 0.041199, 0.035706 ], [ 0.038452, 0.035706 ], [ 0.038452, 0.038452 ], [ 0.041199, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0394056", "Lat": "0.0324000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.035706 ], [ 0.041199, 0.032959 ], [ 0.038452, 0.032959 ], [ 0.038452, 0.035706 ], [ 0.041199, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0394100", "Lat": "0.0324000", "KPI": 193, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.035706 ], [ 0.041199, 0.032959 ], [ 0.038452, 0.032959 ], [ 0.038452, 0.035706 ], [ 0.041199, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0420326", "Lat": "0.0342000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.038452 ], [ 0.043945, 0.035706 ], [ 0.041199, 0.035706 ], [ 0.041199, 0.038452 ], [ 0.043945, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0342000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.038452 ], [ 0.043945, 0.035706 ], [ 0.041199, 0.035706 ], [ 0.041199, 0.038452 ], [ 0.043945, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0420326", "Lat": "0.0324000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.035706 ], [ 0.043945, 0.032959 ], [ 0.041199, 0.032959 ], [ 0.041199, 0.035706 ], [ 0.043945, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0324000", "KPI": 477, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.035706 ], [ 0.043945, 0.032959 ], [ 0.041199, 0.032959 ], [ 0.041199, 0.035706 ], [ 0.043945, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0341515", "Lat": "0.0288000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.032959 ], [ 0.035706, 0.030212 ], [ 0.032959, 0.030212 ], [ 0.032959, 0.032959 ], [ 0.035706, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0341500", "Lat": "0.0288000", "KPI": 794, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.032959 ], [ 0.035706, 0.030212 ], [ 0.032959, 0.030212 ], [ 0.032959, 0.032959 ], [ 0.035706, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0341515", "Lat": "0.0270000", "KPI": 501, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.030212 ], [ 0.035706, 0.027466 ], [ 0.032959, 0.027466 ], [ 0.032959, 0.030212 ], [ 0.035706, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0341500", "Lat": "0.0270000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.030212 ], [ 0.035706, 0.027466 ], [ 0.032959, 0.027466 ], [ 0.032959, 0.030212 ], [ 0.035706, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0367786", "Lat": "0.0288000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.032959 ], [ 0.038452, 0.030212 ], [ 0.035706, 0.030212 ], [ 0.035706, 0.032959 ], [ 0.038452, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0288000", "KPI": 914, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.032959 ], [ 0.038452, 0.030212 ], [ 0.035706, 0.030212 ], [ 0.035706, 0.032959 ], [ 0.038452, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0367786", "Lat": "0.0270000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.030212 ], [ 0.038452, 0.027466 ], [ 0.035706, 0.027466 ], [ 0.035706, 0.030212 ], [ 0.038452, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0367800", "Lat": "0.0270000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.030212 ], [ 0.038452, 0.027466 ], [ 0.035706, 0.027466 ], [ 0.035706, 0.030212 ], [ 0.038452, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0341515", "Lat": "0.0234000", "KPI": 483, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.027466 ], [ 0.035706, 0.024719 ], [ 0.032959, 0.024719 ], [ 0.032959, 0.027466 ], [ 0.035706, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0341500", "Lat": "0.0234000", "KPI": 495, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.027466 ], [ 0.035706, 0.024719 ], [ 0.032959, 0.024719 ], [ 0.032959, 0.027466 ], [ 0.035706, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0341515", "Lat": "0.0216000", "KPI": 736, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.024719 ], [ 0.035706, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.024719 ], [ 0.035706, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0341500", "Lat": "0.0216000", "KPI": 810, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.024719 ], [ 0.035706, 0.021973 ], [ 0.032959, 0.021973 ], [ 0.032959, 0.024719 ], [ 0.035706, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0367786", "Lat": "0.0234000", "KPI": 909, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.027466 ], [ 0.038452, 0.024719 ], [ 0.035706, 0.024719 ], [ 0.035706, 0.027466 ], [ 0.038452, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0234000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.027466 ], [ 0.038452, 0.024719 ], [ 0.035706, 0.024719 ], [ 0.035706, 0.027466 ], [ 0.038452, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0367786", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.024719 ], [ 0.038452, 0.021973 ], [ 0.035706, 0.021973 ], [ 0.035706, 0.024719 ], [ 0.038452, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0367800", "Lat": "0.0216000", "KPI": 971, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.024719 ], [ 0.038452, 0.021973 ], [ 0.035706, 0.021973 ], [ 0.035706, 0.024719 ], [ 0.038452, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0288000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.032959 ], [ 0.041199, 0.030212 ], [ 0.038452, 0.030212 ], [ 0.038452, 0.032959 ], [ 0.041199, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0394100", "Lat": "0.0288000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.032959 ], [ 0.041199, 0.030212 ], [ 0.038452, 0.030212 ], [ 0.038452, 0.032959 ], [ 0.041199, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0394056", "Lat": "0.0270000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.030212 ], [ 0.041199, 0.027466 ], [ 0.038452, 0.027466 ], [ 0.038452, 0.030212 ], [ 0.041199, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0394100", "Lat": "0.0270000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.030212 ], [ 0.041199, 0.027466 ], [ 0.038452, 0.027466 ], [ 0.038452, 0.030212 ], [ 0.041199, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420326", "Lat": "0.0288000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.030212 ], [ 0.041199, 0.030212 ], [ 0.041199, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0288000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.032959 ], [ 0.043945, 0.030212 ], [ 0.041199, 0.030212 ], [ 0.041199, 0.032959 ], [ 0.043945, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0270000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.030212 ], [ 0.043945, 0.027466 ], [ 0.041199, 0.027466 ], [ 0.041199, 0.030212 ], [ 0.043945, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0270000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.030212 ], [ 0.043945, 0.027466 ], [ 0.041199, 0.027466 ], [ 0.041199, 0.030212 ], [ 0.043945, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394056", "Lat": "0.0234000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.027466 ], [ 0.041199, 0.024719 ], [ 0.038452, 0.024719 ], [ 0.038452, 0.027466 ], [ 0.041199, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0394100", "Lat": "0.0234000", "KPI": 216, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.027466 ], [ 0.041199, 0.024719 ], [ 0.038452, 0.024719 ], [ 0.038452, 0.027466 ], [ 0.041199, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0394056", "Lat": "0.0216000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.024719 ], [ 0.041199, 0.021973 ], [ 0.038452, 0.021973 ], [ 0.038452, 0.024719 ], [ 0.041199, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0394100", "Lat": "0.0216000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.024719 ], [ 0.041199, 0.021973 ], [ 0.038452, 0.021973 ], [ 0.038452, 0.024719 ], [ 0.041199, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0420326", "Lat": "0.0234000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.027466 ], [ 0.043945, 0.024719 ], [ 0.041199, 0.024719 ], [ 0.041199, 0.027466 ], [ 0.043945, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0420300", "Lat": "0.0234000", "KPI": 44, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.027466 ], [ 0.043945, 0.024719 ], [ 0.041199, 0.024719 ], [ 0.041199, 0.027466 ], [ 0.043945, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.024719 ], [ 0.043945, 0.021973 ], [ 0.041199, 0.021973 ], [ 0.041199, 0.024719 ], [ 0.043945, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.024719 ], [ 0.043945, 0.021973 ], [ 0.041199, 0.021973 ], [ 0.041199, 0.024719 ], [ 0.043945, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210163", "Lat": "0.0180000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.019226 ], [ 0.019226, 0.019226 ], [ 0.019226, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0210200", "Lat": "0.0180000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.021973 ], [ 0.021973, 0.019226 ], [ 0.019226, 0.019226 ], [ 0.019226, 0.021973 ], [ 0.021973, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210163", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.019226 ], [ 0.021973, 0.016479 ], [ 0.019226, 0.016479 ], [ 0.019226, 0.019226 ], [ 0.021973, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0210200", "Lat": "0.0162000", "KPI": 449, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.019226 ], [ 0.021973, 0.016479 ], [ 0.019226, 0.016479 ], [ 0.019226, 0.019226 ], [ 0.021973, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0236434", "Lat": "0.0180000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.021973 ], [ 0.024719, 0.019226 ], [ 0.021973, 0.019226 ], [ 0.021973, 0.021973 ], [ 0.024719, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0236400", "Lat": "0.0180000", "KPI": 561, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.021973 ], [ 0.024719, 0.019226 ], [ 0.021973, 0.019226 ], [ 0.021973, 0.021973 ], [ 0.024719, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0162000", "KPI": 188, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.019226 ], [ 0.024719, 0.016479 ], [ 0.021973, 0.016479 ], [ 0.021973, 0.019226 ], [ 0.024719, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0236400", "Lat": "0.0162000", "KPI": 781, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.019226 ], [ 0.024719, 0.016479 ], [ 0.021973, 0.016479 ], [ 0.021973, 0.019226 ], [ 0.024719, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210163", "Lat": "0.0126000", "KPI": 603, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.013733 ], [ 0.019226, 0.013733 ], [ 0.019226, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0210200", "Lat": "0.0126000", "KPI": 275, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.016479 ], [ 0.021973, 0.013733 ], [ 0.019226, 0.013733 ], [ 0.019226, 0.016479 ], [ 0.021973, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.013733 ], [ 0.021973, 0.010986 ], [ 0.019226, 0.010986 ], [ 0.019226, 0.013733 ], [ 0.021973, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.013733 ], [ 0.021973, 0.010986 ], [ 0.019226, 0.010986 ], [ 0.019226, 0.013733 ], [ 0.021973, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0236434", "Lat": "0.0126000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.016479 ], [ 0.024719, 0.013733 ], [ 0.021973, 0.013733 ], [ 0.021973, 0.016479 ], [ 0.024719, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0236400", "Lat": "0.0126000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.016479 ], [ 0.024719, 0.013733 ], [ 0.021973, 0.013733 ], [ 0.021973, 0.016479 ], [ 0.024719, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236434", "Lat": "0.0108000", "KPI": 968, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.013733 ], [ 0.024719, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.013733 ], [ 0.024719, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0236400", "Lat": "0.0108000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.013733 ], [ 0.024719, 0.010986 ], [ 0.021973, 0.010986 ], [ 0.021973, 0.013733 ], [ 0.024719, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0262704", "Lat": "0.0180000", "KPI": 324, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.021973 ], [ 0.027466, 0.019226 ], [ 0.024719, 0.019226 ], [ 0.024719, 0.021973 ], [ 0.027466, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0180000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.021973 ], [ 0.027466, 0.019226 ], [ 0.024719, 0.019226 ], [ 0.024719, 0.021973 ], [ 0.027466, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0262704", "Lat": "0.0162000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.019226 ], [ 0.027466, 0.016479 ], [ 0.024719, 0.016479 ], [ 0.024719, 0.019226 ], [ 0.027466, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0162000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.019226 ], [ 0.027466, 0.016479 ], [ 0.024719, 0.016479 ], [ 0.024719, 0.019226 ], [ 0.027466, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0288974", "Lat": "0.0180000", "KPI": 988, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.021973 ], [ 0.030212, 0.019226 ], [ 0.027466, 0.019226 ], [ 0.027466, 0.021973 ], [ 0.030212, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0289000", "Lat": "0.0180000", "KPI": 668, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.021973 ], [ 0.030212, 0.019226 ], [ 0.027466, 0.019226 ], [ 0.027466, 0.021973 ], [ 0.030212, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0288974", "Lat": "0.0162000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.019226 ], [ 0.030212, 0.016479 ], [ 0.027466, 0.016479 ], [ 0.027466, 0.019226 ], [ 0.030212, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0289000", "Lat": "0.0162000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.019226 ], [ 0.030212, 0.016479 ], [ 0.027466, 0.016479 ], [ 0.027466, 0.019226 ], [ 0.030212, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0315245", "Lat": "0.0180000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.019226 ], [ 0.030212, 0.019226 ], [ 0.030212, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0315200", "Lat": "0.0180000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.021973 ], [ 0.032959, 0.019226 ], [ 0.030212, 0.019226 ], [ 0.030212, 0.021973 ], [ 0.032959, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0315245", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.019226 ], [ 0.032959, 0.016479 ], [ 0.030212, 0.016479 ], [ 0.030212, 0.019226 ], [ 0.032959, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0315200", "Lat": "0.0162000", "KPI": 118, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.019226 ], [ 0.032959, 0.016479 ], [ 0.030212, 0.016479 ], [ 0.030212, 0.019226 ], [ 0.032959, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0262704", "Lat": "0.0126000", "KPI": 218, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.013733 ], [ 0.024719, 0.013733 ], [ 0.024719, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0262700", "Lat": "0.0126000", "KPI": 456, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.016479 ], [ 0.027466, 0.013733 ], [ 0.024719, 0.013733 ], [ 0.024719, 0.016479 ], [ 0.027466, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262704", "Lat": "0.0108000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.013733 ], [ 0.027466, 0.010986 ], [ 0.024719, 0.010986 ], [ 0.024719, 0.013733 ], [ 0.027466, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262700", "Lat": "0.0108000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.013733 ], [ 0.027466, 0.010986 ], [ 0.024719, 0.010986 ], [ 0.024719, 0.013733 ], [ 0.027466, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0288974", "Lat": "0.0126000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.016479 ], [ 0.030212, 0.013733 ], [ 0.027466, 0.013733 ], [ 0.027466, 0.016479 ], [ 0.030212, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0289000", "Lat": "0.0126000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.016479 ], [ 0.030212, 0.013733 ], [ 0.027466, 0.013733 ], [ 0.027466, 0.016479 ], [ 0.030212, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0288974", "Lat": "0.0108000", "KPI": 863, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.013733 ], [ 0.030212, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.013733 ], [ 0.030212, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0289000", "Lat": "0.0108000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.013733 ], [ 0.030212, 0.010986 ], [ 0.027466, 0.010986 ], [ 0.027466, 0.013733 ], [ 0.030212, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0126000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.013733 ], [ 0.030212, 0.013733 ], [ 0.030212, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0315200", "Lat": "0.0126000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.016479 ], [ 0.032959, 0.013733 ], [ 0.030212, 0.013733 ], [ 0.030212, 0.016479 ], [ 0.032959, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.013733 ], [ 0.032959, 0.010986 ], [ 0.030212, 0.010986 ], [ 0.030212, 0.013733 ], [ 0.032959, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.013733 ], [ 0.032959, 0.010986 ], [ 0.030212, 0.010986 ], [ 0.030212, 0.013733 ], [ 0.032959, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0210163", "Lat": "0.0072000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.008240 ], [ 0.019226, 0.008240 ], [ 0.019226, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0072000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.010986 ], [ 0.021973, 0.008240 ], [ 0.019226, 0.008240 ], [ 0.019226, 0.010986 ], [ 0.021973, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.008240 ], [ 0.021973, 0.005493 ], [ 0.019226, 0.005493 ], [ 0.019226, 0.008240 ], [ 0.021973, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.008240 ], [ 0.021973, 0.005493 ], [ 0.019226, 0.005493 ], [ 0.019226, 0.008240 ], [ 0.021973, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0236434", "Lat": "0.0072000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.010986 ], [ 0.024719, 0.008240 ], [ 0.021973, 0.008240 ], [ 0.021973, 0.010986 ], [ 0.024719, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0236400", "Lat": "0.0072000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.010986 ], [ 0.024719, 0.008240 ], [ 0.021973, 0.008240 ], [ 0.021973, 0.010986 ], [ 0.024719, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0236434", "Lat": "0.0054000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.008240 ], [ 0.024719, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.008240 ], [ 0.024719, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236400", "Lat": "0.0054000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.008240 ], [ 0.024719, 0.005493 ], [ 0.021973, 0.005493 ], [ 0.021973, 0.008240 ], [ 0.024719, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210163", "Lat": "0.0018000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.002747 ], [ 0.019226, 0.002747 ], [ 0.019226, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0210200", "Lat": "0.0018000", "KPI": 484, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.005493 ], [ 0.021973, 0.002747 ], [ 0.019226, 0.002747 ], [ 0.019226, 0.005493 ], [ 0.021973, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.002747 ], [ 0.021973, 0.000000 ], [ 0.019226, 0.000000 ], [ 0.019226, 0.002747 ], [ 0.021973, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 0.002747 ], [ 0.021973, 0.000000 ], [ 0.019226, 0.000000 ], [ 0.019226, 0.002747 ], [ 0.021973, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236434", "Lat": "0.0018000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.005493 ], [ 0.024719, 0.002747 ], [ 0.021973, 0.002747 ], [ 0.021973, 0.005493 ], [ 0.024719, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0236400", "Lat": "0.0018000", "KPI": 136, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.005493 ], [ 0.024719, 0.002747 ], [ 0.021973, 0.002747 ], [ 0.021973, 0.005493 ], [ 0.024719, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0000000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.002747 ], [ 0.024719, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.002747 ], [ 0.024719, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0000000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 0.002747 ], [ 0.024719, 0.000000 ], [ 0.021973, 0.000000 ], [ 0.021973, 0.002747 ], [ 0.024719, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0262704", "Lat": "0.0072000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.008240 ], [ 0.024719, 0.008240 ], [ 0.024719, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0262700", "Lat": "0.0072000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.010986 ], [ 0.027466, 0.008240 ], [ 0.024719, 0.008240 ], [ 0.024719, 0.010986 ], [ 0.027466, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.008240 ], [ 0.027466, 0.005493 ], [ 0.024719, 0.005493 ], [ 0.024719, 0.008240 ], [ 0.027466, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.008240 ], [ 0.027466, 0.005493 ], [ 0.024719, 0.005493 ], [ 0.024719, 0.008240 ], [ 0.027466, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0288974", "Lat": "0.0072000", "KPI": 815, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.010986 ], [ 0.030212, 0.008240 ], [ 0.027466, 0.008240 ], [ 0.027466, 0.010986 ], [ 0.030212, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0289000", "Lat": "0.0072000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.010986 ], [ 0.030212, 0.008240 ], [ 0.027466, 0.008240 ], [ 0.027466, 0.010986 ], [ 0.030212, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0288974", "Lat": "0.0054000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.008240 ], [ 0.030212, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.008240 ], [ 0.030212, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0289000", "Lat": "0.0054000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.008240 ], [ 0.030212, 0.005493 ], [ 0.027466, 0.005493 ], [ 0.027466, 0.008240 ], [ 0.030212, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0315245", "Lat": "0.0072000", "KPI": 707, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.008240 ], [ 0.030212, 0.008240 ], [ 0.030212, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0315200", "Lat": "0.0072000", "KPI": 314, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.010986 ], [ 0.032959, 0.008240 ], [ 0.030212, 0.008240 ], [ 0.030212, 0.010986 ], [ 0.032959, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.008240 ], [ 0.032959, 0.005493 ], [ 0.030212, 0.005493 ], [ 0.030212, 0.008240 ], [ 0.032959, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.008240 ], [ 0.032959, 0.005493 ], [ 0.030212, 0.005493 ], [ 0.030212, 0.008240 ], [ 0.032959, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262704", "Lat": "0.0018000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.002747 ], [ 0.024719, 0.002747 ], [ 0.024719, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0262700", "Lat": "0.0018000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.005493 ], [ 0.027466, 0.002747 ], [ 0.024719, 0.002747 ], [ 0.024719, 0.005493 ], [ 0.027466, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.002747 ], [ 0.027466, 0.000000 ], [ 0.024719, 0.000000 ], [ 0.024719, 0.002747 ], [ 0.027466, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.027466, 0.002747 ], [ 0.027466, 0.000000 ], [ 0.024719, 0.000000 ], [ 0.024719, 0.002747 ], [ 0.027466, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0288974", "Lat": "0.0018000", "KPI": 53, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.005493 ], [ 0.030212, 0.002747 ], [ 0.027466, 0.002747 ], [ 0.027466, 0.005493 ], [ 0.030212, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0289000", "Lat": "0.0018000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.005493 ], [ 0.030212, 0.002747 ], [ 0.027466, 0.002747 ], [ 0.027466, 0.005493 ], [ 0.030212, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0288974", "Lat": "0.0000000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.002747 ], [ 0.030212, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.002747 ], [ 0.030212, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0289000", "Lat": "0.0000000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.030212, 0.002747 ], [ 0.030212, 0.000000 ], [ 0.027466, 0.000000 ], [ 0.027466, 0.002747 ], [ 0.030212, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0315245", "Lat": "0.0018000", "KPI": 992, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.002747 ], [ 0.030212, 0.002747 ], [ 0.030212, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0315200", "Lat": "0.0018000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.005493 ], [ 0.032959, 0.002747 ], [ 0.030212, 0.002747 ], [ 0.030212, 0.005493 ], [ 0.032959, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.002747 ], [ 0.032959, 0.000000 ], [ 0.030212, 0.000000 ], [ 0.030212, 0.002747 ], [ 0.032959, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.032959, 0.002747 ], [ 0.032959, 0.000000 ], [ 0.030212, 0.000000 ], [ 0.030212, 0.002747 ], [ 0.032959, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0341515", "Lat": "0.0180000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.021973 ], [ 0.035706, 0.019226 ], [ 0.032959, 0.019226 ], [ 0.032959, 0.021973 ], [ 0.035706, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0341500", "Lat": "0.0180000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.021973 ], [ 0.035706, 0.019226 ], [ 0.032959, 0.019226 ], [ 0.032959, 0.021973 ], [ 0.035706, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0341515", "Lat": "0.0162000", "KPI": 313, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.019226 ], [ 0.035706, 0.016479 ], [ 0.032959, 0.016479 ], [ 0.032959, 0.019226 ], [ 0.035706, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0341500", "Lat": "0.0162000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.019226 ], [ 0.035706, 0.016479 ], [ 0.032959, 0.016479 ], [ 0.032959, 0.019226 ], [ 0.035706, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0367786", "Lat": "0.0180000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.021973 ], [ 0.038452, 0.019226 ], [ 0.035706, 0.019226 ], [ 0.035706, 0.021973 ], [ 0.038452, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0367800", "Lat": "0.0180000", "KPI": 119, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.021973 ], [ 0.038452, 0.019226 ], [ 0.035706, 0.019226 ], [ 0.035706, 0.021973 ], [ 0.038452, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0367786", "Lat": "0.0162000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.019226 ], [ 0.038452, 0.016479 ], [ 0.035706, 0.016479 ], [ 0.035706, 0.019226 ], [ 0.038452, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0367800", "Lat": "0.0162000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.019226 ], [ 0.038452, 0.016479 ], [ 0.035706, 0.016479 ], [ 0.035706, 0.019226 ], [ 0.038452, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0341515", "Lat": "0.0126000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.016479 ], [ 0.035706, 0.013733 ], [ 0.032959, 0.013733 ], [ 0.032959, 0.016479 ], [ 0.035706, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0341500", "Lat": "0.0126000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.016479 ], [ 0.035706, 0.013733 ], [ 0.032959, 0.013733 ], [ 0.032959, 0.016479 ], [ 0.035706, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0341515", "Lat": "0.0108000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.013733 ], [ 0.035706, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.013733 ], [ 0.035706, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0341500", "Lat": "0.0108000", "KPI": 946, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.013733 ], [ 0.035706, 0.010986 ], [ 0.032959, 0.010986 ], [ 0.032959, 0.013733 ], [ 0.035706, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367786", "Lat": "0.0126000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.013733 ], [ 0.035706, 0.013733 ], [ 0.035706, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0367800", "Lat": "0.0126000", "KPI": 795, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.016479 ], [ 0.038452, 0.013733 ], [ 0.035706, 0.013733 ], [ 0.035706, 0.016479 ], [ 0.038452, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0108000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.013733 ], [ 0.038452, 0.010986 ], [ 0.035706, 0.010986 ], [ 0.035706, 0.013733 ], [ 0.038452, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0108000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.013733 ], [ 0.038452, 0.010986 ], [ 0.035706, 0.010986 ], [ 0.035706, 0.013733 ], [ 0.038452, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0180000", "KPI": 935, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.021973 ], [ 0.041199, 0.019226 ], [ 0.038452, 0.019226 ], [ 0.038452, 0.021973 ], [ 0.041199, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0394100", "Lat": "0.0180000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.021973 ], [ 0.041199, 0.019226 ], [ 0.038452, 0.019226 ], [ 0.038452, 0.021973 ], [ 0.041199, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0394056", "Lat": "0.0162000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.019226 ], [ 0.041199, 0.016479 ], [ 0.038452, 0.016479 ], [ 0.038452, 0.019226 ], [ 0.041199, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0394100", "Lat": "0.0162000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.019226 ], [ 0.041199, 0.016479 ], [ 0.038452, 0.016479 ], [ 0.038452, 0.019226 ], [ 0.041199, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0420326", "Lat": "0.0180000", "KPI": 405, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.019226 ], [ 0.041199, 0.019226 ], [ 0.041199, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0420300", "Lat": "0.0180000", "KPI": 540, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.021973 ], [ 0.043945, 0.019226 ], [ 0.041199, 0.019226 ], [ 0.041199, 0.021973 ], [ 0.043945, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0420326", "Lat": "0.0162000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.019226 ], [ 0.043945, 0.016479 ], [ 0.041199, 0.016479 ], [ 0.041199, 0.019226 ], [ 0.043945, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0420300", "Lat": "0.0162000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.019226 ], [ 0.043945, 0.016479 ], [ 0.041199, 0.016479 ], [ 0.041199, 0.019226 ], [ 0.043945, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0394056", "Lat": "0.0126000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.016479 ], [ 0.041199, 0.013733 ], [ 0.038452, 0.013733 ], [ 0.038452, 0.016479 ], [ 0.041199, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0394100", "Lat": "0.0126000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.016479 ], [ 0.041199, 0.013733 ], [ 0.038452, 0.013733 ], [ 0.038452, 0.016479 ], [ 0.041199, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0394056", "Lat": "0.0108000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.013733 ], [ 0.041199, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.013733 ], [ 0.041199, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0394100", "Lat": "0.0108000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.013733 ], [ 0.041199, 0.010986 ], [ 0.038452, 0.010986 ], [ 0.038452, 0.013733 ], [ 0.041199, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0420326", "Lat": "0.0126000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.013733 ], [ 0.041199, 0.013733 ], [ 0.041199, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0420300", "Lat": "0.0126000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.016479 ], [ 0.043945, 0.013733 ], [ 0.041199, 0.013733 ], [ 0.041199, 0.016479 ], [ 0.043945, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.013733 ], [ 0.043945, 0.010986 ], [ 0.041199, 0.010986 ], [ 0.041199, 0.013733 ], [ 0.043945, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.013733 ], [ 0.043945, 0.010986 ], [ 0.041199, 0.010986 ], [ 0.041199, 0.013733 ], [ 0.043945, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0341515", "Lat": "0.0072000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.010986 ], [ 0.035706, 0.008240 ], [ 0.032959, 0.008240 ], [ 0.032959, 0.010986 ], [ 0.035706, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0341500", "Lat": "0.0072000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.010986 ], [ 0.035706, 0.008240 ], [ 0.032959, 0.008240 ], [ 0.032959, 0.010986 ], [ 0.035706, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0341515", "Lat": "0.0054000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.008240 ], [ 0.035706, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.008240 ], [ 0.035706, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341500", "Lat": "0.0054000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.008240 ], [ 0.035706, 0.005493 ], [ 0.032959, 0.005493 ], [ 0.032959, 0.008240 ], [ 0.035706, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0367786", "Lat": "0.0072000", "KPI": 830, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.008240 ], [ 0.035706, 0.008240 ], [ 0.035706, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0367800", "Lat": "0.0072000", "KPI": 666, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.010986 ], [ 0.038452, 0.008240 ], [ 0.035706, 0.008240 ], [ 0.035706, 0.010986 ], [ 0.038452, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.008240 ], [ 0.038452, 0.005493 ], [ 0.035706, 0.005493 ], [ 0.035706, 0.008240 ], [ 0.038452, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.008240 ], [ 0.038452, 0.005493 ], [ 0.035706, 0.005493 ], [ 0.035706, 0.008240 ], [ 0.038452, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0341515", "Lat": "0.0018000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.005493 ], [ 0.035706, 0.002747 ], [ 0.032959, 0.002747 ], [ 0.032959, 0.005493 ], [ 0.035706, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0018000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.005493 ], [ 0.035706, 0.002747 ], [ 0.032959, 0.002747 ], [ 0.032959, 0.005493 ], [ 0.035706, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0341515", "Lat": "0.0000000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.002747 ], [ 0.035706, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.002747 ], [ 0.035706, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0000000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.035706, 0.002747 ], [ 0.035706, 0.000000 ], [ 0.032959, 0.000000 ], [ 0.032959, 0.002747 ], [ 0.035706, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0367786", "Lat": "0.0018000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.002747 ], [ 0.035706, 0.002747 ], [ 0.035706, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0018000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.005493 ], [ 0.038452, 0.002747 ], [ 0.035706, 0.002747 ], [ 0.035706, 0.005493 ], [ 0.038452, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.002747 ], [ 0.038452, 0.000000 ], [ 0.035706, 0.000000 ], [ 0.035706, 0.002747 ], [ 0.038452, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.038452, 0.002747 ], [ 0.038452, 0.000000 ], [ 0.035706, 0.000000 ], [ 0.035706, 0.002747 ], [ 0.038452, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394056", "Lat": "0.0072000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.010986 ], [ 0.041199, 0.008240 ], [ 0.038452, 0.008240 ], [ 0.038452, 0.010986 ], [ 0.041199, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394100", "Lat": "0.0072000", "KPI": 454, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.010986 ], [ 0.041199, 0.008240 ], [ 0.038452, 0.008240 ], [ 0.038452, 0.010986 ], [ 0.041199, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0054000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.008240 ], [ 0.041199, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.008240 ], [ 0.041199, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0394100", "Lat": "0.0054000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.008240 ], [ 0.041199, 0.005493 ], [ 0.038452, 0.005493 ], [ 0.038452, 0.008240 ], [ 0.041199, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0420326", "Lat": "0.0072000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.008240 ], [ 0.041199, 0.008240 ], [ 0.041199, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0420300", "Lat": "0.0072000", "KPI": 504, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.010986 ], [ 0.043945, 0.008240 ], [ 0.041199, 0.008240 ], [ 0.041199, 0.010986 ], [ 0.043945, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.008240 ], [ 0.043945, 0.005493 ], [ 0.041199, 0.005493 ], [ 0.041199, 0.008240 ], [ 0.043945, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.008240 ], [ 0.043945, 0.005493 ], [ 0.041199, 0.005493 ], [ 0.041199, 0.008240 ], [ 0.043945, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0394056", "Lat": "0.0018000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.005493 ], [ 0.041199, 0.002747 ], [ 0.038452, 0.002747 ], [ 0.038452, 0.005493 ], [ 0.041199, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394100", "Lat": "0.0018000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.005493 ], [ 0.041199, 0.002747 ], [ 0.038452, 0.002747 ], [ 0.038452, 0.005493 ], [ 0.041199, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0000000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.002747 ], [ 0.041199, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.002747 ], [ 0.041199, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394100", "Lat": "0.0000000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.041199, 0.002747 ], [ 0.041199, 0.000000 ], [ 0.038452, 0.000000 ], [ 0.038452, 0.002747 ], [ 0.041199, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420326", "Lat": "0.0018000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.002747 ], [ 0.041199, 0.002747 ], [ 0.041199, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0420300", "Lat": "0.0018000", "KPI": 331, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.005493 ], [ 0.043945, 0.002747 ], [ 0.041199, 0.002747 ], [ 0.041199, 0.005493 ], [ 0.043945, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.002747 ], [ 0.043945, 0.000000 ], [ 0.041199, 0.000000 ], [ 0.041199, 0.002747 ], [ 0.043945, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.043945, 0.002747 ], [ 0.043945, 0.000000 ], [ 0.041199, 0.000000 ], [ 0.041199, 0.002747 ], [ 0.043945, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0540000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.057678 ], [ 0.046692, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.057678 ], [ 0.046692, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446600", "Lat": "0.0540000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.057678 ], [ 0.046692, 0.054932 ], [ 0.043945, 0.054932 ], [ 0.043945, 0.057678 ], [ 0.046692, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0446597", "Lat": "0.0522000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.054932 ], [ 0.046692, 0.052185 ], [ 0.043945, 0.052185 ], [ 0.043945, 0.054932 ], [ 0.046692, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0446600", "Lat": "0.0522000", "KPI": 499, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.054932 ], [ 0.046692, 0.052185 ], [ 0.043945, 0.052185 ], [ 0.043945, 0.054932 ], [ 0.046692, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0446597", "Lat": "0.0486000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.052185 ], [ 0.046692, 0.049438 ], [ 0.043945, 0.049438 ], [ 0.043945, 0.052185 ], [ 0.046692, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0486000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.052185 ], [ 0.046692, 0.049438 ], [ 0.043945, 0.049438 ], [ 0.043945, 0.052185 ], [ 0.046692, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472867", "Lat": "0.0540000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.057678 ], [ 0.049438, 0.054932 ], [ 0.046692, 0.054932 ], [ 0.046692, 0.057678 ], [ 0.049438, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0472900", "Lat": "0.0540000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.057678 ], [ 0.049438, 0.054932 ], [ 0.046692, 0.054932 ], [ 0.046692, 0.057678 ], [ 0.049438, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0472867", "Lat": "0.0522000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.054932 ], [ 0.049438, 0.052185 ], [ 0.046692, 0.052185 ], [ 0.046692, 0.054932 ], [ 0.049438, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0472900", "Lat": "0.0522000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.054932 ], [ 0.049438, 0.052185 ], [ 0.046692, 0.052185 ], [ 0.046692, 0.054932 ], [ 0.049438, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0472867", "Lat": "0.0486000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.052185 ], [ 0.049438, 0.049438 ], [ 0.046692, 0.049438 ], [ 0.046692, 0.052185 ], [ 0.049438, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0472900", "Lat": "0.0486000", "KPI": 696, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.052185 ], [ 0.049438, 0.049438 ], [ 0.046692, 0.049438 ], [ 0.046692, 0.052185 ], [ 0.049438, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446597", "Lat": "0.0450000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.049438 ], [ 0.046692, 0.046692 ], [ 0.043945, 0.046692 ], [ 0.043945, 0.049438 ], [ 0.046692, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0446600", "Lat": "0.0450000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.049438 ], [ 0.046692, 0.046692 ], [ 0.043945, 0.046692 ], [ 0.043945, 0.049438 ], [ 0.046692, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0446597", "Lat": "0.0432000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.046692 ], [ 0.046692, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.046692 ], [ 0.046692, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0446600", "Lat": "0.0432000", "KPI": 623, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.046692 ], [ 0.046692, 0.043945 ], [ 0.043945, 0.043945 ], [ 0.043945, 0.046692 ], [ 0.046692, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0472867", "Lat": "0.0450000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.049438 ], [ 0.049438, 0.046692 ], [ 0.046692, 0.046692 ], [ 0.046692, 0.049438 ], [ 0.049438, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0472900", "Lat": "0.0450000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.049438 ], [ 0.049438, 0.046692 ], [ 0.046692, 0.046692 ], [ 0.046692, 0.049438 ], [ 0.049438, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0432000", "KPI": 713, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.046692 ], [ 0.049438, 0.043945 ], [ 0.046692, 0.043945 ], [ 0.046692, 0.046692 ], [ 0.049438, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0472900", "Lat": "0.0432000", "KPI": 905, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.046692 ], [ 0.049438, 0.043945 ], [ 0.046692, 0.043945 ], [ 0.046692, 0.046692 ], [ 0.049438, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0499138", "Lat": "0.0540000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.057678 ], [ 0.052185, 0.054932 ], [ 0.049438, 0.054932 ], [ 0.049438, 0.057678 ], [ 0.052185, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0499100", "Lat": "0.0540000", "KPI": 278, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.057678 ], [ 0.052185, 0.054932 ], [ 0.049438, 0.054932 ], [ 0.049438, 0.057678 ], [ 0.052185, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0499138", "Lat": "0.0522000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.054932 ], [ 0.052185, 0.052185 ], [ 0.049438, 0.052185 ], [ 0.049438, 0.054932 ], [ 0.052185, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0499100", "Lat": "0.0522000", "KPI": 447, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.054932 ], [ 0.052185, 0.052185 ], [ 0.049438, 0.052185 ], [ 0.049438, 0.054932 ], [ 0.052185, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0499138", "Lat": "0.0486000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.052185 ], [ 0.052185, 0.049438 ], [ 0.049438, 0.049438 ], [ 0.049438, 0.052185 ], [ 0.052185, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0499100", "Lat": "0.0486000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.052185 ], [ 0.052185, 0.049438 ], [ 0.049438, 0.049438 ], [ 0.049438, 0.052185 ], [ 0.052185, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0525408", "Lat": "0.0540000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.057678 ], [ 0.054932, 0.054932 ], [ 0.052185, 0.054932 ], [ 0.052185, 0.057678 ], [ 0.054932, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525400", "Lat": "0.0540000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.057678 ], [ 0.054932, 0.054932 ], [ 0.052185, 0.054932 ], [ 0.052185, 0.057678 ], [ 0.054932, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0525408", "Lat": "0.0522000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.052185 ], [ 0.052185, 0.052185 ], [ 0.052185, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525400", "Lat": "0.0522000", "KPI": 494, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.054932 ], [ 0.054932, 0.052185 ], [ 0.052185, 0.052185 ], [ 0.052185, 0.054932 ], [ 0.054932, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0525408", "Lat": "0.0486000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.052185 ], [ 0.054932, 0.049438 ], [ 0.052185, 0.049438 ], [ 0.052185, 0.052185 ], [ 0.054932, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0525400", "Lat": "0.0486000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.052185 ], [ 0.054932, 0.049438 ], [ 0.052185, 0.049438 ], [ 0.052185, 0.052185 ], [ 0.054932, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499138", "Lat": "0.0450000", "KPI": 598, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.049438 ], [ 0.052185, 0.046692 ], [ 0.049438, 0.046692 ], [ 0.049438, 0.049438 ], [ 0.052185, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0499100", "Lat": "0.0450000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.049438 ], [ 0.052185, 0.046692 ], [ 0.049438, 0.046692 ], [ 0.049438, 0.049438 ], [ 0.052185, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0499138", "Lat": "0.0432000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.046692 ], [ 0.052185, 0.043945 ], [ 0.049438, 0.043945 ], [ 0.049438, 0.046692 ], [ 0.052185, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0499100", "Lat": "0.0432000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.046692 ], [ 0.052185, 0.043945 ], [ 0.049438, 0.043945 ], [ 0.049438, 0.046692 ], [ 0.052185, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0525408", "Lat": "0.0450000", "KPI": 892, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.049438 ], [ 0.054932, 0.046692 ], [ 0.052185, 0.046692 ], [ 0.052185, 0.049438 ], [ 0.054932, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0450000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.049438 ], [ 0.054932, 0.046692 ], [ 0.052185, 0.046692 ], [ 0.052185, 0.049438 ], [ 0.054932, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0525408", "Lat": "0.0432000", "KPI": 658, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.046692 ], [ 0.054932, 0.043945 ], [ 0.052185, 0.043945 ], [ 0.052185, 0.046692 ], [ 0.054932, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0525400", "Lat": "0.0432000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.046692 ], [ 0.054932, 0.043945 ], [ 0.052185, 0.043945 ], [ 0.052185, 0.046692 ], [ 0.054932, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0551678", "Lat": "0.0540000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.057678 ], [ 0.057678, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.057678 ], [ 0.057678, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0551700", "Lat": "0.0540000", "KPI": 91, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.057678 ], [ 0.057678, 0.054932 ], [ 0.054932, 0.054932 ], [ 0.054932, 0.057678 ], [ 0.057678, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0551678", "Lat": "0.0522000", "KPI": 315, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.054932 ], [ 0.057678, 0.052185 ], [ 0.054932, 0.052185 ], [ 0.054932, 0.054932 ], [ 0.057678, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0551700", "Lat": "0.0522000", "KPI": 821, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.054932 ], [ 0.057678, 0.052185 ], [ 0.054932, 0.052185 ], [ 0.054932, 0.054932 ], [ 0.057678, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0551678", "Lat": "0.0486000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.052185 ], [ 0.057678, 0.049438 ], [ 0.054932, 0.049438 ], [ 0.054932, 0.052185 ], [ 0.057678, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0551700", "Lat": "0.0486000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.052185 ], [ 0.057678, 0.049438 ], [ 0.054932, 0.049438 ], [ 0.054932, 0.052185 ], [ 0.057678, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0577949", "Lat": "0.0540000", "KPI": 231, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.057678 ], [ 0.060425, 0.054932 ], [ 0.057678, 0.054932 ], [ 0.057678, 0.057678 ], [ 0.060425, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0577900", "Lat": "0.0540000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.057678 ], [ 0.060425, 0.054932 ], [ 0.057678, 0.054932 ], [ 0.057678, 0.057678 ], [ 0.060425, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577949", "Lat": "0.0522000", "KPI": 977, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.054932 ], [ 0.060425, 0.052185 ], [ 0.057678, 0.052185 ], [ 0.057678, 0.054932 ], [ 0.060425, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0577900", "Lat": "0.0522000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.054932 ], [ 0.060425, 0.052185 ], [ 0.057678, 0.052185 ], [ 0.057678, 0.054932 ], [ 0.060425, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577949", "Lat": "0.0486000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.052185 ], [ 0.060425, 0.049438 ], [ 0.057678, 0.049438 ], [ 0.057678, 0.052185 ], [ 0.060425, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0577900", "Lat": "0.0486000", "KPI": 58, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.052185 ], [ 0.060425, 0.049438 ], [ 0.057678, 0.049438 ], [ 0.057678, 0.052185 ], [ 0.060425, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0551678", "Lat": "0.0450000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.049438 ], [ 0.057678, 0.046692 ], [ 0.054932, 0.046692 ], [ 0.054932, 0.049438 ], [ 0.057678, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0551700", "Lat": "0.0450000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.049438 ], [ 0.057678, 0.046692 ], [ 0.054932, 0.046692 ], [ 0.054932, 0.049438 ], [ 0.057678, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0551678", "Lat": "0.0432000", "KPI": 814, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.046692 ], [ 0.057678, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.046692 ], [ 0.057678, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0551700", "Lat": "0.0432000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.046692 ], [ 0.057678, 0.043945 ], [ 0.054932, 0.043945 ], [ 0.054932, 0.046692 ], [ 0.057678, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0577949", "Lat": "0.0450000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.049438 ], [ 0.060425, 0.046692 ], [ 0.057678, 0.046692 ], [ 0.057678, 0.049438 ], [ 0.060425, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0577900", "Lat": "0.0450000", "KPI": 741, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.049438 ], [ 0.060425, 0.046692 ], [ 0.057678, 0.046692 ], [ 0.057678, 0.049438 ], [ 0.060425, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0577949", "Lat": "0.0432000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.046692 ], [ 0.060425, 0.043945 ], [ 0.057678, 0.043945 ], [ 0.057678, 0.046692 ], [ 0.060425, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577900", "Lat": "0.0432000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.046692 ], [ 0.060425, 0.043945 ], [ 0.057678, 0.043945 ], [ 0.057678, 0.046692 ], [ 0.060425, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0630490", "Lat": "0.0540000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.057678 ], [ 0.063171, 0.054932 ], [ 0.060425, 0.054932 ], [ 0.060425, 0.057678 ], [ 0.063171, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0630500", "Lat": "0.0540000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.057678 ], [ 0.063171, 0.054932 ], [ 0.060425, 0.054932 ], [ 0.060425, 0.057678 ], [ 0.063171, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0630490", "Lat": "0.0522000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.054932 ], [ 0.063171, 0.052185 ], [ 0.060425, 0.052185 ], [ 0.060425, 0.054932 ], [ 0.063171, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0630500", "Lat": "0.0522000", "KPI": 982, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.054932 ], [ 0.063171, 0.052185 ], [ 0.060425, 0.052185 ], [ 0.060425, 0.054932 ], [ 0.063171, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0630490", "Lat": "0.0486000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.052185 ], [ 0.063171, 0.049438 ], [ 0.060425, 0.049438 ], [ 0.060425, 0.052185 ], [ 0.063171, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0630500", "Lat": "0.0486000", "KPI": 194, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.052185 ], [ 0.063171, 0.049438 ], [ 0.060425, 0.049438 ], [ 0.060425, 0.052185 ], [ 0.063171, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630490", "Lat": "0.0450000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.049438 ], [ 0.063171, 0.046692 ], [ 0.060425, 0.046692 ], [ 0.060425, 0.049438 ], [ 0.063171, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0630500", "Lat": "0.0450000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.049438 ], [ 0.063171, 0.046692 ], [ 0.060425, 0.046692 ], [ 0.060425, 0.049438 ], [ 0.063171, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0630490", "Lat": "0.0432000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.046692 ], [ 0.063171, 0.043945 ], [ 0.060425, 0.043945 ], [ 0.060425, 0.046692 ], [ 0.063171, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0630500", "Lat": "0.0432000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.046692 ], [ 0.063171, 0.043945 ], [ 0.060425, 0.043945 ], [ 0.060425, 0.046692 ], [ 0.063171, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0656760", "Lat": "0.0540000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.057678 ], [ 0.065918, 0.054932 ], [ 0.063171, 0.054932 ], [ 0.063171, 0.057678 ], [ 0.065918, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0656800", "Lat": "0.0540000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.057678 ], [ 0.065918, 0.054932 ], [ 0.063171, 0.054932 ], [ 0.063171, 0.057678 ], [ 0.065918, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0656760", "Lat": "0.0522000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.052185 ], [ 0.063171, 0.052185 ], [ 0.063171, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0656800", "Lat": "0.0522000", "KPI": 972, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.054932 ], [ 0.065918, 0.052185 ], [ 0.063171, 0.052185 ], [ 0.063171, 0.054932 ], [ 0.065918, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0656760", "Lat": "0.0486000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.052185 ], [ 0.065918, 0.049438 ], [ 0.063171, 0.049438 ], [ 0.063171, 0.052185 ], [ 0.065918, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0656800", "Lat": "0.0486000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.052185 ], [ 0.065918, 0.049438 ], [ 0.063171, 0.049438 ], [ 0.063171, 0.052185 ], [ 0.065918, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0683030", "Lat": "0.0540000", "KPI": 392, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.057678 ], [ 0.068665, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.057678 ], [ 0.068665, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0683000", "Lat": "0.0540000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.057678 ], [ 0.068665, 0.054932 ], [ 0.065918, 0.054932 ], [ 0.065918, 0.057678 ], [ 0.068665, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0683030", "Lat": "0.0522000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.054932 ], [ 0.068665, 0.052185 ], [ 0.065918, 0.052185 ], [ 0.065918, 0.054932 ], [ 0.068665, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0683000", "Lat": "0.0522000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.054932 ], [ 0.068665, 0.052185 ], [ 0.065918, 0.052185 ], [ 0.065918, 0.054932 ], [ 0.068665, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0683030", "Lat": "0.0486000", "KPI": 269, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.052185 ], [ 0.068665, 0.049438 ], [ 0.065918, 0.049438 ], [ 0.065918, 0.052185 ], [ 0.068665, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683000", "Lat": "0.0486000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.052185 ], [ 0.068665, 0.049438 ], [ 0.065918, 0.049438 ], [ 0.065918, 0.052185 ], [ 0.068665, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0450000", "KPI": 77, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.049438 ], [ 0.065918, 0.046692 ], [ 0.063171, 0.046692 ], [ 0.063171, 0.049438 ], [ 0.065918, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0450000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.049438 ], [ 0.065918, 0.046692 ], [ 0.063171, 0.046692 ], [ 0.063171, 0.049438 ], [ 0.065918, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.046692 ], [ 0.065918, 0.043945 ], [ 0.063171, 0.043945 ], [ 0.063171, 0.046692 ], [ 0.065918, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.046692 ], [ 0.065918, 0.043945 ], [ 0.063171, 0.043945 ], [ 0.063171, 0.046692 ], [ 0.065918, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0683030", "Lat": "0.0450000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.049438 ], [ 0.068665, 0.046692 ], [ 0.065918, 0.046692 ], [ 0.065918, 0.049438 ], [ 0.068665, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0683000", "Lat": "0.0450000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.049438 ], [ 0.068665, 0.046692 ], [ 0.065918, 0.046692 ], [ 0.065918, 0.049438 ], [ 0.068665, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0683030", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.046692 ], [ 0.068665, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.046692 ], [ 0.068665, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0683000", "Lat": "0.0432000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.046692 ], [ 0.068665, 0.043945 ], [ 0.065918, 0.043945 ], [ 0.065918, 0.046692 ], [ 0.068665, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0540000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.057678 ], [ 0.071411, 0.054932 ], [ 0.068665, 0.054932 ], [ 0.068665, 0.057678 ], [ 0.071411, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0709300", "Lat": "0.0540000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.057678 ], [ 0.071411, 0.054932 ], [ 0.068665, 0.054932 ], [ 0.068665, 0.057678 ], [ 0.071411, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0709301", "Lat": "0.0522000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.054932 ], [ 0.071411, 0.052185 ], [ 0.068665, 0.052185 ], [ 0.068665, 0.054932 ], [ 0.071411, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0709300", "Lat": "0.0522000", "KPI": 146, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.054932 ], [ 0.071411, 0.052185 ], [ 0.068665, 0.052185 ], [ 0.068665, 0.054932 ], [ 0.071411, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0709301", "Lat": "0.0486000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.052185 ], [ 0.071411, 0.049438 ], [ 0.068665, 0.049438 ], [ 0.068665, 0.052185 ], [ 0.071411, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0486000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.052185 ], [ 0.071411, 0.049438 ], [ 0.068665, 0.049438 ], [ 0.068665, 0.052185 ], [ 0.071411, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0735571", "Lat": "0.0540000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.057678 ], [ 0.074158, 0.054932 ], [ 0.071411, 0.054932 ], [ 0.071411, 0.057678 ], [ 0.074158, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0735600", "Lat": "0.0540000", "KPI": 441, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.057678 ], [ 0.074158, 0.054932 ], [ 0.071411, 0.054932 ], [ 0.071411, 0.057678 ], [ 0.074158, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0735571", "Lat": "0.0522000", "KPI": 310, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.054932 ], [ 0.074158, 0.052185 ], [ 0.071411, 0.052185 ], [ 0.071411, 0.054932 ], [ 0.074158, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0522000", "KPI": 40, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.054932 ], [ 0.074158, 0.052185 ], [ 0.071411, 0.052185 ], [ 0.071411, 0.054932 ], [ 0.074158, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0735571", "Lat": "0.0486000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.052185 ], [ 0.074158, 0.049438 ], [ 0.071411, 0.049438 ], [ 0.071411, 0.052185 ], [ 0.074158, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0735600", "Lat": "0.0486000", "KPI": 76, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.052185 ], [ 0.074158, 0.049438 ], [ 0.071411, 0.049438 ], [ 0.071411, 0.052185 ], [ 0.074158, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0709301", "Lat": "0.0450000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.049438 ], [ 0.071411, 0.046692 ], [ 0.068665, 0.046692 ], [ 0.068665, 0.049438 ], [ 0.071411, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0709300", "Lat": "0.0450000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.049438 ], [ 0.071411, 0.046692 ], [ 0.068665, 0.046692 ], [ 0.068665, 0.049438 ], [ 0.071411, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0709301", "Lat": "0.0432000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.046692 ], [ 0.071411, 0.043945 ], [ 0.068665, 0.043945 ], [ 0.068665, 0.046692 ], [ 0.071411, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0709300", "Lat": "0.0432000", "KPI": 493, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.046692 ], [ 0.071411, 0.043945 ], [ 0.068665, 0.043945 ], [ 0.068665, 0.046692 ], [ 0.071411, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0735571", "Lat": "0.0450000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.049438 ], [ 0.074158, 0.046692 ], [ 0.071411, 0.046692 ], [ 0.071411, 0.049438 ], [ 0.074158, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0735600", "Lat": "0.0450000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.049438 ], [ 0.074158, 0.046692 ], [ 0.071411, 0.046692 ], [ 0.071411, 0.049438 ], [ 0.074158, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0735571", "Lat": "0.0432000", "KPI": 219, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.046692 ], [ 0.074158, 0.043945 ], [ 0.071411, 0.043945 ], [ 0.071411, 0.046692 ], [ 0.074158, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0735600", "Lat": "0.0432000", "KPI": 959, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.046692 ], [ 0.074158, 0.043945 ], [ 0.071411, 0.043945 ], [ 0.071411, 0.046692 ], [ 0.074158, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0540000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.057678 ], [ 0.076904, 0.054932 ], [ 0.074158, 0.054932 ], [ 0.074158, 0.057678 ], [ 0.076904, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0761800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.057678 ], [ 0.076904, 0.054932 ], [ 0.074158, 0.054932 ], [ 0.074158, 0.057678 ], [ 0.076904, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0761842", "Lat": "0.0522000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.052185 ], [ 0.074158, 0.052185 ], [ 0.074158, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0761800", "Lat": "0.0522000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.054932 ], [ 0.076904, 0.052185 ], [ 0.074158, 0.052185 ], [ 0.074158, 0.054932 ], [ 0.076904, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0761842", "Lat": "0.0486000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.052185 ], [ 0.076904, 0.049438 ], [ 0.074158, 0.049438 ], [ 0.074158, 0.052185 ], [ 0.076904, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0486000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.052185 ], [ 0.076904, 0.049438 ], [ 0.074158, 0.049438 ], [ 0.074158, 0.052185 ], [ 0.076904, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0788112", "Lat": "0.0540000", "KPI": 39, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.057678 ], [ 0.079651, 0.054932 ], [ 0.076904, 0.054932 ], [ 0.076904, 0.057678 ], [ 0.079651, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0540000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.057678 ], [ 0.079651, 0.054932 ], [ 0.076904, 0.054932 ], [ 0.076904, 0.057678 ], [ 0.079651, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0788112", "Lat": "0.0522000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.054932 ], [ 0.079651, 0.052185 ], [ 0.076904, 0.052185 ], [ 0.076904, 0.054932 ], [ 0.079651, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0788100", "Lat": "0.0522000", "KPI": 197, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.054932 ], [ 0.079651, 0.052185 ], [ 0.076904, 0.052185 ], [ 0.076904, 0.054932 ], [ 0.079651, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0788112", "Lat": "0.0486000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.052185 ], [ 0.079651, 0.049438 ], [ 0.076904, 0.049438 ], [ 0.076904, 0.052185 ], [ 0.079651, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0788100", "Lat": "0.0486000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.052185 ], [ 0.079651, 0.049438 ], [ 0.076904, 0.049438 ], [ 0.076904, 0.052185 ], [ 0.079651, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0761842", "Lat": "0.0450000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.049438 ], [ 0.076904, 0.046692 ], [ 0.074158, 0.046692 ], [ 0.074158, 0.049438 ], [ 0.076904, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0761800", "Lat": "0.0450000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.049438 ], [ 0.076904, 0.046692 ], [ 0.074158, 0.046692 ], [ 0.074158, 0.049438 ], [ 0.076904, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761842", "Lat": "0.0432000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.046692 ], [ 0.076904, 0.043945 ], [ 0.074158, 0.043945 ], [ 0.074158, 0.046692 ], [ 0.076904, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0432000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.046692 ], [ 0.076904, 0.043945 ], [ 0.074158, 0.043945 ], [ 0.074158, 0.046692 ], [ 0.076904, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0788112", "Lat": "0.0450000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.049438 ], [ 0.079651, 0.046692 ], [ 0.076904, 0.046692 ], [ 0.076904, 0.049438 ], [ 0.079651, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0788100", "Lat": "0.0450000", "KPI": 575, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.049438 ], [ 0.079651, 0.046692 ], [ 0.076904, 0.046692 ], [ 0.076904, 0.049438 ], [ 0.079651, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0788112", "Lat": "0.0432000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.046692 ], [ 0.079651, 0.043945 ], [ 0.076904, 0.043945 ], [ 0.076904, 0.046692 ], [ 0.079651, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0788100", "Lat": "0.0432000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.046692 ], [ 0.079651, 0.043945 ], [ 0.076904, 0.043945 ], [ 0.076904, 0.046692 ], [ 0.079651, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0814382", "Lat": "0.0540000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.057678 ], [ 0.082397, 0.054932 ], [ 0.079651, 0.054932 ], [ 0.079651, 0.057678 ], [ 0.082397, 0.057678 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0814400", "Lat": "0.0540000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.057678 ], [ 0.082397, 0.054932 ], [ 0.079651, 0.054932 ], [ 0.079651, 0.057678 ], [ 0.082397, 0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0522000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.054932 ], [ 0.082397, 0.052185 ], [ 0.079651, 0.052185 ], [ 0.079651, 0.054932 ], [ 0.082397, 0.054932 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814400", "Lat": "0.0522000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.054932 ], [ 0.082397, 0.052185 ], [ 0.079651, 0.052185 ], [ 0.079651, 0.054932 ], [ 0.082397, 0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0814382", "Lat": "0.0486000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.052185 ], [ 0.082397, 0.049438 ], [ 0.079651, 0.049438 ], [ 0.079651, 0.052185 ], [ 0.082397, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0814400", "Lat": "0.0486000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.052185 ], [ 0.082397, 0.049438 ], [ 0.079651, 0.049438 ], [ 0.079651, 0.052185 ], [ 0.082397, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0814382", "Lat": "0.0450000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.049438 ], [ 0.082397, 0.046692 ], [ 0.079651, 0.046692 ], [ 0.079651, 0.049438 ], [ 0.082397, 0.049438 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814400", "Lat": "0.0450000", "KPI": 897, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.049438 ], [ 0.082397, 0.046692 ], [ 0.079651, 0.046692 ], [ 0.079651, 0.049438 ], [ 0.082397, 0.049438 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0432000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.046692 ], [ 0.082397, 0.043945 ], [ 0.079651, 0.043945 ], [ 0.079651, 0.046692 ], [ 0.082397, 0.046692 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0814400", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.046692 ], [ 0.082397, 0.043945 ], [ 0.079651, 0.043945 ], [ 0.079651, 0.046692 ], [ 0.082397, 0.046692 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0446597", "Lat": "0.0396000", "KPI": 190, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.043945 ], [ 0.046692, 0.041199 ], [ 0.043945, 0.041199 ], [ 0.043945, 0.043945 ], [ 0.046692, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0446600", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.043945 ], [ 0.046692, 0.041199 ], [ 0.043945, 0.041199 ], [ 0.043945, 0.043945 ], [ 0.046692, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0446597", "Lat": "0.0378000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.041199 ], [ 0.046692, 0.038452 ], [ 0.043945, 0.038452 ], [ 0.043945, 0.041199 ], [ 0.046692, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446600", "Lat": "0.0378000", "KPI": 578, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.041199 ], [ 0.046692, 0.038452 ], [ 0.043945, 0.038452 ], [ 0.043945, 0.041199 ], [ 0.046692, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0472867", "Lat": "0.0396000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.043945 ], [ 0.049438, 0.041199 ], [ 0.046692, 0.041199 ], [ 0.046692, 0.043945 ], [ 0.049438, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0472900", "Lat": "0.0396000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.043945 ], [ 0.049438, 0.041199 ], [ 0.046692, 0.041199 ], [ 0.046692, 0.043945 ], [ 0.049438, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0472867", "Lat": "0.0378000", "KPI": 515, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.041199 ], [ 0.049438, 0.038452 ], [ 0.046692, 0.038452 ], [ 0.046692, 0.041199 ], [ 0.049438, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0472900", "Lat": "0.0378000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.041199 ], [ 0.049438, 0.038452 ], [ 0.046692, 0.038452 ], [ 0.046692, 0.041199 ], [ 0.049438, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446597", "Lat": "0.0342000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.038452 ], [ 0.046692, 0.035706 ], [ 0.043945, 0.035706 ], [ 0.043945, 0.038452 ], [ 0.046692, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0446600", "Lat": "0.0342000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.038452 ], [ 0.046692, 0.035706 ], [ 0.043945, 0.035706 ], [ 0.043945, 0.038452 ], [ 0.046692, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0446597", "Lat": "0.0324000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.035706 ], [ 0.046692, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.035706 ], [ 0.046692, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0446600", "Lat": "0.0324000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.035706 ], [ 0.046692, 0.032959 ], [ 0.043945, 0.032959 ], [ 0.043945, 0.035706 ], [ 0.046692, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0472867", "Lat": "0.0342000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.038452 ], [ 0.049438, 0.035706 ], [ 0.046692, 0.035706 ], [ 0.046692, 0.038452 ], [ 0.049438, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0472900", "Lat": "0.0342000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.038452 ], [ 0.049438, 0.035706 ], [ 0.046692, 0.035706 ], [ 0.046692, 0.038452 ], [ 0.049438, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0472867", "Lat": "0.0324000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.035706 ], [ 0.049438, 0.032959 ], [ 0.046692, 0.032959 ], [ 0.046692, 0.035706 ], [ 0.049438, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0472900", "Lat": "0.0324000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.035706 ], [ 0.049438, 0.032959 ], [ 0.046692, 0.032959 ], [ 0.046692, 0.035706 ], [ 0.049438, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0499138", "Lat": "0.0396000", "KPI": 524, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.043945 ], [ 0.052185, 0.041199 ], [ 0.049438, 0.041199 ], [ 0.049438, 0.043945 ], [ 0.052185, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0499100", "Lat": "0.0396000", "KPI": 149, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.043945 ], [ 0.052185, 0.041199 ], [ 0.049438, 0.041199 ], [ 0.049438, 0.043945 ], [ 0.052185, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0499138", "Lat": "0.0378000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.041199 ], [ 0.052185, 0.038452 ], [ 0.049438, 0.038452 ], [ 0.049438, 0.041199 ], [ 0.052185, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0499100", "Lat": "0.0378000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.041199 ], [ 0.052185, 0.038452 ], [ 0.049438, 0.038452 ], [ 0.049438, 0.041199 ], [ 0.052185, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0525408", "Lat": "0.0396000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.041199 ], [ 0.052185, 0.041199 ], [ 0.052185, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0525400", "Lat": "0.0396000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.043945 ], [ 0.054932, 0.041199 ], [ 0.052185, 0.041199 ], [ 0.052185, 0.043945 ], [ 0.054932, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0525408", "Lat": "0.0378000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.041199 ], [ 0.054932, 0.038452 ], [ 0.052185, 0.038452 ], [ 0.052185, 0.041199 ], [ 0.054932, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0525400", "Lat": "0.0378000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.041199 ], [ 0.054932, 0.038452 ], [ 0.052185, 0.038452 ], [ 0.052185, 0.041199 ], [ 0.054932, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0499138", "Lat": "0.0342000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.038452 ], [ 0.052185, 0.035706 ], [ 0.049438, 0.035706 ], [ 0.049438, 0.038452 ], [ 0.052185, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0499100", "Lat": "0.0342000", "KPI": 398, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.038452 ], [ 0.052185, 0.035706 ], [ 0.049438, 0.035706 ], [ 0.049438, 0.038452 ], [ 0.052185, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0499138", "Lat": "0.0324000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.035706 ], [ 0.052185, 0.032959 ], [ 0.049438, 0.032959 ], [ 0.049438, 0.035706 ], [ 0.052185, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0499100", "Lat": "0.0324000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.035706 ], [ 0.052185, 0.032959 ], [ 0.049438, 0.032959 ], [ 0.049438, 0.035706 ], [ 0.052185, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0525408", "Lat": "0.0342000", "KPI": 550, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.038452 ], [ 0.054932, 0.035706 ], [ 0.052185, 0.035706 ], [ 0.052185, 0.038452 ], [ 0.054932, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0525400", "Lat": "0.0342000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.038452 ], [ 0.054932, 0.035706 ], [ 0.052185, 0.035706 ], [ 0.052185, 0.038452 ], [ 0.054932, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0324000", "KPI": 245, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.035706 ], [ 0.054932, 0.032959 ], [ 0.052185, 0.032959 ], [ 0.052185, 0.035706 ], [ 0.054932, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0324000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.035706 ], [ 0.054932, 0.032959 ], [ 0.052185, 0.032959 ], [ 0.052185, 0.035706 ], [ 0.054932, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0288000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.032959 ], [ 0.046692, 0.030212 ], [ 0.043945, 0.030212 ], [ 0.043945, 0.032959 ], [ 0.046692, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0446600", "Lat": "0.0288000", "KPI": 285, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.032959 ], [ 0.046692, 0.030212 ], [ 0.043945, 0.030212 ], [ 0.043945, 0.032959 ], [ 0.046692, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446597", "Lat": "0.0270000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.030212 ], [ 0.046692, 0.027466 ], [ 0.043945, 0.027466 ], [ 0.043945, 0.030212 ], [ 0.046692, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0446600", "Lat": "0.0270000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.030212 ], [ 0.046692, 0.027466 ], [ 0.043945, 0.027466 ], [ 0.043945, 0.030212 ], [ 0.046692, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0472867", "Lat": "0.0288000", "KPI": 115, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.032959 ], [ 0.049438, 0.030212 ], [ 0.046692, 0.030212 ], [ 0.046692, 0.032959 ], [ 0.049438, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0472900", "Lat": "0.0288000", "KPI": 180, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.032959 ], [ 0.049438, 0.030212 ], [ 0.046692, 0.030212 ], [ 0.046692, 0.032959 ], [ 0.049438, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0472867", "Lat": "0.0270000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.030212 ], [ 0.049438, 0.027466 ], [ 0.046692, 0.027466 ], [ 0.046692, 0.030212 ], [ 0.049438, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0472900", "Lat": "0.0270000", "KPI": 694, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.030212 ], [ 0.049438, 0.027466 ], [ 0.046692, 0.027466 ], [ 0.046692, 0.030212 ], [ 0.049438, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0446597", "Lat": "0.0234000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.027466 ], [ 0.046692, 0.024719 ], [ 0.043945, 0.024719 ], [ 0.043945, 0.027466 ], [ 0.046692, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446600", "Lat": "0.0234000", "KPI": 865, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.027466 ], [ 0.046692, 0.024719 ], [ 0.043945, 0.024719 ], [ 0.043945, 0.027466 ], [ 0.046692, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0446597", "Lat": "0.0216000", "KPI": 807, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.024719 ], [ 0.046692, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.024719 ], [ 0.046692, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0446600", "Lat": "0.0216000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.024719 ], [ 0.046692, 0.021973 ], [ 0.043945, 0.021973 ], [ 0.043945, 0.024719 ], [ 0.046692, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0472867", "Lat": "0.0234000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.027466 ], [ 0.049438, 0.024719 ], [ 0.046692, 0.024719 ], [ 0.046692, 0.027466 ], [ 0.049438, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0472900", "Lat": "0.0234000", "KPI": 507, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.027466 ], [ 0.049438, 0.024719 ], [ 0.046692, 0.024719 ], [ 0.046692, 0.027466 ], [ 0.049438, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0472867", "Lat": "0.0216000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.024719 ], [ 0.049438, 0.021973 ], [ 0.046692, 0.021973 ], [ 0.046692, 0.024719 ], [ 0.049438, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0216000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.024719 ], [ 0.049438, 0.021973 ], [ 0.046692, 0.021973 ], [ 0.046692, 0.024719 ], [ 0.049438, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499138", "Lat": "0.0288000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.032959 ], [ 0.052185, 0.030212 ], [ 0.049438, 0.030212 ], [ 0.049438, 0.032959 ], [ 0.052185, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0499100", "Lat": "0.0288000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.032959 ], [ 0.052185, 0.030212 ], [ 0.049438, 0.030212 ], [ 0.049438, 0.032959 ], [ 0.052185, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0499138", "Lat": "0.0270000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.030212 ], [ 0.052185, 0.027466 ], [ 0.049438, 0.027466 ], [ 0.049438, 0.030212 ], [ 0.052185, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0499100", "Lat": "0.0270000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.030212 ], [ 0.052185, 0.027466 ], [ 0.049438, 0.027466 ], [ 0.049438, 0.030212 ], [ 0.052185, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0525408", "Lat": "0.0288000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.030212 ], [ 0.052185, 0.030212 ], [ 0.052185, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0525400", "Lat": "0.0288000", "KPI": 349, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.032959 ], [ 0.054932, 0.030212 ], [ 0.052185, 0.030212 ], [ 0.052185, 0.032959 ], [ 0.054932, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0270000", "KPI": 514, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.030212 ], [ 0.054932, 0.027466 ], [ 0.052185, 0.027466 ], [ 0.052185, 0.030212 ], [ 0.054932, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0525400", "Lat": "0.0270000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.030212 ], [ 0.054932, 0.027466 ], [ 0.052185, 0.027466 ], [ 0.052185, 0.030212 ], [ 0.054932, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0499138", "Lat": "0.0234000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.027466 ], [ 0.052185, 0.024719 ], [ 0.049438, 0.024719 ], [ 0.049438, 0.027466 ], [ 0.052185, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0234000", "KPI": 294, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.027466 ], [ 0.052185, 0.024719 ], [ 0.049438, 0.024719 ], [ 0.049438, 0.027466 ], [ 0.052185, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0499138", "Lat": "0.0216000", "KPI": 468, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.024719 ], [ 0.052185, 0.021973 ], [ 0.049438, 0.021973 ], [ 0.049438, 0.024719 ], [ 0.052185, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499100", "Lat": "0.0216000", "KPI": 747, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.024719 ], [ 0.052185, 0.021973 ], [ 0.049438, 0.021973 ], [ 0.049438, 0.024719 ], [ 0.052185, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0525408", "Lat": "0.0234000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.027466 ], [ 0.054932, 0.024719 ], [ 0.052185, 0.024719 ], [ 0.052185, 0.027466 ], [ 0.054932, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0525400", "Lat": "0.0234000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.027466 ], [ 0.054932, 0.024719 ], [ 0.052185, 0.024719 ], [ 0.052185, 0.027466 ], [ 0.054932, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.024719 ], [ 0.054932, 0.021973 ], [ 0.052185, 0.021973 ], [ 0.052185, 0.024719 ], [ 0.054932, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.024719 ], [ 0.054932, 0.021973 ], [ 0.052185, 0.021973 ], [ 0.052185, 0.024719 ], [ 0.054932, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0551678", "Lat": "0.0396000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.043945 ], [ 0.057678, 0.041199 ], [ 0.054932, 0.041199 ], [ 0.054932, 0.043945 ], [ 0.057678, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0551700", "Lat": "0.0396000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.043945 ], [ 0.057678, 0.041199 ], [ 0.054932, 0.041199 ], [ 0.054932, 0.043945 ], [ 0.057678, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0551678", "Lat": "0.0378000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.041199 ], [ 0.057678, 0.038452 ], [ 0.054932, 0.038452 ], [ 0.054932, 0.041199 ], [ 0.057678, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0551700", "Lat": "0.0378000", "KPI": 479, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.041199 ], [ 0.057678, 0.038452 ], [ 0.054932, 0.038452 ], [ 0.054932, 0.041199 ], [ 0.057678, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0577949", "Lat": "0.0396000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043945 ], [ 0.060425, 0.041199 ], [ 0.057678, 0.041199 ], [ 0.057678, 0.043945 ], [ 0.060425, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0577900", "Lat": "0.0396000", "KPI": 617, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043945 ], [ 0.060425, 0.041199 ], [ 0.057678, 0.041199 ], [ 0.057678, 0.043945 ], [ 0.060425, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0378000", "KPI": 960, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.041199 ], [ 0.060425, 0.038452 ], [ 0.057678, 0.038452 ], [ 0.057678, 0.041199 ], [ 0.060425, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577900", "Lat": "0.0378000", "KPI": 895, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.041199 ], [ 0.060425, 0.038452 ], [ 0.057678, 0.038452 ], [ 0.057678, 0.041199 ], [ 0.060425, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0551678", "Lat": "0.0342000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.038452 ], [ 0.057678, 0.035706 ], [ 0.054932, 0.035706 ], [ 0.054932, 0.038452 ], [ 0.057678, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0551700", "Lat": "0.0342000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.038452 ], [ 0.057678, 0.035706 ], [ 0.054932, 0.035706 ], [ 0.054932, 0.038452 ], [ 0.057678, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0551678", "Lat": "0.0324000", "KPI": 746, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.035706 ], [ 0.057678, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.035706 ], [ 0.057678, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0551700", "Lat": "0.0324000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.035706 ], [ 0.057678, 0.032959 ], [ 0.054932, 0.032959 ], [ 0.054932, 0.035706 ], [ 0.057678, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0577949", "Lat": "0.0342000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.038452 ], [ 0.060425, 0.035706 ], [ 0.057678, 0.035706 ], [ 0.057678, 0.038452 ], [ 0.060425, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0577900", "Lat": "0.0342000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.038452 ], [ 0.060425, 0.035706 ], [ 0.057678, 0.035706 ], [ 0.057678, 0.038452 ], [ 0.060425, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0577949", "Lat": "0.0324000", "KPI": 410, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.035706 ], [ 0.060425, 0.032959 ], [ 0.057678, 0.032959 ], [ 0.057678, 0.035706 ], [ 0.060425, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0577900", "Lat": "0.0324000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.035706 ], [ 0.060425, 0.032959 ], [ 0.057678, 0.032959 ], [ 0.057678, 0.035706 ], [ 0.060425, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0630490", "Lat": "0.0396000", "KPI": 574, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.043945 ], [ 0.063171, 0.041199 ], [ 0.060425, 0.041199 ], [ 0.060425, 0.043945 ], [ 0.063171, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630500", "Lat": "0.0396000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.043945 ], [ 0.063171, 0.041199 ], [ 0.060425, 0.041199 ], [ 0.060425, 0.043945 ], [ 0.063171, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0630490", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.041199 ], [ 0.063171, 0.038452 ], [ 0.060425, 0.038452 ], [ 0.060425, 0.041199 ], [ 0.063171, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0630500", "Lat": "0.0378000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.041199 ], [ 0.063171, 0.038452 ], [ 0.060425, 0.038452 ], [ 0.060425, 0.041199 ], [ 0.063171, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0630490", "Lat": "0.0342000", "KPI": 353, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.038452 ], [ 0.063171, 0.035706 ], [ 0.060425, 0.035706 ], [ 0.060425, 0.038452 ], [ 0.063171, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0630500", "Lat": "0.0342000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.038452 ], [ 0.063171, 0.035706 ], [ 0.060425, 0.035706 ], [ 0.060425, 0.038452 ], [ 0.063171, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0630490", "Lat": "0.0324000", "KPI": 212, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.035706 ], [ 0.063171, 0.032959 ], [ 0.060425, 0.032959 ], [ 0.060425, 0.035706 ], [ 0.063171, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0630500", "Lat": "0.0324000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.035706 ], [ 0.063171, 0.032959 ], [ 0.060425, 0.032959 ], [ 0.060425, 0.035706 ], [ 0.063171, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0551678", "Lat": "0.0288000", "KPI": 851, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.032959 ], [ 0.057678, 0.030212 ], [ 0.054932, 0.030212 ], [ 0.054932, 0.032959 ], [ 0.057678, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551700", "Lat": "0.0288000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.032959 ], [ 0.057678, 0.030212 ], [ 0.054932, 0.030212 ], [ 0.054932, 0.032959 ], [ 0.057678, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0551678", "Lat": "0.0270000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.030212 ], [ 0.057678, 0.027466 ], [ 0.054932, 0.027466 ], [ 0.054932, 0.030212 ], [ 0.057678, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0551700", "Lat": "0.0270000", "KPI": 324, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.030212 ], [ 0.057678, 0.027466 ], [ 0.054932, 0.027466 ], [ 0.054932, 0.030212 ], [ 0.057678, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0577949", "Lat": "0.0288000", "KPI": 889, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032959 ], [ 0.060425, 0.030212 ], [ 0.057678, 0.030212 ], [ 0.057678, 0.032959 ], [ 0.060425, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0577900", "Lat": "0.0288000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032959 ], [ 0.060425, 0.030212 ], [ 0.057678, 0.030212 ], [ 0.057678, 0.032959 ], [ 0.060425, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577949", "Lat": "0.0270000", "KPI": 421, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.030212 ], [ 0.060425, 0.027466 ], [ 0.057678, 0.027466 ], [ 0.057678, 0.030212 ], [ 0.060425, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577900", "Lat": "0.0270000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.030212 ], [ 0.060425, 0.027466 ], [ 0.057678, 0.027466 ], [ 0.057678, 0.030212 ], [ 0.060425, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0551678", "Lat": "0.0234000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.027466 ], [ 0.057678, 0.024719 ], [ 0.054932, 0.024719 ], [ 0.054932, 0.027466 ], [ 0.057678, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0551700", "Lat": "0.0234000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.027466 ], [ 0.057678, 0.024719 ], [ 0.054932, 0.024719 ], [ 0.054932, 0.027466 ], [ 0.057678, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0551678", "Lat": "0.0216000", "KPI": 702, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.024719 ], [ 0.057678, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.024719 ], [ 0.057678, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0551700", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.024719 ], [ 0.057678, 0.021973 ], [ 0.054932, 0.021973 ], [ 0.054932, 0.024719 ], [ 0.057678, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0234000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.027466 ], [ 0.060425, 0.024719 ], [ 0.057678, 0.024719 ], [ 0.057678, 0.027466 ], [ 0.060425, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0577900", "Lat": "0.0234000", "KPI": 289, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.027466 ], [ 0.060425, 0.024719 ], [ 0.057678, 0.024719 ], [ 0.057678, 0.027466 ], [ 0.060425, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0577949", "Lat": "0.0216000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.024719 ], [ 0.060425, 0.021973 ], [ 0.057678, 0.021973 ], [ 0.057678, 0.024719 ], [ 0.060425, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0577900", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.024719 ], [ 0.060425, 0.021973 ], [ 0.057678, 0.021973 ], [ 0.057678, 0.024719 ], [ 0.060425, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0630490", "Lat": "0.0288000", "KPI": 277, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.032959 ], [ 0.063171, 0.030212 ], [ 0.060425, 0.030212 ], [ 0.060425, 0.032959 ], [ 0.063171, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630500", "Lat": "0.0288000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.032959 ], [ 0.063171, 0.030212 ], [ 0.060425, 0.030212 ], [ 0.060425, 0.032959 ], [ 0.063171, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0630490", "Lat": "0.0270000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.030212 ], [ 0.063171, 0.027466 ], [ 0.060425, 0.027466 ], [ 0.060425, 0.030212 ], [ 0.063171, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0630500", "Lat": "0.0270000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.030212 ], [ 0.063171, 0.027466 ], [ 0.060425, 0.027466 ], [ 0.060425, 0.030212 ], [ 0.063171, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0630490", "Lat": "0.0234000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.027466 ], [ 0.063171, 0.024719 ], [ 0.060425, 0.024719 ], [ 0.060425, 0.027466 ], [ 0.063171, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0630500", "Lat": "0.0234000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.027466 ], [ 0.063171, 0.024719 ], [ 0.060425, 0.024719 ], [ 0.060425, 0.027466 ], [ 0.063171, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0630490", "Lat": "0.0216000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.024719 ], [ 0.063171, 0.021973 ], [ 0.060425, 0.021973 ], [ 0.060425, 0.024719 ], [ 0.063171, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0630500", "Lat": "0.0216000", "KPI": 961, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.024719 ], [ 0.063171, 0.021973 ], [ 0.060425, 0.021973 ], [ 0.060425, 0.024719 ], [ 0.063171, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0446597", "Lat": "0.0180000", "KPI": 655, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.021973 ], [ 0.046692, 0.019226 ], [ 0.043945, 0.019226 ], [ 0.043945, 0.021973 ], [ 0.046692, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0446600", "Lat": "0.0180000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.021973 ], [ 0.046692, 0.019226 ], [ 0.043945, 0.019226 ], [ 0.043945, 0.021973 ], [ 0.046692, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0446597", "Lat": "0.0162000", "KPI": 160, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.019226 ], [ 0.046692, 0.016479 ], [ 0.043945, 0.016479 ], [ 0.043945, 0.019226 ], [ 0.046692, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0446600", "Lat": "0.0162000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.019226 ], [ 0.046692, 0.016479 ], [ 0.043945, 0.016479 ], [ 0.043945, 0.019226 ], [ 0.046692, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0472867", "Lat": "0.0180000", "KPI": 330, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.021973 ], [ 0.049438, 0.019226 ], [ 0.046692, 0.019226 ], [ 0.046692, 0.021973 ], [ 0.049438, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0472900", "Lat": "0.0180000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.021973 ], [ 0.049438, 0.019226 ], [ 0.046692, 0.019226 ], [ 0.046692, 0.021973 ], [ 0.049438, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0472867", "Lat": "0.0162000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.019226 ], [ 0.049438, 0.016479 ], [ 0.046692, 0.016479 ], [ 0.046692, 0.019226 ], [ 0.049438, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0472900", "Lat": "0.0162000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.019226 ], [ 0.049438, 0.016479 ], [ 0.046692, 0.016479 ], [ 0.046692, 0.019226 ], [ 0.049438, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0446597", "Lat": "0.0126000", "KPI": 307, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.016479 ], [ 0.046692, 0.013733 ], [ 0.043945, 0.013733 ], [ 0.043945, 0.016479 ], [ 0.046692, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0446600", "Lat": "0.0126000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.016479 ], [ 0.046692, 0.013733 ], [ 0.043945, 0.013733 ], [ 0.043945, 0.016479 ], [ 0.046692, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0108000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.013733 ], [ 0.046692, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.013733 ], [ 0.046692, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0446600", "Lat": "0.0108000", "KPI": 915, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.013733 ], [ 0.046692, 0.010986 ], [ 0.043945, 0.010986 ], [ 0.043945, 0.013733 ], [ 0.046692, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0472867", "Lat": "0.0126000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.013733 ], [ 0.046692, 0.013733 ], [ 0.046692, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0472900", "Lat": "0.0126000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.016479 ], [ 0.049438, 0.013733 ], [ 0.046692, 0.013733 ], [ 0.046692, 0.016479 ], [ 0.049438, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0108000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.013733 ], [ 0.049438, 0.010986 ], [ 0.046692, 0.010986 ], [ 0.046692, 0.013733 ], [ 0.049438, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.013733 ], [ 0.049438, 0.010986 ], [ 0.046692, 0.010986 ], [ 0.046692, 0.013733 ], [ 0.049438, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0499138", "Lat": "0.0180000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.021973 ], [ 0.052185, 0.019226 ], [ 0.049438, 0.019226 ], [ 0.049438, 0.021973 ], [ 0.052185, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0499100", "Lat": "0.0180000", "KPI": 141, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.021973 ], [ 0.052185, 0.019226 ], [ 0.049438, 0.019226 ], [ 0.049438, 0.021973 ], [ 0.052185, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0499138", "Lat": "0.0162000", "KPI": 970, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.019226 ], [ 0.052185, 0.016479 ], [ 0.049438, 0.016479 ], [ 0.049438, 0.019226 ], [ 0.052185, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0499100", "Lat": "0.0162000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.019226 ], [ 0.052185, 0.016479 ], [ 0.049438, 0.016479 ], [ 0.049438, 0.019226 ], [ 0.052185, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0525408", "Lat": "0.0180000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.019226 ], [ 0.052185, 0.019226 ], [ 0.052185, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0525400", "Lat": "0.0180000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.021973 ], [ 0.054932, 0.019226 ], [ 0.052185, 0.019226 ], [ 0.052185, 0.021973 ], [ 0.054932, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0525408", "Lat": "0.0162000", "KPI": 187, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.019226 ], [ 0.054932, 0.016479 ], [ 0.052185, 0.016479 ], [ 0.052185, 0.019226 ], [ 0.054932, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0525400", "Lat": "0.0162000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.019226 ], [ 0.054932, 0.016479 ], [ 0.052185, 0.016479 ], [ 0.052185, 0.019226 ], [ 0.054932, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0499138", "Lat": "0.0126000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.016479 ], [ 0.052185, 0.013733 ], [ 0.049438, 0.013733 ], [ 0.049438, 0.016479 ], [ 0.052185, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0499100", "Lat": "0.0126000", "KPI": 942, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.016479 ], [ 0.052185, 0.013733 ], [ 0.049438, 0.013733 ], [ 0.049438, 0.016479 ], [ 0.052185, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499138", "Lat": "0.0108000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.013733 ], [ 0.052185, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.013733 ], [ 0.052185, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0499100", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.013733 ], [ 0.052185, 0.010986 ], [ 0.049438, 0.010986 ], [ 0.049438, 0.013733 ], [ 0.052185, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0525408", "Lat": "0.0126000", "KPI": 419, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.013733 ], [ 0.052185, 0.013733 ], [ 0.052185, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0525400", "Lat": "0.0126000", "KPI": 69, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.016479 ], [ 0.054932, 0.013733 ], [ 0.052185, 0.013733 ], [ 0.052185, 0.016479 ], [ 0.054932, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.013733 ], [ 0.054932, 0.010986 ], [ 0.052185, 0.010986 ], [ 0.052185, 0.013733 ], [ 0.054932, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.013733 ], [ 0.054932, 0.010986 ], [ 0.052185, 0.010986 ], [ 0.052185, 0.013733 ], [ 0.054932, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0446597", "Lat": "0.0072000", "KPI": 398, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.010986 ], [ 0.046692, 0.008240 ], [ 0.043945, 0.008240 ], [ 0.043945, 0.010986 ], [ 0.046692, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0446600", "Lat": "0.0072000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.010986 ], [ 0.046692, 0.008240 ], [ 0.043945, 0.008240 ], [ 0.043945, 0.010986 ], [ 0.046692, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0054000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.008240 ], [ 0.046692, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.008240 ], [ 0.046692, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0054000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.008240 ], [ 0.046692, 0.005493 ], [ 0.043945, 0.005493 ], [ 0.043945, 0.008240 ], [ 0.046692, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0472867", "Lat": "0.0072000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.008240 ], [ 0.046692, 0.008240 ], [ 0.046692, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0472900", "Lat": "0.0072000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.010986 ], [ 0.049438, 0.008240 ], [ 0.046692, 0.008240 ], [ 0.046692, 0.010986 ], [ 0.049438, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.008240 ], [ 0.049438, 0.005493 ], [ 0.046692, 0.005493 ], [ 0.046692, 0.008240 ], [ 0.049438, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.008240 ], [ 0.049438, 0.005493 ], [ 0.046692, 0.005493 ], [ 0.046692, 0.008240 ], [ 0.049438, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0018000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.005493 ], [ 0.046692, 0.002747 ], [ 0.043945, 0.002747 ], [ 0.043945, 0.005493 ], [ 0.046692, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0446600", "Lat": "0.0018000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.005493 ], [ 0.046692, 0.002747 ], [ 0.043945, 0.002747 ], [ 0.043945, 0.005493 ], [ 0.046692, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0446597", "Lat": "0.0000000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.002747 ], [ 0.046692, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.002747 ], [ 0.046692, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0446600", "Lat": "0.0000000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.046692, 0.002747 ], [ 0.046692, 0.000000 ], [ 0.043945, 0.000000 ], [ 0.043945, 0.002747 ], [ 0.046692, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0472867", "Lat": "0.0018000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.002747 ], [ 0.046692, 0.002747 ], [ 0.046692, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0018000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.005493 ], [ 0.049438, 0.002747 ], [ 0.046692, 0.002747 ], [ 0.046692, 0.005493 ], [ 0.049438, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.002747 ], [ 0.049438, 0.000000 ], [ 0.046692, 0.000000 ], [ 0.046692, 0.002747 ], [ 0.049438, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049438, 0.002747 ], [ 0.049438, 0.000000 ], [ 0.046692, 0.000000 ], [ 0.046692, 0.002747 ], [ 0.049438, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0499138", "Lat": "0.0072000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.010986 ], [ 0.052185, 0.008240 ], [ 0.049438, 0.008240 ], [ 0.049438, 0.010986 ], [ 0.052185, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499100", "Lat": "0.0072000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.010986 ], [ 0.052185, 0.008240 ], [ 0.049438, 0.008240 ], [ 0.049438, 0.010986 ], [ 0.052185, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499138", "Lat": "0.0054000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.008240 ], [ 0.052185, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.008240 ], [ 0.052185, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499100", "Lat": "0.0054000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.008240 ], [ 0.052185, 0.005493 ], [ 0.049438, 0.005493 ], [ 0.049438, 0.008240 ], [ 0.052185, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0525408", "Lat": "0.0072000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.008240 ], [ 0.052185, 0.008240 ], [ 0.052185, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0525400", "Lat": "0.0072000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.010986 ], [ 0.054932, 0.008240 ], [ 0.052185, 0.008240 ], [ 0.052185, 0.010986 ], [ 0.054932, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.008240 ], [ 0.054932, 0.005493 ], [ 0.052185, 0.005493 ], [ 0.052185, 0.008240 ], [ 0.054932, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.008240 ], [ 0.054932, 0.005493 ], [ 0.052185, 0.005493 ], [ 0.052185, 0.008240 ], [ 0.054932, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0499138", "Lat": "0.0018000", "KPI": 958, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.005493 ], [ 0.052185, 0.002747 ], [ 0.049438, 0.002747 ], [ 0.049438, 0.005493 ], [ 0.052185, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0018000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.005493 ], [ 0.052185, 0.002747 ], [ 0.049438, 0.002747 ], [ 0.049438, 0.005493 ], [ 0.052185, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0000000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.002747 ], [ 0.052185, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.002747 ], [ 0.052185, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0499100", "Lat": "0.0000000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052185, 0.002747 ], [ 0.052185, 0.000000 ], [ 0.049438, 0.000000 ], [ 0.049438, 0.002747 ], [ 0.052185, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525408", "Lat": "0.0018000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.002747 ], [ 0.052185, 0.002747 ], [ 0.052185, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0525400", "Lat": "0.0018000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.005493 ], [ 0.054932, 0.002747 ], [ 0.052185, 0.002747 ], [ 0.052185, 0.005493 ], [ 0.054932, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.002747 ], [ 0.054932, 0.000000 ], [ 0.052185, 0.000000 ], [ 0.052185, 0.002747 ], [ 0.054932, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.054932, 0.002747 ], [ 0.054932, 0.000000 ], [ 0.052185, 0.000000 ], [ 0.052185, 0.002747 ], [ 0.054932, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0551678", "Lat": "0.0180000", "KPI": 137, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.021973 ], [ 0.057678, 0.019226 ], [ 0.054932, 0.019226 ], [ 0.054932, 0.021973 ], [ 0.057678, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0551700", "Lat": "0.0180000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.021973 ], [ 0.057678, 0.019226 ], [ 0.054932, 0.019226 ], [ 0.054932, 0.021973 ], [ 0.057678, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0551678", "Lat": "0.0162000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.019226 ], [ 0.057678, 0.016479 ], [ 0.054932, 0.016479 ], [ 0.054932, 0.019226 ], [ 0.057678, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0551700", "Lat": "0.0162000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.019226 ], [ 0.057678, 0.016479 ], [ 0.054932, 0.016479 ], [ 0.054932, 0.019226 ], [ 0.057678, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0577949", "Lat": "0.0180000", "KPI": 560, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021973 ], [ 0.060425, 0.019226 ], [ 0.057678, 0.019226 ], [ 0.057678, 0.021973 ], [ 0.060425, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0180000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021973 ], [ 0.060425, 0.019226 ], [ 0.057678, 0.019226 ], [ 0.057678, 0.021973 ], [ 0.060425, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577949", "Lat": "0.0162000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.019226 ], [ 0.060425, 0.016479 ], [ 0.057678, 0.016479 ], [ 0.057678, 0.019226 ], [ 0.060425, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0577900", "Lat": "0.0162000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.019226 ], [ 0.060425, 0.016479 ], [ 0.057678, 0.016479 ], [ 0.057678, 0.019226 ], [ 0.060425, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0551678", "Lat": "0.0126000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.016479 ], [ 0.057678, 0.013733 ], [ 0.054932, 0.013733 ], [ 0.054932, 0.016479 ], [ 0.057678, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0551700", "Lat": "0.0126000", "KPI": 880, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.016479 ], [ 0.057678, 0.013733 ], [ 0.054932, 0.013733 ], [ 0.054932, 0.016479 ], [ 0.057678, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0551678", "Lat": "0.0108000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.013733 ], [ 0.057678, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.013733 ], [ 0.057678, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0551700", "Lat": "0.0108000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.013733 ], [ 0.057678, 0.010986 ], [ 0.054932, 0.010986 ], [ 0.054932, 0.013733 ], [ 0.057678, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577949", "Lat": "0.0126000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.013733 ], [ 0.057678, 0.013733 ], [ 0.057678, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0577900", "Lat": "0.0126000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016479 ], [ 0.060425, 0.013733 ], [ 0.057678, 0.013733 ], [ 0.057678, 0.016479 ], [ 0.060425, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0577949", "Lat": "0.0108000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.013733 ], [ 0.060425, 0.010986 ], [ 0.057678, 0.010986 ], [ 0.057678, 0.013733 ], [ 0.060425, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0577900", "Lat": "0.0108000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.013733 ], [ 0.060425, 0.010986 ], [ 0.057678, 0.010986 ], [ 0.057678, 0.013733 ], [ 0.060425, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0630490", "Lat": "0.0180000", "KPI": 783, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.021973 ], [ 0.063171, 0.019226 ], [ 0.060425, 0.019226 ], [ 0.060425, 0.021973 ], [ 0.063171, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0630500", "Lat": "0.0180000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.021973 ], [ 0.063171, 0.019226 ], [ 0.060425, 0.019226 ], [ 0.060425, 0.021973 ], [ 0.063171, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0630490", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.019226 ], [ 0.063171, 0.016479 ], [ 0.060425, 0.016479 ], [ 0.060425, 0.019226 ], [ 0.063171, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0630500", "Lat": "0.0162000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.019226 ], [ 0.063171, 0.016479 ], [ 0.060425, 0.016479 ], [ 0.060425, 0.019226 ], [ 0.063171, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0630490", "Lat": "0.0126000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.016479 ], [ 0.063171, 0.013733 ], [ 0.060425, 0.013733 ], [ 0.060425, 0.016479 ], [ 0.063171, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0630500", "Lat": "0.0126000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.016479 ], [ 0.063171, 0.013733 ], [ 0.060425, 0.013733 ], [ 0.060425, 0.016479 ], [ 0.063171, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0630490", "Lat": "0.0108000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.013733 ], [ 0.063171, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.013733 ], [ 0.063171, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0108000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.013733 ], [ 0.063171, 0.010986 ], [ 0.060425, 0.010986 ], [ 0.060425, 0.013733 ], [ 0.063171, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0551678", "Lat": "0.0072000", "KPI": 672, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.010986 ], [ 0.057678, 0.008240 ], [ 0.054932, 0.008240 ], [ 0.054932, 0.010986 ], [ 0.057678, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551700", "Lat": "0.0072000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.010986 ], [ 0.057678, 0.008240 ], [ 0.054932, 0.008240 ], [ 0.054932, 0.010986 ], [ 0.057678, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551678", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.008240 ], [ 0.057678, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.008240 ], [ 0.057678, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0551700", "Lat": "0.0054000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.008240 ], [ 0.057678, 0.005493 ], [ 0.054932, 0.005493 ], [ 0.054932, 0.008240 ], [ 0.057678, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0577949", "Lat": "0.0072000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.008240 ], [ 0.057678, 0.008240 ], [ 0.057678, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577900", "Lat": "0.0072000", "KPI": 422, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010986 ], [ 0.060425, 0.008240 ], [ 0.057678, 0.008240 ], [ 0.057678, 0.010986 ], [ 0.060425, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.008240 ], [ 0.060425, 0.005493 ], [ 0.057678, 0.005493 ], [ 0.057678, 0.008240 ], [ 0.060425, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.008240 ], [ 0.060425, 0.005493 ], [ 0.057678, 0.005493 ], [ 0.057678, 0.008240 ], [ 0.060425, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551678", "Lat": "0.0018000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.005493 ], [ 0.057678, 0.002747 ], [ 0.054932, 0.002747 ], [ 0.054932, 0.005493 ], [ 0.057678, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0018000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.005493 ], [ 0.057678, 0.002747 ], [ 0.054932, 0.002747 ], [ 0.054932, 0.005493 ], [ 0.057678, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0551678", "Lat": "0.0000000", "KPI": 910, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.002747 ], [ 0.057678, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.002747 ], [ 0.057678, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0551700", "Lat": "0.0000000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057678, 0.002747 ], [ 0.057678, 0.000000 ], [ 0.054932, 0.000000 ], [ 0.054932, 0.002747 ], [ 0.057678, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0577949", "Lat": "0.0018000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.002747 ], [ 0.057678, 0.002747 ], [ 0.057678, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577900", "Lat": "0.0018000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005493 ], [ 0.060425, 0.002747 ], [ 0.057678, 0.002747 ], [ 0.057678, 0.005493 ], [ 0.060425, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.002747 ], [ 0.060425, 0.000000 ], [ 0.057678, 0.000000 ], [ 0.057678, 0.002747 ], [ 0.060425, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.002747 ], [ 0.060425, 0.000000 ], [ 0.057678, 0.000000 ], [ 0.057678, 0.002747 ], [ 0.060425, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0630490", "Lat": "0.0072000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.010986 ], [ 0.063171, 0.008240 ], [ 0.060425, 0.008240 ], [ 0.060425, 0.010986 ], [ 0.063171, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0630500", "Lat": "0.0072000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.010986 ], [ 0.063171, 0.008240 ], [ 0.060425, 0.008240 ], [ 0.060425, 0.010986 ], [ 0.063171, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630490", "Lat": "0.0054000", "KPI": 647, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.008240 ], [ 0.063171, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.008240 ], [ 0.063171, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0630500", "Lat": "0.0054000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.008240 ], [ 0.063171, 0.005493 ], [ 0.060425, 0.005493 ], [ 0.060425, 0.008240 ], [ 0.063171, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630490", "Lat": "0.0018000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.005493 ], [ 0.063171, 0.002747 ], [ 0.060425, 0.002747 ], [ 0.060425, 0.005493 ], [ 0.063171, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0018000", "KPI": 873, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.005493 ], [ 0.063171, 0.002747 ], [ 0.060425, 0.002747 ], [ 0.060425, 0.005493 ], [ 0.063171, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0630490", "Lat": "0.0000000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.002747 ], [ 0.063171, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.002747 ], [ 0.063171, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0630500", "Lat": "0.0000000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063171, 0.002747 ], [ 0.063171, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.002747 ], [ 0.063171, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0656760", "Lat": "0.0396000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.041199 ], [ 0.063171, 0.041199 ], [ 0.063171, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0396000", "KPI": 594, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.043945 ], [ 0.065918, 0.041199 ], [ 0.063171, 0.041199 ], [ 0.063171, 0.043945 ], [ 0.065918, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0656760", "Lat": "0.0378000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.041199 ], [ 0.065918, 0.038452 ], [ 0.063171, 0.038452 ], [ 0.063171, 0.041199 ], [ 0.065918, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0378000", "KPI": 887, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.041199 ], [ 0.065918, 0.038452 ], [ 0.063171, 0.038452 ], [ 0.063171, 0.041199 ], [ 0.065918, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0683030", "Lat": "0.0396000", "KPI": 730, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.043945 ], [ 0.068665, 0.041199 ], [ 0.065918, 0.041199 ], [ 0.065918, 0.043945 ], [ 0.068665, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0683000", "Lat": "0.0396000", "KPI": 753, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.043945 ], [ 0.068665, 0.041199 ], [ 0.065918, 0.041199 ], [ 0.065918, 0.043945 ], [ 0.068665, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0683030", "Lat": "0.0378000", "KPI": 314, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.041199 ], [ 0.068665, 0.038452 ], [ 0.065918, 0.038452 ], [ 0.065918, 0.041199 ], [ 0.068665, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0683000", "Lat": "0.0378000", "KPI": 146, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.041199 ], [ 0.068665, 0.038452 ], [ 0.065918, 0.038452 ], [ 0.065918, 0.041199 ], [ 0.068665, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0656760", "Lat": "0.0342000", "KPI": 594, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.038452 ], [ 0.065918, 0.035706 ], [ 0.063171, 0.035706 ], [ 0.063171, 0.038452 ], [ 0.065918, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0656800", "Lat": "0.0342000", "KPI": 451, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.038452 ], [ 0.065918, 0.035706 ], [ 0.063171, 0.035706 ], [ 0.063171, 0.038452 ], [ 0.065918, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0656760", "Lat": "0.0324000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.035706 ], [ 0.065918, 0.032959 ], [ 0.063171, 0.032959 ], [ 0.063171, 0.035706 ], [ 0.065918, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0656800", "Lat": "0.0324000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.035706 ], [ 0.065918, 0.032959 ], [ 0.063171, 0.032959 ], [ 0.063171, 0.035706 ], [ 0.065918, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0683030", "Lat": "0.0342000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.038452 ], [ 0.068665, 0.035706 ], [ 0.065918, 0.035706 ], [ 0.065918, 0.038452 ], [ 0.068665, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0683000", "Lat": "0.0342000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.038452 ], [ 0.068665, 0.035706 ], [ 0.065918, 0.035706 ], [ 0.065918, 0.038452 ], [ 0.068665, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0683030", "Lat": "0.0324000", "KPI": 527, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.035706 ], [ 0.068665, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.035706 ], [ 0.068665, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0683000", "Lat": "0.0324000", "KPI": 650, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.035706 ], [ 0.068665, 0.032959 ], [ 0.065918, 0.032959 ], [ 0.065918, 0.035706 ], [ 0.068665, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0709301", "Lat": "0.0396000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.043945 ], [ 0.071411, 0.041199 ], [ 0.068665, 0.041199 ], [ 0.068665, 0.043945 ], [ 0.071411, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0396000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.043945 ], [ 0.071411, 0.041199 ], [ 0.068665, 0.041199 ], [ 0.068665, 0.043945 ], [ 0.071411, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0378000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.041199 ], [ 0.071411, 0.038452 ], [ 0.068665, 0.038452 ], [ 0.068665, 0.041199 ], [ 0.071411, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0709300", "Lat": "0.0378000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.041199 ], [ 0.071411, 0.038452 ], [ 0.068665, 0.038452 ], [ 0.068665, 0.041199 ], [ 0.071411, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0735571", "Lat": "0.0396000", "KPI": 343, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.043945 ], [ 0.074158, 0.041199 ], [ 0.071411, 0.041199 ], [ 0.071411, 0.043945 ], [ 0.074158, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0396000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.043945 ], [ 0.074158, 0.041199 ], [ 0.071411, 0.041199 ], [ 0.071411, 0.043945 ], [ 0.074158, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0735571", "Lat": "0.0378000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.041199 ], [ 0.074158, 0.038452 ], [ 0.071411, 0.038452 ], [ 0.071411, 0.041199 ], [ 0.074158, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0735600", "Lat": "0.0378000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.041199 ], [ 0.074158, 0.038452 ], [ 0.071411, 0.038452 ], [ 0.071411, 0.041199 ], [ 0.074158, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0342000", "KPI": 328, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.038452 ], [ 0.071411, 0.035706 ], [ 0.068665, 0.035706 ], [ 0.068665, 0.038452 ], [ 0.071411, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0709300", "Lat": "0.0342000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.038452 ], [ 0.071411, 0.035706 ], [ 0.068665, 0.035706 ], [ 0.068665, 0.038452 ], [ 0.071411, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709301", "Lat": "0.0324000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.035706 ], [ 0.071411, 0.032959 ], [ 0.068665, 0.032959 ], [ 0.068665, 0.035706 ], [ 0.071411, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0709300", "Lat": "0.0324000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.035706 ], [ 0.071411, 0.032959 ], [ 0.068665, 0.032959 ], [ 0.068665, 0.035706 ], [ 0.071411, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0735571", "Lat": "0.0342000", "KPI": 956, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.038452 ], [ 0.074158, 0.035706 ], [ 0.071411, 0.035706 ], [ 0.071411, 0.038452 ], [ 0.074158, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0735600", "Lat": "0.0342000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.038452 ], [ 0.074158, 0.035706 ], [ 0.071411, 0.035706 ], [ 0.071411, 0.038452 ], [ 0.074158, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0735571", "Lat": "0.0324000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.035706 ], [ 0.074158, 0.032959 ], [ 0.071411, 0.032959 ], [ 0.071411, 0.035706 ], [ 0.074158, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0735600", "Lat": "0.0324000", "KPI": 397, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.035706 ], [ 0.074158, 0.032959 ], [ 0.071411, 0.032959 ], [ 0.071411, 0.035706 ], [ 0.074158, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0656760", "Lat": "0.0288000", "KPI": 91, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.030212 ], [ 0.063171, 0.030212 ], [ 0.063171, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0656800", "Lat": "0.0288000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.032959 ], [ 0.065918, 0.030212 ], [ 0.063171, 0.030212 ], [ 0.063171, 0.032959 ], [ 0.065918, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0270000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.030212 ], [ 0.065918, 0.027466 ], [ 0.063171, 0.027466 ], [ 0.063171, 0.030212 ], [ 0.065918, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0656800", "Lat": "0.0270000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.030212 ], [ 0.065918, 0.027466 ], [ 0.063171, 0.027466 ], [ 0.063171, 0.030212 ], [ 0.065918, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0683030", "Lat": "0.0288000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.032959 ], [ 0.068665, 0.030212 ], [ 0.065918, 0.030212 ], [ 0.065918, 0.032959 ], [ 0.068665, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0683000", "Lat": "0.0288000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.032959 ], [ 0.068665, 0.030212 ], [ 0.065918, 0.030212 ], [ 0.065918, 0.032959 ], [ 0.068665, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0683030", "Lat": "0.0270000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.030212 ], [ 0.068665, 0.027466 ], [ 0.065918, 0.027466 ], [ 0.065918, 0.030212 ], [ 0.068665, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0683000", "Lat": "0.0270000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.030212 ], [ 0.068665, 0.027466 ], [ 0.065918, 0.027466 ], [ 0.065918, 0.030212 ], [ 0.068665, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0656760", "Lat": "0.0234000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.027466 ], [ 0.065918, 0.024719 ], [ 0.063171, 0.024719 ], [ 0.063171, 0.027466 ], [ 0.065918, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0656800", "Lat": "0.0234000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.027466 ], [ 0.065918, 0.024719 ], [ 0.063171, 0.024719 ], [ 0.063171, 0.027466 ], [ 0.065918, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.024719 ], [ 0.065918, 0.021973 ], [ 0.063171, 0.021973 ], [ 0.063171, 0.024719 ], [ 0.065918, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.024719 ], [ 0.065918, 0.021973 ], [ 0.063171, 0.021973 ], [ 0.063171, 0.024719 ], [ 0.065918, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0234000", "KPI": 635, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.027466 ], [ 0.068665, 0.024719 ], [ 0.065918, 0.024719 ], [ 0.065918, 0.027466 ], [ 0.068665, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0683000", "Lat": "0.0234000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.027466 ], [ 0.068665, 0.024719 ], [ 0.065918, 0.024719 ], [ 0.065918, 0.027466 ], [ 0.068665, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0683030", "Lat": "0.0216000", "KPI": 526, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.024719 ], [ 0.068665, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.024719 ], [ 0.068665, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0683000", "Lat": "0.0216000", "KPI": 301, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.024719 ], [ 0.068665, 0.021973 ], [ 0.065918, 0.021973 ], [ 0.065918, 0.024719 ], [ 0.068665, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0709301", "Lat": "0.0288000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.032959 ], [ 0.071411, 0.030212 ], [ 0.068665, 0.030212 ], [ 0.068665, 0.032959 ], [ 0.071411, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709300", "Lat": "0.0288000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.032959 ], [ 0.071411, 0.030212 ], [ 0.068665, 0.030212 ], [ 0.068665, 0.032959 ], [ 0.071411, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0270000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.030212 ], [ 0.071411, 0.027466 ], [ 0.068665, 0.027466 ], [ 0.068665, 0.030212 ], [ 0.071411, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0709300", "Lat": "0.0270000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.030212 ], [ 0.071411, 0.027466 ], [ 0.068665, 0.027466 ], [ 0.068665, 0.030212 ], [ 0.071411, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0735571", "Lat": "0.0288000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.032959 ], [ 0.074158, 0.030212 ], [ 0.071411, 0.030212 ], [ 0.071411, 0.032959 ], [ 0.074158, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0735600", "Lat": "0.0288000", "KPI": 362, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.032959 ], [ 0.074158, 0.030212 ], [ 0.071411, 0.030212 ], [ 0.071411, 0.032959 ], [ 0.074158, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0735571", "Lat": "0.0270000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.030212 ], [ 0.074158, 0.027466 ], [ 0.071411, 0.027466 ], [ 0.071411, 0.030212 ], [ 0.074158, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0735600", "Lat": "0.0270000", "KPI": 969, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.030212 ], [ 0.074158, 0.027466 ], [ 0.071411, 0.027466 ], [ 0.071411, 0.030212 ], [ 0.074158, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0709301", "Lat": "0.0234000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.027466 ], [ 0.071411, 0.024719 ], [ 0.068665, 0.024719 ], [ 0.068665, 0.027466 ], [ 0.071411, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0709300", "Lat": "0.0234000", "KPI": 811, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.027466 ], [ 0.071411, 0.024719 ], [ 0.068665, 0.024719 ], [ 0.068665, 0.027466 ], [ 0.071411, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0709301", "Lat": "0.0216000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.024719 ], [ 0.071411, 0.021973 ], [ 0.068665, 0.021973 ], [ 0.068665, 0.024719 ], [ 0.071411, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709300", "Lat": "0.0216000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.024719 ], [ 0.071411, 0.021973 ], [ 0.068665, 0.021973 ], [ 0.068665, 0.024719 ], [ 0.071411, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0735571", "Lat": "0.0234000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.027466 ], [ 0.074158, 0.024719 ], [ 0.071411, 0.024719 ], [ 0.071411, 0.027466 ], [ 0.074158, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0735600", "Lat": "0.0234000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.027466 ], [ 0.074158, 0.024719 ], [ 0.071411, 0.024719 ], [ 0.071411, 0.027466 ], [ 0.074158, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0735571", "Lat": "0.0216000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.024719 ], [ 0.074158, 0.021973 ], [ 0.071411, 0.021973 ], [ 0.071411, 0.024719 ], [ 0.074158, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0735600", "Lat": "0.0216000", "KPI": 878, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.024719 ], [ 0.074158, 0.021973 ], [ 0.071411, 0.021973 ], [ 0.071411, 0.024719 ], [ 0.074158, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0761842", "Lat": "0.0396000", "KPI": 389, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.041199 ], [ 0.074158, 0.041199 ], [ 0.074158, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761800", "Lat": "0.0396000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.043945 ], [ 0.076904, 0.041199 ], [ 0.074158, 0.041199 ], [ 0.074158, 0.043945 ], [ 0.076904, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761842", "Lat": "0.0378000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.041199 ], [ 0.076904, 0.038452 ], [ 0.074158, 0.038452 ], [ 0.074158, 0.041199 ], [ 0.076904, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0761800", "Lat": "0.0378000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.041199 ], [ 0.076904, 0.038452 ], [ 0.074158, 0.038452 ], [ 0.074158, 0.041199 ], [ 0.076904, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0788112", "Lat": "0.0396000", "KPI": 766, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.043945 ], [ 0.079651, 0.041199 ], [ 0.076904, 0.041199 ], [ 0.076904, 0.043945 ], [ 0.079651, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0788100", "Lat": "0.0396000", "KPI": 771, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.043945 ], [ 0.079651, 0.041199 ], [ 0.076904, 0.041199 ], [ 0.076904, 0.043945 ], [ 0.079651, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0788112", "Lat": "0.0378000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.041199 ], [ 0.079651, 0.038452 ], [ 0.076904, 0.038452 ], [ 0.076904, 0.041199 ], [ 0.079651, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0788100", "Lat": "0.0378000", "KPI": 74, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.041199 ], [ 0.079651, 0.038452 ], [ 0.076904, 0.038452 ], [ 0.076904, 0.041199 ], [ 0.079651, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0761842", "Lat": "0.0342000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.038452 ], [ 0.076904, 0.035706 ], [ 0.074158, 0.035706 ], [ 0.074158, 0.038452 ], [ 0.076904, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0761800", "Lat": "0.0342000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.038452 ], [ 0.076904, 0.035706 ], [ 0.074158, 0.035706 ], [ 0.074158, 0.038452 ], [ 0.076904, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761842", "Lat": "0.0324000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.035706 ], [ 0.076904, 0.032959 ], [ 0.074158, 0.032959 ], [ 0.074158, 0.035706 ], [ 0.076904, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0761800", "Lat": "0.0324000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.035706 ], [ 0.076904, 0.032959 ], [ 0.074158, 0.032959 ], [ 0.074158, 0.035706 ], [ 0.076904, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0788112", "Lat": "0.0342000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.038452 ], [ 0.079651, 0.035706 ], [ 0.076904, 0.035706 ], [ 0.076904, 0.038452 ], [ 0.079651, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0788100", "Lat": "0.0342000", "KPI": 35, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.038452 ], [ 0.079651, 0.035706 ], [ 0.076904, 0.035706 ], [ 0.076904, 0.038452 ], [ 0.079651, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0788112", "Lat": "0.0324000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.035706 ], [ 0.079651, 0.032959 ], [ 0.076904, 0.032959 ], [ 0.076904, 0.035706 ], [ 0.079651, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0788100", "Lat": "0.0324000", "KPI": 141, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.035706 ], [ 0.079651, 0.032959 ], [ 0.076904, 0.032959 ], [ 0.076904, 0.035706 ], [ 0.079651, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0814382", "Lat": "0.0396000", "KPI": 497, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.043945 ], [ 0.082397, 0.041199 ], [ 0.079651, 0.041199 ], [ 0.079651, 0.043945 ], [ 0.082397, 0.043945 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0814400", "Lat": "0.0396000", "KPI": 349, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.043945 ], [ 0.082397, 0.041199 ], [ 0.079651, 0.041199 ], [ 0.079651, 0.043945 ], [ 0.082397, 0.043945 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0814382", "Lat": "0.0378000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.041199 ], [ 0.082397, 0.038452 ], [ 0.079651, 0.038452 ], [ 0.079651, 0.041199 ], [ 0.082397, 0.041199 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0814400", "Lat": "0.0378000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.041199 ], [ 0.082397, 0.038452 ], [ 0.079651, 0.038452 ], [ 0.079651, 0.041199 ], [ 0.082397, 0.041199 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0814382", "Lat": "0.0342000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.038452 ], [ 0.082397, 0.035706 ], [ 0.079651, 0.035706 ], [ 0.079651, 0.038452 ], [ 0.082397, 0.038452 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0342000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.038452 ], [ 0.082397, 0.035706 ], [ 0.079651, 0.035706 ], [ 0.079651, 0.038452 ], [ 0.082397, 0.038452 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0814382", "Lat": "0.0324000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.035706 ], [ 0.082397, 0.032959 ], [ 0.079651, 0.032959 ], [ 0.079651, 0.035706 ], [ 0.082397, 0.035706 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0814400", "Lat": "0.0324000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.035706 ], [ 0.082397, 0.032959 ], [ 0.079651, 0.032959 ], [ 0.079651, 0.035706 ], [ 0.082397, 0.035706 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0761842", "Lat": "0.0288000", "KPI": 149, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.030212 ], [ 0.074158, 0.030212 ], [ 0.074158, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0761800", "Lat": "0.0288000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.032959 ], [ 0.076904, 0.030212 ], [ 0.074158, 0.030212 ], [ 0.074158, 0.032959 ], [ 0.076904, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0761842", "Lat": "0.0270000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.030212 ], [ 0.076904, 0.027466 ], [ 0.074158, 0.027466 ], [ 0.074158, 0.030212 ], [ 0.076904, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0761800", "Lat": "0.0270000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.030212 ], [ 0.076904, 0.027466 ], [ 0.074158, 0.027466 ], [ 0.074158, 0.030212 ], [ 0.076904, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0788112", "Lat": "0.0288000", "KPI": 973, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.032959 ], [ 0.079651, 0.030212 ], [ 0.076904, 0.030212 ], [ 0.076904, 0.032959 ], [ 0.079651, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0788100", "Lat": "0.0288000", "KPI": 345, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.032959 ], [ 0.079651, 0.030212 ], [ 0.076904, 0.030212 ], [ 0.076904, 0.032959 ], [ 0.079651, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0788112", "Lat": "0.0270000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.030212 ], [ 0.079651, 0.027466 ], [ 0.076904, 0.027466 ], [ 0.076904, 0.030212 ], [ 0.079651, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0788100", "Lat": "0.0270000", "KPI": 591, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.030212 ], [ 0.079651, 0.027466 ], [ 0.076904, 0.027466 ], [ 0.076904, 0.030212 ], [ 0.079651, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0761842", "Lat": "0.0234000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.027466 ], [ 0.076904, 0.024719 ], [ 0.074158, 0.024719 ], [ 0.074158, 0.027466 ], [ 0.076904, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0761800", "Lat": "0.0234000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.027466 ], [ 0.076904, 0.024719 ], [ 0.074158, 0.024719 ], [ 0.074158, 0.027466 ], [ 0.076904, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.024719 ], [ 0.076904, 0.021973 ], [ 0.074158, 0.021973 ], [ 0.074158, 0.024719 ], [ 0.076904, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.024719 ], [ 0.076904, 0.021973 ], [ 0.074158, 0.021973 ], [ 0.074158, 0.024719 ], [ 0.076904, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0788112", "Lat": "0.0234000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.027466 ], [ 0.079651, 0.024719 ], [ 0.076904, 0.024719 ], [ 0.076904, 0.027466 ], [ 0.079651, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0788100", "Lat": "0.0234000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.027466 ], [ 0.079651, 0.024719 ], [ 0.076904, 0.024719 ], [ 0.076904, 0.027466 ], [ 0.079651, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0788112", "Lat": "0.0216000", "KPI": 593, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.024719 ], [ 0.079651, 0.021973 ], [ 0.076904, 0.021973 ], [ 0.076904, 0.024719 ], [ 0.079651, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0788100", "Lat": "0.0216000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.024719 ], [ 0.079651, 0.021973 ], [ 0.076904, 0.021973 ], [ 0.076904, 0.024719 ], [ 0.079651, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0814382", "Lat": "0.0288000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.032959 ], [ 0.082397, 0.030212 ], [ 0.079651, 0.030212 ], [ 0.079651, 0.032959 ], [ 0.082397, 0.032959 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814400", "Lat": "0.0288000", "KPI": 827, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.032959 ], [ 0.082397, 0.030212 ], [ 0.079651, 0.030212 ], [ 0.079651, 0.032959 ], [ 0.082397, 0.032959 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814382", "Lat": "0.0270000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.030212 ], [ 0.082397, 0.027466 ], [ 0.079651, 0.027466 ], [ 0.079651, 0.030212 ], [ 0.082397, 0.030212 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0270000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.030212 ], [ 0.082397, 0.027466 ], [ 0.079651, 0.027466 ], [ 0.079651, 0.030212 ], [ 0.082397, 0.030212 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0234000", "KPI": 267, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.027466 ], [ 0.082397, 0.024719 ], [ 0.079651, 0.024719 ], [ 0.079651, 0.027466 ], [ 0.082397, 0.027466 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0814400", "Lat": "0.0234000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.027466 ], [ 0.082397, 0.024719 ], [ 0.079651, 0.024719 ], [ 0.079651, 0.027466 ], [ 0.082397, 0.027466 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0814382", "Lat": "0.0216000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.024719 ], [ 0.082397, 0.021973 ], [ 0.079651, 0.021973 ], [ 0.079651, 0.024719 ], [ 0.082397, 0.024719 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0814400", "Lat": "0.0216000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.024719 ], [ 0.082397, 0.021973 ], [ 0.079651, 0.021973 ], [ 0.079651, 0.024719 ], [ 0.082397, 0.024719 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0656760", "Lat": "0.0180000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.019226 ], [ 0.063171, 0.019226 ], [ 0.063171, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0180000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.021973 ], [ 0.065918, 0.019226 ], [ 0.063171, 0.019226 ], [ 0.063171, 0.021973 ], [ 0.065918, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656760", "Lat": "0.0162000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.019226 ], [ 0.065918, 0.016479 ], [ 0.063171, 0.016479 ], [ 0.063171, 0.019226 ], [ 0.065918, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0656800", "Lat": "0.0162000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.019226 ], [ 0.065918, 0.016479 ], [ 0.063171, 0.016479 ], [ 0.063171, 0.019226 ], [ 0.065918, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0683030", "Lat": "0.0180000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.021973 ], [ 0.068665, 0.019226 ], [ 0.065918, 0.019226 ], [ 0.065918, 0.021973 ], [ 0.068665, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0683000", "Lat": "0.0180000", "KPI": 412, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.021973 ], [ 0.068665, 0.019226 ], [ 0.065918, 0.019226 ], [ 0.065918, 0.021973 ], [ 0.068665, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0683030", "Lat": "0.0162000", "KPI": 940, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.019226 ], [ 0.068665, 0.016479 ], [ 0.065918, 0.016479 ], [ 0.065918, 0.019226 ], [ 0.068665, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0683000", "Lat": "0.0162000", "KPI": 700, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.019226 ], [ 0.068665, 0.016479 ], [ 0.065918, 0.016479 ], [ 0.065918, 0.019226 ], [ 0.068665, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0656760", "Lat": "0.0126000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.013733 ], [ 0.063171, 0.013733 ], [ 0.063171, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0656800", "Lat": "0.0126000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.016479 ], [ 0.065918, 0.013733 ], [ 0.063171, 0.013733 ], [ 0.063171, 0.016479 ], [ 0.065918, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.013733 ], [ 0.065918, 0.010986 ], [ 0.063171, 0.010986 ], [ 0.063171, 0.013733 ], [ 0.065918, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.013733 ], [ 0.065918, 0.010986 ], [ 0.063171, 0.010986 ], [ 0.063171, 0.013733 ], [ 0.065918, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0683030", "Lat": "0.0126000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.016479 ], [ 0.068665, 0.013733 ], [ 0.065918, 0.013733 ], [ 0.065918, 0.016479 ], [ 0.068665, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0683000", "Lat": "0.0126000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.016479 ], [ 0.068665, 0.013733 ], [ 0.065918, 0.013733 ], [ 0.065918, 0.016479 ], [ 0.068665, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0683030", "Lat": "0.0108000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.013733 ], [ 0.068665, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.013733 ], [ 0.068665, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0683000", "Lat": "0.0108000", "KPI": 638, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.013733 ], [ 0.068665, 0.010986 ], [ 0.065918, 0.010986 ], [ 0.065918, 0.013733 ], [ 0.068665, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0709301", "Lat": "0.0180000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.021973 ], [ 0.071411, 0.019226 ], [ 0.068665, 0.019226 ], [ 0.068665, 0.021973 ], [ 0.071411, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0709300", "Lat": "0.0180000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.021973 ], [ 0.071411, 0.019226 ], [ 0.068665, 0.019226 ], [ 0.068665, 0.021973 ], [ 0.071411, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0162000", "KPI": 990, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.019226 ], [ 0.071411, 0.016479 ], [ 0.068665, 0.016479 ], [ 0.068665, 0.019226 ], [ 0.071411, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709300", "Lat": "0.0162000", "KPI": 737, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.019226 ], [ 0.071411, 0.016479 ], [ 0.068665, 0.016479 ], [ 0.068665, 0.019226 ], [ 0.071411, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0735571", "Lat": "0.0180000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.021973 ], [ 0.074158, 0.019226 ], [ 0.071411, 0.019226 ], [ 0.071411, 0.021973 ], [ 0.074158, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0735600", "Lat": "0.0180000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.021973 ], [ 0.074158, 0.019226 ], [ 0.071411, 0.019226 ], [ 0.071411, 0.021973 ], [ 0.074158, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0735571", "Lat": "0.0162000", "KPI": 608, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.019226 ], [ 0.074158, 0.016479 ], [ 0.071411, 0.016479 ], [ 0.071411, 0.019226 ], [ 0.074158, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0735600", "Lat": "0.0162000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.019226 ], [ 0.074158, 0.016479 ], [ 0.071411, 0.016479 ], [ 0.071411, 0.019226 ], [ 0.074158, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0709301", "Lat": "0.0126000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.013733 ], [ 0.068665, 0.013733 ], [ 0.068665, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0709300", "Lat": "0.0126000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.016479 ], [ 0.071411, 0.013733 ], [ 0.068665, 0.013733 ], [ 0.068665, 0.016479 ], [ 0.071411, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0108000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.013733 ], [ 0.071411, 0.010986 ], [ 0.068665, 0.010986 ], [ 0.068665, 0.013733 ], [ 0.071411, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0709300", "Lat": "0.0108000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.013733 ], [ 0.071411, 0.010986 ], [ 0.068665, 0.010986 ], [ 0.068665, 0.013733 ], [ 0.071411, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0735571", "Lat": "0.0126000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.016479 ], [ 0.074158, 0.013733 ], [ 0.071411, 0.013733 ], [ 0.071411, 0.016479 ], [ 0.074158, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0735600", "Lat": "0.0126000", "KPI": 949, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.016479 ], [ 0.074158, 0.013733 ], [ 0.071411, 0.013733 ], [ 0.071411, 0.016479 ], [ 0.074158, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0735571", "Lat": "0.0108000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.013733 ], [ 0.074158, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.013733 ], [ 0.074158, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735600", "Lat": "0.0108000", "KPI": 630, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.013733 ], [ 0.074158, 0.010986 ], [ 0.071411, 0.010986 ], [ 0.071411, 0.013733 ], [ 0.074158, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0656760", "Lat": "0.0072000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.008240 ], [ 0.063171, 0.008240 ], [ 0.063171, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0656800", "Lat": "0.0072000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.010986 ], [ 0.065918, 0.008240 ], [ 0.063171, 0.008240 ], [ 0.063171, 0.010986 ], [ 0.065918, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.008240 ], [ 0.065918, 0.005493 ], [ 0.063171, 0.005493 ], [ 0.063171, 0.008240 ], [ 0.065918, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.008240 ], [ 0.065918, 0.005493 ], [ 0.063171, 0.005493 ], [ 0.063171, 0.008240 ], [ 0.065918, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0683030", "Lat": "0.0072000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.010986 ], [ 0.068665, 0.008240 ], [ 0.065918, 0.008240 ], [ 0.065918, 0.010986 ], [ 0.068665, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0683000", "Lat": "0.0072000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.010986 ], [ 0.068665, 0.008240 ], [ 0.065918, 0.008240 ], [ 0.065918, 0.010986 ], [ 0.068665, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0683030", "Lat": "0.0054000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.008240 ], [ 0.068665, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.008240 ], [ 0.068665, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0683000", "Lat": "0.0054000", "KPI": 681, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.008240 ], [ 0.068665, 0.005493 ], [ 0.065918, 0.005493 ], [ 0.065918, 0.008240 ], [ 0.068665, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656760", "Lat": "0.0018000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.002747 ], [ 0.063171, 0.002747 ], [ 0.063171, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656800", "Lat": "0.0018000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.005493 ], [ 0.065918, 0.002747 ], [ 0.063171, 0.002747 ], [ 0.063171, 0.005493 ], [ 0.065918, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.002747 ], [ 0.065918, 0.000000 ], [ 0.063171, 0.000000 ], [ 0.063171, 0.002747 ], [ 0.065918, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065918, 0.002747 ], [ 0.065918, 0.000000 ], [ 0.063171, 0.000000 ], [ 0.063171, 0.002747 ], [ 0.065918, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0683030", "Lat": "0.0018000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.005493 ], [ 0.068665, 0.002747 ], [ 0.065918, 0.002747 ], [ 0.065918, 0.005493 ], [ 0.068665, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0683000", "Lat": "0.0018000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.005493 ], [ 0.068665, 0.002747 ], [ 0.065918, 0.002747 ], [ 0.065918, 0.005493 ], [ 0.068665, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0000000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.002747 ], [ 0.068665, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.002747 ], [ 0.068665, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0683000", "Lat": "0.0000000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068665, 0.002747 ], [ 0.068665, 0.000000 ], [ 0.065918, 0.000000 ], [ 0.065918, 0.002747 ], [ 0.068665, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0709301", "Lat": "0.0072000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.008240 ], [ 0.068665, 0.008240 ], [ 0.068665, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0709300", "Lat": "0.0072000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.010986 ], [ 0.071411, 0.008240 ], [ 0.068665, 0.008240 ], [ 0.068665, 0.010986 ], [ 0.071411, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.008240 ], [ 0.071411, 0.005493 ], [ 0.068665, 0.005493 ], [ 0.068665, 0.008240 ], [ 0.071411, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.008240 ], [ 0.071411, 0.005493 ], [ 0.068665, 0.005493 ], [ 0.068665, 0.008240 ], [ 0.071411, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735571", "Lat": "0.0072000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.010986 ], [ 0.074158, 0.008240 ], [ 0.071411, 0.008240 ], [ 0.071411, 0.010986 ], [ 0.074158, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0735600", "Lat": "0.0072000", "KPI": 217, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.010986 ], [ 0.074158, 0.008240 ], [ 0.071411, 0.008240 ], [ 0.071411, 0.010986 ], [ 0.074158, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0735571", "Lat": "0.0054000", "KPI": 859, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.008240 ], [ 0.074158, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.008240 ], [ 0.074158, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0735600", "Lat": "0.0054000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.008240 ], [ 0.074158, 0.005493 ], [ 0.071411, 0.005493 ], [ 0.071411, 0.008240 ], [ 0.074158, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0709301", "Lat": "0.0018000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.002747 ], [ 0.068665, 0.002747 ], [ 0.068665, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0709300", "Lat": "0.0018000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.005493 ], [ 0.071411, 0.002747 ], [ 0.068665, 0.002747 ], [ 0.068665, 0.005493 ], [ 0.071411, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.002747 ], [ 0.071411, 0.000000 ], [ 0.068665, 0.000000 ], [ 0.068665, 0.002747 ], [ 0.071411, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.071411, 0.002747 ], [ 0.071411, 0.000000 ], [ 0.068665, 0.000000 ], [ 0.068665, 0.002747 ], [ 0.071411, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0735571", "Lat": "0.0018000", "KPI": 931, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.005493 ], [ 0.074158, 0.002747 ], [ 0.071411, 0.002747 ], [ 0.071411, 0.005493 ], [ 0.074158, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0735600", "Lat": "0.0018000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.005493 ], [ 0.074158, 0.002747 ], [ 0.071411, 0.002747 ], [ 0.071411, 0.005493 ], [ 0.074158, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0000000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.002747 ], [ 0.074158, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.002747 ], [ 0.074158, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0735600", "Lat": "0.0000000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.074158, 0.002747 ], [ 0.074158, 0.000000 ], [ 0.071411, 0.000000 ], [ 0.071411, 0.002747 ], [ 0.074158, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0761842", "Lat": "0.0180000", "KPI": 621, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.019226 ], [ 0.074158, 0.019226 ], [ 0.074158, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761800", "Lat": "0.0180000", "KPI": 819, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.021973 ], [ 0.076904, 0.019226 ], [ 0.074158, 0.019226 ], [ 0.074158, 0.021973 ], [ 0.076904, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0761842", "Lat": "0.0162000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.019226 ], [ 0.076904, 0.016479 ], [ 0.074158, 0.016479 ], [ 0.074158, 0.019226 ], [ 0.076904, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761800", "Lat": "0.0162000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.019226 ], [ 0.076904, 0.016479 ], [ 0.074158, 0.016479 ], [ 0.074158, 0.019226 ], [ 0.076904, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0788112", "Lat": "0.0180000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.021973 ], [ 0.079651, 0.019226 ], [ 0.076904, 0.019226 ], [ 0.076904, 0.021973 ], [ 0.079651, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0180000", "KPI": 663, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.021973 ], [ 0.079651, 0.019226 ], [ 0.076904, 0.019226 ], [ 0.076904, 0.021973 ], [ 0.079651, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0788112", "Lat": "0.0162000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.019226 ], [ 0.079651, 0.016479 ], [ 0.076904, 0.016479 ], [ 0.076904, 0.019226 ], [ 0.079651, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0788100", "Lat": "0.0162000", "KPI": 709, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.019226 ], [ 0.079651, 0.016479 ], [ 0.076904, 0.016479 ], [ 0.076904, 0.019226 ], [ 0.079651, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0761842", "Lat": "0.0126000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.013733 ], [ 0.074158, 0.013733 ], [ 0.074158, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0761800", "Lat": "0.0126000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.016479 ], [ 0.076904, 0.013733 ], [ 0.074158, 0.013733 ], [ 0.074158, 0.016479 ], [ 0.076904, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.013733 ], [ 0.076904, 0.010986 ], [ 0.074158, 0.010986 ], [ 0.074158, 0.013733 ], [ 0.076904, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.013733 ], [ 0.076904, 0.010986 ], [ 0.074158, 0.010986 ], [ 0.074158, 0.013733 ], [ 0.076904, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0788112", "Lat": "0.0126000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.016479 ], [ 0.079651, 0.013733 ], [ 0.076904, 0.013733 ], [ 0.076904, 0.016479 ], [ 0.079651, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0788100", "Lat": "0.0126000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.016479 ], [ 0.079651, 0.013733 ], [ 0.076904, 0.013733 ], [ 0.076904, 0.016479 ], [ 0.079651, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0788112", "Lat": "0.0108000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.013733 ], [ 0.079651, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.013733 ], [ 0.079651, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0788100", "Lat": "0.0108000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.013733 ], [ 0.079651, 0.010986 ], [ 0.076904, 0.010986 ], [ 0.076904, 0.013733 ], [ 0.079651, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0814382", "Lat": "0.0180000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.021973 ], [ 0.082397, 0.019226 ], [ 0.079651, 0.019226 ], [ 0.079651, 0.021973 ], [ 0.082397, 0.021973 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0814400", "Lat": "0.0180000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.021973 ], [ 0.082397, 0.019226 ], [ 0.079651, 0.019226 ], [ 0.079651, 0.021973 ], [ 0.082397, 0.021973 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0162000", "KPI": 59, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.019226 ], [ 0.082397, 0.016479 ], [ 0.079651, 0.016479 ], [ 0.079651, 0.019226 ], [ 0.082397, 0.019226 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0814400", "Lat": "0.0162000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.019226 ], [ 0.082397, 0.016479 ], [ 0.079651, 0.016479 ], [ 0.079651, 0.019226 ], [ 0.082397, 0.019226 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0814382", "Lat": "0.0126000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.013733 ], [ 0.079651, 0.013733 ], [ 0.079651, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0814400", "Lat": "0.0126000", "KPI": 299, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.016479 ], [ 0.082397, 0.013733 ], [ 0.079651, 0.013733 ], [ 0.079651, 0.016479 ], [ 0.082397, 0.016479 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0814382", "Lat": "0.0108000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.013733 ], [ 0.082397, 0.010986 ], [ 0.079651, 0.010986 ], [ 0.079651, 0.013733 ], [ 0.082397, 0.013733 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0814400", "Lat": "0.0108000", "KPI": 98, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.013733 ], [ 0.082397, 0.010986 ], [ 0.079651, 0.010986 ], [ 0.079651, 0.013733 ], [ 0.082397, 0.013733 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0761842", "Lat": "0.0072000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.008240 ], [ 0.074158, 0.008240 ], [ 0.074158, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761800", "Lat": "0.0072000", "KPI": 302, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.010986 ], [ 0.076904, 0.008240 ], [ 0.074158, 0.008240 ], [ 0.074158, 0.010986 ], [ 0.076904, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.008240 ], [ 0.076904, 0.005493 ], [ 0.074158, 0.005493 ], [ 0.074158, 0.008240 ], [ 0.076904, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.008240 ], [ 0.076904, 0.005493 ], [ 0.074158, 0.005493 ], [ 0.074158, 0.008240 ], [ 0.076904, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0788112", "Lat": "0.0072000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.010986 ], [ 0.079651, 0.008240 ], [ 0.076904, 0.008240 ], [ 0.076904, 0.010986 ], [ 0.079651, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0788100", "Lat": "0.0072000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.010986 ], [ 0.079651, 0.008240 ], [ 0.076904, 0.008240 ], [ 0.076904, 0.010986 ], [ 0.079651, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0788112", "Lat": "0.0054000", "KPI": 175, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.008240 ], [ 0.079651, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.008240 ], [ 0.079651, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0788100", "Lat": "0.0054000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.008240 ], [ 0.079651, 0.005493 ], [ 0.076904, 0.005493 ], [ 0.076904, 0.008240 ], [ 0.079651, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761842", "Lat": "0.0018000", "KPI": 458, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.002747 ], [ 0.074158, 0.002747 ], [ 0.074158, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761800", "Lat": "0.0018000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.005493 ], [ 0.076904, 0.002747 ], [ 0.074158, 0.002747 ], [ 0.074158, 0.005493 ], [ 0.076904, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.002747 ], [ 0.076904, 0.000000 ], [ 0.074158, 0.000000 ], [ 0.074158, 0.002747 ], [ 0.076904, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076904, 0.002747 ], [ 0.076904, 0.000000 ], [ 0.074158, 0.000000 ], [ 0.074158, 0.002747 ], [ 0.076904, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0788112", "Lat": "0.0018000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.005493 ], [ 0.079651, 0.002747 ], [ 0.076904, 0.002747 ], [ 0.076904, 0.005493 ], [ 0.079651, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0788100", "Lat": "0.0018000", "KPI": 886, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.005493 ], [ 0.079651, 0.002747 ], [ 0.076904, 0.002747 ], [ 0.076904, 0.005493 ], [ 0.079651, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0000000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.002747 ], [ 0.079651, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.002747 ], [ 0.079651, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0788100", "Lat": "0.0000000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.079651, 0.002747 ], [ 0.079651, 0.000000 ], [ 0.076904, 0.000000 ], [ 0.076904, 0.002747 ], [ 0.079651, 0.002747 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0814382", "Lat": "0.0072000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.008240 ], [ 0.079651, 0.008240 ], [ 0.079651, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0814400", "Lat": "0.0072000", "KPI": 502, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.010986 ], [ 0.082397, 0.008240 ], [ 0.079651, 0.008240 ], [ 0.079651, 0.010986 ], [ 0.082397, 0.010986 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.008240 ], [ 0.082397, 0.005493 ], [ 0.079651, 0.005493 ], [ 0.079651, 0.008240 ], [ 0.082397, 0.008240 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.008240 ], [ 0.082397, 0.005493 ], [ 0.079651, 0.005493 ], [ 0.079651, 0.008240 ], [ 0.082397, 0.008240 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0018000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.002747 ], [ 0.079651, 0.002747 ], [ 0.079651, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0018000", "KPI": 505, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.005493 ], [ 0.082397, 0.002747 ], [ 0.079651, 0.002747 ], [ 0.079651, 0.005493 ], [ 0.082397, 0.005493 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.002747 ], [ 0.082397, 0.000000 ], [ 0.079651, 0.000000 ], [ 0.079651, 0.002747 ], [ 0.082397, 0.002747 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.082397, 0.002747 ], [ 0.082397, 0.000000 ], [ 0.079651, 0.000000 ], [ 0.079651, 0.002747 ], [ 0.082397, 0.002747 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1023, "y": 1024 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 853, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003433 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003433 ], [ 0.002618, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003433 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003433 ], [ 0.002618, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.003433 ], [ 0.003433, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003433 ], [ 0.003433, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.003433 ], [ 0.003433, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003433 ], [ 0.003433, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.001802 ], [ 0.003433, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.003433, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.001802 ], [ 0.003433, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.003433, 0.001802 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1023, "y": 1023 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0000000", "Lat": "0.0558000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.057592 ], [ 0.002618, 0.055790 ], [ 0.000000, 0.055790 ], [ 0.000000, 0.057592 ], [ 0.002618, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0558000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.057592 ], [ 0.002618, 0.055790 ], [ 0.000000, 0.055790 ], [ 0.000000, 0.057592 ], [ 0.002618, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0558000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.057592 ], [ 0.003433, 0.055790 ], [ 0.002618, 0.055790 ], [ 0.002618, 0.057592 ], [ 0.003433, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0026300", "Lat": "0.0558000", "KPI": 236, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.057592 ], [ 0.003433, 0.055790 ], [ 0.002618, 0.055790 ], [ 0.002618, 0.057592 ], [ 0.003433, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0540000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.055790 ], [ 0.002618, 0.053987 ], [ 0.000000, 0.053987 ], [ 0.000000, 0.055790 ], [ 0.002618, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0000000", "Lat": "0.0540000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.055790 ], [ 0.002618, 0.053987 ], [ 0.000000, 0.053987 ], [ 0.000000, 0.055790 ], [ 0.002618, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0000000", "Lat": "0.0522000", "KPI": 40, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.053987 ], [ 0.002618, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.053987 ], [ 0.002618, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0000000", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.053987 ], [ 0.002618, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.053987 ], [ 0.002618, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0504000", "KPI": 692, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.052185 ], [ 0.002618, 0.050383 ], [ 0.000000, 0.050383 ], [ 0.000000, 0.052185 ], [ 0.002618, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0000000", "Lat": "0.0504000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.052185 ], [ 0.002618, 0.050383 ], [ 0.000000, 0.050383 ], [ 0.000000, 0.052185 ], [ 0.002618, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0000000", "Lat": "0.0486000", "KPI": 953, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.050383 ], [ 0.002618, 0.048580 ], [ 0.000000, 0.048580 ], [ 0.000000, 0.050383 ], [ 0.002618, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0000000", "Lat": "0.0486000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.050383 ], [ 0.002618, 0.048580 ], [ 0.000000, 0.048580 ], [ 0.000000, 0.050383 ], [ 0.002618, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0026270", "Lat": "0.0540000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.055790 ], [ 0.003433, 0.053987 ], [ 0.002618, 0.053987 ], [ 0.002618, 0.055790 ], [ 0.003433, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0026300", "Lat": "0.0540000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.055790 ], [ 0.003433, 0.053987 ], [ 0.002618, 0.053987 ], [ 0.002618, 0.055790 ], [ 0.003433, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0026270", "Lat": "0.0522000", "KPI": 116, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.053987 ], [ 0.003433, 0.052185 ], [ 0.002618, 0.052185 ], [ 0.002618, 0.053987 ], [ 0.003433, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026300", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.053987 ], [ 0.003433, 0.052185 ], [ 0.002618, 0.052185 ], [ 0.002618, 0.053987 ], [ 0.003433, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0026270", "Lat": "0.0504000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.052185 ], [ 0.003433, 0.050383 ], [ 0.002618, 0.050383 ], [ 0.002618, 0.052185 ], [ 0.003433, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0026300", "Lat": "0.0504000", "KPI": 364, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.052185 ], [ 0.003433, 0.050383 ], [ 0.002618, 0.050383 ], [ 0.002618, 0.052185 ], [ 0.003433, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0026270", "Lat": "0.0486000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.050383 ], [ 0.003433, 0.048580 ], [ 0.002618, 0.048580 ], [ 0.002618, 0.050383 ], [ 0.003433, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0026300", "Lat": "0.0486000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.050383 ], [ 0.003433, 0.048580 ], [ 0.002618, 0.048580 ], [ 0.002618, 0.050383 ], [ 0.003433, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0468000", "KPI": 548, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.048580 ], [ 0.002618, 0.046821 ], [ 0.000000, 0.046821 ], [ 0.000000, 0.048580 ], [ 0.002618, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0000000", "Lat": "0.0468000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.048580 ], [ 0.002618, 0.046821 ], [ 0.000000, 0.046821 ], [ 0.000000, 0.048580 ], [ 0.002618, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0000000", "Lat": "0.0450000", "KPI": 310, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.046821 ], [ 0.002618, 0.045018 ], [ 0.000000, 0.045018 ], [ 0.000000, 0.046821 ], [ 0.002618, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0000000", "Lat": "0.0450000", "KPI": 408, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.046821 ], [ 0.002618, 0.045018 ], [ 0.000000, 0.045018 ], [ 0.000000, 0.046821 ], [ 0.002618, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0000000", "Lat": "0.0432000", "KPI": 405, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.045018 ], [ 0.002618, 0.043216 ], [ 0.000000, 0.043216 ], [ 0.000000, 0.045018 ], [ 0.002618, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0000000", "Lat": "0.0432000", "KPI": 317, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.045018 ], [ 0.002618, 0.043216 ], [ 0.000000, 0.043216 ], [ 0.000000, 0.045018 ], [ 0.002618, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0026270", "Lat": "0.0468000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.048580 ], [ 0.003433, 0.046821 ], [ 0.002618, 0.046821 ], [ 0.002618, 0.048580 ], [ 0.003433, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0468000", "KPI": 182, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.048580 ], [ 0.003433, 0.046821 ], [ 0.002618, 0.046821 ], [ 0.002618, 0.048580 ], [ 0.003433, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0450000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.046821 ], [ 0.003433, 0.045018 ], [ 0.002618, 0.045018 ], [ 0.002618, 0.046821 ], [ 0.003433, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0026300", "Lat": "0.0450000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.046821 ], [ 0.003433, 0.045018 ], [ 0.002618, 0.045018 ], [ 0.002618, 0.046821 ], [ 0.003433, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0432000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.045018 ], [ 0.003433, 0.043216 ], [ 0.002618, 0.043216 ], [ 0.002618, 0.045018 ], [ 0.003433, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0026300", "Lat": "0.0432000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.045018 ], [ 0.003433, 0.043216 ], [ 0.002618, 0.043216 ], [ 0.002618, 0.045018 ], [ 0.003433, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0000000", "Lat": "0.0414000", "KPI": 88, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.043216 ], [ 0.002618, 0.041413 ], [ 0.000000, 0.041413 ], [ 0.000000, 0.043216 ], [ 0.002618, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0414000", "KPI": 278, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.043216 ], [ 0.002618, 0.041413 ], [ 0.000000, 0.041413 ], [ 0.000000, 0.043216 ], [ 0.002618, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0000000", "Lat": "0.0396000", "KPI": 441, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.041413 ], [ 0.002618, 0.039611 ], [ 0.000000, 0.039611 ], [ 0.000000, 0.041413 ], [ 0.002618, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0000000", "Lat": "0.0396000", "KPI": 735, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.041413 ], [ 0.002618, 0.039611 ], [ 0.000000, 0.039611 ], [ 0.000000, 0.041413 ], [ 0.002618, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0378000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.039611 ], [ 0.002618, 0.037808 ], [ 0.000000, 0.037808 ], [ 0.000000, 0.039611 ], [ 0.002618, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0000000", "Lat": "0.0378000", "KPI": 526, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.039611 ], [ 0.002618, 0.037808 ], [ 0.000000, 0.037808 ], [ 0.000000, 0.039611 ], [ 0.002618, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0026270", "Lat": "0.0414000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.043216 ], [ 0.003433, 0.041413 ], [ 0.002618, 0.041413 ], [ 0.002618, 0.043216 ], [ 0.003433, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0414000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.043216 ], [ 0.003433, 0.041413 ], [ 0.002618, 0.041413 ], [ 0.002618, 0.043216 ], [ 0.003433, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0026270", "Lat": "0.0396000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.041413 ], [ 0.003433, 0.039611 ], [ 0.002618, 0.039611 ], [ 0.002618, 0.041413 ], [ 0.003433, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0026300", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.041413 ], [ 0.003433, 0.039611 ], [ 0.002618, 0.039611 ], [ 0.002618, 0.041413 ], [ 0.003433, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0378000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.039611 ], [ 0.003433, 0.037808 ], [ 0.002618, 0.037808 ], [ 0.002618, 0.039611 ], [ 0.003433, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0378000", "KPI": 611, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.039611 ], [ 0.003433, 0.037808 ], [ 0.002618, 0.037808 ], [ 0.002618, 0.039611 ], [ 0.003433, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0000000", "Lat": "0.0360000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.037808 ], [ 0.002618, 0.036006 ], [ 0.000000, 0.036006 ], [ 0.000000, 0.037808 ], [ 0.002618, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0000000", "Lat": "0.0360000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.037808 ], [ 0.002618, 0.036006 ], [ 0.000000, 0.036006 ], [ 0.000000, 0.037808 ], [ 0.002618, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0000000", "Lat": "0.0342000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.036006 ], [ 0.002618, 0.034204 ], [ 0.000000, 0.034204 ], [ 0.000000, 0.036006 ], [ 0.002618, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0000000", "Lat": "0.0342000", "KPI": 13, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.036006 ], [ 0.002618, 0.034204 ], [ 0.000000, 0.034204 ], [ 0.000000, 0.036006 ], [ 0.002618, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0000000", "Lat": "0.0324000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.034204 ], [ 0.002618, 0.032401 ], [ 0.000000, 0.032401 ], [ 0.000000, 0.034204 ], [ 0.002618, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0324000", "KPI": 229, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.034204 ], [ 0.002618, 0.032401 ], [ 0.000000, 0.032401 ], [ 0.000000, 0.034204 ], [ 0.002618, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0026270", "Lat": "0.0360000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.037808 ], [ 0.003433, 0.036006 ], [ 0.002618, 0.036006 ], [ 0.002618, 0.037808 ], [ 0.003433, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0026300", "Lat": "0.0360000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.037808 ], [ 0.003433, 0.036006 ], [ 0.002618, 0.036006 ], [ 0.002618, 0.037808 ], [ 0.003433, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0342000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.036006 ], [ 0.003433, 0.034204 ], [ 0.002618, 0.034204 ], [ 0.002618, 0.036006 ], [ 0.003433, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0026300", "Lat": "0.0342000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.036006 ], [ 0.003433, 0.034204 ], [ 0.002618, 0.034204 ], [ 0.002618, 0.036006 ], [ 0.003433, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0324000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.034204 ], [ 0.003433, 0.032401 ], [ 0.002618, 0.032401 ], [ 0.002618, 0.034204 ], [ 0.003433, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0026300", "Lat": "0.0324000", "KPI": 769, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.034204 ], [ 0.003433, 0.032401 ], [ 0.002618, 0.032401 ], [ 0.002618, 0.034204 ], [ 0.003433, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0000000", "Lat": "0.0306000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.032401 ], [ 0.002618, 0.030599 ], [ 0.000000, 0.030599 ], [ 0.000000, 0.032401 ], [ 0.002618, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0000000", "Lat": "0.0306000", "KPI": 422, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.032401 ], [ 0.002618, 0.030599 ], [ 0.000000, 0.030599 ], [ 0.000000, 0.032401 ], [ 0.002618, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0000000", "Lat": "0.0288000", "KPI": 520, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.030599 ], [ 0.002618, 0.028796 ], [ 0.000000, 0.028796 ], [ 0.000000, 0.030599 ], [ 0.002618, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0000000", "Lat": "0.0288000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.030599 ], [ 0.002618, 0.028796 ], [ 0.000000, 0.028796 ], [ 0.000000, 0.030599 ], [ 0.002618, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0000000", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.028796 ], [ 0.002618, 0.026994 ], [ 0.000000, 0.026994 ], [ 0.000000, 0.028796 ], [ 0.002618, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0000000", "Lat": "0.0270000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.028796 ], [ 0.002618, 0.026994 ], [ 0.000000, 0.026994 ], [ 0.000000, 0.028796 ], [ 0.002618, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0026270", "Lat": "0.0306000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.032401 ], [ 0.003433, 0.030599 ], [ 0.002618, 0.030599 ], [ 0.002618, 0.032401 ], [ 0.003433, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0026300", "Lat": "0.0306000", "KPI": 537, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.032401 ], [ 0.003433, 0.030599 ], [ 0.002618, 0.030599 ], [ 0.002618, 0.032401 ], [ 0.003433, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026270", "Lat": "0.0288000", "KPI": 675, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.030599 ], [ 0.003433, 0.028796 ], [ 0.002618, 0.028796 ], [ 0.002618, 0.030599 ], [ 0.003433, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0026300", "Lat": "0.0288000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.030599 ], [ 0.003433, 0.028796 ], [ 0.002618, 0.028796 ], [ 0.002618, 0.030599 ], [ 0.003433, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0270000", "KPI": 943, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.028796 ], [ 0.003433, 0.026994 ], [ 0.002618, 0.026994 ], [ 0.002618, 0.028796 ], [ 0.003433, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0270000", "KPI": 888, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.028796 ], [ 0.003433, 0.026994 ], [ 0.002618, 0.026994 ], [ 0.002618, 0.028796 ], [ 0.003433, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0000000", "Lat": "0.0252000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.026994 ], [ 0.002618, 0.025191 ], [ 0.000000, 0.025191 ], [ 0.000000, 0.026994 ], [ 0.002618, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0000000", "Lat": "0.0252000", "KPI": 193, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.026994 ], [ 0.002618, 0.025191 ], [ 0.000000, 0.025191 ], [ 0.000000, 0.026994 ], [ 0.002618, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0000000", "Lat": "0.0234000", "KPI": 32, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.025191 ], [ 0.002618, 0.023389 ], [ 0.000000, 0.023389 ], [ 0.000000, 0.025191 ], [ 0.002618, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0000000", "Lat": "0.0234000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.025191 ], [ 0.002618, 0.023389 ], [ 0.000000, 0.023389 ], [ 0.000000, 0.025191 ], [ 0.002618, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0000000", "Lat": "0.0216000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.023389 ], [ 0.002618, 0.021586 ], [ 0.000000, 0.021586 ], [ 0.000000, 0.023389 ], [ 0.002618, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0000000", "Lat": "0.0216000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.023389 ], [ 0.002618, 0.021586 ], [ 0.000000, 0.021586 ], [ 0.000000, 0.023389 ], [ 0.002618, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0026270", "Lat": "0.0252000", "KPI": 445, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.026994 ], [ 0.003433, 0.025191 ], [ 0.002618, 0.025191 ], [ 0.002618, 0.026994 ], [ 0.003433, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0026300", "Lat": "0.0252000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.026994 ], [ 0.003433, 0.025191 ], [ 0.002618, 0.025191 ], [ 0.002618, 0.026994 ], [ 0.003433, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0026270", "Lat": "0.0234000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.025191 ], [ 0.003433, 0.023389 ], [ 0.002618, 0.023389 ], [ 0.002618, 0.025191 ], [ 0.003433, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026300", "Lat": "0.0234000", "KPI": 221, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.025191 ], [ 0.003433, 0.023389 ], [ 0.002618, 0.023389 ], [ 0.002618, 0.025191 ], [ 0.003433, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0216000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.023389 ], [ 0.003433, 0.021586 ], [ 0.002618, 0.021586 ], [ 0.002618, 0.023389 ], [ 0.003433, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0026300", "Lat": "0.0216000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.023389 ], [ 0.003433, 0.021586 ], [ 0.002618, 0.021586 ], [ 0.002618, 0.023389 ], [ 0.003433, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0000000", "Lat": "0.0198000", "KPI": 628, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.021586 ], [ 0.002618, 0.019784 ], [ 0.000000, 0.019784 ], [ 0.000000, 0.021586 ], [ 0.002618, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0000000", "Lat": "0.0198000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.021586 ], [ 0.002618, 0.019784 ], [ 0.000000, 0.019784 ], [ 0.000000, 0.021586 ], [ 0.002618, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0180000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.019784 ], [ 0.002618, 0.017982 ], [ 0.000000, 0.017982 ], [ 0.000000, 0.019784 ], [ 0.002618, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0000000", "Lat": "0.0180000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.019784 ], [ 0.002618, 0.017982 ], [ 0.000000, 0.017982 ], [ 0.000000, 0.019784 ], [ 0.002618, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0000000", "Lat": "0.0162000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.017982 ], [ 0.002618, 0.016179 ], [ 0.000000, 0.016179 ], [ 0.000000, 0.017982 ], [ 0.002618, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0000000", "Lat": "0.0162000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.017982 ], [ 0.002618, 0.016179 ], [ 0.000000, 0.016179 ], [ 0.000000, 0.017982 ], [ 0.002618, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0026270", "Lat": "0.0198000", "KPI": 839, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.021586 ], [ 0.003433, 0.019784 ], [ 0.002618, 0.019784 ], [ 0.002618, 0.021586 ], [ 0.003433, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0026300", "Lat": "0.0198000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.021586 ], [ 0.003433, 0.019784 ], [ 0.002618, 0.019784 ], [ 0.002618, 0.021586 ], [ 0.003433, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0026270", "Lat": "0.0180000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.019784 ], [ 0.003433, 0.017982 ], [ 0.002618, 0.017982 ], [ 0.002618, 0.019784 ], [ 0.003433, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0026300", "Lat": "0.0180000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.019784 ], [ 0.003433, 0.017982 ], [ 0.002618, 0.017982 ], [ 0.002618, 0.019784 ], [ 0.003433, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0162000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.017982 ], [ 0.003433, 0.016179 ], [ 0.002618, 0.016179 ], [ 0.002618, 0.017982 ], [ 0.003433, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0026300", "Lat": "0.0162000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.017982 ], [ 0.003433, 0.016179 ], [ 0.002618, 0.016179 ], [ 0.002618, 0.017982 ], [ 0.003433, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0000000", "Lat": "0.0144000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.016179 ], [ 0.002618, 0.014420 ], [ 0.000000, 0.014420 ], [ 0.000000, 0.016179 ], [ 0.002618, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0000000", "Lat": "0.0144000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.016179 ], [ 0.002618, 0.014420 ], [ 0.000000, 0.014420 ], [ 0.000000, 0.016179 ], [ 0.002618, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0126000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.014420 ], [ 0.002618, 0.012617 ], [ 0.000000, 0.012617 ], [ 0.000000, 0.014420 ], [ 0.002618, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0000000", "Lat": "0.0126000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.014420 ], [ 0.002618, 0.012617 ], [ 0.000000, 0.012617 ], [ 0.000000, 0.014420 ], [ 0.002618, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0000000", "Lat": "0.0108000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.012617 ], [ 0.002618, 0.010815 ], [ 0.000000, 0.010815 ], [ 0.000000, 0.012617 ], [ 0.002618, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0000000", "Lat": "0.0108000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.012617 ], [ 0.002618, 0.010815 ], [ 0.000000, 0.010815 ], [ 0.000000, 0.012617 ], [ 0.002618, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0026270", "Lat": "0.0144000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.016179 ], [ 0.003433, 0.014420 ], [ 0.002618, 0.014420 ], [ 0.002618, 0.016179 ], [ 0.003433, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0026300", "Lat": "0.0144000", "KPI": 861, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.016179 ], [ 0.003433, 0.014420 ], [ 0.002618, 0.014420 ], [ 0.002618, 0.016179 ], [ 0.003433, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0126000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.014420 ], [ 0.003433, 0.012617 ], [ 0.002618, 0.012617 ], [ 0.002618, 0.014420 ], [ 0.003433, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0026300", "Lat": "0.0126000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.014420 ], [ 0.003433, 0.012617 ], [ 0.002618, 0.012617 ], [ 0.002618, 0.014420 ], [ 0.003433, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0108000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.012617 ], [ 0.003433, 0.010815 ], [ 0.002618, 0.010815 ], [ 0.002618, 0.012617 ], [ 0.003433, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0026300", "Lat": "0.0108000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.012617 ], [ 0.003433, 0.010815 ], [ 0.002618, 0.010815 ], [ 0.002618, 0.012617 ], [ 0.003433, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0090000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.010815 ], [ 0.002618, 0.009012 ], [ 0.000000, 0.009012 ], [ 0.000000, 0.010815 ], [ 0.002618, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0000000", "Lat": "0.0090000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.010815 ], [ 0.002618, 0.009012 ], [ 0.000000, 0.009012 ], [ 0.000000, 0.010815 ], [ 0.002618, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0000000", "Lat": "0.0072000", "KPI": 561, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.009012 ], [ 0.002618, 0.007210 ], [ 0.000000, 0.007210 ], [ 0.000000, 0.009012 ], [ 0.002618, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0000000", "Lat": "0.0072000", "KPI": 125, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.009012 ], [ 0.002618, 0.007210 ], [ 0.000000, 0.007210 ], [ 0.000000, 0.009012 ], [ 0.002618, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0054000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.007210 ], [ 0.002618, 0.005407 ], [ 0.000000, 0.005407 ], [ 0.000000, 0.007210 ], [ 0.002618, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0000000", "Lat": "0.0054000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.007210 ], [ 0.002618, 0.005407 ], [ 0.000000, 0.005407 ], [ 0.000000, 0.007210 ], [ 0.002618, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0026270", "Lat": "0.0090000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.010815 ], [ 0.003433, 0.009012 ], [ 0.002618, 0.009012 ], [ 0.002618, 0.010815 ], [ 0.003433, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0026300", "Lat": "0.0090000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.010815 ], [ 0.003433, 0.009012 ], [ 0.002618, 0.009012 ], [ 0.002618, 0.010815 ], [ 0.003433, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026270", "Lat": "0.0072000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.009012 ], [ 0.003433, 0.007210 ], [ 0.002618, 0.007210 ], [ 0.002618, 0.009012 ], [ 0.003433, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0072000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.009012 ], [ 0.003433, 0.007210 ], [ 0.002618, 0.007210 ], [ 0.002618, 0.009012 ], [ 0.003433, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.007210 ], [ 0.003433, 0.005407 ], [ 0.002618, 0.005407 ], [ 0.002618, 0.007210 ], [ 0.003433, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.007210 ], [ 0.003433, 0.005407 ], [ 0.002618, 0.005407 ], [ 0.002618, 0.007210 ], [ 0.003433, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0000000", "Lat": "0.0036000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.005407 ], [ 0.002618, 0.003605 ], [ 0.000000, 0.003605 ], [ 0.000000, 0.005407 ], [ 0.002618, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0000000", "Lat": "0.0036000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.005407 ], [ 0.002618, 0.003605 ], [ 0.000000, 0.003605 ], [ 0.000000, 0.005407 ], [ 0.002618, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 853, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003605 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003605 ], [ 0.002618, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003605 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003605 ], [ 0.002618, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0026270", "Lat": "0.0036000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.005407 ], [ 0.003433, 0.003605 ], [ 0.002618, 0.003605 ], [ 0.002618, 0.005407 ], [ 0.003433, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0026300", "Lat": "0.0036000", "KPI": 827, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.005407 ], [ 0.003433, 0.003605 ], [ 0.002618, 0.003605 ], [ 0.002618, 0.005407 ], [ 0.003433, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.003605 ], [ 0.003433, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003605 ], [ 0.003433, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.003605 ], [ 0.003433, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003605 ], [ 0.003433, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.001802 ], [ 0.003433, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.003433, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.003433, 0.001802 ], [ 0.003433, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.003433, 0.001802 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 1024 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 853, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003433 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003433 ], [ 0.002618, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003433 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003433 ], [ 0.002618, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.003433 ], [ 0.005236, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003433 ], [ 0.005236, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.003433 ], [ 0.005279, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003433 ], [ 0.005279, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.001802 ], [ 0.005236, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.005236, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.001802 ], [ 0.005279, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.005279, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.003433 ], [ 0.007896, 0.001802 ], [ 0.005236, 0.001802 ], [ 0.005236, 0.003433 ], [ 0.007896, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.003433 ], [ 0.007896, 0.001802 ], [ 0.005236, 0.001802 ], [ 0.005236, 0.003433 ], [ 0.007896, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.001802 ], [ 0.007896, 0.000000 ], [ 0.005236, 0.000000 ], [ 0.005236, 0.001802 ], [ 0.007896, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.001802 ], [ 0.007896, 0.000000 ], [ 0.005236, 0.000000 ], [ 0.005236, 0.001802 ], [ 0.007896, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0078811", "Lat": "0.0018000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.003433 ], [ 0.010514, 0.001802 ], [ 0.007896, 0.001802 ], [ 0.007896, 0.003433 ], [ 0.010514, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0078800", "Lat": "0.0018000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.003433 ], [ 0.010514, 0.001802 ], [ 0.007896, 0.001802 ], [ 0.007896, 0.003433 ], [ 0.010514, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0078811", "Lat": "0.0000000", "KPI": 698, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.001802 ], [ 0.010514, 0.000000 ], [ 0.007896, 0.000000 ], [ 0.007896, 0.001802 ], [ 0.010514, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0078800", "Lat": "0.0000000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.001802 ], [ 0.010514, 0.000000 ], [ 0.007896, 0.000000 ], [ 0.007896, 0.001802 ], [ 0.010514, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105082", "Lat": "0.0018000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.003433 ], [ 0.013132, 0.001802 ], [ 0.010514, 0.001802 ], [ 0.010514, 0.003433 ], [ 0.013132, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105100", "Lat": "0.0018000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.003433 ], [ 0.013132, 0.001802 ], [ 0.010514, 0.001802 ], [ 0.010514, 0.003433 ], [ 0.013132, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.001802 ], [ 0.013132, 0.000000 ], [ 0.010514, 0.000000 ], [ 0.010514, 0.001802 ], [ 0.013132, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.001802 ], [ 0.013132, 0.000000 ], [ 0.010514, 0.000000 ], [ 0.010514, 0.001802 ], [ 0.013132, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131352", "Lat": "0.0018000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.003433 ], [ 0.015750, 0.001802 ], [ 0.013132, 0.001802 ], [ 0.013132, 0.003433 ], [ 0.015750, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131400", "Lat": "0.0018000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.003433 ], [ 0.015750, 0.001802 ], [ 0.013132, 0.001802 ], [ 0.013132, 0.003433 ], [ 0.015750, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131352", "Lat": "0.0000000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.001802 ], [ 0.015750, 0.000000 ], [ 0.013132, 0.000000 ], [ 0.013132, 0.001802 ], [ 0.015750, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0000000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.001802 ], [ 0.015750, 0.000000 ], [ 0.013132, 0.000000 ], [ 0.013132, 0.001802 ], [ 0.015750, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157622", "Lat": "0.0018000", "KPI": 932, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.003433 ], [ 0.018411, 0.001802 ], [ 0.015750, 0.001802 ], [ 0.015750, 0.003433 ], [ 0.018411, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0157600", "Lat": "0.0018000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.003433 ], [ 0.018411, 0.001802 ], [ 0.015750, 0.001802 ], [ 0.015750, 0.003433 ], [ 0.018411, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.001802 ], [ 0.018411, 0.000000 ], [ 0.015750, 0.000000 ], [ 0.015750, 0.001802 ], [ 0.018411, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.001802 ], [ 0.018411, 0.000000 ], [ 0.015750, 0.000000 ], [ 0.015750, 0.001802 ], [ 0.018411, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0018000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.003433 ], [ 0.021029, 0.001802 ], [ 0.018411, 0.001802 ], [ 0.018411, 0.003433 ], [ 0.021029, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0183900", "Lat": "0.0018000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.003433 ], [ 0.021029, 0.001802 ], [ 0.018411, 0.001802 ], [ 0.018411, 0.003433 ], [ 0.021029, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183893", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.001802 ], [ 0.021029, 0.000000 ], [ 0.018411, 0.000000 ], [ 0.018411, 0.001802 ], [ 0.021029, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183900", "Lat": "0.0000000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.001802 ], [ 0.021029, 0.000000 ], [ 0.018411, 0.000000 ], [ 0.018411, 0.001802 ], [ 0.021029, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210163", "Lat": "0.0018000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.003433 ], [ 0.023646, 0.001802 ], [ 0.021029, 0.001802 ], [ 0.021029, 0.003433 ], [ 0.023646, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0210200", "Lat": "0.0018000", "KPI": 484, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.003433 ], [ 0.023646, 0.001802 ], [ 0.021029, 0.001802 ], [ 0.021029, 0.003433 ], [ 0.023646, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.001802 ], [ 0.023646, 0.000000 ], [ 0.021029, 0.000000 ], [ 0.021029, 0.001802 ], [ 0.023646, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.001802 ], [ 0.023646, 0.000000 ], [ 0.021029, 0.000000 ], [ 0.021029, 0.001802 ], [ 0.023646, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236434", "Lat": "0.0018000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.003433 ], [ 0.026264, 0.001802 ], [ 0.023646, 0.001802 ], [ 0.023646, 0.003433 ], [ 0.026264, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0236400", "Lat": "0.0018000", "KPI": 136, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.003433 ], [ 0.026264, 0.001802 ], [ 0.023646, 0.001802 ], [ 0.023646, 0.003433 ], [ 0.026264, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0000000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.001802 ], [ 0.026264, 0.000000 ], [ 0.023646, 0.000000 ], [ 0.023646, 0.001802 ], [ 0.026264, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0000000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.001802 ], [ 0.026264, 0.000000 ], [ 0.023646, 0.000000 ], [ 0.023646, 0.001802 ], [ 0.026264, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262704", "Lat": "0.0018000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.003433 ], [ 0.028882, 0.001802 ], [ 0.026264, 0.001802 ], [ 0.026264, 0.003433 ], [ 0.028882, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0262700", "Lat": "0.0018000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.003433 ], [ 0.028882, 0.001802 ], [ 0.026264, 0.001802 ], [ 0.026264, 0.003433 ], [ 0.028882, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.001802 ], [ 0.028882, 0.000000 ], [ 0.026264, 0.000000 ], [ 0.026264, 0.001802 ], [ 0.028882, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.001802 ], [ 0.028882, 0.000000 ], [ 0.026264, 0.000000 ], [ 0.026264, 0.001802 ], [ 0.028882, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0288974", "Lat": "0.0018000", "KPI": 53, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.003433 ], [ 0.031543, 0.001802 ], [ 0.028882, 0.001802 ], [ 0.028882, 0.003433 ], [ 0.031543, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0289000", "Lat": "0.0018000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.003433 ], [ 0.031543, 0.001802 ], [ 0.028882, 0.001802 ], [ 0.028882, 0.003433 ], [ 0.031543, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0288974", "Lat": "0.0000000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.001802 ], [ 0.031543, 0.000000 ], [ 0.028882, 0.000000 ], [ 0.028882, 0.001802 ], [ 0.031543, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0289000", "Lat": "0.0000000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.001802 ], [ 0.031543, 0.000000 ], [ 0.028882, 0.000000 ], [ 0.028882, 0.001802 ], [ 0.031543, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0315245", "Lat": "0.0018000", "KPI": 992, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.003433 ], [ 0.034161, 0.001802 ], [ 0.031543, 0.001802 ], [ 0.031543, 0.003433 ], [ 0.034161, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0315200", "Lat": "0.0018000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.003433 ], [ 0.034161, 0.001802 ], [ 0.031500, 0.001802 ], [ 0.031500, 0.003433 ], [ 0.034161, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.001802 ], [ 0.034161, 0.000000 ], [ 0.031543, 0.000000 ], [ 0.031543, 0.001802 ], [ 0.034161, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.001802 ], [ 0.034161, 0.000000 ], [ 0.031500, 0.000000 ], [ 0.031500, 0.001802 ], [ 0.034161, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0341515", "Lat": "0.0018000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.003433 ], [ 0.036778, 0.001802 ], [ 0.034161, 0.001802 ], [ 0.034161, 0.003433 ], [ 0.036778, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0018000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.003433 ], [ 0.036778, 0.001802 ], [ 0.034161, 0.001802 ], [ 0.034161, 0.003433 ], [ 0.036778, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0341515", "Lat": "0.0000000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.001802 ], [ 0.036778, 0.000000 ], [ 0.034161, 0.000000 ], [ 0.034161, 0.001802 ], [ 0.036778, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0000000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.001802 ], [ 0.036778, 0.000000 ], [ 0.034161, 0.000000 ], [ 0.034161, 0.001802 ], [ 0.036778, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0367786", "Lat": "0.0018000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.003433 ], [ 0.039396, 0.001802 ], [ 0.036778, 0.001802 ], [ 0.036778, 0.003433 ], [ 0.039396, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0018000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.003433 ], [ 0.039396, 0.001802 ], [ 0.036778, 0.001802 ], [ 0.036778, 0.003433 ], [ 0.039396, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.001802 ], [ 0.039396, 0.000000 ], [ 0.036778, 0.000000 ], [ 0.036778, 0.001802 ], [ 0.039396, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.001802 ], [ 0.039396, 0.000000 ], [ 0.036778, 0.000000 ], [ 0.036778, 0.001802 ], [ 0.039396, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0394056", "Lat": "0.0018000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.003433 ], [ 0.042014, 0.001802 ], [ 0.039396, 0.001802 ], [ 0.039396, 0.003433 ], [ 0.042014, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394100", "Lat": "0.0018000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.003433 ], [ 0.042057, 0.001802 ], [ 0.039396, 0.001802 ], [ 0.039396, 0.003433 ], [ 0.042057, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0000000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.001802 ], [ 0.042014, 0.000000 ], [ 0.039396, 0.000000 ], [ 0.039396, 0.001802 ], [ 0.042014, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394100", "Lat": "0.0000000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.001802 ], [ 0.042057, 0.000000 ], [ 0.039396, 0.000000 ], [ 0.039396, 0.001802 ], [ 0.042057, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420326", "Lat": "0.0018000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.003433 ], [ 0.044675, 0.001802 ], [ 0.042014, 0.001802 ], [ 0.042014, 0.003433 ], [ 0.044675, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0420300", "Lat": "0.0018000", "KPI": 331, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.003433 ], [ 0.044675, 0.001802 ], [ 0.042014, 0.001802 ], [ 0.042014, 0.003433 ], [ 0.044675, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.001802 ], [ 0.044675, 0.000000 ], [ 0.042014, 0.000000 ], [ 0.042014, 0.001802 ], [ 0.044675, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.001802 ], [ 0.044675, 0.000000 ], [ 0.042014, 0.000000 ], [ 0.042014, 0.001802 ], [ 0.044675, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0018000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.003433 ], [ 0.047293, 0.001802 ], [ 0.044675, 0.001802 ], [ 0.044675, 0.003433 ], [ 0.047293, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0446600", "Lat": "0.0018000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.003433 ], [ 0.047293, 0.001802 ], [ 0.044675, 0.001802 ], [ 0.044675, 0.003433 ], [ 0.047293, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0446597", "Lat": "0.0000000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.001802 ], [ 0.047293, 0.000000 ], [ 0.044675, 0.000000 ], [ 0.044675, 0.001802 ], [ 0.047293, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0446600", "Lat": "0.0000000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.001802 ], [ 0.047293, 0.000000 ], [ 0.044675, 0.000000 ], [ 0.044675, 0.001802 ], [ 0.047293, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0472867", "Lat": "0.0018000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.003433 ], [ 0.049911, 0.001802 ], [ 0.047293, 0.001802 ], [ 0.047293, 0.003433 ], [ 0.049911, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0018000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.003433 ], [ 0.049911, 0.001802 ], [ 0.047293, 0.001802 ], [ 0.047293, 0.003433 ], [ 0.049911, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.001802 ], [ 0.049911, 0.000000 ], [ 0.047293, 0.000000 ], [ 0.047293, 0.001802 ], [ 0.049911, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.001802 ], [ 0.049911, 0.000000 ], [ 0.047293, 0.000000 ], [ 0.047293, 0.001802 ], [ 0.049911, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0499138", "Lat": "0.0018000", "KPI": 958, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.003433 ], [ 0.052528, 0.001802 ], [ 0.049911, 0.001802 ], [ 0.049911, 0.003433 ], [ 0.052528, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0018000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.003433 ], [ 0.052528, 0.001802 ], [ 0.049911, 0.001802 ], [ 0.049911, 0.003433 ], [ 0.052528, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0000000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.001802 ], [ 0.052528, 0.000000 ], [ 0.049911, 0.000000 ], [ 0.049911, 0.001802 ], [ 0.052528, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0499100", "Lat": "0.0000000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.001802 ], [ 0.052528, 0.000000 ], [ 0.049911, 0.000000 ], [ 0.049911, 0.001802 ], [ 0.052528, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525408", "Lat": "0.0018000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.003433 ], [ 0.055189, 0.001802 ], [ 0.052528, 0.001802 ], [ 0.052528, 0.003433 ], [ 0.055189, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0525400", "Lat": "0.0018000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.003433 ], [ 0.055189, 0.001802 ], [ 0.052528, 0.001802 ], [ 0.052528, 0.003433 ], [ 0.055189, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.001802 ], [ 0.055189, 0.000000 ], [ 0.052528, 0.000000 ], [ 0.052528, 0.001802 ], [ 0.055189, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.001802 ], [ 0.055189, 0.000000 ], [ 0.052528, 0.000000 ], [ 0.052528, 0.001802 ], [ 0.055189, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551678", "Lat": "0.0018000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.003433 ], [ 0.057807, 0.001802 ], [ 0.055189, 0.001802 ], [ 0.055189, 0.003433 ], [ 0.057807, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0018000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.003433 ], [ 0.057807, 0.001802 ], [ 0.055189, 0.001802 ], [ 0.055189, 0.003433 ], [ 0.057807, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0551678", "Lat": "0.0000000", "KPI": 910, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.001802 ], [ 0.057807, 0.000000 ], [ 0.055189, 0.000000 ], [ 0.055189, 0.001802 ], [ 0.057807, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0551700", "Lat": "0.0000000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.001802 ], [ 0.057807, 0.000000 ], [ 0.055189, 0.000000 ], [ 0.055189, 0.001802 ], [ 0.057807, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0577949", "Lat": "0.0018000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.003433 ], [ 0.060425, 0.001802 ], [ 0.057807, 0.001802 ], [ 0.057807, 0.003433 ], [ 0.060425, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577900", "Lat": "0.0018000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.003433 ], [ 0.060425, 0.001802 ], [ 0.057807, 0.001802 ], [ 0.057807, 0.003433 ], [ 0.060425, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.001802 ], [ 0.060425, 0.000000 ], [ 0.057807, 0.000000 ], [ 0.057807, 0.001802 ], [ 0.060425, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.001802 ], [ 0.060425, 0.000000 ], [ 0.057807, 0.000000 ], [ 0.057807, 0.001802 ], [ 0.060425, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0604219", "Lat": "0.0018000", "KPI": 879, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.003433 ], [ 0.063043, 0.001802 ], [ 0.060425, 0.001802 ], [ 0.060425, 0.003433 ], [ 0.063043, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0604200", "Lat": "0.0018000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.003433 ], [ 0.063043, 0.001802 ], [ 0.060425, 0.001802 ], [ 0.060425, 0.003433 ], [ 0.063043, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0604219", "Lat": "0.0000000", "KPI": 100, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.001802 ], [ 0.063043, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.001802 ], [ 0.063043, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0604200", "Lat": "0.0000000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.001802 ], [ 0.063043, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.001802 ], [ 0.063043, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630490", "Lat": "0.0018000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.003433 ], [ 0.065660, 0.001802 ], [ 0.063043, 0.001802 ], [ 0.063043, 0.003433 ], [ 0.065660, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0018000", "KPI": 873, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.003433 ], [ 0.065660, 0.001802 ], [ 0.063043, 0.001802 ], [ 0.063043, 0.003433 ], [ 0.065660, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0630490", "Lat": "0.0000000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.001802 ], [ 0.065660, 0.000000 ], [ 0.063043, 0.000000 ], [ 0.063043, 0.001802 ], [ 0.065660, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0630500", "Lat": "0.0000000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.001802 ], [ 0.065660, 0.000000 ], [ 0.063043, 0.000000 ], [ 0.063043, 0.001802 ], [ 0.065660, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656760", "Lat": "0.0018000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.003433 ], [ 0.068321, 0.001802 ], [ 0.065660, 0.001802 ], [ 0.065660, 0.003433 ], [ 0.068321, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656800", "Lat": "0.0018000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.003433 ], [ 0.068321, 0.001802 ], [ 0.065660, 0.001802 ], [ 0.065660, 0.003433 ], [ 0.068321, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.001802 ], [ 0.068321, 0.000000 ], [ 0.065660, 0.000000 ], [ 0.065660, 0.001802 ], [ 0.068321, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.001802 ], [ 0.068321, 0.000000 ], [ 0.065660, 0.000000 ], [ 0.065660, 0.001802 ], [ 0.068321, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0683030", "Lat": "0.0018000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.003433 ], [ 0.070939, 0.001802 ], [ 0.068321, 0.001802 ], [ 0.068321, 0.003433 ], [ 0.070939, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0683000", "Lat": "0.0018000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.003433 ], [ 0.070939, 0.001802 ], [ 0.068321, 0.001802 ], [ 0.068321, 0.003433 ], [ 0.070939, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0000000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.001802 ], [ 0.070939, 0.000000 ], [ 0.068321, 0.000000 ], [ 0.068321, 0.001802 ], [ 0.070939, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0683000", "Lat": "0.0000000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.001802 ], [ 0.070939, 0.000000 ], [ 0.068321, 0.000000 ], [ 0.068321, 0.001802 ], [ 0.070939, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0709301", "Lat": "0.0018000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.003433 ], [ 0.073557, 0.001802 ], [ 0.070939, 0.001802 ], [ 0.070939, 0.003433 ], [ 0.073557, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0709300", "Lat": "0.0018000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.003433 ], [ 0.073557, 0.001802 ], [ 0.070939, 0.001802 ], [ 0.070939, 0.003433 ], [ 0.073557, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.001802 ], [ 0.073557, 0.000000 ], [ 0.070939, 0.000000 ], [ 0.070939, 0.001802 ], [ 0.073557, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.001802 ], [ 0.073557, 0.000000 ], [ 0.070939, 0.000000 ], [ 0.070939, 0.001802 ], [ 0.073557, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0735571", "Lat": "0.0018000", "KPI": 931, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.003433 ], [ 0.076175, 0.001802 ], [ 0.073557, 0.001802 ], [ 0.073557, 0.003433 ], [ 0.076175, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0735600", "Lat": "0.0018000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.003433 ], [ 0.076175, 0.001802 ], [ 0.073557, 0.001802 ], [ 0.073557, 0.003433 ], [ 0.076175, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0000000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.001802 ], [ 0.076175, 0.000000 ], [ 0.073557, 0.000000 ], [ 0.073557, 0.001802 ], [ 0.076175, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0735600", "Lat": "0.0000000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.001802 ], [ 0.076175, 0.000000 ], [ 0.073557, 0.000000 ], [ 0.073557, 0.001802 ], [ 0.076175, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761842", "Lat": "0.0018000", "KPI": 458, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.003433 ], [ 0.078793, 0.001802 ], [ 0.076175, 0.001802 ], [ 0.076175, 0.003433 ], [ 0.078793, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761800", "Lat": "0.0018000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.003433 ], [ 0.078793, 0.001802 ], [ 0.076175, 0.001802 ], [ 0.076175, 0.003433 ], [ 0.078793, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.001802 ], [ 0.078793, 0.000000 ], [ 0.076175, 0.000000 ], [ 0.076175, 0.001802 ], [ 0.078793, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.001802 ], [ 0.078793, 0.000000 ], [ 0.076175, 0.000000 ], [ 0.076175, 0.001802 ], [ 0.078793, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0788112", "Lat": "0.0018000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.003433 ], [ 0.081453, 0.001802 ], [ 0.078793, 0.001802 ], [ 0.078793, 0.003433 ], [ 0.081453, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0788100", "Lat": "0.0018000", "KPI": 886, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.003433 ], [ 0.081453, 0.001802 ], [ 0.078793, 0.001802 ], [ 0.078793, 0.003433 ], [ 0.081453, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0000000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.001802 ], [ 0.081453, 0.000000 ], [ 0.078793, 0.000000 ], [ 0.078793, 0.001802 ], [ 0.081453, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0788100", "Lat": "0.0000000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.001802 ], [ 0.081453, 0.000000 ], [ 0.078793, 0.000000 ], [ 0.078793, 0.001802 ], [ 0.081453, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0018000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.003433 ], [ 0.084071, 0.001802 ], [ 0.081453, 0.001802 ], [ 0.081453, 0.003433 ], [ 0.084071, 0.003433 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0018000", "KPI": 505, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.003433 ], [ 0.084071, 0.001802 ], [ 0.081453, 0.001802 ], [ 0.081453, 0.003433 ], [ 0.084071, 0.003433 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.001802 ], [ 0.084071, 0.000000 ], [ 0.081453, 0.000000 ], [ 0.081453, 0.001802 ], [ 0.084071, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.001802 ], [ 0.084071, 0.000000 ], [ 0.081453, 0.000000 ], [ 0.081453, 0.001802 ], [ 0.084071, 0.001802 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1024, "y": 1023 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0000000", "Lat": "0.0558000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.057592 ], [ 0.002618, 0.055790 ], [ 0.000000, 0.055790 ], [ 0.000000, 0.057592 ], [ 0.002618, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0558000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.057592 ], [ 0.002618, 0.055790 ], [ 0.000000, 0.055790 ], [ 0.000000, 0.057592 ], [ 0.002618, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0558000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.057592 ], [ 0.005236, 0.055790 ], [ 0.002618, 0.055790 ], [ 0.002618, 0.057592 ], [ 0.005236, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0026300", "Lat": "0.0558000", "KPI": 236, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.057592 ], [ 0.005279, 0.055790 ], [ 0.002618, 0.055790 ], [ 0.002618, 0.057592 ], [ 0.005279, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0052541", "Lat": "0.0558000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.057592 ], [ 0.007896, 0.055790 ], [ 0.005236, 0.055790 ], [ 0.005236, 0.057592 ], [ 0.007896, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0052500", "Lat": "0.0558000", "KPI": 68, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.057592 ], [ 0.007896, 0.055790 ], [ 0.005236, 0.055790 ], [ 0.005236, 0.057592 ], [ 0.007896, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0078811", "Lat": "0.0558000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.057592 ], [ 0.010514, 0.055790 ], [ 0.007896, 0.055790 ], [ 0.007896, 0.057592 ], [ 0.010514, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0078800", "Lat": "0.0558000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.057592 ], [ 0.010514, 0.055790 ], [ 0.007896, 0.055790 ], [ 0.007896, 0.057592 ], [ 0.010514, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0540000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.055790 ], [ 0.002618, 0.053987 ], [ 0.000000, 0.053987 ], [ 0.000000, 0.055790 ], [ 0.002618, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0000000", "Lat": "0.0540000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.055790 ], [ 0.002618, 0.053987 ], [ 0.000000, 0.053987 ], [ 0.000000, 0.055790 ], [ 0.002618, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0000000", "Lat": "0.0522000", "KPI": 40, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.053987 ], [ 0.002618, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.053987 ], [ 0.002618, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0000000", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.053987 ], [ 0.002618, 0.052185 ], [ 0.000000, 0.052185 ], [ 0.000000, 0.053987 ], [ 0.002618, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0504000", "KPI": 692, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.052185 ], [ 0.002618, 0.050383 ], [ 0.000000, 0.050383 ], [ 0.000000, 0.052185 ], [ 0.002618, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0000000", "Lat": "0.0504000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.052185 ], [ 0.002618, 0.050383 ], [ 0.000000, 0.050383 ], [ 0.000000, 0.052185 ], [ 0.002618, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0000000", "Lat": "0.0486000", "KPI": 953, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.050383 ], [ 0.002618, 0.048580 ], [ 0.000000, 0.048580 ], [ 0.000000, 0.050383 ], [ 0.002618, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0000000", "Lat": "0.0486000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.050383 ], [ 0.002618, 0.048580 ], [ 0.000000, 0.048580 ], [ 0.000000, 0.050383 ], [ 0.002618, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0026270", "Lat": "0.0540000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.055790 ], [ 0.005236, 0.053987 ], [ 0.002618, 0.053987 ], [ 0.002618, 0.055790 ], [ 0.005236, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0026300", "Lat": "0.0540000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.055790 ], [ 0.005279, 0.053987 ], [ 0.002618, 0.053987 ], [ 0.002618, 0.055790 ], [ 0.005279, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0026270", "Lat": "0.0522000", "KPI": 116, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.053987 ], [ 0.005236, 0.052185 ], [ 0.002618, 0.052185 ], [ 0.002618, 0.053987 ], [ 0.005236, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026300", "Lat": "0.0522000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.053987 ], [ 0.005279, 0.052185 ], [ 0.002618, 0.052185 ], [ 0.002618, 0.053987 ], [ 0.005279, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0026270", "Lat": "0.0504000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.052185 ], [ 0.005236, 0.050383 ], [ 0.002618, 0.050383 ], [ 0.002618, 0.052185 ], [ 0.005236, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0026300", "Lat": "0.0504000", "KPI": 364, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.052185 ], [ 0.005279, 0.050383 ], [ 0.002618, 0.050383 ], [ 0.002618, 0.052185 ], [ 0.005279, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0026270", "Lat": "0.0486000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.050383 ], [ 0.005236, 0.048580 ], [ 0.002618, 0.048580 ], [ 0.002618, 0.050383 ], [ 0.005236, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0026300", "Lat": "0.0486000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.050383 ], [ 0.005279, 0.048580 ], [ 0.002618, 0.048580 ], [ 0.002618, 0.050383 ], [ 0.005279, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0468000", "KPI": 548, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.048580 ], [ 0.002618, 0.046821 ], [ 0.000000, 0.046821 ], [ 0.000000, 0.048580 ], [ 0.002618, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0000000", "Lat": "0.0468000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.048580 ], [ 0.002618, 0.046821 ], [ 0.000000, 0.046821 ], [ 0.000000, 0.048580 ], [ 0.002618, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0000000", "Lat": "0.0450000", "KPI": 310, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.046821 ], [ 0.002618, 0.045018 ], [ 0.000000, 0.045018 ], [ 0.000000, 0.046821 ], [ 0.002618, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0000000", "Lat": "0.0450000", "KPI": 408, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.046821 ], [ 0.002618, 0.045018 ], [ 0.000000, 0.045018 ], [ 0.000000, 0.046821 ], [ 0.002618, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0000000", "Lat": "0.0432000", "KPI": 405, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.045018 ], [ 0.002618, 0.043216 ], [ 0.000000, 0.043216 ], [ 0.000000, 0.045018 ], [ 0.002618, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0000000", "Lat": "0.0432000", "KPI": 317, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.045018 ], [ 0.002618, 0.043216 ], [ 0.000000, 0.043216 ], [ 0.000000, 0.045018 ], [ 0.002618, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0026270", "Lat": "0.0468000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.048580 ], [ 0.005236, 0.046821 ], [ 0.002618, 0.046821 ], [ 0.002618, 0.048580 ], [ 0.005236, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0468000", "KPI": 182, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.048580 ], [ 0.005279, 0.046821 ], [ 0.002618, 0.046821 ], [ 0.002618, 0.048580 ], [ 0.005279, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0450000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.046821 ], [ 0.005236, 0.045018 ], [ 0.002618, 0.045018 ], [ 0.002618, 0.046821 ], [ 0.005236, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0026300", "Lat": "0.0450000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.046821 ], [ 0.005279, 0.045018 ], [ 0.002618, 0.045018 ], [ 0.002618, 0.046821 ], [ 0.005279, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0432000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.045018 ], [ 0.005236, 0.043216 ], [ 0.002618, 0.043216 ], [ 0.002618, 0.045018 ], [ 0.005236, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0026300", "Lat": "0.0432000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.045018 ], [ 0.005279, 0.043216 ], [ 0.002618, 0.043216 ], [ 0.002618, 0.045018 ], [ 0.005279, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0052541", "Lat": "0.0540000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.055790 ], [ 0.007896, 0.053987 ], [ 0.005236, 0.053987 ], [ 0.005236, 0.055790 ], [ 0.007896, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0052500", "Lat": "0.0540000", "KPI": 844, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.055790 ], [ 0.007896, 0.053987 ], [ 0.005236, 0.053987 ], [ 0.005236, 0.055790 ], [ 0.007896, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0052541", "Lat": "0.0522000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.053987 ], [ 0.007896, 0.052185 ], [ 0.005236, 0.052185 ], [ 0.005236, 0.053987 ], [ 0.007896, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.053987 ], [ 0.007896, 0.052185 ], [ 0.005236, 0.052185 ], [ 0.005236, 0.053987 ], [ 0.007896, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0052541", "Lat": "0.0504000", "KPI": 954, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.052185 ], [ 0.007896, 0.050383 ], [ 0.005236, 0.050383 ], [ 0.005236, 0.052185 ], [ 0.007896, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0052500", "Lat": "0.0504000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.052185 ], [ 0.007896, 0.050383 ], [ 0.005236, 0.050383 ], [ 0.005236, 0.052185 ], [ 0.007896, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052541", "Lat": "0.0486000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.050383 ], [ 0.007896, 0.048580 ], [ 0.005236, 0.048580 ], [ 0.005236, 0.050383 ], [ 0.007896, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0052500", "Lat": "0.0486000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.050383 ], [ 0.007896, 0.048580 ], [ 0.005236, 0.048580 ], [ 0.005236, 0.050383 ], [ 0.007896, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0078811", "Lat": "0.0540000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.055790 ], [ 0.010514, 0.053987 ], [ 0.007896, 0.053987 ], [ 0.007896, 0.055790 ], [ 0.010514, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078800", "Lat": "0.0540000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.055790 ], [ 0.010514, 0.053987 ], [ 0.007896, 0.053987 ], [ 0.007896, 0.055790 ], [ 0.010514, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078811", "Lat": "0.0522000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.053987 ], [ 0.010514, 0.052185 ], [ 0.007896, 0.052185 ], [ 0.007896, 0.053987 ], [ 0.010514, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0078800", "Lat": "0.0522000", "KPI": 48, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.053987 ], [ 0.010514, 0.052185 ], [ 0.007896, 0.052185 ], [ 0.007896, 0.053987 ], [ 0.010514, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0078811", "Lat": "0.0504000", "KPI": 663, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.052185 ], [ 0.010514, 0.050383 ], [ 0.007896, 0.050383 ], [ 0.007896, 0.052185 ], [ 0.010514, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0078800", "Lat": "0.0504000", "KPI": 283, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.052185 ], [ 0.010514, 0.050383 ], [ 0.007896, 0.050383 ], [ 0.007896, 0.052185 ], [ 0.010514, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078811", "Lat": "0.0486000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.050383 ], [ 0.010514, 0.048580 ], [ 0.007896, 0.048580 ], [ 0.007896, 0.050383 ], [ 0.010514, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0078800", "Lat": "0.0486000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.050383 ], [ 0.010514, 0.048580 ], [ 0.007896, 0.048580 ], [ 0.007896, 0.050383 ], [ 0.010514, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0052541", "Lat": "0.0468000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.048580 ], [ 0.007896, 0.046821 ], [ 0.005236, 0.046821 ], [ 0.005236, 0.048580 ], [ 0.007896, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0052500", "Lat": "0.0468000", "KPI": 585, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.048580 ], [ 0.007896, 0.046821 ], [ 0.005236, 0.046821 ], [ 0.005236, 0.048580 ], [ 0.007896, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0052541", "Lat": "0.0450000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.046821 ], [ 0.007896, 0.045018 ], [ 0.005236, 0.045018 ], [ 0.005236, 0.046821 ], [ 0.007896, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0450000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.046821 ], [ 0.007896, 0.045018 ], [ 0.005236, 0.045018 ], [ 0.005236, 0.046821 ], [ 0.007896, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052541", "Lat": "0.0432000", "KPI": 288, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.045018 ], [ 0.007896, 0.043216 ], [ 0.005236, 0.043216 ], [ 0.005236, 0.045018 ], [ 0.007896, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052500", "Lat": "0.0432000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.045018 ], [ 0.007896, 0.043216 ], [ 0.005236, 0.043216 ], [ 0.005236, 0.045018 ], [ 0.007896, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0078811", "Lat": "0.0468000", "KPI": 127, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.048580 ], [ 0.010514, 0.046821 ], [ 0.007896, 0.046821 ], [ 0.007896, 0.048580 ], [ 0.010514, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0078800", "Lat": "0.0468000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.048580 ], [ 0.010514, 0.046821 ], [ 0.007896, 0.046821 ], [ 0.007896, 0.048580 ], [ 0.010514, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078811", "Lat": "0.0450000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.046821 ], [ 0.010514, 0.045018 ], [ 0.007896, 0.045018 ], [ 0.007896, 0.046821 ], [ 0.010514, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0078800", "Lat": "0.0450000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.046821 ], [ 0.010514, 0.045018 ], [ 0.007896, 0.045018 ], [ 0.007896, 0.046821 ], [ 0.010514, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0078811", "Lat": "0.0432000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.045018 ], [ 0.010514, 0.043216 ], [ 0.007896, 0.043216 ], [ 0.007896, 0.045018 ], [ 0.010514, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0078800", "Lat": "0.0432000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.045018 ], [ 0.010514, 0.043216 ], [ 0.007896, 0.043216 ], [ 0.007896, 0.045018 ], [ 0.010514, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0105082", "Lat": "0.0558000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.057592 ], [ 0.013132, 0.055790 ], [ 0.010514, 0.055790 ], [ 0.010514, 0.057592 ], [ 0.013132, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0105100", "Lat": "0.0558000", "KPI": 760, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.057592 ], [ 0.013132, 0.055790 ], [ 0.010514, 0.055790 ], [ 0.010514, 0.057592 ], [ 0.013132, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0131352", "Lat": "0.0558000", "KPI": 626, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.057592 ], [ 0.015750, 0.055790 ], [ 0.013132, 0.055790 ], [ 0.013132, 0.057592 ], [ 0.015750, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0558000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.057592 ], [ 0.015750, 0.055790 ], [ 0.013132, 0.055790 ], [ 0.013132, 0.057592 ], [ 0.015750, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0157622", "Lat": "0.0558000", "KPI": 865, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.057592 ], [ 0.018411, 0.055790 ], [ 0.015750, 0.055790 ], [ 0.015750, 0.057592 ], [ 0.018411, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0157600", "Lat": "0.0558000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.057592 ], [ 0.018411, 0.055790 ], [ 0.015750, 0.055790 ], [ 0.015750, 0.057592 ], [ 0.018411, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0183893", "Lat": "0.0558000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.057592 ], [ 0.021029, 0.055790 ], [ 0.018411, 0.055790 ], [ 0.018411, 0.057592 ], [ 0.021029, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0183900", "Lat": "0.0558000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.057592 ], [ 0.021029, 0.055790 ], [ 0.018411, 0.055790 ], [ 0.018411, 0.057592 ], [ 0.021029, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0105082", "Lat": "0.0540000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.055790 ], [ 0.013132, 0.053987 ], [ 0.010514, 0.053987 ], [ 0.010514, 0.055790 ], [ 0.013132, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0105100", "Lat": "0.0540000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.055790 ], [ 0.013132, 0.053987 ], [ 0.010514, 0.053987 ], [ 0.010514, 0.055790 ], [ 0.013132, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0105082", "Lat": "0.0522000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.053987 ], [ 0.013132, 0.052185 ], [ 0.010514, 0.052185 ], [ 0.010514, 0.053987 ], [ 0.013132, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0105100", "Lat": "0.0522000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.053987 ], [ 0.013132, 0.052185 ], [ 0.010514, 0.052185 ], [ 0.010514, 0.053987 ], [ 0.013132, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0105082", "Lat": "0.0504000", "KPI": 426, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.052185 ], [ 0.013132, 0.050383 ], [ 0.010514, 0.050383 ], [ 0.010514, 0.052185 ], [ 0.013132, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0105100", "Lat": "0.0504000", "KPI": 637, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.052185 ], [ 0.013132, 0.050383 ], [ 0.010514, 0.050383 ], [ 0.010514, 0.052185 ], [ 0.013132, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0486000", "KPI": 595, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.050383 ], [ 0.013132, 0.048580 ], [ 0.010514, 0.048580 ], [ 0.010514, 0.050383 ], [ 0.013132, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0105100", "Lat": "0.0486000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.050383 ], [ 0.013132, 0.048580 ], [ 0.010514, 0.048580 ], [ 0.010514, 0.050383 ], [ 0.013132, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0131352", "Lat": "0.0540000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.055790 ], [ 0.015750, 0.053987 ], [ 0.013132, 0.053987 ], [ 0.013132, 0.055790 ], [ 0.015750, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0131400", "Lat": "0.0540000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.055790 ], [ 0.015750, 0.053987 ], [ 0.013132, 0.053987 ], [ 0.013132, 0.055790 ], [ 0.015750, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0131352", "Lat": "0.0522000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.053987 ], [ 0.015750, 0.052185 ], [ 0.013132, 0.052185 ], [ 0.013132, 0.053987 ], [ 0.015750, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0131400", "Lat": "0.0522000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.053987 ], [ 0.015750, 0.052185 ], [ 0.013132, 0.052185 ], [ 0.013132, 0.053987 ], [ 0.015750, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0131352", "Lat": "0.0504000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.052185 ], [ 0.015750, 0.050383 ], [ 0.013132, 0.050383 ], [ 0.013132, 0.052185 ], [ 0.015750, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131400", "Lat": "0.0504000", "KPI": 703, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.052185 ], [ 0.015750, 0.050383 ], [ 0.013132, 0.050383 ], [ 0.013132, 0.052185 ], [ 0.015750, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0131352", "Lat": "0.0486000", "KPI": 202, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.050383 ], [ 0.015750, 0.048580 ], [ 0.013132, 0.048580 ], [ 0.013132, 0.050383 ], [ 0.015750, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0131400", "Lat": "0.0486000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.050383 ], [ 0.015750, 0.048580 ], [ 0.013132, 0.048580 ], [ 0.013132, 0.050383 ], [ 0.015750, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0105082", "Lat": "0.0468000", "KPI": 643, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.048580 ], [ 0.013132, 0.046821 ], [ 0.010514, 0.046821 ], [ 0.010514, 0.048580 ], [ 0.013132, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105100", "Lat": "0.0468000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.048580 ], [ 0.013132, 0.046821 ], [ 0.010514, 0.046821 ], [ 0.010514, 0.048580 ], [ 0.013132, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0105082", "Lat": "0.0450000", "KPI": 246, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.046821 ], [ 0.013132, 0.045018 ], [ 0.010514, 0.045018 ], [ 0.010514, 0.046821 ], [ 0.013132, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0105100", "Lat": "0.0450000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.046821 ], [ 0.013132, 0.045018 ], [ 0.010514, 0.045018 ], [ 0.010514, 0.046821 ], [ 0.013132, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0105082", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.045018 ], [ 0.013132, 0.043216 ], [ 0.010514, 0.043216 ], [ 0.010514, 0.045018 ], [ 0.013132, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0432000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.045018 ], [ 0.013132, 0.043216 ], [ 0.010514, 0.043216 ], [ 0.010514, 0.045018 ], [ 0.013132, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0131352", "Lat": "0.0468000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.048580 ], [ 0.015750, 0.046821 ], [ 0.013132, 0.046821 ], [ 0.013132, 0.048580 ], [ 0.015750, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0131400", "Lat": "0.0468000", "KPI": 212, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.048580 ], [ 0.015750, 0.046821 ], [ 0.013132, 0.046821 ], [ 0.013132, 0.048580 ], [ 0.015750, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0131352", "Lat": "0.0450000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.046821 ], [ 0.015750, 0.045018 ], [ 0.013132, 0.045018 ], [ 0.013132, 0.046821 ], [ 0.015750, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0131400", "Lat": "0.0450000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.046821 ], [ 0.015750, 0.045018 ], [ 0.013132, 0.045018 ], [ 0.013132, 0.046821 ], [ 0.015750, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0131352", "Lat": "0.0432000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.045018 ], [ 0.015750, 0.043216 ], [ 0.013132, 0.043216 ], [ 0.013132, 0.045018 ], [ 0.015750, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0432000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.045018 ], [ 0.015750, 0.043216 ], [ 0.013132, 0.043216 ], [ 0.013132, 0.045018 ], [ 0.015750, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0540000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.055790 ], [ 0.018411, 0.053987 ], [ 0.015750, 0.053987 ], [ 0.015750, 0.055790 ], [ 0.018411, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0157600", "Lat": "0.0540000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.055790 ], [ 0.018411, 0.053987 ], [ 0.015750, 0.053987 ], [ 0.015750, 0.055790 ], [ 0.018411, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0157622", "Lat": "0.0522000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.053987 ], [ 0.018411, 0.052185 ], [ 0.015750, 0.052185 ], [ 0.015750, 0.053987 ], [ 0.018411, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157600", "Lat": "0.0522000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.053987 ], [ 0.018411, 0.052185 ], [ 0.015750, 0.052185 ], [ 0.015750, 0.053987 ], [ 0.018411, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0157622", "Lat": "0.0504000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.052185 ], [ 0.018411, 0.050383 ], [ 0.015750, 0.050383 ], [ 0.015750, 0.052185 ], [ 0.018411, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0157600", "Lat": "0.0504000", "KPI": 747, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.052185 ], [ 0.018411, 0.050383 ], [ 0.015750, 0.050383 ], [ 0.015750, 0.052185 ], [ 0.018411, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0157622", "Lat": "0.0486000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.050383 ], [ 0.018411, 0.048580 ], [ 0.015750, 0.048580 ], [ 0.015750, 0.050383 ], [ 0.018411, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0157600", "Lat": "0.0486000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.050383 ], [ 0.018411, 0.048580 ], [ 0.015750, 0.048580 ], [ 0.015750, 0.050383 ], [ 0.018411, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0183893", "Lat": "0.0540000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.055790 ], [ 0.021029, 0.053987 ], [ 0.018411, 0.053987 ], [ 0.018411, 0.055790 ], [ 0.021029, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183900", "Lat": "0.0540000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.055790 ], [ 0.021029, 0.053987 ], [ 0.018411, 0.053987 ], [ 0.018411, 0.055790 ], [ 0.021029, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0183893", "Lat": "0.0522000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.053987 ], [ 0.021029, 0.052185 ], [ 0.018411, 0.052185 ], [ 0.018411, 0.053987 ], [ 0.021029, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0183900", "Lat": "0.0522000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.053987 ], [ 0.021029, 0.052185 ], [ 0.018411, 0.052185 ], [ 0.018411, 0.053987 ], [ 0.021029, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0183893", "Lat": "0.0504000", "KPI": 225, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.052185 ], [ 0.021029, 0.050383 ], [ 0.018411, 0.050383 ], [ 0.018411, 0.052185 ], [ 0.021029, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0183900", "Lat": "0.0504000", "KPI": 816, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.052185 ], [ 0.021029, 0.050383 ], [ 0.018411, 0.050383 ], [ 0.018411, 0.052185 ], [ 0.021029, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0183893", "Lat": "0.0486000", "KPI": 115, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.050383 ], [ 0.021029, 0.048580 ], [ 0.018411, 0.048580 ], [ 0.018411, 0.050383 ], [ 0.021029, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0183900", "Lat": "0.0486000", "KPI": 880, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.050383 ], [ 0.021029, 0.048580 ], [ 0.018411, 0.048580 ], [ 0.018411, 0.050383 ], [ 0.021029, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0157622", "Lat": "0.0468000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.048580 ], [ 0.018411, 0.046821 ], [ 0.015750, 0.046821 ], [ 0.015750, 0.048580 ], [ 0.018411, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0157600", "Lat": "0.0468000", "KPI": 318, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.048580 ], [ 0.018411, 0.046821 ], [ 0.015750, 0.046821 ], [ 0.015750, 0.048580 ], [ 0.018411, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157622", "Lat": "0.0450000", "KPI": 88, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.046821 ], [ 0.018411, 0.045018 ], [ 0.015750, 0.045018 ], [ 0.015750, 0.046821 ], [ 0.018411, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0157600", "Lat": "0.0450000", "KPI": 689, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.046821 ], [ 0.018411, 0.045018 ], [ 0.015750, 0.045018 ], [ 0.015750, 0.046821 ], [ 0.018411, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0157622", "Lat": "0.0432000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.045018 ], [ 0.018411, 0.043216 ], [ 0.015750, 0.043216 ], [ 0.015750, 0.045018 ], [ 0.018411, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0432000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.045018 ], [ 0.018411, 0.043216 ], [ 0.015750, 0.043216 ], [ 0.015750, 0.045018 ], [ 0.018411, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0183893", "Lat": "0.0468000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.048580 ], [ 0.021029, 0.046821 ], [ 0.018411, 0.046821 ], [ 0.018411, 0.048580 ], [ 0.021029, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0183900", "Lat": "0.0468000", "KPI": 726, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.048580 ], [ 0.021029, 0.046821 ], [ 0.018411, 0.046821 ], [ 0.018411, 0.048580 ], [ 0.021029, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0183893", "Lat": "0.0450000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.046821 ], [ 0.021029, 0.045018 ], [ 0.018411, 0.045018 ], [ 0.018411, 0.046821 ], [ 0.021029, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0183900", "Lat": "0.0450000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.046821 ], [ 0.021029, 0.045018 ], [ 0.018411, 0.045018 ], [ 0.018411, 0.046821 ], [ 0.021029, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0183893", "Lat": "0.0432000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.045018 ], [ 0.021029, 0.043216 ], [ 0.018411, 0.043216 ], [ 0.018411, 0.045018 ], [ 0.021029, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0183900", "Lat": "0.0432000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.045018 ], [ 0.021029, 0.043216 ], [ 0.018411, 0.043216 ], [ 0.018411, 0.045018 ], [ 0.021029, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210163", "Lat": "0.0558000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.057592 ], [ 0.023646, 0.055790 ], [ 0.021029, 0.055790 ], [ 0.021029, 0.057592 ], [ 0.023646, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0210200", "Lat": "0.0558000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.057592 ], [ 0.023646, 0.055790 ], [ 0.021029, 0.055790 ], [ 0.021029, 0.057592 ], [ 0.023646, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0236434", "Lat": "0.0558000", "KPI": 848, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.057592 ], [ 0.026264, 0.055790 ], [ 0.023646, 0.055790 ], [ 0.023646, 0.057592 ], [ 0.026264, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0236400", "Lat": "0.0558000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.057592 ], [ 0.026264, 0.055790 ], [ 0.023646, 0.055790 ], [ 0.023646, 0.057592 ], [ 0.026264, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0262704", "Lat": "0.0558000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.057592 ], [ 0.028882, 0.055790 ], [ 0.026264, 0.055790 ], [ 0.026264, 0.057592 ], [ 0.028882, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262700", "Lat": "0.0558000", "KPI": 504, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.057592 ], [ 0.028882, 0.055790 ], [ 0.026264, 0.055790 ], [ 0.026264, 0.057592 ], [ 0.028882, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0288974", "Lat": "0.0558000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.057592 ], [ 0.031543, 0.055790 ], [ 0.028882, 0.055790 ], [ 0.028882, 0.057592 ], [ 0.031543, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0289000", "Lat": "0.0558000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.057592 ], [ 0.031543, 0.055790 ], [ 0.028882, 0.055790 ], [ 0.028882, 0.057592 ], [ 0.031543, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0558000", "KPI": 257, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.057592 ], [ 0.034161, 0.055790 ], [ 0.031543, 0.055790 ], [ 0.031543, 0.057592 ], [ 0.034161, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0315200", "Lat": "0.0558000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.057592 ], [ 0.034161, 0.055790 ], [ 0.031500, 0.055790 ], [ 0.031500, 0.057592 ], [ 0.034161, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0210163", "Lat": "0.0540000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.055790 ], [ 0.023646, 0.053987 ], [ 0.021029, 0.053987 ], [ 0.021029, 0.055790 ], [ 0.023646, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0210200", "Lat": "0.0540000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.055790 ], [ 0.023646, 0.053987 ], [ 0.021029, 0.053987 ], [ 0.021029, 0.055790 ], [ 0.023646, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0210163", "Lat": "0.0522000", "KPI": 125, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.053987 ], [ 0.023646, 0.052185 ], [ 0.021029, 0.052185 ], [ 0.021029, 0.053987 ], [ 0.023646, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0522000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.053987 ], [ 0.023646, 0.052185 ], [ 0.021029, 0.052185 ], [ 0.021029, 0.053987 ], [ 0.023646, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210163", "Lat": "0.0504000", "KPI": 267, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.052185 ], [ 0.023646, 0.050383 ], [ 0.021029, 0.050383 ], [ 0.021029, 0.052185 ], [ 0.023646, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0210200", "Lat": "0.0504000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.052185 ], [ 0.023646, 0.050383 ], [ 0.021029, 0.050383 ], [ 0.021029, 0.052185 ], [ 0.023646, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0210163", "Lat": "0.0486000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.050383 ], [ 0.023646, 0.048580 ], [ 0.021029, 0.048580 ], [ 0.021029, 0.050383 ], [ 0.023646, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0210200", "Lat": "0.0486000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.050383 ], [ 0.023646, 0.048580 ], [ 0.021029, 0.048580 ], [ 0.021029, 0.050383 ], [ 0.023646, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0236434", "Lat": "0.0540000", "KPI": 676, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.055790 ], [ 0.026264, 0.053987 ], [ 0.023646, 0.053987 ], [ 0.023646, 0.055790 ], [ 0.026264, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0236400", "Lat": "0.0540000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.055790 ], [ 0.026264, 0.053987 ], [ 0.023646, 0.053987 ], [ 0.023646, 0.055790 ], [ 0.026264, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0236434", "Lat": "0.0522000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.053987 ], [ 0.026264, 0.052185 ], [ 0.023646, 0.052185 ], [ 0.023646, 0.053987 ], [ 0.026264, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0236400", "Lat": "0.0522000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.053987 ], [ 0.026264, 0.052185 ], [ 0.023646, 0.052185 ], [ 0.023646, 0.053987 ], [ 0.026264, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0236434", "Lat": "0.0504000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.052185 ], [ 0.026264, 0.050383 ], [ 0.023646, 0.050383 ], [ 0.023646, 0.052185 ], [ 0.026264, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236400", "Lat": "0.0504000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.052185 ], [ 0.026264, 0.050383 ], [ 0.023646, 0.050383 ], [ 0.023646, 0.052185 ], [ 0.026264, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0236434", "Lat": "0.0486000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.050383 ], [ 0.026264, 0.048580 ], [ 0.023646, 0.048580 ], [ 0.023646, 0.050383 ], [ 0.026264, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0236400", "Lat": "0.0486000", "KPI": 726, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.050383 ], [ 0.026264, 0.048580 ], [ 0.023646, 0.048580 ], [ 0.023646, 0.050383 ], [ 0.026264, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0210163", "Lat": "0.0468000", "KPI": 417, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.048580 ], [ 0.023646, 0.046821 ], [ 0.021029, 0.046821 ], [ 0.021029, 0.048580 ], [ 0.023646, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0210200", "Lat": "0.0468000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.048580 ], [ 0.023646, 0.046821 ], [ 0.021029, 0.046821 ], [ 0.021029, 0.048580 ], [ 0.023646, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0210163", "Lat": "0.0450000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.046821 ], [ 0.023646, 0.045018 ], [ 0.021029, 0.045018 ], [ 0.021029, 0.046821 ], [ 0.023646, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210200", "Lat": "0.0450000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.046821 ], [ 0.023646, 0.045018 ], [ 0.021029, 0.045018 ], [ 0.021029, 0.046821 ], [ 0.023646, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0210163", "Lat": "0.0432000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.045018 ], [ 0.023646, 0.043216 ], [ 0.021029, 0.043216 ], [ 0.021029, 0.045018 ], [ 0.023646, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0432000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.045018 ], [ 0.023646, 0.043216 ], [ 0.021029, 0.043216 ], [ 0.021029, 0.045018 ], [ 0.023646, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0236434", "Lat": "0.0468000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.048580 ], [ 0.026264, 0.046821 ], [ 0.023646, 0.046821 ], [ 0.023646, 0.048580 ], [ 0.026264, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0236400", "Lat": "0.0468000", "KPI": 499, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.048580 ], [ 0.026264, 0.046821 ], [ 0.023646, 0.046821 ], [ 0.023646, 0.048580 ], [ 0.026264, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0236434", "Lat": "0.0450000", "KPI": 20, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.046821 ], [ 0.026264, 0.045018 ], [ 0.023646, 0.045018 ], [ 0.023646, 0.046821 ], [ 0.026264, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0236400", "Lat": "0.0450000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.046821 ], [ 0.026264, 0.045018 ], [ 0.023646, 0.045018 ], [ 0.023646, 0.046821 ], [ 0.026264, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0236434", "Lat": "0.0432000", "KPI": 774, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.045018 ], [ 0.026264, 0.043216 ], [ 0.023646, 0.043216 ], [ 0.023646, 0.045018 ], [ 0.026264, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0236400", "Lat": "0.0432000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.045018 ], [ 0.026264, 0.043216 ], [ 0.023646, 0.043216 ], [ 0.023646, 0.045018 ], [ 0.026264, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0262704", "Lat": "0.0540000", "KPI": 765, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.055790 ], [ 0.028882, 0.053987 ], [ 0.026264, 0.053987 ], [ 0.026264, 0.055790 ], [ 0.028882, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0262700", "Lat": "0.0540000", "KPI": 797, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.055790 ], [ 0.028882, 0.053987 ], [ 0.026264, 0.053987 ], [ 0.026264, 0.055790 ], [ 0.028882, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0262704", "Lat": "0.0522000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.053987 ], [ 0.028882, 0.052185 ], [ 0.026264, 0.052185 ], [ 0.026264, 0.053987 ], [ 0.028882, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0262700", "Lat": "0.0522000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.053987 ], [ 0.028882, 0.052185 ], [ 0.026264, 0.052185 ], [ 0.026264, 0.053987 ], [ 0.028882, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0288974", "Lat": "0.0540000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.055790 ], [ 0.031543, 0.053987 ], [ 0.028882, 0.053987 ], [ 0.028882, 0.055790 ], [ 0.031543, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0262700", "Lat": "0.0504000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.052185 ], [ 0.028882, 0.050383 ], [ 0.026264, 0.050383 ], [ 0.026264, 0.052185 ], [ 0.028882, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0288974", "Lat": "0.0522000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.053987 ], [ 0.031543, 0.052185 ], [ 0.028882, 0.052185 ], [ 0.028882, 0.053987 ], [ 0.031543, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0262700", "Lat": "0.0486000", "KPI": 645, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.050383 ], [ 0.028882, 0.048580 ], [ 0.026264, 0.048580 ], [ 0.026264, 0.050383 ], [ 0.028882, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0262704", "Lat": "0.0504000", "KPI": 255, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.052185 ], [ 0.028882, 0.050383 ], [ 0.026264, 0.050383 ], [ 0.026264, 0.052185 ], [ 0.028882, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0289000", "Lat": "0.0540000", "KPI": 705, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.055790 ], [ 0.031543, 0.053987 ], [ 0.028882, 0.053987 ], [ 0.028882, 0.055790 ], [ 0.031543, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0486000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.050383 ], [ 0.028882, 0.048580 ], [ 0.026264, 0.048580 ], [ 0.026264, 0.050383 ], [ 0.028882, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0289000", "Lat": "0.0522000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.053987 ], [ 0.031543, 0.052185 ], [ 0.028882, 0.052185 ], [ 0.028882, 0.053987 ], [ 0.031543, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0288974", "Lat": "0.0504000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.052185 ], [ 0.031543, 0.050383 ], [ 0.028882, 0.050383 ], [ 0.028882, 0.052185 ], [ 0.031543, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0315200", "Lat": "0.0540000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.055790 ], [ 0.034161, 0.053987 ], [ 0.031500, 0.053987 ], [ 0.031500, 0.055790 ], [ 0.034161, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0288974", "Lat": "0.0486000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.050383 ], [ 0.031543, 0.048580 ], [ 0.028882, 0.048580 ], [ 0.028882, 0.050383 ], [ 0.031543, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0315200", "Lat": "0.0522000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.053987 ], [ 0.034161, 0.052185 ], [ 0.031500, 0.052185 ], [ 0.031500, 0.053987 ], [ 0.034161, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0540000", "KPI": 232, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.055790 ], [ 0.034161, 0.053987 ], [ 0.031543, 0.053987 ], [ 0.031543, 0.055790 ], [ 0.034161, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0289000", "Lat": "0.0504000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.052185 ], [ 0.031543, 0.050383 ], [ 0.028882, 0.050383 ], [ 0.028882, 0.052185 ], [ 0.031543, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0315245", "Lat": "0.0522000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.053987 ], [ 0.034161, 0.052185 ], [ 0.031543, 0.052185 ], [ 0.031543, 0.053987 ], [ 0.034161, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0289000", "Lat": "0.0486000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.050383 ], [ 0.031543, 0.048580 ], [ 0.028882, 0.048580 ], [ 0.028882, 0.050383 ], [ 0.031543, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0315245", "Lat": "0.0504000", "KPI": 691, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.052185 ], [ 0.034161, 0.050383 ], [ 0.031543, 0.050383 ], [ 0.031543, 0.052185 ], [ 0.034161, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315200", "Lat": "0.0504000", "KPI": 760, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.052185 ], [ 0.034161, 0.050383 ], [ 0.031500, 0.050383 ], [ 0.031500, 0.052185 ], [ 0.034161, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0486000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.050383 ], [ 0.034161, 0.048580 ], [ 0.031543, 0.048580 ], [ 0.031543, 0.050383 ], [ 0.034161, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0315200", "Lat": "0.0486000", "KPI": 901, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.050383 ], [ 0.034161, 0.048580 ], [ 0.031500, 0.048580 ], [ 0.031500, 0.050383 ], [ 0.034161, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0262704", "Lat": "0.0468000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.048580 ], [ 0.028882, 0.046821 ], [ 0.026264, 0.046821 ], [ 0.026264, 0.048580 ], [ 0.028882, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262700", "Lat": "0.0468000", "KPI": 449, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.048580 ], [ 0.028882, 0.046821 ], [ 0.026264, 0.046821 ], [ 0.026264, 0.048580 ], [ 0.028882, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0288974", "Lat": "0.0468000", "KPI": 638, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.048580 ], [ 0.031543, 0.046821 ], [ 0.028882, 0.046821 ], [ 0.028882, 0.048580 ], [ 0.031543, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0262700", "Lat": "0.0450000", "KPI": 693, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.046821 ], [ 0.028882, 0.045018 ], [ 0.026264, 0.045018 ], [ 0.026264, 0.046821 ], [ 0.028882, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0262704", "Lat": "0.0450000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.046821 ], [ 0.028882, 0.045018 ], [ 0.026264, 0.045018 ], [ 0.026264, 0.046821 ], [ 0.028882, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0262700", "Lat": "0.0432000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.045018 ], [ 0.028882, 0.043216 ], [ 0.026264, 0.043216 ], [ 0.026264, 0.045018 ], [ 0.028882, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262704", "Lat": "0.0432000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.045018 ], [ 0.028882, 0.043216 ], [ 0.026264, 0.043216 ], [ 0.026264, 0.045018 ], [ 0.028882, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0289000", "Lat": "0.0468000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.048580 ], [ 0.031543, 0.046821 ], [ 0.028882, 0.046821 ], [ 0.028882, 0.048580 ], [ 0.031543, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0288974", "Lat": "0.0450000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.046821 ], [ 0.031543, 0.045018 ], [ 0.028882, 0.045018 ], [ 0.028882, 0.046821 ], [ 0.031543, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0468000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.048580 ], [ 0.034161, 0.046821 ], [ 0.031500, 0.046821 ], [ 0.031500, 0.048580 ], [ 0.034161, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0288974", "Lat": "0.0432000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.045018 ], [ 0.031543, 0.043216 ], [ 0.028882, 0.043216 ], [ 0.028882, 0.045018 ], [ 0.031543, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0289000", "Lat": "0.0450000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.046821 ], [ 0.031543, 0.045018 ], [ 0.028882, 0.045018 ], [ 0.028882, 0.046821 ], [ 0.031543, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0315245", "Lat": "0.0468000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.048580 ], [ 0.034161, 0.046821 ], [ 0.031543, 0.046821 ], [ 0.031543, 0.048580 ], [ 0.034161, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0289000", "Lat": "0.0432000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.045018 ], [ 0.031543, 0.043216 ], [ 0.028882, 0.043216 ], [ 0.028882, 0.045018 ], [ 0.031543, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0315245", "Lat": "0.0450000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.046821 ], [ 0.034161, 0.045018 ], [ 0.031543, 0.045018 ], [ 0.031543, 0.046821 ], [ 0.034161, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0315200", "Lat": "0.0450000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.046821 ], [ 0.034161, 0.045018 ], [ 0.031500, 0.045018 ], [ 0.031500, 0.046821 ], [ 0.034161, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0432000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.045018 ], [ 0.034161, 0.043216 ], [ 0.031543, 0.043216 ], [ 0.031543, 0.045018 ], [ 0.034161, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0432000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.045018 ], [ 0.034161, 0.043216 ], [ 0.031500, 0.043216 ], [ 0.031500, 0.045018 ], [ 0.034161, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0341515", "Lat": "0.0558000", "KPI": 979, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.057592 ], [ 0.036778, 0.055790 ], [ 0.034161, 0.055790 ], [ 0.034161, 0.057592 ], [ 0.036778, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0341500", "Lat": "0.0558000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.057592 ], [ 0.036778, 0.055790 ], [ 0.034161, 0.055790 ], [ 0.034161, 0.057592 ], [ 0.036778, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0367786", "Lat": "0.0558000", "KPI": 840, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.057592 ], [ 0.039396, 0.055790 ], [ 0.036778, 0.055790 ], [ 0.036778, 0.057592 ], [ 0.039396, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0367800", "Lat": "0.0558000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.057592 ], [ 0.039396, 0.055790 ], [ 0.036778, 0.055790 ], [ 0.036778, 0.057592 ], [ 0.039396, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0394056", "Lat": "0.0558000", "KPI": 68, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.057592 ], [ 0.042014, 0.055790 ], [ 0.039396, 0.055790 ], [ 0.039396, 0.057592 ], [ 0.042014, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0394100", "Lat": "0.0558000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.057592 ], [ 0.042057, 0.055790 ], [ 0.039396, 0.055790 ], [ 0.039396, 0.057592 ], [ 0.042057, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0420326", "Lat": "0.0558000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.057592 ], [ 0.044675, 0.055790 ], [ 0.042014, 0.055790 ], [ 0.042014, 0.057592 ], [ 0.044675, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420300", "Lat": "0.0558000", "KPI": 282, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.057592 ], [ 0.044675, 0.055790 ], [ 0.042014, 0.055790 ], [ 0.042014, 0.057592 ], [ 0.044675, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0341515", "Lat": "0.0540000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.055790 ], [ 0.036778, 0.053987 ], [ 0.034161, 0.053987 ], [ 0.034161, 0.055790 ], [ 0.036778, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0341500", "Lat": "0.0540000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.055790 ], [ 0.036778, 0.053987 ], [ 0.034161, 0.053987 ], [ 0.034161, 0.055790 ], [ 0.036778, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0341515", "Lat": "0.0522000", "KPI": 590, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.053987 ], [ 0.036778, 0.052185 ], [ 0.034161, 0.052185 ], [ 0.034161, 0.053987 ], [ 0.036778, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0341500", "Lat": "0.0522000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.053987 ], [ 0.036778, 0.052185 ], [ 0.034161, 0.052185 ], [ 0.034161, 0.053987 ], [ 0.036778, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0341515", "Lat": "0.0504000", "KPI": 305, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.052185 ], [ 0.036778, 0.050383 ], [ 0.034161, 0.050383 ], [ 0.034161, 0.052185 ], [ 0.036778, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0341500", "Lat": "0.0504000", "KPI": 622, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.052185 ], [ 0.036778, 0.050383 ], [ 0.034161, 0.050383 ], [ 0.034161, 0.052185 ], [ 0.036778, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0341515", "Lat": "0.0486000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.050383 ], [ 0.036778, 0.048580 ], [ 0.034161, 0.048580 ], [ 0.034161, 0.050383 ], [ 0.036778, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0341500", "Lat": "0.0486000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.050383 ], [ 0.036778, 0.048580 ], [ 0.034161, 0.048580 ], [ 0.034161, 0.050383 ], [ 0.036778, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0540000", "KPI": 817, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.055790 ], [ 0.039396, 0.053987 ], [ 0.036778, 0.053987 ], [ 0.036778, 0.055790 ], [ 0.039396, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0367800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.055790 ], [ 0.039396, 0.053987 ], [ 0.036778, 0.053987 ], [ 0.036778, 0.055790 ], [ 0.039396, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0367786", "Lat": "0.0522000", "KPI": 952, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.053987 ], [ 0.039396, 0.052185 ], [ 0.036778, 0.052185 ], [ 0.036778, 0.053987 ], [ 0.039396, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0367800", "Lat": "0.0522000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.053987 ], [ 0.039396, 0.052185 ], [ 0.036778, 0.052185 ], [ 0.036778, 0.053987 ], [ 0.039396, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0367786", "Lat": "0.0504000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.052185 ], [ 0.039396, 0.050383 ], [ 0.036778, 0.050383 ], [ 0.036778, 0.052185 ], [ 0.039396, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0367800", "Lat": "0.0504000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.052185 ], [ 0.039396, 0.050383 ], [ 0.036778, 0.050383 ], [ 0.036778, 0.052185 ], [ 0.039396, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0486000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.050383 ], [ 0.039396, 0.048580 ], [ 0.036778, 0.048580 ], [ 0.036778, 0.050383 ], [ 0.039396, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367800", "Lat": "0.0486000", "KPI": 642, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.050383 ], [ 0.039396, 0.048580 ], [ 0.036778, 0.048580 ], [ 0.036778, 0.050383 ], [ 0.039396, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0341515", "Lat": "0.0468000", "KPI": 857, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.048580 ], [ 0.036778, 0.046821 ], [ 0.034161, 0.046821 ], [ 0.034161, 0.048580 ], [ 0.036778, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0341500", "Lat": "0.0468000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.048580 ], [ 0.036778, 0.046821 ], [ 0.034161, 0.046821 ], [ 0.034161, 0.048580 ], [ 0.036778, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0341515", "Lat": "0.0450000", "KPI": 920, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.046821 ], [ 0.036778, 0.045018 ], [ 0.034161, 0.045018 ], [ 0.034161, 0.046821 ], [ 0.036778, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0341500", "Lat": "0.0450000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.046821 ], [ 0.036778, 0.045018 ], [ 0.034161, 0.045018 ], [ 0.034161, 0.046821 ], [ 0.036778, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0341515", "Lat": "0.0432000", "KPI": 511, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.045018 ], [ 0.036778, 0.043216 ], [ 0.034161, 0.043216 ], [ 0.034161, 0.045018 ], [ 0.036778, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0341500", "Lat": "0.0432000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.045018 ], [ 0.036778, 0.043216 ], [ 0.034161, 0.043216 ], [ 0.034161, 0.045018 ], [ 0.036778, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367786", "Lat": "0.0468000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.048580 ], [ 0.039396, 0.046821 ], [ 0.036778, 0.046821 ], [ 0.036778, 0.048580 ], [ 0.039396, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0367800", "Lat": "0.0468000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.048580 ], [ 0.039396, 0.046821 ], [ 0.036778, 0.046821 ], [ 0.036778, 0.048580 ], [ 0.039396, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0367786", "Lat": "0.0450000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.046821 ], [ 0.039396, 0.045018 ], [ 0.036778, 0.045018 ], [ 0.036778, 0.046821 ], [ 0.039396, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0450000", "KPI": 79, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.046821 ], [ 0.039396, 0.045018 ], [ 0.036778, 0.045018 ], [ 0.036778, 0.046821 ], [ 0.039396, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0367786", "Lat": "0.0432000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.045018 ], [ 0.039396, 0.043216 ], [ 0.036778, 0.043216 ], [ 0.036778, 0.045018 ], [ 0.039396, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0367800", "Lat": "0.0432000", "KPI": 490, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.045018 ], [ 0.039396, 0.043216 ], [ 0.036778, 0.043216 ], [ 0.036778, 0.045018 ], [ 0.039396, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0394056", "Lat": "0.0540000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.055790 ], [ 0.042014, 0.053987 ], [ 0.039396, 0.053987 ], [ 0.039396, 0.055790 ], [ 0.042014, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0394100", "Lat": "0.0540000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.055790 ], [ 0.042057, 0.053987 ], [ 0.039396, 0.053987 ], [ 0.039396, 0.055790 ], [ 0.042057, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0394056", "Lat": "0.0522000", "KPI": 654, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.053987 ], [ 0.042014, 0.052185 ], [ 0.039396, 0.052185 ], [ 0.039396, 0.053987 ], [ 0.042014, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0394100", "Lat": "0.0522000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.053987 ], [ 0.042057, 0.052185 ], [ 0.039396, 0.052185 ], [ 0.039396, 0.053987 ], [ 0.042057, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0394056", "Lat": "0.0504000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.052185 ], [ 0.042014, 0.050383 ], [ 0.039396, 0.050383 ], [ 0.039396, 0.052185 ], [ 0.042014, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0394100", "Lat": "0.0504000", "KPI": 282, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.052185 ], [ 0.042057, 0.050383 ], [ 0.039396, 0.050383 ], [ 0.039396, 0.052185 ], [ 0.042057, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0486000", "KPI": 799, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.050383 ], [ 0.042014, 0.048580 ], [ 0.039396, 0.048580 ], [ 0.039396, 0.050383 ], [ 0.042014, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0394100", "Lat": "0.0486000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.050383 ], [ 0.042057, 0.048580 ], [ 0.039396, 0.048580 ], [ 0.039396, 0.050383 ], [ 0.042057, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0540000", "KPI": 822, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.055790 ], [ 0.044675, 0.053987 ], [ 0.042014, 0.053987 ], [ 0.042014, 0.055790 ], [ 0.044675, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0420300", "Lat": "0.0540000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.055790 ], [ 0.044675, 0.053987 ], [ 0.042014, 0.053987 ], [ 0.042014, 0.055790 ], [ 0.044675, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420326", "Lat": "0.0522000", "KPI": 282, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.053987 ], [ 0.044675, 0.052185 ], [ 0.042014, 0.052185 ], [ 0.042014, 0.053987 ], [ 0.044675, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0522000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.053987 ], [ 0.044675, 0.052185 ], [ 0.042014, 0.052185 ], [ 0.042014, 0.053987 ], [ 0.044675, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0420326", "Lat": "0.0504000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.052185 ], [ 0.044675, 0.050383 ], [ 0.042014, 0.050383 ], [ 0.042014, 0.052185 ], [ 0.044675, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0420300", "Lat": "0.0504000", "KPI": 979, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.052185 ], [ 0.044675, 0.050383 ], [ 0.042014, 0.050383 ], [ 0.042014, 0.052185 ], [ 0.044675, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0420326", "Lat": "0.0486000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.050383 ], [ 0.044675, 0.048580 ], [ 0.042014, 0.048580 ], [ 0.042014, 0.050383 ], [ 0.044675, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0420300", "Lat": "0.0486000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.050383 ], [ 0.044675, 0.048580 ], [ 0.042014, 0.048580 ], [ 0.042014, 0.050383 ], [ 0.044675, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0394056", "Lat": "0.0468000", "KPI": 312, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.048580 ], [ 0.042014, 0.046821 ], [ 0.039396, 0.046821 ], [ 0.039396, 0.048580 ], [ 0.042014, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0394100", "Lat": "0.0468000", "KPI": 155, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.048580 ], [ 0.042057, 0.046821 ], [ 0.039396, 0.046821 ], [ 0.039396, 0.048580 ], [ 0.042057, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0394056", "Lat": "0.0450000", "KPI": 133, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.046821 ], [ 0.042014, 0.045018 ], [ 0.039396, 0.045018 ], [ 0.039396, 0.046821 ], [ 0.042014, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0394100", "Lat": "0.0450000", "KPI": 966, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.046821 ], [ 0.042057, 0.045018 ], [ 0.039396, 0.045018 ], [ 0.039396, 0.046821 ], [ 0.042057, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0394056", "Lat": "0.0432000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.045018 ], [ 0.042014, 0.043216 ], [ 0.039396, 0.043216 ], [ 0.039396, 0.045018 ], [ 0.042014, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0394100", "Lat": "0.0432000", "KPI": 653, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.045018 ], [ 0.042057, 0.043216 ], [ 0.039396, 0.043216 ], [ 0.039396, 0.045018 ], [ 0.042057, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0420326", "Lat": "0.0468000", "KPI": 316, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.048580 ], [ 0.044675, 0.046821 ], [ 0.042014, 0.046821 ], [ 0.042014, 0.048580 ], [ 0.044675, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0420300", "Lat": "0.0468000", "KPI": 296, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.048580 ], [ 0.044675, 0.046821 ], [ 0.042014, 0.046821 ], [ 0.042014, 0.048580 ], [ 0.044675, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0450000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.046821 ], [ 0.044675, 0.045018 ], [ 0.042014, 0.045018 ], [ 0.042014, 0.046821 ], [ 0.044675, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420300", "Lat": "0.0450000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.046821 ], [ 0.044675, 0.045018 ], [ 0.042014, 0.045018 ], [ 0.042014, 0.046821 ], [ 0.044675, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0420326", "Lat": "0.0432000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.045018 ], [ 0.044675, 0.043216 ], [ 0.042014, 0.043216 ], [ 0.042014, 0.045018 ], [ 0.044675, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0420300", "Lat": "0.0432000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.045018 ], [ 0.044675, 0.043216 ], [ 0.042014, 0.043216 ], [ 0.042014, 0.045018 ], [ 0.044675, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0000000", "Lat": "0.0414000", "KPI": 88, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.043216 ], [ 0.002618, 0.041413 ], [ 0.000000, 0.041413 ], [ 0.000000, 0.043216 ], [ 0.002618, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0000000", "Lat": "0.0414000", "KPI": 278, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.043216 ], [ 0.002618, 0.041413 ], [ 0.000000, 0.041413 ], [ 0.000000, 0.043216 ], [ 0.002618, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0000000", "Lat": "0.0396000", "KPI": 441, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.041413 ], [ 0.002618, 0.039611 ], [ 0.000000, 0.039611 ], [ 0.000000, 0.041413 ], [ 0.002618, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0000000", "Lat": "0.0396000", "KPI": 735, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.041413 ], [ 0.002618, 0.039611 ], [ 0.000000, 0.039611 ], [ 0.000000, 0.041413 ], [ 0.002618, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0378000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.039611 ], [ 0.002618, 0.037808 ], [ 0.000000, 0.037808 ], [ 0.000000, 0.039611 ], [ 0.002618, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0000000", "Lat": "0.0378000", "KPI": 526, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.039611 ], [ 0.002618, 0.037808 ], [ 0.000000, 0.037808 ], [ 0.000000, 0.039611 ], [ 0.002618, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0026270", "Lat": "0.0414000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.043216 ], [ 0.005236, 0.041413 ], [ 0.002618, 0.041413 ], [ 0.002618, 0.043216 ], [ 0.005236, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0414000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.043216 ], [ 0.005279, 0.041413 ], [ 0.002618, 0.041413 ], [ 0.002618, 0.043216 ], [ 0.005279, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0026270", "Lat": "0.0396000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.041413 ], [ 0.005236, 0.039611 ], [ 0.002618, 0.039611 ], [ 0.002618, 0.041413 ], [ 0.005236, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0026300", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.041413 ], [ 0.005279, 0.039611 ], [ 0.002618, 0.039611 ], [ 0.002618, 0.041413 ], [ 0.005279, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0378000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.039611 ], [ 0.005236, 0.037808 ], [ 0.002618, 0.037808 ], [ 0.002618, 0.039611 ], [ 0.005236, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0378000", "KPI": 611, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.039611 ], [ 0.005279, 0.037808 ], [ 0.002618, 0.037808 ], [ 0.002618, 0.039611 ], [ 0.005279, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0000000", "Lat": "0.0360000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.037808 ], [ 0.002618, 0.036006 ], [ 0.000000, 0.036006 ], [ 0.000000, 0.037808 ], [ 0.002618, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0000000", "Lat": "0.0360000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.037808 ], [ 0.002618, 0.036006 ], [ 0.000000, 0.036006 ], [ 0.000000, 0.037808 ], [ 0.002618, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0000000", "Lat": "0.0342000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.036006 ], [ 0.002618, 0.034204 ], [ 0.000000, 0.034204 ], [ 0.000000, 0.036006 ], [ 0.002618, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0000000", "Lat": "0.0342000", "KPI": 13, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.036006 ], [ 0.002618, 0.034204 ], [ 0.000000, 0.034204 ], [ 0.000000, 0.036006 ], [ 0.002618, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0000000", "Lat": "0.0324000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.034204 ], [ 0.002618, 0.032401 ], [ 0.000000, 0.032401 ], [ 0.000000, 0.034204 ], [ 0.002618, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0000000", "Lat": "0.0324000", "KPI": 229, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.034204 ], [ 0.002618, 0.032401 ], [ 0.000000, 0.032401 ], [ 0.000000, 0.034204 ], [ 0.002618, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0026270", "Lat": "0.0360000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.037808 ], [ 0.005236, 0.036006 ], [ 0.002618, 0.036006 ], [ 0.002618, 0.037808 ], [ 0.005236, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0026300", "Lat": "0.0360000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.037808 ], [ 0.005279, 0.036006 ], [ 0.002618, 0.036006 ], [ 0.002618, 0.037808 ], [ 0.005279, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0342000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.036006 ], [ 0.005236, 0.034204 ], [ 0.002618, 0.034204 ], [ 0.002618, 0.036006 ], [ 0.005236, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0026300", "Lat": "0.0342000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.036006 ], [ 0.005279, 0.034204 ], [ 0.002618, 0.034204 ], [ 0.002618, 0.036006 ], [ 0.005279, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0026270", "Lat": "0.0324000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.034204 ], [ 0.005236, 0.032401 ], [ 0.002618, 0.032401 ], [ 0.002618, 0.034204 ], [ 0.005236, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0026300", "Lat": "0.0324000", "KPI": 769, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.034204 ], [ 0.005279, 0.032401 ], [ 0.002618, 0.032401 ], [ 0.002618, 0.034204 ], [ 0.005279, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052541", "Lat": "0.0414000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.043216 ], [ 0.007896, 0.041413 ], [ 0.005236, 0.041413 ], [ 0.005236, 0.043216 ], [ 0.007896, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0052500", "Lat": "0.0414000", "KPI": 635, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.043216 ], [ 0.007896, 0.041413 ], [ 0.005236, 0.041413 ], [ 0.005236, 0.043216 ], [ 0.007896, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0052541", "Lat": "0.0396000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.041413 ], [ 0.007896, 0.039611 ], [ 0.005236, 0.039611 ], [ 0.005236, 0.041413 ], [ 0.007896, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0052500", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.041413 ], [ 0.007896, 0.039611 ], [ 0.005236, 0.039611 ], [ 0.005236, 0.041413 ], [ 0.007896, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0052541", "Lat": "0.0378000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.039611 ], [ 0.007896, 0.037808 ], [ 0.005236, 0.037808 ], [ 0.005236, 0.039611 ], [ 0.007896, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0052500", "Lat": "0.0378000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.039611 ], [ 0.007896, 0.037808 ], [ 0.005236, 0.037808 ], [ 0.005236, 0.039611 ], [ 0.007896, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0078811", "Lat": "0.0414000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.043216 ], [ 0.010514, 0.041413 ], [ 0.007896, 0.041413 ], [ 0.007896, 0.043216 ], [ 0.010514, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0078800", "Lat": "0.0414000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.043216 ], [ 0.010514, 0.041413 ], [ 0.007896, 0.041413 ], [ 0.007896, 0.043216 ], [ 0.010514, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0078811", "Lat": "0.0396000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.041413 ], [ 0.010514, 0.039611 ], [ 0.007896, 0.039611 ], [ 0.007896, 0.041413 ], [ 0.010514, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0078800", "Lat": "0.0396000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.041413 ], [ 0.010514, 0.039611 ], [ 0.007896, 0.039611 ], [ 0.007896, 0.041413 ], [ 0.010514, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0078811", "Lat": "0.0378000", "KPI": 201, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.039611 ], [ 0.010514, 0.037808 ], [ 0.007896, 0.037808 ], [ 0.007896, 0.039611 ], [ 0.010514, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0078800", "Lat": "0.0378000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.039611 ], [ 0.010514, 0.037808 ], [ 0.007896, 0.037808 ], [ 0.007896, 0.039611 ], [ 0.010514, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0360000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.037808 ], [ 0.007896, 0.036006 ], [ 0.005236, 0.036006 ], [ 0.005236, 0.037808 ], [ 0.007896, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0052500", "Lat": "0.0360000", "KPI": 145, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.037808 ], [ 0.007896, 0.036006 ], [ 0.005236, 0.036006 ], [ 0.005236, 0.037808 ], [ 0.007896, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0052541", "Lat": "0.0342000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.036006 ], [ 0.007896, 0.034204 ], [ 0.005236, 0.034204 ], [ 0.005236, 0.036006 ], [ 0.007896, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0052500", "Lat": "0.0342000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.036006 ], [ 0.007896, 0.034204 ], [ 0.005236, 0.034204 ], [ 0.005236, 0.036006 ], [ 0.007896, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0052541", "Lat": "0.0324000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.034204 ], [ 0.007896, 0.032401 ], [ 0.005236, 0.032401 ], [ 0.005236, 0.034204 ], [ 0.007896, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052500", "Lat": "0.0324000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.034204 ], [ 0.007896, 0.032401 ], [ 0.005236, 0.032401 ], [ 0.005236, 0.034204 ], [ 0.007896, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0078811", "Lat": "0.0360000", "KPI": 188, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.037808 ], [ 0.010514, 0.036006 ], [ 0.007896, 0.036006 ], [ 0.007896, 0.037808 ], [ 0.010514, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0078800", "Lat": "0.0360000", "KPI": 114, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.037808 ], [ 0.010514, 0.036006 ], [ 0.007896, 0.036006 ], [ 0.007896, 0.037808 ], [ 0.010514, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078811", "Lat": "0.0342000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.036006 ], [ 0.010514, 0.034204 ], [ 0.007896, 0.034204 ], [ 0.007896, 0.036006 ], [ 0.010514, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0078800", "Lat": "0.0342000", "KPI": 68, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.036006 ], [ 0.010514, 0.034204 ], [ 0.007896, 0.034204 ], [ 0.007896, 0.036006 ], [ 0.010514, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0324000", "KPI": 661, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.034204 ], [ 0.010514, 0.032401 ], [ 0.007896, 0.032401 ], [ 0.007896, 0.034204 ], [ 0.010514, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0078800", "Lat": "0.0324000", "KPI": 963, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.034204 ], [ 0.010514, 0.032401 ], [ 0.007896, 0.032401 ], [ 0.007896, 0.034204 ], [ 0.010514, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0000000", "Lat": "0.0306000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.032401 ], [ 0.002618, 0.030599 ], [ 0.000000, 0.030599 ], [ 0.000000, 0.032401 ], [ 0.002618, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0000000", "Lat": "0.0306000", "KPI": 422, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.032401 ], [ 0.002618, 0.030599 ], [ 0.000000, 0.030599 ], [ 0.000000, 0.032401 ], [ 0.002618, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0000000", "Lat": "0.0288000", "KPI": 520, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.030599 ], [ 0.002618, 0.028796 ], [ 0.000000, 0.028796 ], [ 0.000000, 0.030599 ], [ 0.002618, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0000000", "Lat": "0.0288000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.030599 ], [ 0.002618, 0.028796 ], [ 0.000000, 0.028796 ], [ 0.000000, 0.030599 ], [ 0.002618, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0000000", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.028796 ], [ 0.002618, 0.026994 ], [ 0.000000, 0.026994 ], [ 0.000000, 0.028796 ], [ 0.002618, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0000000", "Lat": "0.0270000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.028796 ], [ 0.002618, 0.026994 ], [ 0.000000, 0.026994 ], [ 0.000000, 0.028796 ], [ 0.002618, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0026270", "Lat": "0.0306000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.032401 ], [ 0.005236, 0.030599 ], [ 0.002618, 0.030599 ], [ 0.002618, 0.032401 ], [ 0.005236, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0026300", "Lat": "0.0306000", "KPI": 537, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.032401 ], [ 0.005279, 0.030599 ], [ 0.002618, 0.030599 ], [ 0.002618, 0.032401 ], [ 0.005279, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026270", "Lat": "0.0288000", "KPI": 675, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.030599 ], [ 0.005236, 0.028796 ], [ 0.002618, 0.028796 ], [ 0.002618, 0.030599 ], [ 0.005236, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0026300", "Lat": "0.0288000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.030599 ], [ 0.005279, 0.028796 ], [ 0.002618, 0.028796 ], [ 0.002618, 0.030599 ], [ 0.005279, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0270000", "KPI": 943, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.028796 ], [ 0.005236, 0.026994 ], [ 0.002618, 0.026994 ], [ 0.002618, 0.028796 ], [ 0.005236, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0026300", "Lat": "0.0270000", "KPI": 888, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.028796 ], [ 0.005279, 0.026994 ], [ 0.002618, 0.026994 ], [ 0.002618, 0.028796 ], [ 0.005279, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0000000", "Lat": "0.0252000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.026994 ], [ 0.002618, 0.025191 ], [ 0.000000, 0.025191 ], [ 0.000000, 0.026994 ], [ 0.002618, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0000000", "Lat": "0.0252000", "KPI": 193, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.026994 ], [ 0.002618, 0.025191 ], [ 0.000000, 0.025191 ], [ 0.000000, 0.026994 ], [ 0.002618, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0000000", "Lat": "0.0234000", "KPI": 32, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.025191 ], [ 0.002618, 0.023389 ], [ 0.000000, 0.023389 ], [ 0.000000, 0.025191 ], [ 0.002618, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0000000", "Lat": "0.0234000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.025191 ], [ 0.002618, 0.023389 ], [ 0.000000, 0.023389 ], [ 0.000000, 0.025191 ], [ 0.002618, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0000000", "Lat": "0.0216000", "KPI": 945, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.023389 ], [ 0.002618, 0.021586 ], [ 0.000000, 0.021586 ], [ 0.000000, 0.023389 ], [ 0.002618, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0000000", "Lat": "0.0216000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.023389 ], [ 0.002618, 0.021586 ], [ 0.000000, 0.021586 ], [ 0.000000, 0.023389 ], [ 0.002618, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0026270", "Lat": "0.0252000", "KPI": 445, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.026994 ], [ 0.005236, 0.025191 ], [ 0.002618, 0.025191 ], [ 0.002618, 0.026994 ], [ 0.005236, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0026300", "Lat": "0.0252000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.026994 ], [ 0.005279, 0.025191 ], [ 0.002618, 0.025191 ], [ 0.002618, 0.026994 ], [ 0.005279, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0026270", "Lat": "0.0234000", "KPI": 577, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.025191 ], [ 0.005236, 0.023389 ], [ 0.002618, 0.023389 ], [ 0.002618, 0.025191 ], [ 0.005236, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026300", "Lat": "0.0234000", "KPI": 221, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.025191 ], [ 0.005279, 0.023389 ], [ 0.002618, 0.023389 ], [ 0.002618, 0.025191 ], [ 0.005279, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0026270", "Lat": "0.0216000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.023389 ], [ 0.005236, 0.021586 ], [ 0.002618, 0.021586 ], [ 0.002618, 0.023389 ], [ 0.005236, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0026300", "Lat": "0.0216000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.023389 ], [ 0.005279, 0.021586 ], [ 0.002618, 0.021586 ], [ 0.002618, 0.023389 ], [ 0.005279, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0052541", "Lat": "0.0306000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.032401 ], [ 0.007896, 0.030599 ], [ 0.005236, 0.030599 ], [ 0.005236, 0.032401 ], [ 0.007896, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052500", "Lat": "0.0306000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.032401 ], [ 0.007896, 0.030599 ], [ 0.005236, 0.030599 ], [ 0.005236, 0.032401 ], [ 0.007896, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0052541", "Lat": "0.0288000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.030599 ], [ 0.007896, 0.028796 ], [ 0.005236, 0.028796 ], [ 0.005236, 0.030599 ], [ 0.007896, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0052500", "Lat": "0.0288000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.030599 ], [ 0.007896, 0.028796 ], [ 0.005236, 0.028796 ], [ 0.005236, 0.030599 ], [ 0.007896, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0270000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.028796 ], [ 0.007896, 0.026994 ], [ 0.005236, 0.026994 ], [ 0.005236, 0.028796 ], [ 0.007896, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0052500", "Lat": "0.0270000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.028796 ], [ 0.007896, 0.026994 ], [ 0.005236, 0.026994 ], [ 0.005236, 0.028796 ], [ 0.007896, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0078811", "Lat": "0.0306000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.032401 ], [ 0.010514, 0.030599 ], [ 0.007896, 0.030599 ], [ 0.007896, 0.032401 ], [ 0.010514, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0078800", "Lat": "0.0306000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.032401 ], [ 0.010514, 0.030599 ], [ 0.007896, 0.030599 ], [ 0.007896, 0.032401 ], [ 0.010514, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0078811", "Lat": "0.0288000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.030599 ], [ 0.010514, 0.028796 ], [ 0.007896, 0.028796 ], [ 0.007896, 0.030599 ], [ 0.010514, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0078800", "Lat": "0.0288000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.030599 ], [ 0.010514, 0.028796 ], [ 0.007896, 0.028796 ], [ 0.007896, 0.030599 ], [ 0.010514, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0078811", "Lat": "0.0270000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.028796 ], [ 0.010514, 0.026994 ], [ 0.007896, 0.026994 ], [ 0.007896, 0.028796 ], [ 0.010514, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0078800", "Lat": "0.0270000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.028796 ], [ 0.010514, 0.026994 ], [ 0.007896, 0.026994 ], [ 0.007896, 0.028796 ], [ 0.010514, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0052541", "Lat": "0.0252000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.026994 ], [ 0.007896, 0.025191 ], [ 0.005236, 0.025191 ], [ 0.005236, 0.026994 ], [ 0.007896, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0052500", "Lat": "0.0252000", "KPI": 434, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.026994 ], [ 0.007896, 0.025191 ], [ 0.005236, 0.025191 ], [ 0.005236, 0.026994 ], [ 0.007896, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0052541", "Lat": "0.0234000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.025191 ], [ 0.007896, 0.023389 ], [ 0.005236, 0.023389 ], [ 0.005236, 0.025191 ], [ 0.007896, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0052500", "Lat": "0.0234000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.025191 ], [ 0.007896, 0.023389 ], [ 0.005236, 0.023389 ], [ 0.005236, 0.025191 ], [ 0.007896, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0052541", "Lat": "0.0216000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.023389 ], [ 0.007896, 0.021586 ], [ 0.005236, 0.021586 ], [ 0.005236, 0.023389 ], [ 0.007896, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0052500", "Lat": "0.0216000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.023389 ], [ 0.007896, 0.021586 ], [ 0.005236, 0.021586 ], [ 0.005236, 0.023389 ], [ 0.007896, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0078811", "Lat": "0.0252000", "KPI": 810, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.026994 ], [ 0.010514, 0.025191 ], [ 0.007896, 0.025191 ], [ 0.007896, 0.026994 ], [ 0.010514, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0078800", "Lat": "0.0252000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.026994 ], [ 0.010514, 0.025191 ], [ 0.007896, 0.025191 ], [ 0.007896, 0.026994 ], [ 0.010514, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0234000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.025191 ], [ 0.010514, 0.023389 ], [ 0.007896, 0.023389 ], [ 0.007896, 0.025191 ], [ 0.010514, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0078800", "Lat": "0.0234000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.025191 ], [ 0.010514, 0.023389 ], [ 0.007896, 0.023389 ], [ 0.007896, 0.025191 ], [ 0.010514, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0078811", "Lat": "0.0216000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.023389 ], [ 0.010514, 0.021586 ], [ 0.007896, 0.021586 ], [ 0.007896, 0.023389 ], [ 0.010514, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0078800", "Lat": "0.0216000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.023389 ], [ 0.010514, 0.021586 ], [ 0.007896, 0.021586 ], [ 0.007896, 0.023389 ], [ 0.010514, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0105082", "Lat": "0.0414000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.043216 ], [ 0.013132, 0.041413 ], [ 0.010514, 0.041413 ], [ 0.010514, 0.043216 ], [ 0.013132, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0105100", "Lat": "0.0414000", "KPI": 971, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.043216 ], [ 0.013132, 0.041413 ], [ 0.010514, 0.041413 ], [ 0.010514, 0.043216 ], [ 0.013132, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0105082", "Lat": "0.0396000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.041413 ], [ 0.013132, 0.039611 ], [ 0.010514, 0.039611 ], [ 0.010514, 0.041413 ], [ 0.013132, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0105100", "Lat": "0.0396000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.041413 ], [ 0.013132, 0.039611 ], [ 0.010514, 0.039611 ], [ 0.010514, 0.041413 ], [ 0.013132, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0105082", "Lat": "0.0378000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.039611 ], [ 0.013132, 0.037808 ], [ 0.010514, 0.037808 ], [ 0.010514, 0.039611 ], [ 0.013132, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0378000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.039611 ], [ 0.013132, 0.037808 ], [ 0.010514, 0.037808 ], [ 0.010514, 0.039611 ], [ 0.013132, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0131352", "Lat": "0.0414000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.043216 ], [ 0.015750, 0.041413 ], [ 0.013132, 0.041413 ], [ 0.013132, 0.043216 ], [ 0.015750, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0131400", "Lat": "0.0414000", "KPI": 383, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.043216 ], [ 0.015750, 0.041413 ], [ 0.013132, 0.041413 ], [ 0.013132, 0.043216 ], [ 0.015750, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0131352", "Lat": "0.0396000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.041413 ], [ 0.015750, 0.039611 ], [ 0.013132, 0.039611 ], [ 0.013132, 0.041413 ], [ 0.015750, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0131400", "Lat": "0.0396000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.041413 ], [ 0.015750, 0.039611 ], [ 0.013132, 0.039611 ], [ 0.013132, 0.041413 ], [ 0.015750, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0131352", "Lat": "0.0378000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.039611 ], [ 0.015750, 0.037808 ], [ 0.013132, 0.037808 ], [ 0.013132, 0.039611 ], [ 0.015750, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0131400", "Lat": "0.0378000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.039611 ], [ 0.015750, 0.037808 ], [ 0.013132, 0.037808 ], [ 0.013132, 0.039611 ], [ 0.015750, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0105082", "Lat": "0.0360000", "KPI": 802, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.037808 ], [ 0.013132, 0.036006 ], [ 0.010514, 0.036006 ], [ 0.010514, 0.037808 ], [ 0.013132, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0105100", "Lat": "0.0360000", "KPI": 921, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.037808 ], [ 0.013132, 0.036006 ], [ 0.010514, 0.036006 ], [ 0.010514, 0.037808 ], [ 0.013132, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105082", "Lat": "0.0342000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.036006 ], [ 0.013132, 0.034204 ], [ 0.010514, 0.034204 ], [ 0.010514, 0.036006 ], [ 0.013132, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0105100", "Lat": "0.0342000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.036006 ], [ 0.013132, 0.034204 ], [ 0.010514, 0.034204 ], [ 0.010514, 0.036006 ], [ 0.013132, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105082", "Lat": "0.0324000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.034204 ], [ 0.013132, 0.032401 ], [ 0.010514, 0.032401 ], [ 0.010514, 0.034204 ], [ 0.013132, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0105100", "Lat": "0.0324000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.034204 ], [ 0.013132, 0.032401 ], [ 0.010514, 0.032401 ], [ 0.010514, 0.034204 ], [ 0.013132, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0131352", "Lat": "0.0360000", "KPI": 443, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.037808 ], [ 0.015750, 0.036006 ], [ 0.013132, 0.036006 ], [ 0.013132, 0.037808 ], [ 0.015750, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0131400", "Lat": "0.0360000", "KPI": 804, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.037808 ], [ 0.015750, 0.036006 ], [ 0.013132, 0.036006 ], [ 0.013132, 0.037808 ], [ 0.015750, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0131352", "Lat": "0.0342000", "KPI": 261, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.036006 ], [ 0.015750, 0.034204 ], [ 0.013132, 0.034204 ], [ 0.013132, 0.036006 ], [ 0.015750, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0131400", "Lat": "0.0342000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.036006 ], [ 0.015750, 0.034204 ], [ 0.013132, 0.034204 ], [ 0.013132, 0.036006 ], [ 0.015750, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0131352", "Lat": "0.0324000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.034204 ], [ 0.015750, 0.032401 ], [ 0.013132, 0.032401 ], [ 0.013132, 0.034204 ], [ 0.015750, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0131400", "Lat": "0.0324000", "KPI": 208, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.034204 ], [ 0.015750, 0.032401 ], [ 0.013132, 0.032401 ], [ 0.013132, 0.034204 ], [ 0.015750, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0157622", "Lat": "0.0414000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.043216 ], [ 0.018411, 0.041413 ], [ 0.015750, 0.041413 ], [ 0.015750, 0.043216 ], [ 0.018411, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0157600", "Lat": "0.0414000", "KPI": 550, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.043216 ], [ 0.018411, 0.041413 ], [ 0.015750, 0.041413 ], [ 0.015750, 0.043216 ], [ 0.018411, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0157622", "Lat": "0.0396000", "KPI": 382, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.041413 ], [ 0.018411, 0.039611 ], [ 0.015750, 0.039611 ], [ 0.015750, 0.041413 ], [ 0.018411, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0157600", "Lat": "0.0396000", "KPI": 283, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.041413 ], [ 0.018411, 0.039611 ], [ 0.015750, 0.039611 ], [ 0.015750, 0.041413 ], [ 0.018411, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0378000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.039611 ], [ 0.018411, 0.037808 ], [ 0.015750, 0.037808 ], [ 0.015750, 0.039611 ], [ 0.018411, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157600", "Lat": "0.0378000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.039611 ], [ 0.018411, 0.037808 ], [ 0.015750, 0.037808 ], [ 0.015750, 0.039611 ], [ 0.018411, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0183893", "Lat": "0.0414000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.043216 ], [ 0.021029, 0.041413 ], [ 0.018411, 0.041413 ], [ 0.018411, 0.043216 ], [ 0.021029, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0183900", "Lat": "0.0414000", "KPI": 252, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.043216 ], [ 0.021029, 0.041413 ], [ 0.018411, 0.041413 ], [ 0.018411, 0.043216 ], [ 0.021029, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0183893", "Lat": "0.0396000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.041413 ], [ 0.021029, 0.039611 ], [ 0.018411, 0.039611 ], [ 0.018411, 0.041413 ], [ 0.021029, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0183900", "Lat": "0.0396000", "KPI": 354, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.041413 ], [ 0.021029, 0.039611 ], [ 0.018411, 0.039611 ], [ 0.018411, 0.041413 ], [ 0.021029, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0183893", "Lat": "0.0378000", "KPI": 622, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.039611 ], [ 0.021029, 0.037808 ], [ 0.018411, 0.037808 ], [ 0.018411, 0.039611 ], [ 0.021029, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0183900", "Lat": "0.0378000", "KPI": 977, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.039611 ], [ 0.021029, 0.037808 ], [ 0.018411, 0.037808 ], [ 0.018411, 0.039611 ], [ 0.021029, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0157622", "Lat": "0.0360000", "KPI": 469, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.037808 ], [ 0.018411, 0.036006 ], [ 0.015750, 0.036006 ], [ 0.015750, 0.037808 ], [ 0.018411, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0157600", "Lat": "0.0360000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.037808 ], [ 0.018411, 0.036006 ], [ 0.015750, 0.036006 ], [ 0.015750, 0.037808 ], [ 0.018411, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0157622", "Lat": "0.0342000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.036006 ], [ 0.018411, 0.034204 ], [ 0.015750, 0.034204 ], [ 0.015750, 0.036006 ], [ 0.018411, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0157600", "Lat": "0.0342000", "KPI": 196, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.036006 ], [ 0.018411, 0.034204 ], [ 0.015750, 0.034204 ], [ 0.015750, 0.036006 ], [ 0.018411, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0157622", "Lat": "0.0324000", "KPI": 293, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.034204 ], [ 0.018411, 0.032401 ], [ 0.015750, 0.032401 ], [ 0.015750, 0.034204 ], [ 0.018411, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0157600", "Lat": "0.0324000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.034204 ], [ 0.018411, 0.032401 ], [ 0.015750, 0.032401 ], [ 0.015750, 0.034204 ], [ 0.018411, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0183893", "Lat": "0.0360000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.037808 ], [ 0.021029, 0.036006 ], [ 0.018411, 0.036006 ], [ 0.018411, 0.037808 ], [ 0.021029, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0183900", "Lat": "0.0360000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.037808 ], [ 0.021029, 0.036006 ], [ 0.018411, 0.036006 ], [ 0.018411, 0.037808 ], [ 0.021029, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0183893", "Lat": "0.0342000", "KPI": 247, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.036006 ], [ 0.021029, 0.034204 ], [ 0.018411, 0.034204 ], [ 0.018411, 0.036006 ], [ 0.021029, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0183900", "Lat": "0.0342000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.036006 ], [ 0.021029, 0.034204 ], [ 0.018411, 0.034204 ], [ 0.018411, 0.036006 ], [ 0.021029, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0183893", "Lat": "0.0324000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.034204 ], [ 0.021029, 0.032401 ], [ 0.018411, 0.032401 ], [ 0.018411, 0.034204 ], [ 0.021029, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0183900", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.034204 ], [ 0.021029, 0.032401 ], [ 0.018411, 0.032401 ], [ 0.018411, 0.034204 ], [ 0.021029, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0105082", "Lat": "0.0306000", "KPI": 691, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.032401 ], [ 0.013132, 0.030599 ], [ 0.010514, 0.030599 ], [ 0.010514, 0.032401 ], [ 0.013132, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0105100", "Lat": "0.0306000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.032401 ], [ 0.013132, 0.030599 ], [ 0.010514, 0.030599 ], [ 0.010514, 0.032401 ], [ 0.013132, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0288000", "KPI": 913, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.030599 ], [ 0.013132, 0.028796 ], [ 0.010514, 0.028796 ], [ 0.010514, 0.030599 ], [ 0.013132, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0105100", "Lat": "0.0288000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.030599 ], [ 0.013132, 0.028796 ], [ 0.010514, 0.028796 ], [ 0.010514, 0.030599 ], [ 0.013132, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0105082", "Lat": "0.0270000", "KPI": 823, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.028796 ], [ 0.013132, 0.026994 ], [ 0.010514, 0.026994 ], [ 0.010514, 0.028796 ], [ 0.013132, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0105100", "Lat": "0.0270000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.028796 ], [ 0.013132, 0.026994 ], [ 0.010514, 0.026994 ], [ 0.010514, 0.028796 ], [ 0.013132, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0131352", "Lat": "0.0306000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.032401 ], [ 0.015750, 0.030599 ], [ 0.013132, 0.030599 ], [ 0.013132, 0.032401 ], [ 0.015750, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0131400", "Lat": "0.0306000", "KPI": 155, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.032401 ], [ 0.015750, 0.030599 ], [ 0.013132, 0.030599 ], [ 0.013132, 0.032401 ], [ 0.015750, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0131352", "Lat": "0.0288000", "KPI": 190, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.030599 ], [ 0.015750, 0.028796 ], [ 0.013132, 0.028796 ], [ 0.013132, 0.030599 ], [ 0.015750, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0131400", "Lat": "0.0288000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.030599 ], [ 0.015750, 0.028796 ], [ 0.013132, 0.028796 ], [ 0.013132, 0.030599 ], [ 0.015750, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0131352", "Lat": "0.0270000", "KPI": 391, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.028796 ], [ 0.015750, 0.026994 ], [ 0.013132, 0.026994 ], [ 0.013132, 0.028796 ], [ 0.015750, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0131400", "Lat": "0.0270000", "KPI": 885, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.028796 ], [ 0.015750, 0.026994 ], [ 0.013132, 0.026994 ], [ 0.013132, 0.028796 ], [ 0.015750, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0105082", "Lat": "0.0252000", "KPI": 656, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.026994 ], [ 0.013132, 0.025191 ], [ 0.010514, 0.025191 ], [ 0.010514, 0.026994 ], [ 0.013132, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0105100", "Lat": "0.0252000", "KPI": 766, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.026994 ], [ 0.013132, 0.025191 ], [ 0.010514, 0.025191 ], [ 0.010514, 0.026994 ], [ 0.013132, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0105082", "Lat": "0.0234000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.025191 ], [ 0.013132, 0.023389 ], [ 0.010514, 0.023389 ], [ 0.010514, 0.025191 ], [ 0.013132, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0105100", "Lat": "0.0234000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.025191 ], [ 0.013132, 0.023389 ], [ 0.010514, 0.023389 ], [ 0.010514, 0.025191 ], [ 0.013132, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0105082", "Lat": "0.0216000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.023389 ], [ 0.013132, 0.021586 ], [ 0.010514, 0.021586 ], [ 0.010514, 0.023389 ], [ 0.013132, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0105100", "Lat": "0.0216000", "KPI": 854, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.023389 ], [ 0.013132, 0.021586 ], [ 0.010514, 0.021586 ], [ 0.010514, 0.023389 ], [ 0.013132, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0131352", "Lat": "0.0252000", "KPI": 109, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.026994 ], [ 0.015750, 0.025191 ], [ 0.013132, 0.025191 ], [ 0.013132, 0.026994 ], [ 0.015750, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0131400", "Lat": "0.0252000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.026994 ], [ 0.015750, 0.025191 ], [ 0.013132, 0.025191 ], [ 0.013132, 0.026994 ], [ 0.015750, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0131352", "Lat": "0.0234000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.025191 ], [ 0.015750, 0.023389 ], [ 0.013132, 0.023389 ], [ 0.013132, 0.025191 ], [ 0.015750, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0131400", "Lat": "0.0234000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.025191 ], [ 0.015750, 0.023389 ], [ 0.013132, 0.023389 ], [ 0.013132, 0.025191 ], [ 0.015750, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0131352", "Lat": "0.0216000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.023389 ], [ 0.015750, 0.021586 ], [ 0.013132, 0.021586 ], [ 0.013132, 0.023389 ], [ 0.015750, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0131400", "Lat": "0.0216000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.023389 ], [ 0.015750, 0.021586 ], [ 0.013132, 0.021586 ], [ 0.013132, 0.023389 ], [ 0.015750, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0157622", "Lat": "0.0306000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.032401 ], [ 0.018411, 0.030599 ], [ 0.015750, 0.030599 ], [ 0.015750, 0.032401 ], [ 0.018411, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0157600", "Lat": "0.0306000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.032401 ], [ 0.018411, 0.030599 ], [ 0.015750, 0.030599 ], [ 0.015750, 0.032401 ], [ 0.018411, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0157622", "Lat": "0.0288000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.030599 ], [ 0.018411, 0.028796 ], [ 0.015750, 0.028796 ], [ 0.015750, 0.030599 ], [ 0.018411, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0157600", "Lat": "0.0288000", "KPI": 614, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.030599 ], [ 0.018411, 0.028796 ], [ 0.015750, 0.028796 ], [ 0.015750, 0.030599 ], [ 0.018411, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0157622", "Lat": "0.0270000", "KPI": 599, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.028796 ], [ 0.018411, 0.026994 ], [ 0.015750, 0.026994 ], [ 0.015750, 0.028796 ], [ 0.018411, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157600", "Lat": "0.0270000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.028796 ], [ 0.018411, 0.026994 ], [ 0.015750, 0.026994 ], [ 0.015750, 0.028796 ], [ 0.018411, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0183893", "Lat": "0.0306000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.032401 ], [ 0.021029, 0.030599 ], [ 0.018411, 0.030599 ], [ 0.018411, 0.032401 ], [ 0.021029, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0183900", "Lat": "0.0306000", "KPI": 140, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.032401 ], [ 0.021029, 0.030599 ], [ 0.018411, 0.030599 ], [ 0.018411, 0.032401 ], [ 0.021029, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0183893", "Lat": "0.0288000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.030599 ], [ 0.021029, 0.028796 ], [ 0.018411, 0.028796 ], [ 0.018411, 0.030599 ], [ 0.021029, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0183900", "Lat": "0.0288000", "KPI": 602, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.030599 ], [ 0.021029, 0.028796 ], [ 0.018411, 0.028796 ], [ 0.018411, 0.030599 ], [ 0.021029, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0270000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.028796 ], [ 0.021029, 0.026994 ], [ 0.018411, 0.026994 ], [ 0.018411, 0.028796 ], [ 0.021029, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0183900", "Lat": "0.0270000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.028796 ], [ 0.021029, 0.026994 ], [ 0.018411, 0.026994 ], [ 0.018411, 0.028796 ], [ 0.021029, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0157622", "Lat": "0.0252000", "KPI": 696, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.026994 ], [ 0.018411, 0.025191 ], [ 0.015750, 0.025191 ], [ 0.015750, 0.026994 ], [ 0.018411, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0157600", "Lat": "0.0252000", "KPI": 643, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.026994 ], [ 0.018411, 0.025191 ], [ 0.015750, 0.025191 ], [ 0.015750, 0.026994 ], [ 0.018411, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0157622", "Lat": "0.0234000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.025191 ], [ 0.018411, 0.023389 ], [ 0.015750, 0.023389 ], [ 0.015750, 0.025191 ], [ 0.018411, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0157600", "Lat": "0.0234000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.025191 ], [ 0.018411, 0.023389 ], [ 0.015750, 0.023389 ], [ 0.015750, 0.025191 ], [ 0.018411, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0157622", "Lat": "0.0216000", "KPI": 757, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.023389 ], [ 0.018411, 0.021586 ], [ 0.015750, 0.021586 ], [ 0.015750, 0.023389 ], [ 0.018411, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0157600", "Lat": "0.0216000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.023389 ], [ 0.018411, 0.021586 ], [ 0.015750, 0.021586 ], [ 0.015750, 0.023389 ], [ 0.018411, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0183893", "Lat": "0.0252000", "KPI": 307, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.026994 ], [ 0.021029, 0.025191 ], [ 0.018411, 0.025191 ], [ 0.018411, 0.026994 ], [ 0.021029, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0183900", "Lat": "0.0252000", "KPI": 156, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.026994 ], [ 0.021029, 0.025191 ], [ 0.018411, 0.025191 ], [ 0.018411, 0.026994 ], [ 0.021029, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183893", "Lat": "0.0234000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.025191 ], [ 0.021029, 0.023389 ], [ 0.018411, 0.023389 ], [ 0.018411, 0.025191 ], [ 0.021029, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183900", "Lat": "0.0234000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.025191 ], [ 0.021029, 0.023389 ], [ 0.018411, 0.023389 ], [ 0.018411, 0.025191 ], [ 0.021029, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0183893", "Lat": "0.0216000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.023389 ], [ 0.021029, 0.021586 ], [ 0.018411, 0.021586 ], [ 0.018411, 0.023389 ], [ 0.021029, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183900", "Lat": "0.0216000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.023389 ], [ 0.021029, 0.021586 ], [ 0.018411, 0.021586 ], [ 0.018411, 0.023389 ], [ 0.021029, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0000000", "Lat": "0.0198000", "KPI": 628, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.021586 ], [ 0.002618, 0.019784 ], [ 0.000000, 0.019784 ], [ 0.000000, 0.021586 ], [ 0.002618, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0000000", "Lat": "0.0198000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.021586 ], [ 0.002618, 0.019784 ], [ 0.000000, 0.019784 ], [ 0.000000, 0.021586 ], [ 0.002618, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0180000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.019784 ], [ 0.002618, 0.017982 ], [ 0.000000, 0.017982 ], [ 0.000000, 0.019784 ], [ 0.002618, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0000000", "Lat": "0.0180000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.019784 ], [ 0.002618, 0.017982 ], [ 0.000000, 0.017982 ], [ 0.000000, 0.019784 ], [ 0.002618, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0000000", "Lat": "0.0162000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.017982 ], [ 0.002618, 0.016179 ], [ 0.000000, 0.016179 ], [ 0.000000, 0.017982 ], [ 0.002618, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0000000", "Lat": "0.0162000", "KPI": 258, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.017982 ], [ 0.002618, 0.016179 ], [ 0.000000, 0.016179 ], [ 0.000000, 0.017982 ], [ 0.002618, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0026270", "Lat": "0.0198000", "KPI": 839, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.021586 ], [ 0.005236, 0.019784 ], [ 0.002618, 0.019784 ], [ 0.002618, 0.021586 ], [ 0.005236, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0026300", "Lat": "0.0198000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.021586 ], [ 0.005279, 0.019784 ], [ 0.002618, 0.019784 ], [ 0.002618, 0.021586 ], [ 0.005279, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0026270", "Lat": "0.0180000", "KPI": 718, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.019784 ], [ 0.005236, 0.017982 ], [ 0.002618, 0.017982 ], [ 0.002618, 0.019784 ], [ 0.005236, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0026300", "Lat": "0.0180000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.019784 ], [ 0.005279, 0.017982 ], [ 0.002618, 0.017982 ], [ 0.002618, 0.019784 ], [ 0.005279, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0026270", "Lat": "0.0162000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.017982 ], [ 0.005236, 0.016179 ], [ 0.002618, 0.016179 ], [ 0.002618, 0.017982 ], [ 0.005236, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0026300", "Lat": "0.0162000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.017982 ], [ 0.005279, 0.016179 ], [ 0.002618, 0.016179 ], [ 0.002618, 0.017982 ], [ 0.005279, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0000000", "Lat": "0.0144000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.016179 ], [ 0.002618, 0.014420 ], [ 0.000000, 0.014420 ], [ 0.000000, 0.016179 ], [ 0.002618, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0000000", "Lat": "0.0144000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.016179 ], [ 0.002618, 0.014420 ], [ 0.000000, 0.014420 ], [ 0.000000, 0.016179 ], [ 0.002618, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0126000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.014420 ], [ 0.002618, 0.012617 ], [ 0.000000, 0.012617 ], [ 0.000000, 0.014420 ], [ 0.002618, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0000000", "Lat": "0.0126000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.014420 ], [ 0.002618, 0.012617 ], [ 0.000000, 0.012617 ], [ 0.000000, 0.014420 ], [ 0.002618, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0000000", "Lat": "0.0108000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.012617 ], [ 0.002618, 0.010815 ], [ 0.000000, 0.010815 ], [ 0.000000, 0.012617 ], [ 0.002618, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0000000", "Lat": "0.0108000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.012617 ], [ 0.002618, 0.010815 ], [ 0.000000, 0.010815 ], [ 0.000000, 0.012617 ], [ 0.002618, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0026270", "Lat": "0.0144000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.016179 ], [ 0.005236, 0.014420 ], [ 0.002618, 0.014420 ], [ 0.002618, 0.016179 ], [ 0.005236, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0026300", "Lat": "0.0144000", "KPI": 861, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.016179 ], [ 0.005279, 0.014420 ], [ 0.002618, 0.014420 ], [ 0.002618, 0.016179 ], [ 0.005279, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0026270", "Lat": "0.0126000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.014420 ], [ 0.005236, 0.012617 ], [ 0.002618, 0.012617 ], [ 0.002618, 0.014420 ], [ 0.005236, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0026300", "Lat": "0.0126000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.014420 ], [ 0.005279, 0.012617 ], [ 0.002618, 0.012617 ], [ 0.002618, 0.014420 ], [ 0.005279, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0026270", "Lat": "0.0108000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.012617 ], [ 0.005236, 0.010815 ], [ 0.002618, 0.010815 ], [ 0.002618, 0.012617 ], [ 0.005236, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0026300", "Lat": "0.0108000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.012617 ], [ 0.005279, 0.010815 ], [ 0.002618, 0.010815 ], [ 0.002618, 0.012617 ], [ 0.005279, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0052541", "Lat": "0.0198000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.021586 ], [ 0.007896, 0.019784 ], [ 0.005236, 0.019784 ], [ 0.005236, 0.021586 ], [ 0.007896, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0052500", "Lat": "0.0198000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.021586 ], [ 0.007896, 0.019784 ], [ 0.005236, 0.019784 ], [ 0.005236, 0.021586 ], [ 0.007896, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0052541", "Lat": "0.0180000", "KPI": 316, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.019784 ], [ 0.007896, 0.017982 ], [ 0.005236, 0.017982 ], [ 0.005236, 0.019784 ], [ 0.007896, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0052500", "Lat": "0.0180000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.019784 ], [ 0.007896, 0.017982 ], [ 0.005236, 0.017982 ], [ 0.005236, 0.019784 ], [ 0.007896, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052541", "Lat": "0.0162000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.017982 ], [ 0.007896, 0.016179 ], [ 0.005236, 0.016179 ], [ 0.005236, 0.017982 ], [ 0.007896, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0052500", "Lat": "0.0162000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.017982 ], [ 0.007896, 0.016179 ], [ 0.005236, 0.016179 ], [ 0.005236, 0.017982 ], [ 0.007896, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0078811", "Lat": "0.0198000", "KPI": 30, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.021586 ], [ 0.010514, 0.019784 ], [ 0.007896, 0.019784 ], [ 0.007896, 0.021586 ], [ 0.010514, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0078800", "Lat": "0.0198000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.021586 ], [ 0.010514, 0.019784 ], [ 0.007896, 0.019784 ], [ 0.007896, 0.021586 ], [ 0.010514, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0078811", "Lat": "0.0180000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.019784 ], [ 0.010514, 0.017982 ], [ 0.007896, 0.017982 ], [ 0.007896, 0.019784 ], [ 0.010514, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0078800", "Lat": "0.0180000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.019784 ], [ 0.010514, 0.017982 ], [ 0.007896, 0.017982 ], [ 0.007896, 0.019784 ], [ 0.010514, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0078811", "Lat": "0.0162000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.017982 ], [ 0.010514, 0.016179 ], [ 0.007896, 0.016179 ], [ 0.007896, 0.017982 ], [ 0.010514, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0078800", "Lat": "0.0162000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.017982 ], [ 0.010514, 0.016179 ], [ 0.007896, 0.016179 ], [ 0.007896, 0.017982 ], [ 0.010514, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0052541", "Lat": "0.0144000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.016179 ], [ 0.007896, 0.014420 ], [ 0.005236, 0.014420 ], [ 0.005236, 0.016179 ], [ 0.007896, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0052500", "Lat": "0.0144000", "KPI": 661, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.016179 ], [ 0.007896, 0.014420 ], [ 0.005236, 0.014420 ], [ 0.005236, 0.016179 ], [ 0.007896, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0052541", "Lat": "0.0126000", "KPI": 49, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.014420 ], [ 0.007896, 0.012617 ], [ 0.005236, 0.012617 ], [ 0.005236, 0.014420 ], [ 0.007896, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0052500", "Lat": "0.0126000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.014420 ], [ 0.007896, 0.012617 ], [ 0.005236, 0.012617 ], [ 0.005236, 0.014420 ], [ 0.007896, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0052541", "Lat": "0.0108000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.012617 ], [ 0.007896, 0.010815 ], [ 0.005236, 0.010815 ], [ 0.005236, 0.012617 ], [ 0.007896, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0052500", "Lat": "0.0108000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.012617 ], [ 0.007896, 0.010815 ], [ 0.005236, 0.010815 ], [ 0.005236, 0.012617 ], [ 0.007896, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0078811", "Lat": "0.0144000", "KPI": 857, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.016179 ], [ 0.010514, 0.014420 ], [ 0.007896, 0.014420 ], [ 0.007896, 0.016179 ], [ 0.010514, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0078800", "Lat": "0.0144000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.016179 ], [ 0.010514, 0.014420 ], [ 0.007896, 0.014420 ], [ 0.007896, 0.016179 ], [ 0.010514, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0078811", "Lat": "0.0126000", "KPI": 34, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.014420 ], [ 0.010514, 0.012617 ], [ 0.007896, 0.012617 ], [ 0.007896, 0.014420 ], [ 0.010514, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0078800", "Lat": "0.0126000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.014420 ], [ 0.010514, 0.012617 ], [ 0.007896, 0.012617 ], [ 0.007896, 0.014420 ], [ 0.010514, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0078811", "Lat": "0.0108000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.012617 ], [ 0.010514, 0.010815 ], [ 0.007896, 0.010815 ], [ 0.007896, 0.012617 ], [ 0.010514, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0078800", "Lat": "0.0108000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.012617 ], [ 0.010514, 0.010815 ], [ 0.007896, 0.010815 ], [ 0.007896, 0.012617 ], [ 0.010514, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0090000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.010815 ], [ 0.002618, 0.009012 ], [ 0.000000, 0.009012 ], [ 0.000000, 0.010815 ], [ 0.002618, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0000000", "Lat": "0.0090000", "KPI": 683, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.010815 ], [ 0.002618, 0.009012 ], [ 0.000000, 0.009012 ], [ 0.000000, 0.010815 ], [ 0.002618, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0000000", "Lat": "0.0072000", "KPI": 561, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.009012 ], [ 0.002618, 0.007210 ], [ 0.000000, 0.007210 ], [ 0.000000, 0.009012 ], [ 0.002618, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0000000", "Lat": "0.0072000", "KPI": 125, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.009012 ], [ 0.002618, 0.007210 ], [ 0.000000, 0.007210 ], [ 0.000000, 0.009012 ], [ 0.002618, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0000000", "Lat": "0.0054000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.007210 ], [ 0.002618, 0.005407 ], [ 0.000000, 0.005407 ], [ 0.000000, 0.007210 ], [ 0.002618, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0000000", "Lat": "0.0054000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.007210 ], [ 0.002618, 0.005407 ], [ 0.000000, 0.005407 ], [ 0.000000, 0.007210 ], [ 0.002618, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0026270", "Lat": "0.0090000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.010815 ], [ 0.005236, 0.009012 ], [ 0.002618, 0.009012 ], [ 0.002618, 0.010815 ], [ 0.005236, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0026300", "Lat": "0.0090000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.010815 ], [ 0.005279, 0.009012 ], [ 0.002618, 0.009012 ], [ 0.002618, 0.010815 ], [ 0.005279, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0026270", "Lat": "0.0072000", "KPI": 624, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.009012 ], [ 0.005236, 0.007210 ], [ 0.002618, 0.007210 ], [ 0.002618, 0.009012 ], [ 0.005236, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0026300", "Lat": "0.0072000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.009012 ], [ 0.005279, 0.007210 ], [ 0.002618, 0.007210 ], [ 0.002618, 0.009012 ], [ 0.005279, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0026270", "Lat": "0.0054000", "KPI": 347, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.007210 ], [ 0.005236, 0.005407 ], [ 0.002618, 0.005407 ], [ 0.002618, 0.007210 ], [ 0.005236, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0026300", "Lat": "0.0054000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.007210 ], [ 0.005279, 0.005407 ], [ 0.002618, 0.005407 ], [ 0.002618, 0.007210 ], [ 0.005279, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0000000", "Lat": "0.0036000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.005407 ], [ 0.002618, 0.003605 ], [ 0.000000, 0.003605 ], [ 0.000000, 0.005407 ], [ 0.002618, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0000000", "Lat": "0.0036000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.005407 ], [ 0.002618, 0.003605 ], [ 0.000000, 0.003605 ], [ 0.000000, 0.005407 ], [ 0.002618, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 853, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003605 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003605 ], [ 0.002618, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0000000", "Lat": "0.0018000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.003605 ], [ 0.002618, 0.001802 ], [ 0.000000, 0.001802 ], [ 0.000000, 0.003605 ], [ 0.002618, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 165, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0000000", "Lat": "0.0000000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.002618, 0.001802 ], [ 0.002618, 0.000000 ], [ 0.000000, 0.000000 ], [ 0.000000, 0.001802 ], [ 0.002618, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0026270", "Lat": "0.0036000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.005407 ], [ 0.005236, 0.003605 ], [ 0.002618, 0.003605 ], [ 0.002618, 0.005407 ], [ 0.005236, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0026300", "Lat": "0.0036000", "KPI": 827, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.005407 ], [ 0.005279, 0.003605 ], [ 0.002618, 0.003605 ], [ 0.002618, 0.005407 ], [ 0.005279, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0026270", "Lat": "0.0018000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.003605 ], [ 0.005236, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003605 ], [ 0.005236, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0026300", "Lat": "0.0018000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.003605 ], [ 0.005279, 0.001802 ], [ 0.002618, 0.001802 ], [ 0.002618, 0.003605 ], [ 0.005279, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0026270", "Lat": "0.0000000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005236, 0.001802 ], [ 0.005236, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.005236, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0026300", "Lat": "0.0000000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.005279, 0.001802 ], [ 0.005279, 0.000000 ], [ 0.002618, 0.000000 ], [ 0.002618, 0.001802 ], [ 0.005279, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0052541", "Lat": "0.0090000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.010815 ], [ 0.007896, 0.009012 ], [ 0.005236, 0.009012 ], [ 0.005236, 0.010815 ], [ 0.007896, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0052500", "Lat": "0.0090000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.010815 ], [ 0.007896, 0.009012 ], [ 0.005236, 0.009012 ], [ 0.005236, 0.010815 ], [ 0.007896, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0072000", "KPI": 633, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.009012 ], [ 0.007896, 0.007210 ], [ 0.005236, 0.007210 ], [ 0.005236, 0.009012 ], [ 0.007896, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0052500", "Lat": "0.0072000", "KPI": 759, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.009012 ], [ 0.007896, 0.007210 ], [ 0.005236, 0.007210 ], [ 0.005236, 0.009012 ], [ 0.007896, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0052541", "Lat": "0.0054000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.007210 ], [ 0.007896, 0.005407 ], [ 0.005236, 0.005407 ], [ 0.005236, 0.007210 ], [ 0.007896, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0052500", "Lat": "0.0054000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.007210 ], [ 0.007896, 0.005407 ], [ 0.005236, 0.005407 ], [ 0.005236, 0.007210 ], [ 0.007896, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0078811", "Lat": "0.0090000", "KPI": 364, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.010815 ], [ 0.010514, 0.009012 ], [ 0.007896, 0.009012 ], [ 0.007896, 0.010815 ], [ 0.010514, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0078800", "Lat": "0.0090000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.010815 ], [ 0.010514, 0.009012 ], [ 0.007896, 0.009012 ], [ 0.007896, 0.010815 ], [ 0.010514, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0078811", "Lat": "0.0072000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.009012 ], [ 0.010514, 0.007210 ], [ 0.007896, 0.007210 ], [ 0.007896, 0.009012 ], [ 0.010514, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0078800", "Lat": "0.0072000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.009012 ], [ 0.010514, 0.007210 ], [ 0.007896, 0.007210 ], [ 0.007896, 0.009012 ], [ 0.010514, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0078811", "Lat": "0.0054000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.007210 ], [ 0.010514, 0.005407 ], [ 0.007896, 0.005407 ], [ 0.007896, 0.007210 ], [ 0.010514, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0078800", "Lat": "0.0054000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.007210 ], [ 0.010514, 0.005407 ], [ 0.007896, 0.005407 ], [ 0.007896, 0.007210 ], [ 0.010514, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0052541", "Lat": "0.0036000", "KPI": 430, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.005407 ], [ 0.007896, 0.003605 ], [ 0.005236, 0.003605 ], [ 0.005236, 0.005407 ], [ 0.007896, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0052500", "Lat": "0.0036000", "KPI": 50, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.005407 ], [ 0.007896, 0.003605 ], [ 0.005236, 0.003605 ], [ 0.005236, 0.005407 ], [ 0.007896, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0052541", "Lat": "0.0018000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.003605 ], [ 0.007896, 0.001802 ], [ 0.005236, 0.001802 ], [ 0.005236, 0.003605 ], [ 0.007896, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0052500", "Lat": "0.0018000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.003605 ], [ 0.007896, 0.001802 ], [ 0.005236, 0.001802 ], [ 0.005236, 0.003605 ], [ 0.007896, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0052541", "Lat": "0.0000000", "KPI": 3, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.001802 ], [ 0.007896, 0.000000 ], [ 0.005236, 0.000000 ], [ 0.005236, 0.001802 ], [ 0.007896, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0052500", "Lat": "0.0000000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.007896, 0.001802 ], [ 0.007896, 0.000000 ], [ 0.005236, 0.000000 ], [ 0.005236, 0.001802 ], [ 0.007896, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0078811", "Lat": "0.0036000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.005407 ], [ 0.010514, 0.003605 ], [ 0.007896, 0.003605 ], [ 0.007896, 0.005407 ], [ 0.010514, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0078800", "Lat": "0.0036000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.005407 ], [ 0.010514, 0.003605 ], [ 0.007896, 0.003605 ], [ 0.007896, 0.005407 ], [ 0.010514, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0078811", "Lat": "0.0018000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.003605 ], [ 0.010514, 0.001802 ], [ 0.007896, 0.001802 ], [ 0.007896, 0.003605 ], [ 0.010514, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0078800", "Lat": "0.0018000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.003605 ], [ 0.010514, 0.001802 ], [ 0.007896, 0.001802 ], [ 0.007896, 0.003605 ], [ 0.010514, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0078811", "Lat": "0.0000000", "KPI": 698, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.001802 ], [ 0.010514, 0.000000 ], [ 0.007896, 0.000000 ], [ 0.007896, 0.001802 ], [ 0.010514, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0078800", "Lat": "0.0000000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.010514, 0.001802 ], [ 0.010514, 0.000000 ], [ 0.007896, 0.000000 ], [ 0.007896, 0.001802 ], [ 0.010514, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0105082", "Lat": "0.0198000", "KPI": 199, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.021586 ], [ 0.013132, 0.019784 ], [ 0.010514, 0.019784 ], [ 0.010514, 0.021586 ], [ 0.013132, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0105100", "Lat": "0.0198000", "KPI": 889, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.021586 ], [ 0.013132, 0.019784 ], [ 0.010514, 0.019784 ], [ 0.010514, 0.021586 ], [ 0.013132, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0105082", "Lat": "0.0180000", "KPI": 442, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.019784 ], [ 0.013132, 0.017982 ], [ 0.010514, 0.017982 ], [ 0.010514, 0.019784 ], [ 0.013132, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0105100", "Lat": "0.0180000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.019784 ], [ 0.013132, 0.017982 ], [ 0.010514, 0.017982 ], [ 0.010514, 0.019784 ], [ 0.013132, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0162000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.017982 ], [ 0.013132, 0.016179 ], [ 0.010514, 0.016179 ], [ 0.010514, 0.017982 ], [ 0.013132, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0105100", "Lat": "0.0162000", "KPI": 178, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.017982 ], [ 0.013132, 0.016179 ], [ 0.010514, 0.016179 ], [ 0.010514, 0.017982 ], [ 0.013132, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0131352", "Lat": "0.0198000", "KPI": 674, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.021586 ], [ 0.015750, 0.019784 ], [ 0.013132, 0.019784 ], [ 0.013132, 0.021586 ], [ 0.015750, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0131400", "Lat": "0.0198000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.021586 ], [ 0.015750, 0.019784 ], [ 0.013132, 0.019784 ], [ 0.013132, 0.021586 ], [ 0.015750, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0131352", "Lat": "0.0180000", "KPI": 495, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.019784 ], [ 0.015750, 0.017982 ], [ 0.013132, 0.017982 ], [ 0.013132, 0.019784 ], [ 0.015750, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0131400", "Lat": "0.0180000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.019784 ], [ 0.015750, 0.017982 ], [ 0.013132, 0.017982 ], [ 0.013132, 0.019784 ], [ 0.015750, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0131352", "Lat": "0.0162000", "KPI": 312, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.017982 ], [ 0.015750, 0.016179 ], [ 0.013132, 0.016179 ], [ 0.013132, 0.017982 ], [ 0.015750, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131400", "Lat": "0.0162000", "KPI": 412, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.017982 ], [ 0.015750, 0.016179 ], [ 0.013132, 0.016179 ], [ 0.013132, 0.017982 ], [ 0.015750, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0105082", "Lat": "0.0144000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.016179 ], [ 0.013132, 0.014420 ], [ 0.010514, 0.014420 ], [ 0.010514, 0.016179 ], [ 0.013132, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0105100", "Lat": "0.0144000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.016179 ], [ 0.013132, 0.014420 ], [ 0.010514, 0.014420 ], [ 0.010514, 0.016179 ], [ 0.013132, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105082", "Lat": "0.0126000", "KPI": 991, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.014420 ], [ 0.013132, 0.012617 ], [ 0.010514, 0.012617 ], [ 0.010514, 0.014420 ], [ 0.013132, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0105100", "Lat": "0.0126000", "KPI": 850, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.014420 ], [ 0.013132, 0.012617 ], [ 0.010514, 0.012617 ], [ 0.010514, 0.014420 ], [ 0.013132, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0105082", "Lat": "0.0108000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.012617 ], [ 0.013132, 0.010815 ], [ 0.010514, 0.010815 ], [ 0.010514, 0.012617 ], [ 0.013132, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0105100", "Lat": "0.0108000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.012617 ], [ 0.013132, 0.010815 ], [ 0.010514, 0.010815 ], [ 0.010514, 0.012617 ], [ 0.013132, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0131352", "Lat": "0.0144000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.016179 ], [ 0.015750, 0.014420 ], [ 0.013132, 0.014420 ], [ 0.013132, 0.016179 ], [ 0.015750, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0131400", "Lat": "0.0144000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.016179 ], [ 0.015750, 0.014420 ], [ 0.013132, 0.014420 ], [ 0.013132, 0.016179 ], [ 0.015750, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0131352", "Lat": "0.0126000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.014420 ], [ 0.015750, 0.012617 ], [ 0.013132, 0.012617 ], [ 0.013132, 0.014420 ], [ 0.015750, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0131400", "Lat": "0.0126000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.014420 ], [ 0.015750, 0.012617 ], [ 0.013132, 0.012617 ], [ 0.013132, 0.014420 ], [ 0.015750, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0131352", "Lat": "0.0108000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.012617 ], [ 0.015750, 0.010815 ], [ 0.013132, 0.010815 ], [ 0.013132, 0.012617 ], [ 0.015750, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0131400", "Lat": "0.0108000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.012617 ], [ 0.015750, 0.010815 ], [ 0.013132, 0.010815 ], [ 0.013132, 0.012617 ], [ 0.015750, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0157622", "Lat": "0.0198000", "KPI": 542, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.021586 ], [ 0.018411, 0.019784 ], [ 0.015750, 0.019784 ], [ 0.015750, 0.021586 ], [ 0.018411, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0157600", "Lat": "0.0198000", "KPI": 674, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.021586 ], [ 0.018411, 0.019784 ], [ 0.015750, 0.019784 ], [ 0.015750, 0.021586 ], [ 0.018411, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0157622", "Lat": "0.0180000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.019784 ], [ 0.018411, 0.017982 ], [ 0.015750, 0.017982 ], [ 0.015750, 0.019784 ], [ 0.018411, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0157600", "Lat": "0.0180000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.019784 ], [ 0.018411, 0.017982 ], [ 0.015750, 0.017982 ], [ 0.015750, 0.019784 ], [ 0.018411, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0157622", "Lat": "0.0162000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.017982 ], [ 0.018411, 0.016179 ], [ 0.015750, 0.016179 ], [ 0.015750, 0.017982 ], [ 0.018411, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0157600", "Lat": "0.0162000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.017982 ], [ 0.018411, 0.016179 ], [ 0.015750, 0.016179 ], [ 0.015750, 0.017982 ], [ 0.018411, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0183893", "Lat": "0.0198000", "KPI": 443, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.021586 ], [ 0.021029, 0.019784 ], [ 0.018411, 0.019784 ], [ 0.018411, 0.021586 ], [ 0.021029, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0183900", "Lat": "0.0198000", "KPI": 500, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.021586 ], [ 0.021029, 0.019784 ], [ 0.018411, 0.019784 ], [ 0.018411, 0.021586 ], [ 0.021029, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0183893", "Lat": "0.0180000", "KPI": 598, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.019784 ], [ 0.021029, 0.017982 ], [ 0.018411, 0.017982 ], [ 0.018411, 0.019784 ], [ 0.021029, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0183900", "Lat": "0.0180000", "KPI": 241, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.019784 ], [ 0.021029, 0.017982 ], [ 0.018411, 0.017982 ], [ 0.018411, 0.019784 ], [ 0.021029, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0183893", "Lat": "0.0162000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.017982 ], [ 0.021029, 0.016179 ], [ 0.018411, 0.016179 ], [ 0.018411, 0.017982 ], [ 0.021029, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0183900", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.017982 ], [ 0.021029, 0.016179 ], [ 0.018411, 0.016179 ], [ 0.018411, 0.017982 ], [ 0.021029, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0157622", "Lat": "0.0144000", "KPI": 132, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.016179 ], [ 0.018411, 0.014420 ], [ 0.015750, 0.014420 ], [ 0.015750, 0.016179 ], [ 0.018411, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0157600", "Lat": "0.0144000", "KPI": 954, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.016179 ], [ 0.018411, 0.014420 ], [ 0.015750, 0.014420 ], [ 0.015750, 0.016179 ], [ 0.018411, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0157622", "Lat": "0.0126000", "KPI": 233, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.014420 ], [ 0.018411, 0.012617 ], [ 0.015750, 0.012617 ], [ 0.015750, 0.014420 ], [ 0.018411, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0157600", "Lat": "0.0126000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.014420 ], [ 0.018411, 0.012617 ], [ 0.015750, 0.012617 ], [ 0.015750, 0.014420 ], [ 0.018411, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0157622", "Lat": "0.0108000", "KPI": 980, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.012617 ], [ 0.018411, 0.010815 ], [ 0.015750, 0.010815 ], [ 0.015750, 0.012617 ], [ 0.018411, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0157600", "Lat": "0.0108000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.012617 ], [ 0.018411, 0.010815 ], [ 0.015750, 0.010815 ], [ 0.015750, 0.012617 ], [ 0.018411, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0183893", "Lat": "0.0144000", "KPI": 999, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.016179 ], [ 0.021029, 0.014420 ], [ 0.018411, 0.014420 ], [ 0.018411, 0.016179 ], [ 0.021029, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0183900", "Lat": "0.0144000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.016179 ], [ 0.021029, 0.014420 ], [ 0.018411, 0.014420 ], [ 0.018411, 0.016179 ], [ 0.021029, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0126000", "KPI": 210, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.014420 ], [ 0.021029, 0.012617 ], [ 0.018411, 0.012617 ], [ 0.018411, 0.014420 ], [ 0.021029, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0183900", "Lat": "0.0126000", "KPI": 952, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.014420 ], [ 0.021029, 0.012617 ], [ 0.018411, 0.012617 ], [ 0.018411, 0.014420 ], [ 0.021029, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0183893", "Lat": "0.0108000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.012617 ], [ 0.021029, 0.010815 ], [ 0.018411, 0.010815 ], [ 0.018411, 0.012617 ], [ 0.021029, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0183900", "Lat": "0.0108000", "KPI": 397, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.012617 ], [ 0.021029, 0.010815 ], [ 0.018411, 0.010815 ], [ 0.018411, 0.012617 ], [ 0.021029, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0105082", "Lat": "0.0090000", "KPI": 218, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.010815 ], [ 0.013132, 0.009012 ], [ 0.010514, 0.009012 ], [ 0.010514, 0.010815 ], [ 0.013132, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0105100", "Lat": "0.0090000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.010815 ], [ 0.013132, 0.009012 ], [ 0.010514, 0.009012 ], [ 0.010514, 0.010815 ], [ 0.013132, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0105082", "Lat": "0.0072000", "KPI": 494, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.009012 ], [ 0.013132, 0.007210 ], [ 0.010514, 0.007210 ], [ 0.010514, 0.009012 ], [ 0.013132, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0105100", "Lat": "0.0072000", "KPI": 628, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.009012 ], [ 0.013132, 0.007210 ], [ 0.010514, 0.007210 ], [ 0.010514, 0.009012 ], [ 0.013132, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0105082", "Lat": "0.0054000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.007210 ], [ 0.013132, 0.005407 ], [ 0.010514, 0.005407 ], [ 0.010514, 0.007210 ], [ 0.013132, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0105100", "Lat": "0.0054000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.007210 ], [ 0.013132, 0.005407 ], [ 0.010514, 0.005407 ], [ 0.010514, 0.007210 ], [ 0.013132, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131352", "Lat": "0.0090000", "KPI": 211, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.010815 ], [ 0.015750, 0.009012 ], [ 0.013132, 0.009012 ], [ 0.013132, 0.010815 ], [ 0.015750, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131400", "Lat": "0.0090000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.010815 ], [ 0.015750, 0.009012 ], [ 0.013132, 0.009012 ], [ 0.013132, 0.010815 ], [ 0.015750, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0131352", "Lat": "0.0072000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.009012 ], [ 0.015750, 0.007210 ], [ 0.013132, 0.007210 ], [ 0.013132, 0.009012 ], [ 0.015750, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0131400", "Lat": "0.0072000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.009012 ], [ 0.015750, 0.007210 ], [ 0.013132, 0.007210 ], [ 0.013132, 0.009012 ], [ 0.015750, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0131352", "Lat": "0.0054000", "KPI": 265, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.007210 ], [ 0.015750, 0.005407 ], [ 0.013132, 0.005407 ], [ 0.013132, 0.007210 ], [ 0.015750, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0131400", "Lat": "0.0054000", "KPI": 372, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.007210 ], [ 0.015750, 0.005407 ], [ 0.013132, 0.005407 ], [ 0.013132, 0.007210 ], [ 0.015750, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0105082", "Lat": "0.0036000", "KPI": 327, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.005407 ], [ 0.013132, 0.003605 ], [ 0.010514, 0.003605 ], [ 0.010514, 0.005407 ], [ 0.013132, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0105100", "Lat": "0.0036000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.005407 ], [ 0.013132, 0.003605 ], [ 0.010514, 0.003605 ], [ 0.010514, 0.005407 ], [ 0.013132, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105082", "Lat": "0.0018000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.003605 ], [ 0.013132, 0.001802 ], [ 0.010514, 0.001802 ], [ 0.010514, 0.003605 ], [ 0.013132, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0105100", "Lat": "0.0018000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.003605 ], [ 0.013132, 0.001802 ], [ 0.010514, 0.001802 ], [ 0.010514, 0.003605 ], [ 0.013132, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0105082", "Lat": "0.0000000", "KPI": 147, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.001802 ], [ 0.013132, 0.000000 ], [ 0.010514, 0.000000 ], [ 0.010514, 0.001802 ], [ 0.013132, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0105100", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.013132, 0.001802 ], [ 0.013132, 0.000000 ], [ 0.010514, 0.000000 ], [ 0.010514, 0.001802 ], [ 0.013132, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0131352", "Lat": "0.0036000", "KPI": 346, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.005407 ], [ 0.015750, 0.003605 ], [ 0.013132, 0.003605 ], [ 0.013132, 0.005407 ], [ 0.015750, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0131400", "Lat": "0.0036000", "KPI": 892, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.005407 ], [ 0.015750, 0.003605 ], [ 0.013132, 0.003605 ], [ 0.013132, 0.005407 ], [ 0.015750, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0131352", "Lat": "0.0018000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.003605 ], [ 0.015750, 0.001802 ], [ 0.013132, 0.001802 ], [ 0.013132, 0.003605 ], [ 0.015750, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0131400", "Lat": "0.0018000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.003605 ], [ 0.015750, 0.001802 ], [ 0.013132, 0.001802 ], [ 0.013132, 0.003605 ], [ 0.015750, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0131352", "Lat": "0.0000000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.001802 ], [ 0.015750, 0.000000 ], [ 0.013132, 0.000000 ], [ 0.013132, 0.001802 ], [ 0.015750, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0131400", "Lat": "0.0000000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.015750, 0.001802 ], [ 0.015750, 0.000000 ], [ 0.013132, 0.000000 ], [ 0.013132, 0.001802 ], [ 0.015750, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0157622", "Lat": "0.0090000", "KPI": 530, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.010815 ], [ 0.018411, 0.009012 ], [ 0.015750, 0.009012 ], [ 0.015750, 0.010815 ], [ 0.018411, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0157600", "Lat": "0.0090000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.010815 ], [ 0.018411, 0.009012 ], [ 0.015750, 0.009012 ], [ 0.015750, 0.010815 ], [ 0.018411, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0157622", "Lat": "0.0072000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.009012 ], [ 0.018411, 0.007210 ], [ 0.015750, 0.007210 ], [ 0.015750, 0.009012 ], [ 0.018411, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157600", "Lat": "0.0072000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.009012 ], [ 0.018411, 0.007210 ], [ 0.015750, 0.007210 ], [ 0.015750, 0.009012 ], [ 0.018411, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0157622", "Lat": "0.0054000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.007210 ], [ 0.018411, 0.005407 ], [ 0.015750, 0.005407 ], [ 0.015750, 0.007210 ], [ 0.018411, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0157600", "Lat": "0.0054000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.007210 ], [ 0.018411, 0.005407 ], [ 0.015750, 0.005407 ], [ 0.015750, 0.007210 ], [ 0.018411, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183893", "Lat": "0.0090000", "KPI": 599, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.010815 ], [ 0.021029, 0.009012 ], [ 0.018411, 0.009012 ], [ 0.018411, 0.010815 ], [ 0.021029, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183900", "Lat": "0.0090000", "KPI": 13, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.010815 ], [ 0.021029, 0.009012 ], [ 0.018411, 0.009012 ], [ 0.018411, 0.010815 ], [ 0.021029, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0183893", "Lat": "0.0072000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.009012 ], [ 0.021029, 0.007210 ], [ 0.018411, 0.007210 ], [ 0.018411, 0.009012 ], [ 0.021029, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0183900", "Lat": "0.0072000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.009012 ], [ 0.021029, 0.007210 ], [ 0.018411, 0.007210 ], [ 0.018411, 0.009012 ], [ 0.021029, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0183893", "Lat": "0.0054000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.007210 ], [ 0.021029, 0.005407 ], [ 0.018411, 0.005407 ], [ 0.018411, 0.007210 ], [ 0.021029, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0183900", "Lat": "0.0054000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.007210 ], [ 0.021029, 0.005407 ], [ 0.018411, 0.005407 ], [ 0.018411, 0.007210 ], [ 0.021029, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0157622", "Lat": "0.0036000", "KPI": 507, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.005407 ], [ 0.018411, 0.003605 ], [ 0.015750, 0.003605 ], [ 0.015750, 0.005407 ], [ 0.018411, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0157600", "Lat": "0.0036000", "KPI": 433, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.005407 ], [ 0.018411, 0.003605 ], [ 0.015750, 0.003605 ], [ 0.015750, 0.005407 ], [ 0.018411, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0157622", "Lat": "0.0018000", "KPI": 932, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.003605 ], [ 0.018411, 0.001802 ], [ 0.015750, 0.001802 ], [ 0.015750, 0.003605 ], [ 0.018411, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0157600", "Lat": "0.0018000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.003605 ], [ 0.018411, 0.001802 ], [ 0.015750, 0.001802 ], [ 0.015750, 0.003605 ], [ 0.018411, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0157622", "Lat": "0.0000000", "KPI": 671, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.001802 ], [ 0.018411, 0.000000 ], [ 0.015750, 0.000000 ], [ 0.015750, 0.001802 ], [ 0.018411, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0157600", "Lat": "0.0000000", "KPI": 303, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.018411, 0.001802 ], [ 0.018411, 0.000000 ], [ 0.015750, 0.000000 ], [ 0.015750, 0.001802 ], [ 0.018411, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0183893", "Lat": "0.0036000", "KPI": 403, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.005407 ], [ 0.021029, 0.003605 ], [ 0.018411, 0.003605 ], [ 0.018411, 0.005407 ], [ 0.021029, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0183900", "Lat": "0.0036000", "KPI": 203, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.005407 ], [ 0.021029, 0.003605 ], [ 0.018411, 0.003605 ], [ 0.018411, 0.005407 ], [ 0.021029, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0183893", "Lat": "0.0018000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.003605 ], [ 0.021029, 0.001802 ], [ 0.018411, 0.001802 ], [ 0.018411, 0.003605 ], [ 0.021029, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0183900", "Lat": "0.0018000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.003605 ], [ 0.021029, 0.001802 ], [ 0.018411, 0.001802 ], [ 0.018411, 0.003605 ], [ 0.021029, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0183893", "Lat": "0.0000000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.001802 ], [ 0.021029, 0.000000 ], [ 0.018411, 0.000000 ], [ 0.018411, 0.001802 ], [ 0.021029, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0183900", "Lat": "0.0000000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021029, 0.001802 ], [ 0.021029, 0.000000 ], [ 0.018411, 0.000000 ], [ 0.018411, 0.001802 ], [ 0.021029, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0210163", "Lat": "0.0414000", "KPI": 807, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.043216 ], [ 0.023646, 0.041413 ], [ 0.021029, 0.041413 ], [ 0.021029, 0.043216 ], [ 0.023646, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0210200", "Lat": "0.0414000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.043216 ], [ 0.023646, 0.041413 ], [ 0.021029, 0.041413 ], [ 0.021029, 0.043216 ], [ 0.023646, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0210163", "Lat": "0.0396000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.041413 ], [ 0.023646, 0.039611 ], [ 0.021029, 0.039611 ], [ 0.021029, 0.041413 ], [ 0.023646, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0210200", "Lat": "0.0396000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.041413 ], [ 0.023646, 0.039611 ], [ 0.021029, 0.039611 ], [ 0.021029, 0.041413 ], [ 0.023646, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0210163", "Lat": "0.0378000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.039611 ], [ 0.023646, 0.037808 ], [ 0.021029, 0.037808 ], [ 0.021029, 0.039611 ], [ 0.023646, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0210200", "Lat": "0.0378000", "KPI": 690, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.039611 ], [ 0.023646, 0.037808 ], [ 0.021029, 0.037808 ], [ 0.021029, 0.039611 ], [ 0.023646, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0236434", "Lat": "0.0414000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.043216 ], [ 0.026264, 0.041413 ], [ 0.023646, 0.041413 ], [ 0.023646, 0.043216 ], [ 0.026264, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0236400", "Lat": "0.0414000", "KPI": 466, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.043216 ], [ 0.026264, 0.041413 ], [ 0.023646, 0.041413 ], [ 0.023646, 0.043216 ], [ 0.026264, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0236434", "Lat": "0.0396000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.041413 ], [ 0.026264, 0.039611 ], [ 0.023646, 0.039611 ], [ 0.023646, 0.041413 ], [ 0.026264, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0236400", "Lat": "0.0396000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.041413 ], [ 0.026264, 0.039611 ], [ 0.023646, 0.039611 ], [ 0.023646, 0.041413 ], [ 0.026264, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0236434", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.039611 ], [ 0.026264, 0.037808 ], [ 0.023646, 0.037808 ], [ 0.023646, 0.039611 ], [ 0.026264, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0236400", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.039611 ], [ 0.026264, 0.037808 ], [ 0.023646, 0.037808 ], [ 0.023646, 0.039611 ], [ 0.026264, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0210163", "Lat": "0.0360000", "KPI": 249, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.037808 ], [ 0.023646, 0.036006 ], [ 0.021029, 0.036006 ], [ 0.021029, 0.037808 ], [ 0.023646, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0210200", "Lat": "0.0360000", "KPI": 375, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.037808 ], [ 0.023646, 0.036006 ], [ 0.021029, 0.036006 ], [ 0.021029, 0.037808 ], [ 0.023646, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0210163", "Lat": "0.0342000", "KPI": 430, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.036006 ], [ 0.023646, 0.034204 ], [ 0.021029, 0.034204 ], [ 0.021029, 0.036006 ], [ 0.023646, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0210200", "Lat": "0.0342000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.036006 ], [ 0.023646, 0.034204 ], [ 0.021029, 0.034204 ], [ 0.021029, 0.036006 ], [ 0.023646, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0210163", "Lat": "0.0324000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.034204 ], [ 0.023646, 0.032401 ], [ 0.021029, 0.032401 ], [ 0.021029, 0.034204 ], [ 0.023646, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0324000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.034204 ], [ 0.023646, 0.032401 ], [ 0.021029, 0.032401 ], [ 0.021029, 0.034204 ], [ 0.023646, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0236434", "Lat": "0.0360000", "KPI": 956, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.037808 ], [ 0.026264, 0.036006 ], [ 0.023646, 0.036006 ], [ 0.023646, 0.037808 ], [ 0.026264, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0236400", "Lat": "0.0360000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.037808 ], [ 0.026264, 0.036006 ], [ 0.023646, 0.036006 ], [ 0.023646, 0.037808 ], [ 0.026264, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0236434", "Lat": "0.0342000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.036006 ], [ 0.026264, 0.034204 ], [ 0.023646, 0.034204 ], [ 0.023646, 0.036006 ], [ 0.026264, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0342000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.036006 ], [ 0.026264, 0.034204 ], [ 0.023646, 0.034204 ], [ 0.023646, 0.036006 ], [ 0.026264, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0236434", "Lat": "0.0324000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.034204 ], [ 0.026264, 0.032401 ], [ 0.023646, 0.032401 ], [ 0.023646, 0.034204 ], [ 0.026264, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0236400", "Lat": "0.0324000", "KPI": 884, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.034204 ], [ 0.026264, 0.032401 ], [ 0.023646, 0.032401 ], [ 0.023646, 0.034204 ], [ 0.026264, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0262704", "Lat": "0.0414000", "KPI": 983, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.043216 ], [ 0.028882, 0.041413 ], [ 0.026264, 0.041413 ], [ 0.026264, 0.043216 ], [ 0.028882, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0262700", "Lat": "0.0414000", "KPI": 210, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.043216 ], [ 0.028882, 0.041413 ], [ 0.026264, 0.041413 ], [ 0.026264, 0.043216 ], [ 0.028882, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0288974", "Lat": "0.0414000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.043216 ], [ 0.031543, 0.041413 ], [ 0.028882, 0.041413 ], [ 0.028882, 0.043216 ], [ 0.031543, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0262700", "Lat": "0.0396000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.041413 ], [ 0.028882, 0.039611 ], [ 0.026264, 0.039611 ], [ 0.026264, 0.041413 ], [ 0.028882, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0262704", "Lat": "0.0396000", "KPI": 600, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.041413 ], [ 0.028882, 0.039611 ], [ 0.026264, 0.039611 ], [ 0.026264, 0.041413 ], [ 0.028882, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0378000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.039611 ], [ 0.028882, 0.037808 ], [ 0.026264, 0.037808 ], [ 0.026264, 0.039611 ], [ 0.028882, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262704", "Lat": "0.0378000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.039611 ], [ 0.028882, 0.037808 ], [ 0.026264, 0.037808 ], [ 0.026264, 0.039611 ], [ 0.028882, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0289000", "Lat": "0.0414000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.043216 ], [ 0.031543, 0.041413 ], [ 0.028882, 0.041413 ], [ 0.028882, 0.043216 ], [ 0.031543, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0288974", "Lat": "0.0396000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.041413 ], [ 0.031543, 0.039611 ], [ 0.028882, 0.039611 ], [ 0.028882, 0.041413 ], [ 0.031543, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0315200", "Lat": "0.0414000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.043216 ], [ 0.034161, 0.041413 ], [ 0.031500, 0.041413 ], [ 0.031500, 0.043216 ], [ 0.034161, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0288974", "Lat": "0.0378000", "KPI": 130, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.039611 ], [ 0.031543, 0.037808 ], [ 0.028882, 0.037808 ], [ 0.028882, 0.039611 ], [ 0.031543, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0289000", "Lat": "0.0396000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.041413 ], [ 0.031543, 0.039611 ], [ 0.028882, 0.039611 ], [ 0.028882, 0.041413 ], [ 0.031543, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0315245", "Lat": "0.0414000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.043216 ], [ 0.034161, 0.041413 ], [ 0.031543, 0.041413 ], [ 0.031543, 0.043216 ], [ 0.034161, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0289000", "Lat": "0.0378000", "KPI": 828, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.039611 ], [ 0.031543, 0.037808 ], [ 0.028882, 0.037808 ], [ 0.028882, 0.039611 ], [ 0.031543, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0315245", "Lat": "0.0396000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.041413 ], [ 0.034161, 0.039611 ], [ 0.031543, 0.039611 ], [ 0.031543, 0.041413 ], [ 0.034161, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0315200", "Lat": "0.0396000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.041413 ], [ 0.034161, 0.039611 ], [ 0.031500, 0.039611 ], [ 0.031500, 0.041413 ], [ 0.034161, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0315245", "Lat": "0.0378000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.039611 ], [ 0.034161, 0.037808 ], [ 0.031543, 0.037808 ], [ 0.031543, 0.039611 ], [ 0.034161, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0315200", "Lat": "0.0378000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.039611 ], [ 0.034161, 0.037808 ], [ 0.031500, 0.037808 ], [ 0.031500, 0.039611 ], [ 0.034161, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0262704", "Lat": "0.0360000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.037808 ], [ 0.028882, 0.036006 ], [ 0.026264, 0.036006 ], [ 0.026264, 0.037808 ], [ 0.028882, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0262700", "Lat": "0.0360000", "KPI": 939, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.037808 ], [ 0.028882, 0.036006 ], [ 0.026264, 0.036006 ], [ 0.026264, 0.037808 ], [ 0.028882, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0288974", "Lat": "0.0360000", "KPI": 218, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.037808 ], [ 0.031543, 0.036006 ], [ 0.028882, 0.036006 ], [ 0.028882, 0.037808 ], [ 0.031543, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0262700", "Lat": "0.0342000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.036006 ], [ 0.028882, 0.034204 ], [ 0.026264, 0.034204 ], [ 0.026264, 0.036006 ], [ 0.028882, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0262704", "Lat": "0.0342000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.036006 ], [ 0.028882, 0.034204 ], [ 0.026264, 0.034204 ], [ 0.026264, 0.036006 ], [ 0.028882, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0262700", "Lat": "0.0324000", "KPI": 553, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.034204 ], [ 0.028882, 0.032401 ], [ 0.026264, 0.032401 ], [ 0.026264, 0.034204 ], [ 0.028882, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262704", "Lat": "0.0324000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.034204 ], [ 0.028882, 0.032401 ], [ 0.026264, 0.032401 ], [ 0.026264, 0.034204 ], [ 0.028882, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0289000", "Lat": "0.0360000", "KPI": 48, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.037808 ], [ 0.031543, 0.036006 ], [ 0.028882, 0.036006 ], [ 0.028882, 0.037808 ], [ 0.031543, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0288974", "Lat": "0.0342000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.036006 ], [ 0.031543, 0.034204 ], [ 0.028882, 0.034204 ], [ 0.028882, 0.036006 ], [ 0.031543, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0315200", "Lat": "0.0360000", "KPI": 433, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.037808 ], [ 0.034161, 0.036006 ], [ 0.031500, 0.036006 ], [ 0.031500, 0.037808 ], [ 0.034161, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0288974", "Lat": "0.0324000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.034204 ], [ 0.031543, 0.032401 ], [ 0.028882, 0.032401 ], [ 0.028882, 0.034204 ], [ 0.031543, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0289000", "Lat": "0.0342000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.036006 ], [ 0.031543, 0.034204 ], [ 0.028882, 0.034204 ], [ 0.028882, 0.036006 ], [ 0.031543, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0315245", "Lat": "0.0360000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.037808 ], [ 0.034161, 0.036006 ], [ 0.031543, 0.036006 ], [ 0.031543, 0.037808 ], [ 0.034161, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0289000", "Lat": "0.0324000", "KPI": 922, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.034204 ], [ 0.031543, 0.032401 ], [ 0.028882, 0.032401 ], [ 0.028882, 0.034204 ], [ 0.031543, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0315245", "Lat": "0.0342000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.036006 ], [ 0.034161, 0.034204 ], [ 0.031543, 0.034204 ], [ 0.031543, 0.036006 ], [ 0.034161, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315200", "Lat": "0.0342000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.036006 ], [ 0.034161, 0.034204 ], [ 0.031500, 0.034204 ], [ 0.031500, 0.036006 ], [ 0.034161, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0315245", "Lat": "0.0324000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.034204 ], [ 0.034161, 0.032401 ], [ 0.031543, 0.032401 ], [ 0.031543, 0.034204 ], [ 0.034161, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0315200", "Lat": "0.0324000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.034204 ], [ 0.034161, 0.032401 ], [ 0.031500, 0.032401 ], [ 0.031500, 0.034204 ], [ 0.034161, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0210163", "Lat": "0.0306000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.032401 ], [ 0.023646, 0.030599 ], [ 0.021029, 0.030599 ], [ 0.021029, 0.032401 ], [ 0.023646, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0210200", "Lat": "0.0306000", "KPI": 111, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.032401 ], [ 0.023646, 0.030599 ], [ 0.021029, 0.030599 ], [ 0.021029, 0.032401 ], [ 0.023646, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0210163", "Lat": "0.0288000", "KPI": 273, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.030599 ], [ 0.023646, 0.028796 ], [ 0.021029, 0.028796 ], [ 0.021029, 0.030599 ], [ 0.023646, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0210200", "Lat": "0.0288000", "KPI": 145, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.030599 ], [ 0.023646, 0.028796 ], [ 0.021029, 0.028796 ], [ 0.021029, 0.030599 ], [ 0.023646, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0210163", "Lat": "0.0270000", "KPI": 513, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.028796 ], [ 0.023646, 0.026994 ], [ 0.021029, 0.026994 ], [ 0.021029, 0.028796 ], [ 0.023646, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210200", "Lat": "0.0270000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.028796 ], [ 0.023646, 0.026994 ], [ 0.021029, 0.026994 ], [ 0.021029, 0.028796 ], [ 0.023646, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0236434", "Lat": "0.0306000", "KPI": 656, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.032401 ], [ 0.026264, 0.030599 ], [ 0.023646, 0.030599 ], [ 0.023646, 0.032401 ], [ 0.026264, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0236400", "Lat": "0.0306000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.032401 ], [ 0.026264, 0.030599 ], [ 0.023646, 0.030599 ], [ 0.023646, 0.032401 ], [ 0.026264, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0236434", "Lat": "0.0288000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.030599 ], [ 0.026264, 0.028796 ], [ 0.023646, 0.028796 ], [ 0.023646, 0.030599 ], [ 0.026264, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0236400", "Lat": "0.0288000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.030599 ], [ 0.026264, 0.028796 ], [ 0.023646, 0.028796 ], [ 0.023646, 0.030599 ], [ 0.026264, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236434", "Lat": "0.0270000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.028796 ], [ 0.026264, 0.026994 ], [ 0.023646, 0.026994 ], [ 0.023646, 0.028796 ], [ 0.026264, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236400", "Lat": "0.0270000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.028796 ], [ 0.026264, 0.026994 ], [ 0.023646, 0.026994 ], [ 0.023646, 0.028796 ], [ 0.026264, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0210163", "Lat": "0.0252000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.026994 ], [ 0.023646, 0.025191 ], [ 0.021029, 0.025191 ], [ 0.021029, 0.026994 ], [ 0.023646, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0210200", "Lat": "0.0252000", "KPI": 795, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.026994 ], [ 0.023646, 0.025191 ], [ 0.021029, 0.025191 ], [ 0.021029, 0.026994 ], [ 0.023646, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210163", "Lat": "0.0234000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.025191 ], [ 0.023646, 0.023389 ], [ 0.021029, 0.023389 ], [ 0.021029, 0.025191 ], [ 0.023646, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210200", "Lat": "0.0234000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.025191 ], [ 0.023646, 0.023389 ], [ 0.021029, 0.023389 ], [ 0.021029, 0.025191 ], [ 0.023646, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0210163", "Lat": "0.0216000", "KPI": 649, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.023389 ], [ 0.023646, 0.021586 ], [ 0.021029, 0.021586 ], [ 0.021029, 0.023389 ], [ 0.023646, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0210200", "Lat": "0.0216000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.023389 ], [ 0.023646, 0.021586 ], [ 0.021029, 0.021586 ], [ 0.021029, 0.023389 ], [ 0.023646, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0236434", "Lat": "0.0252000", "KPI": 148, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.026994 ], [ 0.026264, 0.025191 ], [ 0.023646, 0.025191 ], [ 0.023646, 0.026994 ], [ 0.026264, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0236400", "Lat": "0.0252000", "KPI": 140, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.026994 ], [ 0.026264, 0.025191 ], [ 0.023646, 0.025191 ], [ 0.023646, 0.026994 ], [ 0.026264, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0236434", "Lat": "0.0234000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.025191 ], [ 0.026264, 0.023389 ], [ 0.023646, 0.023389 ], [ 0.023646, 0.025191 ], [ 0.026264, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0236400", "Lat": "0.0234000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.025191 ], [ 0.026264, 0.023389 ], [ 0.023646, 0.023389 ], [ 0.023646, 0.025191 ], [ 0.026264, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0236434", "Lat": "0.0216000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.023389 ], [ 0.026264, 0.021586 ], [ 0.023646, 0.021586 ], [ 0.023646, 0.023389 ], [ 0.026264, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0236400", "Lat": "0.0216000", "KPI": 31, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.023389 ], [ 0.026264, 0.021586 ], [ 0.023646, 0.021586 ], [ 0.023646, 0.023389 ], [ 0.026264, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0262704", "Lat": "0.0306000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.032401 ], [ 0.028882, 0.030599 ], [ 0.026264, 0.030599 ], [ 0.026264, 0.032401 ], [ 0.028882, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0262700", "Lat": "0.0306000", "KPI": 27, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.032401 ], [ 0.028882, 0.030599 ], [ 0.026264, 0.030599 ], [ 0.026264, 0.032401 ], [ 0.028882, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0288974", "Lat": "0.0306000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.032401 ], [ 0.031543, 0.030599 ], [ 0.028882, 0.030599 ], [ 0.028882, 0.032401 ], [ 0.031543, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0262700", "Lat": "0.0288000", "KPI": 380, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.030599 ], [ 0.028882, 0.028796 ], [ 0.026264, 0.028796 ], [ 0.026264, 0.030599 ], [ 0.028882, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0262704", "Lat": "0.0288000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.030599 ], [ 0.028882, 0.028796 ], [ 0.026264, 0.028796 ], [ 0.026264, 0.030599 ], [ 0.028882, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262700", "Lat": "0.0270000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.028796 ], [ 0.028882, 0.026994 ], [ 0.026264, 0.026994 ], [ 0.026264, 0.028796 ], [ 0.028882, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0262704", "Lat": "0.0270000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.028796 ], [ 0.028882, 0.026994 ], [ 0.026264, 0.026994 ], [ 0.026264, 0.028796 ], [ 0.028882, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0289000", "Lat": "0.0306000", "KPI": 481, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.032401 ], [ 0.031543, 0.030599 ], [ 0.028882, 0.030599 ], [ 0.028882, 0.032401 ], [ 0.031543, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0288974", "Lat": "0.0288000", "KPI": 35, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.030599 ], [ 0.031543, 0.028796 ], [ 0.028882, 0.028796 ], [ 0.028882, 0.030599 ], [ 0.031543, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0315200", "Lat": "0.0306000", "KPI": 568, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.032401 ], [ 0.034161, 0.030599 ], [ 0.031500, 0.030599 ], [ 0.031500, 0.032401 ], [ 0.034161, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0288974", "Lat": "0.0270000", "KPI": 313, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.028796 ], [ 0.031543, 0.026994 ], [ 0.028882, 0.026994 ], [ 0.028882, 0.028796 ], [ 0.031543, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0289000", "Lat": "0.0288000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.030599 ], [ 0.031543, 0.028796 ], [ 0.028882, 0.028796 ], [ 0.028882, 0.030599 ], [ 0.031543, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0315245", "Lat": "0.0306000", "KPI": 247, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.032401 ], [ 0.034161, 0.030599 ], [ 0.031543, 0.030599 ], [ 0.031543, 0.032401 ], [ 0.034161, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0289000", "Lat": "0.0270000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.028796 ], [ 0.031543, 0.026994 ], [ 0.028882, 0.026994 ], [ 0.028882, 0.028796 ], [ 0.031543, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0315245", "Lat": "0.0288000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.030599 ], [ 0.034161, 0.028796 ], [ 0.031543, 0.028796 ], [ 0.031543, 0.030599 ], [ 0.034161, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0315200", "Lat": "0.0288000", "KPI": 606, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.030599 ], [ 0.034161, 0.028796 ], [ 0.031500, 0.028796 ], [ 0.031500, 0.030599 ], [ 0.034161, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0315245", "Lat": "0.0270000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.028796 ], [ 0.034161, 0.026994 ], [ 0.031543, 0.026994 ], [ 0.031543, 0.028796 ], [ 0.034161, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0315200", "Lat": "0.0270000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.028796 ], [ 0.034161, 0.026994 ], [ 0.031500, 0.026994 ], [ 0.031500, 0.028796 ], [ 0.034161, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0262704", "Lat": "0.0252000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.026994 ], [ 0.028882, 0.025191 ], [ 0.026264, 0.025191 ], [ 0.026264, 0.026994 ], [ 0.028882, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0262700", "Lat": "0.0252000", "KPI": 225, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.026994 ], [ 0.028882, 0.025191 ], [ 0.026264, 0.025191 ], [ 0.026264, 0.026994 ], [ 0.028882, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0288974", "Lat": "0.0252000", "KPI": 145, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.026994 ], [ 0.031543, 0.025191 ], [ 0.028882, 0.025191 ], [ 0.028882, 0.026994 ], [ 0.031543, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0234000", "KPI": 480, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.025191 ], [ 0.028882, 0.023389 ], [ 0.026264, 0.023389 ], [ 0.026264, 0.025191 ], [ 0.028882, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0262704", "Lat": "0.0234000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.025191 ], [ 0.028882, 0.023389 ], [ 0.026264, 0.023389 ], [ 0.026264, 0.025191 ], [ 0.028882, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262700", "Lat": "0.0216000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.023389 ], [ 0.028882, 0.021586 ], [ 0.026264, 0.021586 ], [ 0.026264, 0.023389 ], [ 0.028882, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262704", "Lat": "0.0216000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.023389 ], [ 0.028882, 0.021586 ], [ 0.026264, 0.021586 ], [ 0.026264, 0.023389 ], [ 0.028882, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0289000", "Lat": "0.0252000", "KPI": 570, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.026994 ], [ 0.031543, 0.025191 ], [ 0.028882, 0.025191 ], [ 0.028882, 0.026994 ], [ 0.031543, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0288974", "Lat": "0.0234000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.025191 ], [ 0.031543, 0.023389 ], [ 0.028882, 0.023389 ], [ 0.028882, 0.025191 ], [ 0.031543, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0315200", "Lat": "0.0252000", "KPI": 211, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.026994 ], [ 0.034161, 0.025191 ], [ 0.031500, 0.025191 ], [ 0.031500, 0.026994 ], [ 0.034161, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0288974", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.023389 ], [ 0.031543, 0.021586 ], [ 0.028882, 0.021586 ], [ 0.028882, 0.023389 ], [ 0.031543, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0289000", "Lat": "0.0234000", "KPI": 732, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.025191 ], [ 0.031543, 0.023389 ], [ 0.028882, 0.023389 ], [ 0.028882, 0.025191 ], [ 0.031543, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0315245", "Lat": "0.0252000", "KPI": 24, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.026994 ], [ 0.034161, 0.025191 ], [ 0.031543, 0.025191 ], [ 0.031543, 0.026994 ], [ 0.034161, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0289000", "Lat": "0.0216000", "KPI": 848, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.023389 ], [ 0.031543, 0.021586 ], [ 0.028882, 0.021586 ], [ 0.028882, 0.023389 ], [ 0.031543, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0315245", "Lat": "0.0234000", "KPI": 411, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.025191 ], [ 0.034161, 0.023389 ], [ 0.031543, 0.023389 ], [ 0.031543, 0.025191 ], [ 0.034161, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0315200", "Lat": "0.0234000", "KPI": 625, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.025191 ], [ 0.034161, 0.023389 ], [ 0.031500, 0.023389 ], [ 0.031500, 0.025191 ], [ 0.034161, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0216000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.023389 ], [ 0.034161, 0.021586 ], [ 0.031543, 0.021586 ], [ 0.031543, 0.023389 ], [ 0.034161, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0315200", "Lat": "0.0216000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.023389 ], [ 0.034161, 0.021586 ], [ 0.031500, 0.021586 ], [ 0.031500, 0.023389 ], [ 0.034161, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0341515", "Lat": "0.0414000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.043216 ], [ 0.036778, 0.041413 ], [ 0.034161, 0.041413 ], [ 0.034161, 0.043216 ], [ 0.036778, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0341500", "Lat": "0.0414000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.043216 ], [ 0.036778, 0.041413 ], [ 0.034161, 0.041413 ], [ 0.034161, 0.043216 ], [ 0.036778, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0341515", "Lat": "0.0396000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.041413 ], [ 0.036778, 0.039611 ], [ 0.034161, 0.039611 ], [ 0.034161, 0.041413 ], [ 0.036778, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0341500", "Lat": "0.0396000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.041413 ], [ 0.036778, 0.039611 ], [ 0.034161, 0.039611 ], [ 0.034161, 0.041413 ], [ 0.036778, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341515", "Lat": "0.0378000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.039611 ], [ 0.036778, 0.037808 ], [ 0.034161, 0.037808 ], [ 0.034161, 0.039611 ], [ 0.036778, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0341500", "Lat": "0.0378000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.039611 ], [ 0.036778, 0.037808 ], [ 0.034161, 0.037808 ], [ 0.034161, 0.039611 ], [ 0.036778, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0367786", "Lat": "0.0414000", "KPI": 50, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.043216 ], [ 0.039396, 0.041413 ], [ 0.036778, 0.041413 ], [ 0.036778, 0.043216 ], [ 0.039396, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0414000", "KPI": 548, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.043216 ], [ 0.039396, 0.041413 ], [ 0.036778, 0.041413 ], [ 0.036778, 0.043216 ], [ 0.039396, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367786", "Lat": "0.0396000", "KPI": 296, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.041413 ], [ 0.039396, 0.039611 ], [ 0.036778, 0.039611 ], [ 0.036778, 0.041413 ], [ 0.039396, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0367800", "Lat": "0.0396000", "KPI": 289, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.041413 ], [ 0.039396, 0.039611 ], [ 0.036778, 0.039611 ], [ 0.036778, 0.041413 ], [ 0.039396, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0367786", "Lat": "0.0378000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.039611 ], [ 0.039396, 0.037808 ], [ 0.036778, 0.037808 ], [ 0.036778, 0.039611 ], [ 0.039396, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0378000", "KPI": 350, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.039611 ], [ 0.039396, 0.037808 ], [ 0.036778, 0.037808 ], [ 0.036778, 0.039611 ], [ 0.039396, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341515", "Lat": "0.0360000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.037808 ], [ 0.036778, 0.036006 ], [ 0.034161, 0.036006 ], [ 0.034161, 0.037808 ], [ 0.036778, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0341500", "Lat": "0.0360000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.037808 ], [ 0.036778, 0.036006 ], [ 0.034161, 0.036006 ], [ 0.034161, 0.037808 ], [ 0.036778, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0341515", "Lat": "0.0342000", "KPI": 564, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.036006 ], [ 0.036778, 0.034204 ], [ 0.034161, 0.034204 ], [ 0.034161, 0.036006 ], [ 0.036778, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0341500", "Lat": "0.0342000", "KPI": 92, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.036006 ], [ 0.036778, 0.034204 ], [ 0.034161, 0.034204 ], [ 0.034161, 0.036006 ], [ 0.036778, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0341515", "Lat": "0.0324000", "KPI": 217, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.034204 ], [ 0.036778, 0.032401 ], [ 0.034161, 0.032401 ], [ 0.034161, 0.034204 ], [ 0.036778, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0341500", "Lat": "0.0324000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.034204 ], [ 0.036778, 0.032401 ], [ 0.034161, 0.032401 ], [ 0.034161, 0.034204 ], [ 0.036778, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0367786", "Lat": "0.0360000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.037808 ], [ 0.039396, 0.036006 ], [ 0.036778, 0.036006 ], [ 0.036778, 0.037808 ], [ 0.039396, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0367800", "Lat": "0.0360000", "KPI": 469, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.037808 ], [ 0.039396, 0.036006 ], [ 0.036778, 0.036006 ], [ 0.036778, 0.037808 ], [ 0.039396, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0367786", "Lat": "0.0342000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.036006 ], [ 0.039396, 0.034204 ], [ 0.036778, 0.034204 ], [ 0.036778, 0.036006 ], [ 0.039396, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0367800", "Lat": "0.0342000", "KPI": 938, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.036006 ], [ 0.039396, 0.034204 ], [ 0.036778, 0.034204 ], [ 0.036778, 0.036006 ], [ 0.039396, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0367786", "Lat": "0.0324000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.034204 ], [ 0.039396, 0.032401 ], [ 0.036778, 0.032401 ], [ 0.036778, 0.034204 ], [ 0.039396, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0324000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.034204 ], [ 0.039396, 0.032401 ], [ 0.036778, 0.032401 ], [ 0.036778, 0.034204 ], [ 0.039396, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0394056", "Lat": "0.0414000", "KPI": 587, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.043216 ], [ 0.042014, 0.041413 ], [ 0.039396, 0.041413 ], [ 0.039396, 0.043216 ], [ 0.042014, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0394100", "Lat": "0.0414000", "KPI": 291, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.043216 ], [ 0.042057, 0.041413 ], [ 0.039396, 0.041413 ], [ 0.039396, 0.043216 ], [ 0.042057, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0396000", "KPI": 235, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.041413 ], [ 0.042014, 0.039611 ], [ 0.039396, 0.039611 ], [ 0.039396, 0.041413 ], [ 0.042014, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0394100", "Lat": "0.0396000", "KPI": 423, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.041413 ], [ 0.042057, 0.039611 ], [ 0.039396, 0.039611 ], [ 0.039396, 0.041413 ], [ 0.042057, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0378000", "KPI": 751, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.039611 ], [ 0.042014, 0.037808 ], [ 0.039396, 0.037808 ], [ 0.039396, 0.039611 ], [ 0.042014, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0394100", "Lat": "0.0378000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.039611 ], [ 0.042057, 0.037808 ], [ 0.039396, 0.037808 ], [ 0.039396, 0.039611 ], [ 0.042057, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0420326", "Lat": "0.0414000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.043216 ], [ 0.044675, 0.041413 ], [ 0.042014, 0.041413 ], [ 0.042014, 0.043216 ], [ 0.044675, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0420300", "Lat": "0.0414000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.043216 ], [ 0.044675, 0.041413 ], [ 0.042014, 0.041413 ], [ 0.042014, 0.043216 ], [ 0.044675, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0420326", "Lat": "0.0396000", "KPI": 465, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.041413 ], [ 0.044675, 0.039611 ], [ 0.042014, 0.039611 ], [ 0.042014, 0.041413 ], [ 0.044675, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0420300", "Lat": "0.0396000", "KPI": 639, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.041413 ], [ 0.044675, 0.039611 ], [ 0.042014, 0.039611 ], [ 0.042014, 0.041413 ], [ 0.044675, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0420326", "Lat": "0.0378000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.039611 ], [ 0.044675, 0.037808 ], [ 0.042014, 0.037808 ], [ 0.042014, 0.039611 ], [ 0.044675, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420300", "Lat": "0.0378000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.039611 ], [ 0.044675, 0.037808 ], [ 0.042014, 0.037808 ], [ 0.042014, 0.039611 ], [ 0.044675, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0394056", "Lat": "0.0360000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.037808 ], [ 0.042014, 0.036006 ], [ 0.039396, 0.036006 ], [ 0.039396, 0.037808 ], [ 0.042014, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0394100", "Lat": "0.0360000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.037808 ], [ 0.042057, 0.036006 ], [ 0.039396, 0.036006 ], [ 0.039396, 0.037808 ], [ 0.042057, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0342000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.036006 ], [ 0.042014, 0.034204 ], [ 0.039396, 0.034204 ], [ 0.039396, 0.036006 ], [ 0.042014, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0394100", "Lat": "0.0342000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.036006 ], [ 0.042057, 0.034204 ], [ 0.039396, 0.034204 ], [ 0.039396, 0.036006 ], [ 0.042057, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0394056", "Lat": "0.0324000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.034204 ], [ 0.042014, 0.032401 ], [ 0.039396, 0.032401 ], [ 0.039396, 0.034204 ], [ 0.042014, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0394100", "Lat": "0.0324000", "KPI": 193, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.034204 ], [ 0.042057, 0.032401 ], [ 0.039396, 0.032401 ], [ 0.039396, 0.034204 ], [ 0.042057, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0420326", "Lat": "0.0360000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.037808 ], [ 0.044675, 0.036006 ], [ 0.042014, 0.036006 ], [ 0.042014, 0.037808 ], [ 0.044675, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0420300", "Lat": "0.0360000", "KPI": 530, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.037808 ], [ 0.044675, 0.036006 ], [ 0.042014, 0.036006 ], [ 0.042014, 0.037808 ], [ 0.044675, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0420326", "Lat": "0.0342000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.036006 ], [ 0.044675, 0.034204 ], [ 0.042014, 0.034204 ], [ 0.042014, 0.036006 ], [ 0.044675, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0342000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.036006 ], [ 0.044675, 0.034204 ], [ 0.042014, 0.034204 ], [ 0.042014, 0.036006 ], [ 0.044675, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0420326", "Lat": "0.0324000", "KPI": 18, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.034204 ], [ 0.044675, 0.032401 ], [ 0.042014, 0.032401 ], [ 0.042014, 0.034204 ], [ 0.044675, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0324000", "KPI": 477, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.034204 ], [ 0.044675, 0.032401 ], [ 0.042014, 0.032401 ], [ 0.042014, 0.034204 ], [ 0.044675, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0341515", "Lat": "0.0306000", "KPI": 607, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.032401 ], [ 0.036778, 0.030599 ], [ 0.034161, 0.030599 ], [ 0.034161, 0.032401 ], [ 0.036778, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0341500", "Lat": "0.0306000", "KPI": 284, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.032401 ], [ 0.036778, 0.030599 ], [ 0.034161, 0.030599 ], [ 0.034161, 0.032401 ], [ 0.036778, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0341515", "Lat": "0.0288000", "KPI": 67, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.030599 ], [ 0.036778, 0.028796 ], [ 0.034161, 0.028796 ], [ 0.034161, 0.030599 ], [ 0.036778, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0341500", "Lat": "0.0288000", "KPI": 794, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.030599 ], [ 0.036778, 0.028796 ], [ 0.034161, 0.028796 ], [ 0.034161, 0.030599 ], [ 0.036778, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0341515", "Lat": "0.0270000", "KPI": 501, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.028796 ], [ 0.036778, 0.026994 ], [ 0.034161, 0.026994 ], [ 0.034161, 0.028796 ], [ 0.036778, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0341500", "Lat": "0.0270000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.028796 ], [ 0.036778, 0.026994 ], [ 0.034161, 0.026994 ], [ 0.034161, 0.028796 ], [ 0.036778, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0367786", "Lat": "0.0306000", "KPI": 716, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.032401 ], [ 0.039396, 0.030599 ], [ 0.036778, 0.030599 ], [ 0.036778, 0.032401 ], [ 0.039396, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0367800", "Lat": "0.0306000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.032401 ], [ 0.039396, 0.030599 ], [ 0.036778, 0.030599 ], [ 0.036778, 0.032401 ], [ 0.039396, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0367786", "Lat": "0.0288000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.030599 ], [ 0.039396, 0.028796 ], [ 0.036778, 0.028796 ], [ 0.036778, 0.030599 ], [ 0.039396, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0367800", "Lat": "0.0288000", "KPI": 914, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.030599 ], [ 0.039396, 0.028796 ], [ 0.036778, 0.028796 ], [ 0.036778, 0.030599 ], [ 0.039396, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0367786", "Lat": "0.0270000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.028796 ], [ 0.039396, 0.026994 ], [ 0.036778, 0.026994 ], [ 0.036778, 0.028796 ], [ 0.039396, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0367800", "Lat": "0.0270000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.028796 ], [ 0.039396, 0.026994 ], [ 0.036778, 0.026994 ], [ 0.036778, 0.028796 ], [ 0.039396, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0341515", "Lat": "0.0252000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.026994 ], [ 0.036778, 0.025191 ], [ 0.034161, 0.025191 ], [ 0.034161, 0.026994 ], [ 0.036778, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0341500", "Lat": "0.0252000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.026994 ], [ 0.036778, 0.025191 ], [ 0.034161, 0.025191 ], [ 0.034161, 0.026994 ], [ 0.036778, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0341515", "Lat": "0.0234000", "KPI": 483, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.025191 ], [ 0.036778, 0.023389 ], [ 0.034161, 0.023389 ], [ 0.034161, 0.025191 ], [ 0.036778, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0341500", "Lat": "0.0234000", "KPI": 495, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.025191 ], [ 0.036778, 0.023389 ], [ 0.034161, 0.023389 ], [ 0.034161, 0.025191 ], [ 0.036778, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0341515", "Lat": "0.0216000", "KPI": 736, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.023389 ], [ 0.036778, 0.021586 ], [ 0.034161, 0.021586 ], [ 0.034161, 0.023389 ], [ 0.036778, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0341500", "Lat": "0.0216000", "KPI": 810, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.023389 ], [ 0.036778, 0.021586 ], [ 0.034161, 0.021586 ], [ 0.034161, 0.023389 ], [ 0.036778, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0367786", "Lat": "0.0252000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.026994 ], [ 0.039396, 0.025191 ], [ 0.036778, 0.025191 ], [ 0.036778, 0.026994 ], [ 0.039396, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0367800", "Lat": "0.0252000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.026994 ], [ 0.039396, 0.025191 ], [ 0.036778, 0.025191 ], [ 0.036778, 0.026994 ], [ 0.039396, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0367786", "Lat": "0.0234000", "KPI": 909, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.025191 ], [ 0.039396, 0.023389 ], [ 0.036778, 0.023389 ], [ 0.036778, 0.025191 ], [ 0.039396, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0234000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.025191 ], [ 0.039396, 0.023389 ], [ 0.036778, 0.023389 ], [ 0.036778, 0.025191 ], [ 0.039396, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0367786", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.023389 ], [ 0.039396, 0.021586 ], [ 0.036778, 0.021586 ], [ 0.036778, 0.023389 ], [ 0.039396, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0367800", "Lat": "0.0216000", "KPI": 971, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.023389 ], [ 0.039396, 0.021586 ], [ 0.036778, 0.021586 ], [ 0.036778, 0.023389 ], [ 0.039396, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0394056", "Lat": "0.0306000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.032401 ], [ 0.042014, 0.030599 ], [ 0.039396, 0.030599 ], [ 0.039396, 0.032401 ], [ 0.042014, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0394100", "Lat": "0.0306000", "KPI": 384, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.032401 ], [ 0.042057, 0.030599 ], [ 0.039396, 0.030599 ], [ 0.039396, 0.032401 ], [ 0.042057, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0288000", "KPI": 335, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.030599 ], [ 0.042014, 0.028796 ], [ 0.039396, 0.028796 ], [ 0.039396, 0.030599 ], [ 0.042014, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0394100", "Lat": "0.0288000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.030599 ], [ 0.042057, 0.028796 ], [ 0.039396, 0.028796 ], [ 0.039396, 0.030599 ], [ 0.042057, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0394056", "Lat": "0.0270000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.028796 ], [ 0.042014, 0.026994 ], [ 0.039396, 0.026994 ], [ 0.039396, 0.028796 ], [ 0.042014, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0394100", "Lat": "0.0270000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.028796 ], [ 0.042057, 0.026994 ], [ 0.039396, 0.026994 ], [ 0.039396, 0.028796 ], [ 0.042057, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0420326", "Lat": "0.0306000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.032401 ], [ 0.044675, 0.030599 ], [ 0.042014, 0.030599 ], [ 0.042014, 0.032401 ], [ 0.044675, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0420300", "Lat": "0.0306000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.032401 ], [ 0.044675, 0.030599 ], [ 0.042014, 0.030599 ], [ 0.042014, 0.032401 ], [ 0.044675, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0420326", "Lat": "0.0288000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.030599 ], [ 0.044675, 0.028796 ], [ 0.042014, 0.028796 ], [ 0.042014, 0.030599 ], [ 0.044675, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0288000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.030599 ], [ 0.044675, 0.028796 ], [ 0.042014, 0.028796 ], [ 0.042014, 0.030599 ], [ 0.044675, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0270000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.028796 ], [ 0.044675, 0.026994 ], [ 0.042014, 0.026994 ], [ 0.042014, 0.028796 ], [ 0.044675, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0420300", "Lat": "0.0270000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.028796 ], [ 0.044675, 0.026994 ], [ 0.042014, 0.026994 ], [ 0.042014, 0.028796 ], [ 0.044675, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0394056", "Lat": "0.0252000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.026994 ], [ 0.042014, 0.025191 ], [ 0.039396, 0.025191 ], [ 0.039396, 0.026994 ], [ 0.042014, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0394100", "Lat": "0.0252000", "KPI": 697, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.026994 ], [ 0.042057, 0.025191 ], [ 0.039396, 0.025191 ], [ 0.039396, 0.026994 ], [ 0.042057, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394056", "Lat": "0.0234000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.025191 ], [ 0.042014, 0.023389 ], [ 0.039396, 0.023389 ], [ 0.039396, 0.025191 ], [ 0.042014, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0394100", "Lat": "0.0234000", "KPI": 216, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.025191 ], [ 0.042057, 0.023389 ], [ 0.039396, 0.023389 ], [ 0.039396, 0.025191 ], [ 0.042057, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0394056", "Lat": "0.0216000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.023389 ], [ 0.042014, 0.021586 ], [ 0.039396, 0.021586 ], [ 0.039396, 0.023389 ], [ 0.042014, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0394100", "Lat": "0.0216000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.023389 ], [ 0.042057, 0.021586 ], [ 0.039396, 0.021586 ], [ 0.039396, 0.023389 ], [ 0.042057, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0420326", "Lat": "0.0252000", "KPI": 378, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.026994 ], [ 0.044675, 0.025191 ], [ 0.042014, 0.025191 ], [ 0.042014, 0.026994 ], [ 0.044675, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0420300", "Lat": "0.0252000", "KPI": 332, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.026994 ], [ 0.044675, 0.025191 ], [ 0.042014, 0.025191 ], [ 0.042014, 0.026994 ], [ 0.044675, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0420326", "Lat": "0.0234000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.025191 ], [ 0.044675, 0.023389 ], [ 0.042014, 0.023389 ], [ 0.042014, 0.025191 ], [ 0.044675, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0420300", "Lat": "0.0234000", "KPI": 44, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.025191 ], [ 0.044675, 0.023389 ], [ 0.042014, 0.023389 ], [ 0.042014, 0.025191 ], [ 0.044675, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0420326", "Lat": "0.0216000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.023389 ], [ 0.044675, 0.021586 ], [ 0.042014, 0.021586 ], [ 0.042014, 0.023389 ], [ 0.044675, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0420300", "Lat": "0.0216000", "KPI": 56, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.023389 ], [ 0.044675, 0.021586 ], [ 0.042014, 0.021586 ], [ 0.042014, 0.023389 ], [ 0.044675, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210163", "Lat": "0.0198000", "KPI": 103, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.021586 ], [ 0.023646, 0.019784 ], [ 0.021029, 0.019784 ], [ 0.021029, 0.021586 ], [ 0.023646, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210200", "Lat": "0.0198000", "KPI": 386, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.021586 ], [ 0.023646, 0.019784 ], [ 0.021029, 0.019784 ], [ 0.021029, 0.021586 ], [ 0.023646, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210163", "Lat": "0.0180000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.019784 ], [ 0.023646, 0.017982 ], [ 0.021029, 0.017982 ], [ 0.021029, 0.019784 ], [ 0.023646, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0210200", "Lat": "0.0180000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.019784 ], [ 0.023646, 0.017982 ], [ 0.021029, 0.017982 ], [ 0.021029, 0.019784 ], [ 0.023646, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0210163", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.017982 ], [ 0.023646, 0.016179 ], [ 0.021029, 0.016179 ], [ 0.021029, 0.017982 ], [ 0.023646, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0210200", "Lat": "0.0162000", "KPI": 449, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.017982 ], [ 0.023646, 0.016179 ], [ 0.021029, 0.016179 ], [ 0.021029, 0.017982 ], [ 0.023646, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0236434", "Lat": "0.0198000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.021586 ], [ 0.026264, 0.019784 ], [ 0.023646, 0.019784 ], [ 0.023646, 0.021586 ], [ 0.026264, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236400", "Lat": "0.0198000", "KPI": 549, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.021586 ], [ 0.026264, 0.019784 ], [ 0.023646, 0.019784 ], [ 0.023646, 0.021586 ], [ 0.026264, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0236434", "Lat": "0.0180000", "KPI": 75, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.019784 ], [ 0.026264, 0.017982 ], [ 0.023646, 0.017982 ], [ 0.023646, 0.019784 ], [ 0.026264, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0236400", "Lat": "0.0180000", "KPI": 561, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.019784 ], [ 0.026264, 0.017982 ], [ 0.023646, 0.017982 ], [ 0.023646, 0.019784 ], [ 0.026264, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0162000", "KPI": 188, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.017982 ], [ 0.026264, 0.016179 ], [ 0.023646, 0.016179 ], [ 0.023646, 0.017982 ], [ 0.026264, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0236400", "Lat": "0.0162000", "KPI": 781, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.017982 ], [ 0.026264, 0.016179 ], [ 0.023646, 0.016179 ], [ 0.023646, 0.017982 ], [ 0.026264, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0210163", "Lat": "0.0144000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.016179 ], [ 0.023646, 0.014420 ], [ 0.021029, 0.014420 ], [ 0.021029, 0.016179 ], [ 0.023646, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0210200", "Lat": "0.0144000", "KPI": 419, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.016179 ], [ 0.023646, 0.014420 ], [ 0.021029, 0.014420 ], [ 0.021029, 0.016179 ], [ 0.023646, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0210163", "Lat": "0.0126000", "KPI": 603, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.014420 ], [ 0.023646, 0.012617 ], [ 0.021029, 0.012617 ], [ 0.021029, 0.014420 ], [ 0.023646, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0210200", "Lat": "0.0126000", "KPI": 275, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.014420 ], [ 0.023646, 0.012617 ], [ 0.021029, 0.012617 ], [ 0.021029, 0.014420 ], [ 0.023646, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0210163", "Lat": "0.0108000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.012617 ], [ 0.023646, 0.010815 ], [ 0.021029, 0.010815 ], [ 0.021029, 0.012617 ], [ 0.023646, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0210200", "Lat": "0.0108000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.012617 ], [ 0.023646, 0.010815 ], [ 0.021029, 0.010815 ], [ 0.021029, 0.012617 ], [ 0.023646, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0236434", "Lat": "0.0144000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.016179 ], [ 0.026264, 0.014420 ], [ 0.023646, 0.014420 ], [ 0.023646, 0.016179 ], [ 0.026264, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0236400", "Lat": "0.0144000", "KPI": 219, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.016179 ], [ 0.026264, 0.014420 ], [ 0.023646, 0.014420 ], [ 0.023646, 0.016179 ], [ 0.026264, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0236434", "Lat": "0.0126000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.014420 ], [ 0.026264, 0.012617 ], [ 0.023646, 0.012617 ], [ 0.023646, 0.014420 ], [ 0.026264, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0236400", "Lat": "0.0126000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.014420 ], [ 0.026264, 0.012617 ], [ 0.023646, 0.012617 ], [ 0.023646, 0.014420 ], [ 0.026264, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0236434", "Lat": "0.0108000", "KPI": 968, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.012617 ], [ 0.026264, 0.010815 ], [ 0.023646, 0.010815 ], [ 0.023646, 0.012617 ], [ 0.026264, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0236400", "Lat": "0.0108000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.012617 ], [ 0.026264, 0.010815 ], [ 0.023646, 0.010815 ], [ 0.023646, 0.012617 ], [ 0.026264, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0262704", "Lat": "0.0198000", "KPI": 207, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.021586 ], [ 0.028882, 0.019784 ], [ 0.026264, 0.019784 ], [ 0.026264, 0.021586 ], [ 0.028882, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0262700", "Lat": "0.0198000", "KPI": 352, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.021586 ], [ 0.028882, 0.019784 ], [ 0.026264, 0.019784 ], [ 0.026264, 0.021586 ], [ 0.028882, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0288974", "Lat": "0.0198000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.021586 ], [ 0.031543, 0.019784 ], [ 0.028882, 0.019784 ], [ 0.028882, 0.021586 ], [ 0.031543, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262700", "Lat": "0.0180000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.019784 ], [ 0.028882, 0.017982 ], [ 0.026264, 0.017982 ], [ 0.026264, 0.019784 ], [ 0.028882, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0262704", "Lat": "0.0180000", "KPI": 324, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.019784 ], [ 0.028882, 0.017982 ], [ 0.026264, 0.017982 ], [ 0.026264, 0.019784 ], [ 0.028882, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0162000", "KPI": 843, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.017982 ], [ 0.028882, 0.016179 ], [ 0.026264, 0.016179 ], [ 0.026264, 0.017982 ], [ 0.028882, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0262704", "Lat": "0.0162000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.017982 ], [ 0.028882, 0.016179 ], [ 0.026264, 0.016179 ], [ 0.026264, 0.017982 ], [ 0.028882, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0289000", "Lat": "0.0198000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.021586 ], [ 0.031543, 0.019784 ], [ 0.028882, 0.019784 ], [ 0.028882, 0.021586 ], [ 0.031543, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0288974", "Lat": "0.0180000", "KPI": 988, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.019784 ], [ 0.031543, 0.017982 ], [ 0.028882, 0.017982 ], [ 0.028882, 0.019784 ], [ 0.031543, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0315200", "Lat": "0.0198000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.021586 ], [ 0.034161, 0.019784 ], [ 0.031500, 0.019784 ], [ 0.031500, 0.021586 ], [ 0.034161, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0288974", "Lat": "0.0162000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.017982 ], [ 0.031543, 0.016179 ], [ 0.028882, 0.016179 ], [ 0.028882, 0.017982 ], [ 0.031543, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0289000", "Lat": "0.0180000", "KPI": 668, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.019784 ], [ 0.031543, 0.017982 ], [ 0.028882, 0.017982 ], [ 0.028882, 0.019784 ], [ 0.031543, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0198000", "KPI": 533, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.021586 ], [ 0.034161, 0.019784 ], [ 0.031543, 0.019784 ], [ 0.031543, 0.021586 ], [ 0.034161, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0289000", "Lat": "0.0162000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.017982 ], [ 0.031543, 0.016179 ], [ 0.028882, 0.016179 ], [ 0.028882, 0.017982 ], [ 0.031543, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0315245", "Lat": "0.0180000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.019784 ], [ 0.034161, 0.017982 ], [ 0.031543, 0.017982 ], [ 0.031543, 0.019784 ], [ 0.034161, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0315200", "Lat": "0.0180000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.019784 ], [ 0.034161, 0.017982 ], [ 0.031500, 0.017982 ], [ 0.031500, 0.019784 ], [ 0.034161, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0315245", "Lat": "0.0162000", "KPI": 586, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.017982 ], [ 0.034161, 0.016179 ], [ 0.031543, 0.016179 ], [ 0.031543, 0.017982 ], [ 0.034161, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0315200", "Lat": "0.0162000", "KPI": 118, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.017982 ], [ 0.034161, 0.016179 ], [ 0.031500, 0.016179 ], [ 0.031500, 0.017982 ], [ 0.034161, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0262704", "Lat": "0.0144000", "KPI": 902, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.016179 ], [ 0.028882, 0.014420 ], [ 0.026264, 0.014420 ], [ 0.026264, 0.016179 ], [ 0.028882, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0262700", "Lat": "0.0144000", "KPI": 637, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.016179 ], [ 0.028882, 0.014420 ], [ 0.026264, 0.014420 ], [ 0.026264, 0.016179 ], [ 0.028882, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0288974", "Lat": "0.0144000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.016179 ], [ 0.031543, 0.014420 ], [ 0.028882, 0.014420 ], [ 0.028882, 0.016179 ], [ 0.031543, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0262700", "Lat": "0.0126000", "KPI": 456, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.014420 ], [ 0.028882, 0.012617 ], [ 0.026264, 0.012617 ], [ 0.026264, 0.014420 ], [ 0.028882, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0262704", "Lat": "0.0126000", "KPI": 218, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.014420 ], [ 0.028882, 0.012617 ], [ 0.026264, 0.012617 ], [ 0.026264, 0.014420 ], [ 0.028882, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0262700", "Lat": "0.0108000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.012617 ], [ 0.028882, 0.010815 ], [ 0.026264, 0.010815 ], [ 0.026264, 0.012617 ], [ 0.028882, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0262704", "Lat": "0.0108000", "KPI": 94, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.012617 ], [ 0.028882, 0.010815 ], [ 0.026264, 0.010815 ], [ 0.026264, 0.012617 ], [ 0.028882, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0289000", "Lat": "0.0144000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.016179 ], [ 0.031543, 0.014420 ], [ 0.028882, 0.014420 ], [ 0.028882, 0.016179 ], [ 0.031543, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0288974", "Lat": "0.0126000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.014420 ], [ 0.031543, 0.012617 ], [ 0.028882, 0.012617 ], [ 0.028882, 0.014420 ], [ 0.031543, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0315200", "Lat": "0.0144000", "KPI": 364, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.016179 ], [ 0.034161, 0.014420 ], [ 0.031500, 0.014420 ], [ 0.031500, 0.016179 ], [ 0.034161, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0288974", "Lat": "0.0108000", "KPI": 863, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.012617 ], [ 0.031543, 0.010815 ], [ 0.028882, 0.010815 ], [ 0.028882, 0.012617 ], [ 0.031543, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0289000", "Lat": "0.0126000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.014420 ], [ 0.031543, 0.012617 ], [ 0.028882, 0.012617 ], [ 0.028882, 0.014420 ], [ 0.031543, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315245", "Lat": "0.0144000", "KPI": 100, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.016179 ], [ 0.034161, 0.014420 ], [ 0.031543, 0.014420 ], [ 0.031543, 0.016179 ], [ 0.034161, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0289000", "Lat": "0.0108000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.012617 ], [ 0.031543, 0.010815 ], [ 0.028882, 0.010815 ], [ 0.028882, 0.012617 ], [ 0.031543, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0315245", "Lat": "0.0126000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.014420 ], [ 0.034161, 0.012617 ], [ 0.031543, 0.012617 ], [ 0.031543, 0.014420 ], [ 0.034161, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0315200", "Lat": "0.0126000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.014420 ], [ 0.034161, 0.012617 ], [ 0.031500, 0.012617 ], [ 0.031500, 0.014420 ], [ 0.034161, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0315245", "Lat": "0.0108000", "KPI": 367, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.012617 ], [ 0.034161, 0.010815 ], [ 0.031543, 0.010815 ], [ 0.031543, 0.012617 ], [ 0.034161, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0315200", "Lat": "0.0108000", "KPI": 402, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.012617 ], [ 0.034161, 0.010815 ], [ 0.031500, 0.010815 ], [ 0.031500, 0.012617 ], [ 0.034161, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0210163", "Lat": "0.0090000", "KPI": 610, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.010815 ], [ 0.023646, 0.009012 ], [ 0.021029, 0.009012 ], [ 0.021029, 0.010815 ], [ 0.023646, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0210200", "Lat": "0.0090000", "KPI": 160, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.010815 ], [ 0.023646, 0.009012 ], [ 0.021029, 0.009012 ], [ 0.021029, 0.010815 ], [ 0.023646, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0210163", "Lat": "0.0072000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.009012 ], [ 0.023646, 0.007210 ], [ 0.021029, 0.007210 ], [ 0.021029, 0.009012 ], [ 0.023646, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0210200", "Lat": "0.0072000", "KPI": 5, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.009012 ], [ 0.023646, 0.007210 ], [ 0.021029, 0.007210 ], [ 0.021029, 0.009012 ], [ 0.023646, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0210163", "Lat": "0.0054000", "KPI": 509, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.007210 ], [ 0.023646, 0.005407 ], [ 0.021029, 0.005407 ], [ 0.021029, 0.007210 ], [ 0.023646, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0210200", "Lat": "0.0054000", "KPI": 792, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.007210 ], [ 0.023646, 0.005407 ], [ 0.021029, 0.005407 ], [ 0.021029, 0.007210 ], [ 0.023646, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0236434", "Lat": "0.0090000", "KPI": 48, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.010815 ], [ 0.026264, 0.009012 ], [ 0.023646, 0.009012 ], [ 0.023646, 0.010815 ], [ 0.026264, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0236400", "Lat": "0.0090000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.010815 ], [ 0.026264, 0.009012 ], [ 0.023646, 0.009012 ], [ 0.023646, 0.010815 ], [ 0.026264, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0236434", "Lat": "0.0072000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.009012 ], [ 0.026264, 0.007210 ], [ 0.023646, 0.007210 ], [ 0.023646, 0.009012 ], [ 0.026264, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0236400", "Lat": "0.0072000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.009012 ], [ 0.026264, 0.007210 ], [ 0.023646, 0.007210 ], [ 0.023646, 0.009012 ], [ 0.026264, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0236434", "Lat": "0.0054000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.007210 ], [ 0.026264, 0.005407 ], [ 0.023646, 0.005407 ], [ 0.023646, 0.007210 ], [ 0.026264, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0236400", "Lat": "0.0054000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.007210 ], [ 0.026264, 0.005407 ], [ 0.023646, 0.005407 ], [ 0.023646, 0.007210 ], [ 0.026264, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0210163", "Lat": "0.0036000", "KPI": 884, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.005407 ], [ 0.023646, 0.003605 ], [ 0.021029, 0.003605 ], [ 0.021029, 0.005407 ], [ 0.023646, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0210200", "Lat": "0.0036000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.005407 ], [ 0.023646, 0.003605 ], [ 0.021029, 0.003605 ], [ 0.021029, 0.005407 ], [ 0.023646, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0210163", "Lat": "0.0018000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.003605 ], [ 0.023646, 0.001802 ], [ 0.021029, 0.001802 ], [ 0.021029, 0.003605 ], [ 0.023646, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0210200", "Lat": "0.0018000", "KPI": 484, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.003605 ], [ 0.023646, 0.001802 ], [ 0.021029, 0.001802 ], [ 0.021029, 0.003605 ], [ 0.023646, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0210163", "Lat": "0.0000000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.001802 ], [ 0.023646, 0.000000 ], [ 0.021029, 0.000000 ], [ 0.021029, 0.001802 ], [ 0.023646, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0210200", "Lat": "0.0000000", "KPI": 985, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.023646, 0.001802 ], [ 0.023646, 0.000000 ], [ 0.021029, 0.000000 ], [ 0.021029, 0.001802 ], [ 0.023646, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0236434", "Lat": "0.0036000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.005407 ], [ 0.026264, 0.003605 ], [ 0.023646, 0.003605 ], [ 0.023646, 0.005407 ], [ 0.026264, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0236400", "Lat": "0.0036000", "KPI": 613, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.005407 ], [ 0.026264, 0.003605 ], [ 0.023646, 0.003605 ], [ 0.023646, 0.005407 ], [ 0.026264, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0236434", "Lat": "0.0018000", "KPI": 842, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.003605 ], [ 0.026264, 0.001802 ], [ 0.023646, 0.001802 ], [ 0.023646, 0.003605 ], [ 0.026264, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0236400", "Lat": "0.0018000", "KPI": 136, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.003605 ], [ 0.026264, 0.001802 ], [ 0.023646, 0.001802 ], [ 0.023646, 0.003605 ], [ 0.026264, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0236434", "Lat": "0.0000000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.001802 ], [ 0.026264, 0.000000 ], [ 0.023646, 0.000000 ], [ 0.023646, 0.001802 ], [ 0.026264, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0236400", "Lat": "0.0000000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.026264, 0.001802 ], [ 0.026264, 0.000000 ], [ 0.023646, 0.000000 ], [ 0.023646, 0.001802 ], [ 0.026264, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0262704", "Lat": "0.0090000", "KPI": 231, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.010815 ], [ 0.028882, 0.009012 ], [ 0.026264, 0.009012 ], [ 0.026264, 0.010815 ], [ 0.028882, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0262700", "Lat": "0.0090000", "KPI": 783, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.010815 ], [ 0.028882, 0.009012 ], [ 0.026264, 0.009012 ], [ 0.026264, 0.010815 ], [ 0.028882, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0288974", "Lat": "0.0090000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.010815 ], [ 0.031543, 0.009012 ], [ 0.028882, 0.009012 ], [ 0.028882, 0.010815 ], [ 0.031543, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0262700", "Lat": "0.0072000", "KPI": 28, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.009012 ], [ 0.028882, 0.007210 ], [ 0.026264, 0.007210 ], [ 0.026264, 0.009012 ], [ 0.028882, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0262704", "Lat": "0.0072000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.009012 ], [ 0.028882, 0.007210 ], [ 0.026264, 0.007210 ], [ 0.026264, 0.009012 ], [ 0.028882, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0262700", "Lat": "0.0054000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.007210 ], [ 0.028882, 0.005407 ], [ 0.026264, 0.005407 ], [ 0.026264, 0.007210 ], [ 0.028882, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0262704", "Lat": "0.0054000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.007210 ], [ 0.028882, 0.005407 ], [ 0.026264, 0.005407 ], [ 0.026264, 0.007210 ], [ 0.028882, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0289000", "Lat": "0.0090000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.010815 ], [ 0.031543, 0.009012 ], [ 0.028882, 0.009012 ], [ 0.028882, 0.010815 ], [ 0.031543, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0288974", "Lat": "0.0072000", "KPI": 815, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.009012 ], [ 0.031543, 0.007210 ], [ 0.028882, 0.007210 ], [ 0.028882, 0.009012 ], [ 0.031543, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0315200", "Lat": "0.0090000", "KPI": 785, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.010815 ], [ 0.034161, 0.009012 ], [ 0.031500, 0.009012 ], [ 0.031500, 0.010815 ], [ 0.034161, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0288974", "Lat": "0.0054000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.007210 ], [ 0.031543, 0.005407 ], [ 0.028882, 0.005407 ], [ 0.028882, 0.007210 ], [ 0.031543, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0289000", "Lat": "0.0072000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.009012 ], [ 0.031543, 0.007210 ], [ 0.028882, 0.007210 ], [ 0.028882, 0.009012 ], [ 0.031543, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0315245", "Lat": "0.0090000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.010815 ], [ 0.034161, 0.009012 ], [ 0.031543, 0.009012 ], [ 0.031543, 0.010815 ], [ 0.034161, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0289000", "Lat": "0.0054000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.007210 ], [ 0.031543, 0.005407 ], [ 0.028882, 0.005407 ], [ 0.028882, 0.007210 ], [ 0.031543, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0315245", "Lat": "0.0072000", "KPI": 707, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.009012 ], [ 0.034161, 0.007210 ], [ 0.031543, 0.007210 ], [ 0.031543, 0.009012 ], [ 0.034161, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0315200", "Lat": "0.0072000", "KPI": 314, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.009012 ], [ 0.034161, 0.007210 ], [ 0.031500, 0.007210 ], [ 0.031500, 0.009012 ], [ 0.034161, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0315245", "Lat": "0.0054000", "KPI": 890, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.007210 ], [ 0.034161, 0.005407 ], [ 0.031543, 0.005407 ], [ 0.031543, 0.007210 ], [ 0.034161, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0315200", "Lat": "0.0054000", "KPI": 413, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.007210 ], [ 0.034161, 0.005407 ], [ 0.031500, 0.005407 ], [ 0.031500, 0.007210 ], [ 0.034161, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0262704", "Lat": "0.0036000", "KPI": 459, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.005407 ], [ 0.028882, 0.003605 ], [ 0.026264, 0.003605 ], [ 0.026264, 0.005407 ], [ 0.028882, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0262700", "Lat": "0.0036000", "KPI": 593, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.005407 ], [ 0.028882, 0.003605 ], [ 0.026264, 0.003605 ], [ 0.026264, 0.005407 ], [ 0.028882, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0288974", "Lat": "0.0036000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.005407 ], [ 0.031543, 0.003605 ], [ 0.028882, 0.003605 ], [ 0.028882, 0.005407 ], [ 0.031543, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0262700", "Lat": "0.0018000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.003605 ], [ 0.028882, 0.001802 ], [ 0.026264, 0.001802 ], [ 0.026264, 0.003605 ], [ 0.028882, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0262704", "Lat": "0.0018000", "KPI": 424, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.003605 ], [ 0.028882, 0.001802 ], [ 0.026264, 0.001802 ], [ 0.026264, 0.003605 ], [ 0.028882, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0262700", "Lat": "0.0000000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.001802 ], [ 0.028882, 0.000000 ], [ 0.026264, 0.000000 ], [ 0.026264, 0.001802 ], [ 0.028882, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0262704", "Lat": "0.0000000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.028882, 0.001802 ], [ 0.028882, 0.000000 ], [ 0.026264, 0.000000 ], [ 0.026264, 0.001802 ], [ 0.028882, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0289000", "Lat": "0.0036000", "KPI": 542, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.005407 ], [ 0.031543, 0.003605 ], [ 0.028882, 0.003605 ], [ 0.028882, 0.005407 ], [ 0.031543, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0288974", "Lat": "0.0018000", "KPI": 53, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.003605 ], [ 0.031543, 0.001802 ], [ 0.028882, 0.001802 ], [ 0.028882, 0.003605 ], [ 0.031543, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0315200", "Lat": "0.0036000", "KPI": 520, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.005407 ], [ 0.034161, 0.003605 ], [ 0.031500, 0.003605 ], [ 0.031500, 0.005407 ], [ 0.034161, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0288974", "Lat": "0.0000000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.001802 ], [ 0.031543, 0.000000 ], [ 0.028882, 0.000000 ], [ 0.028882, 0.001802 ], [ 0.031543, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0289000", "Lat": "0.0018000", "KPI": 855, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.003605 ], [ 0.031543, 0.001802 ], [ 0.028882, 0.001802 ], [ 0.028882, 0.003605 ], [ 0.031543, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0315245", "Lat": "0.0036000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.005407 ], [ 0.034161, 0.003605 ], [ 0.031543, 0.003605 ], [ 0.031543, 0.005407 ], [ 0.034161, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0289000", "Lat": "0.0000000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.031543, 0.001802 ], [ 0.031543, 0.000000 ], [ 0.028882, 0.000000 ], [ 0.028882, 0.001802 ], [ 0.031543, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0315245", "Lat": "0.0018000", "KPI": 992, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.003605 ], [ 0.034161, 0.001802 ], [ 0.031543, 0.001802 ], [ 0.031543, 0.003605 ], [ 0.034161, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0315200", "Lat": "0.0018000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.003605 ], [ 0.034161, 0.001802 ], [ 0.031500, 0.001802 ], [ 0.031500, 0.003605 ], [ 0.034161, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0315245", "Lat": "0.0000000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.001802 ], [ 0.034161, 0.000000 ], [ 0.031543, 0.000000 ], [ 0.031543, 0.001802 ], [ 0.034161, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0315200", "Lat": "0.0000000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.034161, 0.001802 ], [ 0.034161, 0.000000 ], [ 0.031500, 0.000000 ], [ 0.031500, 0.001802 ], [ 0.034161, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0341515", "Lat": "0.0198000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.021586 ], [ 0.036778, 0.019784 ], [ 0.034161, 0.019784 ], [ 0.034161, 0.021586 ], [ 0.036778, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0341500", "Lat": "0.0198000", "KPI": 587, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.021586 ], [ 0.036778, 0.019784 ], [ 0.034161, 0.019784 ], [ 0.034161, 0.021586 ], [ 0.036778, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0341515", "Lat": "0.0180000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.019784 ], [ 0.036778, 0.017982 ], [ 0.034161, 0.017982 ], [ 0.034161, 0.019784 ], [ 0.036778, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0341500", "Lat": "0.0180000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.019784 ], [ 0.036778, 0.017982 ], [ 0.034161, 0.017982 ], [ 0.034161, 0.019784 ], [ 0.036778, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0341515", "Lat": "0.0162000", "KPI": 313, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.017982 ], [ 0.036778, 0.016179 ], [ 0.034161, 0.016179 ], [ 0.034161, 0.017982 ], [ 0.036778, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0341500", "Lat": "0.0162000", "KPI": 363, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.017982 ], [ 0.036778, 0.016179 ], [ 0.034161, 0.016179 ], [ 0.034161, 0.017982 ], [ 0.036778, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0198000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.021586 ], [ 0.039396, 0.019784 ], [ 0.036778, 0.019784 ], [ 0.036778, 0.021586 ], [ 0.039396, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0367800", "Lat": "0.0198000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.021586 ], [ 0.039396, 0.019784 ], [ 0.036778, 0.019784 ], [ 0.036778, 0.021586 ], [ 0.039396, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0367786", "Lat": "0.0180000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.019784 ], [ 0.039396, 0.017982 ], [ 0.036778, 0.017982 ], [ 0.036778, 0.019784 ], [ 0.039396, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0367800", "Lat": "0.0180000", "KPI": 119, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.019784 ], [ 0.039396, 0.017982 ], [ 0.036778, 0.017982 ], [ 0.036778, 0.019784 ], [ 0.039396, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0367786", "Lat": "0.0162000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.017982 ], [ 0.039396, 0.016179 ], [ 0.036778, 0.016179 ], [ 0.036778, 0.017982 ], [ 0.039396, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0367800", "Lat": "0.0162000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.017982 ], [ 0.039396, 0.016179 ], [ 0.036778, 0.016179 ], [ 0.036778, 0.017982 ], [ 0.039396, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0341515", "Lat": "0.0144000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.016179 ], [ 0.036778, 0.014420 ], [ 0.034161, 0.014420 ], [ 0.034161, 0.016179 ], [ 0.036778, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0341500", "Lat": "0.0144000", "KPI": 17, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.016179 ], [ 0.036778, 0.014420 ], [ 0.034161, 0.014420 ], [ 0.034161, 0.016179 ], [ 0.036778, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0341515", "Lat": "0.0126000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.014420 ], [ 0.036778, 0.012617 ], [ 0.034161, 0.012617 ], [ 0.034161, 0.014420 ], [ 0.036778, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0341500", "Lat": "0.0126000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.014420 ], [ 0.036778, 0.012617 ], [ 0.034161, 0.012617 ], [ 0.034161, 0.014420 ], [ 0.036778, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0341515", "Lat": "0.0108000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.012617 ], [ 0.036778, 0.010815 ], [ 0.034161, 0.010815 ], [ 0.034161, 0.012617 ], [ 0.036778, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0341500", "Lat": "0.0108000", "KPI": 946, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.012617 ], [ 0.036778, 0.010815 ], [ 0.034161, 0.010815 ], [ 0.034161, 0.012617 ], [ 0.036778, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0367786", "Lat": "0.0144000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.016179 ], [ 0.039396, 0.014420 ], [ 0.036778, 0.014420 ], [ 0.036778, 0.016179 ], [ 0.039396, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0367800", "Lat": "0.0144000", "KPI": 38, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.016179 ], [ 0.039396, 0.014420 ], [ 0.036778, 0.014420 ], [ 0.036778, 0.016179 ], [ 0.039396, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0367786", "Lat": "0.0126000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.014420 ], [ 0.039396, 0.012617 ], [ 0.036778, 0.012617 ], [ 0.036778, 0.014420 ], [ 0.039396, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0367800", "Lat": "0.0126000", "KPI": 795, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.014420 ], [ 0.039396, 0.012617 ], [ 0.036778, 0.012617 ], [ 0.036778, 0.014420 ], [ 0.039396, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0367786", "Lat": "0.0108000", "KPI": 685, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.012617 ], [ 0.039396, 0.010815 ], [ 0.036778, 0.010815 ], [ 0.036778, 0.012617 ], [ 0.039396, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0367800", "Lat": "0.0108000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.012617 ], [ 0.039396, 0.010815 ], [ 0.036778, 0.010815 ], [ 0.036778, 0.012617 ], [ 0.039396, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0394056", "Lat": "0.0198000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.021586 ], [ 0.042014, 0.019784 ], [ 0.039396, 0.019784 ], [ 0.039396, 0.021586 ], [ 0.042014, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0394100", "Lat": "0.0198000", "KPI": 885, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.021586 ], [ 0.042057, 0.019784 ], [ 0.039396, 0.019784 ], [ 0.039396, 0.021586 ], [ 0.042057, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0394056", "Lat": "0.0180000", "KPI": 935, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.019784 ], [ 0.042014, 0.017982 ], [ 0.039396, 0.017982 ], [ 0.039396, 0.019784 ], [ 0.042014, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0394100", "Lat": "0.0180000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.019784 ], [ 0.042057, 0.017982 ], [ 0.039396, 0.017982 ], [ 0.039396, 0.019784 ], [ 0.042057, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0394056", "Lat": "0.0162000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.017982 ], [ 0.042014, 0.016179 ], [ 0.039396, 0.016179 ], [ 0.039396, 0.017982 ], [ 0.042014, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0394100", "Lat": "0.0162000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.017982 ], [ 0.042057, 0.016179 ], [ 0.039396, 0.016179 ], [ 0.039396, 0.017982 ], [ 0.042057, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0420326", "Lat": "0.0198000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.021586 ], [ 0.044675, 0.019784 ], [ 0.042014, 0.019784 ], [ 0.042014, 0.021586 ], [ 0.044675, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0420300", "Lat": "0.0198000", "KPI": 315, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.021586 ], [ 0.044675, 0.019784 ], [ 0.042014, 0.019784 ], [ 0.042014, 0.021586 ], [ 0.044675, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0420326", "Lat": "0.0180000", "KPI": 405, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.019784 ], [ 0.044675, 0.017982 ], [ 0.042014, 0.017982 ], [ 0.042014, 0.019784 ], [ 0.044675, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0420300", "Lat": "0.0180000", "KPI": 540, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.019784 ], [ 0.044675, 0.017982 ], [ 0.042014, 0.017982 ], [ 0.042014, 0.019784 ], [ 0.044675, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0420326", "Lat": "0.0162000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.017982 ], [ 0.044675, 0.016179 ], [ 0.042014, 0.016179 ], [ 0.042014, 0.017982 ], [ 0.044675, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0420300", "Lat": "0.0162000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.017982 ], [ 0.044675, 0.016179 ], [ 0.042014, 0.016179 ], [ 0.042014, 0.017982 ], [ 0.044675, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0394056", "Lat": "0.0144000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.016179 ], [ 0.042014, 0.014420 ], [ 0.039396, 0.014420 ], [ 0.039396, 0.016179 ], [ 0.042014, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0394100", "Lat": "0.0144000", "KPI": 64, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.016179 ], [ 0.042057, 0.014420 ], [ 0.039396, 0.014420 ], [ 0.039396, 0.016179 ], [ 0.042057, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0394056", "Lat": "0.0126000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.014420 ], [ 0.042014, 0.012617 ], [ 0.039396, 0.012617 ], [ 0.039396, 0.014420 ], [ 0.042014, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0394100", "Lat": "0.0126000", "KPI": 845, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.014420 ], [ 0.042057, 0.012617 ], [ 0.039396, 0.012617 ], [ 0.039396, 0.014420 ], [ 0.042057, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0394056", "Lat": "0.0108000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.012617 ], [ 0.042014, 0.010815 ], [ 0.039396, 0.010815 ], [ 0.039396, 0.012617 ], [ 0.042014, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0394100", "Lat": "0.0108000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.012617 ], [ 0.042057, 0.010815 ], [ 0.039396, 0.010815 ], [ 0.039396, 0.012617 ], [ 0.042057, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0420326", "Lat": "0.0144000", "KPI": 307, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.016179 ], [ 0.044675, 0.014420 ], [ 0.042014, 0.014420 ], [ 0.042014, 0.016179 ], [ 0.044675, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0420300", "Lat": "0.0144000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.016179 ], [ 0.044675, 0.014420 ], [ 0.042014, 0.014420 ], [ 0.042014, 0.016179 ], [ 0.044675, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0420326", "Lat": "0.0126000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.014420 ], [ 0.044675, 0.012617 ], [ 0.042014, 0.012617 ], [ 0.042014, 0.014420 ], [ 0.044675, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0420300", "Lat": "0.0126000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.014420 ], [ 0.044675, 0.012617 ], [ 0.042014, 0.012617 ], [ 0.042014, 0.014420 ], [ 0.044675, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0420326", "Lat": "0.0108000", "KPI": 161, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.012617 ], [ 0.044675, 0.010815 ], [ 0.042014, 0.010815 ], [ 0.042014, 0.012617 ], [ 0.044675, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0420300", "Lat": "0.0108000", "KPI": 1, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.012617 ], [ 0.044675, 0.010815 ], [ 0.042014, 0.010815 ], [ 0.042014, 0.012617 ], [ 0.044675, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0341515", "Lat": "0.0090000", "KPI": 997, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.010815 ], [ 0.036778, 0.009012 ], [ 0.034161, 0.009012 ], [ 0.034161, 0.010815 ], [ 0.036778, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0341500", "Lat": "0.0090000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.010815 ], [ 0.036778, 0.009012 ], [ 0.034161, 0.009012 ], [ 0.034161, 0.010815 ], [ 0.036778, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0341515", "Lat": "0.0072000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.009012 ], [ 0.036778, 0.007210 ], [ 0.034161, 0.007210 ], [ 0.034161, 0.009012 ], [ 0.036778, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0341500", "Lat": "0.0072000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.009012 ], [ 0.036778, 0.007210 ], [ 0.034161, 0.007210 ], [ 0.034161, 0.009012 ], [ 0.036778, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0341515", "Lat": "0.0054000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.007210 ], [ 0.036778, 0.005407 ], [ 0.034161, 0.005407 ], [ 0.034161, 0.007210 ], [ 0.036778, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0341500", "Lat": "0.0054000", "KPI": 6, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.007210 ], [ 0.036778, 0.005407 ], [ 0.034161, 0.005407 ], [ 0.034161, 0.007210 ], [ 0.036778, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0367786", "Lat": "0.0090000", "KPI": 489, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.010815 ], [ 0.039396, 0.009012 ], [ 0.036778, 0.009012 ], [ 0.036778, 0.010815 ], [ 0.039396, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0367800", "Lat": "0.0090000", "KPI": 455, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.010815 ], [ 0.039396, 0.009012 ], [ 0.036778, 0.009012 ], [ 0.036778, 0.010815 ], [ 0.039396, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0367786", "Lat": "0.0072000", "KPI": 830, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.009012 ], [ 0.039396, 0.007210 ], [ 0.036778, 0.007210 ], [ 0.036778, 0.009012 ], [ 0.039396, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0367800", "Lat": "0.0072000", "KPI": 666, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.009012 ], [ 0.039396, 0.007210 ], [ 0.036778, 0.007210 ], [ 0.036778, 0.009012 ], [ 0.039396, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0367786", "Lat": "0.0054000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.007210 ], [ 0.039396, 0.005407 ], [ 0.036778, 0.005407 ], [ 0.036778, 0.007210 ], [ 0.039396, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0367800", "Lat": "0.0054000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.007210 ], [ 0.039396, 0.005407 ], [ 0.036778, 0.005407 ], [ 0.036778, 0.007210 ], [ 0.039396, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0341515", "Lat": "0.0036000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.005407 ], [ 0.036778, 0.003605 ], [ 0.034161, 0.003605 ], [ 0.034161, 0.005407 ], [ 0.036778, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0036000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.005407 ], [ 0.036778, 0.003605 ], [ 0.034161, 0.003605 ], [ 0.034161, 0.005407 ], [ 0.036778, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0341515", "Lat": "0.0018000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.003605 ], [ 0.036778, 0.001802 ], [ 0.034161, 0.001802 ], [ 0.034161, 0.003605 ], [ 0.036778, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0018000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.003605 ], [ 0.036778, 0.001802 ], [ 0.034161, 0.001802 ], [ 0.034161, 0.003605 ], [ 0.036778, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0341515", "Lat": "0.0000000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.001802 ], [ 0.036778, 0.000000 ], [ 0.034161, 0.000000 ], [ 0.034161, 0.001802 ], [ 0.036778, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0341500", "Lat": "0.0000000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.036778, 0.001802 ], [ 0.036778, 0.000000 ], [ 0.034161, 0.000000 ], [ 0.034161, 0.001802 ], [ 0.036778, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0367786", "Lat": "0.0036000", "KPI": 638, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.005407 ], [ 0.039396, 0.003605 ], [ 0.036778, 0.003605 ], [ 0.036778, 0.005407 ], [ 0.039396, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0367800", "Lat": "0.0036000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.005407 ], [ 0.039396, 0.003605 ], [ 0.036778, 0.003605 ], [ 0.036778, 0.005407 ], [ 0.039396, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0367786", "Lat": "0.0018000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.003605 ], [ 0.039396, 0.001802 ], [ 0.036778, 0.001802 ], [ 0.036778, 0.003605 ], [ 0.039396, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0018000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.003605 ], [ 0.039396, 0.001802 ], [ 0.036778, 0.001802 ], [ 0.036778, 0.003605 ], [ 0.039396, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0367786", "Lat": "0.0000000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.001802 ], [ 0.039396, 0.000000 ], [ 0.036778, 0.000000 ], [ 0.036778, 0.001802 ], [ 0.039396, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0367800", "Lat": "0.0000000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.039396, 0.001802 ], [ 0.039396, 0.000000 ], [ 0.036778, 0.000000 ], [ 0.036778, 0.001802 ], [ 0.039396, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0394056", "Lat": "0.0090000", "KPI": 330, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.010815 ], [ 0.042014, 0.009012 ], [ 0.039396, 0.009012 ], [ 0.039396, 0.010815 ], [ 0.042014, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0394100", "Lat": "0.0090000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.010815 ], [ 0.042057, 0.009012 ], [ 0.039396, 0.009012 ], [ 0.039396, 0.010815 ], [ 0.042057, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394056", "Lat": "0.0072000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.009012 ], [ 0.042014, 0.007210 ], [ 0.039396, 0.007210 ], [ 0.039396, 0.009012 ], [ 0.042014, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394100", "Lat": "0.0072000", "KPI": 454, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.009012 ], [ 0.042057, 0.007210 ], [ 0.039396, 0.007210 ], [ 0.039396, 0.009012 ], [ 0.042057, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0394056", "Lat": "0.0054000", "KPI": 756, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.007210 ], [ 0.042014, 0.005407 ], [ 0.039396, 0.005407 ], [ 0.039396, 0.007210 ], [ 0.042014, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0394100", "Lat": "0.0054000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.007210 ], [ 0.042057, 0.005407 ], [ 0.039396, 0.005407 ], [ 0.039396, 0.007210 ], [ 0.042057, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0420326", "Lat": "0.0090000", "KPI": 965, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.010815 ], [ 0.044675, 0.009012 ], [ 0.042014, 0.009012 ], [ 0.042014, 0.010815 ], [ 0.044675, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0420300", "Lat": "0.0090000", "KPI": 344, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.010815 ], [ 0.044675, 0.009012 ], [ 0.042014, 0.009012 ], [ 0.042014, 0.010815 ], [ 0.044675, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0420326", "Lat": "0.0072000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.009012 ], [ 0.044675, 0.007210 ], [ 0.042014, 0.007210 ], [ 0.042014, 0.009012 ], [ 0.044675, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0420300", "Lat": "0.0072000", "KPI": 504, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.009012 ], [ 0.044675, 0.007210 ], [ 0.042014, 0.007210 ], [ 0.042014, 0.009012 ], [ 0.044675, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0420326", "Lat": "0.0054000", "KPI": 809, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.007210 ], [ 0.044675, 0.005407 ], [ 0.042014, 0.005407 ], [ 0.042014, 0.007210 ], [ 0.044675, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0420300", "Lat": "0.0054000", "KPI": 912, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.007210 ], [ 0.044675, 0.005407 ], [ 0.042014, 0.005407 ], [ 0.042014, 0.007210 ], [ 0.044675, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0394056", "Lat": "0.0036000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.005407 ], [ 0.042014, 0.003605 ], [ 0.039396, 0.003605 ], [ 0.039396, 0.005407 ], [ 0.042014, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0394100", "Lat": "0.0036000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.005407 ], [ 0.042057, 0.003605 ], [ 0.039396, 0.003605 ], [ 0.039396, 0.005407 ], [ 0.042057, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0394056", "Lat": "0.0018000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.003605 ], [ 0.042014, 0.001802 ], [ 0.039396, 0.001802 ], [ 0.039396, 0.003605 ], [ 0.042014, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0394100", "Lat": "0.0018000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.003605 ], [ 0.042057, 0.001802 ], [ 0.039396, 0.001802 ], [ 0.039396, 0.003605 ], [ 0.042057, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0394056", "Lat": "0.0000000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042014, 0.001802 ], [ 0.042014, 0.000000 ], [ 0.039396, 0.000000 ], [ 0.039396, 0.001802 ], [ 0.042014, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0394100", "Lat": "0.0000000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.042057, 0.001802 ], [ 0.042057, 0.000000 ], [ 0.039396, 0.000000 ], [ 0.039396, 0.001802 ], [ 0.042057, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0420326", "Lat": "0.0036000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.005407 ], [ 0.044675, 0.003605 ], [ 0.042014, 0.003605 ], [ 0.042014, 0.005407 ], [ 0.044675, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0420300", "Lat": "0.0036000", "KPI": 942, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.005407 ], [ 0.044675, 0.003605 ], [ 0.042014, 0.003605 ], [ 0.042014, 0.005407 ], [ 0.044675, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0420326", "Lat": "0.0018000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.003605 ], [ 0.044675, 0.001802 ], [ 0.042014, 0.001802 ], [ 0.042014, 0.003605 ], [ 0.044675, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0420300", "Lat": "0.0018000", "KPI": 331, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.003605 ], [ 0.044675, 0.001802 ], [ 0.042014, 0.001802 ], [ 0.042014, 0.003605 ], [ 0.044675, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0420326", "Lat": "0.0000000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.001802 ], [ 0.044675, 0.000000 ], [ 0.042014, 0.000000 ], [ 0.042014, 0.001802 ], [ 0.044675, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0420300", "Lat": "0.0000000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.044675, 0.001802 ], [ 0.044675, 0.000000 ], [ 0.042014, 0.000000 ], [ 0.042014, 0.001802 ], [ 0.044675, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0446597", "Lat": "0.0558000", "KPI": 534, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.057592 ], [ 0.047293, 0.055790 ], [ 0.044675, 0.055790 ], [ 0.044675, 0.057592 ], [ 0.047293, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0446600", "Lat": "0.0558000", "KPI": 113, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.057592 ], [ 0.047293, 0.055790 ], [ 0.044675, 0.055790 ], [ 0.044675, 0.057592 ], [ 0.047293, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0472867", "Lat": "0.0558000", "KPI": 813, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.057592 ], [ 0.049911, 0.055790 ], [ 0.047293, 0.055790 ], [ 0.047293, 0.057592 ], [ 0.049911, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0472900", "Lat": "0.0558000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.057592 ], [ 0.049911, 0.055790 ], [ 0.047293, 0.055790 ], [ 0.047293, 0.057592 ], [ 0.049911, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0499138", "Lat": "0.0558000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.057592 ], [ 0.052528, 0.055790 ], [ 0.049911, 0.055790 ], [ 0.049911, 0.057592 ], [ 0.052528, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0499100", "Lat": "0.0558000", "KPI": 694, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.057592 ], [ 0.052528, 0.055790 ], [ 0.049911, 0.055790 ], [ 0.049911, 0.057592 ], [ 0.052528, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0525408", "Lat": "0.0558000", "KPI": 909, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.057592 ], [ 0.055189, 0.055790 ], [ 0.052528, 0.055790 ], [ 0.052528, 0.057592 ], [ 0.055189, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0525400", "Lat": "0.0558000", "KPI": 777, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.057592 ], [ 0.055189, 0.055790 ], [ 0.052528, 0.055790 ], [ 0.052528, 0.057592 ], [ 0.055189, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0540000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.055790 ], [ 0.047293, 0.053987 ], [ 0.044675, 0.053987 ], [ 0.044675, 0.055790 ], [ 0.047293, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446600", "Lat": "0.0540000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.055790 ], [ 0.047293, 0.053987 ], [ 0.044675, 0.053987 ], [ 0.044675, 0.055790 ], [ 0.047293, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0446597", "Lat": "0.0522000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.053987 ], [ 0.047293, 0.052185 ], [ 0.044675, 0.052185 ], [ 0.044675, 0.053987 ], [ 0.047293, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0446600", "Lat": "0.0522000", "KPI": 499, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.053987 ], [ 0.047293, 0.052185 ], [ 0.044675, 0.052185 ], [ 0.044675, 0.053987 ], [ 0.047293, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0446597", "Lat": "0.0504000", "KPI": 7, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.052185 ], [ 0.047293, 0.050383 ], [ 0.044675, 0.050383 ], [ 0.044675, 0.052185 ], [ 0.047293, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446600", "Lat": "0.0504000", "KPI": 989, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.052185 ], [ 0.047293, 0.050383 ], [ 0.044675, 0.050383 ], [ 0.044675, 0.052185 ], [ 0.047293, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0446597", "Lat": "0.0486000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.050383 ], [ 0.047293, 0.048580 ], [ 0.044675, 0.048580 ], [ 0.044675, 0.050383 ], [ 0.047293, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0486000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.050383 ], [ 0.047293, 0.048580 ], [ 0.044675, 0.048580 ], [ 0.044675, 0.050383 ], [ 0.047293, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472867", "Lat": "0.0540000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.055790 ], [ 0.049911, 0.053987 ], [ 0.047293, 0.053987 ], [ 0.047293, 0.055790 ], [ 0.049911, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0472900", "Lat": "0.0540000", "KPI": 300, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.055790 ], [ 0.049911, 0.053987 ], [ 0.047293, 0.053987 ], [ 0.047293, 0.055790 ], [ 0.049911, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0472867", "Lat": "0.0522000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.053987 ], [ 0.049911, 0.052185 ], [ 0.047293, 0.052185 ], [ 0.047293, 0.053987 ], [ 0.049911, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0472900", "Lat": "0.0522000", "KPI": 926, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.053987 ], [ 0.049911, 0.052185 ], [ 0.047293, 0.052185 ], [ 0.047293, 0.053987 ], [ 0.049911, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0472867", "Lat": "0.0504000", "KPI": 568, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.052185 ], [ 0.049911, 0.050383 ], [ 0.047293, 0.050383 ], [ 0.047293, 0.052185 ], [ 0.049911, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0472900", "Lat": "0.0504000", "KPI": 8, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.052185 ], [ 0.049911, 0.050383 ], [ 0.047293, 0.050383 ], [ 0.047293, 0.052185 ], [ 0.049911, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0472867", "Lat": "0.0486000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.050383 ], [ 0.049911, 0.048580 ], [ 0.047293, 0.048580 ], [ 0.047293, 0.050383 ], [ 0.049911, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0472900", "Lat": "0.0486000", "KPI": 696, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.050383 ], [ 0.049911, 0.048580 ], [ 0.047293, 0.048580 ], [ 0.047293, 0.050383 ], [ 0.049911, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0446597", "Lat": "0.0468000", "KPI": 286, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.048580 ], [ 0.047293, 0.046821 ], [ 0.044675, 0.046821 ], [ 0.044675, 0.048580 ], [ 0.047293, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0446600", "Lat": "0.0468000", "KPI": 555, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.048580 ], [ 0.047293, 0.046821 ], [ 0.044675, 0.046821 ], [ 0.044675, 0.048580 ], [ 0.047293, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446597", "Lat": "0.0450000", "KPI": 368, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.046821 ], [ 0.047293, 0.045018 ], [ 0.044675, 0.045018 ], [ 0.044675, 0.046821 ], [ 0.047293, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0446600", "Lat": "0.0450000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.046821 ], [ 0.047293, 0.045018 ], [ 0.044675, 0.045018 ], [ 0.044675, 0.046821 ], [ 0.047293, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0446597", "Lat": "0.0432000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.045018 ], [ 0.047293, 0.043216 ], [ 0.044675, 0.043216 ], [ 0.044675, 0.045018 ], [ 0.047293, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0446600", "Lat": "0.0432000", "KPI": 623, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.045018 ], [ 0.047293, 0.043216 ], [ 0.044675, 0.043216 ], [ 0.044675, 0.045018 ], [ 0.047293, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0472867", "Lat": "0.0468000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.048580 ], [ 0.049911, 0.046821 ], [ 0.047293, 0.046821 ], [ 0.047293, 0.048580 ], [ 0.049911, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0472900", "Lat": "0.0468000", "KPI": 999, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.048580 ], [ 0.049911, 0.046821 ], [ 0.047293, 0.046821 ], [ 0.047293, 0.048580 ], [ 0.049911, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0472867", "Lat": "0.0450000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.046821 ], [ 0.049911, 0.045018 ], [ 0.047293, 0.045018 ], [ 0.047293, 0.046821 ], [ 0.049911, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0472900", "Lat": "0.0450000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.046821 ], [ 0.049911, 0.045018 ], [ 0.047293, 0.045018 ], [ 0.047293, 0.046821 ], [ 0.049911, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0432000", "KPI": 713, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.045018 ], [ 0.049911, 0.043216 ], [ 0.047293, 0.043216 ], [ 0.047293, 0.045018 ], [ 0.049911, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0472900", "Lat": "0.0432000", "KPI": 905, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.045018 ], [ 0.049911, 0.043216 ], [ 0.047293, 0.043216 ], [ 0.047293, 0.045018 ], [ 0.049911, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0499138", "Lat": "0.0540000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.055790 ], [ 0.052528, 0.053987 ], [ 0.049911, 0.053987 ], [ 0.049911, 0.055790 ], [ 0.052528, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0499100", "Lat": "0.0540000", "KPI": 278, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.055790 ], [ 0.052528, 0.053987 ], [ 0.049911, 0.053987 ], [ 0.049911, 0.055790 ], [ 0.052528, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0499138", "Lat": "0.0522000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.053987 ], [ 0.052528, 0.052185 ], [ 0.049911, 0.052185 ], [ 0.049911, 0.053987 ], [ 0.052528, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0499100", "Lat": "0.0522000", "KPI": 447, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.053987 ], [ 0.052528, 0.052185 ], [ 0.049911, 0.052185 ], [ 0.049911, 0.053987 ], [ 0.052528, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0499138", "Lat": "0.0504000", "KPI": 725, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.052185 ], [ 0.052528, 0.050383 ], [ 0.049911, 0.050383 ], [ 0.049911, 0.052185 ], [ 0.052528, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0499100", "Lat": "0.0504000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.052185 ], [ 0.052528, 0.050383 ], [ 0.049911, 0.050383 ], [ 0.049911, 0.052185 ], [ 0.052528, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0499138", "Lat": "0.0486000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.050383 ], [ 0.052528, 0.048580 ], [ 0.049911, 0.048580 ], [ 0.049911, 0.050383 ], [ 0.052528, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0499100", "Lat": "0.0486000", "KPI": 150, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.050383 ], [ 0.052528, 0.048580 ], [ 0.049911, 0.048580 ], [ 0.049911, 0.050383 ], [ 0.052528, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0525408", "Lat": "0.0540000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.055790 ], [ 0.055189, 0.053987 ], [ 0.052528, 0.053987 ], [ 0.052528, 0.055790 ], [ 0.055189, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525400", "Lat": "0.0540000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.055790 ], [ 0.055189, 0.053987 ], [ 0.052528, 0.053987 ], [ 0.052528, 0.055790 ], [ 0.055189, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0525408", "Lat": "0.0522000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.053987 ], [ 0.055189, 0.052185 ], [ 0.052528, 0.052185 ], [ 0.052528, 0.053987 ], [ 0.055189, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525400", "Lat": "0.0522000", "KPI": 494, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.053987 ], [ 0.055189, 0.052185 ], [ 0.052528, 0.052185 ], [ 0.052528, 0.053987 ], [ 0.055189, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0504000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.052185 ], [ 0.055189, 0.050383 ], [ 0.052528, 0.050383 ], [ 0.052528, 0.052185 ], [ 0.055189, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0525400", "Lat": "0.0504000", "KPI": 682, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.052185 ], [ 0.055189, 0.050383 ], [ 0.052528, 0.050383 ], [ 0.052528, 0.052185 ], [ 0.055189, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0525408", "Lat": "0.0486000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.050383 ], [ 0.055189, 0.048580 ], [ 0.052528, 0.048580 ], [ 0.052528, 0.050383 ], [ 0.055189, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0525400", "Lat": "0.0486000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.050383 ], [ 0.055189, 0.048580 ], [ 0.052528, 0.048580 ], [ 0.052528, 0.050383 ], [ 0.055189, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0499138", "Lat": "0.0468000", "KPI": 22, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.048580 ], [ 0.052528, 0.046821 ], [ 0.049911, 0.046821 ], [ 0.049911, 0.048580 ], [ 0.052528, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0499100", "Lat": "0.0468000", "KPI": 819, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.048580 ], [ 0.052528, 0.046821 ], [ 0.049911, 0.046821 ], [ 0.049911, 0.048580 ], [ 0.052528, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499138", "Lat": "0.0450000", "KPI": 598, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.046821 ], [ 0.052528, 0.045018 ], [ 0.049911, 0.045018 ], [ 0.049911, 0.046821 ], [ 0.052528, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0499100", "Lat": "0.0450000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.046821 ], [ 0.052528, 0.045018 ], [ 0.049911, 0.045018 ], [ 0.049911, 0.046821 ], [ 0.052528, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0499138", "Lat": "0.0432000", "KPI": 866, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.045018 ], [ 0.052528, 0.043216 ], [ 0.049911, 0.043216 ], [ 0.049911, 0.045018 ], [ 0.052528, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0499100", "Lat": "0.0432000", "KPI": 102, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.045018 ], [ 0.052528, 0.043216 ], [ 0.049911, 0.043216 ], [ 0.049911, 0.045018 ], [ 0.052528, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0525408", "Lat": "0.0468000", "KPI": 575, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.048580 ], [ 0.055189, 0.046821 ], [ 0.052528, 0.046821 ], [ 0.052528, 0.048580 ], [ 0.055189, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0525400", "Lat": "0.0468000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.048580 ], [ 0.055189, 0.046821 ], [ 0.052528, 0.046821 ], [ 0.052528, 0.048580 ], [ 0.055189, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0525408", "Lat": "0.0450000", "KPI": 892, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.046821 ], [ 0.055189, 0.045018 ], [ 0.052528, 0.045018 ], [ 0.052528, 0.046821 ], [ 0.055189, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0450000", "KPI": 860, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.046821 ], [ 0.055189, 0.045018 ], [ 0.052528, 0.045018 ], [ 0.052528, 0.046821 ], [ 0.055189, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0525408", "Lat": "0.0432000", "KPI": 658, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.045018 ], [ 0.055189, 0.043216 ], [ 0.052528, 0.043216 ], [ 0.052528, 0.045018 ], [ 0.055189, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0525400", "Lat": "0.0432000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.045018 ], [ 0.055189, 0.043216 ], [ 0.052528, 0.043216 ], [ 0.052528, 0.045018 ], [ 0.055189, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0551678", "Lat": "0.0558000", "KPI": 673, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.057592 ], [ 0.057807, 0.055790 ], [ 0.055189, 0.055790 ], [ 0.055189, 0.057592 ], [ 0.057807, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0551700", "Lat": "0.0558000", "KPI": 170, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.057592 ], [ 0.057807, 0.055790 ], [ 0.055189, 0.055790 ], [ 0.055189, 0.057592 ], [ 0.057807, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577949", "Lat": "0.0558000", "KPI": 322, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.057592 ], [ 0.060425, 0.055790 ], [ 0.057807, 0.055790 ], [ 0.057807, 0.057592 ], [ 0.060425, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577900", "Lat": "0.0558000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.057592 ], [ 0.060425, 0.055790 ], [ 0.057807, 0.055790 ], [ 0.057807, 0.057592 ], [ 0.060425, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0604219", "Lat": "0.0558000", "KPI": 294, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.057592 ], [ 0.063043, 0.055790 ], [ 0.060425, 0.055790 ], [ 0.060425, 0.057592 ], [ 0.063043, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0604200", "Lat": "0.0558000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.057592 ], [ 0.063043, 0.055790 ], [ 0.060425, 0.055790 ], [ 0.060425, 0.057592 ], [ 0.063043, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0630490", "Lat": "0.0558000", "KPI": 567, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.057592 ], [ 0.065660, 0.055790 ], [ 0.063043, 0.055790 ], [ 0.063043, 0.057592 ], [ 0.065660, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0630500", "Lat": "0.0558000", "KPI": 797, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.057592 ], [ 0.065660, 0.055790 ], [ 0.063043, 0.055790 ], [ 0.063043, 0.057592 ], [ 0.065660, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0551678", "Lat": "0.0540000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.055790 ], [ 0.057807, 0.053987 ], [ 0.055189, 0.053987 ], [ 0.055189, 0.055790 ], [ 0.057807, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0551700", "Lat": "0.0540000", "KPI": 91, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.055790 ], [ 0.057807, 0.053987 ], [ 0.055189, 0.053987 ], [ 0.055189, 0.055790 ], [ 0.057807, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0551678", "Lat": "0.0522000", "KPI": 315, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.053987 ], [ 0.057807, 0.052185 ], [ 0.055189, 0.052185 ], [ 0.055189, 0.053987 ], [ 0.057807, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0551700", "Lat": "0.0522000", "KPI": 821, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.053987 ], [ 0.057807, 0.052185 ], [ 0.055189, 0.052185 ], [ 0.055189, 0.053987 ], [ 0.057807, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0551678", "Lat": "0.0504000", "KPI": 714, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.052185 ], [ 0.057807, 0.050383 ], [ 0.055189, 0.050383 ], [ 0.055189, 0.052185 ], [ 0.057807, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0551700", "Lat": "0.0504000", "KPI": 637, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.052185 ], [ 0.057807, 0.050383 ], [ 0.055189, 0.050383 ], [ 0.055189, 0.052185 ], [ 0.057807, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0551678", "Lat": "0.0486000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.050383 ], [ 0.057807, 0.048580 ], [ 0.055189, 0.048580 ], [ 0.055189, 0.050383 ], [ 0.057807, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0551700", "Lat": "0.0486000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.050383 ], [ 0.057807, 0.048580 ], [ 0.055189, 0.048580 ], [ 0.055189, 0.050383 ], [ 0.057807, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0577949", "Lat": "0.0540000", "KPI": 231, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.055790 ], [ 0.060425, 0.053987 ], [ 0.057807, 0.053987 ], [ 0.057807, 0.055790 ], [ 0.060425, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0577900", "Lat": "0.0540000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.055790 ], [ 0.060425, 0.053987 ], [ 0.057807, 0.053987 ], [ 0.057807, 0.055790 ], [ 0.060425, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577949", "Lat": "0.0522000", "KPI": 977, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.053987 ], [ 0.060425, 0.052185 ], [ 0.057807, 0.052185 ], [ 0.057807, 0.053987 ], [ 0.060425, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0577900", "Lat": "0.0522000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.053987 ], [ 0.060425, 0.052185 ], [ 0.057807, 0.052185 ], [ 0.057807, 0.053987 ], [ 0.060425, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0577949", "Lat": "0.0504000", "KPI": 564, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.052185 ], [ 0.060425, 0.050383 ], [ 0.057807, 0.050383 ], [ 0.057807, 0.052185 ], [ 0.060425, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0577900", "Lat": "0.0504000", "KPI": 266, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.052185 ], [ 0.060425, 0.050383 ], [ 0.057807, 0.050383 ], [ 0.057807, 0.052185 ], [ 0.060425, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577949", "Lat": "0.0486000", "KPI": 373, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.050383 ], [ 0.060425, 0.048580 ], [ 0.057807, 0.048580 ], [ 0.057807, 0.050383 ], [ 0.060425, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0577900", "Lat": "0.0486000", "KPI": 58, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.050383 ], [ 0.060425, 0.048580 ], [ 0.057807, 0.048580 ], [ 0.057807, 0.050383 ], [ 0.060425, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0551678", "Lat": "0.0468000", "KPI": 729, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.048580 ], [ 0.057807, 0.046821 ], [ 0.055189, 0.046821 ], [ 0.055189, 0.048580 ], [ 0.057807, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0551700", "Lat": "0.0468000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.048580 ], [ 0.057807, 0.046821 ], [ 0.055189, 0.046821 ], [ 0.055189, 0.048580 ], [ 0.057807, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0551678", "Lat": "0.0450000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.046821 ], [ 0.057807, 0.045018 ], [ 0.055189, 0.045018 ], [ 0.055189, 0.046821 ], [ 0.057807, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0551700", "Lat": "0.0450000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.046821 ], [ 0.057807, 0.045018 ], [ 0.055189, 0.045018 ], [ 0.055189, 0.046821 ], [ 0.057807, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0551678", "Lat": "0.0432000", "KPI": 814, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.045018 ], [ 0.057807, 0.043216 ], [ 0.055189, 0.043216 ], [ 0.055189, 0.045018 ], [ 0.057807, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0551700", "Lat": "0.0432000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.045018 ], [ 0.057807, 0.043216 ], [ 0.055189, 0.043216 ], [ 0.055189, 0.045018 ], [ 0.057807, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0577949", "Lat": "0.0468000", "KPI": 355, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.048580 ], [ 0.060425, 0.046821 ], [ 0.057807, 0.046821 ], [ 0.057807, 0.048580 ], [ 0.060425, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0577900", "Lat": "0.0468000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.048580 ], [ 0.060425, 0.046821 ], [ 0.057807, 0.046821 ], [ 0.057807, 0.048580 ], [ 0.060425, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0577949", "Lat": "0.0450000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.046821 ], [ 0.060425, 0.045018 ], [ 0.057807, 0.045018 ], [ 0.057807, 0.046821 ], [ 0.060425, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0577900", "Lat": "0.0450000", "KPI": 741, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.046821 ], [ 0.060425, 0.045018 ], [ 0.057807, 0.045018 ], [ 0.057807, 0.046821 ], [ 0.060425, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0577949", "Lat": "0.0432000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.045018 ], [ 0.060425, 0.043216 ], [ 0.057807, 0.043216 ], [ 0.057807, 0.045018 ], [ 0.060425, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0577900", "Lat": "0.0432000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.045018 ], [ 0.060425, 0.043216 ], [ 0.057807, 0.043216 ], [ 0.057807, 0.045018 ], [ 0.060425, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0604219", "Lat": "0.0540000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.055790 ], [ 0.063043, 0.053987 ], [ 0.060425, 0.053987 ], [ 0.060425, 0.055790 ], [ 0.063043, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0604200", "Lat": "0.0540000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.055790 ], [ 0.063043, 0.053987 ], [ 0.060425, 0.053987 ], [ 0.060425, 0.055790 ], [ 0.063043, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0604219", "Lat": "0.0522000", "KPI": 906, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.053987 ], [ 0.063043, 0.052185 ], [ 0.060425, 0.052185 ], [ 0.060425, 0.053987 ], [ 0.063043, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0604200", "Lat": "0.0522000", "KPI": 119, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.053987 ], [ 0.063043, 0.052185 ], [ 0.060425, 0.052185 ], [ 0.060425, 0.053987 ], [ 0.063043, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0604219", "Lat": "0.0504000", "KPI": 110, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.052185 ], [ 0.063043, 0.050383 ], [ 0.060425, 0.050383 ], [ 0.060425, 0.052185 ], [ 0.063043, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0604200", "Lat": "0.0504000", "KPI": 358, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.052185 ], [ 0.063043, 0.050383 ], [ 0.060425, 0.050383 ], [ 0.060425, 0.052185 ], [ 0.063043, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0604219", "Lat": "0.0486000", "KPI": 626, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.050383 ], [ 0.063043, 0.048580 ], [ 0.060425, 0.048580 ], [ 0.060425, 0.050383 ], [ 0.063043, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0604200", "Lat": "0.0486000", "KPI": 491, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.050383 ], [ 0.063043, 0.048580 ], [ 0.060425, 0.048580 ], [ 0.060425, 0.050383 ], [ 0.063043, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0630490", "Lat": "0.0540000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.055790 ], [ 0.065660, 0.053987 ], [ 0.063043, 0.053987 ], [ 0.063043, 0.055790 ], [ 0.065660, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0630500", "Lat": "0.0540000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.055790 ], [ 0.065660, 0.053987 ], [ 0.063043, 0.053987 ], [ 0.063043, 0.055790 ], [ 0.065660, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0630490", "Lat": "0.0522000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.053987 ], [ 0.065660, 0.052185 ], [ 0.063043, 0.052185 ], [ 0.063043, 0.053987 ], [ 0.065660, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0630500", "Lat": "0.0522000", "KPI": 982, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.053987 ], [ 0.065660, 0.052185 ], [ 0.063043, 0.052185 ], [ 0.063043, 0.053987 ], [ 0.065660, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630490", "Lat": "0.0504000", "KPI": 580, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.052185 ], [ 0.065660, 0.050383 ], [ 0.063043, 0.050383 ], [ 0.063043, 0.052185 ], [ 0.065660, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0630500", "Lat": "0.0504000", "KPI": 17, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.052185 ], [ 0.065660, 0.050383 ], [ 0.063043, 0.050383 ], [ 0.063043, 0.052185 ], [ 0.065660, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0630490", "Lat": "0.0486000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.050383 ], [ 0.065660, 0.048580 ], [ 0.063043, 0.048580 ], [ 0.063043, 0.050383 ], [ 0.065660, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0630500", "Lat": "0.0486000", "KPI": 194, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.050383 ], [ 0.065660, 0.048580 ], [ 0.063043, 0.048580 ], [ 0.063043, 0.050383 ], [ 0.065660, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0604219", "Lat": "0.0468000", "KPI": 573, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.048580 ], [ 0.063043, 0.046821 ], [ 0.060425, 0.046821 ], [ 0.060425, 0.048580 ], [ 0.063043, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0604200", "Lat": "0.0468000", "KPI": 726, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.048580 ], [ 0.063043, 0.046821 ], [ 0.060425, 0.046821 ], [ 0.060425, 0.048580 ], [ 0.063043, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0604219", "Lat": "0.0450000", "KPI": 301, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.046821 ], [ 0.063043, 0.045018 ], [ 0.060425, 0.045018 ], [ 0.060425, 0.046821 ], [ 0.063043, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0604200", "Lat": "0.0450000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.046821 ], [ 0.063043, 0.045018 ], [ 0.060425, 0.045018 ], [ 0.060425, 0.046821 ], [ 0.063043, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0604219", "Lat": "0.0432000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.045018 ], [ 0.063043, 0.043216 ], [ 0.060425, 0.043216 ], [ 0.060425, 0.045018 ], [ 0.063043, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0604200", "Lat": "0.0432000", "KPI": 604, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.045018 ], [ 0.063043, 0.043216 ], [ 0.060425, 0.043216 ], [ 0.060425, 0.045018 ], [ 0.063043, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0630490", "Lat": "0.0468000", "KPI": 781, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.048580 ], [ 0.065660, 0.046821 ], [ 0.063043, 0.046821 ], [ 0.063043, 0.048580 ], [ 0.065660, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0630500", "Lat": "0.0468000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.048580 ], [ 0.065660, 0.046821 ], [ 0.063043, 0.046821 ], [ 0.063043, 0.048580 ], [ 0.065660, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630490", "Lat": "0.0450000", "KPI": 33, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.046821 ], [ 0.065660, 0.045018 ], [ 0.063043, 0.045018 ], [ 0.063043, 0.046821 ], [ 0.065660, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0630500", "Lat": "0.0450000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.046821 ], [ 0.065660, 0.045018 ], [ 0.063043, 0.045018 ], [ 0.063043, 0.046821 ], [ 0.065660, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0630490", "Lat": "0.0432000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.045018 ], [ 0.065660, 0.043216 ], [ 0.063043, 0.043216 ], [ 0.063043, 0.045018 ], [ 0.065660, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0630500", "Lat": "0.0432000", "KPI": 379, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.045018 ], [ 0.065660, 0.043216 ], [ 0.063043, 0.043216 ], [ 0.063043, 0.045018 ], [ 0.065660, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0656760", "Lat": "0.0558000", "KPI": 192, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.057592 ], [ 0.068321, 0.055790 ], [ 0.065660, 0.055790 ], [ 0.065660, 0.057592 ], [ 0.068321, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0558000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.057592 ], [ 0.068321, 0.055790 ], [ 0.065660, 0.055790 ], [ 0.065660, 0.057592 ], [ 0.068321, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0683030", "Lat": "0.0558000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.057592 ], [ 0.070939, 0.055790 ], [ 0.068321, 0.055790 ], [ 0.068321, 0.057592 ], [ 0.070939, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0683000", "Lat": "0.0558000", "KPI": 830, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.057592 ], [ 0.070939, 0.055790 ], [ 0.068321, 0.055790 ], [ 0.068321, 0.057592 ], [ 0.070939, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0709301", "Lat": "0.0558000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.057592 ], [ 0.073557, 0.055790 ], [ 0.070939, 0.055790 ], [ 0.070939, 0.057592 ], [ 0.073557, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0709300", "Lat": "0.0558000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.057592 ], [ 0.073557, 0.055790 ], [ 0.070939, 0.055790 ], [ 0.070939, 0.057592 ], [ 0.073557, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0735571", "Lat": "0.0558000", "KPI": 938, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.057592 ], [ 0.076175, 0.055790 ], [ 0.073557, 0.055790 ], [ 0.073557, 0.057592 ], [ 0.076175, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0735600", "Lat": "0.0558000", "KPI": 118, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.057592 ], [ 0.076175, 0.055790 ], [ 0.073557, 0.055790 ], [ 0.073557, 0.057592 ], [ 0.076175, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0656760", "Lat": "0.0540000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.055790 ], [ 0.068321, 0.053987 ], [ 0.065660, 0.053987 ], [ 0.065660, 0.055790 ], [ 0.068321, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0656800", "Lat": "0.0540000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.055790 ], [ 0.068321, 0.053987 ], [ 0.065660, 0.053987 ], [ 0.065660, 0.055790 ], [ 0.068321, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0656760", "Lat": "0.0522000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.053987 ], [ 0.068321, 0.052185 ], [ 0.065660, 0.052185 ], [ 0.065660, 0.053987 ], [ 0.068321, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0656800", "Lat": "0.0522000", "KPI": 972, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.053987 ], [ 0.068321, 0.052185 ], [ 0.065660, 0.052185 ], [ 0.065660, 0.053987 ], [ 0.068321, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0656760", "Lat": "0.0504000", "KPI": 544, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.052185 ], [ 0.068321, 0.050383 ], [ 0.065660, 0.050383 ], [ 0.065660, 0.052185 ], [ 0.068321, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0656800", "Lat": "0.0504000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.052185 ], [ 0.068321, 0.050383 ], [ 0.065660, 0.050383 ], [ 0.065660, 0.052185 ], [ 0.068321, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0656760", "Lat": "0.0486000", "KPI": 917, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.050383 ], [ 0.068321, 0.048580 ], [ 0.065660, 0.048580 ], [ 0.065660, 0.050383 ], [ 0.068321, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0656800", "Lat": "0.0486000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.050383 ], [ 0.068321, 0.048580 ], [ 0.065660, 0.048580 ], [ 0.065660, 0.050383 ], [ 0.068321, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0683030", "Lat": "0.0540000", "KPI": 392, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.055790 ], [ 0.070939, 0.053987 ], [ 0.068321, 0.053987 ], [ 0.068321, 0.055790 ], [ 0.070939, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0683000", "Lat": "0.0540000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.055790 ], [ 0.070939, 0.053987 ], [ 0.068321, 0.053987 ], [ 0.068321, 0.055790 ], [ 0.070939, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0683030", "Lat": "0.0522000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.053987 ], [ 0.070939, 0.052185 ], [ 0.068321, 0.052185 ], [ 0.068321, 0.053987 ], [ 0.070939, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0683000", "Lat": "0.0522000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.053987 ], [ 0.070939, 0.052185 ], [ 0.068321, 0.052185 ], [ 0.068321, 0.053987 ], [ 0.070939, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0683030", "Lat": "0.0504000", "KPI": 947, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.052185 ], [ 0.070939, 0.050383 ], [ 0.068321, 0.050383 ], [ 0.068321, 0.052185 ], [ 0.070939, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0683000", "Lat": "0.0504000", "KPI": 187, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.052185 ], [ 0.070939, 0.050383 ], [ 0.068321, 0.050383 ], [ 0.068321, 0.052185 ], [ 0.070939, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0683030", "Lat": "0.0486000", "KPI": 269, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.050383 ], [ 0.070939, 0.048580 ], [ 0.068321, 0.048580 ], [ 0.068321, 0.050383 ], [ 0.070939, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683000", "Lat": "0.0486000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.050383 ], [ 0.070939, 0.048580 ], [ 0.068321, 0.048580 ], [ 0.068321, 0.050383 ], [ 0.070939, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0656760", "Lat": "0.0468000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.048580 ], [ 0.068321, 0.046821 ], [ 0.065660, 0.046821 ], [ 0.065660, 0.048580 ], [ 0.068321, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0656800", "Lat": "0.0468000", "KPI": 669, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.048580 ], [ 0.068321, 0.046821 ], [ 0.065660, 0.046821 ], [ 0.065660, 0.048580 ], [ 0.068321, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0450000", "KPI": 77, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.046821 ], [ 0.068321, 0.045018 ], [ 0.065660, 0.045018 ], [ 0.065660, 0.046821 ], [ 0.068321, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0450000", "KPI": 250, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.046821 ], [ 0.068321, 0.045018 ], [ 0.065660, 0.045018 ], [ 0.065660, 0.046821 ], [ 0.068321, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0656760", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.045018 ], [ 0.068321, 0.043216 ], [ 0.065660, 0.043216 ], [ 0.065660, 0.045018 ], [ 0.068321, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0656800", "Lat": "0.0432000", "KPI": 710, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.045018 ], [ 0.068321, 0.043216 ], [ 0.065660, 0.043216 ], [ 0.065660, 0.045018 ], [ 0.068321, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0683030", "Lat": "0.0468000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.048580 ], [ 0.070939, 0.046821 ], [ 0.068321, 0.046821 ], [ 0.068321, 0.048580 ], [ 0.070939, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0683000", "Lat": "0.0468000", "KPI": 336, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.048580 ], [ 0.070939, 0.046821 ], [ 0.068321, 0.046821 ], [ 0.068321, 0.048580 ], [ 0.070939, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0683030", "Lat": "0.0450000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.046821 ], [ 0.070939, 0.045018 ], [ 0.068321, 0.045018 ], [ 0.068321, 0.046821 ], [ 0.070939, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0683000", "Lat": "0.0450000", "KPI": 743, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.046821 ], [ 0.070939, 0.045018 ], [ 0.068321, 0.045018 ], [ 0.068321, 0.046821 ], [ 0.070939, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0683030", "Lat": "0.0432000", "KPI": 268, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.045018 ], [ 0.070939, 0.043216 ], [ 0.068321, 0.043216 ], [ 0.068321, 0.045018 ], [ 0.070939, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0683000", "Lat": "0.0432000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.045018 ], [ 0.070939, 0.043216 ], [ 0.068321, 0.043216 ], [ 0.068321, 0.045018 ], [ 0.070939, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0540000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.055790 ], [ 0.073557, 0.053987 ], [ 0.070939, 0.053987 ], [ 0.070939, 0.055790 ], [ 0.073557, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0709300", "Lat": "0.0540000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.055790 ], [ 0.073557, 0.053987 ], [ 0.070939, 0.053987 ], [ 0.070939, 0.055790 ], [ 0.073557, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0709301", "Lat": "0.0522000", "KPI": 734, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.053987 ], [ 0.073557, 0.052185 ], [ 0.070939, 0.052185 ], [ 0.070939, 0.053987 ], [ 0.073557, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0709300", "Lat": "0.0522000", "KPI": 146, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.053987 ], [ 0.073557, 0.052185 ], [ 0.070939, 0.052185 ], [ 0.070939, 0.053987 ], [ 0.073557, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0709301", "Lat": "0.0504000", "KPI": 139, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.052185 ], [ 0.073557, 0.050383 ], [ 0.070939, 0.050383 ], [ 0.070939, 0.052185 ], [ 0.073557, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0709300", "Lat": "0.0504000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.052185 ], [ 0.073557, 0.050383 ], [ 0.070939, 0.050383 ], [ 0.070939, 0.052185 ], [ 0.073557, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0709301", "Lat": "0.0486000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.050383 ], [ 0.073557, 0.048580 ], [ 0.070939, 0.048580 ], [ 0.070939, 0.050383 ], [ 0.073557, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0486000", "KPI": 762, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.050383 ], [ 0.073557, 0.048580 ], [ 0.070939, 0.048580 ], [ 0.070939, 0.050383 ], [ 0.073557, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0735571", "Lat": "0.0540000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.055790 ], [ 0.076175, 0.053987 ], [ 0.073557, 0.053987 ], [ 0.073557, 0.055790 ], [ 0.076175, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0735600", "Lat": "0.0540000", "KPI": 441, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.055790 ], [ 0.076175, 0.053987 ], [ 0.073557, 0.053987 ], [ 0.073557, 0.055790 ], [ 0.076175, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0735571", "Lat": "0.0522000", "KPI": 310, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.053987 ], [ 0.076175, 0.052185 ], [ 0.073557, 0.052185 ], [ 0.073557, 0.053987 ], [ 0.076175, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0522000", "KPI": 40, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.053987 ], [ 0.076175, 0.052185 ], [ 0.073557, 0.052185 ], [ 0.073557, 0.053987 ], [ 0.076175, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0735571", "Lat": "0.0504000", "KPI": 908, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.052185 ], [ 0.076175, 0.050383 ], [ 0.073557, 0.050383 ], [ 0.073557, 0.052185 ], [ 0.076175, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0735600", "Lat": "0.0504000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.052185 ], [ 0.076175, 0.050383 ], [ 0.073557, 0.050383 ], [ 0.073557, 0.052185 ], [ 0.076175, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0735571", "Lat": "0.0486000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.050383 ], [ 0.076175, 0.048580 ], [ 0.073557, 0.048580 ], [ 0.073557, 0.050383 ], [ 0.076175, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0735600", "Lat": "0.0486000", "KPI": 76, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.050383 ], [ 0.076175, 0.048580 ], [ 0.073557, 0.048580 ], [ 0.073557, 0.050383 ], [ 0.076175, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0709301", "Lat": "0.0468000", "KPI": 162, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.048580 ], [ 0.073557, 0.046821 ], [ 0.070939, 0.046821 ], [ 0.070939, 0.048580 ], [ 0.073557, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0709300", "Lat": "0.0468000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.048580 ], [ 0.073557, 0.046821 ], [ 0.070939, 0.046821 ], [ 0.070939, 0.048580 ], [ 0.073557, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0709301", "Lat": "0.0450000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.046821 ], [ 0.073557, 0.045018 ], [ 0.070939, 0.045018 ], [ 0.070939, 0.046821 ], [ 0.073557, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0709300", "Lat": "0.0450000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.046821 ], [ 0.073557, 0.045018 ], [ 0.070939, 0.045018 ], [ 0.070939, 0.046821 ], [ 0.073557, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0709301", "Lat": "0.0432000", "KPI": 719, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.045018 ], [ 0.073557, 0.043216 ], [ 0.070939, 0.043216 ], [ 0.070939, 0.045018 ], [ 0.073557, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0709300", "Lat": "0.0432000", "KPI": 493, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.045018 ], [ 0.073557, 0.043216 ], [ 0.070939, 0.043216 ], [ 0.070939, 0.045018 ], [ 0.073557, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0468000", "KPI": 979, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.048580 ], [ 0.076175, 0.046821 ], [ 0.073557, 0.046821 ], [ 0.073557, 0.048580 ], [ 0.076175, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0735600", "Lat": "0.0468000", "KPI": 580, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.048580 ], [ 0.076175, 0.046821 ], [ 0.073557, 0.046821 ], [ 0.073557, 0.048580 ], [ 0.076175, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0735571", "Lat": "0.0450000", "KPI": 361, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.046821 ], [ 0.076175, 0.045018 ], [ 0.073557, 0.045018 ], [ 0.073557, 0.046821 ], [ 0.076175, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0735600", "Lat": "0.0450000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.046821 ], [ 0.076175, 0.045018 ], [ 0.073557, 0.045018 ], [ 0.073557, 0.046821 ], [ 0.076175, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0735571", "Lat": "0.0432000", "KPI": 219, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.045018 ], [ 0.076175, 0.043216 ], [ 0.073557, 0.043216 ], [ 0.073557, 0.045018 ], [ 0.076175, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0735600", "Lat": "0.0432000", "KPI": 959, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.045018 ], [ 0.076175, 0.043216 ], [ 0.073557, 0.043216 ], [ 0.073557, 0.045018 ], [ 0.076175, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0761842", "Lat": "0.0558000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.057592 ], [ 0.078793, 0.055790 ], [ 0.076175, 0.055790 ], [ 0.076175, 0.057592 ], [ 0.078793, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0761800", "Lat": "0.0558000", "KPI": 635, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.057592 ], [ 0.078793, 0.055790 ], [ 0.076175, 0.055790 ], [ 0.076175, 0.057592 ], [ 0.078793, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0558000", "KPI": 418, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.057592 ], [ 0.081453, 0.055790 ], [ 0.078793, 0.055790 ], [ 0.078793, 0.057592 ], [ 0.081453, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0788100", "Lat": "0.0558000", "KPI": 170, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.057592 ], [ 0.081453, 0.055790 ], [ 0.078793, 0.055790 ], [ 0.078793, 0.057592 ], [ 0.081453, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0814382", "Lat": "0.0558000", "KPI": 243, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.057592 ], [ 0.084071, 0.055790 ], [ 0.081453, 0.055790 ], [ 0.081453, 0.057592 ], [ 0.084071, 0.057592 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0814400", "Lat": "0.0558000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.057592 ], [ 0.084071, 0.055790 ], [ 0.081453, 0.055790 ], [ 0.081453, 0.057592 ], [ 0.084071, 0.057592 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0540000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.055790 ], [ 0.078793, 0.053987 ], [ 0.076175, 0.053987 ], [ 0.076175, 0.055790 ], [ 0.078793, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0761800", "Lat": "0.0540000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.055790 ], [ 0.078793, 0.053987 ], [ 0.076175, 0.053987 ], [ 0.076175, 0.055790 ], [ 0.078793, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0761842", "Lat": "0.0522000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.053987 ], [ 0.078793, 0.052185 ], [ 0.076175, 0.052185 ], [ 0.076175, 0.053987 ], [ 0.078793, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0761800", "Lat": "0.0522000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.053987 ], [ 0.078793, 0.052185 ], [ 0.076175, 0.052185 ], [ 0.076175, 0.053987 ], [ 0.078793, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0761842", "Lat": "0.0504000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.052185 ], [ 0.078793, 0.050383 ], [ 0.076175, 0.050383 ], [ 0.076175, 0.052185 ], [ 0.078793, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0761800", "Lat": "0.0504000", "KPI": 148, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.052185 ], [ 0.078793, 0.050383 ], [ 0.076175, 0.050383 ], [ 0.076175, 0.052185 ], [ 0.078793, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0761842", "Lat": "0.0486000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.050383 ], [ 0.078793, 0.048580 ], [ 0.076175, 0.048580 ], [ 0.076175, 0.050383 ], [ 0.078793, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0486000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.050383 ], [ 0.078793, 0.048580 ], [ 0.076175, 0.048580 ], [ 0.076175, 0.050383 ], [ 0.078793, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0788112", "Lat": "0.0540000", "KPI": 39, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.055790 ], [ 0.081453, 0.053987 ], [ 0.078793, 0.053987 ], [ 0.078793, 0.055790 ], [ 0.081453, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0540000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.055790 ], [ 0.081453, 0.053987 ], [ 0.078793, 0.053987 ], [ 0.078793, 0.055790 ], [ 0.081453, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0788112", "Lat": "0.0522000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.053987 ], [ 0.081453, 0.052185 ], [ 0.078793, 0.052185 ], [ 0.078793, 0.053987 ], [ 0.081453, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0788100", "Lat": "0.0522000", "KPI": 197, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.053987 ], [ 0.081453, 0.052185 ], [ 0.078793, 0.052185 ], [ 0.078793, 0.053987 ], [ 0.081453, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0788112", "Lat": "0.0504000", "KPI": 701, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.052185 ], [ 0.081453, 0.050383 ], [ 0.078793, 0.050383 ], [ 0.078793, 0.052185 ], [ 0.081453, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0788100", "Lat": "0.0504000", "KPI": 757, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.052185 ], [ 0.081453, 0.050383 ], [ 0.078793, 0.050383 ], [ 0.078793, 0.052185 ], [ 0.081453, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0788112", "Lat": "0.0486000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.050383 ], [ 0.081453, 0.048580 ], [ 0.078793, 0.048580 ], [ 0.078793, 0.050383 ], [ 0.081453, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0788100", "Lat": "0.0486000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.050383 ], [ 0.081453, 0.048580 ], [ 0.078793, 0.048580 ], [ 0.078793, 0.050383 ], [ 0.081453, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761842", "Lat": "0.0468000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.048580 ], [ 0.078793, 0.046821 ], [ 0.076175, 0.046821 ], [ 0.076175, 0.048580 ], [ 0.078793, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0761800", "Lat": "0.0468000", "KPI": 994, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.048580 ], [ 0.078793, 0.046821 ], [ 0.076175, 0.046821 ], [ 0.076175, 0.048580 ], [ 0.078793, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0761842", "Lat": "0.0450000", "KPI": 773, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.046821 ], [ 0.078793, 0.045018 ], [ 0.076175, 0.045018 ], [ 0.076175, 0.046821 ], [ 0.078793, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0761800", "Lat": "0.0450000", "KPI": 820, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.046821 ], [ 0.078793, 0.045018 ], [ 0.076175, 0.045018 ], [ 0.076175, 0.046821 ], [ 0.078793, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761842", "Lat": "0.0432000", "KPI": 333, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.045018 ], [ 0.078793, 0.043216 ], [ 0.076175, 0.043216 ], [ 0.076175, 0.045018 ], [ 0.078793, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0432000", "KPI": 71, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.045018 ], [ 0.078793, 0.043216 ], [ 0.076175, 0.043216 ], [ 0.076175, 0.045018 ], [ 0.078793, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0788112", "Lat": "0.0468000", "KPI": 109, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.048580 ], [ 0.081453, 0.046821 ], [ 0.078793, 0.046821 ], [ 0.078793, 0.048580 ], [ 0.081453, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0788100", "Lat": "0.0468000", "KPI": 916, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.048580 ], [ 0.081453, 0.046821 ], [ 0.078793, 0.046821 ], [ 0.078793, 0.048580 ], [ 0.081453, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0788112", "Lat": "0.0450000", "KPI": 752, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.046821 ], [ 0.081453, 0.045018 ], [ 0.078793, 0.045018 ], [ 0.078793, 0.046821 ], [ 0.081453, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0788100", "Lat": "0.0450000", "KPI": 575, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.046821 ], [ 0.081453, 0.045018 ], [ 0.078793, 0.045018 ], [ 0.078793, 0.046821 ], [ 0.081453, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0788112", "Lat": "0.0432000", "KPI": 618, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.045018 ], [ 0.081453, 0.043216 ], [ 0.078793, 0.043216 ], [ 0.078793, 0.045018 ], [ 0.081453, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0788100", "Lat": "0.0432000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.045018 ], [ 0.081453, 0.043216 ], [ 0.078793, 0.043216 ], [ 0.078793, 0.045018 ], [ 0.081453, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0814382", "Lat": "0.0540000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.055790 ], [ 0.084071, 0.053987 ], [ 0.081453, 0.053987 ], [ 0.081453, 0.055790 ], [ 0.084071, 0.055790 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0814400", "Lat": "0.0540000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.055790 ], [ 0.084071, 0.053987 ], [ 0.081453, 0.053987 ], [ 0.081453, 0.055790 ], [ 0.084071, 0.055790 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0522000", "KPI": 862, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.053987 ], [ 0.084071, 0.052185 ], [ 0.081453, 0.052185 ], [ 0.081453, 0.053987 ], [ 0.084071, 0.053987 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814400", "Lat": "0.0522000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.053987 ], [ 0.084071, 0.052185 ], [ 0.081453, 0.052185 ], [ 0.081453, 0.053987 ], [ 0.084071, 0.053987 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0814382", "Lat": "0.0504000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.052185 ], [ 0.084071, 0.050383 ], [ 0.081453, 0.050383 ], [ 0.081453, 0.052185 ], [ 0.084071, 0.052185 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0814400", "Lat": "0.0504000", "KPI": 7, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.052185 ], [ 0.084071, 0.050383 ], [ 0.081453, 0.050383 ], [ 0.081453, 0.052185 ], [ 0.084071, 0.052185 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0814382", "Lat": "0.0486000", "KPI": 448, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.050383 ], [ 0.084071, 0.048580 ], [ 0.081453, 0.048580 ], [ 0.081453, 0.050383 ], [ 0.084071, 0.050383 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0814400", "Lat": "0.0486000", "KPI": 903, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.050383 ], [ 0.084071, 0.048580 ], [ 0.081453, 0.048580 ], [ 0.081453, 0.050383 ], [ 0.084071, 0.050383 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0814382", "Lat": "0.0468000", "KPI": 374, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.048580 ], [ 0.084071, 0.046821 ], [ 0.081453, 0.046821 ], [ 0.081453, 0.048580 ], [ 0.084071, 0.048580 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0814400", "Lat": "0.0468000", "KPI": 447, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.048580 ], [ 0.084071, 0.046821 ], [ 0.081453, 0.046821 ], [ 0.081453, 0.048580 ], [ 0.084071, 0.048580 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0814382", "Lat": "0.0450000", "KPI": 425, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.046821 ], [ 0.084071, 0.045018 ], [ 0.081453, 0.045018 ], [ 0.081453, 0.046821 ], [ 0.084071, 0.046821 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814400", "Lat": "0.0450000", "KPI": 897, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.046821 ], [ 0.084071, 0.045018 ], [ 0.081453, 0.045018 ], [ 0.081453, 0.046821 ], [ 0.084071, 0.046821 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0814382", "Lat": "0.0432000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.045018 ], [ 0.084071, 0.043216 ], [ 0.081453, 0.043216 ], [ 0.081453, 0.045018 ], [ 0.084071, 0.045018 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0814400", "Lat": "0.0432000", "KPI": 995, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.045018 ], [ 0.084071, 0.043216 ], [ 0.081453, 0.043216 ], [ 0.081453, 0.045018 ], [ 0.084071, 0.045018 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0446597", "Lat": "0.0414000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.043216 ], [ 0.047293, 0.041413 ], [ 0.044675, 0.041413 ], [ 0.044675, 0.043216 ], [ 0.047293, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0446600", "Lat": "0.0414000", "KPI": 201, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.043216 ], [ 0.047293, 0.041413 ], [ 0.044675, 0.041413 ], [ 0.044675, 0.043216 ], [ 0.047293, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0446597", "Lat": "0.0396000", "KPI": 190, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.041413 ], [ 0.047293, 0.039611 ], [ 0.044675, 0.039611 ], [ 0.044675, 0.041413 ], [ 0.047293, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0446600", "Lat": "0.0396000", "KPI": 15, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.041413 ], [ 0.047293, 0.039611 ], [ 0.044675, 0.039611 ], [ 0.044675, 0.041413 ], [ 0.047293, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0446597", "Lat": "0.0378000", "KPI": 463, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.039611 ], [ 0.047293, 0.037808 ], [ 0.044675, 0.037808 ], [ 0.044675, 0.039611 ], [ 0.047293, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446600", "Lat": "0.0378000", "KPI": 578, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.039611 ], [ 0.047293, 0.037808 ], [ 0.044675, 0.037808 ], [ 0.044675, 0.039611 ], [ 0.047293, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0414000", "KPI": 280, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.043216 ], [ 0.049911, 0.041413 ], [ 0.047293, 0.041413 ], [ 0.047293, 0.043216 ], [ 0.049911, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0472900", "Lat": "0.0414000", "KPI": 139, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.043216 ], [ 0.049911, 0.041413 ], [ 0.047293, 0.041413 ], [ 0.047293, 0.043216 ], [ 0.049911, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0472867", "Lat": "0.0396000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.041413 ], [ 0.049911, 0.039611 ], [ 0.047293, 0.039611 ], [ 0.047293, 0.041413 ], [ 0.049911, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0472900", "Lat": "0.0396000", "KPI": 340, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.041413 ], [ 0.049911, 0.039611 ], [ 0.047293, 0.039611 ], [ 0.047293, 0.041413 ], [ 0.049911, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0472867", "Lat": "0.0378000", "KPI": 515, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.039611 ], [ 0.049911, 0.037808 ], [ 0.047293, 0.037808 ], [ 0.047293, 0.039611 ], [ 0.049911, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0472900", "Lat": "0.0378000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.039611 ], [ 0.049911, 0.037808 ], [ 0.047293, 0.037808 ], [ 0.047293, 0.039611 ], [ 0.049911, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0446597", "Lat": "0.0360000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.037808 ], [ 0.047293, 0.036006 ], [ 0.044675, 0.036006 ], [ 0.044675, 0.037808 ], [ 0.047293, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0446600", "Lat": "0.0360000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.037808 ], [ 0.047293, 0.036006 ], [ 0.044675, 0.036006 ], [ 0.044675, 0.037808 ], [ 0.047293, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446597", "Lat": "0.0342000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.036006 ], [ 0.047293, 0.034204 ], [ 0.044675, 0.034204 ], [ 0.044675, 0.036006 ], [ 0.047293, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0446600", "Lat": "0.0342000", "KPI": 128, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.036006 ], [ 0.047293, 0.034204 ], [ 0.044675, 0.034204 ], [ 0.044675, 0.036006 ], [ 0.047293, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0446597", "Lat": "0.0324000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.034204 ], [ 0.047293, 0.032401 ], [ 0.044675, 0.032401 ], [ 0.044675, 0.034204 ], [ 0.047293, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0446600", "Lat": "0.0324000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.034204 ], [ 0.047293, 0.032401 ], [ 0.044675, 0.032401 ], [ 0.044675, 0.034204 ], [ 0.047293, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0472867", "Lat": "0.0360000", "KPI": 920, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.037808 ], [ 0.049911, 0.036006 ], [ 0.047293, 0.036006 ], [ 0.047293, 0.037808 ], [ 0.049911, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0472900", "Lat": "0.0360000", "KPI": 966, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.037808 ], [ 0.049911, 0.036006 ], [ 0.047293, 0.036006 ], [ 0.047293, 0.037808 ], [ 0.049911, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0472867", "Lat": "0.0342000", "KPI": 472, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.036006 ], [ 0.049911, 0.034204 ], [ 0.047293, 0.034204 ], [ 0.047293, 0.036006 ], [ 0.049911, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0472900", "Lat": "0.0342000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.036006 ], [ 0.049911, 0.034204 ], [ 0.047293, 0.034204 ], [ 0.047293, 0.036006 ], [ 0.049911, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0472867", "Lat": "0.0324000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.034204 ], [ 0.049911, 0.032401 ], [ 0.047293, 0.032401 ], [ 0.047293, 0.034204 ], [ 0.049911, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0472900", "Lat": "0.0324000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.034204 ], [ 0.049911, 0.032401 ], [ 0.047293, 0.032401 ], [ 0.047293, 0.034204 ], [ 0.049911, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0499138", "Lat": "0.0414000", "KPI": 476, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.043216 ], [ 0.052528, 0.041413 ], [ 0.049911, 0.041413 ], [ 0.049911, 0.043216 ], [ 0.052528, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0499100", "Lat": "0.0414000", "KPI": 814, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.043216 ], [ 0.052528, 0.041413 ], [ 0.049911, 0.041413 ], [ 0.049911, 0.043216 ], [ 0.052528, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0499138", "Lat": "0.0396000", "KPI": 524, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.041413 ], [ 0.052528, 0.039611 ], [ 0.049911, 0.039611 ], [ 0.049911, 0.041413 ], [ 0.052528, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0499100", "Lat": "0.0396000", "KPI": 149, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.041413 ], [ 0.052528, 0.039611 ], [ 0.049911, 0.039611 ], [ 0.049911, 0.041413 ], [ 0.052528, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0499138", "Lat": "0.0378000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.039611 ], [ 0.052528, 0.037808 ], [ 0.049911, 0.037808 ], [ 0.049911, 0.039611 ], [ 0.052528, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0499100", "Lat": "0.0378000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.039611 ], [ 0.052528, 0.037808 ], [ 0.049911, 0.037808 ], [ 0.049911, 0.039611 ], [ 0.052528, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0525408", "Lat": "0.0414000", "KPI": 936, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.043216 ], [ 0.055189, 0.041413 ], [ 0.052528, 0.041413 ], [ 0.052528, 0.043216 ], [ 0.055189, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0525400", "Lat": "0.0414000", "KPI": 260, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.043216 ], [ 0.055189, 0.041413 ], [ 0.052528, 0.041413 ], [ 0.052528, 0.043216 ], [ 0.055189, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0525408", "Lat": "0.0396000", "KPI": 224, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.041413 ], [ 0.055189, 0.039611 ], [ 0.052528, 0.039611 ], [ 0.052528, 0.041413 ], [ 0.055189, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0525400", "Lat": "0.0396000", "KPI": 748, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.041413 ], [ 0.055189, 0.039611 ], [ 0.052528, 0.039611 ], [ 0.052528, 0.041413 ], [ 0.055189, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0525408", "Lat": "0.0378000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.039611 ], [ 0.055189, 0.037808 ], [ 0.052528, 0.037808 ], [ 0.052528, 0.039611 ], [ 0.055189, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0525400", "Lat": "0.0378000", "KPI": 157, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.039611 ], [ 0.055189, 0.037808 ], [ 0.052528, 0.037808 ], [ 0.052528, 0.039611 ], [ 0.055189, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0499138", "Lat": "0.0360000", "KPI": 543, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.037808 ], [ 0.052528, 0.036006 ], [ 0.049911, 0.036006 ], [ 0.049911, 0.037808 ], [ 0.052528, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0499100", "Lat": "0.0360000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.037808 ], [ 0.052528, 0.036006 ], [ 0.049911, 0.036006 ], [ 0.049911, 0.037808 ], [ 0.052528, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0499138", "Lat": "0.0342000", "KPI": 588, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.036006 ], [ 0.052528, 0.034204 ], [ 0.049911, 0.034204 ], [ 0.049911, 0.036006 ], [ 0.052528, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0499100", "Lat": "0.0342000", "KPI": 398, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.036006 ], [ 0.052528, 0.034204 ], [ 0.049911, 0.034204 ], [ 0.049911, 0.036006 ], [ 0.052528, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0499138", "Lat": "0.0324000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.034204 ], [ 0.052528, 0.032401 ], [ 0.049911, 0.032401 ], [ 0.049911, 0.034204 ], [ 0.052528, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0499100", "Lat": "0.0324000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.034204 ], [ 0.052528, 0.032401 ], [ 0.049911, 0.032401 ], [ 0.049911, 0.034204 ], [ 0.052528, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0525408", "Lat": "0.0360000", "KPI": 180, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.037808 ], [ 0.055189, 0.036006 ], [ 0.052528, 0.036006 ], [ 0.052528, 0.037808 ], [ 0.055189, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0525400", "Lat": "0.0360000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.037808 ], [ 0.055189, 0.036006 ], [ 0.052528, 0.036006 ], [ 0.052528, 0.037808 ], [ 0.055189, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0525408", "Lat": "0.0342000", "KPI": 550, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.036006 ], [ 0.055189, 0.034204 ], [ 0.052528, 0.034204 ], [ 0.052528, 0.036006 ], [ 0.055189, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0525400", "Lat": "0.0342000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.036006 ], [ 0.055189, 0.034204 ], [ 0.052528, 0.034204 ], [ 0.052528, 0.036006 ], [ 0.055189, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525408", "Lat": "0.0324000", "KPI": 245, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.034204 ], [ 0.055189, 0.032401 ], [ 0.052528, 0.032401 ], [ 0.052528, 0.034204 ], [ 0.055189, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0525400", "Lat": "0.0324000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.034204 ], [ 0.055189, 0.032401 ], [ 0.052528, 0.032401 ], [ 0.052528, 0.034204 ], [ 0.055189, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0446597", "Lat": "0.0306000", "KPI": 226, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.032401 ], [ 0.047293, 0.030599 ], [ 0.044675, 0.030599 ], [ 0.044675, 0.032401 ], [ 0.047293, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0446600", "Lat": "0.0306000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.032401 ], [ 0.047293, 0.030599 ], [ 0.044675, 0.030599 ], [ 0.044675, 0.032401 ], [ 0.047293, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0288000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.030599 ], [ 0.047293, 0.028796 ], [ 0.044675, 0.028796 ], [ 0.044675, 0.030599 ], [ 0.047293, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0446600", "Lat": "0.0288000", "KPI": 285, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.030599 ], [ 0.047293, 0.028796 ], [ 0.044675, 0.028796 ], [ 0.044675, 0.030599 ], [ 0.047293, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0446597", "Lat": "0.0270000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.028796 ], [ 0.047293, 0.026994 ], [ 0.044675, 0.026994 ], [ 0.044675, 0.028796 ], [ 0.047293, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0446600", "Lat": "0.0270000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.028796 ], [ 0.047293, 0.026994 ], [ 0.044675, 0.026994 ], [ 0.044675, 0.028796 ], [ 0.047293, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0472867", "Lat": "0.0306000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.032401 ], [ 0.049911, 0.030599 ], [ 0.047293, 0.030599 ], [ 0.047293, 0.032401 ], [ 0.049911, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0472900", "Lat": "0.0306000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.032401 ], [ 0.049911, 0.030599 ], [ 0.047293, 0.030599 ], [ 0.047293, 0.032401 ], [ 0.049911, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0472867", "Lat": "0.0288000", "KPI": 115, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.030599 ], [ 0.049911, 0.028796 ], [ 0.047293, 0.028796 ], [ 0.047293, 0.030599 ], [ 0.049911, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0472900", "Lat": "0.0288000", "KPI": 180, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.030599 ], [ 0.049911, 0.028796 ], [ 0.047293, 0.028796 ], [ 0.047293, 0.030599 ], [ 0.049911, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0472867", "Lat": "0.0270000", "KPI": 158, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.028796 ], [ 0.049911, 0.026994 ], [ 0.047293, 0.026994 ], [ 0.047293, 0.028796 ], [ 0.049911, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0472900", "Lat": "0.0270000", "KPI": 694, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.028796 ], [ 0.049911, 0.026994 ], [ 0.047293, 0.026994 ], [ 0.047293, 0.028796 ], [ 0.049911, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0446597", "Lat": "0.0252000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.026994 ], [ 0.047293, 0.025191 ], [ 0.044675, 0.025191 ], [ 0.044675, 0.026994 ], [ 0.047293, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0446600", "Lat": "0.0252000", "KPI": 299, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.026994 ], [ 0.047293, 0.025191 ], [ 0.044675, 0.025191 ], [ 0.044675, 0.026994 ], [ 0.047293, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0446597", "Lat": "0.0234000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.025191 ], [ 0.047293, 0.023389 ], [ 0.044675, 0.023389 ], [ 0.044675, 0.025191 ], [ 0.047293, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0446600", "Lat": "0.0234000", "KPI": 865, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.025191 ], [ 0.047293, 0.023389 ], [ 0.044675, 0.023389 ], [ 0.044675, 0.025191 ], [ 0.047293, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0446597", "Lat": "0.0216000", "KPI": 807, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.023389 ], [ 0.047293, 0.021586 ], [ 0.044675, 0.021586 ], [ 0.044675, 0.023389 ], [ 0.047293, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0446600", "Lat": "0.0216000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.023389 ], [ 0.047293, 0.021586 ], [ 0.044675, 0.021586 ], [ 0.044675, 0.023389 ], [ 0.047293, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0472867", "Lat": "0.0252000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.026994 ], [ 0.049911, 0.025191 ], [ 0.047293, 0.025191 ], [ 0.047293, 0.026994 ], [ 0.049911, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0472900", "Lat": "0.0252000", "KPI": 395, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.026994 ], [ 0.049911, 0.025191 ], [ 0.047293, 0.025191 ], [ 0.047293, 0.026994 ], [ 0.049911, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0472867", "Lat": "0.0234000", "KPI": 89, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.025191 ], [ 0.049911, 0.023389 ], [ 0.047293, 0.023389 ], [ 0.047293, 0.025191 ], [ 0.049911, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0472900", "Lat": "0.0234000", "KPI": 507, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.025191 ], [ 0.049911, 0.023389 ], [ 0.047293, 0.023389 ], [ 0.047293, 0.025191 ], [ 0.049911, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0472867", "Lat": "0.0216000", "KPI": 376, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.023389 ], [ 0.049911, 0.021586 ], [ 0.047293, 0.021586 ], [ 0.047293, 0.023389 ], [ 0.049911, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0216000", "KPI": 546, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.023389 ], [ 0.049911, 0.021586 ], [ 0.047293, 0.021586 ], [ 0.047293, 0.023389 ], [ 0.049911, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0499138", "Lat": "0.0306000", "KPI": 225, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.032401 ], [ 0.052528, 0.030599 ], [ 0.049911, 0.030599 ], [ 0.049911, 0.032401 ], [ 0.052528, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0499100", "Lat": "0.0306000", "KPI": 777, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.032401 ], [ 0.052528, 0.030599 ], [ 0.049911, 0.030599 ], [ 0.049911, 0.032401 ], [ 0.052528, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499138", "Lat": "0.0288000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.030599 ], [ 0.052528, 0.028796 ], [ 0.049911, 0.028796 ], [ 0.049911, 0.030599 ], [ 0.052528, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0499100", "Lat": "0.0288000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.030599 ], [ 0.052528, 0.028796 ], [ 0.049911, 0.028796 ], [ 0.049911, 0.030599 ], [ 0.052528, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0499138", "Lat": "0.0270000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.028796 ], [ 0.052528, 0.026994 ], [ 0.049911, 0.026994 ], [ 0.049911, 0.028796 ], [ 0.052528, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0499100", "Lat": "0.0270000", "KPI": 429, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.028796 ], [ 0.052528, 0.026994 ], [ 0.049911, 0.026994 ], [ 0.049911, 0.028796 ], [ 0.052528, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0525408", "Lat": "0.0306000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.032401 ], [ 0.055189, 0.030599 ], [ 0.052528, 0.030599 ], [ 0.052528, 0.032401 ], [ 0.055189, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0525400", "Lat": "0.0306000", "KPI": 568, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.032401 ], [ 0.055189, 0.030599 ], [ 0.052528, 0.030599 ], [ 0.052528, 0.032401 ], [ 0.055189, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0525408", "Lat": "0.0288000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.030599 ], [ 0.055189, 0.028796 ], [ 0.052528, 0.028796 ], [ 0.052528, 0.030599 ], [ 0.055189, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0525400", "Lat": "0.0288000", "KPI": 349, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.030599 ], [ 0.055189, 0.028796 ], [ 0.052528, 0.028796 ], [ 0.052528, 0.030599 ], [ 0.055189, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0270000", "KPI": 514, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.028796 ], [ 0.055189, 0.026994 ], [ 0.052528, 0.026994 ], [ 0.052528, 0.028796 ], [ 0.055189, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0525400", "Lat": "0.0270000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.028796 ], [ 0.055189, 0.026994 ], [ 0.052528, 0.026994 ], [ 0.052528, 0.028796 ], [ 0.055189, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0252000", "KPI": 117, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.026994 ], [ 0.052528, 0.025191 ], [ 0.049911, 0.025191 ], [ 0.049911, 0.026994 ], [ 0.052528, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0499100", "Lat": "0.0252000", "KPI": 152, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.026994 ], [ 0.052528, 0.025191 ], [ 0.049911, 0.025191 ], [ 0.049911, 0.026994 ], [ 0.052528, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0499138", "Lat": "0.0234000", "KPI": 185, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.025191 ], [ 0.052528, 0.023389 ], [ 0.049911, 0.023389 ], [ 0.049911, 0.025191 ], [ 0.052528, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0234000", "KPI": 294, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.025191 ], [ 0.052528, 0.023389 ], [ 0.049911, 0.023389 ], [ 0.049911, 0.025191 ], [ 0.052528, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0499138", "Lat": "0.0216000", "KPI": 468, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.023389 ], [ 0.052528, 0.021586 ], [ 0.049911, 0.021586 ], [ 0.049911, 0.023389 ], [ 0.052528, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499100", "Lat": "0.0216000", "KPI": 747, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.023389 ], [ 0.052528, 0.021586 ], [ 0.049911, 0.021586 ], [ 0.049911, 0.023389 ], [ 0.052528, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0525408", "Lat": "0.0252000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.026994 ], [ 0.055189, 0.025191 ], [ 0.052528, 0.025191 ], [ 0.052528, 0.026994 ], [ 0.055189, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0525400", "Lat": "0.0252000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.026994 ], [ 0.055189, 0.025191 ], [ 0.052528, 0.025191 ], [ 0.052528, 0.026994 ], [ 0.055189, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0525408", "Lat": "0.0234000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.025191 ], [ 0.055189, 0.023389 ], [ 0.052528, 0.023389 ], [ 0.052528, 0.025191 ], [ 0.055189, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0525400", "Lat": "0.0234000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.025191 ], [ 0.055189, 0.023389 ], [ 0.052528, 0.023389 ], [ 0.052528, 0.025191 ], [ 0.055189, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0525408", "Lat": "0.0216000", "KPI": 528, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.023389 ], [ 0.055189, 0.021586 ], [ 0.052528, 0.021586 ], [ 0.052528, 0.023389 ], [ 0.055189, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0525400", "Lat": "0.0216000", "KPI": 121, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.023389 ], [ 0.055189, 0.021586 ], [ 0.052528, 0.021586 ], [ 0.052528, 0.023389 ], [ 0.055189, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0551678", "Lat": "0.0414000", "KPI": 634, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.043216 ], [ 0.057807, 0.041413 ], [ 0.055189, 0.041413 ], [ 0.055189, 0.043216 ], [ 0.057807, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0551700", "Lat": "0.0414000", "KPI": 323, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.043216 ], [ 0.057807, 0.041413 ], [ 0.055189, 0.041413 ], [ 0.055189, 0.043216 ], [ 0.057807, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0551678", "Lat": "0.0396000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.041413 ], [ 0.057807, 0.039611 ], [ 0.055189, 0.039611 ], [ 0.055189, 0.041413 ], [ 0.057807, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0551700", "Lat": "0.0396000", "KPI": 254, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.041413 ], [ 0.057807, 0.039611 ], [ 0.055189, 0.039611 ], [ 0.055189, 0.041413 ], [ 0.057807, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0551678", "Lat": "0.0378000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.039611 ], [ 0.057807, 0.037808 ], [ 0.055189, 0.037808 ], [ 0.055189, 0.039611 ], [ 0.057807, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0551700", "Lat": "0.0378000", "KPI": 479, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.039611 ], [ 0.057807, 0.037808 ], [ 0.055189, 0.037808 ], [ 0.055189, 0.039611 ], [ 0.057807, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0577949", "Lat": "0.0414000", "KPI": 889, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043216 ], [ 0.060425, 0.041413 ], [ 0.057807, 0.041413 ], [ 0.057807, 0.043216 ], [ 0.060425, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577900", "Lat": "0.0414000", "KPI": 199, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.043216 ], [ 0.060425, 0.041413 ], [ 0.057807, 0.041413 ], [ 0.057807, 0.043216 ], [ 0.060425, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0577949", "Lat": "0.0396000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.041413 ], [ 0.060425, 0.039611 ], [ 0.057807, 0.039611 ], [ 0.057807, 0.041413 ], [ 0.060425, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0577900", "Lat": "0.0396000", "KPI": 617, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.041413 ], [ 0.060425, 0.039611 ], [ 0.057807, 0.039611 ], [ 0.057807, 0.041413 ], [ 0.060425, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0378000", "KPI": 960, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.039611 ], [ 0.060425, 0.037808 ], [ 0.057807, 0.037808 ], [ 0.057807, 0.039611 ], [ 0.060425, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577900", "Lat": "0.0378000", "KPI": 895, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.039611 ], [ 0.060425, 0.037808 ], [ 0.057807, 0.037808 ], [ 0.057807, 0.039611 ], [ 0.060425, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0551678", "Lat": "0.0360000", "KPI": 816, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.037808 ], [ 0.057807, 0.036006 ], [ 0.055189, 0.036006 ], [ 0.055189, 0.037808 ], [ 0.057807, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0551700", "Lat": "0.0360000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.037808 ], [ 0.057807, 0.036006 ], [ 0.055189, 0.036006 ], [ 0.055189, 0.037808 ], [ 0.057807, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0551678", "Lat": "0.0342000", "KPI": 359, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.036006 ], [ 0.057807, 0.034204 ], [ 0.055189, 0.034204 ], [ 0.055189, 0.036006 ], [ 0.057807, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0551700", "Lat": "0.0342000", "KPI": 767, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.036006 ], [ 0.057807, 0.034204 ], [ 0.055189, 0.034204 ], [ 0.055189, 0.036006 ], [ 0.057807, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0551678", "Lat": "0.0324000", "KPI": 746, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.034204 ], [ 0.057807, 0.032401 ], [ 0.055189, 0.032401 ], [ 0.055189, 0.034204 ], [ 0.057807, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0551700", "Lat": "0.0324000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.034204 ], [ 0.057807, 0.032401 ], [ 0.055189, 0.032401 ], [ 0.055189, 0.034204 ], [ 0.057807, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0577949", "Lat": "0.0360000", "KPI": 925, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.037808 ], [ 0.060425, 0.036006 ], [ 0.057807, 0.036006 ], [ 0.057807, 0.037808 ], [ 0.060425, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0577900", "Lat": "0.0360000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.037808 ], [ 0.060425, 0.036006 ], [ 0.057807, 0.036006 ], [ 0.057807, 0.037808 ], [ 0.060425, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0577949", "Lat": "0.0342000", "KPI": 166, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.036006 ], [ 0.060425, 0.034204 ], [ 0.057807, 0.034204 ], [ 0.057807, 0.036006 ], [ 0.060425, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0577900", "Lat": "0.0342000", "KPI": 467, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.036006 ], [ 0.060425, 0.034204 ], [ 0.057807, 0.034204 ], [ 0.057807, 0.036006 ], [ 0.060425, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0577949", "Lat": "0.0324000", "KPI": 410, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.034204 ], [ 0.060425, 0.032401 ], [ 0.057807, 0.032401 ], [ 0.057807, 0.034204 ], [ 0.060425, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0577900", "Lat": "0.0324000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.034204 ], [ 0.060425, 0.032401 ], [ 0.057807, 0.032401 ], [ 0.057807, 0.034204 ], [ 0.060425, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0604219", "Lat": "0.0414000", "KPI": 898, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.043216 ], [ 0.063043, 0.041413 ], [ 0.060425, 0.041413 ], [ 0.060425, 0.043216 ], [ 0.063043, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0604200", "Lat": "0.0414000", "KPI": 960, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.043216 ], [ 0.063043, 0.041413 ], [ 0.060425, 0.041413 ], [ 0.060425, 0.043216 ], [ 0.063043, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0604219", "Lat": "0.0396000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.041413 ], [ 0.063043, 0.039611 ], [ 0.060425, 0.039611 ], [ 0.060425, 0.041413 ], [ 0.063043, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0604200", "Lat": "0.0396000", "KPI": 659, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.041413 ], [ 0.063043, 0.039611 ], [ 0.060425, 0.039611 ], [ 0.060425, 0.041413 ], [ 0.063043, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0604219", "Lat": "0.0378000", "KPI": 139, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.039611 ], [ 0.063043, 0.037808 ], [ 0.060425, 0.037808 ], [ 0.060425, 0.039611 ], [ 0.063043, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0604200", "Lat": "0.0378000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.039611 ], [ 0.063043, 0.037808 ], [ 0.060425, 0.037808 ], [ 0.060425, 0.039611 ], [ 0.063043, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0630490", "Lat": "0.0414000", "KPI": 266, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.043216 ], [ 0.065660, 0.041413 ], [ 0.063043, 0.041413 ], [ 0.063043, 0.043216 ], [ 0.065660, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0630500", "Lat": "0.0414000", "KPI": 85, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.043216 ], [ 0.065660, 0.041413 ], [ 0.063043, 0.041413 ], [ 0.063043, 0.043216 ], [ 0.065660, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0630490", "Lat": "0.0396000", "KPI": 574, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.041413 ], [ 0.065660, 0.039611 ], [ 0.063043, 0.039611 ], [ 0.063043, 0.041413 ], [ 0.065660, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630500", "Lat": "0.0396000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.041413 ], [ 0.065660, 0.039611 ], [ 0.063043, 0.039611 ], [ 0.063043, 0.041413 ], [ 0.065660, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0630490", "Lat": "0.0378000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.039611 ], [ 0.065660, 0.037808 ], [ 0.063043, 0.037808 ], [ 0.063043, 0.039611 ], [ 0.065660, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0630500", "Lat": "0.0378000", "KPI": 36, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.039611 ], [ 0.065660, 0.037808 ], [ 0.063043, 0.037808 ], [ 0.063043, 0.039611 ], [ 0.065660, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0604219", "Lat": "0.0360000", "KPI": 506, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.037808 ], [ 0.063043, 0.036006 ], [ 0.060425, 0.036006 ], [ 0.060425, 0.037808 ], [ 0.063043, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0604200", "Lat": "0.0360000", "KPI": 21, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.037808 ], [ 0.063043, 0.036006 ], [ 0.060425, 0.036006 ], [ 0.060425, 0.037808 ], [ 0.063043, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0604219", "Lat": "0.0342000", "KPI": 812, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.036006 ], [ 0.063043, 0.034204 ], [ 0.060425, 0.034204 ], [ 0.060425, 0.036006 ], [ 0.063043, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0604200", "Lat": "0.0342000", "KPI": 902, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.036006 ], [ 0.063043, 0.034204 ], [ 0.060425, 0.034204 ], [ 0.060425, 0.036006 ], [ 0.063043, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0604219", "Lat": "0.0324000", "KPI": 540, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.034204 ], [ 0.063043, 0.032401 ], [ 0.060425, 0.032401 ], [ 0.060425, 0.034204 ], [ 0.063043, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0604200", "Lat": "0.0324000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.034204 ], [ 0.063043, 0.032401 ], [ 0.060425, 0.032401 ], [ 0.060425, 0.034204 ], [ 0.063043, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0630490", "Lat": "0.0360000", "KPI": 109, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.037808 ], [ 0.065660, 0.036006 ], [ 0.063043, 0.036006 ], [ 0.063043, 0.037808 ], [ 0.065660, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0630500", "Lat": "0.0360000", "KPI": 39, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.037808 ], [ 0.065660, 0.036006 ], [ 0.063043, 0.036006 ], [ 0.063043, 0.037808 ], [ 0.065660, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0630490", "Lat": "0.0342000", "KPI": 353, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.036006 ], [ 0.065660, 0.034204 ], [ 0.063043, 0.034204 ], [ 0.063043, 0.036006 ], [ 0.065660, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0630500", "Lat": "0.0342000", "KPI": 4, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.036006 ], [ 0.065660, 0.034204 ], [ 0.063043, 0.034204 ], [ 0.063043, 0.036006 ], [ 0.065660, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0630490", "Lat": "0.0324000", "KPI": 212, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.034204 ], [ 0.065660, 0.032401 ], [ 0.063043, 0.032401 ], [ 0.063043, 0.034204 ], [ 0.065660, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0630500", "Lat": "0.0324000", "KPI": 351, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.034204 ], [ 0.065660, 0.032401 ], [ 0.063043, 0.032401 ], [ 0.063043, 0.034204 ], [ 0.065660, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0551678", "Lat": "0.0306000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.032401 ], [ 0.057807, 0.030599 ], [ 0.055189, 0.030599 ], [ 0.055189, 0.032401 ], [ 0.057807, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0551700", "Lat": "0.0306000", "KPI": 87, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.032401 ], [ 0.057807, 0.030599 ], [ 0.055189, 0.030599 ], [ 0.055189, 0.032401 ], [ 0.057807, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0551678", "Lat": "0.0288000", "KPI": 851, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.030599 ], [ 0.057807, 0.028796 ], [ 0.055189, 0.028796 ], [ 0.055189, 0.030599 ], [ 0.057807, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551700", "Lat": "0.0288000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.030599 ], [ 0.057807, 0.028796 ], [ 0.055189, 0.028796 ], [ 0.055189, 0.030599 ], [ 0.057807, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0551678", "Lat": "0.0270000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.028796 ], [ 0.057807, 0.026994 ], [ 0.055189, 0.026994 ], [ 0.055189, 0.028796 ], [ 0.057807, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0551700", "Lat": "0.0270000", "KPI": 324, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.028796 ], [ 0.057807, 0.026994 ], [ 0.055189, 0.026994 ], [ 0.055189, 0.028796 ], [ 0.057807, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0577949", "Lat": "0.0306000", "KPI": 636, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032401 ], [ 0.060425, 0.030599 ], [ 0.057807, 0.030599 ], [ 0.057807, 0.032401 ], [ 0.060425, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0577900", "Lat": "0.0306000", "KPI": 329, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.032401 ], [ 0.060425, 0.030599 ], [ 0.057807, 0.030599 ], [ 0.057807, 0.032401 ], [ 0.060425, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0577949", "Lat": "0.0288000", "KPI": 889, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.030599 ], [ 0.060425, 0.028796 ], [ 0.057807, 0.028796 ], [ 0.057807, 0.030599 ], [ 0.060425, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0577900", "Lat": "0.0288000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.030599 ], [ 0.060425, 0.028796 ], [ 0.057807, 0.028796 ], [ 0.057807, 0.030599 ], [ 0.060425, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0577949", "Lat": "0.0270000", "KPI": 421, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.028796 ], [ 0.060425, 0.026994 ], [ 0.057807, 0.026994 ], [ 0.057807, 0.028796 ], [ 0.060425, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0577900", "Lat": "0.0270000", "KPI": 761, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.028796 ], [ 0.060425, 0.026994 ], [ 0.057807, 0.026994 ], [ 0.057807, 0.028796 ], [ 0.060425, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0551678", "Lat": "0.0252000", "KPI": 736, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.026994 ], [ 0.057807, 0.025191 ], [ 0.055189, 0.025191 ], [ 0.055189, 0.026994 ], [ 0.057807, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0551700", "Lat": "0.0252000", "KPI": 644, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.026994 ], [ 0.057807, 0.025191 ], [ 0.055189, 0.025191 ], [ 0.055189, 0.026994 ], [ 0.057807, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0551678", "Lat": "0.0234000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.025191 ], [ 0.057807, 0.023389 ], [ 0.055189, 0.023389 ], [ 0.055189, 0.025191 ], [ 0.057807, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0551700", "Lat": "0.0234000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.025191 ], [ 0.057807, 0.023389 ], [ 0.055189, 0.023389 ], [ 0.055189, 0.025191 ], [ 0.057807, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0551678", "Lat": "0.0216000", "KPI": 702, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.023389 ], [ 0.057807, 0.021586 ], [ 0.055189, 0.021586 ], [ 0.055189, 0.023389 ], [ 0.057807, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0551700", "Lat": "0.0216000", "KPI": 688, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.023389 ], [ 0.057807, 0.021586 ], [ 0.055189, 0.021586 ], [ 0.055189, 0.023389 ], [ 0.057807, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0577949", "Lat": "0.0252000", "KPI": 389, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.026994 ], [ 0.060425, 0.025191 ], [ 0.057807, 0.025191 ], [ 0.057807, 0.026994 ], [ 0.060425, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0577900", "Lat": "0.0252000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.026994 ], [ 0.060425, 0.025191 ], [ 0.057807, 0.025191 ], [ 0.057807, 0.026994 ], [ 0.060425, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577949", "Lat": "0.0234000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.025191 ], [ 0.060425, 0.023389 ], [ 0.057807, 0.023389 ], [ 0.057807, 0.025191 ], [ 0.060425, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0577900", "Lat": "0.0234000", "KPI": 289, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.025191 ], [ 0.060425, 0.023389 ], [ 0.057807, 0.023389 ], [ 0.057807, 0.025191 ], [ 0.060425, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0577949", "Lat": "0.0216000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.023389 ], [ 0.060425, 0.021586 ], [ 0.057807, 0.021586 ], [ 0.057807, 0.023389 ], [ 0.060425, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0577900", "Lat": "0.0216000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.023389 ], [ 0.060425, 0.021586 ], [ 0.057807, 0.021586 ], [ 0.057807, 0.023389 ], [ 0.060425, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0604219", "Lat": "0.0306000", "KPI": 12, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.032401 ], [ 0.063043, 0.030599 ], [ 0.060425, 0.030599 ], [ 0.060425, 0.032401 ], [ 0.063043, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0604200", "Lat": "0.0306000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.032401 ], [ 0.063043, 0.030599 ], [ 0.060425, 0.030599 ], [ 0.060425, 0.032401 ], [ 0.063043, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0604219", "Lat": "0.0288000", "KPI": 884, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.030599 ], [ 0.063043, 0.028796 ], [ 0.060425, 0.028796 ], [ 0.060425, 0.030599 ], [ 0.063043, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0604200", "Lat": "0.0288000", "KPI": 140, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.030599 ], [ 0.063043, 0.028796 ], [ 0.060425, 0.028796 ], [ 0.060425, 0.030599 ], [ 0.063043, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0604219", "Lat": "0.0270000", "KPI": 171, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.028796 ], [ 0.063043, 0.026994 ], [ 0.060425, 0.026994 ], [ 0.060425, 0.028796 ], [ 0.063043, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0604200", "Lat": "0.0270000", "KPI": 930, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.028796 ], [ 0.063043, 0.026994 ], [ 0.060425, 0.026994 ], [ 0.060425, 0.028796 ], [ 0.063043, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0630490", "Lat": "0.0306000", "KPI": 661, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.032401 ], [ 0.065660, 0.030599 ], [ 0.063043, 0.030599 ], [ 0.063043, 0.032401 ], [ 0.065660, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630500", "Lat": "0.0306000", "KPI": 677, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.032401 ], [ 0.065660, 0.030599 ], [ 0.063043, 0.030599 ], [ 0.063043, 0.032401 ], [ 0.065660, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0630490", "Lat": "0.0288000", "KPI": 277, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.030599 ], [ 0.065660, 0.028796 ], [ 0.063043, 0.028796 ], [ 0.063043, 0.030599 ], [ 0.065660, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0630500", "Lat": "0.0288000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.030599 ], [ 0.065660, 0.028796 ], [ 0.063043, 0.028796 ], [ 0.063043, 0.030599 ], [ 0.065660, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0630490", "Lat": "0.0270000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.028796 ], [ 0.065660, 0.026994 ], [ 0.063043, 0.026994 ], [ 0.063043, 0.028796 ], [ 0.065660, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0630500", "Lat": "0.0270000", "KPI": 597, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.028796 ], [ 0.065660, 0.026994 ], [ 0.063043, 0.026994 ], [ 0.063043, 0.028796 ], [ 0.065660, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0604219", "Lat": "0.0252000", "KPI": 868, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.026994 ], [ 0.063043, 0.025191 ], [ 0.060425, 0.025191 ], [ 0.060425, 0.026994 ], [ 0.063043, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0604200", "Lat": "0.0252000", "KPI": 937, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.026994 ], [ 0.063043, 0.025191 ], [ 0.060425, 0.025191 ], [ 0.060425, 0.026994 ], [ 0.063043, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0604219", "Lat": "0.0234000", "KPI": 259, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.025191 ], [ 0.063043, 0.023389 ], [ 0.060425, 0.023389 ], [ 0.060425, 0.025191 ], [ 0.063043, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0604200", "Lat": "0.0234000", "KPI": 325, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.025191 ], [ 0.063043, 0.023389 ], [ 0.060425, 0.023389 ], [ 0.060425, 0.025191 ], [ 0.063043, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0604219", "Lat": "0.0216000", "KPI": 677, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.023389 ], [ 0.063043, 0.021586 ], [ 0.060425, 0.021586 ], [ 0.060425, 0.023389 ], [ 0.063043, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0604200", "Lat": "0.0216000", "KPI": 189, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.023389 ], [ 0.063043, 0.021586 ], [ 0.060425, 0.021586 ], [ 0.060425, 0.023389 ], [ 0.063043, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0630490", "Lat": "0.0252000", "KPI": 979, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.026994 ], [ 0.065660, 0.025191 ], [ 0.063043, 0.025191 ], [ 0.063043, 0.026994 ], [ 0.065660, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0630500", "Lat": "0.0252000", "KPI": 923, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.026994 ], [ 0.065660, 0.025191 ], [ 0.063043, 0.025191 ], [ 0.063043, 0.026994 ], [ 0.065660, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0630490", "Lat": "0.0234000", "KPI": 371, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.025191 ], [ 0.065660, 0.023389 ], [ 0.063043, 0.023389 ], [ 0.063043, 0.025191 ], [ 0.065660, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0630500", "Lat": "0.0234000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.025191 ], [ 0.065660, 0.023389 ], [ 0.063043, 0.023389 ], [ 0.063043, 0.025191 ], [ 0.065660, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0630490", "Lat": "0.0216000", "KPI": 566, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.023389 ], [ 0.065660, 0.021586 ], [ 0.063043, 0.021586 ], [ 0.063043, 0.023389 ], [ 0.065660, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0630500", "Lat": "0.0216000", "KPI": 961, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.023389 ], [ 0.065660, 0.021586 ], [ 0.063043, 0.021586 ], [ 0.063043, 0.023389 ], [ 0.065660, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0198000", "KPI": 352, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.021586 ], [ 0.047293, 0.019784 ], [ 0.044675, 0.019784 ], [ 0.044675, 0.021586 ], [ 0.047293, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0446600", "Lat": "0.0198000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.021586 ], [ 0.047293, 0.019784 ], [ 0.044675, 0.019784 ], [ 0.044675, 0.021586 ], [ 0.047293, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0446597", "Lat": "0.0180000", "KPI": 655, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.019784 ], [ 0.047293, 0.017982 ], [ 0.044675, 0.017982 ], [ 0.044675, 0.019784 ], [ 0.047293, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0446600", "Lat": "0.0180000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.019784 ], [ 0.047293, 0.017982 ], [ 0.044675, 0.017982 ], [ 0.044675, 0.019784 ], [ 0.047293, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0446597", "Lat": "0.0162000", "KPI": 160, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.017982 ], [ 0.047293, 0.016179 ], [ 0.044675, 0.016179 ], [ 0.044675, 0.017982 ], [ 0.047293, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0446600", "Lat": "0.0162000", "KPI": 631, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.017982 ], [ 0.047293, 0.016179 ], [ 0.044675, 0.016179 ], [ 0.044675, 0.017982 ], [ 0.047293, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0472867", "Lat": "0.0198000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.021586 ], [ 0.049911, 0.019784 ], [ 0.047293, 0.019784 ], [ 0.047293, 0.021586 ], [ 0.049911, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0472900", "Lat": "0.0198000", "KPI": 601, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.021586 ], [ 0.049911, 0.019784 ], [ 0.047293, 0.019784 ], [ 0.047293, 0.021586 ], [ 0.049911, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0472867", "Lat": "0.0180000", "KPI": 330, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.019784 ], [ 0.049911, 0.017982 ], [ 0.047293, 0.017982 ], [ 0.047293, 0.019784 ], [ 0.049911, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0472900", "Lat": "0.0180000", "KPI": 11, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.019784 ], [ 0.049911, 0.017982 ], [ 0.047293, 0.017982 ], [ 0.047293, 0.019784 ], [ 0.049911, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0472867", "Lat": "0.0162000", "KPI": 646, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.017982 ], [ 0.049911, 0.016179 ], [ 0.047293, 0.016179 ], [ 0.047293, 0.017982 ], [ 0.049911, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0472900", "Lat": "0.0162000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.017982 ], [ 0.049911, 0.016179 ], [ 0.047293, 0.016179 ], [ 0.047293, 0.017982 ], [ 0.049911, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0446597", "Lat": "0.0144000", "KPI": 356, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.016179 ], [ 0.047293, 0.014420 ], [ 0.044675, 0.014420 ], [ 0.044675, 0.016179 ], [ 0.047293, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0446600", "Lat": "0.0144000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.016179 ], [ 0.047293, 0.014420 ], [ 0.044675, 0.014420 ], [ 0.044675, 0.016179 ], [ 0.047293, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0446597", "Lat": "0.0126000", "KPI": 307, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.014420 ], [ 0.047293, 0.012617 ], [ 0.044675, 0.012617 ], [ 0.044675, 0.014420 ], [ 0.047293, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0446600", "Lat": "0.0126000", "KPI": 793, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.014420 ], [ 0.047293, 0.012617 ], [ 0.044675, 0.012617 ], [ 0.044675, 0.014420 ], [ 0.047293, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0446597", "Lat": "0.0108000", "KPI": 742, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.012617 ], [ 0.047293, 0.010815 ], [ 0.044675, 0.010815 ], [ 0.044675, 0.012617 ], [ 0.047293, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0446600", "Lat": "0.0108000", "KPI": 915, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.012617 ], [ 0.047293, 0.010815 ], [ 0.044675, 0.010815 ], [ 0.044675, 0.012617 ], [ 0.047293, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0472867", "Lat": "0.0144000", "KPI": 233, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.016179 ], [ 0.049911, 0.014420 ], [ 0.047293, 0.014420 ], [ 0.047293, 0.016179 ], [ 0.049911, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0472900", "Lat": "0.0144000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.016179 ], [ 0.049911, 0.014420 ], [ 0.047293, 0.014420 ], [ 0.047293, 0.016179 ], [ 0.049911, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0472867", "Lat": "0.0126000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.014420 ], [ 0.049911, 0.012617 ], [ 0.047293, 0.012617 ], [ 0.047293, 0.014420 ], [ 0.049911, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0472900", "Lat": "0.0126000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.014420 ], [ 0.049911, 0.012617 ], [ 0.047293, 0.012617 ], [ 0.047293, 0.014420 ], [ 0.049911, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0108000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.012617 ], [ 0.049911, 0.010815 ], [ 0.047293, 0.010815 ], [ 0.047293, 0.012617 ], [ 0.049911, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0472900", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.012617 ], [ 0.049911, 0.010815 ], [ 0.047293, 0.010815 ], [ 0.047293, 0.012617 ], [ 0.049911, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0499138", "Lat": "0.0198000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.021586 ], [ 0.052528, 0.019784 ], [ 0.049911, 0.019784 ], [ 0.049911, 0.021586 ], [ 0.052528, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0499100", "Lat": "0.0198000", "KPI": 715, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.021586 ], [ 0.052528, 0.019784 ], [ 0.049911, 0.019784 ], [ 0.049911, 0.021586 ], [ 0.052528, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0499138", "Lat": "0.0180000", "KPI": 181, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.019784 ], [ 0.052528, 0.017982 ], [ 0.049911, 0.017982 ], [ 0.049911, 0.019784 ], [ 0.052528, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0499100", "Lat": "0.0180000", "KPI": 141, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.019784 ], [ 0.052528, 0.017982 ], [ 0.049911, 0.017982 ], [ 0.049911, 0.019784 ], [ 0.052528, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0499138", "Lat": "0.0162000", "KPI": 970, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.017982 ], [ 0.052528, 0.016179 ], [ 0.049911, 0.016179 ], [ 0.049911, 0.017982 ], [ 0.052528, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0499100", "Lat": "0.0162000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.017982 ], [ 0.052528, 0.016179 ], [ 0.049911, 0.016179 ], [ 0.049911, 0.017982 ], [ 0.052528, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0525408", "Lat": "0.0198000", "KPI": 955, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.021586 ], [ 0.055189, 0.019784 ], [ 0.052528, 0.019784 ], [ 0.052528, 0.021586 ], [ 0.055189, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0525400", "Lat": "0.0198000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.021586 ], [ 0.055189, 0.019784 ], [ 0.052528, 0.019784 ], [ 0.052528, 0.021586 ], [ 0.055189, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0525408", "Lat": "0.0180000", "KPI": 97, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.019784 ], [ 0.055189, 0.017982 ], [ 0.052528, 0.017982 ], [ 0.052528, 0.019784 ], [ 0.055189, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0525400", "Lat": "0.0180000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.019784 ], [ 0.055189, 0.017982 ], [ 0.052528, 0.017982 ], [ 0.052528, 0.019784 ], [ 0.055189, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0525408", "Lat": "0.0162000", "KPI": 187, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.017982 ], [ 0.055189, 0.016179 ], [ 0.052528, 0.016179 ], [ 0.052528, 0.017982 ], [ 0.055189, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0525400", "Lat": "0.0162000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.017982 ], [ 0.055189, 0.016179 ], [ 0.052528, 0.016179 ], [ 0.052528, 0.017982 ], [ 0.055189, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0499138", "Lat": "0.0144000", "KPI": 58, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.016179 ], [ 0.052528, 0.014420 ], [ 0.049911, 0.014420 ], [ 0.049911, 0.016179 ], [ 0.052528, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0499100", "Lat": "0.0144000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.016179 ], [ 0.052528, 0.014420 ], [ 0.049911, 0.014420 ], [ 0.049911, 0.016179 ], [ 0.052528, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0499138", "Lat": "0.0126000", "KPI": 290, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.014420 ], [ 0.052528, 0.012617 ], [ 0.049911, 0.012617 ], [ 0.049911, 0.014420 ], [ 0.052528, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0499100", "Lat": "0.0126000", "KPI": 942, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.014420 ], [ 0.052528, 0.012617 ], [ 0.049911, 0.012617 ], [ 0.049911, 0.014420 ], [ 0.052528, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499138", "Lat": "0.0108000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.012617 ], [ 0.052528, 0.010815 ], [ 0.049911, 0.010815 ], [ 0.049911, 0.012617 ], [ 0.052528, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0499100", "Lat": "0.0108000", "KPI": 168, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.012617 ], [ 0.052528, 0.010815 ], [ 0.049911, 0.010815 ], [ 0.049911, 0.012617 ], [ 0.052528, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0525408", "Lat": "0.0144000", "KPI": 119, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.016179 ], [ 0.055189, 0.014420 ], [ 0.052528, 0.014420 ], [ 0.052528, 0.016179 ], [ 0.055189, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0525400", "Lat": "0.0144000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.016179 ], [ 0.055189, 0.014420 ], [ 0.052528, 0.014420 ], [ 0.052528, 0.016179 ], [ 0.055189, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0525408", "Lat": "0.0126000", "KPI": 419, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.014420 ], [ 0.055189, 0.012617 ], [ 0.052528, 0.012617 ], [ 0.052528, 0.014420 ], [ 0.055189, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0525400", "Lat": "0.0126000", "KPI": 69, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.014420 ], [ 0.055189, 0.012617 ], [ 0.052528, 0.012617 ], [ 0.052528, 0.014420 ], [ 0.055189, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0525408", "Lat": "0.0108000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.012617 ], [ 0.055189, 0.010815 ], [ 0.052528, 0.010815 ], [ 0.052528, 0.012617 ], [ 0.055189, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0525400", "Lat": "0.0108000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.012617 ], [ 0.055189, 0.010815 ], [ 0.052528, 0.010815 ], [ 0.052528, 0.012617 ], [ 0.055189, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0446597", "Lat": "0.0090000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.010815 ], [ 0.047293, 0.009012 ], [ 0.044675, 0.009012 ], [ 0.044675, 0.010815 ], [ 0.047293, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0446600", "Lat": "0.0090000", "KPI": 961, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.010815 ], [ 0.047293, 0.009012 ], [ 0.044675, 0.009012 ], [ 0.044675, 0.010815 ], [ 0.047293, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0446597", "Lat": "0.0072000", "KPI": 398, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.009012 ], [ 0.047293, 0.007210 ], [ 0.044675, 0.007210 ], [ 0.044675, 0.009012 ], [ 0.047293, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0446600", "Lat": "0.0072000", "KPI": 723, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.009012 ], [ 0.047293, 0.007210 ], [ 0.044675, 0.007210 ], [ 0.044675, 0.009012 ], [ 0.047293, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0054000", "KPI": 264, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.007210 ], [ 0.047293, 0.005407 ], [ 0.044675, 0.005407 ], [ 0.044675, 0.007210 ], [ 0.047293, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0446600", "Lat": "0.0054000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.007210 ], [ 0.047293, 0.005407 ], [ 0.044675, 0.005407 ], [ 0.044675, 0.007210 ], [ 0.047293, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0472867", "Lat": "0.0090000", "KPI": 666, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.010815 ], [ 0.049911, 0.009012 ], [ 0.047293, 0.009012 ], [ 0.047293, 0.010815 ], [ 0.049911, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0472900", "Lat": "0.0090000", "KPI": 261, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.010815 ], [ 0.049911, 0.009012 ], [ 0.047293, 0.009012 ], [ 0.047293, 0.010815 ], [ 0.049911, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0472867", "Lat": "0.0072000", "KPI": 242, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.009012 ], [ 0.049911, 0.007210 ], [ 0.047293, 0.007210 ], [ 0.047293, 0.009012 ], [ 0.049911, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0472900", "Lat": "0.0072000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.009012 ], [ 0.049911, 0.007210 ], [ 0.047293, 0.007210 ], [ 0.047293, 0.009012 ], [ 0.049911, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0472867", "Lat": "0.0054000", "KPI": 262, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.007210 ], [ 0.049911, 0.005407 ], [ 0.047293, 0.005407 ], [ 0.047293, 0.007210 ], [ 0.049911, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0054000", "KPI": 907, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.007210 ], [ 0.049911, 0.005407 ], [ 0.047293, 0.005407 ], [ 0.047293, 0.007210 ], [ 0.049911, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0446597", "Lat": "0.0036000", "KPI": 236, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.005407 ], [ 0.047293, 0.003605 ], [ 0.044675, 0.003605 ], [ 0.044675, 0.005407 ], [ 0.047293, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0446600", "Lat": "0.0036000", "KPI": 436, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.005407 ], [ 0.047293, 0.003605 ], [ 0.044675, 0.003605 ], [ 0.044675, 0.005407 ], [ 0.047293, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0446597", "Lat": "0.0018000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.003605 ], [ 0.047293, 0.001802 ], [ 0.044675, 0.001802 ], [ 0.044675, 0.003605 ], [ 0.047293, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0446600", "Lat": "0.0018000", "KPI": 727, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.003605 ], [ 0.047293, 0.001802 ], [ 0.044675, 0.001802 ], [ 0.044675, 0.003605 ], [ 0.047293, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0446597", "Lat": "0.0000000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.001802 ], [ 0.047293, 0.000000 ], [ 0.044675, 0.000000 ], [ 0.044675, 0.001802 ], [ 0.047293, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0446600", "Lat": "0.0000000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.047293, 0.001802 ], [ 0.047293, 0.000000 ], [ 0.044675, 0.000000 ], [ 0.044675, 0.001802 ], [ 0.047293, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0472867", "Lat": "0.0036000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.005407 ], [ 0.049911, 0.003605 ], [ 0.047293, 0.003605 ], [ 0.047293, 0.005407 ], [ 0.049911, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0472900", "Lat": "0.0036000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.005407 ], [ 0.049911, 0.003605 ], [ 0.047293, 0.003605 ], [ 0.047293, 0.005407 ], [ 0.049911, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0472867", "Lat": "0.0018000", "KPI": 648, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.003605 ], [ 0.049911, 0.001802 ], [ 0.047293, 0.001802 ], [ 0.047293, 0.003605 ], [ 0.049911, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0472900", "Lat": "0.0018000", "KPI": 172, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.003605 ], [ 0.049911, 0.001802 ], [ 0.047293, 0.001802 ], [ 0.047293, 0.003605 ], [ 0.049911, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0472867", "Lat": "0.0000000", "KPI": 993, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.001802 ], [ 0.049911, 0.000000 ], [ 0.047293, 0.000000 ], [ 0.047293, 0.001802 ], [ 0.049911, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0472900", "Lat": "0.0000000", "KPI": 112, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.049911, 0.001802 ], [ 0.049911, 0.000000 ], [ 0.047293, 0.000000 ], [ 0.047293, 0.001802 ], [ 0.049911, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0499138", "Lat": "0.0090000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.010815 ], [ 0.052528, 0.009012 ], [ 0.049911, 0.009012 ], [ 0.049911, 0.010815 ], [ 0.052528, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0499100", "Lat": "0.0090000", "KPI": 799, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.010815 ], [ 0.052528, 0.009012 ], [ 0.049911, 0.009012 ], [ 0.049911, 0.010815 ], [ 0.052528, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0499138", "Lat": "0.0072000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.009012 ], [ 0.052528, 0.007210 ], [ 0.049911, 0.007210 ], [ 0.049911, 0.009012 ], [ 0.052528, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499100", "Lat": "0.0072000", "KPI": 582, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.009012 ], [ 0.052528, 0.007210 ], [ 0.049911, 0.007210 ], [ 0.049911, 0.009012 ], [ 0.052528, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0499138", "Lat": "0.0054000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.007210 ], [ 0.052528, 0.005407 ], [ 0.049911, 0.005407 ], [ 0.049911, 0.007210 ], [ 0.052528, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0499100", "Lat": "0.0054000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.007210 ], [ 0.052528, 0.005407 ], [ 0.049911, 0.005407 ], [ 0.049911, 0.007210 ], [ 0.052528, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0525408", "Lat": "0.0090000", "KPI": 657, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.010815 ], [ 0.055189, 0.009012 ], [ 0.052528, 0.009012 ], [ 0.052528, 0.010815 ], [ 0.055189, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0525400", "Lat": "0.0090000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.010815 ], [ 0.055189, 0.009012 ], [ 0.052528, 0.009012 ], [ 0.052528, 0.010815 ], [ 0.055189, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0525408", "Lat": "0.0072000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.009012 ], [ 0.055189, 0.007210 ], [ 0.052528, 0.007210 ], [ 0.052528, 0.009012 ], [ 0.055189, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0525400", "Lat": "0.0072000", "KPI": 416, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.009012 ], [ 0.055189, 0.007210 ], [ 0.052528, 0.007210 ], [ 0.052528, 0.009012 ], [ 0.055189, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0525408", "Lat": "0.0054000", "KPI": 453, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.007210 ], [ 0.055189, 0.005407 ], [ 0.052528, 0.005407 ], [ 0.052528, 0.007210 ], [ 0.055189, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0525400", "Lat": "0.0054000", "KPI": 475, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.007210 ], [ 0.055189, 0.005407 ], [ 0.052528, 0.005407 ], [ 0.052528, 0.007210 ], [ 0.055189, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0499138", "Lat": "0.0036000", "KPI": 63, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.005407 ], [ 0.052528, 0.003605 ], [ 0.049911, 0.003605 ], [ 0.049911, 0.005407 ], [ 0.052528, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0499100", "Lat": "0.0036000", "KPI": 369, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.005407 ], [ 0.052528, 0.003605 ], [ 0.049911, 0.003605 ], [ 0.049911, 0.005407 ], [ 0.052528, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0499138", "Lat": "0.0018000", "KPI": 958, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.003605 ], [ 0.052528, 0.001802 ], [ 0.049911, 0.001802 ], [ 0.049911, 0.003605 ], [ 0.052528, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0499100", "Lat": "0.0018000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.003605 ], [ 0.052528, 0.001802 ], [ 0.049911, 0.001802 ], [ 0.049911, 0.003605 ], [ 0.052528, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0499138", "Lat": "0.0000000", "KPI": 731, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.001802 ], [ 0.052528, 0.000000 ], [ 0.049911, 0.000000 ], [ 0.049911, 0.001802 ], [ 0.052528, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0499100", "Lat": "0.0000000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.052528, 0.001802 ], [ 0.052528, 0.000000 ], [ 0.049911, 0.000000 ], [ 0.049911, 0.001802 ], [ 0.052528, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0525408", "Lat": "0.0036000", "KPI": 406, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.005407 ], [ 0.055189, 0.003605 ], [ 0.052528, 0.003605 ], [ 0.052528, 0.005407 ], [ 0.055189, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 90, "Long": "0.0525400", "Lat": "0.0036000", "KPI": 632, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.005407 ], [ 0.055189, 0.003605 ], [ 0.052528, 0.003605 ], [ 0.052528, 0.005407 ], [ 0.055189, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0525408", "Lat": "0.0018000", "KPI": 122, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.003605 ], [ 0.055189, 0.001802 ], [ 0.052528, 0.001802 ], [ 0.052528, 0.003605 ], [ 0.055189, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0525400", "Lat": "0.0018000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.003605 ], [ 0.055189, 0.001802 ], [ 0.052528, 0.001802 ], [ 0.052528, 0.003605 ], [ 0.055189, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0525408", "Lat": "0.0000000", "KPI": 944, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.001802 ], [ 0.055189, 0.000000 ], [ 0.052528, 0.000000 ], [ 0.052528, 0.001802 ], [ 0.055189, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0525400", "Lat": "0.0000000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.055189, 0.001802 ], [ 0.055189, 0.000000 ], [ 0.052528, 0.000000 ], [ 0.052528, 0.001802 ], [ 0.055189, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0551678", "Lat": "0.0198000", "KPI": 786, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.021586 ], [ 0.057807, 0.019784 ], [ 0.055189, 0.019784 ], [ 0.055189, 0.021586 ], [ 0.057807, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0551700", "Lat": "0.0198000", "KPI": 672, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.021586 ], [ 0.057807, 0.019784 ], [ 0.055189, 0.019784 ], [ 0.055189, 0.021586 ], [ 0.057807, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0551678", "Lat": "0.0180000", "KPI": 137, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.019784 ], [ 0.057807, 0.017982 ], [ 0.055189, 0.017982 ], [ 0.055189, 0.019784 ], [ 0.057807, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0551700", "Lat": "0.0180000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.019784 ], [ 0.057807, 0.017982 ], [ 0.055189, 0.017982 ], [ 0.055189, 0.019784 ], [ 0.057807, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0551678", "Lat": "0.0162000", "KPI": 342, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.017982 ], [ 0.057807, 0.016179 ], [ 0.055189, 0.016179 ], [ 0.055189, 0.017982 ], [ 0.057807, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0551700", "Lat": "0.0162000", "KPI": 200, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.017982 ], [ 0.057807, 0.016179 ], [ 0.055189, 0.016179 ], [ 0.055189, 0.017982 ], [ 0.057807, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0577949", "Lat": "0.0198000", "KPI": 900, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021586 ], [ 0.060425, 0.019784 ], [ 0.057807, 0.019784 ], [ 0.057807, 0.021586 ], [ 0.060425, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577900", "Lat": "0.0198000", "KPI": 123, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.021586 ], [ 0.060425, 0.019784 ], [ 0.057807, 0.019784 ], [ 0.057807, 0.021586 ], [ 0.060425, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0577949", "Lat": "0.0180000", "KPI": 560, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.019784 ], [ 0.060425, 0.017982 ], [ 0.057807, 0.017982 ], [ 0.057807, 0.019784 ], [ 0.060425, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0180000", "KPI": 883, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.019784 ], [ 0.060425, 0.017982 ], [ 0.057807, 0.017982 ], [ 0.057807, 0.019784 ], [ 0.060425, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0577949", "Lat": "0.0162000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.017982 ], [ 0.060425, 0.016179 ], [ 0.057807, 0.016179 ], [ 0.057807, 0.017982 ], [ 0.060425, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0577900", "Lat": "0.0162000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.017982 ], [ 0.060425, 0.016179 ], [ 0.057807, 0.016179 ], [ 0.057807, 0.017982 ], [ 0.060425, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0551678", "Lat": "0.0144000", "KPI": 902, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.016179 ], [ 0.057807, 0.014420 ], [ 0.055189, 0.014420 ], [ 0.055189, 0.016179 ], [ 0.057807, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0551700", "Lat": "0.0144000", "KPI": 336, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.016179 ], [ 0.057807, 0.014420 ], [ 0.055189, 0.014420 ], [ 0.055189, 0.016179 ], [ 0.057807, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0551678", "Lat": "0.0126000", "KPI": 789, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.014420 ], [ 0.057807, 0.012617 ], [ 0.055189, 0.012617 ], [ 0.055189, 0.014420 ], [ 0.057807, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0551700", "Lat": "0.0126000", "KPI": 880, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.014420 ], [ 0.057807, 0.012617 ], [ 0.055189, 0.012617 ], [ 0.055189, 0.014420 ], [ 0.057807, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0551678", "Lat": "0.0108000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.012617 ], [ 0.057807, 0.010815 ], [ 0.055189, 0.010815 ], [ 0.055189, 0.012617 ], [ 0.057807, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0551700", "Lat": "0.0108000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.012617 ], [ 0.057807, 0.010815 ], [ 0.055189, 0.010815 ], [ 0.055189, 0.012617 ], [ 0.057807, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0577949", "Lat": "0.0144000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016179 ], [ 0.060425, 0.014420 ], [ 0.057807, 0.014420 ], [ 0.057807, 0.016179 ], [ 0.060425, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0577900", "Lat": "0.0144000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.016179 ], [ 0.060425, 0.014420 ], [ 0.057807, 0.014420 ], [ 0.057807, 0.016179 ], [ 0.060425, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577949", "Lat": "0.0126000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.014420 ], [ 0.060425, 0.012617 ], [ 0.057807, 0.012617 ], [ 0.057807, 0.014420 ], [ 0.060425, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 59, "Long": "0.0577900", "Lat": "0.0126000", "KPI": 80, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.014420 ], [ 0.060425, 0.012617 ], [ 0.057807, 0.012617 ], [ 0.057807, 0.014420 ], [ 0.060425, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0577949", "Lat": "0.0108000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.012617 ], [ 0.060425, 0.010815 ], [ 0.057807, 0.010815 ], [ 0.057807, 0.012617 ], [ 0.060425, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0577900", "Lat": "0.0108000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.012617 ], [ 0.060425, 0.010815 ], [ 0.057807, 0.010815 ], [ 0.057807, 0.012617 ], [ 0.060425, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0604219", "Lat": "0.0198000", "KPI": 42, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.021586 ], [ 0.063043, 0.019784 ], [ 0.060425, 0.019784 ], [ 0.060425, 0.021586 ], [ 0.063043, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0604200", "Lat": "0.0198000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.021586 ], [ 0.063043, 0.019784 ], [ 0.060425, 0.019784 ], [ 0.060425, 0.021586 ], [ 0.063043, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0604219", "Lat": "0.0180000", "KPI": 857, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.019784 ], [ 0.063043, 0.017982 ], [ 0.060425, 0.017982 ], [ 0.060425, 0.019784 ], [ 0.063043, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 95, "Long": "0.0604200", "Lat": "0.0180000", "KPI": 60, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.019784 ], [ 0.063043, 0.017982 ], [ 0.060425, 0.017982 ], [ 0.060425, 0.019784 ], [ 0.063043, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0604219", "Lat": "0.0162000", "KPI": 782, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.017982 ], [ 0.063043, 0.016179 ], [ 0.060425, 0.016179 ], [ 0.060425, 0.017982 ], [ 0.063043, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0604200", "Lat": "0.0162000", "KPI": 695, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.017982 ], [ 0.063043, 0.016179 ], [ 0.060425, 0.016179 ], [ 0.060425, 0.017982 ], [ 0.063043, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0630490", "Lat": "0.0198000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.021586 ], [ 0.065660, 0.019784 ], [ 0.063043, 0.019784 ], [ 0.063043, 0.021586 ], [ 0.065660, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0630500", "Lat": "0.0198000", "KPI": 593, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.021586 ], [ 0.065660, 0.019784 ], [ 0.063043, 0.019784 ], [ 0.063043, 0.021586 ], [ 0.065660, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0630490", "Lat": "0.0180000", "KPI": 783, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.019784 ], [ 0.065660, 0.017982 ], [ 0.063043, 0.017982 ], [ 0.063043, 0.019784 ], [ 0.065660, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0630500", "Lat": "0.0180000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.019784 ], [ 0.065660, 0.017982 ], [ 0.063043, 0.017982 ], [ 0.063043, 0.019784 ], [ 0.065660, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0630490", "Lat": "0.0162000", "KPI": 882, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.017982 ], [ 0.065660, 0.016179 ], [ 0.063043, 0.016179 ], [ 0.063043, 0.017982 ], [ 0.065660, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0630500", "Lat": "0.0162000", "KPI": 101, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.017982 ], [ 0.065660, 0.016179 ], [ 0.063043, 0.016179 ], [ 0.063043, 0.017982 ], [ 0.065660, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0604219", "Lat": "0.0144000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.016179 ], [ 0.063043, 0.014420 ], [ 0.060425, 0.014420 ], [ 0.060425, 0.016179 ], [ 0.063043, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0604200", "Lat": "0.0144000", "KPI": 452, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.016179 ], [ 0.063043, 0.014420 ], [ 0.060425, 0.014420 ], [ 0.060425, 0.016179 ], [ 0.063043, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0604219", "Lat": "0.0126000", "KPI": 183, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.014420 ], [ 0.063043, 0.012617 ], [ 0.060425, 0.012617 ], [ 0.060425, 0.014420 ], [ 0.063043, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0604200", "Lat": "0.0126000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.014420 ], [ 0.063043, 0.012617 ], [ 0.060425, 0.012617 ], [ 0.060425, 0.014420 ], [ 0.063043, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0604219", "Lat": "0.0108000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.012617 ], [ 0.063043, 0.010815 ], [ 0.060425, 0.010815 ], [ 0.060425, 0.012617 ], [ 0.063043, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0604200", "Lat": "0.0108000", "KPI": 14, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.012617 ], [ 0.063043, 0.010815 ], [ 0.060425, 0.010815 ], [ 0.060425, 0.012617 ], [ 0.063043, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0630490", "Lat": "0.0144000", "KPI": 90, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.016179 ], [ 0.065660, 0.014420 ], [ 0.063043, 0.014420 ], [ 0.063043, 0.016179 ], [ 0.065660, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0630500", "Lat": "0.0144000", "KPI": 549, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.016179 ], [ 0.065660, 0.014420 ], [ 0.063043, 0.014420 ], [ 0.063043, 0.016179 ], [ 0.065660, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0630490", "Lat": "0.0126000", "KPI": 234, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.014420 ], [ 0.065660, 0.012617 ], [ 0.063043, 0.012617 ], [ 0.063043, 0.014420 ], [ 0.065660, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0630500", "Lat": "0.0126000", "KPI": 57, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.014420 ], [ 0.065660, 0.012617 ], [ 0.063043, 0.012617 ], [ 0.063043, 0.014420 ], [ 0.065660, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0630490", "Lat": "0.0108000", "KPI": 126, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.012617 ], [ 0.065660, 0.010815 ], [ 0.063043, 0.010815 ], [ 0.063043, 0.012617 ], [ 0.065660, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0108000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.012617 ], [ 0.065660, 0.010815 ], [ 0.063043, 0.010815 ], [ 0.063043, 0.012617 ], [ 0.065660, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0551678", "Lat": "0.0090000", "KPI": 686, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.010815 ], [ 0.057807, 0.009012 ], [ 0.055189, 0.009012 ], [ 0.055189, 0.010815 ], [ 0.057807, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0551700", "Lat": "0.0090000", "KPI": 50, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.010815 ], [ 0.057807, 0.009012 ], [ 0.055189, 0.009012 ], [ 0.055189, 0.010815 ], [ 0.057807, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0551678", "Lat": "0.0072000", "KPI": 672, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.009012 ], [ 0.057807, 0.007210 ], [ 0.055189, 0.007210 ], [ 0.055189, 0.009012 ], [ 0.057807, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551700", "Lat": "0.0072000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.009012 ], [ 0.057807, 0.007210 ], [ 0.055189, 0.007210 ], [ 0.055189, 0.009012 ], [ 0.057807, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0551678", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.007210 ], [ 0.057807, 0.005407 ], [ 0.055189, 0.005407 ], [ 0.055189, 0.007210 ], [ 0.057807, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0551700", "Lat": "0.0054000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.007210 ], [ 0.057807, 0.005407 ], [ 0.055189, 0.005407 ], [ 0.055189, 0.007210 ], [ 0.057807, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0577949", "Lat": "0.0090000", "KPI": 266, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010815 ], [ 0.060425, 0.009012 ], [ 0.057807, 0.009012 ], [ 0.057807, 0.010815 ], [ 0.060425, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0577900", "Lat": "0.0090000", "KPI": 705, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.010815 ], [ 0.060425, 0.009012 ], [ 0.057807, 0.009012 ], [ 0.057807, 0.010815 ], [ 0.060425, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0577949", "Lat": "0.0072000", "KPI": 227, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.009012 ], [ 0.060425, 0.007210 ], [ 0.057807, 0.007210 ], [ 0.057807, 0.009012 ], [ 0.060425, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577900", "Lat": "0.0072000", "KPI": 422, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.009012 ], [ 0.060425, 0.007210 ], [ 0.057807, 0.007210 ], [ 0.057807, 0.009012 ], [ 0.060425, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0577949", "Lat": "0.0054000", "KPI": 975, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.007210 ], [ 0.060425, 0.005407 ], [ 0.057807, 0.005407 ], [ 0.057807, 0.007210 ], [ 0.060425, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0577900", "Lat": "0.0054000", "KPI": 209, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.007210 ], [ 0.060425, 0.005407 ], [ 0.057807, 0.005407 ], [ 0.057807, 0.007210 ], [ 0.060425, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0551678", "Lat": "0.0036000", "KPI": 832, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.005407 ], [ 0.057807, 0.003605 ], [ 0.055189, 0.003605 ], [ 0.055189, 0.005407 ], [ 0.057807, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0036000", "KPI": 721, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.005407 ], [ 0.057807, 0.003605 ], [ 0.055189, 0.003605 ], [ 0.055189, 0.005407 ], [ 0.057807, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0551678", "Lat": "0.0018000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.003605 ], [ 0.057807, 0.001802 ], [ 0.055189, 0.001802 ], [ 0.055189, 0.003605 ], [ 0.057807, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0551700", "Lat": "0.0018000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.003605 ], [ 0.057807, 0.001802 ], [ 0.055189, 0.001802 ], [ 0.055189, 0.003605 ], [ 0.057807, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0551678", "Lat": "0.0000000", "KPI": 910, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.001802 ], [ 0.057807, 0.000000 ], [ 0.055189, 0.000000 ], [ 0.055189, 0.001802 ], [ 0.057807, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0551700", "Lat": "0.0000000", "KPI": 65, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.057807, 0.001802 ], [ 0.057807, 0.000000 ], [ 0.055189, 0.000000 ], [ 0.055189, 0.001802 ], [ 0.057807, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0577949", "Lat": "0.0036000", "KPI": 49, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005407 ], [ 0.060425, 0.003605 ], [ 0.057807, 0.003605 ], [ 0.057807, 0.005407 ], [ 0.060425, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0577900", "Lat": "0.0036000", "KPI": 220, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.005407 ], [ 0.060425, 0.003605 ], [ 0.057807, 0.003605 ], [ 0.057807, 0.005407 ], [ 0.060425, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0577949", "Lat": "0.0018000", "KPI": 519, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.003605 ], [ 0.060425, 0.001802 ], [ 0.057807, 0.001802 ], [ 0.057807, 0.003605 ], [ 0.060425, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0577900", "Lat": "0.0018000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.003605 ], [ 0.060425, 0.001802 ], [ 0.057807, 0.001802 ], [ 0.057807, 0.003605 ], [ 0.060425, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0577949", "Lat": "0.0000000", "KPI": 877, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.001802 ], [ 0.060425, 0.000000 ], [ 0.057807, 0.000000 ], [ 0.057807, 0.001802 ], [ 0.060425, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0577900", "Lat": "0.0000000", "KPI": 881, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.060425, 0.001802 ], [ 0.060425, 0.000000 ], [ 0.057807, 0.000000 ], [ 0.057807, 0.001802 ], [ 0.060425, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0604219", "Lat": "0.0090000", "KPI": 830, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.010815 ], [ 0.063043, 0.009012 ], [ 0.060425, 0.009012 ], [ 0.060425, 0.010815 ], [ 0.063043, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0604200", "Lat": "0.0090000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.010815 ], [ 0.063043, 0.009012 ], [ 0.060425, 0.009012 ], [ 0.060425, 0.010815 ], [ 0.063043, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0604219", "Lat": "0.0072000", "KPI": 499, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.009012 ], [ 0.063043, 0.007210 ], [ 0.060425, 0.007210 ], [ 0.060425, 0.009012 ], [ 0.063043, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0604200", "Lat": "0.0072000", "KPI": 551, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.009012 ], [ 0.063043, 0.007210 ], [ 0.060425, 0.007210 ], [ 0.060425, 0.009012 ], [ 0.063043, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0604219", "Lat": "0.0054000", "KPI": 720, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.007210 ], [ 0.063043, 0.005407 ], [ 0.060425, 0.005407 ], [ 0.060425, 0.007210 ], [ 0.063043, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0604200", "Lat": "0.0054000", "KPI": 62, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.007210 ], [ 0.063043, 0.005407 ], [ 0.060425, 0.005407 ], [ 0.060425, 0.007210 ], [ 0.063043, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0630490", "Lat": "0.0090000", "KPI": 77, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.010815 ], [ 0.065660, 0.009012 ], [ 0.063043, 0.009012 ], [ 0.063043, 0.010815 ], [ 0.065660, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0630500", "Lat": "0.0090000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.010815 ], [ 0.065660, 0.009012 ], [ 0.063043, 0.009012 ], [ 0.063043, 0.010815 ], [ 0.065660, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0630490", "Lat": "0.0072000", "KPI": 134, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.009012 ], [ 0.065660, 0.007210 ], [ 0.063043, 0.007210 ], [ 0.063043, 0.009012 ], [ 0.065660, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 88, "Long": "0.0630500", "Lat": "0.0072000", "KPI": 780, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.009012 ], [ 0.065660, 0.007210 ], [ 0.063043, 0.007210 ], [ 0.063043, 0.009012 ], [ 0.065660, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630490", "Lat": "0.0054000", "KPI": 647, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.007210 ], [ 0.065660, 0.005407 ], [ 0.063043, 0.005407 ], [ 0.063043, 0.007210 ], [ 0.065660, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0630500", "Lat": "0.0054000", "KPI": 929, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.007210 ], [ 0.065660, 0.005407 ], [ 0.063043, 0.005407 ], [ 0.063043, 0.007210 ], [ 0.065660, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0604219", "Lat": "0.0036000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.005407 ], [ 0.063043, 0.003605 ], [ 0.060425, 0.003605 ], [ 0.060425, 0.005407 ], [ 0.063043, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0604200", "Lat": "0.0036000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.005407 ], [ 0.063043, 0.003605 ], [ 0.060425, 0.003605 ], [ 0.060425, 0.005407 ], [ 0.063043, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0604219", "Lat": "0.0018000", "KPI": 879, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.003605 ], [ 0.063043, 0.001802 ], [ 0.060425, 0.001802 ], [ 0.060425, 0.003605 ], [ 0.063043, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0604200", "Lat": "0.0018000", "KPI": 415, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.003605 ], [ 0.063043, 0.001802 ], [ 0.060425, 0.001802 ], [ 0.060425, 0.003605 ], [ 0.063043, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0604219", "Lat": "0.0000000", "KPI": 100, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.001802 ], [ 0.063043, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.001802 ], [ 0.063043, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0604200", "Lat": "0.0000000", "KPI": 829, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.063043, 0.001802 ], [ 0.063043, 0.000000 ], [ 0.060425, 0.000000 ], [ 0.060425, 0.001802 ], [ 0.063043, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0630490", "Lat": "0.0036000", "KPI": 328, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.005407 ], [ 0.065660, 0.003605 ], [ 0.063043, 0.003605 ], [ 0.063043, 0.005407 ], [ 0.065660, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0630500", "Lat": "0.0036000", "KPI": 419, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.005407 ], [ 0.065660, 0.003605 ], [ 0.063043, 0.003605 ], [ 0.063043, 0.005407 ], [ 0.065660, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0630490", "Lat": "0.0018000", "KPI": 409, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.003605 ], [ 0.065660, 0.001802 ], [ 0.063043, 0.001802 ], [ 0.063043, 0.003605 ], [ 0.065660, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0630500", "Lat": "0.0018000", "KPI": 873, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.003605 ], [ 0.065660, 0.001802 ], [ 0.063043, 0.001802 ], [ 0.063043, 0.003605 ], [ 0.065660, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0630490", "Lat": "0.0000000", "KPI": 867, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.001802 ], [ 0.065660, 0.000000 ], [ 0.063043, 0.000000 ], [ 0.063043, 0.001802 ], [ 0.065660, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0630500", "Lat": "0.0000000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.065660, 0.001802 ], [ 0.065660, 0.000000 ], [ 0.063043, 0.000000 ], [ 0.063043, 0.001802 ], [ 0.065660, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0656760", "Lat": "0.0414000", "KPI": 538, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.043216 ], [ 0.068321, 0.041413 ], [ 0.065660, 0.041413 ], [ 0.065660, 0.043216 ], [ 0.068321, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0656800", "Lat": "0.0414000", "KPI": 996, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.043216 ], [ 0.068321, 0.041413 ], [ 0.065660, 0.041413 ], [ 0.065660, 0.043216 ], [ 0.068321, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0656760", "Lat": "0.0396000", "KPI": 589, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.041413 ], [ 0.068321, 0.039611 ], [ 0.065660, 0.039611 ], [ 0.065660, 0.041413 ], [ 0.068321, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0396000", "KPI": 594, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.041413 ], [ 0.068321, 0.039611 ], [ 0.065660, 0.039611 ], [ 0.065660, 0.041413 ], [ 0.068321, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0656760", "Lat": "0.0378000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.039611 ], [ 0.068321, 0.037808 ], [ 0.065660, 0.037808 ], [ 0.065660, 0.039611 ], [ 0.068321, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0656800", "Lat": "0.0378000", "KPI": 887, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.039611 ], [ 0.068321, 0.037808 ], [ 0.065660, 0.037808 ], [ 0.065660, 0.039611 ], [ 0.068321, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0683030", "Lat": "0.0414000", "KPI": 733, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.043216 ], [ 0.070939, 0.041413 ], [ 0.068321, 0.041413 ], [ 0.068321, 0.043216 ], [ 0.070939, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683000", "Lat": "0.0414000", "KPI": 584, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.043216 ], [ 0.070939, 0.041413 ], [ 0.068321, 0.041413 ], [ 0.068321, 0.043216 ], [ 0.070939, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0683030", "Lat": "0.0396000", "KPI": 730, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.041413 ], [ 0.070939, 0.039611 ], [ 0.068321, 0.039611 ], [ 0.068321, 0.041413 ], [ 0.070939, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0683000", "Lat": "0.0396000", "KPI": 753, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.041413 ], [ 0.070939, 0.039611 ], [ 0.068321, 0.039611 ], [ 0.068321, 0.041413 ], [ 0.070939, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0683030", "Lat": "0.0378000", "KPI": 314, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.039611 ], [ 0.070939, 0.037808 ], [ 0.068321, 0.037808 ], [ 0.068321, 0.039611 ], [ 0.070939, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0683000", "Lat": "0.0378000", "KPI": 146, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.039611 ], [ 0.070939, 0.037808 ], [ 0.068321, 0.037808 ], [ 0.068321, 0.039611 ], [ 0.070939, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0656760", "Lat": "0.0360000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.037808 ], [ 0.068321, 0.036006 ], [ 0.065660, 0.036006 ], [ 0.065660, 0.037808 ], [ 0.068321, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0656800", "Lat": "0.0360000", "KPI": 766, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.037808 ], [ 0.068321, 0.036006 ], [ 0.065660, 0.036006 ], [ 0.065660, 0.037808 ], [ 0.068321, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 41, "Long": "0.0656760", "Lat": "0.0342000", "KPI": 594, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.036006 ], [ 0.068321, 0.034204 ], [ 0.065660, 0.034204 ], [ 0.065660, 0.036006 ], [ 0.068321, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0656800", "Lat": "0.0342000", "KPI": 451, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.036006 ], [ 0.068321, 0.034204 ], [ 0.065660, 0.034204 ], [ 0.065660, 0.036006 ], [ 0.068321, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0656760", "Lat": "0.0324000", "KPI": 304, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.034204 ], [ 0.068321, 0.032401 ], [ 0.065660, 0.032401 ], [ 0.065660, 0.034204 ], [ 0.068321, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0656800", "Lat": "0.0324000", "KPI": 407, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.034204 ], [ 0.068321, 0.032401 ], [ 0.065660, 0.032401 ], [ 0.065660, 0.034204 ], [ 0.068321, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0683030", "Lat": "0.0360000", "KPI": 554, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.037808 ], [ 0.070939, 0.036006 ], [ 0.068321, 0.036006 ], [ 0.068321, 0.037808 ], [ 0.070939, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683000", "Lat": "0.0360000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.037808 ], [ 0.070939, 0.036006 ], [ 0.068321, 0.036006 ], [ 0.068321, 0.037808 ], [ 0.070939, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0683030", "Lat": "0.0342000", "KPI": 620, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.036006 ], [ 0.070939, 0.034204 ], [ 0.068321, 0.034204 ], [ 0.068321, 0.036006 ], [ 0.070939, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0683000", "Lat": "0.0342000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.036006 ], [ 0.070939, 0.034204 ], [ 0.068321, 0.034204 ], [ 0.068321, 0.036006 ], [ 0.070939, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0683030", "Lat": "0.0324000", "KPI": 527, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.034204 ], [ 0.070939, 0.032401 ], [ 0.068321, 0.032401 ], [ 0.068321, 0.034204 ], [ 0.070939, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0683000", "Lat": "0.0324000", "KPI": 650, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.034204 ], [ 0.070939, 0.032401 ], [ 0.068321, 0.032401 ], [ 0.068321, 0.034204 ], [ 0.070939, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0709301", "Lat": "0.0414000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.043216 ], [ 0.073557, 0.041413 ], [ 0.070939, 0.041413 ], [ 0.070939, 0.043216 ], [ 0.073557, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0709300", "Lat": "0.0414000", "KPI": 744, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.043216 ], [ 0.073557, 0.041413 ], [ 0.070939, 0.041413 ], [ 0.070939, 0.043216 ], [ 0.073557, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0709301", "Lat": "0.0396000", "KPI": 728, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.041413 ], [ 0.073557, 0.039611 ], [ 0.070939, 0.039611 ], [ 0.070939, 0.041413 ], [ 0.073557, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0396000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.041413 ], [ 0.073557, 0.039611 ], [ 0.070939, 0.039611 ], [ 0.070939, 0.041413 ], [ 0.073557, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0378000", "KPI": 660, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.039611 ], [ 0.073557, 0.037808 ], [ 0.070939, 0.037808 ], [ 0.070939, 0.039611 ], [ 0.073557, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0709300", "Lat": "0.0378000", "KPI": 876, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.039611 ], [ 0.073557, 0.037808 ], [ 0.070939, 0.037808 ], [ 0.070939, 0.039611 ], [ 0.073557, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0735571", "Lat": "0.0414000", "KPI": 498, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.043216 ], [ 0.076175, 0.041413 ], [ 0.073557, 0.041413 ], [ 0.073557, 0.043216 ], [ 0.076175, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0735600", "Lat": "0.0414000", "KPI": 904, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.043216 ], [ 0.076175, 0.041413 ], [ 0.073557, 0.041413 ], [ 0.073557, 0.043216 ], [ 0.076175, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0735571", "Lat": "0.0396000", "KPI": 343, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.041413 ], [ 0.076175, 0.039611 ], [ 0.073557, 0.039611 ], [ 0.073557, 0.041413 ], [ 0.076175, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0396000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.041413 ], [ 0.076175, 0.039611 ], [ 0.073557, 0.039611 ], [ 0.073557, 0.041413 ], [ 0.076175, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0735571", "Lat": "0.0378000", "KPI": 186, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.039611 ], [ 0.076175, 0.037808 ], [ 0.073557, 0.037808 ], [ 0.073557, 0.039611 ], [ 0.076175, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0735600", "Lat": "0.0378000", "KPI": 298, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.039611 ], [ 0.076175, 0.037808 ], [ 0.073557, 0.037808 ], [ 0.073557, 0.039611 ], [ 0.076175, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0709301", "Lat": "0.0360000", "KPI": 552, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.037808 ], [ 0.073557, 0.036006 ], [ 0.070939, 0.036006 ], [ 0.070939, 0.037808 ], [ 0.073557, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0709300", "Lat": "0.0360000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.037808 ], [ 0.073557, 0.036006 ], [ 0.070939, 0.036006 ], [ 0.070939, 0.037808 ], [ 0.073557, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 20, "Long": "0.0709301", "Lat": "0.0342000", "KPI": 328, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.036006 ], [ 0.073557, 0.034204 ], [ 0.070939, 0.034204 ], [ 0.070939, 0.036006 ], [ 0.073557, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0709300", "Lat": "0.0342000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.036006 ], [ 0.073557, 0.034204 ], [ 0.070939, 0.034204 ], [ 0.070939, 0.036006 ], [ 0.073557, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709301", "Lat": "0.0324000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.034204 ], [ 0.073557, 0.032401 ], [ 0.070939, 0.032401 ], [ 0.070939, 0.034204 ], [ 0.073557, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0709300", "Lat": "0.0324000", "KPI": 531, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.034204 ], [ 0.073557, 0.032401 ], [ 0.070939, 0.032401 ], [ 0.070939, 0.034204 ], [ 0.073557, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0735571", "Lat": "0.0360000", "KPI": 951, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.037808 ], [ 0.076175, 0.036006 ], [ 0.073557, 0.036006 ], [ 0.073557, 0.037808 ], [ 0.076175, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0735600", "Lat": "0.0360000", "KPI": 774, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.037808 ], [ 0.076175, 0.036006 ], [ 0.073557, 0.036006 ], [ 0.073557, 0.037808 ], [ 0.076175, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0735571", "Lat": "0.0342000", "KPI": 956, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.036006 ], [ 0.076175, 0.034204 ], [ 0.073557, 0.034204 ], [ 0.073557, 0.036006 ], [ 0.076175, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0735600", "Lat": "0.0342000", "KPI": 61, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.036006 ], [ 0.076175, 0.034204 ], [ 0.073557, 0.034204 ], [ 0.073557, 0.036006 ], [ 0.076175, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0735571", "Lat": "0.0324000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.034204 ], [ 0.076175, 0.032401 ], [ 0.073557, 0.032401 ], [ 0.073557, 0.034204 ], [ 0.076175, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0735600", "Lat": "0.0324000", "KPI": 397, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.034204 ], [ 0.076175, 0.032401 ], [ 0.073557, 0.032401 ], [ 0.073557, 0.034204 ], [ 0.076175, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0656760", "Lat": "0.0306000", "KPI": 601, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.032401 ], [ 0.068321, 0.030599 ], [ 0.065660, 0.030599 ], [ 0.065660, 0.032401 ], [ 0.068321, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0656800", "Lat": "0.0306000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.032401 ], [ 0.068321, 0.030599 ], [ 0.065660, 0.030599 ], [ 0.065660, 0.032401 ], [ 0.068321, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0656760", "Lat": "0.0288000", "KPI": 91, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.030599 ], [ 0.068321, 0.028796 ], [ 0.065660, 0.028796 ], [ 0.065660, 0.030599 ], [ 0.068321, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0656800", "Lat": "0.0288000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.030599 ], [ 0.068321, 0.028796 ], [ 0.065660, 0.028796 ], [ 0.065660, 0.030599 ], [ 0.068321, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0656760", "Lat": "0.0270000", "KPI": 253, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.028796 ], [ 0.068321, 0.026994 ], [ 0.065660, 0.026994 ], [ 0.065660, 0.028796 ], [ 0.068321, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0656800", "Lat": "0.0270000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.028796 ], [ 0.068321, 0.026994 ], [ 0.065660, 0.026994 ], [ 0.065660, 0.028796 ], [ 0.068321, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0683030", "Lat": "0.0306000", "KPI": 879, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.032401 ], [ 0.070939, 0.030599 ], [ 0.068321, 0.030599 ], [ 0.068321, 0.032401 ], [ 0.070939, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0683000", "Lat": "0.0306000", "KPI": 835, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.032401 ], [ 0.070939, 0.030599 ], [ 0.068321, 0.030599 ], [ 0.068321, 0.032401 ], [ 0.070939, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0683030", "Lat": "0.0288000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.030599 ], [ 0.070939, 0.028796 ], [ 0.068321, 0.028796 ], [ 0.068321, 0.030599 ], [ 0.070939, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 74, "Long": "0.0683000", "Lat": "0.0288000", "KPI": 206, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.030599 ], [ 0.070939, 0.028796 ], [ 0.068321, 0.028796 ], [ 0.068321, 0.030599 ], [ 0.070939, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0683030", "Lat": "0.0270000", "KPI": 319, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.028796 ], [ 0.070939, 0.026994 ], [ 0.068321, 0.026994 ], [ 0.068321, 0.028796 ], [ 0.070939, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0683000", "Lat": "0.0270000", "KPI": 54, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.028796 ], [ 0.070939, 0.026994 ], [ 0.068321, 0.026994 ], [ 0.068321, 0.028796 ], [ 0.070939, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0656760", "Lat": "0.0252000", "KPI": 450, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.026994 ], [ 0.068321, 0.025191 ], [ 0.065660, 0.025191 ], [ 0.065660, 0.026994 ], [ 0.068321, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0656800", "Lat": "0.0252000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.026994 ], [ 0.068321, 0.025191 ], [ 0.065660, 0.025191 ], [ 0.065660, 0.026994 ], [ 0.068321, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0656760", "Lat": "0.0234000", "KPI": 239, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.025191 ], [ 0.068321, 0.023389 ], [ 0.065660, 0.023389 ], [ 0.065660, 0.025191 ], [ 0.068321, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0656800", "Lat": "0.0234000", "KPI": 52, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.025191 ], [ 0.068321, 0.023389 ], [ 0.065660, 0.023389 ], [ 0.065660, 0.025191 ], [ 0.068321, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0656760", "Lat": "0.0216000", "KPI": 806, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.023389 ], [ 0.068321, 0.021586 ], [ 0.065660, 0.021586 ], [ 0.065660, 0.023389 ], [ 0.068321, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0656800", "Lat": "0.0216000", "KPI": 664, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.023389 ], [ 0.068321, 0.021586 ], [ 0.065660, 0.021586 ], [ 0.065660, 0.023389 ], [ 0.068321, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0683030", "Lat": "0.0252000", "KPI": 964, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.026994 ], [ 0.070939, 0.025191 ], [ 0.068321, 0.025191 ], [ 0.068321, 0.026994 ], [ 0.070939, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0683000", "Lat": "0.0252000", "KPI": 626, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.026994 ], [ 0.070939, 0.025191 ], [ 0.068321, 0.025191 ], [ 0.068321, 0.026994 ], [ 0.070939, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0234000", "KPI": 635, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.025191 ], [ 0.070939, 0.023389 ], [ 0.068321, 0.023389 ], [ 0.068321, 0.025191 ], [ 0.070939, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0683000", "Lat": "0.0234000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.025191 ], [ 0.070939, 0.023389 ], [ 0.068321, 0.023389 ], [ 0.068321, 0.025191 ], [ 0.070939, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0683030", "Lat": "0.0216000", "KPI": 526, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.023389 ], [ 0.070939, 0.021586 ], [ 0.068321, 0.021586 ], [ 0.068321, 0.023389 ], [ 0.070939, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 37, "Long": "0.0683000", "Lat": "0.0216000", "KPI": 301, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.023389 ], [ 0.070939, 0.021586 ], [ 0.068321, 0.021586 ], [ 0.068321, 0.023389 ], [ 0.070939, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0709301", "Lat": "0.0306000", "KPI": 100, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.032401 ], [ 0.073557, 0.030599 ], [ 0.070939, 0.030599 ], [ 0.070939, 0.032401 ], [ 0.073557, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0709300", "Lat": "0.0306000", "KPI": 444, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.032401 ], [ 0.073557, 0.030599 ], [ 0.070939, 0.030599 ], [ 0.070939, 0.032401 ], [ 0.073557, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0709301", "Lat": "0.0288000", "KPI": 176, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.030599 ], [ 0.073557, 0.028796 ], [ 0.070939, 0.028796 ], [ 0.070939, 0.030599 ], [ 0.073557, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709300", "Lat": "0.0288000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.030599 ], [ 0.073557, 0.028796 ], [ 0.070939, 0.028796 ], [ 0.070939, 0.030599 ], [ 0.073557, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0709301", "Lat": "0.0270000", "KPI": 987, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.028796 ], [ 0.073557, 0.026994 ], [ 0.070939, 0.026994 ], [ 0.070939, 0.028796 ], [ 0.073557, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0709300", "Lat": "0.0270000", "KPI": 539, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.028796 ], [ 0.073557, 0.026994 ], [ 0.070939, 0.026994 ], [ 0.070939, 0.028796 ], [ 0.073557, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0735571", "Lat": "0.0306000", "KPI": 959, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.032401 ], [ 0.076175, 0.030599 ], [ 0.073557, 0.030599 ], [ 0.073557, 0.032401 ], [ 0.076175, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0735600", "Lat": "0.0306000", "KPI": 470, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.032401 ], [ 0.076175, 0.030599 ], [ 0.073557, 0.030599 ], [ 0.073557, 0.032401 ], [ 0.076175, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0735571", "Lat": "0.0288000", "KPI": 684, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.030599 ], [ 0.076175, 0.028796 ], [ 0.073557, 0.028796 ], [ 0.073557, 0.030599 ], [ 0.076175, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0735600", "Lat": "0.0288000", "KPI": 362, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.030599 ], [ 0.076175, 0.028796 ], [ 0.073557, 0.028796 ], [ 0.073557, 0.030599 ], [ 0.076175, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0735571", "Lat": "0.0270000", "KPI": 565, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.028796 ], [ 0.076175, 0.026994 ], [ 0.073557, 0.026994 ], [ 0.073557, 0.028796 ], [ 0.076175, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0735600", "Lat": "0.0270000", "KPI": 969, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.028796 ], [ 0.076175, 0.026994 ], [ 0.073557, 0.026994 ], [ 0.073557, 0.028796 ], [ 0.076175, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0709301", "Lat": "0.0252000", "KPI": 191, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.026994 ], [ 0.073557, 0.025191 ], [ 0.070939, 0.025191 ], [ 0.070939, 0.026994 ], [ 0.073557, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0709300", "Lat": "0.0252000", "KPI": 445, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.026994 ], [ 0.073557, 0.025191 ], [ 0.070939, 0.025191 ], [ 0.070939, 0.026994 ], [ 0.073557, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 27, "Long": "0.0709301", "Lat": "0.0234000", "KPI": 72, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.025191 ], [ 0.073557, 0.023389 ], [ 0.070939, 0.023389 ], [ 0.070939, 0.025191 ], [ 0.073557, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0709300", "Lat": "0.0234000", "KPI": 811, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.025191 ], [ 0.073557, 0.023389 ], [ 0.070939, 0.023389 ], [ 0.070939, 0.025191 ], [ 0.073557, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 43, "Long": "0.0709301", "Lat": "0.0216000", "KPI": 745, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.023389 ], [ 0.073557, 0.021586 ], [ 0.070939, 0.021586 ], [ 0.070939, 0.023389 ], [ 0.073557, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0709300", "Lat": "0.0216000", "KPI": 768, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.023389 ], [ 0.073557, 0.021586 ], [ 0.070939, 0.021586 ], [ 0.070939, 0.023389 ], [ 0.073557, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0735571", "Lat": "0.0252000", "KPI": 817, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.026994 ], [ 0.076175, 0.025191 ], [ 0.073557, 0.025191 ], [ 0.073557, 0.026994 ], [ 0.076175, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0735600", "Lat": "0.0252000", "KPI": 986, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.026994 ], [ 0.076175, 0.025191 ], [ 0.073557, 0.025191 ], [ 0.073557, 0.026994 ], [ 0.076175, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0735571", "Lat": "0.0234000", "KPI": 339, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.025191 ], [ 0.076175, 0.023389 ], [ 0.073557, 0.023389 ], [ 0.073557, 0.025191 ], [ 0.076175, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0735600", "Lat": "0.0234000", "KPI": 670, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.025191 ], [ 0.076175, 0.023389 ], [ 0.073557, 0.023389 ], [ 0.073557, 0.025191 ], [ 0.076175, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0735571", "Lat": "0.0216000", "KPI": 404, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.023389 ], [ 0.076175, 0.021586 ], [ 0.073557, 0.021586 ], [ 0.073557, 0.023389 ], [ 0.076175, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0735600", "Lat": "0.0216000", "KPI": 878, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.023389 ], [ 0.076175, 0.021586 ], [ 0.073557, 0.021586 ], [ 0.073557, 0.023389 ], [ 0.076175, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0761842", "Lat": "0.0414000", "KPI": 240, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.043216 ], [ 0.078793, 0.041413 ], [ 0.076175, 0.041413 ], [ 0.076175, 0.043216 ], [ 0.078793, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0761800", "Lat": "0.0414000", "KPI": 556, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.043216 ], [ 0.078793, 0.041413 ], [ 0.076175, 0.041413 ], [ 0.076175, 0.043216 ], [ 0.078793, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0761842", "Lat": "0.0396000", "KPI": 389, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.041413 ], [ 0.078793, 0.039611 ], [ 0.076175, 0.039611 ], [ 0.076175, 0.041413 ], [ 0.078793, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761800", "Lat": "0.0396000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.041413 ], [ 0.078793, 0.039611 ], [ 0.076175, 0.039611 ], [ 0.076175, 0.041413 ], [ 0.078793, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0761842", "Lat": "0.0378000", "KPI": 924, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.039611 ], [ 0.078793, 0.037808 ], [ 0.076175, 0.037808 ], [ 0.076175, 0.039611 ], [ 0.078793, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0761800", "Lat": "0.0378000", "KPI": 321, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.039611 ], [ 0.078793, 0.037808 ], [ 0.076175, 0.037808 ], [ 0.076175, 0.039611 ], [ 0.078793, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0788112", "Lat": "0.0414000", "KPI": 308, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.043216 ], [ 0.081453, 0.041413 ], [ 0.078793, 0.041413 ], [ 0.078793, 0.043216 ], [ 0.081453, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0414000", "KPI": 790, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.043216 ], [ 0.081453, 0.041413 ], [ 0.078793, 0.041413 ], [ 0.078793, 0.043216 ], [ 0.081453, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0788112", "Lat": "0.0396000", "KPI": 766, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.041413 ], [ 0.081453, 0.039611 ], [ 0.078793, 0.039611 ], [ 0.078793, 0.041413 ], [ 0.081453, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0788100", "Lat": "0.0396000", "KPI": 771, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.041413 ], [ 0.081453, 0.039611 ], [ 0.078793, 0.039611 ], [ 0.078793, 0.041413 ], [ 0.081453, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0788112", "Lat": "0.0378000", "KPI": 129, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.039611 ], [ 0.081453, 0.037808 ], [ 0.078793, 0.037808 ], [ 0.078793, 0.039611 ], [ 0.081453, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0788100", "Lat": "0.0378000", "KPI": 74, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.039611 ], [ 0.081453, 0.037808 ], [ 0.078793, 0.037808 ], [ 0.078793, 0.039611 ], [ 0.081453, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0761842", "Lat": "0.0360000", "KPI": 541, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.037808 ], [ 0.078793, 0.036006 ], [ 0.076175, 0.036006 ], [ 0.076175, 0.037808 ], [ 0.078793, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0761800", "Lat": "0.0360000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.037808 ], [ 0.078793, 0.036006 ], [ 0.076175, 0.036006 ], [ 0.076175, 0.037808 ], [ 0.078793, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0761842", "Lat": "0.0342000", "KPI": 616, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.036006 ], [ 0.078793, 0.034204 ], [ 0.076175, 0.034204 ], [ 0.076175, 0.036006 ], [ 0.078793, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0761800", "Lat": "0.0342000", "KPI": 263, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.036006 ], [ 0.078793, 0.034204 ], [ 0.076175, 0.034204 ], [ 0.076175, 0.036006 ], [ 0.078793, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761842", "Lat": "0.0324000", "KPI": 251, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.034204 ], [ 0.078793, 0.032401 ], [ 0.076175, 0.032401 ], [ 0.076175, 0.034204 ], [ 0.078793, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0761800", "Lat": "0.0324000", "KPI": 523, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.034204 ], [ 0.078793, 0.032401 ], [ 0.076175, 0.032401 ], [ 0.076175, 0.034204 ], [ 0.078793, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0788112", "Lat": "0.0360000", "KPI": 858, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.037808 ], [ 0.081453, 0.036006 ], [ 0.078793, 0.036006 ], [ 0.078793, 0.037808 ], [ 0.081453, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0788100", "Lat": "0.0360000", "KPI": 420, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.037808 ], [ 0.081453, 0.036006 ], [ 0.078793, 0.036006 ], [ 0.078793, 0.037808 ], [ 0.081453, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0788112", "Lat": "0.0342000", "KPI": 826, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.036006 ], [ 0.081453, 0.034204 ], [ 0.078793, 0.034204 ], [ 0.078793, 0.036006 ], [ 0.081453, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0788100", "Lat": "0.0342000", "KPI": 35, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.036006 ], [ 0.081453, 0.034204 ], [ 0.078793, 0.034204 ], [ 0.078793, 0.036006 ], [ 0.081453, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0788112", "Lat": "0.0324000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.034204 ], [ 0.081453, 0.032401 ], [ 0.078793, 0.032401 ], [ 0.078793, 0.034204 ], [ 0.081453, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0788100", "Lat": "0.0324000", "KPI": 141, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.034204 ], [ 0.081453, 0.032401 ], [ 0.078793, 0.032401 ], [ 0.078793, 0.034204 ], [ 0.081453, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0814382", "Lat": "0.0414000", "KPI": 45, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.043216 ], [ 0.084071, 0.041413 ], [ 0.081453, 0.041413 ], [ 0.081453, 0.043216 ], [ 0.084071, 0.043216 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 42, "Long": "0.0814400", "Lat": "0.0414000", "KPI": 824, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.043216 ], [ 0.084071, 0.041413 ], [ 0.081453, 0.041413 ], [ 0.081453, 0.043216 ], [ 0.084071, 0.043216 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0814382", "Lat": "0.0396000", "KPI": 497, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.041413 ], [ 0.084071, 0.039611 ], [ 0.081453, 0.039611 ], [ 0.081453, 0.041413 ], [ 0.084071, 0.041413 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 61, "Long": "0.0814400", "Lat": "0.0396000", "KPI": 349, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.041413 ], [ 0.084071, 0.039611 ], [ 0.081453, 0.039611 ], [ 0.081453, 0.041413 ], [ 0.084071, 0.041413 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0814382", "Lat": "0.0378000", "KPI": 803, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.039611 ], [ 0.084071, 0.037808 ], [ 0.081453, 0.037808 ], [ 0.081453, 0.039611 ], [ 0.084071, 0.039611 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0814400", "Lat": "0.0378000", "KPI": 435, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.039611 ], [ 0.084071, 0.037808 ], [ 0.081453, 0.037808 ], [ 0.081453, 0.039611 ], [ 0.084071, 0.039611 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0814382", "Lat": "0.0360000", "KPI": 208, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.037808 ], [ 0.084071, 0.036006 ], [ 0.081453, 0.036006 ], [ 0.081453, 0.037808 ], [ 0.084071, 0.037808 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0814400", "Lat": "0.0360000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.037808 ], [ 0.084071, 0.036006 ], [ 0.081453, 0.036006 ], [ 0.081453, 0.037808 ], [ 0.084071, 0.037808 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0814382", "Lat": "0.0342000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.036006 ], [ 0.084071, 0.034204 ], [ 0.081453, 0.034204 ], [ 0.081453, 0.036006 ], [ 0.084071, 0.036006 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0342000", "KPI": 706, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.036006 ], [ 0.084071, 0.034204 ], [ 0.081453, 0.034204 ], [ 0.081453, 0.036006 ], [ 0.084071, 0.036006 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0814382", "Lat": "0.0324000", "KPI": 779, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.034204 ], [ 0.084071, 0.032401 ], [ 0.081453, 0.032401 ], [ 0.081453, 0.034204 ], [ 0.084071, 0.034204 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0814400", "Lat": "0.0324000", "KPI": 474, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.034204 ], [ 0.084071, 0.032401 ], [ 0.081453, 0.032401 ], [ 0.081453, 0.034204 ], [ 0.084071, 0.034204 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0761842", "Lat": "0.0306000", "KPI": 774, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.032401 ], [ 0.078793, 0.030599 ], [ 0.076175, 0.030599 ], [ 0.076175, 0.032401 ], [ 0.078793, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0761800", "Lat": "0.0306000", "KPI": 107, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.032401 ], [ 0.078793, 0.030599 ], [ 0.076175, 0.030599 ], [ 0.076175, 0.032401 ], [ 0.078793, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0761842", "Lat": "0.0288000", "KPI": 149, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.030599 ], [ 0.078793, 0.028796 ], [ 0.076175, 0.028796 ], [ 0.076175, 0.030599 ], [ 0.078793, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0761800", "Lat": "0.0288000", "KPI": 204, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.030599 ], [ 0.078793, 0.028796 ], [ 0.076175, 0.028796 ], [ 0.076175, 0.030599 ], [ 0.078793, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0761842", "Lat": "0.0270000", "KPI": 292, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.028796 ], [ 0.078793, 0.026994 ], [ 0.076175, 0.026994 ], [ 0.076175, 0.028796 ], [ 0.078793, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0761800", "Lat": "0.0270000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.028796 ], [ 0.078793, 0.026994 ], [ 0.076175, 0.026994 ], [ 0.076175, 0.028796 ], [ 0.078793, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0788112", "Lat": "0.0306000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.032401 ], [ 0.081453, 0.030599 ], [ 0.078793, 0.030599 ], [ 0.078793, 0.032401 ], [ 0.081453, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0788100", "Lat": "0.0306000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.032401 ], [ 0.081453, 0.030599 ], [ 0.078793, 0.030599 ], [ 0.078793, 0.032401 ], [ 0.081453, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0788112", "Lat": "0.0288000", "KPI": 973, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.030599 ], [ 0.081453, 0.028796 ], [ 0.078793, 0.028796 ], [ 0.078793, 0.030599 ], [ 0.081453, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0788100", "Lat": "0.0288000", "KPI": 345, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.030599 ], [ 0.081453, 0.028796 ], [ 0.078793, 0.028796 ], [ 0.078793, 0.030599 ], [ 0.081453, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0788112", "Lat": "0.0270000", "KPI": 871, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.028796 ], [ 0.081453, 0.026994 ], [ 0.078793, 0.026994 ], [ 0.078793, 0.028796 ], [ 0.081453, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0788100", "Lat": "0.0270000", "KPI": 591, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.028796 ], [ 0.081453, 0.026994 ], [ 0.078793, 0.026994 ], [ 0.078793, 0.028796 ], [ 0.081453, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0761842", "Lat": "0.0252000", "KPI": 578, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.026994 ], [ 0.078793, 0.025191 ], [ 0.076175, 0.025191 ], [ 0.076175, 0.026994 ], [ 0.078793, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0761800", "Lat": "0.0252000", "KPI": 857, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.026994 ], [ 0.078793, 0.025191 ], [ 0.076175, 0.025191 ], [ 0.076175, 0.026994 ], [ 0.078793, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 87, "Long": "0.0761842", "Lat": "0.0234000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.025191 ], [ 0.078793, 0.023389 ], [ 0.076175, 0.023389 ], [ 0.076175, 0.025191 ], [ 0.078793, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 86, "Long": "0.0761800", "Lat": "0.0234000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.025191 ], [ 0.078793, 0.023389 ], [ 0.076175, 0.023389 ], [ 0.076175, 0.025191 ], [ 0.078793, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761842", "Lat": "0.0216000", "KPI": 394, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.023389 ], [ 0.078793, 0.021586 ], [ 0.076175, 0.021586 ], [ 0.076175, 0.023389 ], [ 0.078793, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 15, "Long": "0.0761800", "Lat": "0.0216000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.023389 ], [ 0.078793, 0.021586 ], [ 0.076175, 0.021586 ], [ 0.076175, 0.023389 ], [ 0.078793, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 78, "Long": "0.0788112", "Lat": "0.0252000", "KPI": 287, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.026994 ], [ 0.081453, 0.025191 ], [ 0.078793, 0.025191 ], [ 0.078793, 0.026994 ], [ 0.081453, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0788100", "Lat": "0.0252000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.026994 ], [ 0.081453, 0.025191 ], [ 0.078793, 0.025191 ], [ 0.078793, 0.026994 ], [ 0.081453, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0788112", "Lat": "0.0234000", "KPI": 73, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.025191 ], [ 0.081453, 0.023389 ], [ 0.078793, 0.023389 ], [ 0.078793, 0.025191 ], [ 0.081453, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0788100", "Lat": "0.0234000", "KPI": 223, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.025191 ], [ 0.081453, 0.023389 ], [ 0.078793, 0.023389 ], [ 0.078793, 0.025191 ], [ 0.081453, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0788112", "Lat": "0.0216000", "KPI": 593, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.023389 ], [ 0.081453, 0.021586 ], [ 0.078793, 0.021586 ], [ 0.078793, 0.023389 ], [ 0.081453, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0788100", "Lat": "0.0216000", "KPI": 86, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.023389 ], [ 0.081453, 0.021586 ], [ 0.078793, 0.021586 ], [ 0.078793, 0.023389 ], [ 0.081453, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0306000", "KPI": 838, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.032401 ], [ 0.084071, 0.030599 ], [ 0.081453, 0.030599 ], [ 0.081453, 0.032401 ], [ 0.084071, 0.032401 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0814400", "Lat": "0.0306000", "KPI": 276, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.032401 ], [ 0.084071, 0.030599 ], [ 0.081453, 0.030599 ], [ 0.081453, 0.032401 ], [ 0.084071, 0.032401 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 9, "Long": "0.0814382", "Lat": "0.0288000", "KPI": 326, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.030599 ], [ 0.084071, 0.028796 ], [ 0.081453, 0.028796 ], [ 0.081453, 0.030599 ], [ 0.084071, 0.030599 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814400", "Lat": "0.0288000", "KPI": 827, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.030599 ], [ 0.084071, 0.028796 ], [ 0.081453, 0.028796 ], [ 0.081453, 0.030599 ], [ 0.084071, 0.030599 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0814382", "Lat": "0.0270000", "KPI": 0, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.028796 ], [ 0.084071, 0.026994 ], [ 0.081453, 0.026994 ], [ 0.081453, 0.028796 ], [ 0.084071, 0.028796 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0270000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.028796 ], [ 0.084071, 0.026994 ], [ 0.081453, 0.026994 ], [ 0.081453, 0.028796 ], [ 0.084071, 0.028796 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0252000", "KPI": 870, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.026994 ], [ 0.084071, 0.025191 ], [ 0.081453, 0.025191 ], [ 0.081453, 0.026994 ], [ 0.084071, 0.026994 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0814400", "Lat": "0.0252000", "KPI": 462, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.026994 ], [ 0.084071, 0.025191 ], [ 0.081453, 0.025191 ], [ 0.081453, 0.026994 ], [ 0.084071, 0.026994 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0234000", "KPI": 267, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.025191 ], [ 0.084071, 0.023389 ], [ 0.081453, 0.023389 ], [ 0.081453, 0.025191 ], [ 0.084071, 0.025191 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0814400", "Lat": "0.0234000", "KPI": 393, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.025191 ], [ 0.084071, 0.023389 ], [ 0.081453, 0.023389 ], [ 0.081453, 0.025191 ], [ 0.084071, 0.025191 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 51, "Long": "0.0814382", "Lat": "0.0216000", "KPI": 893, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.023389 ], [ 0.084071, 0.021586 ], [ 0.081453, 0.021586 ], [ 0.081453, 0.023389 ], [ 0.084071, 0.023389 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0814400", "Lat": "0.0216000", "KPI": 704, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.023389 ], [ 0.084071, 0.021586 ], [ 0.081453, 0.021586 ], [ 0.081453, 0.023389 ], [ 0.084071, 0.023389 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0656760", "Lat": "0.0198000", "KPI": 833, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.021586 ], [ 0.068321, 0.019784 ], [ 0.065660, 0.019784 ], [ 0.065660, 0.021586 ], [ 0.068321, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0656800", "Lat": "0.0198000", "KPI": 132, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.021586 ], [ 0.068321, 0.019784 ], [ 0.065660, 0.019784 ], [ 0.065660, 0.021586 ], [ 0.068321, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0656760", "Lat": "0.0180000", "KPI": 387, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.019784 ], [ 0.068321, 0.017982 ], [ 0.065660, 0.017982 ], [ 0.065660, 0.019784 ], [ 0.068321, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0656800", "Lat": "0.0180000", "KPI": 238, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.019784 ], [ 0.068321, 0.017982 ], [ 0.065660, 0.017982 ], [ 0.065660, 0.019784 ], [ 0.068321, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656760", "Lat": "0.0162000", "KPI": 615, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.017982 ], [ 0.068321, 0.016179 ], [ 0.065660, 0.016179 ], [ 0.065660, 0.017982 ], [ 0.068321, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0656800", "Lat": "0.0162000", "KPI": 825, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.017982 ], [ 0.068321, 0.016179 ], [ 0.065660, 0.016179 ], [ 0.065660, 0.017982 ], [ 0.068321, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0683030", "Lat": "0.0198000", "KPI": 16, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.021586 ], [ 0.070939, 0.019784 ], [ 0.068321, 0.019784 ], [ 0.068321, 0.021586 ], [ 0.070939, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0683000", "Lat": "0.0198000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.021586 ], [ 0.070939, 0.019784 ], [ 0.068321, 0.019784 ], [ 0.068321, 0.021586 ], [ 0.070939, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0683030", "Lat": "0.0180000", "KPI": 43, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.019784 ], [ 0.070939, 0.017982 ], [ 0.068321, 0.017982 ], [ 0.068321, 0.019784 ], [ 0.070939, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0683000", "Lat": "0.0180000", "KPI": 412, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.019784 ], [ 0.070939, 0.017982 ], [ 0.068321, 0.017982 ], [ 0.068321, 0.019784 ], [ 0.070939, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0683030", "Lat": "0.0162000", "KPI": 940, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.017982 ], [ 0.070939, 0.016179 ], [ 0.068321, 0.016179 ], [ 0.068321, 0.017982 ], [ 0.070939, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0683000", "Lat": "0.0162000", "KPI": 700, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.017982 ], [ 0.070939, 0.016179 ], [ 0.068321, 0.016179 ], [ 0.068321, 0.017982 ], [ 0.070939, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0656760", "Lat": "0.0144000", "KPI": 697, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.016179 ], [ 0.068321, 0.014420 ], [ 0.065660, 0.014420 ], [ 0.065660, 0.016179 ], [ 0.068321, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0144000", "KPI": 522, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.016179 ], [ 0.068321, 0.014420 ], [ 0.065660, 0.014420 ], [ 0.065660, 0.016179 ], [ 0.068321, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0656760", "Lat": "0.0126000", "KPI": 641, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.014420 ], [ 0.068321, 0.012617 ], [ 0.065660, 0.012617 ], [ 0.065660, 0.014420 ], [ 0.068321, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0656800", "Lat": "0.0126000", "KPI": 427, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.014420 ], [ 0.068321, 0.012617 ], [ 0.065660, 0.012617 ], [ 0.065660, 0.014420 ], [ 0.068321, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0656760", "Lat": "0.0108000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.012617 ], [ 0.068321, 0.010815 ], [ 0.065660, 0.010815 ], [ 0.065660, 0.012617 ], [ 0.068321, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 40, "Long": "0.0656800", "Lat": "0.0108000", "KPI": 279, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.012617 ], [ 0.068321, 0.010815 ], [ 0.065660, 0.010815 ], [ 0.065660, 0.012617 ], [ 0.068321, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683030", "Lat": "0.0144000", "KPI": 536, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.016179 ], [ 0.070939, 0.014420 ], [ 0.068321, 0.014420 ], [ 0.068321, 0.016179 ], [ 0.070939, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0683000", "Lat": "0.0144000", "KPI": 197, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.016179 ], [ 0.070939, 0.014420 ], [ 0.068321, 0.014420 ], [ 0.068321, 0.016179 ], [ 0.070939, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 66, "Long": "0.0683030", "Lat": "0.0126000", "KPI": 869, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.014420 ], [ 0.070939, 0.012617 ], [ 0.068321, 0.012617 ], [ 0.068321, 0.014420 ], [ 0.070939, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0683000", "Lat": "0.0126000", "KPI": 437, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.014420 ], [ 0.070939, 0.012617 ], [ 0.068321, 0.012617 ], [ 0.068321, 0.014420 ], [ 0.070939, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0683030", "Lat": "0.0108000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.012617 ], [ 0.070939, 0.010815 ], [ 0.068321, 0.010815 ], [ 0.068321, 0.012617 ], [ 0.070939, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 26, "Long": "0.0683000", "Lat": "0.0108000", "KPI": 638, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.012617 ], [ 0.070939, 0.010815 ], [ 0.068321, 0.010815 ], [ 0.068321, 0.012617 ], [ 0.070939, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0709301", "Lat": "0.0198000", "KPI": 357, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.021586 ], [ 0.073557, 0.019784 ], [ 0.070939, 0.019784 ], [ 0.070939, 0.021586 ], [ 0.073557, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0709300", "Lat": "0.0198000", "KPI": 177, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.021586 ], [ 0.073557, 0.019784 ], [ 0.070939, 0.019784 ], [ 0.070939, 0.021586 ], [ 0.073557, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0709301", "Lat": "0.0180000", "KPI": 485, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.019784 ], [ 0.073557, 0.017982 ], [ 0.070939, 0.017982 ], [ 0.070939, 0.019784 ], [ 0.073557, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0709300", "Lat": "0.0180000", "KPI": 334, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.019784 ], [ 0.073557, 0.017982 ], [ 0.070939, 0.017982 ], [ 0.070939, 0.019784 ], [ 0.073557, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0162000", "KPI": 990, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.017982 ], [ 0.073557, 0.016179 ], [ 0.070939, 0.016179 ], [ 0.070939, 0.017982 ], [ 0.073557, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709300", "Lat": "0.0162000", "KPI": 737, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.017982 ], [ 0.073557, 0.016179 ], [ 0.070939, 0.016179 ], [ 0.070939, 0.017982 ], [ 0.073557, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0735571", "Lat": "0.0198000", "KPI": 832, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.021586 ], [ 0.076175, 0.019784 ], [ 0.073557, 0.019784 ], [ 0.073557, 0.021586 ], [ 0.076175, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0735600", "Lat": "0.0198000", "KPI": 679, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.021586 ], [ 0.076175, 0.019784 ], [ 0.073557, 0.019784 ], [ 0.073557, 0.021586 ], [ 0.076175, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 68, "Long": "0.0735571", "Lat": "0.0180000", "KPI": 831, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.019784 ], [ 0.076175, 0.017982 ], [ 0.073557, 0.017982 ], [ 0.073557, 0.019784 ], [ 0.076175, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 28, "Long": "0.0735600", "Lat": "0.0180000", "KPI": 998, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.019784 ], [ 0.076175, 0.017982 ], [ 0.073557, 0.017982 ], [ 0.073557, 0.019784 ], [ 0.076175, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0735571", "Lat": "0.0162000", "KPI": 608, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.017982 ], [ 0.076175, 0.016179 ], [ 0.073557, 0.016179 ], [ 0.073557, 0.017982 ], [ 0.076175, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 83, "Long": "0.0735600", "Lat": "0.0162000", "KPI": 652, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.017982 ], [ 0.076175, 0.016179 ], [ 0.073557, 0.016179 ], [ 0.073557, 0.017982 ], [ 0.076175, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0144000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.016179 ], [ 0.073557, 0.014420 ], [ 0.070939, 0.014420 ], [ 0.070939, 0.016179 ], [ 0.073557, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 60, "Long": "0.0709300", "Lat": "0.0144000", "KPI": 784, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.016179 ], [ 0.073557, 0.014420 ], [ 0.070939, 0.014420 ], [ 0.070939, 0.016179 ], [ 0.073557, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0709301", "Lat": "0.0126000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.014420 ], [ 0.073557, 0.012617 ], [ 0.070939, 0.012617 ], [ 0.070939, 0.014420 ], [ 0.073557, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0709300", "Lat": "0.0126000", "KPI": 163, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.014420 ], [ 0.073557, 0.012617 ], [ 0.070939, 0.012617 ], [ 0.070939, 0.014420 ], [ 0.073557, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0709301", "Lat": "0.0108000", "KPI": 896, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.012617 ], [ 0.073557, 0.010815 ], [ 0.070939, 0.010815 ], [ 0.070939, 0.012617 ], [ 0.073557, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0709300", "Lat": "0.0108000", "KPI": 967, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.012617 ], [ 0.073557, 0.010815 ], [ 0.070939, 0.010815 ], [ 0.070939, 0.012617 ], [ 0.073557, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735571", "Lat": "0.0144000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.016179 ], [ 0.076175, 0.014420 ], [ 0.073557, 0.014420 ], [ 0.073557, 0.016179 ], [ 0.076175, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0735600", "Lat": "0.0144000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.016179 ], [ 0.076175, 0.014420 ], [ 0.073557, 0.014420 ], [ 0.073557, 0.016179 ], [ 0.076175, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0735571", "Lat": "0.0126000", "KPI": 864, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.014420 ], [ 0.076175, 0.012617 ], [ 0.073557, 0.012617 ], [ 0.073557, 0.014420 ], [ 0.076175, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0735600", "Lat": "0.0126000", "KPI": 949, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.014420 ], [ 0.076175, 0.012617 ], [ 0.073557, 0.012617 ], [ 0.073557, 0.014420 ], [ 0.076175, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0735571", "Lat": "0.0108000", "KPI": 464, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.012617 ], [ 0.076175, 0.010815 ], [ 0.073557, 0.010815 ], [ 0.073557, 0.012617 ], [ 0.076175, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735600", "Lat": "0.0108000", "KPI": 630, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.012617 ], [ 0.076175, 0.010815 ], [ 0.073557, 0.010815 ], [ 0.073557, 0.012617 ], [ 0.076175, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 45, "Long": "0.0656760", "Lat": "0.0090000", "KPI": 503, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.010815 ], [ 0.068321, 0.009012 ], [ 0.065660, 0.009012 ], [ 0.065660, 0.010815 ], [ 0.068321, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0090000", "KPI": 872, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.010815 ], [ 0.068321, 0.009012 ], [ 0.065660, 0.009012 ], [ 0.065660, 0.010815 ], [ 0.068321, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0656760", "Lat": "0.0072000", "KPI": 849, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.009012 ], [ 0.068321, 0.007210 ], [ 0.065660, 0.007210 ], [ 0.065660, 0.009012 ], [ 0.068321, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 81, "Long": "0.0656800", "Lat": "0.0072000", "KPI": 699, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.009012 ], [ 0.068321, 0.007210 ], [ 0.065660, 0.007210 ], [ 0.065660, 0.009012 ], [ 0.068321, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0656760", "Lat": "0.0054000", "KPI": 120, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.007210 ], [ 0.068321, 0.005407 ], [ 0.065660, 0.005407 ], [ 0.065660, 0.007210 ], [ 0.068321, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 12, "Long": "0.0656800", "Lat": "0.0054000", "KPI": 51, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.007210 ], [ 0.068321, 0.005407 ], [ 0.065660, 0.005407 ], [ 0.065660, 0.007210 ], [ 0.068321, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 58, "Long": "0.0683030", "Lat": "0.0090000", "KPI": 934, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.010815 ], [ 0.070939, 0.009012 ], [ 0.068321, 0.009012 ], [ 0.068321, 0.010815 ], [ 0.070939, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0683000", "Lat": "0.0090000", "KPI": 432, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.010815 ], [ 0.070939, 0.009012 ], [ 0.068321, 0.009012 ], [ 0.068321, 0.010815 ], [ 0.070939, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0683030", "Lat": "0.0072000", "KPI": 461, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.009012 ], [ 0.070939, 0.007210 ], [ 0.068321, 0.007210 ], [ 0.068321, 0.009012 ], [ 0.070939, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 82, "Long": "0.0683000", "Lat": "0.0072000", "KPI": 2, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.009012 ], [ 0.070939, 0.007210 ], [ 0.068321, 0.007210 ], [ 0.068321, 0.009012 ], [ 0.070939, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 72, "Long": "0.0683030", "Lat": "0.0054000", "KPI": 517, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.007210 ], [ 0.070939, 0.005407 ], [ 0.068321, 0.005407 ], [ 0.068321, 0.007210 ], [ 0.070939, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 96, "Long": "0.0683000", "Lat": "0.0054000", "KPI": 681, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.007210 ], [ 0.070939, 0.005407 ], [ 0.068321, 0.005407 ], [ 0.068321, 0.007210 ], [ 0.070939, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 19, "Long": "0.0656760", "Lat": "0.0036000", "KPI": 549, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.005407 ], [ 0.068321, 0.003605 ], [ 0.065660, 0.003605 ], [ 0.065660, 0.005407 ], [ 0.068321, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0656800", "Lat": "0.0036000", "KPI": 29, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.005407 ], [ 0.068321, 0.003605 ], [ 0.065660, 0.003605 ], [ 0.065660, 0.005407 ], [ 0.068321, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656760", "Lat": "0.0018000", "KPI": 438, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.003605 ], [ 0.068321, 0.001802 ], [ 0.065660, 0.001802 ], [ 0.065660, 0.003605 ], [ 0.068321, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0656800", "Lat": "0.0018000", "KPI": 46, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.003605 ], [ 0.068321, 0.001802 ], [ 0.065660, 0.001802 ], [ 0.065660, 0.003605 ], [ 0.068321, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0656760", "Lat": "0.0000000", "KPI": 532, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.001802 ], [ 0.068321, 0.000000 ], [ 0.065660, 0.000000 ], [ 0.065660, 0.001802 ], [ 0.068321, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 47, "Long": "0.0656800", "Lat": "0.0000000", "KPI": 841, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068321, 0.001802 ], [ 0.068321, 0.000000 ], [ 0.065660, 0.000000 ], [ 0.065660, 0.001802 ], [ 0.068321, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 99, "Long": "0.0683030", "Lat": "0.0036000", "KPI": 939, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.005407 ], [ 0.070939, 0.003605 ], [ 0.068321, 0.003605 ], [ 0.068321, 0.005407 ], [ 0.070939, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 92, "Long": "0.0683000", "Lat": "0.0036000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.005407 ], [ 0.070939, 0.003605 ], [ 0.068321, 0.003605 ], [ 0.068321, 0.005407 ], [ 0.070939, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0683030", "Lat": "0.0018000", "KPI": 558, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.003605 ], [ 0.070939, 0.001802 ], [ 0.068321, 0.001802 ], [ 0.068321, 0.003605 ], [ 0.070939, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0683000", "Lat": "0.0018000", "KPI": 401, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.003605 ], [ 0.070939, 0.001802 ], [ 0.068321, 0.001802 ], [ 0.068321, 0.003605 ], [ 0.070939, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0683030", "Lat": "0.0000000", "KPI": 545, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.001802 ], [ 0.070939, 0.000000 ], [ 0.068321, 0.000000 ], [ 0.068321, 0.001802 ], [ 0.070939, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0683000", "Lat": "0.0000000", "KPI": 460, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.070939, 0.001802 ], [ 0.070939, 0.000000 ], [ 0.068321, 0.000000 ], [ 0.068321, 0.001802 ], [ 0.070939, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0709301", "Lat": "0.0090000", "KPI": 55, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.010815 ], [ 0.073557, 0.009012 ], [ 0.070939, 0.009012 ], [ 0.070939, 0.010815 ], [ 0.073557, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0709300", "Lat": "0.0090000", "KPI": 382, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.010815 ], [ 0.073557, 0.009012 ], [ 0.070939, 0.009012 ], [ 0.070939, 0.010815 ], [ 0.073557, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0709301", "Lat": "0.0072000", "KPI": 919, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.009012 ], [ 0.073557, 0.007210 ], [ 0.070939, 0.007210 ], [ 0.070939, 0.009012 ], [ 0.073557, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 11, "Long": "0.0709300", "Lat": "0.0072000", "KPI": 512, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.009012 ], [ 0.073557, 0.007210 ], [ 0.070939, 0.007210 ], [ 0.070939, 0.009012 ], [ 0.073557, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0709301", "Lat": "0.0054000", "KPI": 763, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.007210 ], [ 0.073557, 0.005407 ], [ 0.070939, 0.005407 ], [ 0.070939, 0.007210 ], [ 0.073557, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 14, "Long": "0.0709300", "Lat": "0.0054000", "KPI": 619, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.007210 ], [ 0.073557, 0.005407 ], [ 0.070939, 0.005407 ], [ 0.070939, 0.007210 ], [ 0.073557, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0735571", "Lat": "0.0090000", "KPI": 940, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.010815 ], [ 0.076175, 0.009012 ], [ 0.073557, 0.009012 ], [ 0.073557, 0.010815 ], [ 0.076175, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0735600", "Lat": "0.0090000", "KPI": 673, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.010815 ], [ 0.076175, 0.009012 ], [ 0.073557, 0.009012 ], [ 0.073557, 0.010815 ], [ 0.076175, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 75, "Long": "0.0735571", "Lat": "0.0072000", "KPI": 337, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.009012 ], [ 0.076175, 0.007210 ], [ 0.073557, 0.007210 ], [ 0.073557, 0.009012 ], [ 0.076175, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 30, "Long": "0.0735600", "Lat": "0.0072000", "KPI": 217, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.009012 ], [ 0.076175, 0.007210 ], [ 0.073557, 0.007210 ], [ 0.073557, 0.009012 ], [ 0.076175, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0735571", "Lat": "0.0054000", "KPI": 859, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.007210 ], [ 0.076175, 0.005407 ], [ 0.073557, 0.005407 ], [ 0.073557, 0.007210 ], [ 0.076175, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 46, "Long": "0.0735600", "Lat": "0.0054000", "KPI": 740, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.007210 ], [ 0.076175, 0.005407 ], [ 0.073557, 0.005407 ], [ 0.073557, 0.007210 ], [ 0.076175, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0709301", "Lat": "0.0036000", "KPI": 138, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.005407 ], [ 0.073557, 0.003605 ], [ 0.070939, 0.003605 ], [ 0.070939, 0.005407 ], [ 0.073557, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0709300", "Lat": "0.0036000", "KPI": 627, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.005407 ], [ 0.073557, 0.003605 ], [ 0.070939, 0.003605 ], [ 0.070939, 0.005407 ], [ 0.073557, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0709301", "Lat": "0.0018000", "KPI": 153, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.003605 ], [ 0.073557, 0.001802 ], [ 0.070939, 0.001802 ], [ 0.070939, 0.003605 ], [ 0.073557, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0709300", "Lat": "0.0018000", "KPI": 198, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.003605 ], [ 0.073557, 0.001802 ], [ 0.070939, 0.001802 ], [ 0.070939, 0.003605 ], [ 0.073557, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0709301", "Lat": "0.0000000", "KPI": 488, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.001802 ], [ 0.073557, 0.000000 ], [ 0.070939, 0.000000 ], [ 0.070939, 0.001802 ], [ 0.073557, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0709300", "Lat": "0.0000000", "KPI": 385, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.073557, 0.001802 ], [ 0.073557, 0.000000 ], [ 0.070939, 0.000000 ], [ 0.070939, 0.001802 ], [ 0.073557, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0735571", "Lat": "0.0036000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.005407 ], [ 0.076175, 0.003605 ], [ 0.073557, 0.003605 ], [ 0.073557, 0.005407 ], [ 0.076175, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 73, "Long": "0.0735600", "Lat": "0.0036000", "KPI": 525, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.005407 ], [ 0.076175, 0.003605 ], [ 0.073557, 0.003605 ], [ 0.073557, 0.005407 ], [ 0.076175, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0735571", "Lat": "0.0018000", "KPI": 931, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.003605 ], [ 0.076175, 0.001802 ], [ 0.073557, 0.001802 ], [ 0.073557, 0.003605 ], [ 0.076175, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0735600", "Lat": "0.0018000", "KPI": 19, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.003605 ], [ 0.076175, 0.001802 ], [ 0.073557, 0.001802 ], [ 0.073557, 0.003605 ], [ 0.076175, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0735571", "Lat": "0.0000000", "KPI": 99, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.001802 ], [ 0.076175, 0.000000 ], [ 0.073557, 0.000000 ], [ 0.073557, 0.001802 ], [ 0.076175, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0735600", "Lat": "0.0000000", "KPI": 230, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.076175, 0.001802 ], [ 0.076175, 0.000000 ], [ 0.073557, 0.000000 ], [ 0.073557, 0.001802 ], [ 0.076175, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 17, "Long": "0.0761842", "Lat": "0.0198000", "KPI": 662, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.021586 ], [ 0.078793, 0.019784 ], [ 0.076175, 0.019784 ], [ 0.076175, 0.021586 ], [ 0.078793, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 97, "Long": "0.0761800", "Lat": "0.0198000", "KPI": 213, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.021586 ], [ 0.078793, 0.019784 ], [ 0.076175, 0.019784 ], [ 0.076175, 0.021586 ], [ 0.078793, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 57, "Long": "0.0761842", "Lat": "0.0180000", "KPI": 621, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.019784 ], [ 0.078793, 0.017982 ], [ 0.076175, 0.017982 ], [ 0.076175, 0.019784 ], [ 0.078793, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0761800", "Lat": "0.0180000", "KPI": 819, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.019784 ], [ 0.078793, 0.017982 ], [ 0.076175, 0.017982 ], [ 0.076175, 0.019784 ], [ 0.078793, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 16, "Long": "0.0761842", "Lat": "0.0162000", "KPI": 874, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.017982 ], [ 0.078793, 0.016179 ], [ 0.076175, 0.016179 ], [ 0.076175, 0.017982 ], [ 0.078793, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 49, "Long": "0.0761800", "Lat": "0.0162000", "KPI": 400, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.017982 ], [ 0.078793, 0.016179 ], [ 0.076175, 0.016179 ], [ 0.076175, 0.017982 ], [ 0.078793, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 84, "Long": "0.0788112", "Lat": "0.0198000", "KPI": 837, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.021586 ], [ 0.081453, 0.019784 ], [ 0.078793, 0.019784 ], [ 0.078793, 0.021586 ], [ 0.081453, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0788100", "Lat": "0.0198000", "KPI": 645, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.021586 ], [ 0.081453, 0.019784 ], [ 0.078793, 0.019784 ], [ 0.078793, 0.021586 ], [ 0.081453, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 56, "Long": "0.0788112", "Lat": "0.0180000", "KPI": 846, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.019784 ], [ 0.081453, 0.017982 ], [ 0.078793, 0.017982 ], [ 0.078793, 0.019784 ], [ 0.081453, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 36, "Long": "0.0788100", "Lat": "0.0180000", "KPI": 663, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.019784 ], [ 0.081453, 0.017982 ], [ 0.078793, 0.017982 ], [ 0.078793, 0.019784 ], [ 0.081453, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 22, "Long": "0.0788112", "Lat": "0.0162000", "KPI": 640, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.017982 ], [ 0.081453, 0.016179 ], [ 0.078793, 0.016179 ], [ 0.078793, 0.017982 ], [ 0.081453, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 94, "Long": "0.0788100", "Lat": "0.0162000", "KPI": 709, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.017982 ], [ 0.081453, 0.016179 ], [ 0.078793, 0.016179 ], [ 0.078793, 0.017982 ], [ 0.081453, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 33, "Long": "0.0761842", "Lat": "0.0144000", "KPI": 911, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.016179 ], [ 0.078793, 0.014420 ], [ 0.076175, 0.014420 ], [ 0.076175, 0.016179 ], [ 0.078793, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 62, "Long": "0.0761800", "Lat": "0.0144000", "KPI": 654, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.016179 ], [ 0.078793, 0.014420 ], [ 0.076175, 0.014420 ], [ 0.076175, 0.016179 ], [ 0.078793, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 2, "Long": "0.0761842", "Lat": "0.0126000", "KPI": 370, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.014420 ], [ 0.078793, 0.012617 ], [ 0.076175, 0.012617 ], [ 0.076175, 0.014420 ], [ 0.078793, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0761800", "Lat": "0.0126000", "KPI": 941, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.014420 ], [ 0.078793, 0.012617 ], [ 0.076175, 0.012617 ], [ 0.076175, 0.014420 ], [ 0.078793, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 38, "Long": "0.0761842", "Lat": "0.0108000", "KPI": 547, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.012617 ], [ 0.078793, 0.010815 ], [ 0.076175, 0.010815 ], [ 0.076175, 0.012617 ], [ 0.078793, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 71, "Long": "0.0761800", "Lat": "0.0108000", "KPI": 37, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.012617 ], [ 0.078793, 0.010815 ], [ 0.076175, 0.010815 ], [ 0.076175, 0.012617 ], [ 0.078793, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 50, "Long": "0.0788112", "Lat": "0.0144000", "KPI": 360, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.016179 ], [ 0.081453, 0.014420 ], [ 0.078793, 0.014420 ], [ 0.078793, 0.016179 ], [ 0.081453, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 21, "Long": "0.0788100", "Lat": "0.0144000", "KPI": 571, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.016179 ], [ 0.081453, 0.014420 ], [ 0.078793, 0.014420 ], [ 0.078793, 0.016179 ], [ 0.081453, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 44, "Long": "0.0788112", "Lat": "0.0126000", "KPI": 237, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.014420 ], [ 0.081453, 0.012617 ], [ 0.078793, 0.012617 ], [ 0.078793, 0.014420 ], [ 0.081453, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0788100", "Lat": "0.0126000", "KPI": 612, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.014420 ], [ 0.081453, 0.012617 ], [ 0.078793, 0.012617 ], [ 0.078793, 0.014420 ], [ 0.081453, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0788112", "Lat": "0.0108000", "KPI": 749, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.012617 ], [ 0.081453, 0.010815 ], [ 0.078793, 0.010815 ], [ 0.078793, 0.012617 ], [ 0.081453, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 70, "Long": "0.0788100", "Lat": "0.0108000", "KPI": 665, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.012617 ], [ 0.081453, 0.010815 ], [ 0.078793, 0.010815 ], [ 0.078793, 0.012617 ], [ 0.081453, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0814382", "Lat": "0.0198000", "KPI": 651, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.021586 ], [ 0.084071, 0.019784 ], [ 0.081453, 0.019784 ], [ 0.081453, 0.021586 ], [ 0.084071, 0.021586 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0814400", "Lat": "0.0198000", "KPI": 143, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.021586 ], [ 0.084071, 0.019784 ], [ 0.081453, 0.019784 ], [ 0.081453, 0.021586 ], [ 0.084071, 0.021586 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 85, "Long": "0.0814382", "Lat": "0.0180000", "KPI": 978, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.019784 ], [ 0.084071, 0.017982 ], [ 0.081453, 0.017982 ], [ 0.081453, 0.019784 ], [ 0.084071, 0.019784 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0814400", "Lat": "0.0180000", "KPI": 875, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.019784 ], [ 0.084071, 0.017982 ], [ 0.081453, 0.017982 ], [ 0.081453, 0.019784 ], [ 0.084071, 0.019784 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 79, "Long": "0.0814382", "Lat": "0.0162000", "KPI": 59, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.017982 ], [ 0.084071, 0.016179 ], [ 0.081453, 0.016179 ], [ 0.081453, 0.017982 ], [ 0.084071, 0.017982 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0814400", "Lat": "0.0162000", "KPI": 605, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.017982 ], [ 0.084071, 0.016179 ], [ 0.081453, 0.016179 ], [ 0.081453, 0.017982 ], [ 0.084071, 0.017982 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 4, "Long": "0.0814382", "Lat": "0.0144000", "KPI": 205, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.016179 ], [ 0.084071, 0.014420 ], [ 0.081453, 0.014420 ], [ 0.081453, 0.016179 ], [ 0.084071, 0.016179 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 89, "Long": "0.0814400", "Lat": "0.0144000", "KPI": 730, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.016179 ], [ 0.084071, 0.014420 ], [ 0.081453, 0.014420 ], [ 0.081453, 0.016179 ], [ 0.084071, 0.016179 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 29, "Long": "0.0814382", "Lat": "0.0126000", "KPI": 927, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.014420 ], [ 0.084071, 0.012617 ], [ 0.081453, 0.012617 ], [ 0.081453, 0.014420 ], [ 0.084071, 0.014420 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 0, "Long": "0.0814400", "Lat": "0.0126000", "KPI": 299, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.014420 ], [ 0.084071, 0.012617 ], [ 0.081453, 0.012617 ], [ 0.081453, 0.014420 ], [ 0.084071, 0.014420 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 65, "Long": "0.0814382", "Lat": "0.0108000", "KPI": 776, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.012617 ], [ 0.084071, 0.010815 ], [ 0.081453, 0.010815 ], [ 0.081453, 0.012617 ], [ 0.084071, 0.012617 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0814400", "Lat": "0.0108000", "KPI": 98, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.012617 ], [ 0.084071, 0.010815 ], [ 0.081453, 0.010815 ], [ 0.081453, 0.012617 ], [ 0.084071, 0.012617 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 35, "Long": "0.0761842", "Lat": "0.0090000", "KPI": 590, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.010815 ], [ 0.078793, 0.009012 ], [ 0.076175, 0.009012 ], [ 0.076175, 0.010815 ], [ 0.078793, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 23, "Long": "0.0761800", "Lat": "0.0090000", "KPI": 179, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.010815 ], [ 0.078793, 0.009012 ], [ 0.076175, 0.009012 ], [ 0.076175, 0.010815 ], [ 0.078793, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 76, "Long": "0.0761842", "Lat": "0.0072000", "KPI": 23, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.009012 ], [ 0.078793, 0.007210 ], [ 0.076175, 0.007210 ], [ 0.076175, 0.009012 ], [ 0.078793, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761800", "Lat": "0.0072000", "KPI": 302, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.009012 ], [ 0.078793, 0.007210 ], [ 0.076175, 0.007210 ], [ 0.076175, 0.009012 ], [ 0.078793, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 8, "Long": "0.0761842", "Lat": "0.0054000", "KPI": 414, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.007210 ], [ 0.078793, 0.005407 ], [ 0.076175, 0.005407 ], [ 0.076175, 0.007210 ], [ 0.078793, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 31, "Long": "0.0761800", "Lat": "0.0054000", "KPI": 529, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.007210 ], [ 0.078793, 0.005407 ], [ 0.076175, 0.005407 ], [ 0.076175, 0.007210 ], [ 0.078793, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 18, "Long": "0.0788112", "Lat": "0.0090000", "KPI": 457, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.010815 ], [ 0.081453, 0.009012 ], [ 0.078793, 0.009012 ], [ 0.078793, 0.010815 ], [ 0.081453, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 67, "Long": "0.0788100", "Lat": "0.0090000", "KPI": 228, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.010815 ], [ 0.081453, 0.009012 ], [ 0.078793, 0.009012 ], [ 0.078793, 0.010815 ], [ 0.081453, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 1, "Long": "0.0788112", "Lat": "0.0072000", "KPI": 510, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.009012 ], [ 0.081453, 0.007210 ], [ 0.078793, 0.007210 ], [ 0.078793, 0.009012 ], [ 0.081453, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 13, "Long": "0.0788100", "Lat": "0.0072000", "KPI": 174, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.009012 ], [ 0.081453, 0.007210 ], [ 0.078793, 0.007210 ], [ 0.078793, 0.009012 ], [ 0.081453, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 5, "Long": "0.0788112", "Lat": "0.0054000", "KPI": 175, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.007210 ], [ 0.081453, 0.005407 ], [ 0.078793, 0.005407 ], [ 0.078793, 0.007210 ], [ 0.081453, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 32, "Long": "0.0788100", "Lat": "0.0054000", "KPI": 609, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.007210 ], [ 0.081453, 0.005407 ], [ 0.078793, 0.005407 ], [ 0.078793, 0.007210 ], [ 0.081453, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 52, "Long": "0.0761842", "Lat": "0.0036000", "KPI": 954, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.005407 ], [ 0.078793, 0.003605 ], [ 0.076175, 0.003605 ], [ 0.076175, 0.005407 ], [ 0.078793, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 39, "Long": "0.0761800", "Lat": "0.0036000", "KPI": 928, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.005407 ], [ 0.078793, 0.003605 ], [ 0.076175, 0.003605 ], [ 0.076175, 0.005407 ], [ 0.078793, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 64, "Long": "0.0761842", "Lat": "0.0018000", "KPI": 458, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.003605 ], [ 0.078793, 0.001802 ], [ 0.076175, 0.001802 ], [ 0.076175, 0.003605 ], [ 0.078793, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 93, "Long": "0.0761800", "Lat": "0.0018000", "KPI": 306, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.003605 ], [ 0.078793, 0.001802 ], [ 0.076175, 0.001802 ], [ 0.076175, 0.003605 ], [ 0.078793, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0761842", "Lat": "0.0000000", "KPI": 309, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.001802 ], [ 0.078793, 0.000000 ], [ 0.076175, 0.000000 ], [ 0.076175, 0.001802 ], [ 0.078793, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 53, "Long": "0.0761800", "Lat": "0.0000000", "KPI": 800, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.078793, 0.001802 ], [ 0.078793, 0.000000 ], [ 0.076175, 0.000000 ], [ 0.076175, 0.001802 ], [ 0.078793, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 91, "Long": "0.0788112", "Lat": "0.0036000", "KPI": 377, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.005407 ], [ 0.081453, 0.003605 ], [ 0.078793, 0.003605 ], [ 0.078793, 0.005407 ], [ 0.081453, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 24, "Long": "0.0788100", "Lat": "0.0036000", "KPI": 84, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.005407 ], [ 0.081453, 0.003605 ], [ 0.078793, 0.003605 ], [ 0.078793, 0.005407 ], [ 0.081453, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0788112", "Lat": "0.0018000", "KPI": 687, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.003605 ], [ 0.081453, 0.001802 ], [ 0.078793, 0.001802 ], [ 0.078793, 0.003605 ], [ 0.081453, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 10, "Long": "0.0788100", "Lat": "0.0018000", "KPI": 886, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.003605 ], [ 0.081453, 0.001802 ], [ 0.078793, 0.001802 ], [ 0.078793, 0.003605 ], [ 0.081453, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 25, "Long": "0.0788112", "Lat": "0.0000000", "KPI": 270, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.001802 ], [ 0.081453, 0.000000 ], [ 0.078793, 0.000000 ], [ 0.078793, 0.001802 ], [ 0.081453, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 80, "Long": "0.0788100", "Lat": "0.0000000", "KPI": 124, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.081453, 0.001802 ], [ 0.081453, 0.000000 ], [ 0.078793, 0.000000 ], [ 0.078793, 0.001802 ], [ 0.081453, 0.001802 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 7, "Long": "0.0814382", "Lat": "0.0090000", "KPI": 976, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.010815 ], [ 0.084071, 0.009012 ], [ 0.081453, 0.009012 ], [ 0.081453, 0.010815 ], [ 0.084071, 0.010815 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 77, "Long": "0.0814400", "Lat": "0.0090000", "KPI": 131, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.010815 ], [ 0.084071, 0.009012 ], [ 0.081453, 0.009012 ], [ 0.081453, 0.010815 ], [ 0.084071, 0.010815 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0814382", "Lat": "0.0072000", "KPI": 592, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.009012 ], [ 0.084071, 0.007210 ], [ 0.081453, 0.007210 ], [ 0.081453, 0.009012 ], [ 0.084071, 0.009012 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 69, "Long": "0.0814400", "Lat": "0.0072000", "KPI": 502, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.009012 ], [ 0.084071, 0.007210 ], [ 0.081453, 0.007210 ], [ 0.081453, 0.009012 ], [ 0.084071, 0.009012 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 54, "Long": "0.0814382", "Lat": "0.0054000", "KPI": 563, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.007210 ], [ 0.084071, 0.005407 ], [ 0.081453, 0.005407 ], [ 0.081453, 0.007210 ], [ 0.084071, 0.007210 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 98, "Long": "0.0814400", "Lat": "0.0054000", "KPI": 272, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.007210 ], [ 0.084071, 0.005407 ], [ 0.081453, 0.005407 ], [ 0.081453, 0.007210 ], [ 0.084071, 0.007210 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 6, "Long": "0.0814382", "Lat": "0.0036000", "KPI": 285, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.005407 ], [ 0.084071, 0.003605 ], [ 0.081453, 0.003605 ], [ 0.081453, 0.005407 ], [ 0.084071, 0.005407 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 3, "Long": "0.0814400", "Lat": "0.0036000", "KPI": 219, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.005407 ], [ 0.084071, 0.003605 ], [ 0.081453, 0.003605 ], [ 0.081453, 0.005407 ], [ 0.084071, 0.005407 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 34, "Long": "0.0814382", "Lat": "0.0018000", "KPI": 487, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.003605 ], [ 0.084071, 0.001802 ], [ 0.081453, 0.001802 ], [ 0.081453, 0.003605 ], [ 0.084071, 0.003605 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 63, "Long": "0.0814400", "Lat": "0.0018000", "KPI": 505, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.003605 ], [ 0.084071, 0.001802 ], [ 0.081453, 0.001802 ], [ 0.081453, 0.003605 ], [ 0.084071, 0.003605 ] ] ] } } , -{ "type": "Feature", "properties": { "Tile": 48, "Long": "0.0814382", "Lat": "0.0000000", "KPI": 390, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.001802 ], [ 0.084071, 0.000000 ], [ 0.081453, 0.000000 ], [ 0.081453, 0.001802 ], [ 0.084071, 0.001802 ] ] ] } } +{ "type": "Feature", "properties": { "Tile": 55, "Long": "0.0814400", "Lat": "0.0000000", "KPI": 482, "fill": "#000066", "fill-opacity": 0.5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.084071, 0.001802 ], [ 0.084071, 0.000000 ], [ 0.081453, 0.000000 ], [ 0.081453, 0.001802 ], [ 0.084071, 0.001802 ] ] ] } } ] } ] } ] }